
    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_e348fe5199e37b7f906a1a5b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.007324;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_5b6092f330afcd9ae792e40e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.007324;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_bb654afb8e804538f58a3219.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.246000;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_cd1239544cea797179fd8188.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_f699d277ef59f4cb51f800e4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_e695436465bc6ccdd5867766.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_10154bed9b6fcd9f00e5aeb4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_23a94a33e483ccee6bf7faba.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_0d08a7c59b4d01043743d558.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_a9ed0dc20953c4f26ef8a9ea.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_4a0b552ae7a579d6a109062d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_bc2feb7787916215aa24c11f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.201172;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_78983aca4ccb7a84f04a9f98.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-6.300000px;}
.v3{vertical-align:-4.020000px;}
.v6{vertical-align:-2.340000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.624000px;}
.v4{vertical-align:21.300000px;}
.v5{vertical-align:33.120000px;}
.ls33{letter-spacing:-2.592000px;}
.ls22{letter-spacing:-2.106000px;}
.ls29{letter-spacing:-1.908000px;}
.ls3{letter-spacing:-1.512000px;}
.ls58{letter-spacing:-0.439800px;}
.ls11{letter-spacing:-0.432000px;}
.ls56{letter-spacing:-0.377400px;}
.ls2e{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.342600px;}
.ls3f{letter-spacing:-0.324000px;}
.ls49{letter-spacing:-0.310200px;}
.ls15{letter-spacing:-0.288000px;}
.ls25{letter-spacing:-0.252000px;}
.ls24{letter-spacing:-0.233400px;}
.ls4{letter-spacing:-0.232200px;}
.ls3c{letter-spacing:-0.223800px;}
.ls2{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.180600px;}
.ls31{letter-spacing:-0.167400px;}
.lsd{letter-spacing:-0.165600px;}
.ls14{letter-spacing:-0.144000px;}
.ls4e{letter-spacing:-0.136200px;}
.ls16{letter-spacing:-0.134400px;}
.ls9{letter-spacing:-0.099000px;}
.ls27{letter-spacing:-0.088800px;}
.ls23{letter-spacing:-0.081600px;}
.ls48{letter-spacing:-0.076800px;}
.ls39{letter-spacing:-0.054720px;}
.ls3b{letter-spacing:-0.042600px;}
.ls55{letter-spacing:-0.037440px;}
.ls2b{letter-spacing:-0.036000px;}
.ls37{letter-spacing:-0.035280px;}
.ls12{letter-spacing:-0.014820px;}
.ls13{letter-spacing:-0.000435px;}
.ls21{letter-spacing:-0.000006px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.023040px;}
.ls50{letter-spacing:0.031140px;}
.ls10{letter-spacing:0.036000px;}
.ls2d{letter-spacing:0.037440px;}
.ls51{letter-spacing:0.057060px;}
.ls36{letter-spacing:0.059880px;}
.ls4f{letter-spacing:0.060600px;}
.ls20{letter-spacing:0.062400px;}
.ls5{letter-spacing:0.064200px;}
.ls4d{letter-spacing:0.069000px;}
.ls2c{letter-spacing:0.072000px;}
.ls3a{letter-spacing:0.078912px;}
.ls4c{letter-spacing:0.107400px;}
.ls26{letter-spacing:0.108000px;}
.ls2f{letter-spacing:0.126000px;}
.ls1e{letter-spacing:0.139200px;}
.ls1d{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.161136px;}
.ls17{letter-spacing:0.180000px;}
.ls3d{letter-spacing:0.196800px;}
.ls3e{letter-spacing:0.197400px;}
.ls38{letter-spacing:0.205800px;}
.ls1c{letter-spacing:0.216000px;}
.ls35{letter-spacing:0.240048px;}
.ls52{letter-spacing:0.241632px;}
.ls28{letter-spacing:0.245400px;}
.ls4b{letter-spacing:0.251400px;}
.ls4a{letter-spacing:0.265800px;}
.ls34{letter-spacing:0.276000px;}
.ls0{letter-spacing:0.288000px;}
.ls40{letter-spacing:0.323400px;}
.lsa{letter-spacing:0.334200px;}
.ls1b{letter-spacing:0.360000px;}
.ls2a{letter-spacing:25.416000px;}
.ls54{letter-spacing:30.960000px;}
.ls53{letter-spacing:32.400000px;}
.lse{letter-spacing:54.000000px;}
.ls42{letter-spacing:62.208000px;}
.ls30{letter-spacing:94.716000px;}
.ls18{letter-spacing:97.509600px;}
.ls19{letter-spacing:97.560000px;}
.ls44{letter-spacing:101.793600px;}
.ls43{letter-spacing:101.844000px;}
.ls41{letter-spacing:103.284000px;}
.ls8{letter-spacing:104.913600px;}
.ls7{letter-spacing:104.964000px;}
.ls57{letter-spacing:105.876000px;}
.ls32{letter-spacing:111.549600px;}
.lsc{letter-spacing:111.600000px;}
.ls6{letter-spacing:113.616000px;}
.ls47{letter-spacing:128.484000px;}
.ls45{letter-spacing:128.613600px;}
.ls46{letter-spacing:128.664000px;}
.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;}
}
.wsaa{word-spacing:-74.880000px;}
.ws85{word-spacing:-68.478600px;}
.ws97{word-spacing:-62.435640px;}
.ws79{word-spacing:-62.375040px;}
.wsd{word-spacing:-56.261640px;}
.ws73{word-spacing:-56.232000px;}
.ws9c{word-spacing:-56.197440px;}
.ws72{word-spacing:-56.160000px;}
.wsc{word-spacing:-55.965240px;}
.ws88{word-spacing:-50.179800px;}
.ws1a{word-spacing:-49.982400px;}
.wsf{word-spacing:-49.920840px;}
.ws1b{word-spacing:-49.801800px;}
.ws8f{word-spacing:-43.617600px;}
.ws7e{word-spacing:-40.072032px;}
.ws81{word-spacing:-40.032000px;}
.ws80{word-spacing:-39.744000px;}
.ws87{word-spacing:-37.728000px;}
.ws86{word-spacing:-37.674240px;}
.ws65{word-spacing:-37.584000px;}
.ws93{word-spacing:-37.546440px;}
.wsa{word-spacing:-37.477440px;}
.wsb{word-spacing:-37.440000px;}
.ws94{word-spacing:-37.296000px;}
.ws10{word-spacing:-36.276600px;}
.ws12{word-spacing:-35.942400px;}
.ws7a{word-spacing:-34.848000px;}
.wsa1{word-spacing:-32.576544px;}
.ws9e{word-spacing:-32.544000px;}
.ws9f{word-spacing:-32.400000px;}
.wsa0{word-spacing:-32.256000px;}
.wsa7{word-spacing:-31.262400px;}
.ws59{word-spacing:-28.117440px;}
.wse{word-spacing:-28.080000px;}
.ws7c{word-spacing:-27.792000px;}
.ws6d{word-spacing:-26.172000px;}
.ws84{word-spacing:-25.151040px;}
.ws77{word-spacing:-25.023600px;}
.ws75{word-spacing:-24.935040px;}
.ws17{word-spacing:-24.897600px;}
.ws83{word-spacing:-24.892440px;}
.ws82{word-spacing:-24.842880px;}
.ws8b{word-spacing:-24.820800px;}
.ws95{word-spacing:-24.761400px;}
.ws6e{word-spacing:-24.408000px;}
.ws71{word-spacing:-24.372000px;}
.ws66{word-spacing:-22.791600px;}
.wsab{word-spacing:-21.939840px;}
.ws16{word-spacing:-18.720000px;}
.ws76{word-spacing:-18.360000px;}
.wsa3{word-spacing:-17.259840px;}
.wsa2{word-spacing:-17.222400px;}
.ws7{word-spacing:-17.208000px;}
.wsa5{word-spacing:-17.184960px;}
.wsad{word-spacing:-16.820040px;}
.ws0{word-spacing:-15.575040px;}
.ws67{word-spacing:-12.542400px;}
.wsa4{word-spacing:-3.788640px;}
.ws92{word-spacing:-3.248880px;}
.ws14{word-spacing:-2.487360px;}
.ws11{word-spacing:-2.314560px;}
.ws90{word-spacing:-2.009040px;}
.ws62{word-spacing:-1.864656px;}
.ws40{word-spacing:-1.752000px;}
.ws8c{word-spacing:-1.737360px;}
.ws3{word-spacing:-1.584000px;}
.ws91{word-spacing:-1.480680px;}
.ws53{word-spacing:-1.260000px;}
.ws2b{word-spacing:-1.188000px;}
.ws3d{word-spacing:-1.153824px;}
.ws8{word-spacing:-1.116000px;}
.ws89{word-spacing:-0.904680px;}
.ws52{word-spacing:-0.864000px;}
.ws68{word-spacing:-0.835872px;}
.ws50{word-spacing:-0.648000px;}
.ws1{word-spacing:-0.576000px;}
.ws54{word-spacing:-0.468000px;}
.ws6b{word-spacing:-0.371088px;}
.ws3e{word-spacing:-0.346788px;}
.ws13{word-spacing:-0.230400px;}
.ws8e{word-spacing:-0.176760px;}
.ws69{word-spacing:-0.113040px;}
.ws9b{word-spacing:-0.096012px;}
.ws51{word-spacing:-0.036000px;}
.ws9{word-spacing:0.000000px;}
.ws64{word-spacing:0.018240px;}
.ws63{word-spacing:0.108000px;}
.ws6c{word-spacing:0.126144px;}
.ws6f{word-spacing:0.156000px;}
.wsa9{word-spacing:0.180000px;}
.ws15{word-spacing:0.212640px;}
.ws99{word-spacing:0.420000px;}
.wsac{word-spacing:0.504000px;}
.ws9a{word-spacing:0.527712px;}
.ws18{word-spacing:0.564000px;}
.ws5{word-spacing:0.648000px;}
.ws3f{word-spacing:0.748800px;}
.ws2{word-spacing:0.792000px;}
.ws70{word-spacing:0.828000px;}
.ws6{word-spacing:0.984000px;}
.ws8d{word-spacing:1.003536px;}
.ws4{word-spacing:1.080000px;}
.ws74{word-spacing:1.200000px;}
.ws7f{word-spacing:1.464000px;}
.ws29{word-spacing:1.512000px;}
.wsa8{word-spacing:1.704000px;}
.wsa6{word-spacing:2.073600px;}
.ws2a{word-spacing:2.088000px;}
.ws27{word-spacing:2.124000px;}
.ws9d{word-spacing:2.469792px;}
.ws98{word-spacing:2.521056px;}
.ws26{word-spacing:2.568000px;}
.ws28{word-spacing:2.736000px;}
.ws34{word-spacing:3.132000px;}
.ws35{word-spacing:4.104000px;}
.ws37{word-spacing:4.176000px;}
.ws33{word-spacing:4.728000px;}
.ws36{word-spacing:5.292000px;}
.ws4c{word-spacing:14.746176px;}
.ws25{word-spacing:14.976000px;}
.ws24{word-spacing:15.456000px;}
.ws4f{word-spacing:16.056000px;}
.ws4d{word-spacing:16.320000px;}
.ws4e{word-spacing:17.064000px;}
.ws32{word-spacing:17.075664px;}
.ws31{word-spacing:17.712000px;}
.ws30{word-spacing:18.252000px;}
.ws2f{word-spacing:18.480000px;}
.ws1e{word-spacing:25.464000px;}
.ws1f{word-spacing:25.632000px;}
.ws21{word-spacing:25.740000px;}
.ws20{word-spacing:26.172000px;}
.ws3b{word-spacing:31.932000px;}
.ws47{word-spacing:36.360000px;}
.ws60{word-spacing:40.752000px;}
.ws5f{word-spacing:41.004000px;}
.ws5e{word-spacing:41.076000px;}
.ws41{word-spacing:51.843744px;}
.ws2c{word-spacing:52.020000px;}
.ws43{word-spacing:52.181136px;}
.ws2e{word-spacing:52.344000px;}
.ws42{word-spacing:52.363017px;}
.ws2d{word-spacing:52.596000px;}
.ws1d{word-spacing:54.540000px;}
.ws45{word-spacing:54.972000px;}
.ws46{word-spacing:55.296000px;}
.ws44{word-spacing:55.920000px;}
.ws5a{word-spacing:65.351088px;}
.ws5c{word-spacing:70.884000px;}
.ws5b{word-spacing:71.364000px;}
.ws4a{word-spacing:77.004000px;}
.ws48{word-spacing:77.832000px;}
.ws49{word-spacing:78.336000px;}
.ws61{word-spacing:79.200000px;}
.ws5d{word-spacing:80.856000px;}
.ws56{word-spacing:91.692000px;}
.ws55{word-spacing:92.280000px;}
.ws57{word-spacing:92.412000px;}
.ws58{word-spacing:94.152000px;}
.ws1c{word-spacing:101.520000px;}
.ws3c{word-spacing:106.644000px;}
.ws4b{word-spacing:130.068000px;}
.ws39{word-spacing:144.432000px;}
.ws3a{word-spacing:145.296000px;}
.ws38{word-spacing:145.704000px;}
.ws23{word-spacing:194.629968px;}
.ws22{word-spacing:194.635200px;}
.ws19{word-spacing:268.052160px;}
.ws96{word-spacing:535.821840px;}
.ws8a{word-spacing:613.770480px;}
.ws7d{word-spacing:712.692000px;}
.ws7b{word-spacing:883.584000px;}
.ws78{word-spacing:1061.097528px;}
.ws6a{word-spacing:2531.664288px;}
._23{margin-left:-15.120000px;}
._f{margin-left:-13.456800px;}
._2b{margin-left:-11.909808px;}
._8{margin-left:-9.941616px;}
._2a{margin-left:-8.866320px;}
._1d{margin-left:-7.254048px;}
._3{margin-left:-6.012000px;}
._6{margin-left:-4.697280px;}
._7{margin-left:-2.900160px;}
._1{margin-left:-1.254960px;}
._0{width:1.135440px;}
._a{width:2.139120px;}
._e{width:3.533280px;}
._21{width:6.466320px;}
._10{width:9.972000px;}
._11{width:11.190960px;}
._2e{width:14.269680px;}
._5{width:20.012400px;}
._22{width:23.382336px;}
._1f{width:26.620848px;}
._14{width:28.148160px;}
._1c{width:29.365248px;}
._16{width:33.264000px;}
._b{width:34.940736px;}
._c{width:37.128384px;}
._12{width:38.576160px;}
._2f{width:39.768960px;}
._25{width:41.496000px;}
._13{width:44.864160px;}
._9{width:57.415344px;}
._17{width:61.265280px;}
._d{width:63.854496px;}
._18{width:65.730000px;}
._2d{width:66.739680px;}
._2{width:73.128000px;}
._4{width:76.152000px;}
._15{width:81.444000px;}
._19{width:94.854864px;}
._29{width:105.108000px;}
._1b{width:108.644160px;}
._1a{width:110.436240px;}
._27{width:339.324000px;}
._2c{width:379.764000px;}
._24{width:394.548000px;}
._20{width:398.052000px;}
._28{width:753.685440px;}
._26{width:2587.354368px;}
._1e{width:3564.508800px;}
.fc16{color:rgb(0,80,134);}
.fc14{color:rgb(81,176,47);}
.fc13{color:rgb(0,94,48);}
.fc12{color:rgb(192,0,0);}
.fc11{color:rgb(51,51,51);}
.fce{color:rgb(255,255,255);}
.fcd{color:rgb(0,0,0);}
.fc0{color:rgb(114,120,121);}
.fc15{color:rgb(85,85,85);}
.fc2{color:rgb(108,175,105);}
.fc10{color:rgb(0,176,80);}
.fc8{color:rgb(34,177,76);}
.fcf{color:transparent;}
.fca{color:rgb(0,69,136);}
.fc4{color:rgb(0,158,224);}
.fc17{color:rgb(0,106,179);}
.fc3{color:rgb(6,69,105);}
.fc5{color:rgb(85,90,91);}
.fc7{color:rgb(79,79,78);}
.fc6{color:rgb(102,102,102);}
.fc1{color:rgb(0,48,94);}
.fc9{color:rgb(127,127,127);}
.fcb{color:rgb(255,192,0);}
.fcc{color:rgb(32,33,34);}
.fs18{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:59.904000px;}
.fs5{font-size:66.240000px;}
.fs1b{font-size:66.384000px;}
.fs4{font-size:72.000000px;}
.fs12{font-size:84.240000px;}
.fs1d{font-size:84.384000px;}
.fs11{font-size:95.760000px;}
.fs17{font-size:95.904000px;}
.fsd{font-size:108.000000px;}
.fs16{font-size:108.144000px;}
.fs1c{font-size:120.240000px;}
.fsf{font-size:138.240000px;}
.fs10{font-size:138.384000px;}
.fsb{font-size:144.000000px;}
.fsa{font-size:144.144000px;}
.fs8{font-size:167.760000px;}
.fs9{font-size:167.904000px;}
.fs15{font-size:192.240000px;}
.fse{font-size:192.384000px;}
.fs19{font-size:216.000000px;}
.fsc{font-size:216.144000px;}
.fs3{font-size:239.760000px;}
.fs7{font-size:239.904000px;}
.fs13{font-size:264.240000px;}
.fs14{font-size:264.384000px;}
.fs2{font-size:288.000000px;}
.fs1a{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y99{bottom:8.316000px;}
.y89{bottom:9.576000px;}
.y15c{bottom:9.828000px;}
.y94{bottom:12.276000px;}
.y4{bottom:14.328000px;}
.y86{bottom:18.720000px;}
.y14c{bottom:19.800000px;}
.y150{bottom:21.384000px;}
.y13c{bottom:22.212000px;}
.y6f{bottom:23.724000px;}
.ycc{bottom:23.940000px;}
.y35{bottom:24.228000px;}
.y1c{bottom:25.092000px;}
.y98{bottom:29.916000px;}
.y3{bottom:32.364000px;}
.yd0{bottom:32.580000px;}
.y12e{bottom:34.776000px;}
.y9b{bottom:37.692000px;}
.y122{bottom:38.016000px;}
.y88{bottom:38.376000px;}
.y15b{bottom:38.664000px;}
.y84{bottom:40.428000px;}
.y93{bottom:41.076000px;}
.y13b{bottom:42.048000px;}
.y5{bottom:42.732000px;}
.y2a{bottom:43.740000px;}
.y34{bottom:49.428000px;}
.y14f{bottom:50.184000px;}
.y2{bottom:50.364000px;}
.y85{bottom:51.120000px;}
.y97{bottom:51.516000px;}
.y6e{bottom:52.524000px;}
.ycb{bottom:52.740000px;}
.y1b{bottom:57.492000px;}
.ycf{bottom:61.380000px;}
.y13a{bottom:61.848000px;}
.y29{bottom:65.340000px;}
.y9a{bottom:66.528000px;}
.y87{bottom:67.212000px;}
.y15a{bottom:67.464000px;}
.y1{bottom:68.364000px;}
.y14b{bottom:69.300000px;}
.y92{bottom:69.912000px;}
.yc{bottom:73.116000px;}
.y178{bottom:100.188000px;}
.yaa{bottom:103.356000px;}
.y71{bottom:105.012000px;}
.yfc{bottom:105.732000px;}
.y9{bottom:108.504000px;}
.y46{bottom:109.476000px;}
.y104{bottom:112.752000px;}
.y172{bottom:113.760000px;}
.ye5{bottom:114.156000px;}
.y14d{bottom:116.316000px;}
.y145{bottom:116.385000px;}
.y13e{bottom:116.460000px;}
.y147{bottom:116.490000px;}
.y2b{bottom:118.152000px;}
.y14a{bottom:118.800000px;}
.y90{bottom:121.032000px;}
.y82{bottom:124.236000px;}
.y176{bottom:128.772000px;}
.y68{bottom:130.680000px;}
.y121{bottom:132.156000px;}
.y37{bottom:132.588000px;}
.yfb{bottom:134.532000px;}
.y14e{bottom:136.116000px;}
.yed{bottom:136.980000px;}
.y171{bottom:138.960000px;}
.y70{bottom:139.104000px;}
.yc0{bottom:139.356000px;}
.y115{bottom:139.716000px;}
.y157{bottom:141.408000px;}
.y103{bottom:141.552000px;}
.y6b{bottom:145.080000px;}
.y8f{bottom:153.435000px;}
.y28{bottom:155.910000px;}
.y5a{bottom:158.580000px;}
.y67{bottom:159.480000px;}
.y175{bottom:161.175000px;}
.y149{bottom:161.460000px;}
.yfa{bottom:163.335000px;}
.y64{bottom:163.830000px;}
.ya9{bottom:164.550000px;}
.y102{bottom:170.355000px;}
.y6a{bottom:173.910000px;}
.ye4{bottom:175.350000px;}
.y139{bottom:176.970000px;}
.ybf{bottom:182.550000px;}
.y114{bottom:182.910000px;}
.y36{bottom:184.605000px;}
.y8e{bottom:185.865000px;}
.y66{bottom:188.310000px;}
.y4a{bottom:188.970000px;}
.y170{bottom:189.360000px;}
.y59{bottom:191.160000px;}
.y174{bottom:193.575000px;}
.y11c{bottom:193.680000px;}
.y7c{bottom:194.370000px;}
.y63{bottom:196.230000px;}
.y27{bottom:197.355000px;}
.y101{bottom:199.185000px;}
.y69{bottom:202.710000px;}
.y148{bottom:204.120000px;}
.ya8{bottom:207.795000px;}
.yd3{bottom:209.520000px;}
.yca{bottom:212.070000px;}
.y16f{bottom:214.560000px;}
.y138{bottom:215.895000px;}
.y65{bottom:217.110000px;}
.y8d{bottom:218.265000px;}
.ybc{bottom:218.595000px;}
.yf9{bottom:219.525000px;}
.y49{bottom:221.580000px;}
.y140{bottom:222.120000px;}
.y58{bottom:223.560000px;}
.y143{bottom:224.460000px;}
.y124{bottom:224.565000px;}
.y10e{bottom:225.795000px;}
.y173{bottom:225.975000px;}
.y113{bottom:226.110000px;}
.y62{bottom:228.630000px;}
.y126{bottom:229.035000px;}
.y106{bottom:230.475000px;}
.y127{bottom:233.205000px;}
.y72{bottom:233.385000px;}
.y81{bottom:234.570000px;}
.yec{bottom:234.645000px;}
.ye3{bottom:236.415000px;}
.y45{bottom:238.170000px;}
.y16e{bottom:239.760000px;}
.y17c{bottom:242.850000px;}
.y26{bottom:243.255000px;}
.ybe{bottom:243.795000px;}
.yc9{bottom:244.470000px;}
.yce{bottom:244.650000px;}
.y146{bottom:246.780000px;}
.y177{bottom:247.170000px;}
.y119{bottom:248.010000px;}
.yf8{bottom:248.370000px;}
.y8c{bottom:250.665000px;}
.y123{bottom:253.365000px;}
.y48{bottom:253.980000px;}
.y137{bottom:254.775000px;}
.y57{bottom:255.960000px;}
.y8{bottom:256.140000px;}
.y125{bottom:257.835000px;}
.y7b{bottom:259.170000px;}
.y105{bottom:259.275000px;}
.y141{bottom:260.280000px;}
.y61{bottom:261.030000px;}
.y33{bottom:261.795000px;}
.y17b{bottom:262.650000px;}
.y11b{bottom:264.960000px;}
.y16d{bottom:264.990000px;}
.y80{bottom:266.970000px;}
.yeb{bottom:267.045000px;}
.ya7{bottom:268.995000px;}
.y44{bottom:270.615000px;}
.y12{bottom:270.645000px;}
.yae{bottom:270.750000px;}
.y112{bottom:271.260000px;}
.ydb{bottom:274.035000px;}
.y108{bottom:274.425000px;}
.yc8{bottom:276.915000px;}
.ye2{bottom:278.895000px;}
.y120{bottom:279.795000px;}
.y8b{bottom:283.065000px;}
.y160{bottom:284.295000px;}
.y43{bottom:286.200000px;}
.y47{bottom:286.380000px;}
.yd2{bottom:286.590000px;}
.ybd{bottom:286.995000px;}
.y56{bottom:288.360000px;}
.y144{bottom:288.540000px;}
.y16c{bottom:290.190000px;}
.y7a{bottom:291.570000px;}
.y60{bottom:293.430000px;}
.y136{bottom:293.655000px;}
.yb0{bottom:298.335000px;}
.y7f{bottom:299.415000px;}
.yb3{bottom:299.445000px;}
.y25{bottom:302.655000px;}
.yb5{bottom:303.195000px;}
.y107{bottom:303.225000px;}
.y111{bottom:303.660000px;}
.ya0{bottom:304.770000px;}
.y32{bottom:304.995000px;}
.y10a{bottom:305.250000px;}
.yf7{bottom:306.255000px;}
.yc7{bottom:309.315000px;}
.y183{bottom:313.380000px;}
.y128{bottom:313.530000px;}
.y16b{bottom:315.390000px;}
.y8a{bottom:315.465000px;}
.y42{bottom:318.780000px;}
.y55{bottom:320.790000px;}
.ye1{bottom:322.815000px;}
.y11f{bottom:322.995000px;}
.y79{bottom:323.970000px;}
.y5f{bottom:325.875000px;}
.y156{bottom:327.750000px;}
.y100{bottom:328.575000px;}
.y13d{bottom:330.120000px;}
.ya6{bottom:330.195000px;}
.y7e{bottom:331.815000px;}
.y15f{bottom:331.995000px;}
.yac{bottom:332.490000px;}
.y135{bottom:332.535000px;}
.y109{bottom:334.050000px;}
.yf6{bottom:335.055000px;}
.y110{bottom:336.060000px;}
.y7{bottom:340.230000px;}
.yd5{bottom:340.275000px;}
.y16a{bottom:340.590000px;}
.yaf{bottom:341.535000px;}
.yc6{bottom:341.715000px;}
.yda{bottom:342.435000px;}
.y158{bottom:342.570000px;}
.yb2{bottom:342.690000px;}
.y24{bottom:344.055000px;}
.y11a{bottom:344.190000px;}
.yb4{bottom:346.395000px;}
.y31{bottom:348.195000px;}
.y41{bottom:351.180000px;}
.yad{bottom:351.570000px;}
.yea{bottom:352.185000px;}
.y54{bottom:353.190000px;}
.y78{bottom:356.400000px;}
.y11{bottom:357.090000px;}
.y5e{bottom:358.275000px;}
.y155{bottom:360.150000px;}
.yff{bottom:360.975000px;}
.yf5{bottom:363.885000px;}
.y7d{bottom:364.215000px;}
.yd1{bottom:365.790000px;}
.ybb{bottom:366.225000px;}
.y3d{bottom:367.230000px;}
.y10f{bottom:368.490000px;}
.y182{bottom:371.010000px;}
.y134{bottom:371.445000px;}
.yc5{bottom:374.115000px;}
.y15e{bottom:375.225000px;}
.y12d{bottom:376.920000px;}
.y1a{bottom:378.645000px;}
.y40{bottom:383.610000px;}
.ye0{bottom:384.045000px;}
.y11e{bottom:384.225000px;}
.y10d{bottom:384.300000px;}
.ye9{bottom:384.630000px;}
.y53{bottom:385.590000px;}
.yb1{bottom:385.890000px;}
.y23{bottom:389.985000px;}
.y5d{bottom:390.675000px;}
.y169{bottom:390.990000px;}
.ya5{bottom:391.425000px;}
.y154{bottom:392.550000px;}
.yf4{bottom:392.685000px;}
.yfe{bottom:393.375000px;}
.y83{bottom:393.405000px;}
.y9f{bottom:393.915000px;}
.y10b{bottom:396.030000px;}
.yab{bottom:398.130000px;}
.y3c{bottom:399.630000px;}
.ya1{bottom:408.705000px;}
.y12c{bottom:409.320000px;}
.y30{bottom:409.425000px;}
.y133{bottom:410.325000px;}
.yd9{bottom:410.865000px;}
.ycd{bottom:411.915000px;}
.y10c{bottom:413.130000px;}
.y3f{bottom:416.010000px;}
.y52{bottom:417.990000px;}
.yf3{bottom:421.485000px;}
.y19{bottom:422.385000px;}
.y15d{bottom:422.925000px;}
.y5c{bottom:423.075000px;}
.y153{bottom:424.980000px;}
.ya3{bottom:426.495000px;}
.y6{bottom:426.630000px;}
.yba{bottom:427.065000px;}
.ydf{bottom:427.245000px;}
.y11d{bottom:427.425000px;}
.y181{bottom:428.430000px;}
.y22{bottom:431.385000px;}
.y3b{bottom:432.030000px;}
.y168{bottom:441.435000px;}
.y12b{bottom:441.750000px;}
.y13f{bottom:446.580000px;}
.y3e{bottom:448.410000px;}
.y132{bottom:449.205000px;}
.y51{bottom:450.390000px;}
.ya4{bottom:452.625000px;}
.y74{bottom:453.780000px;}
.y5b{bottom:455.505000px;}
.y180{bottom:457.230000px;}
.y152{bottom:457.380000px;}
.ya2{bottom:458.925000px;}
.ye8{bottom:460.770000px;}
.yd8{bottom:461.265000px;}
.y18{bottom:465.585000px;}
.y167{bottom:466.635000px;}
.y73{bottom:468.180000px;}
.y9e{bottom:469.545000px;}
.yf2{bottom:469.800000px;}
.y2f{bottom:470.625000px;}
.y118{bottom:471.345000px;}
.y12a{bottom:474.150000px;}
.y21{bottom:477.285000px;}
.y77{bottom:480.495000px;}
.y142{bottom:482.400000px;}
.y50{bottom:482.835000px;}
.yb9{bottom:487.365000px;}
.y131{bottom:488.085000px;}
.yde{bottom:488.445000px;}
.y6d{bottom:488.625000px;}
.ye7{bottom:489.600000px;}
.y151{bottom:489.780000px;}
.y166{bottom:491.835000px;}
.yc4{bottom:494.640000px;}
.yf1{bottom:498.600000px;}
.y117{bottom:503.790000px;}
.y17{bottom:508.830000px;}
.yd7{bottom:511.710000px;}
.y76{bottom:512.895000px;}
.yd4{bottom:513.870000px;}
.y17f{bottom:514.830000px;}
.y4f{bottom:515.235000px;}
.y165{bottom:517.035000px;}
.ye6{bottom:518.400000px;}
.y38{bottom:522.210000px;}
.yc3{bottom:527.040000px;}
.yf0{bottom:527.400000px;}
.y10{bottom:529.710000px;}
.ydd{bottom:530.970000px;}
.yb8{bottom:531.510000px;}
.y2e{bottom:531.870000px;}
.y116{bottom:536.190000px;}
.y20{bottom:536.730000px;}
.yfd{bottom:541.260000px;}
.y164{bottom:542.235000px;}
.y129{bottom:544.575000px;}
.y9d{bottom:545.145000px;}
.y75{bottom:545.325000px;}
.y4e{bottom:547.635000px;}
.y16{bottom:552.030000px;}
.yef{bottom:556.200000px;}
.yc2{bottom:559.440000px;}
.yd6{bottom:562.110000px;}
.y17e{bottom:574.095000px;}
.ydc{bottom:574.890000px;}
.y2d{bottom:575.070000px;}
.y1f{bottom:578.130000px;}
.y4d{bottom:580.035000px;}
.yf{bottom:580.110000px;}
.yee{bottom:585.000000px;}
.yb7{bottom:591.810000px;}
.yc1{bottom:591.840000px;}
.y163{bottom:592.665000px;}
.y6c{bottom:593.070000px;}
.y15{bottom:595.230000px;}
.yb{bottom:599.835000px;}
.y130{bottom:601.890000px;}
.y9c{bottom:602.790000px;}
.y4c{bottom:612.435000px;}
.y162{bottom:617.865000px;}
.y91{bottom:619.170000px;}
.ya{bottom:619.635000px;}
.y3a{bottom:624.930000px;}
.ye{bottom:630.510000px;}
.yb6{bottom:635.010000px;}
.y2c{bottom:636.270000px;}
.y1e{bottom:637.530000px;}
.y14{bottom:638.430000px;}
.y12f{bottom:640.770000px;}
.y159{bottom:641.850000px;}
.y161{bottom:643.065000px;}
.y4b{bottom:644.865000px;}
.y17a{bottom:648.210000px;}
.y96{bottom:664.845000px;}
.y179{bottom:668.010000px;}
.y39{bottom:703.980000px;}
.yd{bottom:709.560000px;}
.y13{bottom:715.140000px;}
.y17d{bottom:718.095000px;}
.y1d{bottom:720.900000px;}
.y95{bottom:722.445000px;}
.h1b{height:36.910195px;}
.h7{height:41.317383px;}
.h1c{height:43.534195px;}
.h1{height:45.724570px;}
.h2{height:45.834750px;}
.h6{height:50.682656px;}
.h2b{height:50.792836px;}
.h5{height:55.089844px;}
.h15{height:64.455117px;}
.h2f{height:64.565297px;}
.h14{height:73.269492px;}
.h1a{height:73.379672px;}
.h10{height:82.634766px;}
.h19{height:82.744945px;}
.h23{height:89.414766px;}
.h2d{height:92.000039px;}
.h28{height:100.546875px;}
.h27{height:100.647422px;}
.h22{height:104.044945px;}
.h25{height:105.257812px;}
.h12{height:105.772500px;}
.h13{height:105.882680px;}
.h1f{height:107.419922px;}
.h20{height:107.563148px;}
.hc{height:110.179688px;}
.hb{height:110.289867px;}
.h1e{height:110.583984px;}
.h26{height:115.754766px;}
.h1d{height:117.237656px;}
.h9{height:128.359336px;}
.ha{height:128.469516px;}
.he{height:131.184000px;}
.hf{height:131.315184px;}
.h29{height:143.226562px;}
.h2a{height:143.369789px;}
.h18{height:147.089883px;}
.h11{height:147.200063px;}
.h21{height:165.269531px;}
.hd{height:165.379711px;}
.h4{height:183.449180px;}
.h8{height:183.559359px;}
.h16{height:202.179727px;}
.h17{height:202.289906px;}
.h3{height:220.359375px;}
.h24{height:247.904297px;}
.h2c{height:252.180000px;}
.h2e{height:504.180000px;}
.h0{height:810.000000px;}
.w2{width:250.920000px;}
.w3{width:251.100000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x7d{left:1.050000px;}
.x94{left:31.499979px;}
.x3c{left:32.651979px;}
.x2a{left:36.323979px;}
.x13{left:40.823979px;}
.x3{left:51.659979px;}
.x4{left:53.531979px;}
.x8e{left:63.251979px;}
.x8a{left:68.219979px;}
.x4e{left:74.951979px;}
.x95{left:82.799979px;}
.x8f{left:96.047979px;}
.x7{left:103.427979px;}
.x6{left:105.299979px;}
.x4f{left:106.991979px;}
.xb{left:111.887979px;}
.x8{left:114.227979px;}
.x83{left:139.350000px;}
.xa{left:143.927979px;}
.x1c{left:148.067979px;}
.xc{left:150.224979px;}
.x8b{left:154.079979px;}
.x85{left:156.450000px;}
.x52{left:163.979979px;}
.x82{left:173.490000px;}
.x84{left:181.470000px;}
.x2d{left:191.264979px;}
.x2e{left:207.104979px;}
.x54{left:211.424979px;}
.x1{left:215.744979px;}
.x87{left:232.815000px;}
.x31{left:236.519979px;}
.x30{left:240.659979px;}
.x2f{left:253.769979px;}
.x3b{left:266.759979px;}
.x59{left:297.254979px;}
.x57{left:301.109979px;}
.x5a{left:317.729979px;}
.x56{left:337.829979px;}
.x58{left:339.329979px;}
.x42{left:353.909979px;}
.x5{left:360.104979px;}
.x44{left:362.669979px;}
.x41{left:365.474979px;}
.x3e{left:368.354979px;}
.xd{left:372.599979px;}
.x9{left:375.659979px;}
.x55{left:383.579979px;}
.x7c{left:384.869979px;}
.x40{left:390.134979px;}
.x53{left:396.149979px;}
.x29{left:404.999979px;}
.x88{left:418.529979px;}
.x90{left:422.564979px;}
.x89{left:424.649979px;}
.x47{left:459.029979px;}
.x92{left:462.674979px;}
.x48{left:479.729979px;}
.x7b{left:484.274979px;}
.x3d{left:490.109979px;}
.x18{left:498.164979px;}
.x1e{left:502.229979px;}
.x16{left:508.064979px;}
.x19{left:510.449979px;}
.x1b{left:516.389979px;}
.x15{left:518.324979px;}
.x43{left:525.569979px;}
.x1f{left:536.069979px;}
.x5b{left:539.609979px;}
.x23{left:542.984979px;}
.x22{left:558.824979px;}
.x21{left:563.684979px;}
.x37{left:572.294979px;}
.x5c{left:573.449979px;}
.x38{left:584.714979px;}
.x36{left:598.574979px;}
.x24{left:602.024979px;}
.x35{left:605.054979px;}
.x32{left:611.099979px;}
.x45{left:624.674979px;}
.x33{left:626.939979px;}
.xf{left:637.739979px;}
.x81{left:642.240000px;}
.x39{left:657.434979px;}
.x34{left:673.559979px;}
.x51{left:679.469979px;}
.x72{left:683.459979px;}
.x5d{left:736.124979px;}
.x8c{left:746.639979px;}
.x3f{left:758.234979px;}
.x7a{left:762.734979px;}
.x73{left:767.159979px;}
.x86{left:775.874979px;}
.x78{left:778.934979px;}
.x8d{left:780.479979px;}
.x79{left:787.784979px;}
.x1d{left:792.794979px;}
.x5e{left:798.809979px;}
.x4b{left:801.509979px;}
.x4a{left:817.169979px;}
.x26{left:818.384979px;}
.x27{left:834.404979px;}
.x25{left:841.604979px;}
.x50{left:844.814979px;}
.x49{left:854.459979px;}
.x14{left:856.874979px;}
.x1a{left:861.374979px;}
.x77{left:878.504979px;}
.x70{left:892.799979px;}
.x2c{left:904.139979px;}
.x93{left:925.304979px;}
.x46{left:927.689979px;}
.x7e{left:947.849979px;}
.x10{left:950.579979px;}
.xe{left:954.719979px;}
.x6b{left:971.429979px;}
.x6c{left:976.469979px;}
.x28{left:990.539979px;}
.x76{left:995.579979px;}
.x2{left:998.999979px;}
.x3a{left:1008.389979px;}
.x6e{left:1015.454979px;}
.x65{left:1022.909979px;}
.x6d{left:1038.494979px;}
.x66{left:1039.859979px;}
.x68{left:1071.434979px;}
.x6f{left:1096.634979px;}
.x20{left:1114.589979px;}
.x12{left:1125.749979px;}
.x11{left:1132.274979px;}
.x7f{left:1143.900000px;}
.x4c{left:1155.314979px;}
.x91{left:1182.209979px;}
.x2b{left:1188.929979px;}
.x71{left:1191.854979px;}
.x80{left:1198.649979px;}
.x4d{left:1202.294979px;}
.x63{left:1205.249979px;}
.x62{left:1224.869979px;}
.x74{left:1228.709979px;}
.x64{left:1232.249979px;}
.x5f{left:1233.899979px;}
.x61{left:1237.289979px;}
.x6a{left:1239.194979px;}
.x69{left:1251.614979px;}
.x67{left:1253.009979px;}
.x75{left:1272.809979px;}
.x17{left:1308.569979px;}
.x60{left:1450.979979px;}
@media print{
.v1{vertical-align:-5.600000pt;}
.v3{vertical-align:-3.573333pt;}
.v6{vertical-align:-2.080000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.888000pt;}
.v4{vertical-align:18.933333pt;}
.v5{vertical-align:29.440000pt;}
.ls33{letter-spacing:-2.304000pt;}
.ls22{letter-spacing:-1.872000pt;}
.ls29{letter-spacing:-1.696000pt;}
.ls3{letter-spacing:-1.344000pt;}
.ls58{letter-spacing:-0.390933pt;}
.ls11{letter-spacing:-0.384000pt;}
.ls56{letter-spacing:-0.335467pt;}
.ls2e{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.304533pt;}
.ls3f{letter-spacing:-0.288000pt;}
.ls49{letter-spacing:-0.275733pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls25{letter-spacing:-0.224000pt;}
.ls24{letter-spacing:-0.207467pt;}
.ls4{letter-spacing:-0.206400pt;}
.ls3c{letter-spacing:-0.198933pt;}
.ls2{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.160533pt;}
.ls31{letter-spacing:-0.148800pt;}
.lsd{letter-spacing:-0.147200pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls4e{letter-spacing:-0.121067pt;}
.ls16{letter-spacing:-0.119467pt;}
.ls9{letter-spacing:-0.088000pt;}
.ls27{letter-spacing:-0.078933pt;}
.ls23{letter-spacing:-0.072533pt;}
.ls48{letter-spacing:-0.068267pt;}
.ls39{letter-spacing:-0.048640pt;}
.ls3b{letter-spacing:-0.037867pt;}
.ls55{letter-spacing:-0.033280pt;}
.ls2b{letter-spacing:-0.032000pt;}
.ls37{letter-spacing:-0.031360pt;}
.ls12{letter-spacing:-0.013173pt;}
.ls13{letter-spacing:-0.000387pt;}
.ls21{letter-spacing:-0.000005pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.020480pt;}
.ls50{letter-spacing:0.027680pt;}
.ls10{letter-spacing:0.032000pt;}
.ls2d{letter-spacing:0.033280pt;}
.ls51{letter-spacing:0.050720pt;}
.ls36{letter-spacing:0.053227pt;}
.ls4f{letter-spacing:0.053867pt;}
.ls20{letter-spacing:0.055467pt;}
.ls5{letter-spacing:0.057067pt;}
.ls4d{letter-spacing:0.061333pt;}
.ls2c{letter-spacing:0.064000pt;}
.ls3a{letter-spacing:0.070144pt;}
.ls4c{letter-spacing:0.095467pt;}
.ls26{letter-spacing:0.096000pt;}
.ls2f{letter-spacing:0.112000pt;}
.ls1e{letter-spacing:0.123733pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.143232pt;}
.ls17{letter-spacing:0.160000pt;}
.ls3d{letter-spacing:0.174933pt;}
.ls3e{letter-spacing:0.175467pt;}
.ls38{letter-spacing:0.182933pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls35{letter-spacing:0.213376pt;}
.ls52{letter-spacing:0.214784pt;}
.ls28{letter-spacing:0.218133pt;}
.ls4b{letter-spacing:0.223467pt;}
.ls4a{letter-spacing:0.236267pt;}
.ls34{letter-spacing:0.245333pt;}
.ls0{letter-spacing:0.256000pt;}
.ls40{letter-spacing:0.287467pt;}
.lsa{letter-spacing:0.297067pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:22.592000pt;}
.ls54{letter-spacing:27.520000pt;}
.ls53{letter-spacing:28.800000pt;}
.lse{letter-spacing:48.000000pt;}
.ls42{letter-spacing:55.296000pt;}
.ls30{letter-spacing:84.192000pt;}
.ls18{letter-spacing:86.675200pt;}
.ls19{letter-spacing:86.720000pt;}
.ls44{letter-spacing:90.483200pt;}
.ls43{letter-spacing:90.528000pt;}
.ls41{letter-spacing:91.808000pt;}
.ls8{letter-spacing:93.256533pt;}
.ls7{letter-spacing:93.301333pt;}
.ls57{letter-spacing:94.112000pt;}
.ls32{letter-spacing:99.155200pt;}
.lsc{letter-spacing:99.200000pt;}
.ls6{letter-spacing:100.992000pt;}
.ls47{letter-spacing:114.208000pt;}
.ls45{letter-spacing:114.323200pt;}
.ls46{letter-spacing:114.368000pt;}
.wsaa{word-spacing:-66.560000pt;}
.ws85{word-spacing:-60.869867pt;}
.ws97{word-spacing:-55.498347pt;}
.ws79{word-spacing:-55.444480pt;}
.wsd{word-spacing:-50.010347pt;}
.ws73{word-spacing:-49.984000pt;}
.ws9c{word-spacing:-49.953280pt;}
.ws72{word-spacing:-49.920000pt;}
.wsc{word-spacing:-49.746880pt;}
.ws88{word-spacing:-44.604267pt;}
.ws1a{word-spacing:-44.428800pt;}
.wsf{word-spacing:-44.374080pt;}
.ws1b{word-spacing:-44.268267pt;}
.ws8f{word-spacing:-38.771200pt;}
.ws7e{word-spacing:-35.619584pt;}
.ws81{word-spacing:-35.584000pt;}
.ws80{word-spacing:-35.328000pt;}
.ws87{word-spacing:-33.536000pt;}
.ws86{word-spacing:-33.488213pt;}
.ws65{word-spacing:-33.408000pt;}
.ws93{word-spacing:-33.374613pt;}
.wsa{word-spacing:-33.313280pt;}
.wsb{word-spacing:-33.280000pt;}
.ws94{word-spacing:-33.152000pt;}
.ws10{word-spacing:-32.245867pt;}
.ws12{word-spacing:-31.948800pt;}
.ws7a{word-spacing:-30.976000pt;}
.wsa1{word-spacing:-28.956928pt;}
.ws9e{word-spacing:-28.928000pt;}
.ws9f{word-spacing:-28.800000pt;}
.wsa0{word-spacing:-28.672000pt;}
.wsa7{word-spacing:-27.788800pt;}
.ws59{word-spacing:-24.993280pt;}
.wse{word-spacing:-24.960000pt;}
.ws7c{word-spacing:-24.704000pt;}
.ws6d{word-spacing:-23.264000pt;}
.ws84{word-spacing:-22.356480pt;}
.ws77{word-spacing:-22.243200pt;}
.ws75{word-spacing:-22.164480pt;}
.ws17{word-spacing:-22.131200pt;}
.ws83{word-spacing:-22.126613pt;}
.ws82{word-spacing:-22.082560pt;}
.ws8b{word-spacing:-22.062933pt;}
.ws95{word-spacing:-22.010133pt;}
.ws6e{word-spacing:-21.696000pt;}
.ws71{word-spacing:-21.664000pt;}
.ws66{word-spacing:-20.259200pt;}
.wsab{word-spacing:-19.502080pt;}
.ws16{word-spacing:-16.640000pt;}
.ws76{word-spacing:-16.320000pt;}
.wsa3{word-spacing:-15.342080pt;}
.wsa2{word-spacing:-15.308800pt;}
.ws7{word-spacing:-15.296000pt;}
.wsa5{word-spacing:-15.275520pt;}
.wsad{word-spacing:-14.951147pt;}
.ws0{word-spacing:-13.844480pt;}
.ws67{word-spacing:-11.148800pt;}
.wsa4{word-spacing:-3.367680pt;}
.ws92{word-spacing:-2.887893pt;}
.ws14{word-spacing:-2.210987pt;}
.ws11{word-spacing:-2.057387pt;}
.ws90{word-spacing:-1.785813pt;}
.ws62{word-spacing:-1.657472pt;}
.ws40{word-spacing:-1.557333pt;}
.ws8c{word-spacing:-1.544320pt;}
.ws3{word-spacing:-1.408000pt;}
.ws91{word-spacing:-1.316160pt;}
.ws53{word-spacing:-1.120000pt;}
.ws2b{word-spacing:-1.056000pt;}
.ws3d{word-spacing:-1.025621pt;}
.ws8{word-spacing:-0.992000pt;}
.ws89{word-spacing:-0.804160pt;}
.ws52{word-spacing:-0.768000pt;}
.ws68{word-spacing:-0.742997pt;}
.ws50{word-spacing:-0.576000pt;}
.ws1{word-spacing:-0.512000pt;}
.ws54{word-spacing:-0.416000pt;}
.ws6b{word-spacing:-0.329856pt;}
.ws3e{word-spacing:-0.308256pt;}
.ws13{word-spacing:-0.204800pt;}
.ws8e{word-spacing:-0.157120pt;}
.ws69{word-spacing:-0.100480pt;}
.ws9b{word-spacing:-0.085344pt;}
.ws51{word-spacing:-0.032000pt;}
.ws9{word-spacing:0.000000pt;}
.ws64{word-spacing:0.016213pt;}
.ws63{word-spacing:0.096000pt;}
.ws6c{word-spacing:0.112128pt;}
.ws6f{word-spacing:0.138667pt;}
.wsa9{word-spacing:0.160000pt;}
.ws15{word-spacing:0.189013pt;}
.ws99{word-spacing:0.373333pt;}
.wsac{word-spacing:0.448000pt;}
.ws9a{word-spacing:0.469077pt;}
.ws18{word-spacing:0.501333pt;}
.ws5{word-spacing:0.576000pt;}
.ws3f{word-spacing:0.665600pt;}
.ws2{word-spacing:0.704000pt;}
.ws70{word-spacing:0.736000pt;}
.ws6{word-spacing:0.874667pt;}
.ws8d{word-spacing:0.892032pt;}
.ws4{word-spacing:0.960000pt;}
.ws74{word-spacing:1.066667pt;}
.ws7f{word-spacing:1.301333pt;}
.ws29{word-spacing:1.344000pt;}
.wsa8{word-spacing:1.514667pt;}
.wsa6{word-spacing:1.843200pt;}
.ws2a{word-spacing:1.856000pt;}
.ws27{word-spacing:1.888000pt;}
.ws9d{word-spacing:2.195371pt;}
.ws98{word-spacing:2.240939pt;}
.ws26{word-spacing:2.282667pt;}
.ws28{word-spacing:2.432000pt;}
.ws34{word-spacing:2.784000pt;}
.ws35{word-spacing:3.648000pt;}
.ws37{word-spacing:3.712000pt;}
.ws33{word-spacing:4.202667pt;}
.ws36{word-spacing:4.704000pt;}
.ws4c{word-spacing:13.107712pt;}
.ws25{word-spacing:13.312000pt;}
.ws24{word-spacing:13.738667pt;}
.ws4f{word-spacing:14.272000pt;}
.ws4d{word-spacing:14.506667pt;}
.ws4e{word-spacing:15.168000pt;}
.ws32{word-spacing:15.178368pt;}
.ws31{word-spacing:15.744000pt;}
.ws30{word-spacing:16.224000pt;}
.ws2f{word-spacing:16.426667pt;}
.ws1e{word-spacing:22.634667pt;}
.ws1f{word-spacing:22.784000pt;}
.ws21{word-spacing:22.880000pt;}
.ws20{word-spacing:23.264000pt;}
.ws3b{word-spacing:28.384000pt;}
.ws47{word-spacing:32.320000pt;}
.ws60{word-spacing:36.224000pt;}
.ws5f{word-spacing:36.448000pt;}
.ws5e{word-spacing:36.512000pt;}
.ws41{word-spacing:46.083328pt;}
.ws2c{word-spacing:46.240000pt;}
.ws43{word-spacing:46.383232pt;}
.ws2e{word-spacing:46.528000pt;}
.ws42{word-spacing:46.544904pt;}
.ws2d{word-spacing:46.752000pt;}
.ws1d{word-spacing:48.480000pt;}
.ws45{word-spacing:48.864000pt;}
.ws46{word-spacing:49.152000pt;}
.ws44{word-spacing:49.706667pt;}
.ws5a{word-spacing:58.089856pt;}
.ws5c{word-spacing:63.008000pt;}
.ws5b{word-spacing:63.434667pt;}
.ws4a{word-spacing:68.448000pt;}
.ws48{word-spacing:69.184000pt;}
.ws49{word-spacing:69.632000pt;}
.ws61{word-spacing:70.400000pt;}
.ws5d{word-spacing:71.872000pt;}
.ws56{word-spacing:81.504000pt;}
.ws55{word-spacing:82.026667pt;}
.ws57{word-spacing:82.144000pt;}
.ws58{word-spacing:83.690667pt;}
.ws1c{word-spacing:90.240000pt;}
.ws3c{word-spacing:94.794667pt;}
.ws4b{word-spacing:115.616000pt;}
.ws39{word-spacing:128.384000pt;}
.ws3a{word-spacing:129.152000pt;}
.ws38{word-spacing:129.514667pt;}
.ws23{word-spacing:173.004416pt;}
.ws22{word-spacing:173.009067pt;}
.ws19{word-spacing:238.268587pt;}
.ws96{word-spacing:476.286080pt;}
.ws8a{word-spacing:545.573760pt;}
.ws7d{word-spacing:633.504000pt;}
.ws7b{word-spacing:785.408000pt;}
.ws78{word-spacing:943.197803pt;}
.ws6a{word-spacing:2250.368256pt;}
._23{margin-left:-13.440000pt;}
._f{margin-left:-11.961600pt;}
._2b{margin-left:-10.586496pt;}
._8{margin-left:-8.836992pt;}
._2a{margin-left:-7.881173pt;}
._1d{margin-left:-6.448043pt;}
._3{margin-left:-5.344000pt;}
._6{margin-left:-4.175360pt;}
._7{margin-left:-2.577920pt;}
._1{margin-left:-1.115520pt;}
._0{width:1.009280pt;}
._a{width:1.901440pt;}
._e{width:3.140693pt;}
._21{width:5.747840pt;}
._10{width:8.864000pt;}
._11{width:9.947520pt;}
._2e{width:12.684160pt;}
._5{width:17.788800pt;}
._22{width:20.784299pt;}
._1f{width:23.662976pt;}
._14{width:25.020587pt;}
._1c{width:26.102443pt;}
._16{width:29.568000pt;}
._b{width:31.058432pt;}
._c{width:33.003008pt;}
._12{width:34.289920pt;}
._2f{width:35.350187pt;}
._25{width:36.885333pt;}
._13{width:39.879253pt;}
._9{width:51.035861pt;}
._17{width:54.458027pt;}
._d{width:56.759552pt;}
._18{width:58.426667pt;}
._2d{width:59.324160pt;}
._2{width:65.002667pt;}
._4{width:67.690667pt;}
._15{width:72.394667pt;}
._19{width:84.315435pt;}
._29{width:93.429333pt;}
._1b{width:96.572587pt;}
._1a{width:98.165547pt;}
._27{width:301.621333pt;}
._2c{width:337.568000pt;}
._24{width:350.709333pt;}
._20{width:353.824000pt;}
._28{width:669.942613pt;}
._26{width:2299.870549pt;}
._1e{width:3168.452267pt;}
.fs18{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:53.248000pt;}
.fs5{font-size:58.880000pt;}
.fs1b{font-size:59.008000pt;}
.fs4{font-size:64.000000pt;}
.fs12{font-size:74.880000pt;}
.fs1d{font-size:75.008000pt;}
.fs11{font-size:85.120000pt;}
.fs17{font-size:85.248000pt;}
.fsd{font-size:96.000000pt;}
.fs16{font-size:96.128000pt;}
.fs1c{font-size:106.880000pt;}
.fsf{font-size:122.880000pt;}
.fs10{font-size:123.008000pt;}
.fsb{font-size:128.000000pt;}
.fsa{font-size:128.128000pt;}
.fs8{font-size:149.120000pt;}
.fs9{font-size:149.248000pt;}
.fs15{font-size:170.880000pt;}
.fse{font-size:171.008000pt;}
.fs19{font-size:192.000000pt;}
.fsc{font-size:192.128000pt;}
.fs3{font-size:213.120000pt;}
.fs7{font-size:213.248000pt;}
.fs13{font-size:234.880000pt;}
.fs14{font-size:235.008000pt;}
.fs2{font-size:256.000000pt;}
.fs1a{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:7.392000pt;}
.y89{bottom:8.512000pt;}
.y15c{bottom:8.736000pt;}
.y94{bottom:10.912000pt;}
.y4{bottom:12.736000pt;}
.y86{bottom:16.640000pt;}
.y14c{bottom:17.600000pt;}
.y150{bottom:19.008000pt;}
.y13c{bottom:19.744000pt;}
.y6f{bottom:21.088000pt;}
.ycc{bottom:21.280000pt;}
.y35{bottom:21.536000pt;}
.y1c{bottom:22.304000pt;}
.y98{bottom:26.592000pt;}
.y3{bottom:28.768000pt;}
.yd0{bottom:28.960000pt;}
.y12e{bottom:30.912000pt;}
.y9b{bottom:33.504000pt;}
.y122{bottom:33.792000pt;}
.y88{bottom:34.112000pt;}
.y15b{bottom:34.368000pt;}
.y84{bottom:35.936000pt;}
.y93{bottom:36.512000pt;}
.y13b{bottom:37.376000pt;}
.y5{bottom:37.984000pt;}
.y2a{bottom:38.880000pt;}
.y34{bottom:43.936000pt;}
.y14f{bottom:44.608000pt;}
.y2{bottom:44.768000pt;}
.y85{bottom:45.440000pt;}
.y97{bottom:45.792000pt;}
.y6e{bottom:46.688000pt;}
.ycb{bottom:46.880000pt;}
.y1b{bottom:51.104000pt;}
.ycf{bottom:54.560000pt;}
.y13a{bottom:54.976000pt;}
.y29{bottom:58.080000pt;}
.y9a{bottom:59.136000pt;}
.y87{bottom:59.744000pt;}
.y15a{bottom:59.968000pt;}
.y1{bottom:60.768000pt;}
.y14b{bottom:61.600000pt;}
.y92{bottom:62.144000pt;}
.yc{bottom:64.992000pt;}
.y178{bottom:89.056000pt;}
.yaa{bottom:91.872000pt;}
.y71{bottom:93.344000pt;}
.yfc{bottom:93.984000pt;}
.y9{bottom:96.448000pt;}
.y46{bottom:97.312000pt;}
.y104{bottom:100.224000pt;}
.y172{bottom:101.120000pt;}
.ye5{bottom:101.472000pt;}
.y14d{bottom:103.392000pt;}
.y145{bottom:103.453333pt;}
.y13e{bottom:103.520000pt;}
.y147{bottom:103.546667pt;}
.y2b{bottom:105.024000pt;}
.y14a{bottom:105.600000pt;}
.y90{bottom:107.584000pt;}
.y82{bottom:110.432000pt;}
.y176{bottom:114.464000pt;}
.y68{bottom:116.160000pt;}
.y121{bottom:117.472000pt;}
.y37{bottom:117.856000pt;}
.yfb{bottom:119.584000pt;}
.y14e{bottom:120.992000pt;}
.yed{bottom:121.760000pt;}
.y171{bottom:123.520000pt;}
.y70{bottom:123.648000pt;}
.yc0{bottom:123.872000pt;}
.y115{bottom:124.192000pt;}
.y157{bottom:125.696000pt;}
.y103{bottom:125.824000pt;}
.y6b{bottom:128.960000pt;}
.y8f{bottom:136.386667pt;}
.y28{bottom:138.586667pt;}
.y5a{bottom:140.960000pt;}
.y67{bottom:141.760000pt;}
.y175{bottom:143.266667pt;}
.y149{bottom:143.520000pt;}
.yfa{bottom:145.186667pt;}
.y64{bottom:145.626667pt;}
.ya9{bottom:146.266667pt;}
.y102{bottom:151.426667pt;}
.y6a{bottom:154.586667pt;}
.ye4{bottom:155.866667pt;}
.y139{bottom:157.306667pt;}
.ybf{bottom:162.266667pt;}
.y114{bottom:162.586667pt;}
.y36{bottom:164.093333pt;}
.y8e{bottom:165.213333pt;}
.y66{bottom:167.386667pt;}
.y4a{bottom:167.973333pt;}
.y170{bottom:168.320000pt;}
.y59{bottom:169.920000pt;}
.y174{bottom:172.066667pt;}
.y11c{bottom:172.160000pt;}
.y7c{bottom:172.773333pt;}
.y63{bottom:174.426667pt;}
.y27{bottom:175.426667pt;}
.y101{bottom:177.053333pt;}
.y69{bottom:180.186667pt;}
.y148{bottom:181.440000pt;}
.ya8{bottom:184.706667pt;}
.yd3{bottom:186.240000pt;}
.yca{bottom:188.506667pt;}
.y16f{bottom:190.720000pt;}
.y138{bottom:191.906667pt;}
.y65{bottom:192.986667pt;}
.y8d{bottom:194.013333pt;}
.ybc{bottom:194.306667pt;}
.yf9{bottom:195.133333pt;}
.y49{bottom:196.960000pt;}
.y140{bottom:197.440000pt;}
.y58{bottom:198.720000pt;}
.y143{bottom:199.520000pt;}
.y124{bottom:199.613333pt;}
.y10e{bottom:200.706667pt;}
.y173{bottom:200.866667pt;}
.y113{bottom:200.986667pt;}
.y62{bottom:203.226667pt;}
.y126{bottom:203.586667pt;}
.y106{bottom:204.866667pt;}
.y127{bottom:207.293333pt;}
.y72{bottom:207.453333pt;}
.y81{bottom:208.506667pt;}
.yec{bottom:208.573333pt;}
.ye3{bottom:210.146667pt;}
.y45{bottom:211.706667pt;}
.y16e{bottom:213.120000pt;}
.y17c{bottom:215.866667pt;}
.y26{bottom:216.226667pt;}
.ybe{bottom:216.706667pt;}
.yc9{bottom:217.306667pt;}
.yce{bottom:217.466667pt;}
.y146{bottom:219.360000pt;}
.y177{bottom:219.706667pt;}
.y119{bottom:220.453333pt;}
.yf8{bottom:220.773333pt;}
.y8c{bottom:222.813333pt;}
.y123{bottom:225.213333pt;}
.y48{bottom:225.760000pt;}
.y137{bottom:226.466667pt;}
.y57{bottom:227.520000pt;}
.y8{bottom:227.680000pt;}
.y125{bottom:229.186667pt;}
.y7b{bottom:230.373333pt;}
.y105{bottom:230.466667pt;}
.y141{bottom:231.360000pt;}
.y61{bottom:232.026667pt;}
.y33{bottom:232.706667pt;}
.y17b{bottom:233.466667pt;}
.y11b{bottom:235.520000pt;}
.y16d{bottom:235.546667pt;}
.y80{bottom:237.306667pt;}
.yeb{bottom:237.373333pt;}
.ya7{bottom:239.106667pt;}
.y44{bottom:240.546667pt;}
.y12{bottom:240.573333pt;}
.yae{bottom:240.666667pt;}
.y112{bottom:241.120000pt;}
.ydb{bottom:243.586667pt;}
.y108{bottom:243.933333pt;}
.yc8{bottom:246.146667pt;}
.ye2{bottom:247.906667pt;}
.y120{bottom:248.706667pt;}
.y8b{bottom:251.613333pt;}
.y160{bottom:252.706667pt;}
.y43{bottom:254.400000pt;}
.y47{bottom:254.560000pt;}
.yd2{bottom:254.746667pt;}
.ybd{bottom:255.106667pt;}
.y56{bottom:256.320000pt;}
.y144{bottom:256.480000pt;}
.y16c{bottom:257.946667pt;}
.y7a{bottom:259.173333pt;}
.y60{bottom:260.826667pt;}
.y136{bottom:261.026667pt;}
.yb0{bottom:265.186667pt;}
.y7f{bottom:266.146667pt;}
.yb3{bottom:266.173333pt;}
.y25{bottom:269.026667pt;}
.yb5{bottom:269.506667pt;}
.y107{bottom:269.533333pt;}
.y111{bottom:269.920000pt;}
.ya0{bottom:270.906667pt;}
.y32{bottom:271.106667pt;}
.y10a{bottom:271.333333pt;}
.yf7{bottom:272.226667pt;}
.yc7{bottom:274.946667pt;}
.y183{bottom:278.560000pt;}
.y128{bottom:278.693333pt;}
.y16b{bottom:280.346667pt;}
.y8a{bottom:280.413333pt;}
.y42{bottom:283.360000pt;}
.y55{bottom:285.146667pt;}
.ye1{bottom:286.946667pt;}
.y11f{bottom:287.106667pt;}
.y79{bottom:287.973333pt;}
.y5f{bottom:289.666667pt;}
.y156{bottom:291.333333pt;}
.y100{bottom:292.066667pt;}
.y13d{bottom:293.440000pt;}
.ya6{bottom:293.506667pt;}
.y7e{bottom:294.946667pt;}
.y15f{bottom:295.106667pt;}
.yac{bottom:295.546667pt;}
.y135{bottom:295.586667pt;}
.y109{bottom:296.933333pt;}
.yf6{bottom:297.826667pt;}
.y110{bottom:298.720000pt;}
.y7{bottom:302.426667pt;}
.yd5{bottom:302.466667pt;}
.y16a{bottom:302.746667pt;}
.yaf{bottom:303.586667pt;}
.yc6{bottom:303.746667pt;}
.yda{bottom:304.386667pt;}
.y158{bottom:304.506667pt;}
.yb2{bottom:304.613333pt;}
.y24{bottom:305.826667pt;}
.y11a{bottom:305.946667pt;}
.yb4{bottom:307.906667pt;}
.y31{bottom:309.506667pt;}
.y41{bottom:312.160000pt;}
.yad{bottom:312.506667pt;}
.yea{bottom:313.053333pt;}
.y54{bottom:313.946667pt;}
.y78{bottom:316.800000pt;}
.y11{bottom:317.413333pt;}
.y5e{bottom:318.466667pt;}
.y155{bottom:320.133333pt;}
.yff{bottom:320.866667pt;}
.yf5{bottom:323.453333pt;}
.y7d{bottom:323.746667pt;}
.yd1{bottom:325.146667pt;}
.ybb{bottom:325.533333pt;}
.y3d{bottom:326.426667pt;}
.y10f{bottom:327.546667pt;}
.y182{bottom:329.786667pt;}
.y134{bottom:330.173333pt;}
.yc5{bottom:332.546667pt;}
.y15e{bottom:333.533333pt;}
.y12d{bottom:335.040000pt;}
.y1a{bottom:336.573333pt;}
.y40{bottom:340.986667pt;}
.ye0{bottom:341.373333pt;}
.y11e{bottom:341.533333pt;}
.y10d{bottom:341.600000pt;}
.ye9{bottom:341.893333pt;}
.y53{bottom:342.746667pt;}
.yb1{bottom:343.013333pt;}
.y23{bottom:346.653333pt;}
.y5d{bottom:347.266667pt;}
.y169{bottom:347.546667pt;}
.ya5{bottom:347.933333pt;}
.y154{bottom:348.933333pt;}
.yf4{bottom:349.053333pt;}
.yfe{bottom:349.666667pt;}
.y83{bottom:349.693333pt;}
.y9f{bottom:350.146667pt;}
.y10b{bottom:352.026667pt;}
.yab{bottom:353.893333pt;}
.y3c{bottom:355.226667pt;}
.ya1{bottom:363.293333pt;}
.y12c{bottom:363.840000pt;}
.y30{bottom:363.933333pt;}
.y133{bottom:364.733333pt;}
.yd9{bottom:365.213333pt;}
.ycd{bottom:366.146667pt;}
.y10c{bottom:367.226667pt;}
.y3f{bottom:369.786667pt;}
.y52{bottom:371.546667pt;}
.yf3{bottom:374.653333pt;}
.y19{bottom:375.453333pt;}
.y15d{bottom:375.933333pt;}
.y5c{bottom:376.066667pt;}
.y153{bottom:377.760000pt;}
.ya3{bottom:379.106667pt;}
.y6{bottom:379.226667pt;}
.yba{bottom:379.613333pt;}
.ydf{bottom:379.773333pt;}
.y11d{bottom:379.933333pt;}
.y181{bottom:380.826667pt;}
.y22{bottom:383.453333pt;}
.y3b{bottom:384.026667pt;}
.y168{bottom:392.386667pt;}
.y12b{bottom:392.666667pt;}
.y13f{bottom:396.960000pt;}
.y3e{bottom:398.586667pt;}
.y132{bottom:399.293333pt;}
.y51{bottom:400.346667pt;}
.ya4{bottom:402.333333pt;}
.y74{bottom:403.360000pt;}
.y5b{bottom:404.893333pt;}
.y180{bottom:406.426667pt;}
.y152{bottom:406.560000pt;}
.ya2{bottom:407.933333pt;}
.ye8{bottom:409.573333pt;}
.yd8{bottom:410.013333pt;}
.y18{bottom:413.853333pt;}
.y167{bottom:414.786667pt;}
.y73{bottom:416.160000pt;}
.y9e{bottom:417.373333pt;}
.yf2{bottom:417.600000pt;}
.y2f{bottom:418.333333pt;}
.y118{bottom:418.973333pt;}
.y12a{bottom:421.466667pt;}
.y21{bottom:424.253333pt;}
.y77{bottom:427.106667pt;}
.y142{bottom:428.800000pt;}
.y50{bottom:429.186667pt;}
.yb9{bottom:433.213333pt;}
.y131{bottom:433.853333pt;}
.yde{bottom:434.173333pt;}
.y6d{bottom:434.333333pt;}
.ye7{bottom:435.200000pt;}
.y151{bottom:435.360000pt;}
.y166{bottom:437.186667pt;}
.yc4{bottom:439.680000pt;}
.yf1{bottom:443.200000pt;}
.y117{bottom:447.813333pt;}
.y17{bottom:452.293333pt;}
.yd7{bottom:454.853333pt;}
.y76{bottom:455.906667pt;}
.yd4{bottom:456.773333pt;}
.y17f{bottom:457.626667pt;}
.y4f{bottom:457.986667pt;}
.y165{bottom:459.586667pt;}
.ye6{bottom:460.800000pt;}
.y38{bottom:464.186667pt;}
.yc3{bottom:468.480000pt;}
.yf0{bottom:468.800000pt;}
.y10{bottom:470.853333pt;}
.ydd{bottom:471.973333pt;}
.yb8{bottom:472.453333pt;}
.y2e{bottom:472.773333pt;}
.y116{bottom:476.613333pt;}
.y20{bottom:477.093333pt;}
.yfd{bottom:481.120000pt;}
.y164{bottom:481.986667pt;}
.y129{bottom:484.066667pt;}
.y9d{bottom:484.573333pt;}
.y75{bottom:484.733333pt;}
.y4e{bottom:486.786667pt;}
.y16{bottom:490.693333pt;}
.yef{bottom:494.400000pt;}
.yc2{bottom:497.280000pt;}
.yd6{bottom:499.653333pt;}
.y17e{bottom:510.306667pt;}
.ydc{bottom:511.013333pt;}
.y2d{bottom:511.173333pt;}
.y1f{bottom:513.893333pt;}
.y4d{bottom:515.586667pt;}
.yf{bottom:515.653333pt;}
.yee{bottom:520.000000pt;}
.yb7{bottom:526.053333pt;}
.yc1{bottom:526.080000pt;}
.y163{bottom:526.813333pt;}
.y6c{bottom:527.173333pt;}
.y15{bottom:529.093333pt;}
.yb{bottom:533.186667pt;}
.y130{bottom:535.013333pt;}
.y9c{bottom:535.813333pt;}
.y4c{bottom:544.386667pt;}
.y162{bottom:549.213333pt;}
.y91{bottom:550.373333pt;}
.ya{bottom:550.786667pt;}
.y3a{bottom:555.493333pt;}
.ye{bottom:560.453333pt;}
.yb6{bottom:564.453333pt;}
.y2c{bottom:565.573333pt;}
.y1e{bottom:566.693333pt;}
.y14{bottom:567.493333pt;}
.y12f{bottom:569.573333pt;}
.y159{bottom:570.533333pt;}
.y161{bottom:571.613333pt;}
.y4b{bottom:573.213333pt;}
.y17a{bottom:576.186667pt;}
.y96{bottom:590.973333pt;}
.y179{bottom:593.786667pt;}
.y39{bottom:625.760000pt;}
.yd{bottom:630.720000pt;}
.y13{bottom:635.680000pt;}
.y17d{bottom:638.306667pt;}
.y1d{bottom:640.800000pt;}
.y95{bottom:642.173333pt;}
.h1b{height:32.809062pt;}
.h7{height:36.726562pt;}
.h1c{height:38.697062pt;}
.h1{height:40.644063pt;}
.h2{height:40.742000pt;}
.h6{height:45.051250pt;}
.h2b{height:45.149187pt;}
.h5{height:48.968750pt;}
.h15{height:57.293437pt;}
.h2f{height:57.391375pt;}
.h14{height:65.128438pt;}
.h1a{height:65.226375pt;}
.h10{height:73.453125pt;}
.h19{height:73.551063pt;}
.h23{height:79.479792pt;}
.h2d{height:81.777812pt;}
.h28{height:89.375000pt;}
.h27{height:89.464375pt;}
.h22{height:92.484396pt;}
.h25{height:93.562500pt;}
.h12{height:94.020000pt;}
.h13{height:94.117938pt;}
.h1f{height:95.484375pt;}
.h20{height:95.611688pt;}
.hc{height:97.937500pt;}
.hb{height:98.035438pt;}
.h1e{height:98.296875pt;}
.h26{height:102.893125pt;}
.h1d{height:104.211250pt;}
.h9{height:114.097187pt;}
.ha{height:114.195125pt;}
.he{height:116.608000pt;}
.hf{height:116.724608pt;}
.h29{height:127.312500pt;}
.h2a{height:127.439813pt;}
.h18{height:130.746563pt;}
.h11{height:130.844500pt;}
.h21{height:146.906250pt;}
.hd{height:147.004187pt;}
.h4{height:163.065937pt;}
.h8{height:163.163875pt;}
.h16{height:179.715313pt;}
.h17{height:179.813250pt;}
.h3{height:195.875000pt;}
.h24{height:220.359375pt;}
.h2c{height:224.160000pt;}
.h2e{height:448.160000pt;}
.h0{height:720.000000pt;}
.w2{width:223.040000pt;}
.w3{width:223.200000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x7d{left:0.933333pt;}
.x94{left:27.999981pt;}
.x3c{left:29.023981pt;}
.x2a{left:32.287981pt;}
.x13{left:36.287981pt;}
.x3{left:45.919981pt;}
.x4{left:47.583981pt;}
.x8e{left:56.223981pt;}
.x8a{left:60.639981pt;}
.x4e{left:66.623981pt;}
.x95{left:73.599981pt;}
.x8f{left:85.375981pt;}
.x7{left:91.935981pt;}
.x6{left:93.599981pt;}
.x4f{left:95.103981pt;}
.xb{left:99.455981pt;}
.x8{left:101.535981pt;}
.x83{left:123.866667pt;}
.xa{left:127.935981pt;}
.x1c{left:131.615981pt;}
.xc{left:133.533314pt;}
.x8b{left:136.959981pt;}
.x85{left:139.066667pt;}
.x52{left:145.759981pt;}
.x82{left:154.213333pt;}
.x84{left:161.306667pt;}
.x2d{left:170.013314pt;}
.x2e{left:184.093314pt;}
.x54{left:187.933314pt;}
.x1{left:191.773314pt;}
.x87{left:206.946667pt;}
.x31{left:210.239981pt;}
.x30{left:213.919981pt;}
.x2f{left:225.573314pt;}
.x3b{left:237.119981pt;}
.x59{left:264.226648pt;}
.x57{left:267.653314pt;}
.x5a{left:282.426648pt;}
.x56{left:300.293314pt;}
.x58{left:301.626648pt;}
.x42{left:314.586648pt;}
.x5{left:320.093314pt;}
.x44{left:322.373314pt;}
.x41{left:324.866648pt;}
.x3e{left:327.426648pt;}
.xd{left:331.199981pt;}
.x9{left:333.919981pt;}
.x55{left:340.959981pt;}
.x7c{left:342.106648pt;}
.x40{left:346.786648pt;}
.x53{left:352.133314pt;}
.x29{left:359.999981pt;}
.x88{left:372.026648pt;}
.x90{left:375.613314pt;}
.x89{left:377.466648pt;}
.x47{left:408.026648pt;}
.x92{left:411.266648pt;}
.x48{left:426.426648pt;}
.x7b{left:430.466648pt;}
.x3d{left:435.653314pt;}
.x18{left:442.813314pt;}
.x1e{left:446.426648pt;}
.x16{left:451.613314pt;}
.x19{left:453.733314pt;}
.x1b{left:459.013314pt;}
.x15{left:460.733314pt;}
.x43{left:467.173314pt;}
.x1f{left:476.506648pt;}
.x5b{left:479.653314pt;}
.x23{left:482.653314pt;}
.x22{left:496.733314pt;}
.x21{left:501.053314pt;}
.x37{left:508.706648pt;}
.x5c{left:509.733314pt;}
.x38{left:519.746648pt;}
.x36{left:532.066648pt;}
.x24{left:535.133314pt;}
.x35{left:537.826648pt;}
.x32{left:543.199981pt;}
.x45{left:555.266648pt;}
.x33{left:557.279981pt;}
.xf{left:566.879981pt;}
.x81{left:570.880000pt;}
.x39{left:584.386648pt;}
.x34{left:598.719981pt;}
.x51{left:603.973314pt;}
.x72{left:607.519981pt;}
.x5d{left:654.333314pt;}
.x8c{left:663.679981pt;}
.x3f{left:673.986648pt;}
.x7a{left:677.986648pt;}
.x73{left:681.919981pt;}
.x86{left:689.666648pt;}
.x78{left:692.386648pt;}
.x8d{left:693.759981pt;}
.x79{left:700.253314pt;}
.x1d{left:704.706648pt;}
.x5e{left:710.053314pt;}
.x4b{left:712.453314pt;}
.x4a{left:726.373314pt;}
.x26{left:727.453314pt;}
.x27{left:741.693314pt;}
.x25{left:748.093314pt;}
.x50{left:750.946648pt;}
.x49{left:759.519981pt;}
.x14{left:761.666648pt;}
.x1a{left:765.666648pt;}
.x77{left:780.893314pt;}
.x70{left:793.599981pt;}
.x2c{left:803.679981pt;}
.x93{left:822.493314pt;}
.x46{left:824.613314pt;}
.x7e{left:842.533314pt;}
.x10{left:844.959981pt;}
.xe{left:848.639981pt;}
.x6b{left:863.493314pt;}
.x6c{left:867.973314pt;}
.x28{left:880.479981pt;}
.x76{left:884.959981pt;}
.x2{left:887.999981pt;}
.x3a{left:896.346648pt;}
.x6e{left:902.626648pt;}
.x65{left:909.253314pt;}
.x6d{left:923.106648pt;}
.x66{left:924.319981pt;}
.x68{left:952.386648pt;}
.x6f{left:974.786648pt;}
.x20{left:990.746648pt;}
.x12{left:1000.666648pt;}
.x11{left:1006.466648pt;}
.x7f{left:1016.800000pt;}
.x4c{left:1026.946648pt;}
.x91{left:1050.853314pt;}
.x2b{left:1056.826648pt;}
.x71{left:1059.426648pt;}
.x80{left:1065.466648pt;}
.x4d{left:1068.706648pt;}
.x63{left:1071.333314pt;}
.x62{left:1088.773314pt;}
.x74{left:1092.186648pt;}
.x64{left:1095.333314pt;}
.x5f{left:1096.799981pt;}
.x61{left:1099.813314pt;}
.x6a{left:1101.506648pt;}
.x69{left:1112.546648pt;}
.x67{left:1113.786648pt;}
.x75{left:1131.386648pt;}
.x17{left:1163.173314pt;}
.x60{left:1289.759981pt;}
}




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