
    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_fe9cbd75f640dbf28827f2d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_c55b953eaaed0ee4e42c366d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.185000;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_9e751e32aac0eba264ba3d6d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.355000;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_fbe24587259ddafa082b8988.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202000;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_fd78dc852b358f42fe637522.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.381000;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_e8c6865c60dfd48ebb40ef98.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.126000;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_10eaf141580d111b8d8a0fe6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.349000;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_8859c628506cb421f9eb3710.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.392000;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_4a9e71a49a4ca3e36eac7c53.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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_09f01d110ef3f87c5bcac59f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.362000;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_39b46d89a89365bd874a842d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.222000;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_b552a09efd7c23ebaee26ab8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.948000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_baa1f33682a63ba58905e2d5.woff2')format("woff");}.fff{font-family:fff;line-height:1.239000;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:ff10;src:url('chunks/assets/font_e68b21f7135fdbaa2b8608b9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.919000;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:ff11;src:url('chunks/assets/font_006085c4301d247331b65a9c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.384000;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:ff12;src:url('chunks/assets/font_16b9a076a1ba242be8537c95.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.732000;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:ff13;src:url('chunks/assets/font_f09ab039d4894b1f7aaf3003.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.202000;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:ff14;src:url('chunks/assets/font_ebed59a142a132dca4d3afbb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-19.979736px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980103px;}
.v3{vertical-align:33.659454px;}
.ls36{letter-spacing:-1.808501px;}
.ls38{letter-spacing:-1.188000px;}
.ls37{letter-spacing:-0.864000px;}
.ls34{letter-spacing:-0.840000px;}
.ls31{letter-spacing:-0.660000px;}
.lsc{letter-spacing:-0.600000px;}
.ls35{letter-spacing:-0.480000px;}
.ls2f{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.300000px;}
.ls1a{letter-spacing:-0.243540px;}
.lsb{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.199260px;}
.ls9{letter-spacing:-0.180000px;}
.ls1e{letter-spacing:-0.177120px;}
.ls19{letter-spacing:-0.154980px;}
.ls16{letter-spacing:-0.132840px;}
.lsa{letter-spacing:-0.120000px;}
.ls1d{letter-spacing:-0.110700px;}
.ls1c{letter-spacing:-0.088560px;}
.ls23{letter-spacing:-0.077934px;}
.ls15{letter-spacing:-0.066420px;}
.ls8{letter-spacing:-0.060000px;}
.ls13{letter-spacing:-0.044280px;}
.ls21{letter-spacing:-0.038967px;}
.ls1f{letter-spacing:-0.022140px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000269px;}
.lsd{letter-spacing:0.009001px;}
.ls10{letter-spacing:0.038967px;}
.ls2e{letter-spacing:0.059971px;}
.ls2{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.088560px;}
.ls6{letter-spacing:0.120000px;}
.ls29{letter-spacing:0.147666px;}
.ls2b{letter-spacing:0.162000px;}
.ls4{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.300000px;}
.ls18{letter-spacing:0.309960px;}
.ls1{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.391025px;}
.ls28{letter-spacing:0.420000px;}
.ls2d{letter-spacing:0.480000px;}
.lse{letter-spacing:0.540000px;}
.ls27{letter-spacing:0.660000px;}
.ls30{letter-spacing:0.720000px;}
.ls2a{letter-spacing:0.780000px;}
.ls1b{letter-spacing:6.863400px;}
.ls17{letter-spacing:6.974100px;}
.ls20{letter-spacing:10.637991px;}
.ls25{letter-spacing:10.676958px;}
.ls24{letter-spacing:11.105595px;}
.ls22{letter-spacing:11.144562px;}
.ls26{letter-spacing:11.222496px;}
.ls32{letter-spacing:13.859991px;}
.ls2c{letter-spacing:20.460116px;}
.ls11{letter-spacing:1172.216785px;}
.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;}
}
.ws1{word-spacing:-56.700000px;}
.ws50{word-spacing:-15.525000px;}
.ws31{word-spacing:-14.904000px;}
.ws68{word-spacing:-14.040000px;}
.ws6{word-spacing:-13.920000px;}
.ws8{word-spacing:-13.740000px;}
.ws62{word-spacing:-13.662000px;}
.ws5{word-spacing:-13.620000px;}
.wsb2{word-spacing:-13.380000px;}
.ws7{word-spacing:-13.140000px;}
.wsb6{word-spacing:-12.258000px;}
.ws69{word-spacing:-11.340000px;}
.ws4f{word-spacing:-11.261463px;}
.ws45{word-spacing:-11.183529px;}
.ws32{word-spacing:-11.178000px;}
.ws48{word-spacing:-11.144562px;}
.ws4d{word-spacing:-10.715925px;}
.ws42{word-spacing:-10.676958px;}
.ws3{word-spacing:-9.996000px;}
.ws9{word-spacing:-8.010420px;}
.wsb3{word-spacing:-7.299130px;}
.ws36{word-spacing:-6.996240px;}
.wsb4{word-spacing:-6.908105px;}
.ws3c{word-spacing:-6.885540px;}
.ws9c{word-spacing:-4.200000px;}
.ws7f{word-spacing:-3.840000px;}
.wsa0{word-spacing:-3.540000px;}
.wsc{word-spacing:-3.420000px;}
.ws13{word-spacing:-3.360000px;}
.ws57{word-spacing:-3.300000px;}
.ws7e{word-spacing:-3.120000px;}
.wsa4{word-spacing:-3.000000px;}
.wsa{word-spacing:-2.820000px;}
.ws18{word-spacing:-2.760000px;}
.ws17{word-spacing:-2.700000px;}
.ws26{word-spacing:-2.460000px;}
.ws6e{word-spacing:-2.400000px;}
.ws98{word-spacing:-2.340000px;}
.ws15{word-spacing:-2.280000px;}
.wsbd{word-spacing:-2.220000px;}
.wsb7{word-spacing:-2.160000px;}
.wsaf{word-spacing:-2.040000px;}
.ws4{word-spacing:-1.989000px;}
.ws23{word-spacing:-1.980000px;}
.ws90{word-spacing:-1.860000px;}
.ws8b{word-spacing:-1.836000px;}
.ws58{word-spacing:-1.740000px;}
.wsa6{word-spacing:-1.620000px;}
.ws6d{word-spacing:-1.560000px;}
.ws64{word-spacing:-1.500000px;}
.ws1e{word-spacing:-1.440000px;}
.ws1a{word-spacing:-1.380000px;}
.ws2d{word-spacing:-1.320000px;}
.wsad{word-spacing:-1.260000px;}
.ws19{word-spacing:-1.200000px;}
.wse{word-spacing:-1.140000px;}
.ws24{word-spacing:-0.840000px;}
.ws5b{word-spacing:-0.780000px;}
.ws92{word-spacing:-0.720000px;}
.wsbc{word-spacing:-0.660000px;}
.ws6b{word-spacing:-0.540000px;}
.ws22{word-spacing:-0.420000px;}
.ws29{word-spacing:-0.360000px;}
.ws38{word-spacing:-0.332100px;}
.ws7a{word-spacing:-0.300000px;}
.ws9b{word-spacing:-0.255000px;}
.ws71{word-spacing:-0.240000px;}
.ws7b{word-spacing:-0.180000px;}
.ws27{word-spacing:-0.120000px;}
.ws3e{word-spacing:-0.110700px;}
.ws41{word-spacing:-0.077934px;}
.wsb5{word-spacing:-0.060000px;}
.ws8c{word-spacing:-0.051000px;}
.ws44{word-spacing:-0.038967px;}
.ws37{word-spacing:-0.022140px;}
.ws0{word-spacing:0.000000px;}
.ws35{word-spacing:0.022140px;}
.ws47{word-spacing:0.038967px;}
.ws3d{word-spacing:0.044280px;}
.ws60{word-spacing:0.066420px;}
.ws3f{word-spacing:0.088560px;}
.ws34{word-spacing:0.110700px;}
.ws16{word-spacing:0.120000px;}
.ws39{word-spacing:0.132840px;}
.ws40{word-spacing:0.154980px;}
.ws33{word-spacing:0.177120px;}
.wsb{word-spacing:0.180000px;}
.ws3b{word-spacing:0.221400px;}
.ws61{word-spacing:0.243540px;}
.ws8d{word-spacing:0.300000px;}
.ws5f{word-spacing:0.360000px;}
.ws30{word-spacing:0.540000px;}
.ws2e{word-spacing:0.600000px;}
.wsd{word-spacing:0.660000px;}
.ws52{word-spacing:0.780000px;}
.ws1f{word-spacing:0.840000px;}
.wsbf{word-spacing:0.864000px;}
.ws80{word-spacing:0.900000px;}
.ws2b{word-spacing:0.960000px;}
.ws2c{word-spacing:1.020000px;}
.ws5e{word-spacing:1.080000px;}
.ws78{word-spacing:1.200000px;}
.ws25{word-spacing:1.260000px;}
.ws55{word-spacing:1.380000px;}
.ws77{word-spacing:1.500000px;}
.ws21{word-spacing:1.560000px;}
.ws79{word-spacing:1.620000px;}
.ws83{word-spacing:1.680000px;}
.ws9a{word-spacing:1.800000px;}
.wsbe{word-spacing:1.808501px;}
.ws97{word-spacing:1.860000px;}
.ws88{word-spacing:1.920000px;}
.wsa8{word-spacing:1.980000px;}
.wsa9{word-spacing:2.040000px;}
.ws86{word-spacing:2.100000px;}
.ws93{word-spacing:2.220000px;}
.wsf{word-spacing:2.340000px;}
.ws99{word-spacing:2.400000px;}
.ws81{word-spacing:2.460000px;}
.ws54{word-spacing:2.520000px;}
.ws8a{word-spacing:2.580000px;}
.ws67{word-spacing:2.640000px;}
.wsa7{word-spacing:2.700000px;}
.ws56{word-spacing:2.880000px;}
.ws51{word-spacing:3.060000px;}
.ws85{word-spacing:3.180000px;}
.ws65{word-spacing:3.240000px;}
.ws8f{word-spacing:3.300000px;}
.ws6f{word-spacing:3.360000px;}
.wsab{word-spacing:3.420000px;}
.ws1b{word-spacing:3.480000px;}
.ws11{word-spacing:3.600000px;}
.wsbb{word-spacing:3.660000px;}
.ws72{word-spacing:3.720000px;}
.ws91{word-spacing:3.780000px;}
.ws1d{word-spacing:3.840000px;}
.ws9f{word-spacing:3.960000px;}
.ws12{word-spacing:4.080000px;}
.ws53{word-spacing:4.140000px;}
.ws7d{word-spacing:4.260000px;}
.ws73{word-spacing:4.320000px;}
.ws7c{word-spacing:4.380000px;}
.ws8e{word-spacing:4.440000px;}
.ws28{word-spacing:4.560000px;}
.wsb1{word-spacing:4.620000px;}
.ws9e{word-spacing:4.680000px;}
.ws5a{word-spacing:4.740000px;}
.ws20{word-spacing:4.800000px;}
.ws84{word-spacing:4.860000px;}
.wsa5{word-spacing:4.920000px;}
.ws5c{word-spacing:4.980000px;}
.ws14{word-spacing:5.040000px;}
.wsb8{word-spacing:5.160000px;}
.ws2f{word-spacing:5.220000px;}
.ws10{word-spacing:5.280000px;}
.ws1c{word-spacing:5.340000px;}
.ws74{word-spacing:5.460000px;}
.ws2a{word-spacing:5.580000px;}
.ws5d{word-spacing:5.640000px;}
.ws66{word-spacing:5.700000px;}
.wsac{word-spacing:5.760000px;}
.ws87{word-spacing:5.820000px;}
.ws82{word-spacing:5.880000px;}
.wsaa{word-spacing:6.000000px;}
.wsa3{word-spacing:6.180000px;}
.ws70{word-spacing:6.240000px;}
.ws95{word-spacing:6.360000px;}
.wsb9{word-spacing:6.540000px;}
.wsa1{word-spacing:6.660000px;}
.ws94{word-spacing:6.900000px;}
.ws9d{word-spacing:7.140000px;}
.ws96{word-spacing:7.500000px;}
.wsb0{word-spacing:7.620000px;}
.ws59{word-spacing:7.800000px;}
.ws76{word-spacing:7.920000px;}
.ws6c{word-spacing:8.100000px;}
.ws3a{word-spacing:8.258216px;}
.wsae{word-spacing:8.280000px;}
.ws63{word-spacing:9.840000px;}
.ws89{word-spacing:10.320000px;}
.ws4a{word-spacing:10.599024px;}
.ws4b{word-spacing:10.715925px;}
.wsba{word-spacing:10.800000px;}
.wsa2{word-spacing:10.980000px;}
.ws46{word-spacing:11.027661px;}
.ws4e{word-spacing:11.183529px;}
.ws75{word-spacing:11.400000px;}
.ws49{word-spacing:11.417331px;}
.ws43{word-spacing:11.456298px;}
.ws4c{word-spacing:11.573199px;}
.ws2{word-spacing:16.860000px;}
.ws6a{word-spacing:590.732955px;}
._2{margin-left:-2976.360038px;}
._a{margin-left:-20.664000px;}
._14{margin-left:-13.911912px;}
._e{margin-left:-10.560057px;}
._b{margin-left:-8.340000px;}
._d{margin-left:-6.885540px;}
._3{margin-left:-5.796000px;}
._7{margin-left:-4.296000px;}
._5{margin-left:-3.288000px;}
._4{margin-left:-2.016000px;}
._6{margin-left:-1.008000px;}
._0{width:1.020000px;}
._9{width:2.244000px;}
._8{width:3.312000px;}
._c{width:5.220000px;}
._13{width:11.375980px;}
._10{width:20.460085px;}
._1{width:47.399919px;}
._f{width:53.316000px;}
._12{width:514.538955px;}
._11{width:732.308955px;}
.fc7{color:rgb(216,132,52);}
.fc4{color:rgb(62,62,61);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(217,112,0);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(101,101,101);}
.fc1{color:rgb(103,103,103);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:22.140000px;}
.fs10{font-size:32.585400px;}
.fs8{font-size:34.980000px;}
.fsb{font-size:38.967000px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:48.878400px;}
.fs7{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fsc{font-size:66.420599px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:75.000000px;}
.fse{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.y18c{bottom:13.617600px;}
.y24{bottom:27.042449px;}
.y6{bottom:35.925007px;}
.yb9{bottom:55.580692px;}
.y5{bottom:66.525004px;}
.y18b{bottom:85.039500px;}
.y6b{bottom:85.092422px;}
.y70{bottom:85.092444px;}
.y3d{bottom:85.116453px;}
.y18d{bottom:90.112947px;}
.y179{bottom:93.781498px;}
.yff{bottom:93.838059px;}
.y143{bottom:93.941559px;}
.y4{bottom:97.125005px;}
.yac{bottom:97.848003px;}
.y18a{bottom:98.657100px;}
.y3c{bottom:100.110453px;}
.yb1{bottom:101.521654px;}
.yaf{bottom:103.957054px;}
.yb0{bottom:104.953354px;}
.y6a{bottom:107.442422px;}
.y6f{bottom:107.442444px;}
.yfe{bottom:108.832059px;}
.y142{bottom:108.935559px;}
.yb2{bottom:113.034455px;}
.y3b{bottom:115.104453px;}
.y178{bottom:120.352498px;}
.yad{bottom:120.818104px;}
.yfd{bottom:123.826059px;}
.y141{bottom:123.929563px;}
.y69{bottom:129.792422px;}
.y6e{bottom:129.792444px;}
.y3a{bottom:130.098453px;}
.yfc{bottom:138.820059px;}
.y140{bottom:138.923563px;}
.y23{bottom:139.264499px;}
.y39{bottom:145.092453px;}
.y177{bottom:146.923498px;}
.y68{bottom:152.142422px;}
.y6d{bottom:152.142444px;}
.yb8{bottom:153.429749px;}
.ya9{bottom:153.435288px;}
.yf7{bottom:153.801309px;}
.yfb{bottom:153.814059px;}
.y103{bottom:153.852305px;}
.y13f{bottom:153.917563px;}
.yb7{bottom:160.071749px;}
.ya8{bottom:160.077288px;}
.yf6{bottom:168.795309px;}
.yfa{bottom:168.808059px;}
.y102{bottom:168.846305px;}
.y13e{bottom:168.911563px;}
.yba{bottom:170.599949px;}
.yaa{bottom:170.610393px;}
.y176{bottom:173.494498px;}
.y67{bottom:174.492422px;}
.y6c{bottom:174.492444px;}
.yf5{bottom:183.789309px;}
.yf9{bottom:183.802059px;}
.y101{bottom:183.840305px;}
.y13d{bottom:183.905563px;}
.y37{bottom:194.574440px;}
.ybb{bottom:195.075719px;}
.yab{bottom:195.086163px;}
.y66{bottom:196.842422px;}
.y1a{bottom:196.933500px;}
.yf4{bottom:198.783309px;}
.yf8{bottom:198.796059px;}
.y100{bottom:198.834305px;}
.y13c{bottom:198.899563px;}
.y175{bottom:200.065498px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y13b{bottom:213.893563px;}
.ybc{bottom:218.660354px;}
.yae{bottom:218.666107px;}
.yb6{bottom:218.670798px;}
.y65{bottom:219.192422px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.yf3{bottom:225.354309px;}
.y174{bottom:226.635750px;}
.y13a{bottom:228.887563px;}
.y14f{bottom:229.002315px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y36{bottom:238.184235px;}
.y64{bottom:241.542422px;}
.y139{bottom:243.881563px;}
.y14e{bottom:243.996315px;}
.yf2{bottom:251.924698px;}
.ya7{bottom:252.949049px;}
.y138{bottom:258.875563px;}
.y14d{bottom:258.990315px;}
.ya6{bottom:259.591049px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y63{bottom:263.892422px;}
.y35{bottom:265.184235px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y137{bottom:273.869563px;}
.y14c{bottom:273.984301px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y62{bottom:286.242422px;}
.y173{bottom:286.242471px;}
.y168{bottom:286.242590px;}
.yb4{bottom:287.481699px;}
.y136{bottom:288.863559px;}
.y14b{bottom:288.978301px;}
.yb5{bottom:290.688744px;}
.y34{bottom:292.184235px;}
.yb3{bottom:299.103607px;}
.y12e{bottom:303.819309px;}
.y135{bottom:303.857559px;}
.y14a{bottom:303.972301px;}
.y61{bottom:308.592422px;}
.y172{bottom:308.592471px;}
.ydd{bottom:308.592590px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y12d{bottom:318.813309px;}
.y134{bottom:318.851559px;}
.y149{bottom:318.966301px;}
.y33{bottom:319.184235px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y60{bottom:330.942422px;}
.y171{bottom:330.942471px;}
.ydc{bottom:330.942590px;}
.y12c{bottom:333.807309px;}
.y133{bottom:333.845559px;}
.y148{bottom:333.960301px;}
.y32{bottom:346.184235px;}
.y11{bottom:348.133500px;}
.y195{bottom:348.531881px;}
.y12b{bottom:348.801309px;}
.y132{bottom:348.839559px;}
.y147{bottom:348.954301px;}
.y5f{bottom:353.292422px;}
.y170{bottom:353.292471px;}
.ydb{bottom:353.292590px;}
.y12a{bottom:363.795309px;}
.y131{bottom:363.833559px;}
.y146{bottom:363.948301px;}
.y194{bottom:366.527381px;}
.y31{bottom:373.184235px;}
.y5e{bottom:375.642422px;}
.y16f{bottom:375.642471px;}
.yda{bottom:375.642590px;}
.y129{bottom:378.789309px;}
.y130{bottom:378.827559px;}
.y145{bottom:378.942301px;}
.y193{bottom:384.522879px;}
.y10{bottom:386.785499px;}
.y128{bottom:393.783309px;}
.y12f{bottom:393.821559px;}
.y144{bottom:393.936301px;}
.y5d{bottom:397.992422px;}
.y16e{bottom:397.992471px;}
.yd9{bottom:397.992590px;}
.y30{bottom:400.184235px;}
.yf{bottom:408.044999px;}
.y192{bottom:408.903879px;}
.y5c{bottom:420.342422px;}
.y16d{bottom:420.342471px;}
.yd8{bottom:420.342590px;}
.y127{bottom:420.354309px;}
.ybe{bottom:422.303831px;}
.y191{bottom:426.899379px;}
.y2f{bottom:427.184235px;}
.y5b{bottom:442.692422px;}
.y16c{bottom:442.692471px;}
.yd7{bottom:442.692590px;}
.ybd{bottom:444.661331px;}
.y126{bottom:446.917189px;}
.y190{bottom:451.280379px;}
.y2e{bottom:454.184235px;}
.y5a{bottom:465.042422px;}
.y16b{bottom:465.042471px;}
.yd6{bottom:465.042590px;}
.y125{bottom:469.274689px;}
.y18f{bottom:469.275879px;}
.y2d{bottom:481.184235px;}
.ye{bottom:484.864502px;}
.y18e{bottom:487.275879px;}
.y59{bottom:487.392422px;}
.y16a{bottom:487.392471px;}
.yd5{bottom:487.392590px;}
.yd{bottom:502.864502px;}
.y2c{bottom:508.184235px;}
.y58{bottom:509.742422px;}
.y8d{bottom:509.742581px;}
.yd4{bottom:509.742590px;}
.y169{bottom:509.742599px;}
.yc{bottom:520.864502px;}
.y57{bottom:532.092422px;}
.y124{bottom:532.092460px;}
.y10a{bottom:532.092471px;}
.y8c{bottom:532.092581px;}
.yd3{bottom:532.092590px;}
.y189{bottom:532.092618px;}
.yb{bottom:538.864499px;}
.y56{bottom:554.442422px;}
.y123{bottom:554.442460px;}
.y109{bottom:554.442471px;}
.y8b{bottom:554.442581px;}
.yd2{bottom:554.442590px;}
.y188{bottom:554.442618px;}
.ya{bottom:556.864499px;}
.y55{bottom:576.792422px;}
.y122{bottom:576.792460px;}
.y108{bottom:576.792471px;}
.y8a{bottom:576.792581px;}
.yd1{bottom:576.792590px;}
.y187{bottom:576.792618px;}
.ya5{bottom:576.792645px;}
.y54{bottom:599.142422px;}
.y121{bottom:599.142460px;}
.y107{bottom:599.142471px;}
.y89{bottom:599.142581px;}
.yd0{bottom:599.142590px;}
.ya4{bottom:599.142645px;}
.y2b{bottom:607.413773px;}
.y106{bottom:621.486590px;}
.y53{bottom:621.492422px;}
.y120{bottom:621.492460px;}
.y88{bottom:621.492581px;}
.ycf{bottom:621.492590px;}
.y186{bottom:621.492599px;}
.ya3{bottom:621.492645px;}
.y52{bottom:643.842422px;}
.y11f{bottom:643.842460px;}
.y87{bottom:643.842581px;}
.yce{bottom:643.842590px;}
.y185{bottom:643.842599px;}
.ya2{bottom:643.842645px;}
.y9{bottom:645.510000px;}
.ycd{bottom:666.186618px;}
.y51{bottom:666.192422px;}
.y11e{bottom:666.192460px;}
.yf1{bottom:666.192590px;}
.y184{bottom:666.192599px;}
.y86{bottom:666.192618px;}
.ya1{bottom:666.192645px;}
.y8{bottom:666.771000px;}
.y2a{bottom:679.422773px;}
.y50{bottom:688.542422px;}
.y11d{bottom:688.542460px;}
.yf0{bottom:688.542590px;}
.y105{bottom:688.542599px;}
.y85{bottom:688.542618px;}
.ya0{bottom:688.542645px;}
.y82{bottom:689.566326px;}
.y81{bottom:709.561326px;}
.y84{bottom:710.886599px;}
.y4f{bottom:710.892422px;}
.y11c{bottom:710.892460px;}
.yef{bottom:710.892590px;}
.y104{bottom:710.892599px;}
.y9f{bottom:710.892645px;}
.y7{bottom:726.298500px;}
.y80{bottom:729.556326px;}
.y4e{bottom:733.242422px;}
.y11b{bottom:733.242460px;}
.yee{bottom:733.242590px;}
.y83{bottom:733.242599px;}
.y9e{bottom:733.242645px;}
.y7f{bottom:749.551326px;}
.y29{bottom:751.431773px;}
.y3{bottom:752.599495px;}
.y4d{bottom:755.592422px;}
.y11a{bottom:755.592460px;}
.yed{bottom:755.592590px;}
.y9d{bottom:755.592645px;}
.y7e{bottom:774.541534px;}
.y167{bottom:777.942407px;}
.y4c{bottom:777.942422px;}
.y119{bottom:777.942460px;}
.yec{bottom:777.942590px;}
.y9c{bottom:777.942645px;}
.y7d{bottom:800.180420px;}
.y166{bottom:800.292407px;}
.y4b{bottom:800.292422px;}
.y118{bottom:800.292460px;}
.yeb{bottom:800.292590px;}
.y9b{bottom:800.292645px;}
.ycb{bottom:806.241412px;}
.y158{bottom:806.241467px;}
.y165{bottom:822.642407px;}
.y4a{bottom:822.642422px;}
.y117{bottom:822.642460px;}
.yea{bottom:822.642590px;}
.y9a{bottom:822.642645px;}
.y28{bottom:823.440773px;}
.y7c{bottom:825.170380px;}
.yca{bottom:828.591412px;}
.y157{bottom:828.591467px;}
.y164{bottom:844.992407px;}
.y49{bottom:844.992422px;}
.y116{bottom:844.992460px;}
.ye9{bottom:844.992590px;}
.y99{bottom:844.992645px;}
.y7b{bottom:850.822815px;}
.yc9{bottom:850.941412px;}
.y156{bottom:850.941467px;}
.y163{bottom:867.342407px;}
.y48{bottom:867.342422px;}
.y115{bottom:867.342460px;}
.ye8{bottom:867.342590px;}
.y98{bottom:867.342645px;}
.y7a{bottom:870.817828px;}
.yc8{bottom:873.291412px;}
.y155{bottom:873.291431px;}
.y2{bottom:879.369000px;}
.y162{bottom:889.692407px;}
.y47{bottom:889.692422px;}
.y114{bottom:889.692460px;}
.ye7{bottom:889.692590px;}
.y97{bottom:889.692645px;}
.y79{bottom:890.812775px;}
.y27{bottom:895.449773px;}
.y17e{bottom:895.641412px;}
.y154{bottom:895.641431px;}
.yc7{bottom:895.641467px;}
.y78{bottom:910.807826px;}
.y161{bottom:912.042407px;}
.y46{bottom:912.042422px;}
.y113{bottom:912.042460px;}
.ye6{bottom:912.042590px;}
.y96{bottom:912.042645px;}
.y17d{bottom:917.991412px;}
.y153{bottom:917.991431px;}
.yc6{bottom:917.991467px;}
.y160{bottom:934.392407px;}
.y45{bottom:934.392422px;}
.y112{bottom:934.392460px;}
.ye5{bottom:934.392590px;}
.y95{bottom:934.392645px;}
.y77{bottom:935.797760px;}
.y17c{bottom:940.341412px;}
.y152{bottom:940.341431px;}
.yc5{bottom:940.341467px;}
.y15f{bottom:956.742407px;}
.y44{bottom:956.742422px;}
.y111{bottom:956.742460px;}
.ye4{bottom:956.742590px;}
.y94{bottom:956.742645px;}
.y17b{bottom:962.691412px;}
.y151{bottom:962.691431px;}
.yc4{bottom:962.691467px;}
.y1{bottom:966.726000px;}
.y26{bottom:967.458773px;}
.y76{bottom:973.156794px;}
.y15e{bottom:979.092407px;}
.y43{bottom:979.092422px;}
.y110{bottom:979.092460px;}
.ye3{bottom:979.092616px;}
.y93{bottom:979.092645px;}
.y17a{bottom:985.041412px;}
.yc3{bottom:985.041431px;}
.y75{bottom:993.151794px;}
.y15d{bottom:1001.442407px;}
.y183{bottom:1001.442409px;}
.y42{bottom:1001.442422px;}
.y10f{bottom:1001.442460px;}
.ye2{bottom:1001.442613px;}
.y92{bottom:1001.442645px;}
.yc2{bottom:1007.391431px;}
.y150{bottom:1007.391449px;}
.y74{bottom:1021.655273px;}
.y15c{bottom:1023.792407px;}
.y41{bottom:1023.792422px;}
.y10e{bottom:1023.792460px;}
.ye1{bottom:1023.792613px;}
.y91{bottom:1023.792645px;}
.yc1{bottom:1029.741431px;}
.y182{bottom:1036.842407px;}
.y25{bottom:1039.467773px;}
.y15b{bottom:1046.142407px;}
.y40{bottom:1046.142422px;}
.y10d{bottom:1046.142453px;}
.ye0{bottom:1046.142613px;}
.y90{bottom:1046.142645px;}
.y73{bottom:1050.158661px;}
.yc0{bottom:1052.091431px;}
.y181{bottom:1054.842407px;}
.y15a{bottom:1068.492407px;}
.y3f{bottom:1068.492422px;}
.y10c{bottom:1068.492453px;}
.ydf{bottom:1068.492613px;}
.y8f{bottom:1068.492645px;}
.y180{bottom:1072.842407px;}
.ybf{bottom:1074.441467px;}
.y72{bottom:1078.662140px;}
.y8e{bottom:1090.842407px;}
.y3e{bottom:1090.842422px;}
.y10b{bottom:1090.842471px;}
.yde{bottom:1090.842613px;}
.ycc{bottom:1147.431412px;}
.y17f{bottom:1147.431427px;}
.y159{bottom:1147.431467px;}
.y38{bottom:1147.436279px;}
.y71{bottom:1147.437469px;}
.h18{height:16.361460px;}
.h26{height:27.493500px;}
.h1a{height:28.796613px;}
.h27{height:31.021301px;}
.h7{height:32.130000px;}
.h25{height:35.241326px;}
.h21{height:36.210000px;}
.h16{height:40.139165px;}
.h13{height:40.140264px;}
.h28{height:42.000000px;}
.he{height:44.676000px;}
.h22{height:44.676058px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h1b{height:49.084823px;}
.h20{height:50.439000px;}
.h23{height:52.560000px;}
.h29{height:53.406000px;}
.h2c{height:53.406092px;}
.h2b{height:53.406141px;}
.h2a{height:54.108000px;}
.h2{height:55.080000px;}
.ha{height:56.100000px;}
.hf{height:59.340000px;}
.h10{height:59.340092px;}
.h12{height:60.120000px;}
.h15{height:60.120103px;}
.h14{height:60.120212px;}
.h24{height:61.440000px;}
.h11{height:61.920000px;}
.h1c{height:62.456067px;}
.h1d{height:64.152000px;}
.hd{height:67.386000px;}
.hc{height:68.544000px;}
.h17{height:69.984000px;}
.h1e{height:72.900000px;}
.h5{height:78.030000px;}
.h1f{height:89.010000px;}
.h4{height:119.055004px;}
.hb{height:250.740000px;}
.h19{height:255.498000px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:361.416000px;}
.w2{width:637.794021px;}
.w4{width:718.584000px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:67.945049px;}
.x3d{left:74.428950px;}
.x9{left:80.792430px;}
.x3c{left:82.932900px;}
.x14{left:85.368195px;}
.x36{left:86.764950px;}
.x13{left:90.405045px;}
.x1b{left:91.821447px;}
.xa{left:93.542430px;}
.x38{left:95.688749px;}
.x37{left:99.520798px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x11{left:111.061667px;}
.x19{left:112.141045px;}
.x10{left:115.716602px;}
.x35{left:122.811000px;}
.x6{left:131.811000px;}
.x40{left:146.590805px;}
.x1a{left:148.448547px;}
.x15{left:154.535854px;}
.x16{left:178.995019px;}
.x17{left:199.679314px;}
.x4{left:203.484001px;}
.x18{left:206.321314px;}
.x12{left:234.757847px;}
.x43{left:242.304291px;}
.x44{left:277.493105px;}
.x3e{left:322.454689px;}
.x21{left:326.946016px;}
.x20{left:331.534531px;}
.x39{left:335.210538px;}
.x1f{left:336.571381px;}
.x27{left:337.981796px;}
.x1d{left:357.228003px;}
.x1c{left:361.877403px;}
.x26{left:395.727768px;}
.x22{left:400.697708px;}
.x23{left:425.156873px;}
.x24{left:445.841168px;}
.xf{left:450.708618px;}
.x25{left:452.483168px;}
.x3{left:454.959000px;}
.xb{left:463.472417px;}
.x3b{left:469.851450px;}
.xc{left:476.222417px;}
.x1e{left:480.924183px;}
.x41{left:482.198090px;}
.x42{left:494.953949px;}
.x5{left:513.090912px;}
.x3f{left:570.480431px;}
.xe{left:575.666245px;}
.x30{left:576.820485px;}
.x2f{left:581.414535px;}
.x3a{left:583.236277px;}
.x2e{left:586.451385px;}
.x29{left:587.859467px;}
.x2b{left:607.104140px;}
.x2a{left:611.753540px;}
.x28{left:646.264064px;}
.x31{left:650.572495px;}
.x32{left:675.031660px;}
.x33{left:695.715955px;}
.x34{left:702.357955px;}
.x2d{left:707.578171px;}
.x2c{left:730.805853px;}
.xd{left:751.097397px;}
.x8{left:802.922424px;}
@media print{
.v2{vertical-align:-17.759766pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760091pt;}
.v3{vertical-align:29.919515pt;}
.ls36{letter-spacing:-1.607556pt;}
.ls38{letter-spacing:-1.056000pt;}
.ls37{letter-spacing:-0.768000pt;}
.ls34{letter-spacing:-0.746667pt;}
.ls31{letter-spacing:-0.586667pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls35{letter-spacing:-0.426667pt;}
.ls2f{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.266667pt;}
.ls1a{letter-spacing:-0.216480pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.177120pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls1e{letter-spacing:-0.157440pt;}
.ls19{letter-spacing:-0.137760pt;}
.ls16{letter-spacing:-0.118080pt;}
.lsa{letter-spacing:-0.106667pt;}
.ls1d{letter-spacing:-0.098400pt;}
.ls1c{letter-spacing:-0.078720pt;}
.ls23{letter-spacing:-0.069275pt;}
.ls15{letter-spacing:-0.059040pt;}
.ls8{letter-spacing:-0.053333pt;}
.ls13{letter-spacing:-0.039360pt;}
.ls21{letter-spacing:-0.034637pt;}
.ls1f{letter-spacing:-0.019680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000239pt;}
.lsd{letter-spacing:0.008001pt;}
.ls10{letter-spacing:0.034637pt;}
.ls2e{letter-spacing:0.053307pt;}
.ls2{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.078720pt;}
.ls6{letter-spacing:0.106667pt;}
.ls29{letter-spacing:0.131258pt;}
.ls2b{letter-spacing:0.144000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.266667pt;}
.ls18{letter-spacing:0.275520pt;}
.ls1{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.347578pt;}
.ls28{letter-spacing:0.373333pt;}
.ls2d{letter-spacing:0.426667pt;}
.lse{letter-spacing:0.480000pt;}
.ls27{letter-spacing:0.586667pt;}
.ls30{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:0.693333pt;}
.ls1b{letter-spacing:6.100800pt;}
.ls17{letter-spacing:6.199200pt;}
.ls20{letter-spacing:9.455992pt;}
.ls25{letter-spacing:9.490629pt;}
.ls24{letter-spacing:9.871640pt;}
.ls22{letter-spacing:9.906277pt;}
.ls26{letter-spacing:9.975552pt;}
.ls32{letter-spacing:12.319992pt;}
.ls2c{letter-spacing:18.186770pt;}
.ls11{letter-spacing:1041.970476pt;}
.ws1{word-spacing:-50.400000pt;}
.ws50{word-spacing:-13.800000pt;}
.ws31{word-spacing:-13.248000pt;}
.ws68{word-spacing:-12.480000pt;}
.ws6{word-spacing:-12.373333pt;}
.ws8{word-spacing:-12.213333pt;}
.ws62{word-spacing:-12.144000pt;}
.ws5{word-spacing:-12.106667pt;}
.wsb2{word-spacing:-11.893333pt;}
.ws7{word-spacing:-11.680000pt;}
.wsb6{word-spacing:-10.896000pt;}
.ws69{word-spacing:-10.080000pt;}
.ws4f{word-spacing:-10.010189pt;}
.ws45{word-spacing:-9.940915pt;}
.ws32{word-spacing:-9.936000pt;}
.ws48{word-spacing:-9.906277pt;}
.ws4d{word-spacing:-9.525267pt;}
.ws42{word-spacing:-9.490629pt;}
.ws3{word-spacing:-8.885333pt;}
.ws9{word-spacing:-7.120373pt;}
.wsb3{word-spacing:-6.488115pt;}
.ws36{word-spacing:-6.218880pt;}
.wsb4{word-spacing:-6.140538pt;}
.ws3c{word-spacing:-6.120480pt;}
.ws9c{word-spacing:-3.733333pt;}
.ws7f{word-spacing:-3.413333pt;}
.wsa0{word-spacing:-3.146667pt;}
.wsc{word-spacing:-3.040000pt;}
.ws13{word-spacing:-2.986667pt;}
.ws57{word-spacing:-2.933333pt;}
.ws7e{word-spacing:-2.773333pt;}
.wsa4{word-spacing:-2.666667pt;}
.wsa{word-spacing:-2.506667pt;}
.ws18{word-spacing:-2.453333pt;}
.ws17{word-spacing:-2.400000pt;}
.ws26{word-spacing:-2.186667pt;}
.ws6e{word-spacing:-2.133333pt;}
.ws98{word-spacing:-2.080000pt;}
.ws15{word-spacing:-2.026667pt;}
.wsbd{word-spacing:-1.973333pt;}
.wsb7{word-spacing:-1.920000pt;}
.wsaf{word-spacing:-1.813333pt;}
.ws4{word-spacing:-1.768000pt;}
.ws23{word-spacing:-1.760000pt;}
.ws90{word-spacing:-1.653333pt;}
.ws8b{word-spacing:-1.632000pt;}
.ws58{word-spacing:-1.546667pt;}
.wsa6{word-spacing:-1.440000pt;}
.ws6d{word-spacing:-1.386667pt;}
.ws64{word-spacing:-1.333333pt;}
.ws1e{word-spacing:-1.280000pt;}
.ws1a{word-spacing:-1.226667pt;}
.ws2d{word-spacing:-1.173333pt;}
.wsad{word-spacing:-1.120000pt;}
.ws19{word-spacing:-1.066667pt;}
.wse{word-spacing:-1.013333pt;}
.ws24{word-spacing:-0.746667pt;}
.ws5b{word-spacing:-0.693333pt;}
.ws92{word-spacing:-0.640000pt;}
.wsbc{word-spacing:-0.586667pt;}
.ws6b{word-spacing:-0.480000pt;}
.ws22{word-spacing:-0.373333pt;}
.ws29{word-spacing:-0.320000pt;}
.ws38{word-spacing:-0.295200pt;}
.ws7a{word-spacing:-0.266667pt;}
.ws9b{word-spacing:-0.226667pt;}
.ws71{word-spacing:-0.213333pt;}
.ws7b{word-spacing:-0.160000pt;}
.ws27{word-spacing:-0.106667pt;}
.ws3e{word-spacing:-0.098400pt;}
.ws41{word-spacing:-0.069275pt;}
.wsb5{word-spacing:-0.053333pt;}
.ws8c{word-spacing:-0.045333pt;}
.ws44{word-spacing:-0.034637pt;}
.ws37{word-spacing:-0.019680pt;}
.ws0{word-spacing:0.000000pt;}
.ws35{word-spacing:0.019680pt;}
.ws47{word-spacing:0.034637pt;}
.ws3d{word-spacing:0.039360pt;}
.ws60{word-spacing:0.059040pt;}
.ws3f{word-spacing:0.078720pt;}
.ws34{word-spacing:0.098400pt;}
.ws16{word-spacing:0.106667pt;}
.ws39{word-spacing:0.118080pt;}
.ws40{word-spacing:0.137760pt;}
.ws33{word-spacing:0.157440pt;}
.wsb{word-spacing:0.160000pt;}
.ws3b{word-spacing:0.196800pt;}
.ws61{word-spacing:0.216480pt;}
.ws8d{word-spacing:0.266667pt;}
.ws5f{word-spacing:0.320000pt;}
.ws30{word-spacing:0.480000pt;}
.ws2e{word-spacing:0.533333pt;}
.wsd{word-spacing:0.586667pt;}
.ws52{word-spacing:0.693333pt;}
.ws1f{word-spacing:0.746667pt;}
.wsbf{word-spacing:0.768000pt;}
.ws80{word-spacing:0.800000pt;}
.ws2b{word-spacing:0.853333pt;}
.ws2c{word-spacing:0.906667pt;}
.ws5e{word-spacing:0.960000pt;}
.ws78{word-spacing:1.066667pt;}
.ws25{word-spacing:1.120000pt;}
.ws55{word-spacing:1.226667pt;}
.ws77{word-spacing:1.333333pt;}
.ws21{word-spacing:1.386667pt;}
.ws79{word-spacing:1.440000pt;}
.ws83{word-spacing:1.493333pt;}
.ws9a{word-spacing:1.600000pt;}
.wsbe{word-spacing:1.607556pt;}
.ws97{word-spacing:1.653333pt;}
.ws88{word-spacing:1.706667pt;}
.wsa8{word-spacing:1.760000pt;}
.wsa9{word-spacing:1.813333pt;}
.ws86{word-spacing:1.866667pt;}
.ws93{word-spacing:1.973333pt;}
.wsf{word-spacing:2.080000pt;}
.ws99{word-spacing:2.133333pt;}
.ws81{word-spacing:2.186667pt;}
.ws54{word-spacing:2.240000pt;}
.ws8a{word-spacing:2.293333pt;}
.ws67{word-spacing:2.346667pt;}
.wsa7{word-spacing:2.400000pt;}
.ws56{word-spacing:2.560000pt;}
.ws51{word-spacing:2.720000pt;}
.ws85{word-spacing:2.826667pt;}
.ws65{word-spacing:2.880000pt;}
.ws8f{word-spacing:2.933333pt;}
.ws6f{word-spacing:2.986667pt;}
.wsab{word-spacing:3.040000pt;}
.ws1b{word-spacing:3.093333pt;}
.ws11{word-spacing:3.200000pt;}
.wsbb{word-spacing:3.253333pt;}
.ws72{word-spacing:3.306667pt;}
.ws91{word-spacing:3.360000pt;}
.ws1d{word-spacing:3.413333pt;}
.ws9f{word-spacing:3.520000pt;}
.ws12{word-spacing:3.626667pt;}
.ws53{word-spacing:3.680000pt;}
.ws7d{word-spacing:3.786667pt;}
.ws73{word-spacing:3.840000pt;}
.ws7c{word-spacing:3.893333pt;}
.ws8e{word-spacing:3.946667pt;}
.ws28{word-spacing:4.053333pt;}
.wsb1{word-spacing:4.106667pt;}
.ws9e{word-spacing:4.160000pt;}
.ws5a{word-spacing:4.213333pt;}
.ws20{word-spacing:4.266667pt;}
.ws84{word-spacing:4.320000pt;}
.wsa5{word-spacing:4.373333pt;}
.ws5c{word-spacing:4.426667pt;}
.ws14{word-spacing:4.480000pt;}
.wsb8{word-spacing:4.586667pt;}
.ws2f{word-spacing:4.640000pt;}
.ws10{word-spacing:4.693333pt;}
.ws1c{word-spacing:4.746667pt;}
.ws74{word-spacing:4.853333pt;}
.ws2a{word-spacing:4.960000pt;}
.ws5d{word-spacing:5.013333pt;}
.ws66{word-spacing:5.066667pt;}
.wsac{word-spacing:5.120000pt;}
.ws87{word-spacing:5.173333pt;}
.ws82{word-spacing:5.226667pt;}
.wsaa{word-spacing:5.333333pt;}
.wsa3{word-spacing:5.493333pt;}
.ws70{word-spacing:5.546667pt;}
.ws95{word-spacing:5.653333pt;}
.wsb9{word-spacing:5.813333pt;}
.wsa1{word-spacing:5.920000pt;}
.ws94{word-spacing:6.133333pt;}
.ws9d{word-spacing:6.346667pt;}
.ws96{word-spacing:6.666667pt;}
.wsb0{word-spacing:6.773333pt;}
.ws59{word-spacing:6.933333pt;}
.ws76{word-spacing:7.040000pt;}
.ws6c{word-spacing:7.200000pt;}
.ws3a{word-spacing:7.340636pt;}
.wsae{word-spacing:7.360000pt;}
.ws63{word-spacing:8.746667pt;}
.ws89{word-spacing:9.173333pt;}
.ws4a{word-spacing:9.421355pt;}
.ws4b{word-spacing:9.525267pt;}
.wsba{word-spacing:9.600000pt;}
.wsa2{word-spacing:9.760000pt;}
.ws46{word-spacing:9.802365pt;}
.ws4e{word-spacing:9.940915pt;}
.ws75{word-spacing:10.133333pt;}
.ws49{word-spacing:10.148739pt;}
.ws43{word-spacing:10.183376pt;}
.ws4c{word-spacing:10.287288pt;}
.ws2{word-spacing:14.986667pt;}
.ws6a{word-spacing:525.095960pt;}
._2{margin-left:-2645.653368pt;}
._a{margin-left:-18.368000pt;}
._14{margin-left:-12.366144pt;}
._e{margin-left:-9.386717pt;}
._b{margin-left:-7.413333pt;}
._d{margin-left:-6.120480pt;}
._3{margin-left:-5.152000pt;}
._7{margin-left:-3.818667pt;}
._5{margin-left:-2.922667pt;}
._4{margin-left:-1.792000pt;}
._6{margin-left:-0.896000pt;}
._0{width:0.906667pt;}
._9{width:1.994667pt;}
._8{width:2.944000pt;}
._c{width:4.640000pt;}
._13{width:10.111982pt;}
._10{width:18.186742pt;}
._1{width:42.133262pt;}
._f{width:47.392000pt;}
._12{width:457.367960pt;}
._11{width:650.941293pt;}
.fsa{font-size:19.680000pt;}
.fs10{font-size:28.964800pt;}
.fs8{font-size:31.093333pt;}
.fsb{font-size:34.637333pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:43.447467pt;}
.fs7{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fsc{font-size:59.040532pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:66.666667pt;}
.fse{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.y18c{bottom:12.104533pt;}
.y24{bottom:24.037732pt;}
.y6{bottom:31.933340pt;}
.yb9{bottom:49.405060pt;}
.y5{bottom:59.133337pt;}
.y18b{bottom:75.590667pt;}
.y6b{bottom:75.637708pt;}
.y70{bottom:75.637728pt;}
.y3d{bottom:75.659069pt;}
.y18d{bottom:80.100398pt;}
.y179{bottom:83.361332pt;}
.yff{bottom:83.411608pt;}
.y143{bottom:83.503608pt;}
.y4{bottom:86.333337pt;}
.yac{bottom:86.976003pt;}
.y18a{bottom:87.695200pt;}
.y3c{bottom:88.987069pt;}
.yb1{bottom:90.241471pt;}
.yaf{bottom:92.406270pt;}
.yb0{bottom:93.291870pt;}
.y6a{bottom:95.504375pt;}
.y6f{bottom:95.504395pt;}
.yfe{bottom:96.739608pt;}
.y142{bottom:96.831608pt;}
.yb2{bottom:100.475071pt;}
.y3b{bottom:102.315069pt;}
.y178{bottom:106.979999pt;}
.yad{bottom:107.393870pt;}
.yfd{bottom:110.067608pt;}
.y141{bottom:110.159611pt;}
.y69{bottom:115.371041pt;}
.y6e{bottom:115.371062pt;}
.y3a{bottom:115.643069pt;}
.yfc{bottom:123.395608pt;}
.y140{bottom:123.487611pt;}
.y23{bottom:123.790666pt;}
.y39{bottom:128.971069pt;}
.y177{bottom:130.598665pt;}
.y68{bottom:135.237708pt;}
.y6d{bottom:135.237728pt;}
.yb8{bottom:136.381999pt;}
.ya9{bottom:136.386923pt;}
.yf7{bottom:136.712275pt;}
.yfb{bottom:136.723608pt;}
.y103{bottom:136.757604pt;}
.y13f{bottom:136.815611pt;}
.yb7{bottom:142.285999pt;}
.ya8{bottom:142.290923pt;}
.yf6{bottom:150.040275pt;}
.yfa{bottom:150.051608pt;}
.y102{bottom:150.085604pt;}
.y13e{bottom:150.143611pt;}
.yba{bottom:151.644399pt;}
.yaa{bottom:151.653683pt;}
.y176{bottom:154.217332pt;}
.y67{bottom:155.104375pt;}
.y6c{bottom:155.104395pt;}
.yf5{bottom:163.368275pt;}
.yf9{bottom:163.379608pt;}
.y101{bottom:163.413604pt;}
.y13d{bottom:163.471611pt;}
.y37{bottom:172.955058pt;}
.ybb{bottom:173.400639pt;}
.yab{bottom:173.409923pt;}
.y66{bottom:174.971041pt;}
.y1a{bottom:175.052000pt;}
.yf4{bottom:176.696275pt;}
.yf8{bottom:176.707608pt;}
.y100{bottom:176.741604pt;}
.y13c{bottom:176.799611pt;}
.y175{bottom:177.835999pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y13b{bottom:190.127611pt;}
.ybc{bottom:194.364759pt;}
.yae{bottom:194.369873pt;}
.yb6{bottom:194.374043pt;}
.y65{bottom:194.837708pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.yf3{bottom:200.314941pt;}
.y174{bottom:201.454000pt;}
.y13a{bottom:203.455611pt;}
.y14f{bottom:203.557613pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y36{bottom:211.719320pt;}
.y64{bottom:214.704375pt;}
.y139{bottom:216.783611pt;}
.y14e{bottom:216.885613pt;}
.yf2{bottom:223.933065pt;}
.ya7{bottom:224.843599pt;}
.y138{bottom:230.111611pt;}
.y14d{bottom:230.213613pt;}
.ya6{bottom:230.747599pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y63{bottom:234.571041pt;}
.y35{bottom:235.719320pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y137{bottom:243.439611pt;}
.y14c{bottom:243.541600pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y62{bottom:254.437708pt;}
.y173{bottom:254.437752pt;}
.y168{bottom:254.437858pt;}
.yb4{bottom:255.539288pt;}
.y136{bottom:256.767608pt;}
.y14b{bottom:256.869600pt;}
.yb5{bottom:258.389994pt;}
.y34{bottom:259.719320pt;}
.yb3{bottom:265.869873pt;}
.y12e{bottom:270.061608pt;}
.y135{bottom:270.095608pt;}
.y14a{bottom:270.197600pt;}
.y61{bottom:274.304375pt;}
.y172{bottom:274.304419pt;}
.ydd{bottom:274.304525pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y12d{bottom:283.389608pt;}
.y134{bottom:283.423608pt;}
.y149{bottom:283.525600pt;}
.y33{bottom:283.719320pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y60{bottom:294.171041pt;}
.y171{bottom:294.171086pt;}
.ydc{bottom:294.171191pt;}
.y12c{bottom:296.717608pt;}
.y133{bottom:296.751608pt;}
.y148{bottom:296.853600pt;}
.y32{bottom:307.719320pt;}
.y11{bottom:309.452000pt;}
.y195{bottom:309.806116pt;}
.y12b{bottom:310.045608pt;}
.y132{bottom:310.079608pt;}
.y147{bottom:310.181600pt;}
.y5f{bottom:314.037708pt;}
.y170{bottom:314.037752pt;}
.ydb{bottom:314.037858pt;}
.y12a{bottom:323.373608pt;}
.y131{bottom:323.407608pt;}
.y146{bottom:323.509600pt;}
.y194{bottom:325.802116pt;}
.y31{bottom:331.719320pt;}
.y5e{bottom:333.904375pt;}
.y16f{bottom:333.904419pt;}
.yda{bottom:333.904525pt;}
.y129{bottom:336.701608pt;}
.y130{bottom:336.735608pt;}
.y145{bottom:336.837600pt;}
.y193{bottom:341.798115pt;}
.y10{bottom:343.809333pt;}
.y128{bottom:350.029608pt;}
.y12f{bottom:350.063608pt;}
.y144{bottom:350.165600pt;}
.y5d{bottom:353.771041pt;}
.y16e{bottom:353.771086pt;}
.yd9{bottom:353.771191pt;}
.y30{bottom:355.719320pt;}
.yf{bottom:362.706666pt;}
.y192{bottom:363.470115pt;}
.y5c{bottom:373.637708pt;}
.y16d{bottom:373.637752pt;}
.yd8{bottom:373.637858pt;}
.y127{bottom:373.648275pt;}
.ybe{bottom:375.381183pt;}
.y191{bottom:379.466115pt;}
.y2f{bottom:379.719320pt;}
.y5b{bottom:393.504375pt;}
.y16c{bottom:393.504419pt;}
.yd7{bottom:393.504525pt;}
.ybd{bottom:395.254517pt;}
.y126{bottom:397.259723pt;}
.y190{bottom:401.138115pt;}
.y2e{bottom:403.719320pt;}
.y5a{bottom:413.371041pt;}
.y16b{bottom:413.371086pt;}
.yd6{bottom:413.371191pt;}
.y125{bottom:417.133057pt;}
.y18f{bottom:417.134115pt;}
.y2d{bottom:427.719320pt;}
.ye{bottom:430.990669pt;}
.y18e{bottom:433.134115pt;}
.y59{bottom:433.237708pt;}
.y16a{bottom:433.237752pt;}
.yd5{bottom:433.237858pt;}
.yd{bottom:446.990669pt;}
.y2c{bottom:451.719320pt;}
.y58{bottom:453.104375pt;}
.y8d{bottom:453.104517pt;}
.yd4{bottom:453.104525pt;}
.y169{bottom:453.104533pt;}
.yc{bottom:462.990669pt;}
.y57{bottom:472.971041pt;}
.y124{bottom:472.971075pt;}
.y10a{bottom:472.971086pt;}
.y8c{bottom:472.971183pt;}
.yd3{bottom:472.971191pt;}
.y189{bottom:472.971216pt;}
.yb{bottom:478.990666pt;}
.y56{bottom:492.837708pt;}
.y123{bottom:492.837742pt;}
.y109{bottom:492.837752pt;}
.y8b{bottom:492.837850pt;}
.yd2{bottom:492.837858pt;}
.y188{bottom:492.837882pt;}
.ya{bottom:494.990666pt;}
.y55{bottom:512.704375pt;}
.y122{bottom:512.704409pt;}
.y108{bottom:512.704419pt;}
.y8a{bottom:512.704517pt;}
.yd1{bottom:512.704525pt;}
.y187{bottom:512.704549pt;}
.ya5{bottom:512.704574pt;}
.y54{bottom:532.571041pt;}
.y121{bottom:532.571075pt;}
.y107{bottom:532.571086pt;}
.y89{bottom:532.571183pt;}
.yd0{bottom:532.571191pt;}
.ya4{bottom:532.571240pt;}
.y2b{bottom:539.923354pt;}
.y106{bottom:552.432525pt;}
.y53{bottom:552.437708pt;}
.y120{bottom:552.437742pt;}
.y88{bottom:552.437850pt;}
.ycf{bottom:552.437858pt;}
.y186{bottom:552.437866pt;}
.ya3{bottom:552.437907pt;}
.y52{bottom:572.304375pt;}
.y11f{bottom:572.304409pt;}
.y87{bottom:572.304517pt;}
.yce{bottom:572.304525pt;}
.y185{bottom:572.304533pt;}
.ya2{bottom:572.304574pt;}
.y9{bottom:573.786667pt;}
.ycd{bottom:592.165882pt;}
.y51{bottom:592.171041pt;}
.y11e{bottom:592.171075pt;}
.yf1{bottom:592.171191pt;}
.y184{bottom:592.171200pt;}
.y86{bottom:592.171216pt;}
.ya1{bottom:592.171240pt;}
.y8{bottom:592.685334pt;}
.y2a{bottom:603.931354pt;}
.y50{bottom:612.037708pt;}
.y11d{bottom:612.037742pt;}
.yf0{bottom:612.037858pt;}
.y105{bottom:612.037866pt;}
.y85{bottom:612.037882pt;}
.ya0{bottom:612.037907pt;}
.y82{bottom:612.947845pt;}
.y81{bottom:630.721178pt;}
.y84{bottom:631.899200pt;}
.y4f{bottom:631.904375pt;}
.y11c{bottom:631.904409pt;}
.yef{bottom:631.904525pt;}
.y104{bottom:631.904533pt;}
.y9f{bottom:631.904574pt;}
.y7{bottom:645.598667pt;}
.y80{bottom:648.494512pt;}
.y4e{bottom:651.771041pt;}
.y11b{bottom:651.771075pt;}
.yee{bottom:651.771191pt;}
.y83{bottom:651.771200pt;}
.y9e{bottom:651.771240pt;}
.y7f{bottom:666.267845pt;}
.y29{bottom:667.939354pt;}
.y3{bottom:668.977329pt;}
.y4d{bottom:671.637708pt;}
.y11a{bottom:671.637742pt;}
.yed{bottom:671.637858pt;}
.y9d{bottom:671.637907pt;}
.y7e{bottom:688.481364pt;}
.y167{bottom:691.504362pt;}
.y4c{bottom:691.504375pt;}
.y119{bottom:691.504409pt;}
.yec{bottom:691.504525pt;}
.y9c{bottom:691.504574pt;}
.y7d{bottom:711.271484pt;}
.y166{bottom:711.371029pt;}
.y4b{bottom:711.371041pt;}
.y118{bottom:711.371075pt;}
.yeb{bottom:711.371191pt;}
.y9b{bottom:711.371240pt;}
.ycb{bottom:716.659033pt;}
.y158{bottom:716.659082pt;}
.y165{bottom:731.237695pt;}
.y4a{bottom:731.237708pt;}
.y117{bottom:731.237742pt;}
.yea{bottom:731.237858pt;}
.y9a{bottom:731.237907pt;}
.y28{bottom:731.947354pt;}
.y7c{bottom:733.484782pt;}
.yca{bottom:736.525700pt;}
.y157{bottom:736.525749pt;}
.y164{bottom:751.104362pt;}
.y49{bottom:751.104375pt;}
.y116{bottom:751.104409pt;}
.ye9{bottom:751.104525pt;}
.y99{bottom:751.104574pt;}
.y7b{bottom:756.286947pt;}
.yc9{bottom:756.392367pt;}
.y156{bottom:756.392415pt;}
.y163{bottom:770.971029pt;}
.y48{bottom:770.971041pt;}
.y115{bottom:770.971075pt;}
.ye8{bottom:770.971191pt;}
.y98{bottom:770.971240pt;}
.y7a{bottom:774.060291pt;}
.yc8{bottom:776.259033pt;}
.y155{bottom:776.259049pt;}
.y2{bottom:781.661334pt;}
.y162{bottom:790.837695pt;}
.y47{bottom:790.837708pt;}
.y114{bottom:790.837742pt;}
.ye7{bottom:790.837858pt;}
.y97{bottom:790.837907pt;}
.y79{bottom:791.833577pt;}
.y27{bottom:795.955354pt;}
.y17e{bottom:796.125700pt;}
.y154{bottom:796.125716pt;}
.yc7{bottom:796.125749pt;}
.y78{bottom:809.606956pt;}
.y161{bottom:810.704362pt;}
.y46{bottom:810.704375pt;}
.y113{bottom:810.704409pt;}
.ye6{bottom:810.704525pt;}
.y96{bottom:810.704574pt;}
.y17d{bottom:815.992367pt;}
.y153{bottom:815.992383pt;}
.yc6{bottom:815.992415pt;}
.y160{bottom:830.571029pt;}
.y45{bottom:830.571041pt;}
.y112{bottom:830.571075pt;}
.ye5{bottom:830.571191pt;}
.y95{bottom:830.571240pt;}
.y77{bottom:831.820231pt;}
.y17c{bottom:835.859033pt;}
.y152{bottom:835.859049pt;}
.yc5{bottom:835.859082pt;}
.y15f{bottom:850.437695pt;}
.y44{bottom:850.437708pt;}
.y111{bottom:850.437742pt;}
.ye4{bottom:850.437858pt;}
.y94{bottom:850.437907pt;}
.y17b{bottom:855.725700pt;}
.y151{bottom:855.725716pt;}
.yc4{bottom:855.725749pt;}
.y1{bottom:859.312000pt;}
.y26{bottom:859.963354pt;}
.y76{bottom:865.028262pt;}
.y15e{bottom:870.304362pt;}
.y43{bottom:870.304375pt;}
.y110{bottom:870.304409pt;}
.ye3{bottom:870.304547pt;}
.y93{bottom:870.304574pt;}
.y17a{bottom:875.592367pt;}
.yc3{bottom:875.592383pt;}
.y75{bottom:882.801595pt;}
.y15d{bottom:890.171029pt;}
.y183{bottom:890.171030pt;}
.y42{bottom:890.171041pt;}
.y10f{bottom:890.171075pt;}
.ye2{bottom:890.171212pt;}
.y92{bottom:890.171240pt;}
.yc2{bottom:895.459049pt;}
.y150{bottom:895.459066pt;}
.y74{bottom:908.138021pt;}
.y15c{bottom:910.037695pt;}
.y41{bottom:910.037708pt;}
.y10e{bottom:910.037742pt;}
.ye1{bottom:910.037878pt;}
.y91{bottom:910.037907pt;}
.yc1{bottom:915.325716pt;}
.y182{bottom:921.637695pt;}
.y25{bottom:923.971354pt;}
.y15b{bottom:929.904362pt;}
.y40{bottom:929.904375pt;}
.y10d{bottom:929.904403pt;}
.ye0{bottom:929.904545pt;}
.y90{bottom:929.904574pt;}
.y73{bottom:933.474365pt;}
.yc0{bottom:935.192383pt;}
.y181{bottom:937.637695pt;}
.y15a{bottom:949.771029pt;}
.y3f{bottom:949.771041pt;}
.y10c{bottom:949.771069pt;}
.ydf{bottom:949.771212pt;}
.y8f{bottom:949.771240pt;}
.y180{bottom:953.637695pt;}
.ybf{bottom:955.059082pt;}
.y72{bottom:958.810791pt;}
.y8e{bottom:969.637695pt;}
.y3e{bottom:969.637708pt;}
.y10b{bottom:969.637752pt;}
.yde{bottom:969.637878pt;}
.ycc{bottom:1019.939033pt;}
.y17f{bottom:1019.939046pt;}
.y159{bottom:1019.939082pt;}
.y38{bottom:1019.943359pt;}
.y71{bottom:1019.944417pt;}
.h18{height:14.543520pt;}
.h26{height:24.438667pt;}
.h1a{height:25.596989pt;}
.h27{height:27.574490pt;}
.h7{height:28.560000pt;}
.h25{height:31.325623pt;}
.h21{height:32.186667pt;}
.h16{height:35.679258pt;}
.h13{height:35.680234pt;}
.h28{height:37.333333pt;}
.he{height:39.712000pt;}
.h22{height:39.712051pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h1b{height:43.630953pt;}
.h20{height:44.834667pt;}
.h23{height:46.720000pt;}
.h29{height:47.472000pt;}
.h2c{height:47.472081pt;}
.h2b{height:47.472125pt;}
.h2a{height:48.096000pt;}
.h2{height:48.960000pt;}
.ha{height:49.866667pt;}
.hf{height:52.746667pt;}
.h10{height:52.746748pt;}
.h12{height:53.440000pt;}
.h15{height:53.440091pt;}
.h14{height:53.440188pt;}
.h24{height:54.613333pt;}
.h11{height:55.040000pt;}
.h1c{height:55.516504pt;}
.h1d{height:57.024000pt;}
.hd{height:59.898667pt;}
.hc{height:60.928000pt;}
.h17{height:62.208000pt;}
.h1e{height:64.800000pt;}
.h5{height:69.360000pt;}
.h1f{height:79.120000pt;}
.h4{height:105.826671pt;}
.hb{height:222.880000pt;}
.h19{height:227.109333pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:321.258667pt;}
.w2{width:566.928019pt;}
.w4{width:638.741333pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:60.395599pt;}
.x3d{left:66.159067pt;}
.x9{left:71.815493pt;}
.x3c{left:73.718133pt;}
.x14{left:75.882840pt;}
.x36{left:77.124400pt;}
.x13{left:80.360040pt;}
.x1b{left:81.619064pt;}
.xa{left:83.148827pt;}
.x38{left:85.056666pt;}
.x37{left:88.462931pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x11{left:98.721482pt;}
.x19{left:99.680929pt;}
.x10{left:102.859202pt;}
.x35{left:109.165333pt;}
.x6{left:117.165333pt;}
.x40{left:130.302938pt;}
.x1a{left:131.954264pt;}
.x15{left:137.365204pt;}
.x16{left:159.106684pt;}
.x17{left:177.492724pt;}
.x4{left:180.874667pt;}
.x18{left:183.396724pt;}
.x12{left:208.673642pt;}
.x43{left:215.381592pt;}
.x44{left:246.660538pt;}
.x3e{left:286.626390pt;}
.x21{left:290.618681pt;}
.x20{left:294.697361pt;}
.x39{left:297.964923pt;}
.x1f{left:299.174561pt;}
.x27{left:300.428263pt;}
.x1d{left:317.536003pt;}
.x1c{left:321.668803pt;}
.x26{left:351.758016pt;}
.x22{left:356.175741pt;}
.x23{left:377.917221pt;}
.x24{left:396.303261pt;}
.xf{left:400.629883pt;}
.x25{left:402.207261pt;}
.x3{left:404.408000pt;}
.xb{left:411.975482pt;}
.x3b{left:417.645733pt;}
.xc{left:423.308815pt;}
.x1e{left:427.488163pt;}
.x41{left:428.620524pt;}
.x42{left:439.959066pt;}
.x5{left:456.080811pt;}
.x3f{left:507.093716pt;}
.xe{left:511.703328pt;}
.x30{left:512.729320pt;}
.x2f{left:516.812920pt;}
.x3a{left:518.432246pt;}
.x2e{left:521.290120pt;}
.x29{left:522.541748pt;}
.x2b{left:539.648124pt;}
.x2a{left:543.780924pt;}
.x28{left:574.456945pt;}
.x31{left:578.286662pt;}
.x32{left:600.028142pt;}
.x33{left:618.414182pt;}
.x34{left:624.318182pt;}
.x2d{left:628.958374pt;}
.x2c{left:649.605203pt;}
.xd{left:667.642131pt;}
.x8{left:713.708822pt;}
}




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