
    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_0ffc597fb8057e06337fb4bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_6b004a4c32c99220fb335430.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_fc9d2333ae648e4595197da0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_ca3b0513b6ead7ef39946ff0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_77f5fd57edd6bf1f5dcdc16b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107422;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_530f079b09da8c65efc01c75.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.987305;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_b40dfdbb42a5025d6227f2f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091797;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_060874c8d80975e655ad90d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936523;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_e4e7ce41d1e6396128259eac.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084473;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_91671c4eca000f2bb24f5a74.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_59782845c616e29d70c96224.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.090332;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_d7e8821f2113271f1aef6b3c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.955000;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_bfce37e2315adaf9e24693d7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.078125;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:-29.520000px;}
.v3{vertical-align:-26.640000px;}
.v5{vertical-align:-24.480000px;}
.v7{vertical-align:-23.040000px;}
.vc{vertical-align:-12.960000px;}
.vd{vertical-align:-10.080000px;}
.ve{vertical-align:-3.060000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:1.440000px;}
.v9{vertical-align:18.000000px;}
.v6{vertical-align:24.480000px;}
.v8{vertical-align:28.800000px;}
.v4{vertical-align:30.240000px;}
.va{vertical-align:32.400000px;}
.vb{vertical-align:43.500000px;}
.v2{vertical-align:71.040000px;}
.ls32{letter-spacing:-1.230000px;}
.ls29{letter-spacing:-1.116000px;}
.ls49{letter-spacing:-1.092000px;}
.ls20{letter-spacing:-1.044000px;}
.ls5f{letter-spacing:-0.828000px;}
.ls22{letter-spacing:-0.576000px;}
.ls31{letter-spacing:-0.544200px;}
.ls4e{letter-spacing:-0.511200px;}
.lsb{letter-spacing:-0.406200px;}
.ls5d{letter-spacing:-0.344400px;}
.ls42{letter-spacing:-0.342600px;}
.ls59{letter-spacing:-0.341400px;}
.ls34{letter-spacing:-0.288000px;}
.ls5b{letter-spacing:-0.231600px;}
.ls60{letter-spacing:-0.225600px;}
.ls61{letter-spacing:-0.216000px;}
.ls5e{letter-spacing:-0.200400px;}
.ls43{letter-spacing:-0.190200px;}
.ls19{letter-spacing:-0.189000px;}
.lsa{letter-spacing:-0.169800px;}
.ls33{letter-spacing:-0.148800px;}
.ls1b{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.132600px;}
.ls14{letter-spacing:-0.128400px;}
.ls2d{letter-spacing:-0.108000px;}
.ls4{letter-spacing:-0.092400px;}
.ls1c{letter-spacing:-0.072000px;}
.ls2b{letter-spacing:-0.046500px;}
.ls4f{letter-spacing:-0.036000px;}
.ls23{letter-spacing:-0.012240px;}
.ls3{letter-spacing:-0.006480px;}
.ls1a{letter-spacing:-0.004896px;}
.ls1{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.017280px;}
.ls3b{letter-spacing:0.034560px;}
.ls1e{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.045360px;}
.ls8{letter-spacing:0.049680px;}
.ls53{letter-spacing:0.059160px;}
.ls2a{letter-spacing:0.072000px;}
.ls2c{letter-spacing:0.073800px;}
.ls1d{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.118800px;}
.lse{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.153600px;}
.ls5c{letter-spacing:0.158400px;}
.ls2f{letter-spacing:0.175800px;}
.ls5a{letter-spacing:0.188400px;}
.ls3d{letter-spacing:0.208200px;}
.ls55{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.222000px;}
.ls54{letter-spacing:0.234000px;}
.ls1f{letter-spacing:0.252000px;}
.ls3a{letter-spacing:0.269280px;}
.ls2e{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.340800px;}
.ls35{letter-spacing:0.342720px;}
.ls47{letter-spacing:0.366768px;}
.ls40{letter-spacing:0.381360px;}
.ls45{letter-spacing:0.396000px;}
.lsc{letter-spacing:0.504000px;}
.ls21{letter-spacing:0.648000px;}
.ls3e{letter-spacing:0.905760px;}
.lsf{letter-spacing:1.068000px;}
.ls10{letter-spacing:1.326000px;}
.ls48{letter-spacing:1.806000px;}
.ls56{letter-spacing:8.765280px;}
.ls58{letter-spacing:12.110400px;}
.ls57{letter-spacing:12.830400px;}
.ls30{letter-spacing:21.631104px;}
.ls25{letter-spacing:22.248000px;}
.ls17{letter-spacing:22.932000px;}
.ls7{letter-spacing:24.282720px;}
.ls36{letter-spacing:27.169920px;}
.ls37{letter-spacing:27.889920px;}
.ls3c{letter-spacing:28.609920px;}
.ls0{letter-spacing:34.364160px;}
.ls18{letter-spacing:34.992000px;}
.ls4b{letter-spacing:43.632000px;}
.ls4c{letter-spacing:44.172000px;}
.ls28{letter-spacing:45.972000px;}
.ls27{letter-spacing:46.008000px;}
.ls50{letter-spacing:47.160000px;}
.ls52{letter-spacing:52.113600px;}
.ls51{letter-spacing:52.164000px;}
.lsd{letter-spacing:52.954080px;}
.ls46{letter-spacing:61.350048px;}
.ls44{letter-spacing:61.416000px;}
.ls38{letter-spacing:72.165600px;}
.ls39{letter-spacing:72.216000px;}
.ls6{letter-spacing:80.290080px;}
.ls26{letter-spacing:89.949600px;}
.ls24{letter-spacing:90.000000px;}
.ls4d{letter-spacing:124.149600px;}
.ls4a{letter-spacing:124.200000px;}
.ls15{letter-spacing:142.149600px;}
.ls16{letter-spacing:142.200000px;}
.ls41{letter-spacing:1083.253440px;}
.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;}
}
.ws2{word-spacing:-144.000000px;}
.ws16{word-spacing:-72.000000px;}
.ws3{word-spacing:-40.032000px;}
.ws18{word-spacing:-35.381280px;}
.ws17{word-spacing:-35.123280px;}
.ws96{word-spacing:-34.183680px;}
.ws19{word-spacing:-34.055280px;}
.wsc0{word-spacing:-32.405472px;}
.ws1{word-spacing:-29.232000px;}
.ws8f{word-spacing:-28.422720px;}
.ws4{word-spacing:-26.740800px;}
.ws93{word-spacing:-26.621280px;}
.ws14{word-spacing:-24.408720px;}
.ws13{word-spacing:-24.002520px;}
.wsc2{word-spacing:-22.068000px;}
.ws57{word-spacing:-21.953232px;}
.ws2c{word-spacing:-21.924000px;}
.wsb2{word-spacing:-21.888000px;}
.wsc3{word-spacing:-21.727632px;}
.ws4b{word-spacing:-21.348000px;}
.wsc1{word-spacing:-21.096000px;}
.ws97{word-spacing:-20.880000px;}
.ws99{word-spacing:-20.861232px;}
.wsbc{word-spacing:-20.056032px;}
.wsbb{word-spacing:-20.016000px;}
.ws20{word-spacing:-19.439280px;}
.ws8d{word-spacing:-18.815040px;}
.ws6b{word-spacing:-17.860752px;}
.ws94{word-spacing:-17.814240px;}
.wsbf{word-spacing:-17.100720px;}
.wsbd{word-spacing:-16.756320px;}
.ws95{word-spacing:-16.613280px;}
.wsb6{word-spacing:-15.012000px;}
.ws15{word-spacing:-14.760000px;}
.wsb3{word-spacing:-14.645232px;}
.ws98{word-spacing:-14.616000px;}
.ws7{word-spacing:-13.668720px;}
.ws5{word-spacing:-13.446720px;}
.ws6{word-spacing:-13.354320px;}
.ws6a{word-spacing:-12.209760px;}
.wsb9{word-spacing:-12.131280px;}
.wsb4{word-spacing:-10.991232px;}
.wsb5{word-spacing:-10.962000px;}
.wsb8{word-spacing:-8.477280px;}
.ws38{word-spacing:-1.908576px;}
.ws83{word-spacing:-1.528560px;}
.ws67{word-spacing:-1.356000px;}
.ws60{word-spacing:-1.048392px;}
.ws0{word-spacing:-1.045440px;}
.ws9{word-spacing:-1.013760px;}
.ws6c{word-spacing:-1.008000px;}
.ws82{word-spacing:-0.897024px;}
.ws2b{word-spacing:-0.864000px;}
.ws58{word-spacing:-0.852000px;}
.ws50{word-spacing:-0.828000px;}
.wsb7{word-spacing:-0.792000px;}
.ws11{word-spacing:-0.776880px;}
.ws28{word-spacing:-0.756000px;}
.ws8b{word-spacing:-0.684000px;}
.ws8a{word-spacing:-0.648000px;}
.ws69{word-spacing:-0.612000px;}
.ws52{word-spacing:-0.564000px;}
.wsba{word-spacing:-0.437040px;}
.ws21{word-spacing:-0.267840px;}
.wsab{word-spacing:-0.216000px;}
.ws40{word-spacing:-0.132000px;}
.ws66{word-spacing:-0.108000px;}
.ws8{word-spacing:0.000000px;}
.ws92{word-spacing:0.136800px;}
.wsac{word-spacing:0.144000px;}
.ws10{word-spacing:0.192240px;}
.ws22{word-spacing:0.209520px;}
.ws61{word-spacing:0.381456px;}
.ws2a{word-spacing:0.468000px;}
.ws85{word-spacing:0.515376px;}
.wsad{word-spacing:0.648000px;}
.ws29{word-spacing:0.912000px;}
.ws12{word-spacing:1.173240px;}
.ws8e{word-spacing:1.233720px;}
.ws3e{word-spacing:1.260000px;}
.ws78{word-spacing:1.332000px;}
.ws8c{word-spacing:1.416000px;}
.ws77{word-spacing:1.584000px;}
.ws51{word-spacing:1.620000px;}
.ws79{word-spacing:1.692000px;}
.ws7a{word-spacing:1.872000px;}
.ws37{word-spacing:2.556000px;}
.ws36{word-spacing:2.592000px;}
.ws68{word-spacing:2.628000px;}
.ws35{word-spacing:2.640000px;}
.ws84{word-spacing:2.717424px;}
.ws3f{word-spacing:3.348000px;}
.ws56{word-spacing:3.396960px;}
.ws53{word-spacing:3.543648px;}
.wsf{word-spacing:3.978000px;}
.wsd{word-spacing:4.069440px;}
.ws54{word-spacing:4.129248px;}
.wse{word-spacing:4.464360px;}
.wsc{word-spacing:4.505040px;}
.ws55{word-spacing:4.540968px;}
.ws62{word-spacing:5.652000px;}
.ws5f{word-spacing:7.056000px;}
.ws5d{word-spacing:7.704000px;}
.ws5e{word-spacing:9.108000px;}
.ws90{word-spacing:9.716520px;}
.ws70{word-spacing:10.944000px;}
.ws6f{word-spacing:11.052000px;}
.ws6d{word-spacing:11.232000px;}
.ws91{word-spacing:11.232480px;}
.ws71{word-spacing:11.304000px;}
.ws72{word-spacing:11.520000px;}
.ws6e{word-spacing:11.748000px;}
.ws4a{word-spacing:12.600000px;}
.ws49{word-spacing:12.672000px;}
.ws48{word-spacing:12.864000px;}
.ws75{word-spacing:14.302800px;}
.ws74{word-spacing:14.584224px;}
.ws73{word-spacing:14.742000px;}
.wsb0{word-spacing:15.010992px;}
.wsae{word-spacing:15.326208px;}
.ws7b{word-spacing:15.624000px;}
.ws7d{word-spacing:15.840000px;}
.wsb1{word-spacing:15.856920px;}
.ws76{word-spacing:15.930672px;}
.ws7e{word-spacing:16.056000px;}
.ws7c{word-spacing:16.068000px;}
.ws81{word-spacing:16.200000px;}
.ws7f{word-spacing:16.236000px;}
.ws80{word-spacing:16.308000px;}
.wsaf{word-spacing:16.313760px;}
.ws34{word-spacing:16.488000px;}
.ws33{word-spacing:16.644000px;}
.wsa1{word-spacing:18.180000px;}
.wsa3{word-spacing:18.648000px;}
.wsa2{word-spacing:19.440000px;}
.wsa{word-spacing:20.723760px;}
.ws86{word-spacing:20.736000px;}
.wsb{word-spacing:20.822400px;}
.ws88{word-spacing:21.132000px;}
.ws87{word-spacing:21.240000px;}
.ws89{word-spacing:21.528000px;}
.wsa9{word-spacing:21.672000px;}
.wsa5{word-spacing:21.744000px;}
.wsa6{word-spacing:21.888000px;}
.wsa4{word-spacing:22.032000px;}
.wsa7{word-spacing:22.068000px;}
.wsa8{word-spacing:22.080000px;}
.ws5c{word-spacing:23.232000px;}
.ws5b{word-spacing:23.508000px;}
.ws59{word-spacing:23.544000px;}
.wsaa{word-spacing:24.948000px;}
.ws5a{word-spacing:26.100000px;}
.ws9f{word-spacing:29.820000px;}
.wsa0{word-spacing:29.844000px;}
.ws44{word-spacing:30.582000px;}
.ws45{word-spacing:31.169856px;}
.ws24{word-spacing:31.476144px;}
.ws25{word-spacing:31.833648px;}
.ws27{word-spacing:31.883664px;}
.ws65{word-spacing:31.908000px;}
.ws64{word-spacing:32.112000px;}
.ws26{word-spacing:32.313096px;}
.ws3a{word-spacing:36.144000px;}
.ws3c{word-spacing:36.432000px;}
.ws3b{word-spacing:36.612000px;}
.ws3d{word-spacing:37.164000px;}
.ws39{word-spacing:37.488000px;}
.ws1f{word-spacing:45.981120px;}
.ws63{word-spacing:60.264000px;}
.ws2f{word-spacing:61.812000px;}
.ws2e{word-spacing:61.920000px;}
.ws30{word-spacing:62.280000px;}
.ws31{word-spacing:62.316000px;}
.ws2d{word-spacing:62.400000px;}
.ws32{word-spacing:62.904000px;}
.ws9e{word-spacing:81.144000px;}
.ws1d{word-spacing:84.902976px;}
.ws1b{word-spacing:85.604688px;}
.ws1c{word-spacing:85.616640px;}
.ws1e{word-spacing:85.618944px;}
.ws1a{word-spacing:86.409792px;}
.ws47{word-spacing:90.396000px;}
.ws46{word-spacing:90.432000px;}
.ws4e{word-spacing:94.824000px;}
.ws4f{word-spacing:94.872000px;}
.ws4c{word-spacing:95.484000px;}
.ws4d{word-spacing:95.904000px;}
.ws43{word-spacing:101.268000px;}
.ws42{word-spacing:101.376000px;}
.ws41{word-spacing:101.388000px;}
.ws9d{word-spacing:122.832000px;}
.ws9a{word-spacing:122.976000px;}
.ws9b{word-spacing:123.120000px;}
.ws9c{word-spacing:123.528000px;}
.wsc6{word-spacing:140.194320px;}
.wsbe{word-spacing:556.655184px;}
.ws23{word-spacing:648.273360px;}
.wsc4{word-spacing:1623.664656px;}
.wsc5{word-spacing:2222.645520px;}
._29{margin-left:-16.974624px;}
._15{margin-left:-11.232000px;}
._0{margin-left:-10.224000px;}
._19{margin-left:-8.532000px;}
._e{margin-left:-7.358880px;}
._6{margin-left:-5.781360px;}
._5{margin-left:-4.000800px;}
._3{margin-left:-2.517984px;}
._1{margin-left:-1.008000px;}
._4{width:1.146432px;}
._2{width:3.098784px;}
._18{width:4.100544px;}
._a{width:5.965008px;}
._9{width:7.130736px;}
._21{width:8.537568px;}
._10{width:15.787776px;}
._1f{width:16.951584px;}
._c{width:21.454320px;}
._d{width:23.402160px;}
._13{width:24.528000px;}
._7{width:25.851024px;}
._12{width:28.601568px;}
._11{width:30.108000px;}
._1b{width:41.115552px;}
._1c{width:44.961984px;}
._8{width:46.357344px;}
._1a{width:53.409984px;}
._f{width:54.985776px;}
._20{width:61.176000px;}
._1e{width:62.316000px;}
._1d{width:63.978960px;}
._b{width:67.069248px;}
._23{width:72.693648px;}
._25{width:169.663968px;}
._16{width:202.884000px;}
._24{width:219.556800px;}
._17{width:256.740000px;}
._26{width:291.325440px;}
._14{width:322.620000px;}
._22{width:521.117760px;}
._27{width:588.779616px;}
._28{width:693.659616px;}
.fcf{color:rgb(233,120,36);}
.fce{color:rgb(128,53,14);}
.fcd{color:rgb(127,127,127);}
.fc0{color:rgb(118,118,118);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc4{color:rgb(21,96,130);}
.fc5{color:rgb(0,117,185);}
.fcb{color:rgb(54,126,176);}
.fc6{color:rgb(74,74,73);}
.fc7{color:rgb(12,35,64);}
.fc3{color:transparent;}
.fc9{color:rgb(20,132,183);}
.fc8{color:rgb(51,51,51);}
.fca{color:rgb(55,125,176);}
.fcc{color:rgb(8,79,106);}
.fs22{font-size:28.080000px;}
.fs20{font-size:36.000000px;}
.fs1b{font-size:40.320000px;}
.fs21{font-size:41.760000px;}
.fs13{font-size:43.920000px;}
.fs1{font-size:48.240000px;}
.fs1e{font-size:54.000000px;}
.fs1f{font-size:54.144000px;}
.fs1a{font-size:59.760000px;}
.fs19{font-size:64.080000px;}
.fs7{font-size:66.240000px;}
.fs17{font-size:67.680000px;}
.fs0{font-size:72.000000px;}
.fs1d{font-size:72.144000px;}
.fs9{font-size:79.920000px;}
.fsc{font-size:84.240000px;}
.fs1c{font-size:84.384000px;}
.fs12{font-size:87.840000px;}
.fs14{font-size:87.984000px;}
.fsb{font-size:95.760000px;}
.fsa{font-size:95.904000px;}
.fs16{font-size:102.240000px;}
.fs18{font-size:102.384000px;}
.fs15{font-size:103.680000px;}
.fsf{font-size:108.000000px;}
.fse{font-size:108.144000px;}
.fs8{font-size:120.240000px;}
.fsd{font-size:120.384000px;}
.fs23{font-size:128.160000px;}
.fs10{font-size:129.600000px;}
.fs11{font-size:129.744000px;}
.fs6{font-size:131.760000px;}
.fs5{font-size:131.904000px;}
.fs2{font-size:144.000000px;}
.fs4{font-size:167.760000px;}
.fs3{font-size:167.904000px;}
.fs24{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:5.292000px;}
.y3b{bottom:5.295000px;}
.y15{bottom:14.328000px;}
.y1{bottom:19.692000px;}
.yc{bottom:25.092000px;}
.y6{bottom:54.144000px;}
.yf0{bottom:64.944000px;}
.y2e{bottom:77.760000px;}
.ye2{bottom:80.172000px;}
.y59{bottom:92.988000px;}
.yc3{bottom:94.356000px;}
.yb0{bottom:96.588000px;}
.yf6{bottom:98.532000px;}
.y4a{bottom:101.412000px;}
.y9e{bottom:102.528000px;}
.y98{bottom:103.104000px;}
.ybe{bottom:104.436000px;}
.yd7{bottom:104.580000px;}
.ybf{bottom:105.516000px;}
.y5{bottom:107.964000px;}
.yc6{bottom:109.080000px;}
.yc2{bottom:109.548000px;}
.y83{bottom:117.576000px;}
.y82{bottom:124.416000px;}
.yc5{bottom:124.488000px;}
.yc1{bottom:124.704000px;}
.yd0{bottom:130.068000px;}
.ya6{bottom:130.104000px;}
.yac{bottom:132.048000px;}
.y58{bottom:134.568000px;}
.yc4{bottom:139.392000px;}
.yc0{bottom:139.860000px;}
.yad{bottom:142.272000px;}
.y3{bottom:146.520000px;}
.ya5{bottom:147.924000px;}
.y5c{bottom:152.535000px;}
.y1f{bottom:152.745000px;}
.ya9{bottom:153.795000px;}
.y67{bottom:155.625000px;}
.y4{bottom:163.440000px;}
.ya8{bottom:169.995000px;}
.y57{bottom:175.965000px;}
.yab{bottom:176.070000px;}
.y80{bottom:183.240000px;}
.y5b{bottom:184.215000px;}
.y1e{bottom:195.945000px;}
.y8e{bottom:196.950000px;}
.y2d{bottom:199.725000px;}
.ye5{bottom:200.490000px;}
.y71{bottom:200.910000px;}
.ya4{bottom:202.500000px;}
.y66{bottom:204.225000px;}
.y7f{bottom:215.640000px;}
.y5a{bottom:215.895000px;}
.ycf{bottom:219.705000px;}
.yb6{bottom:220.860000px;}
.ye4{bottom:225.690000px;}
.y14{bottom:225.900000px;}
.y8d{bottom:229.350000px;}
.yaf{bottom:232.635000px;}
.y105{bottom:232.890000px;}
.y103{bottom:233.250000px;}
.y2c{bottom:235.005000px;}
.y70{bottom:236.595000px;}
.yef{bottom:239.760000px;}
.yf5{bottom:243.690000px;}
.y7e{bottom:248.040000px;}
.y39{bottom:249.735000px;}
.y56{bottom:250.485000px;}
.ye3{bottom:250.890000px;}
.yae{bottom:252.255000px;}
.ybd{bottom:255.810000px;}
.y9f{bottom:255.930000px;}
.y13{bottom:265.035000px;}
.y8c{bottom:265.290000px;}
.yda{bottom:266.250000px;}
.y2b{bottom:267.405000px;}
.y2{bottom:270.330000px;}
.y65{bottom:270.870000px;}
.y1d{bottom:275.145000px;}
.y49{bottom:275.475000px;}
.y7d{bottom:280.440000px;}
.ydf{bottom:281.595000px;}
.y38{bottom:282.135000px;}
.yb9{bottom:283.650000px;}
.y55{bottom:284.145000px;}
.yd9{bottom:291.450000px;}
.y104{bottom:294.375000px;}
.y2a{bottom:299.850000px;}
.y12{bottom:301.035000px;}
.y99{bottom:302.790000px;}
.y8b{bottom:306.720000px;}
.yde{bottom:306.795000px;}
.y40{bottom:311.970000px;}
.y48{bottom:312.735000px;}
.y3c{bottom:314.205000px;}
.y37{bottom:314.535000px;}
.y6f{bottom:317.775000px;}
.y54{bottom:317.805000px;}
.y1c{bottom:318.390000px;}
.y7c{bottom:321.870000px;}
.ydd{bottom:332.025000px;}
.y11{bottom:337.065000px;}
.y64{bottom:337.470000px;}
.y3f{bottom:338.430000px;}
.y29{bottom:341.250000px;}
.y36{bottom:346.935000px;}
.y53{bottom:351.465000px;}
.ya1{bottom:351.510000px;}
.ya3{bottom:352.650000px;}
.y7b{bottom:354.270000px;}
.yee{bottom:356.970000px;}
.y6e{bottom:363.315000px;}
.y3e{bottom:364.755000px;}
.y47{bottom:369.465000px;}
.y5d{bottom:370.050000px;}
.y8a{bottom:371.520000px;}
.ydc{bottom:372.495000px;}
.ye1{bottom:372.570000px;}
.y10{bottom:373.065000px;}
.ya0{bottom:373.140000px;}
.y28{bottom:373.650000px;}
.ya2{bottom:374.295000px;}
.y81{bottom:376.485000px;}
.y102{bottom:382.830000px;}
.ya7{bottom:384.225000px;}
.y52{bottom:385.170000px;}
.y7a{bottom:386.670000px;}
.y3d{bottom:391.215000px;}
.yd2{bottom:391.755000px;}
.y35{bottom:393.765000px;}
.y101{bottom:396.465000px;}
.y1b{bottom:397.590000px;}
.ydb{bottom:397.695000px;}
.yba{bottom:397.725000px;}
.ye0{bottom:397.770000px;}
.yf4{bottom:398.085000px;}
.yed{bottom:399.990000px;}
.y89{bottom:403.920000px;}
.y63{bottom:404.070000px;}
.y27{bottom:406.050000px;}
.y46{bottom:406.725000px;}
.y6d{bottom:408.885000px;}
.yf{bottom:409.065000px;}
.yd1{bottom:416.955000px;}
.y51{bottom:418.830000px;}
.y79{bottom:419.070000px;}
.yb7{bottom:423.360000px;}
.y34{bottom:426.165000px;}
.yec{bottom:429.375000px;}
.y1a{bottom:440.790000px;}
.y45{bottom:443.985000px;}
.y6c{bottom:444.525000px;}
.y88{bottom:445.350000px;}
.y26{bottom:447.480000px;}
.y50{bottom:452.490000px;}
.y97{bottom:457.410000px;}
.y33{bottom:458.565000px;}
.y78{bottom:459.615000px;}
.y9d{bottom:467.430000px;}
.y62{bottom:470.700000px;}
.y92{bottom:471.930000px;}
.y96{bottom:473.610000px;}
.y25{bottom:479.880000px;}
.y6b{bottom:480.165000px;}
.y9c{bottom:483.630000px;}
.y4f{bottom:486.150000px;}
.ye7{bottom:488.595000px;}
.y95{bottom:489.810000px;}
.y77{bottom:495.975000px;}
.yb8{bottom:497.595000px;}
.yb2{bottom:497.730000px;}
.yd8{bottom:498.810000px;}
.y9b{bottom:499.830000px;}
.y90{bottom:500.220000px;}
.y44{bottom:500.685000px;}
.yd6{bottom:503.100000px;}
.y91{bottom:504.330000px;}
.y32{bottom:505.365000px;}
.y94{bottom:506.010000px;}
.y19{bottom:509.790000px;}
.y87{bottom:510.150000px;}
.y24{bottom:512.280000px;}
.yce{bottom:512.850000px;}
.yeb{bottom:513.435000px;}
.ye6{bottom:513.795000px;}
.y9a{bottom:516.030000px;}
.yf3{bottom:519.735000px;}
.y4e{bottom:519.840000px;}
.y93{bottom:522.210000px;}
.y6a{bottom:525.750000px;}
.ybb{bottom:530.535000px;}
.y76{bottom:532.155000px;}
.y61{bottom:537.300000px;}
.y31{bottom:537.810000px;}
.y43{bottom:537.990000px;}
.y18{bottom:538.590000px;}
.y23{bottom:544.680000px;}
.y86{bottom:551.550000px;}
.yb5{bottom:552.420000px;}
.ycd{bottom:560.490000px;}
.y69{bottom:561.390000px;}
.y8f{bottom:563.610000px;}
.yb{bottom:565.275000px;}
.y17{bottom:567.435000px;}
.y75{bottom:569.415000px;}
.y4d{bottom:571.320000px;}
.ybc{bottom:572.400000px;}
.y42{bottom:575.250000px;}
.ycc{bottom:578.490000px;}
.y30{bottom:584.610000px;}
.y22{bottom:586.080000px;}
.y85{bottom:592.995000px;}
.ycb{bottom:596.490000px;}
.y68{bottom:597.030000px;}
.yb1{bottom:597.525000px;}
.yb4{bottom:599.325000px;}
.y60{bottom:599.610000px;}
.y74{bottom:601.845000px;}
.yb3{bottom:604.650000px;}
.ya{bottom:604.905000px;}
.y4c{bottom:604.980000px;}
.yd4{bottom:608.400000px;}
.yaa{bottom:609.510000px;}
.yca{bottom:614.490000px;}
.yfb{bottom:614.625000px;}
.y100{bottom:616.140000px;}
.y2f{bottom:617.010000px;}
.y21{bottom:618.510000px;}
.y41{bottom:632.130000px;}
.y73{bottom:634.245000px;}
.y84{bottom:634.395000px;}
.y3a{bottom:637.020000px;}
.y4b{bottom:638.640000px;}
.yd3{bottom:640.830000px;}
.yf2{bottom:641.010000px;}
.yea{bottom:645.765000px;}
.yfa{bottom:647.025000px;}
.yff{bottom:648.540000px;}
.yc9{bottom:650.490000px;}
.yd5{bottom:656.610000px;}
.y9{bottom:666.870000px;}
.yf9{bottom:679.425000px;}
.yfe{bottom:680.940000px;}
.yc8{bottom:686.520000px;}
.yf1{bottom:699.810000px;}
.y5f{bottom:701.490000px;}
.yc7{bottom:705.420000px;}
.y8{bottom:712.410000px;}
.ye{bottom:717.480000px;}
.ye9{bottom:722.265000px;}
.yf8{bottom:729.870000px;}
.yfd{bottom:731.370000px;}
.y20{bottom:738.435000px;}
.y72{bottom:744.945000px;}
.y16{bottom:747.390000px;}
.y5e{bottom:751.755000px;}
.y7{bottom:757.800000px;}
.yf7{bottom:762.270000px;}
.yfc{bottom:763.770000px;}
.ye8{bottom:767.625000px;}
.h1a{height:21.960000px;}
.h39{height:36.193359px;}
.h2{height:36.274219px;}
.h1c{height:39.395039px;}
.h3e{height:40.328640px;}
.h34{height:40.605469px;}
.hc{height:41.809570px;}
.h36{height:44.936719px;}
.h2d{height:46.801758px;}
.h2c{height:46.880859px;}
.h2e{height:47.005875px;}
.h25{height:48.318750px;}
.h37{height:48.436523px;}
.h32{height:51.793945px;}
.h3a{height:51.881484px;}
.h38{height:54.140625px;}
.h3b{height:54.248906px;}
.h9{height:57.410156px;}
.h1{height:62.402344px;}
.h2f{height:62.507812px;}
.h31{height:62.632828px;}
.h30{height:63.344531px;}
.h1b{height:66.051562px;}
.h23{height:72.007031px;}
.h17{height:73.010742px;}
.h33{height:73.134141px;}
.h2a{height:73.135547px;}
.h3c{height:73.259156px;}
.h1d{height:76.130859px;}
.h1e{height:76.255664px;}
.h24{height:76.985156px;}
.h42{height:82.995117px;}
.he{height:83.135391px;}
.hd{height:83.260406px;}
.h43{height:84.435117px;}
.h28{height:85.894102px;}
.h29{height:86.023266px;}
.h20{height:89.859375px;}
.h35{height:90.380859px;}
.h21{height:91.706484px;}
.h22{height:91.835648px;}
.h41{height:92.917969px;}
.h15{height:93.603516px;}
.h16{height:93.728320px;}
.h13{height:93.761719px;}
.h1f{height:93.886734px;}
.h2b{height:94.927148px;}
.h14{height:96.873047px;}
.h12{height:97.002211px;}
.ha{height:104.211914px;}
.hb{height:104.388047px;}
.h10{height:104.513063px;}
.h3f{height:107.141760px;}
.h8{height:114.389297px;}
.h7{height:114.514313px;}
.h18{height:116.247656px;}
.h19{height:116.376820px;}
.h3{height:125.015625px;}
.h26{height:126.147656px;}
.h4{height:129.164062px;}
.hf{height:144.174141px;}
.h27{height:145.397461px;}
.h11{height:145.522266px;}
.h6{height:145.643203px;}
.h5{height:145.768219px;}
.h3d{height:226.980000px;}
.h40{height:249.609375px;}
.h0{height:810.000000px;}
.w5{width:57.780000px;}
.w4{width:57.960000px;}
.w3{width:63.360000px;}
.w2{width:323.460000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x5c{left:3.930000px;}
.x5a{left:9.285000px;}
.x72{left:15.551979px;}
.x19{left:26.315979px;}
.x10{left:33.731979px;}
.x4{left:38.375979px;}
.xd{left:40.823979px;}
.x24{left:46.295979px;}
.x79{left:50.075979px;}
.x1c{left:57.347979px;}
.x25{left:67.535979px;}
.x6{left:72.539979px;}
.x1a{left:80.315979px;}
.x4e{left:89.423979px;}
.x78{left:92.771979px;}
.x15{left:94.787979px;}
.x29{left:103.679979px;}
.x1b{left:107.315979px;}
.x56{left:116.567979px;}
.x4a{left:135.755979px;}
.xa{left:138.959979px;}
.xb{left:140.543979px;}
.x6a{left:145.547979px;}
.x57{left:146.663979px;}
.x55{left:162.179979px;}
.xc{left:167.549979px;}
.x41{left:176.909979px;}
.x3a{left:184.859979px;}
.x13{left:186.840000px;}
.x40{left:191.189979px;}
.x6b{left:201.884979px;}
.x4f{left:231.449979px;}
.x50{left:232.709979px;}
.x80{left:248.579979px;}
.x42{left:253.829979px;}
.x59{left:259.740000px;}
.x44{left:261.794979px;}
.x76{left:265.424979px;}
.x77{left:271.184979px;}
.x46{left:285.089979px;}
.x49{left:294.554979px;}
.x7f{left:306.284979px;}
.x58{left:320.369979px;}
.x5b{left:322.920000px;}
.x54{left:331.349979px;}
.x14{left:346.649979px;}
.x7d{left:367.844979px;}
.x45{left:379.979979px;}
.x82{left:391.244979px;}
.x21{left:419.864979px;}
.x43{left:430.124979px;}
.x36{left:433.049979px;}
.x5d{left:438.300000px;}
.x22{left:460.364979px;}
.x51{left:467.789979px;}
.x28{left:484.739979px;}
.x5e{left:496.080000px;}
.x6c{left:510.584979px;}
.x3e{left:519.914979px;}
.x3c{left:528.374979px;}
.x3d{left:537.014979px;}
.x84{left:550.589979px;}
.x5f{left:553.860000px;}
.x37{left:558.899979px;}
.x83{left:579.164979px;}
.x18{left:580.289979px;}
.x16{left:605.234979px;}
.x60{left:611.640000px;}
.x7{left:646.664979px;}
.x17{left:650.234979px;}
.x8{left:651.779979px;}
.x61{left:669.420000px;}
.x39{left:681.989979px;}
.x47{left:687.524979px;}
.x38{left:689.189979px;}
.x52{left:703.769979px;}
.x1d{left:715.394979px;}
.x3b{left:725.039979px;}
.x62{left:727.200000px;}
.x48{left:734.504979px;}
.x6f{left:748.829979px;}
.x6e{left:755.129979px;}
.x26{left:756.509979px;}
.x27{left:757.514979px;}
.x6d{left:758.729979px;}
.x1e{left:761.549979px;}
.x2d{left:764.669979px;}
.x3f{left:773.609979px;}
.x1f{left:777.989979px;}
.x63{left:784.800000px;}
.x20{left:805.709979px;}
.x70{left:835.889979px;}
.x64{left:842.580000px;}
.x2c{left:849.674979px;}
.x71{left:863.069979px;}
.x7a{left:875.774979px;}
.x4b{left:884.774979px;}
.x2e{left:895.859979px;}
.x65{left:900.360000px;}
.x11{left:902.489979px;}
.x31{left:912.089979px;}
.xe{left:915.809979px;}
.x5{left:924.554979px;}
.x12{left:936.329979px;}
.x2a{left:940.574979px;}
.x66{left:958.140000px;}
.xf{left:960.809979px;}
.x7c{left:968.069979px;}
.x7b{left:969.149979px;}
.x4d{left:971.714979px;}
.x2f{left:979.304979px;}
.x32{left:980.894979px;}
.x34{left:1015.019979px;}
.x53{left:1069.199979px;}
.x67{left:1073.700000px;}
.x81{left:1078.349979px;}
.x2b{left:1105.814979px;}
.x7e{left:1109.774979px;}
.x30{left:1117.649979px;}
.x9{left:1131.269979px;}
.x4c{left:1165.574979px;}
.x68{left:1189.080000px;}
.x35{left:1239.224979px;}
.x74{left:1242.719979px;}
.x69{left:1246.860000px;}
.x73{left:1253.159979px;}
.x33{left:1255.574979px;}
.x3{left:1260.149979px;}
.x75{left:1266.119979px;}
.x2{left:1310.909979px;}
.x23{left:1406.954979px;}
.x1{left:1416.494979px;}
@media print{
.v1{vertical-align:-26.240000pt;}
.v3{vertical-align:-23.680000pt;}
.v5{vertical-align:-21.760000pt;}
.v7{vertical-align:-20.480000pt;}
.vc{vertical-align:-11.520000pt;}
.vd{vertical-align:-8.960000pt;}
.ve{vertical-align:-2.720000pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:1.280000pt;}
.v9{vertical-align:16.000000pt;}
.v6{vertical-align:21.760000pt;}
.v8{vertical-align:25.600000pt;}
.v4{vertical-align:26.880000pt;}
.va{vertical-align:28.800000pt;}
.vb{vertical-align:38.666667pt;}
.v2{vertical-align:63.146667pt;}
.ls32{letter-spacing:-1.093333pt;}
.ls29{letter-spacing:-0.992000pt;}
.ls49{letter-spacing:-0.970667pt;}
.ls20{letter-spacing:-0.928000pt;}
.ls5f{letter-spacing:-0.736000pt;}
.ls22{letter-spacing:-0.512000pt;}
.ls31{letter-spacing:-0.483733pt;}
.ls4e{letter-spacing:-0.454400pt;}
.lsb{letter-spacing:-0.361067pt;}
.ls5d{letter-spacing:-0.306133pt;}
.ls42{letter-spacing:-0.304533pt;}
.ls59{letter-spacing:-0.303467pt;}
.ls34{letter-spacing:-0.256000pt;}
.ls5b{letter-spacing:-0.205867pt;}
.ls60{letter-spacing:-0.200533pt;}
.ls61{letter-spacing:-0.192000pt;}
.ls5e{letter-spacing:-0.178133pt;}
.ls43{letter-spacing:-0.169067pt;}
.ls19{letter-spacing:-0.168000pt;}
.lsa{letter-spacing:-0.150933pt;}
.ls33{letter-spacing:-0.132267pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.117867pt;}
.ls14{letter-spacing:-0.114133pt;}
.ls2d{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:-0.082133pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls2b{letter-spacing:-0.041333pt;}
.ls4f{letter-spacing:-0.032000pt;}
.ls23{letter-spacing:-0.010880pt;}
.ls3{letter-spacing:-0.005760pt;}
.ls1a{letter-spacing:-0.004352pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.015360pt;}
.ls3b{letter-spacing:0.030720pt;}
.ls1e{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.040320pt;}
.ls8{letter-spacing:0.044160pt;}
.ls53{letter-spacing:0.052587pt;}
.ls2a{letter-spacing:0.064000pt;}
.ls2c{letter-spacing:0.065600pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.105600pt;}
.lse{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.136533pt;}
.ls5c{letter-spacing:0.140800pt;}
.ls2f{letter-spacing:0.156267pt;}
.ls5a{letter-spacing:0.167467pt;}
.ls3d{letter-spacing:0.185067pt;}
.ls55{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.197333pt;}
.ls54{letter-spacing:0.208000pt;}
.ls1f{letter-spacing:0.224000pt;}
.ls3a{letter-spacing:0.239360pt;}
.ls2e{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.302933pt;}
.ls35{letter-spacing:0.304640pt;}
.ls47{letter-spacing:0.326016pt;}
.ls40{letter-spacing:0.338987pt;}
.ls45{letter-spacing:0.352000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls21{letter-spacing:0.576000pt;}
.ls3e{letter-spacing:0.805120pt;}
.lsf{letter-spacing:0.949333pt;}
.ls10{letter-spacing:1.178667pt;}
.ls48{letter-spacing:1.605333pt;}
.ls56{letter-spacing:7.791360pt;}
.ls58{letter-spacing:10.764800pt;}
.ls57{letter-spacing:11.404800pt;}
.ls30{letter-spacing:19.227648pt;}
.ls25{letter-spacing:19.776000pt;}
.ls17{letter-spacing:20.384000pt;}
.ls7{letter-spacing:21.584640pt;}
.ls36{letter-spacing:24.151040pt;}
.ls37{letter-spacing:24.791040pt;}
.ls3c{letter-spacing:25.431040pt;}
.ls0{letter-spacing:30.545920pt;}
.ls18{letter-spacing:31.104000pt;}
.ls4b{letter-spacing:38.784000pt;}
.ls4c{letter-spacing:39.264000pt;}
.ls28{letter-spacing:40.864000pt;}
.ls27{letter-spacing:40.896000pt;}
.ls50{letter-spacing:41.920000pt;}
.ls52{letter-spacing:46.323200pt;}
.ls51{letter-spacing:46.368000pt;}
.lsd{letter-spacing:47.070293pt;}
.ls46{letter-spacing:54.533376pt;}
.ls44{letter-spacing:54.592000pt;}
.ls38{letter-spacing:64.147200pt;}
.ls39{letter-spacing:64.192000pt;}
.ls6{letter-spacing:71.368960pt;}
.ls26{letter-spacing:79.955200pt;}
.ls24{letter-spacing:80.000000pt;}
.ls4d{letter-spacing:110.355200pt;}
.ls4a{letter-spacing:110.400000pt;}
.ls15{letter-spacing:126.355200pt;}
.ls16{letter-spacing:126.400000pt;}
.ls41{letter-spacing:962.891947pt;}
.ws2{word-spacing:-128.000000pt;}
.ws16{word-spacing:-64.000000pt;}
.ws3{word-spacing:-35.584000pt;}
.ws18{word-spacing:-31.450027pt;}
.ws17{word-spacing:-31.220693pt;}
.ws96{word-spacing:-30.385493pt;}
.ws19{word-spacing:-30.271360pt;}
.wsc0{word-spacing:-28.804864pt;}
.ws1{word-spacing:-25.984000pt;}
.ws8f{word-spacing:-25.264640pt;}
.ws4{word-spacing:-23.769600pt;}
.ws93{word-spacing:-23.663360pt;}
.ws14{word-spacing:-21.696640pt;}
.ws13{word-spacing:-21.335573pt;}
.wsc2{word-spacing:-19.616000pt;}
.ws57{word-spacing:-19.513984pt;}
.ws2c{word-spacing:-19.488000pt;}
.wsb2{word-spacing:-19.456000pt;}
.wsc3{word-spacing:-19.313451pt;}
.ws4b{word-spacing:-18.976000pt;}
.wsc1{word-spacing:-18.752000pt;}
.ws97{word-spacing:-18.560000pt;}
.ws99{word-spacing:-18.543317pt;}
.wsbc{word-spacing:-17.827584pt;}
.wsbb{word-spacing:-17.792000pt;}
.ws20{word-spacing:-17.279360pt;}
.ws8d{word-spacing:-16.724480pt;}
.ws6b{word-spacing:-15.876224pt;}
.ws94{word-spacing:-15.834880pt;}
.wsbf{word-spacing:-15.200640pt;}
.wsbd{word-spacing:-14.894507pt;}
.ws95{word-spacing:-14.767360pt;}
.wsb6{word-spacing:-13.344000pt;}
.ws15{word-spacing:-13.120000pt;}
.wsb3{word-spacing:-13.017984pt;}
.ws98{word-spacing:-12.992000pt;}
.ws7{word-spacing:-12.149973pt;}
.ws5{word-spacing:-11.952640pt;}
.ws6{word-spacing:-11.870507pt;}
.ws6a{word-spacing:-10.853120pt;}
.wsb9{word-spacing:-10.783360pt;}
.wsb4{word-spacing:-9.769984pt;}
.wsb5{word-spacing:-9.744000pt;}
.wsb8{word-spacing:-7.535360pt;}
.ws38{word-spacing:-1.696512pt;}
.ws83{word-spacing:-1.358720pt;}
.ws67{word-spacing:-1.205333pt;}
.ws60{word-spacing:-0.931904pt;}
.ws0{word-spacing:-0.929280pt;}
.ws9{word-spacing:-0.901120pt;}
.ws6c{word-spacing:-0.896000pt;}
.ws82{word-spacing:-0.797355pt;}
.ws2b{word-spacing:-0.768000pt;}
.ws58{word-spacing:-0.757333pt;}
.ws50{word-spacing:-0.736000pt;}
.wsb7{word-spacing:-0.704000pt;}
.ws11{word-spacing:-0.690560pt;}
.ws28{word-spacing:-0.672000pt;}
.ws8b{word-spacing:-0.608000pt;}
.ws8a{word-spacing:-0.576000pt;}
.ws69{word-spacing:-0.544000pt;}
.ws52{word-spacing:-0.501333pt;}
.wsba{word-spacing:-0.388480pt;}
.ws21{word-spacing:-0.238080pt;}
.wsab{word-spacing:-0.192000pt;}
.ws40{word-spacing:-0.117333pt;}
.ws66{word-spacing:-0.096000pt;}
.ws8{word-spacing:0.000000pt;}
.ws92{word-spacing:0.121600pt;}
.wsac{word-spacing:0.128000pt;}
.ws10{word-spacing:0.170880pt;}
.ws22{word-spacing:0.186240pt;}
.ws61{word-spacing:0.339072pt;}
.ws2a{word-spacing:0.416000pt;}
.ws85{word-spacing:0.458112pt;}
.wsad{word-spacing:0.576000pt;}
.ws29{word-spacing:0.810667pt;}
.ws12{word-spacing:1.042880pt;}
.ws8e{word-spacing:1.096640pt;}
.ws3e{word-spacing:1.120000pt;}
.ws78{word-spacing:1.184000pt;}
.ws8c{word-spacing:1.258667pt;}
.ws77{word-spacing:1.408000pt;}
.ws51{word-spacing:1.440000pt;}
.ws79{word-spacing:1.504000pt;}
.ws7a{word-spacing:1.664000pt;}
.ws37{word-spacing:2.272000pt;}
.ws36{word-spacing:2.304000pt;}
.ws68{word-spacing:2.336000pt;}
.ws35{word-spacing:2.346667pt;}
.ws84{word-spacing:2.415488pt;}
.ws3f{word-spacing:2.976000pt;}
.ws56{word-spacing:3.019520pt;}
.ws53{word-spacing:3.149909pt;}
.wsf{word-spacing:3.536000pt;}
.wsd{word-spacing:3.617280pt;}
.ws54{word-spacing:3.670443pt;}
.wse{word-spacing:3.968320pt;}
.wsc{word-spacing:4.004480pt;}
.ws55{word-spacing:4.036416pt;}
.ws62{word-spacing:5.024000pt;}
.ws5f{word-spacing:6.272000pt;}
.ws5d{word-spacing:6.848000pt;}
.ws5e{word-spacing:8.096000pt;}
.ws90{word-spacing:8.636907pt;}
.ws70{word-spacing:9.728000pt;}
.ws6f{word-spacing:9.824000pt;}
.ws6d{word-spacing:9.984000pt;}
.ws91{word-spacing:9.984427pt;}
.ws71{word-spacing:10.048000pt;}
.ws72{word-spacing:10.240000pt;}
.ws6e{word-spacing:10.442667pt;}
.ws4a{word-spacing:11.200000pt;}
.ws49{word-spacing:11.264000pt;}
.ws48{word-spacing:11.434667pt;}
.ws75{word-spacing:12.713600pt;}
.ws74{word-spacing:12.963755pt;}
.ws73{word-spacing:13.104000pt;}
.wsb0{word-spacing:13.343104pt;}
.wsae{word-spacing:13.623296pt;}
.ws7b{word-spacing:13.888000pt;}
.ws7d{word-spacing:14.080000pt;}
.wsb1{word-spacing:14.095040pt;}
.ws76{word-spacing:14.160597pt;}
.ws7e{word-spacing:14.272000pt;}
.ws7c{word-spacing:14.282667pt;}
.ws81{word-spacing:14.400000pt;}
.ws7f{word-spacing:14.432000pt;}
.ws80{word-spacing:14.496000pt;}
.wsaf{word-spacing:14.501120pt;}
.ws34{word-spacing:14.656000pt;}
.ws33{word-spacing:14.794667pt;}
.wsa1{word-spacing:16.160000pt;}
.wsa3{word-spacing:16.576000pt;}
.wsa2{word-spacing:17.280000pt;}
.wsa{word-spacing:18.421120pt;}
.ws86{word-spacing:18.432000pt;}
.wsb{word-spacing:18.508800pt;}
.ws88{word-spacing:18.784000pt;}
.ws87{word-spacing:18.880000pt;}
.ws89{word-spacing:19.136000pt;}
.wsa9{word-spacing:19.264000pt;}
.wsa5{word-spacing:19.328000pt;}
.wsa6{word-spacing:19.456000pt;}
.wsa4{word-spacing:19.584000pt;}
.wsa7{word-spacing:19.616000pt;}
.wsa8{word-spacing:19.626667pt;}
.ws5c{word-spacing:20.650667pt;}
.ws5b{word-spacing:20.896000pt;}
.ws59{word-spacing:20.928000pt;}
.wsaa{word-spacing:22.176000pt;}
.ws5a{word-spacing:23.200000pt;}
.ws9f{word-spacing:26.506667pt;}
.wsa0{word-spacing:26.528000pt;}
.ws44{word-spacing:27.184000pt;}
.ws45{word-spacing:27.706539pt;}
.ws24{word-spacing:27.978795pt;}
.ws25{word-spacing:28.296576pt;}
.ws27{word-spacing:28.341035pt;}
.ws65{word-spacing:28.362667pt;}
.ws64{word-spacing:28.544000pt;}
.ws26{word-spacing:28.722752pt;}
.ws3a{word-spacing:32.128000pt;}
.ws3c{word-spacing:32.384000pt;}
.ws3b{word-spacing:32.544000pt;}
.ws3d{word-spacing:33.034667pt;}
.ws39{word-spacing:33.322667pt;}
.ws1f{word-spacing:40.872107pt;}
.ws63{word-spacing:53.568000pt;}
.ws2f{word-spacing:54.944000pt;}
.ws2e{word-spacing:55.040000pt;}
.ws30{word-spacing:55.360000pt;}
.ws31{word-spacing:55.392000pt;}
.ws2d{word-spacing:55.466667pt;}
.ws32{word-spacing:55.914667pt;}
.ws9e{word-spacing:72.128000pt;}
.ws1d{word-spacing:75.469312pt;}
.ws1b{word-spacing:76.093056pt;}
.ws1c{word-spacing:76.103680pt;}
.ws1e{word-spacing:76.105728pt;}
.ws1a{word-spacing:76.808704pt;}
.ws47{word-spacing:80.352000pt;}
.ws46{word-spacing:80.384000pt;}
.ws4e{word-spacing:84.288000pt;}
.ws4f{word-spacing:84.330667pt;}
.ws4c{word-spacing:84.874667pt;}
.ws4d{word-spacing:85.248000pt;}
.ws43{word-spacing:90.016000pt;}
.ws42{word-spacing:90.112000pt;}
.ws41{word-spacing:90.122667pt;}
.ws9d{word-spacing:109.184000pt;}
.ws9a{word-spacing:109.312000pt;}
.ws9b{word-spacing:109.440000pt;}
.ws9c{word-spacing:109.802667pt;}
.wsc6{word-spacing:124.617173pt;}
.wsbe{word-spacing:494.804608pt;}
.ws23{word-spacing:576.242987pt;}
.wsc4{word-spacing:1443.257472pt;}
.wsc5{word-spacing:1975.684907pt;}
._29{margin-left:-15.088555pt;}
._15{margin-left:-9.984000pt;}
._0{margin-left:-9.088000pt;}
._19{margin-left:-7.584000pt;}
._e{margin-left:-6.541227pt;}
._6{margin-left:-5.138987pt;}
._5{margin-left:-3.556267pt;}
._3{margin-left:-2.238208pt;}
._1{margin-left:-0.896000pt;}
._4{width:1.019051pt;}
._2{width:2.754475pt;}
._18{width:3.644928pt;}
._a{width:5.302229pt;}
._9{width:6.338432pt;}
._21{width:7.588949pt;}
._10{width:14.033579pt;}
._1f{width:15.068075pt;}
._c{width:19.070507pt;}
._d{width:20.801920pt;}
._13{width:21.802667pt;}
._7{width:22.978688pt;}
._12{width:25.423616pt;}
._11{width:26.762667pt;}
._1b{width:36.547157pt;}
._1c{width:39.966208pt;}
._8{width:41.206528pt;}
._1a{width:47.475541pt;}
._f{width:48.876245pt;}
._20{width:54.378667pt;}
._1e{width:55.392000pt;}
._1d{width:56.870187pt;}
._b{width:59.617109pt;}
._23{width:64.616576pt;}
._25{width:150.812416pt;}
._16{width:180.341333pt;}
._24{width:195.161600pt;}
._17{width:228.213333pt;}
._26{width:258.955947pt;}
._14{width:286.773333pt;}
._22{width:463.215787pt;}
._27{width:523.359659pt;}
._28{width:616.586325pt;}
.fs22{font-size:24.960000pt;}
.fs20{font-size:32.000000pt;}
.fs1b{font-size:35.840000pt;}
.fs21{font-size:37.120000pt;}
.fs13{font-size:39.040000pt;}
.fs1{font-size:42.880000pt;}
.fs1e{font-size:48.000000pt;}
.fs1f{font-size:48.128000pt;}
.fs1a{font-size:53.120000pt;}
.fs19{font-size:56.960000pt;}
.fs7{font-size:58.880000pt;}
.fs17{font-size:60.160000pt;}
.fs0{font-size:64.000000pt;}
.fs1d{font-size:64.128000pt;}
.fs9{font-size:71.040000pt;}
.fsc{font-size:74.880000pt;}
.fs1c{font-size:75.008000pt;}
.fs12{font-size:78.080000pt;}
.fs14{font-size:78.208000pt;}
.fsb{font-size:85.120000pt;}
.fsa{font-size:85.248000pt;}
.fs16{font-size:90.880000pt;}
.fs18{font-size:91.008000pt;}
.fs15{font-size:92.160000pt;}
.fsf{font-size:96.000000pt;}
.fse{font-size:96.128000pt;}
.fs8{font-size:106.880000pt;}
.fsd{font-size:107.008000pt;}
.fs23{font-size:113.920000pt;}
.fs10{font-size:115.200000pt;}
.fs11{font-size:115.328000pt;}
.fs6{font-size:117.120000pt;}
.fs5{font-size:117.248000pt;}
.fs2{font-size:128.000000pt;}
.fs4{font-size:149.120000pt;}
.fs3{font-size:149.248000pt;}
.fs24{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:4.704000pt;}
.y3b{bottom:4.706667pt;}
.y15{bottom:12.736000pt;}
.y1{bottom:17.504000pt;}
.yc{bottom:22.304000pt;}
.y6{bottom:48.128000pt;}
.yf0{bottom:57.728000pt;}
.y2e{bottom:69.120000pt;}
.ye2{bottom:71.264000pt;}
.y59{bottom:82.656000pt;}
.yc3{bottom:83.872000pt;}
.yb0{bottom:85.856000pt;}
.yf6{bottom:87.584000pt;}
.y4a{bottom:90.144000pt;}
.y9e{bottom:91.136000pt;}
.y98{bottom:91.648000pt;}
.ybe{bottom:92.832000pt;}
.yd7{bottom:92.960000pt;}
.ybf{bottom:93.792000pt;}
.y5{bottom:95.968000pt;}
.yc6{bottom:96.960000pt;}
.yc2{bottom:97.376000pt;}
.y83{bottom:104.512000pt;}
.y82{bottom:110.592000pt;}
.yc5{bottom:110.656000pt;}
.yc1{bottom:110.848000pt;}
.yd0{bottom:115.616000pt;}
.ya6{bottom:115.648000pt;}
.yac{bottom:117.376000pt;}
.y58{bottom:119.616000pt;}
.yc4{bottom:123.904000pt;}
.yc0{bottom:124.320000pt;}
.yad{bottom:126.464000pt;}
.y3{bottom:130.240000pt;}
.ya5{bottom:131.488000pt;}
.y5c{bottom:135.586667pt;}
.y1f{bottom:135.773333pt;}
.ya9{bottom:136.706667pt;}
.y67{bottom:138.333333pt;}
.y4{bottom:145.280000pt;}
.ya8{bottom:151.106667pt;}
.y57{bottom:156.413333pt;}
.yab{bottom:156.506667pt;}
.y80{bottom:162.880000pt;}
.y5b{bottom:163.746667pt;}
.y1e{bottom:174.173333pt;}
.y8e{bottom:175.066667pt;}
.y2d{bottom:177.533333pt;}
.ye5{bottom:178.213333pt;}
.y71{bottom:178.586667pt;}
.ya4{bottom:180.000000pt;}
.y66{bottom:181.533333pt;}
.y7f{bottom:191.680000pt;}
.y5a{bottom:191.906667pt;}
.ycf{bottom:195.293333pt;}
.yb6{bottom:196.320000pt;}
.ye4{bottom:200.613333pt;}
.y14{bottom:200.800000pt;}
.y8d{bottom:203.866667pt;}
.yaf{bottom:206.786667pt;}
.y105{bottom:207.013333pt;}
.y103{bottom:207.333333pt;}
.y2c{bottom:208.893333pt;}
.y70{bottom:210.306667pt;}
.yef{bottom:213.120000pt;}
.yf5{bottom:216.613333pt;}
.y7e{bottom:220.480000pt;}
.y39{bottom:221.986667pt;}
.y56{bottom:222.653333pt;}
.ye3{bottom:223.013333pt;}
.yae{bottom:224.226667pt;}
.ybd{bottom:227.386667pt;}
.y9f{bottom:227.493333pt;}
.y13{bottom:235.586667pt;}
.y8c{bottom:235.813333pt;}
.yda{bottom:236.666667pt;}
.y2b{bottom:237.693333pt;}
.y2{bottom:240.293333pt;}
.y65{bottom:240.773333pt;}
.y1d{bottom:244.573333pt;}
.y49{bottom:244.866667pt;}
.y7d{bottom:249.280000pt;}
.ydf{bottom:250.306667pt;}
.y38{bottom:250.786667pt;}
.yb9{bottom:252.133333pt;}
.y55{bottom:252.573333pt;}
.yd9{bottom:259.066667pt;}
.y104{bottom:261.666667pt;}
.y2a{bottom:266.533333pt;}
.y12{bottom:267.586667pt;}
.y99{bottom:269.146667pt;}
.y8b{bottom:272.640000pt;}
.yde{bottom:272.706667pt;}
.y40{bottom:277.306667pt;}
.y48{bottom:277.986667pt;}
.y3c{bottom:279.293333pt;}
.y37{bottom:279.586667pt;}
.y6f{bottom:282.466667pt;}
.y54{bottom:282.493333pt;}
.y1c{bottom:283.013333pt;}
.y7c{bottom:286.106667pt;}
.ydd{bottom:295.133333pt;}
.y11{bottom:299.613333pt;}
.y64{bottom:299.973333pt;}
.y3f{bottom:300.826667pt;}
.y29{bottom:303.333333pt;}
.y36{bottom:308.386667pt;}
.y53{bottom:312.413333pt;}
.ya1{bottom:312.453333pt;}
.ya3{bottom:313.466667pt;}
.y7b{bottom:314.906667pt;}
.yee{bottom:317.306667pt;}
.y6e{bottom:322.946667pt;}
.y3e{bottom:324.226667pt;}
.y47{bottom:328.413333pt;}
.y5d{bottom:328.933333pt;}
.y8a{bottom:330.240000pt;}
.ydc{bottom:331.106667pt;}
.ye1{bottom:331.173333pt;}
.y10{bottom:331.613333pt;}
.ya0{bottom:331.680000pt;}
.y28{bottom:332.133333pt;}
.ya2{bottom:332.706667pt;}
.y81{bottom:334.653333pt;}
.y102{bottom:340.293333pt;}
.ya7{bottom:341.533333pt;}
.y52{bottom:342.373333pt;}
.y7a{bottom:343.706667pt;}
.y3d{bottom:347.746667pt;}
.yd2{bottom:348.226667pt;}
.y35{bottom:350.013333pt;}
.y101{bottom:352.413333pt;}
.y1b{bottom:353.413333pt;}
.ydb{bottom:353.506667pt;}
.yba{bottom:353.533333pt;}
.ye0{bottom:353.573333pt;}
.yf4{bottom:353.853333pt;}
.yed{bottom:355.546667pt;}
.y89{bottom:359.040000pt;}
.y63{bottom:359.173333pt;}
.y27{bottom:360.933333pt;}
.y46{bottom:361.533333pt;}
.y6d{bottom:363.453333pt;}
.yf{bottom:363.613333pt;}
.yd1{bottom:370.626667pt;}
.y51{bottom:372.293333pt;}
.y79{bottom:372.506667pt;}
.yb7{bottom:376.320000pt;}
.y34{bottom:378.813333pt;}
.yec{bottom:381.666667pt;}
.y1a{bottom:391.813333pt;}
.y45{bottom:394.653333pt;}
.y6c{bottom:395.133333pt;}
.y88{bottom:395.866667pt;}
.y26{bottom:397.760000pt;}
.y50{bottom:402.213333pt;}
.y97{bottom:406.586667pt;}
.y33{bottom:407.613333pt;}
.y78{bottom:408.546667pt;}
.y9d{bottom:415.493333pt;}
.y62{bottom:418.400000pt;}
.y92{bottom:419.493333pt;}
.y96{bottom:420.986667pt;}
.y25{bottom:426.560000pt;}
.y6b{bottom:426.813333pt;}
.y9c{bottom:429.893333pt;}
.y4f{bottom:432.133333pt;}
.ye7{bottom:434.306667pt;}
.y95{bottom:435.386667pt;}
.y77{bottom:440.866667pt;}
.yb8{bottom:442.306667pt;}
.yb2{bottom:442.426667pt;}
.yd8{bottom:443.386667pt;}
.y9b{bottom:444.293333pt;}
.y90{bottom:444.640000pt;}
.y44{bottom:445.053333pt;}
.yd6{bottom:447.200000pt;}
.y91{bottom:448.293333pt;}
.y32{bottom:449.213333pt;}
.y94{bottom:449.786667pt;}
.y19{bottom:453.146667pt;}
.y87{bottom:453.466667pt;}
.y24{bottom:455.360000pt;}
.yce{bottom:455.866667pt;}
.yeb{bottom:456.386667pt;}
.ye6{bottom:456.706667pt;}
.y9a{bottom:458.693333pt;}
.yf3{bottom:461.986667pt;}
.y4e{bottom:462.080000pt;}
.y93{bottom:464.186667pt;}
.y6a{bottom:467.333333pt;}
.ybb{bottom:471.586667pt;}
.y76{bottom:473.026667pt;}
.y61{bottom:477.600000pt;}
.y31{bottom:478.053333pt;}
.y43{bottom:478.213333pt;}
.y18{bottom:478.746667pt;}
.y23{bottom:484.160000pt;}
.y86{bottom:490.266667pt;}
.yb5{bottom:491.040000pt;}
.ycd{bottom:498.213333pt;}
.y69{bottom:499.013333pt;}
.y8f{bottom:500.986667pt;}
.yb{bottom:502.466667pt;}
.y17{bottom:504.386667pt;}
.y75{bottom:506.146667pt;}
.y4d{bottom:507.840000pt;}
.ybc{bottom:508.800000pt;}
.y42{bottom:511.333333pt;}
.ycc{bottom:514.213333pt;}
.y30{bottom:519.653333pt;}
.y22{bottom:520.960000pt;}
.y85{bottom:527.106667pt;}
.ycb{bottom:530.213333pt;}
.y68{bottom:530.693333pt;}
.yb1{bottom:531.133333pt;}
.yb4{bottom:532.733333pt;}
.y60{bottom:532.986667pt;}
.y74{bottom:534.973333pt;}
.yb3{bottom:537.466667pt;}
.ya{bottom:537.693333pt;}
.y4c{bottom:537.760000pt;}
.yd4{bottom:540.800000pt;}
.yaa{bottom:541.786667pt;}
.yca{bottom:546.213333pt;}
.yfb{bottom:546.333333pt;}
.y100{bottom:547.680000pt;}
.y2f{bottom:548.453333pt;}
.y21{bottom:549.786667pt;}
.y41{bottom:561.893333pt;}
.y73{bottom:563.773333pt;}
.y84{bottom:563.906667pt;}
.y3a{bottom:566.240000pt;}
.y4b{bottom:567.680000pt;}
.yd3{bottom:569.626667pt;}
.yf2{bottom:569.786667pt;}
.yea{bottom:574.013333pt;}
.yfa{bottom:575.133333pt;}
.yff{bottom:576.480000pt;}
.yc9{bottom:578.213333pt;}
.yd5{bottom:583.653333pt;}
.y9{bottom:592.773333pt;}
.yf9{bottom:603.933333pt;}
.yfe{bottom:605.280000pt;}
.yc8{bottom:610.240000pt;}
.yf1{bottom:622.053333pt;}
.y5f{bottom:623.546667pt;}
.yc7{bottom:627.040000pt;}
.y8{bottom:633.253333pt;}
.ye{bottom:637.760000pt;}
.ye9{bottom:642.013333pt;}
.yf8{bottom:648.773333pt;}
.yfd{bottom:650.106667pt;}
.y20{bottom:656.386667pt;}
.y72{bottom:662.173333pt;}
.y16{bottom:664.346667pt;}
.y5e{bottom:668.226667pt;}
.y7{bottom:673.600000pt;}
.yf7{bottom:677.573333pt;}
.yfc{bottom:678.906667pt;}
.ye8{bottom:682.333333pt;}
.h1a{height:19.520000pt;}
.h39{height:32.171875pt;}
.h2{height:32.243750pt;}
.h1c{height:35.017812pt;}
.h3e{height:35.847680pt;}
.h34{height:36.093750pt;}
.hc{height:37.164062pt;}
.h36{height:39.943750pt;}
.h2d{height:41.601562pt;}
.h2c{height:41.671875pt;}
.h2e{height:41.783000pt;}
.h25{height:42.950000pt;}
.h37{height:43.054688pt;}
.h32{height:46.039063pt;}
.h3a{height:46.116875pt;}
.h38{height:48.125000pt;}
.h3b{height:48.221250pt;}
.h9{height:51.031250pt;}
.h1{height:55.468750pt;}
.h2f{height:55.562500pt;}
.h31{height:55.673625pt;}
.h30{height:56.306250pt;}
.h1b{height:58.712500pt;}
.h23{height:64.006250pt;}
.h17{height:64.898438pt;}
.h33{height:65.008125pt;}
.h2a{height:65.009375pt;}
.h3c{height:65.119250pt;}
.h1d{height:67.671875pt;}
.h1e{height:67.782812pt;}
.h24{height:68.431250pt;}
.h42{height:73.773438pt;}
.he{height:73.898125pt;}
.hd{height:74.009250pt;}
.h43{height:75.053438pt;}
.h28{height:76.350312pt;}
.h29{height:76.465125pt;}
.h20{height:79.875000pt;}
.h35{height:80.338542pt;}
.h21{height:81.516875pt;}
.h22{height:81.631687pt;}
.h41{height:82.593750pt;}
.h15{height:83.203125pt;}
.h16{height:83.314062pt;}
.h13{height:83.343750pt;}
.h1f{height:83.454875pt;}
.h2b{height:84.379687pt;}
.h14{height:86.109375pt;}
.h12{height:86.224187pt;}
.ha{height:92.632812pt;}
.hb{height:92.789375pt;}
.h10{height:92.900500pt;}
.h3f{height:95.237120pt;}
.h8{height:101.679375pt;}
.h7{height:101.790500pt;}
.h18{height:103.331250pt;}
.h19{height:103.446063pt;}
.h3{height:111.125000pt;}
.h26{height:112.131250pt;}
.h4{height:114.812500pt;}
.hf{height:128.154792pt;}
.h27{height:129.242188pt;}
.h11{height:129.353125pt;}
.h6{height:129.460625pt;}
.h5{height:129.571750pt;}
.h3d{height:201.760000pt;}
.h40{height:221.875000pt;}
.h0{height:720.000000pt;}
.w5{width:51.360000pt;}
.w4{width:51.520000pt;}
.w3{width:56.320000pt;}
.w2{width:287.520000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x5c{left:3.493333pt;}
.x5a{left:8.253333pt;}
.x72{left:13.823981pt;}
.x19{left:23.391981pt;}
.x10{left:29.983981pt;}
.x4{left:34.111981pt;}
.xd{left:36.287981pt;}
.x24{left:41.151981pt;}
.x79{left:44.511981pt;}
.x1c{left:50.975981pt;}
.x25{left:60.031981pt;}
.x6{left:64.479981pt;}
.x1a{left:71.391981pt;}
.x4e{left:79.487981pt;}
.x78{left:82.463981pt;}
.x15{left:84.255981pt;}
.x29{left:92.159981pt;}
.x1b{left:95.391981pt;}
.x56{left:103.615981pt;}
.x4a{left:120.671981pt;}
.xa{left:123.519981pt;}
.xb{left:124.927981pt;}
.x6a{left:129.375981pt;}
.x57{left:130.367981pt;}
.x55{left:144.159981pt;}
.xc{left:148.933314pt;}
.x41{left:157.253314pt;}
.x3a{left:164.319981pt;}
.x13{left:166.080000pt;}
.x40{left:169.946648pt;}
.x6b{left:179.453314pt;}
.x4f{left:205.733314pt;}
.x50{left:206.853314pt;}
.x80{left:220.959981pt;}
.x42{left:225.626648pt;}
.x59{left:230.880000pt;}
.x44{left:232.706648pt;}
.x76{left:235.933314pt;}
.x77{left:241.053314pt;}
.x46{left:253.413314pt;}
.x49{left:261.826648pt;}
.x7f{left:272.253314pt;}
.x58{left:284.773314pt;}
.x5b{left:287.040000pt;}
.x54{left:294.533314pt;}
.x14{left:308.133314pt;}
.x7d{left:326.973314pt;}
.x45{left:337.759981pt;}
.x82{left:347.773314pt;}
.x21{left:373.213314pt;}
.x43{left:382.333314pt;}
.x36{left:384.933314pt;}
.x5d{left:389.600000pt;}
.x22{left:409.213314pt;}
.x51{left:415.813314pt;}
.x28{left:430.879981pt;}
.x5e{left:440.960000pt;}
.x6c{left:453.853314pt;}
.x3e{left:462.146648pt;}
.x3c{left:469.666648pt;}
.x3d{left:477.346648pt;}
.x84{left:489.413314pt;}
.x5f{left:492.320000pt;}
.x37{left:496.799981pt;}
.x83{left:514.813314pt;}
.x18{left:515.813314pt;}
.x16{left:537.986648pt;}
.x60{left:543.680000pt;}
.x7{left:574.813314pt;}
.x17{left:577.986648pt;}
.x8{left:579.359981pt;}
.x61{left:595.040000pt;}
.x39{left:606.213314pt;}
.x47{left:611.133314pt;}
.x38{left:612.613314pt;}
.x52{left:625.573314pt;}
.x1d{left:635.906648pt;}
.x3b{left:644.479981pt;}
.x62{left:646.400000pt;}
.x48{left:652.893314pt;}
.x6f{left:665.626648pt;}
.x6e{left:671.226648pt;}
.x26{left:672.453314pt;}
.x27{left:673.346648pt;}
.x6d{left:674.426648pt;}
.x1e{left:676.933314pt;}
.x2d{left:679.706648pt;}
.x3f{left:687.653314pt;}
.x1f{left:691.546648pt;}
.x63{left:697.600000pt;}
.x20{left:716.186648pt;}
.x70{left:743.013314pt;}
.x64{left:748.960000pt;}
.x2c{left:755.266648pt;}
.x71{left:767.173314pt;}
.x7a{left:778.466648pt;}
.x4b{left:786.466648pt;}
.x2e{left:796.319981pt;}
.x65{left:800.320000pt;}
.x11{left:802.213314pt;}
.x31{left:810.746648pt;}
.xe{left:814.053314pt;}
.x5{left:821.826648pt;}
.x12{left:832.293314pt;}
.x2a{left:836.066648pt;}
.x66{left:851.680000pt;}
.xf{left:854.053314pt;}
.x7c{left:860.506648pt;}
.x7b{left:861.466648pt;}
.x4d{left:863.746648pt;}
.x2f{left:870.493314pt;}
.x32{left:871.906648pt;}
.x34{left:902.239981pt;}
.x53{left:950.399981pt;}
.x67{left:954.400000pt;}
.x81{left:958.533314pt;}
.x2b{left:982.946648pt;}
.x7e{left:986.466648pt;}
.x30{left:993.466648pt;}
.x9{left:1005.573314pt;}
.x4c{left:1036.066648pt;}
.x68{left:1056.960000pt;}
.x35{left:1101.533314pt;}
.x74{left:1104.639981pt;}
.x69{left:1108.320000pt;}
.x73{left:1113.919981pt;}
.x33{left:1116.066648pt;}
.x3{left:1120.133314pt;}
.x75{left:1125.439981pt;}
.x2{left:1165.253314pt;}
.x23{left:1250.626648pt;}
.x1{left:1259.106648pt;}
}




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