
    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_e494e35b6ee45340603eeb75.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_ae0680eb548a154bcbc2dd20.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_eff1a63cfb62c7a506d56c1d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3ac6793465992614d76f66db.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_a588da3dab9fe97b3c28e57a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_00ecd338ab180e58214b0963.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_d70b89060e687d315a5f01d9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.142090;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;}
.md{transform:matrix(0.235229,0.000000,-0.078401,0.237388,0,0);-ms-transform:matrix(0.235229,0.000000,-0.078401,0.237388,0,0);-webkit-transform:matrix(0.235229,0.000000,-0.078401,0.237388,0,0);}
.m7{transform:matrix(0.235570,0.000000,-0.078515,0.237351,0,0);-ms-transform:matrix(0.235570,0.000000,-0.078515,0.237351,0,0);-webkit-transform:matrix(0.235570,0.000000,-0.078515,0.237351,0,0);}
.m9{transform:matrix(0.235843,0.000000,-0.078606,0.237321,0,0);-ms-transform:matrix(0.235843,0.000000,-0.078606,0.237321,0,0);-webkit-transform:matrix(0.235843,0.000000,-0.078606,0.237321,0,0);}
.mb{transform:matrix(0.237153,0.000000,-0.079043,0.237175,0,0);-ms-transform:matrix(0.237153,0.000000,-0.079043,0.237175,0,0);-webkit-transform:matrix(0.237153,0.000000,-0.079043,0.237175,0,0);}
.m5{transform:matrix(0.237464,0.000000,-0.079147,0.237141,0,0);-ms-transform:matrix(0.237464,0.000000,-0.079147,0.237141,0,0);-webkit-transform:matrix(0.237464,0.000000,-0.079147,0.237141,0,0);}
.m13{transform:matrix(0.237870,0.000000,-0.079282,0.237096,0,0);-ms-transform:matrix(0.237870,0.000000,-0.079282,0.237096,0,0);-webkit-transform:matrix(0.237870,0.000000,-0.079282,0.237096,0,0);}
.m3{transform:matrix(0.240286,0.000000,-0.080087,0.236825,0,0);-ms-transform:matrix(0.240286,0.000000,-0.080087,0.236825,0,0);-webkit-transform:matrix(0.240286,0.000000,-0.080087,0.236825,0,0);}
.mf{transform:matrix(0.240612,0.000000,-0.080196,0.236788,0,0);-ms-transform:matrix(0.240612,0.000000,-0.080196,0.236788,0,0);-webkit-transform:matrix(0.240612,0.000000,-0.080196,0.236788,0,0);}
.m11{transform:matrix(0.240995,0.000000,-0.080323,0.236745,0,0);-ms-transform:matrix(0.240995,0.000000,-0.080323,0.236745,0,0);-webkit-transform:matrix(0.240995,0.000000,-0.080323,0.236745,0,0);}
.m15{transform:matrix(0.246267,0.000000,-0.082081,0.236141,0,0);-ms-transform:matrix(0.246267,0.000000,-0.082081,0.236141,0,0);-webkit-transform:matrix(0.246267,0.000000,-0.082081,0.236141,0,0);}
.mc{transform:matrix(0.247726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247726,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248124,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248444,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249976,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);}
.m4{transform:matrix(0.250341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250341,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250817,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253653,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254037,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254488,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.260720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260720,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);}
.va{vertical-align:-90.250287px;}
.v9{vertical-align:-85.480787px;}
.vb{vertical-align:-72.519851px;}
.vf{vertical-align:-71.137170px;}
.ve{vertical-align:-67.541225px;}
.v6{vertical-align:-60.456521px;}
.v2{vertical-align:-52.637456px;}
.v4{vertical-align:-47.522369px;}
.v8{vertical-align:-25.907919px;}
.v7{vertical-align:-20.318568px;}
.vc{vertical-align:-14.467696px;}
.v5{vertical-align:-10.824119px;}
.v1{vertical-align:-6.000000px;}
.v3{vertical-align:-3.254826px;}
.vd{vertical-align:-1.030459px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:6.000000px;}
.lsd{letter-spacing:-1.200000px;}
.ls42{letter-spacing:-0.085990px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000001px;}
.ls2{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.060000px;}
.ls5{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.432000px;}
.ls3a{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.600000px;}
.lse{letter-spacing:2.225050px;}
.ls12{letter-spacing:2.325699px;}
.ls24{letter-spacing:3.443572px;}
.ls4a{letter-spacing:4.800000px;}
.ls49{letter-spacing:10.740000px;}
.ls7{letter-spacing:18.000000px;}
.ls31{letter-spacing:18.793758px;}
.ls20{letter-spacing:19.227359px;}
.ls19{letter-spacing:21.928197px;}
.ls18{letter-spacing:22.098821px;}
.ls43{letter-spacing:28.213243px;}
.ls30{letter-spacing:43.240922px;}
.ls38{letter-spacing:57.004833px;}
.ls2e{letter-spacing:60.615736px;}
.ls28{letter-spacing:61.079628px;}
.ls13{letter-spacing:63.300985px;}
.ls25{letter-spacing:74.610736px;}
.ls36{letter-spacing:75.686840px;}
.ls2c{letter-spacing:80.247372px;}
.ls48{letter-spacing:90.816004px;}
.ls2d{letter-spacing:108.722245px;}
.ls26{letter-spacing:110.313576px;}
.ls27{letter-spacing:112.549662px;}
.ls45{letter-spacing:115.979881px;}
.ls32{letter-spacing:120.307319px;}
.ls17{letter-spacing:157.319852px;}
.ls14{letter-spacing:164.722453px;}
.ls10{letter-spacing:171.775325px;}
.ls33{letter-spacing:172.561182px;}
.ls11{letter-spacing:173.582260px;}
.ls44{letter-spacing:179.655111px;}
.ls40{letter-spacing:179.939375px;}
.ls41{letter-spacing:185.482531px;}
.ls47{letter-spacing:207.584089px;}
.ls3e{letter-spacing:254.852165px;}
.ls3f{letter-spacing:258.448238px;}
.ls37{letter-spacing:260.334826px;}
.ls1d{letter-spacing:262.963853px;}
.ls2b{letter-spacing:276.021374px;}
.ls16{letter-spacing:277.276967px;}
.ls9{letter-spacing:287.407762px;}
.ls15{letter-spacing:330.260941px;}
.ls3c{letter-spacing:343.735729px;}
.ls3b{letter-spacing:348.376346px;}
.lsc{letter-spacing:356.999779px;}
.lsa{letter-spacing:403.070206px;}
.lsb{letter-spacing:407.667417px;}
.ls22{letter-spacing:414.231605px;}
.ls21{letter-spacing:446.808337px;}
.ls1e{letter-spacing:449.528877px;}
.ls1f{letter-spacing:454.760687px;}
.ls2f{letter-spacing:467.357734px;}
.ls29{letter-spacing:476.584463px;}
.ls1a{letter-spacing:532.978386px;}
.ls39{letter-spacing:549.270209px;}
.ls1b{letter-spacing:554.872779px;}
.ls23{letter-spacing:584.065663px;}
.ls35{letter-spacing:592.519831px;}
.ls2a{letter-spacing:596.197293px;}
.ls34{letter-spacing:597.402853px;}
.ls1c{letter-spacing:658.659470px;}
.lsf{letter-spacing:935.011472px;}
.ls46{letter-spacing:1211.819203px;}
.ls3d{letter-spacing:1303.201997px;}
.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;}
}
.ws19{word-spacing:-216.039921px;}
.ws13{word-spacing:-159.338310px;}
.ws18{word-spacing:-63.371467px;}
.ws40{word-spacing:-18.504000px;}
.ws2{word-spacing:-18.432000px;}
.ws5{word-spacing:-18.024000px;}
.ws6{word-spacing:-18.000001px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.000000px;}
.ws4{word-spacing:-12.000000px;}
.ws2a{word-spacing:-0.089078px;}
.ws1e{word-spacing:-0.051915px;}
.ws27{word-spacing:-0.051514px;}
.ws36{word-spacing:-0.048924px;}
.ws7{word-spacing:-0.043287px;}
.ws14{word-spacing:-0.040739px;}
.ws3{word-spacing:0.000000px;}
.ws11{word-spacing:6.467370px;}
.ws1a{word-spacing:6.910274px;}
.ws3e{word-spacing:7.941819px;}
.ws2e{word-spacing:9.008402px;}
.ws25{word-spacing:9.077343px;}
.ws3a{word-spacing:10.537757px;}
.ws48{word-spacing:17.816852px;}
.ws4a{word-spacing:23.537804px;}
.ws49{word-spacing:28.115007px;}
.ws4c{word-spacing:29.529245px;}
.ws44{word-spacing:32.371857px;}
.ws4b{word-spacing:32.610558px;}
.ws41{word-spacing:34.931351px;}
.ws46{word-spacing:38.410644px;}
.ws31{word-spacing:39.658789px;}
.ws45{word-spacing:41.479535px;}
.wse{word-spacing:42.897148px;}
.ws10{word-spacing:45.650179px;}
.wsf{word-spacing:46.247890px;}
.ws16{word-spacing:58.216562px;}
.wsb{word-spacing:59.621674px;}
.ws9{word-spacing:63.198623px;}
.ws52{word-spacing:66.745841px;}
.ws32{word-spacing:69.570485px;}
.ws34{word-spacing:72.261327px;}
.wsd{word-spacing:72.851564px;}
.ws26{word-spacing:73.923128px;}
.ws51{word-spacing:74.632203px;}
.ws37{word-spacing:75.559212px;}
.ws4e{word-spacing:76.722291px;}
.ws20{word-spacing:77.249830px;}
.ws2c{word-spacing:80.081374px;}
.ws15{word-spacing:80.378780px;}
.ws22{word-spacing:80.704488px;}
.ws3b{word-spacing:82.996807px;}
.ws50{word-spacing:97.111782px;}
.ws4d{word-spacing:97.403714px;}
.ws1b{word-spacing:101.635176px;}
.ws1c{word-spacing:101.917104px;}
.ws3d{word-spacing:102.182424px;}
.ws2d{word-spacing:108.586424px;}
.ws24{word-spacing:111.585849px;}
.ws43{word-spacing:127.202844px;}
.ws30{word-spacing:130.048854px;}
.ws12{word-spacing:139.573087px;}
.ws47{word-spacing:150.299579px;}
.ws21{word-spacing:176.220750px;}
.wsa{word-spacing:183.579014px;}
.ws42{word-spacing:199.922692px;}
.ws29{word-spacing:209.933669px;}
.ws17{word-spacing:217.719180px;}
.wsc{word-spacing:236.917705px;}
.ws8{word-spacing:243.487846px;}
.ws2f{word-spacing:250.640651px;}
.ws1d{word-spacing:256.907223px;}
.ws39{word-spacing:260.146816px;}
.ws2b{word-spacing:275.875435px;}
.ws23{word-spacing:278.022024px;}
.ws38{word-spacing:290.001863px;}
.ws3f{word-spacing:307.742889px;}
.ws3c{word-spacing:500.821807px;}
.ws28{word-spacing:522.046676px;}
.ws33{word-spacing:527.502792px;}
.ws1f{word-spacing:531.663652px;}
.ws35{word-spacing:565.908440px;}
.ws4f{word-spacing:907.066088px;}
._32{margin-left:-1305.322878px;}
._2a{margin-left:-411.369729px;}
._33{margin-left:-362.441856px;}
._46{margin-left:-124.372332px;}
._10{margin-left:-12.780000px;}
._f{margin-left:-11.088000px;}
._5{margin-left:-8.688000px;}
._6{margin-left:-6.780000px;}
._4{margin-left:-5.400000px;}
._3{margin-left:-3.960000px;}
._2{margin-left:-2.640000px;}
._1{margin-left:-1.200000px;}
._0{width:1.380000px;}
._d{width:3.162000px;}
._a{width:4.608000px;}
._9{width:5.796000px;}
._8{width:6.960000px;}
._7{width:8.532000px;}
._3a{width:10.080000px;}
._15{width:11.082000px;}
._b{width:12.672000px;}
._c{width:13.896000px;}
._11{width:15.096000px;}
._19{width:16.380000px;}
._79{width:19.332000px;}
._3c{width:21.534000px;}
._3b{width:22.614000px;}
._16{width:23.682000px;}
._e{width:25.398000px;}
._14{width:31.152000px;}
._5a{width:38.213348px;}
._6b{width:42.420002px;}
._57{width:44.346810px;}
._59{width:46.606520px;}
._23{width:48.134842px;}
._54{width:49.807775px;}
._26{width:55.349727px;}
._18{width:58.020000px;}
._17{width:59.544000px;}
._12{width:65.136000px;}
._13{width:66.432000px;}
._1b{width:69.475199px;}
._4c{width:72.310251px;}
._3d{width:74.550240px;}
._44{width:76.704904px;}
._22{width:78.089258px;}
._50{width:79.746759px;}
._27{width:89.581939px;}
._24{width:93.317633px;}
._56{width:95.943522px;}
._55{width:99.521396px;}
._76{width:100.978270px;}
._53{width:104.464413px;}
._77{width:112.038223px;}
._41{width:113.919906px;}
._69{width:127.804487px;}
._29{width:134.335551px;}
._2f{width:135.784326px;}
._68{width:137.541788px;}
._58{width:139.537095px;}
._38{width:153.580477px;}
._36{width:155.413012px;}
._66{width:158.464593px;}
._6d{width:160.399437px;}
._6c{width:163.988292px;}
._74{width:165.706142px;}
._70{width:167.069604px;}
._60{width:168.240130px;}
._73{width:180.678735px;}
._4f{width:183.172923px;}
._4e{width:185.716991px;}
._72{width:188.849472px;}
._5f{width:191.756228px;}
._5c{width:206.857623px;}
._64{width:208.932122px;}
._62{width:210.466567px;}
._6f{width:213.922209px;}
._71{width:216.804575px;}
._6e{width:222.710424px;}
._67{width:224.422265px;}
._5e{width:230.302115px;}
._5d{width:236.892936px;}
._2b{width:243.369719px;}
._34{width:250.255953px;}
._47{width:253.071395px;}
._63{width:256.157882px;}
._65{width:259.276272px;}
._40{width:260.606372px;}
._61{width:264.271167px;}
._51{width:273.585199px;}
._25{width:300.424500px;}
._4b{width:308.987823px;}
._45{width:360.549110px;}
._78{width:363.516603px;}
._3e{width:368.961388px;}
._4d{width:375.005463px;}
._37{width:386.805718px;}
._49{width:390.786417px;}
._42{width:402.265640px;}
._52{width:404.334752px;}
._28{width:412.495316px;}
._1e{width:446.762321px;}
._4a{width:461.680607px;}
._48{width:463.652450px;}
._43{width:471.076298px;}
._3f{width:472.825960px;}
._1a{width:485.893524px;}
._1c{width:499.831850px;}
._1d{width:514.938918px;}
._20{width:524.715560px;}
._2e{width:529.698190px;}
._6a{width:588.237227px;}
._21{width:597.038593px;}
._1f{width:600.538782px;}
._2d{width:614.163528px;}
._75{width:650.096400px;}
._2c{width:694.453560px;}
._35{width:763.102328px;}
._5b{width:808.143066px;}
._39{width:977.445644px;}
._30{width:1015.364320px;}
._31{width:1085.847101px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs20{font-size:35.921073px;}
.fs8{font-size:40.739372px;}
.fs5{font-size:43.286728px;}
.fs4{font-size:48.000000px;}
.fs17{font-size:48.924392px;}
.fs1e{font-size:49.498252px;}
.fse{font-size:51.514375px;}
.fsb{font-size:51.915209px;}
.fs24{font-size:52.103999px;}
.fs21{font-size:52.192284px;}
.fs11{font-size:53.211546px;}
.fs1a{font-size:54.450025px;}
.fs25{font-size:55.161852px;}
.fs14{font-size:57.315493px;}
.fs1c{font-size:57.498617px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:70.482091px;}
.fs1{font-size:72.000000px;}
.fsa{font-size:74.304024px;}
.fs6{font-size:74.713877px;}
.fs7{font-size:78.870365px;}
.fs2{font-size:84.000000px;}
.fs18{font-size:84.518134px;}
.fs1f{font-size:85.592015px;}
.fsf{font-size:89.078281px;}
.fs19{font-size:89.233922px;}
.fsc{font-size:89.771399px;}
.fs23{font-size:89.918317px;}
.fs22{font-size:90.250516px;}
.fs12{font-size:92.013016px;}
.fs10{font-size:93.837522px;}
.fs1b{font-size:94.154585px;}
.fsd{font-size:94.555660px;}
.fs13{font-size:96.988310px;}
.fs15{font-size:98.912037px;}
.fs1d{font-size:99.426189px;}
.fs16{font-size:104.166910px;}
.y0{bottom:0.000000px;}
.y5c{bottom:4.499290px;}
.y5f{bottom:4.499300px;}
.y4c{bottom:4.879407px;}
.y43{bottom:5.027243px;}
.y39{bottom:5.027270px;}
.y3b{bottom:5.027279px;}
.ye6{bottom:5.048008px;}
.yea{bottom:5.048012px;}
.yd7{bottom:6.500913px;}
.yc5{bottom:6.824210px;}
.ya4{bottom:7.057128px;}
.y15b{bottom:7.071257px;}
.yae{bottom:7.136293px;}
.yaa{bottom:7.136307px;}
.yb1{bottom:7.136317px;}
.yba{bottom:7.136318px;}
.y4b{bottom:7.651832px;}
.y163{bottom:7.759392px;}
.y165{bottom:7.759401px;}
.y15a{bottom:7.885511px;}
.ycd{bottom:7.924333px;}
.y136{bottom:7.971317px;}
.y11d{bottom:8.108775px;}
.y11f{bottom:8.108788px;}
.y68{bottom:9.033677px;}
.y72{bottom:9.033678px;}
.y64{bottom:9.033687px;}
.y70{bottom:9.033688px;}
.y159{bottom:9.771254px;}
.y3f{bottom:9.832574px;}
.y47{bottom:9.832578px;}
.y3d{bottom:9.832580px;}
.y41{bottom:9.832586px;}
.y45{bottom:9.832593px;}
.y144{bottom:9.942682px;}
.y8f{bottom:9.978736px;}
.y88{bottom:9.978744px;}
.y83{bottom:9.978756px;}
.y13a{bottom:10.242776px;}
.yf6{bottom:10.516820px;}
.yf9{bottom:10.516821px;}
.y139{bottom:11.185464px;}
.yc0{bottom:12.845331px;}
.yb7{bottom:12.845333px;}
.yb4{bottom:12.845340px;}
.ybd{bottom:12.845349px;}
.yd9{bottom:12.852818px;}
.yda{bottom:12.852839px;}
.yd8{bottom:12.852844px;}
.y162{bottom:13.578842px;}
.y164{bottom:13.578845px;}
.yce{bottom:13.821451px;}
.yd0{bottom:13.821460px;}
.ycf{bottom:13.821469px;}
.y11e{bottom:14.143157px;}
.y121{bottom:14.143159px;}
.y120{bottom:14.143162px;}
.y148{bottom:15.771187px;}
.y99{bottom:15.777084px;}
.y91{bottom:15.777092px;}
.y9f{bottom:15.777097px;}
.y96{bottom:15.777099px;}
.y94{bottom:15.777107px;}
.y9c{bottom:15.777115px;}
.y141{bottom:16.714053px;}
.y3a{bottom:18.186642px;}
.y37{bottom:18.186643px;}
.y6f{bottom:22.496362px;}
.y10d{bottom:22.590967px;}
.yb0{bottom:22.835404px;}
.y158{bottom:23.142697px;}
.y4a{bottom:23.176155px;}
.y157{bottom:23.871121px;}
.yd6{bottom:23.919541px;}
.y11c{bottom:24.656573px;}
.y8d{bottom:25.800737px;}
.y8a{bottom:25.800740px;}
.yc4{bottom:26.047154px;}
.ya3{bottom:26.070940px;}
.y133{bottom:26.228732px;}
.y5e{bottom:28.788578px;}
.y5b{bottom:30.194758px;}
.y6e{bottom:33.323402px;}
.y67{bottom:34.693152px;}
.y6d{bottom:34.693154px;}
.y42{bottom:35.855220px;}
.y38{bottom:35.855249px;}
.y36{bottom:35.855260px;}
.y49{bottom:37.150145px;}
.ye9{bottom:39.838487px;}
.yfc{bottom:39.838490px;}
.ye5{bottom:39.838495px;}
.yef{bottom:39.838497px;}
.y3e{bottom:40.660853px;}
.y46{bottom:40.660864px;}
.y3c{bottom:40.660866px;}
.y40{bottom:40.660872px;}
.y44{bottom:40.660879px;}
.y5d{bottom:41.196666px;}
.y48{bottom:41.474588px;}
.y138{bottom:42.385602px;}
.y156{bottom:42.385621px;}
.y10c{bottom:42.824117px;}
.y58{bottom:43.902727px;}
.y5a{bottom:43.902751px;}
.y155{bottom:44.270646px;}
.y103{bottom:45.263871px;}
.y107{bottom:45.263877px;}
.yf5{bottom:45.263882px;}
.y104{bottom:45.263883px;}
.yb9{bottom:46.475096px;}
.ya9{bottom:46.475128px;}
.yaf{bottom:46.475140px;}
.y8e{bottom:46.836693px;}
.y8c{bottom:46.836751px;}
.y89{bottom:46.836764px;}
.y135{bottom:47.742228px;}
.y140{bottom:47.912769px;}
.y6c{bottom:48.437545px;}
.y66{bottom:48.437563px;}
.y63{bottom:48.437567px;}
.y60{bottom:48.437568px;}
.y71{bottom:48.437571px;}
.y134{bottom:48.685626px;}
.y35{bottom:48.978764px;}
.yc3{bottom:52.229251px;}
.ybf{bottom:52.229267px;}
.yb6{bottom:52.229269px;}
.yb3{bottom:52.229277px;}
.ybc{bottom:52.229286px;}
.y95{bottom:52.635615px;}
.ya2{bottom:52.635647px;}
.y9e{bottom:52.635664px;}
.y93{bottom:52.635665px;}
.y98{bottom:52.635673px;}
.y9b{bottom:52.635681px;}
.y59{bottom:55.010980px;}
.y57{bottom:56.310827px;}
.y65{bottom:59.545793px;}
.y62{bottom:59.545804px;}
.y6b{bottom:59.545805px;}
.ye2{bottom:61.206954px;}
.yee{bottom:61.206956px;}
.yad{bottom:62.175149px;}
.y87{bottom:62.658934px;}
.y154{bottom:62.827786px;}
.y153{bottom:64.712810px;}
.y10b{bottom:66.634081px;}
.yf2{bottom:66.634084px;}
.yf8{bottom:66.634085px;}
.y100{bottom:66.634086px;}
.yc2{bottom:68.642976px;}
.y6{bottom:68.737500px;}
.ya1{bottom:69.041059px;}
.y6a{bottom:73.007459px;}
.y137{bottom:74.869918px;}
.y132{bottom:74.869936px;}
.y131{bottom:75.170186px;}
.yed{bottom:76.100172px;}
.yfb{bottom:77.193602px;}
.yfd{bottom:77.193608px;}
.ye0{bottom:77.193613px;}
.yec{bottom:77.193614px;}
.y56{bottom:79.299674px;}
.y152{bottom:80.398877px;}
.y147{bottom:80.398879px;}
.y10a{bottom:80.559412px;}
.y13f{bottom:80.656490px;}
.y102{bottom:82.620732px;}
.yf7{bottom:82.620737px;}
.y106{bottom:82.620739px;}
.yf1{bottom:82.620742px;}
.yf4{bottom:82.620743px;}
.yff{bottom:82.620745px;}
.y151{bottom:83.269951px;}
.ya8{bottom:83.272388px;}
.yac{bottom:83.272397px;}
.yb8{bottom:83.272399px;}
.y8b{bottom:83.739573px;}
.y84{bottom:83.739581px;}
.y86{bottom:83.739593px;}
.y61{bottom:83.834497px;}
.y69{bottom:83.834499px;}
.y150{bottom:85.154975px;}
.yb5{bottom:88.980296px;}
.ybe{bottom:88.980302px;}
.yb2{bottom:88.980304px;}
.ybb{bottom:88.980320px;}
.y97{bottom:89.493759px;}
.y9d{bottom:89.493772px;}
.y90{bottom:89.493774px;}
.y92{bottom:89.493781px;}
.y9a{bottom:89.493790px;}
.yc1{bottom:89.962151px;}
.y130{bottom:90.213099px;}
.ya0{bottom:90.483261px;}
.y55{bottom:91.707774px;}
.ye1{bottom:92.085080px;}
.ye4{bottom:92.085087px;}
.yab{bottom:98.928032px;}
.y85{bottom:99.517042px;}
.y109{bottom:100.750708px;}
.y14f{bottom:103.712115px;}
.y14e{bottom:105.598917px;}
.y12f{bottom:107.356028px;}
.y143{bottom:107.526570px;}
.y169{bottom:108.037500px;}
.y13e{bottom:112.627353px;}
.y146{bottom:112.883195px;}
.y13d{bottom:113.012873px;}
.yfa{bottom:114.548719px;}
.yeb{bottom:114.548725px;}
.ydf{bottom:114.548730px;}
.ye8{bottom:114.548732px;}
.y101{bottom:119.975850px;}
.y105{bottom:119.975856px;}
.yf0{bottom:119.975860px;}
.yf3{bottom:119.975861px;}
.yfe{bottom:119.975862px;}
.y108{bottom:120.985602px;}
.y30{bottom:121.237500px;}
.y12e{bottom:122.183962px;}
.y14d{bottom:124.154280px;}
.y14c{bottom:126.041081px;}
.ye7{bottom:129.440198px;}
.ye3{bottom:129.440205px;}
.y168{bottom:131.737500px;}
.y12d{bottom:139.840345px;}
.y142{bottom:142.498199px;}
.y14b{bottom:143.697459px;}
.y13c{bottom:144.640856px;}
.y2f{bottom:145.237500px;}
.y145{bottom:145.326648px;}
.y14a{bottom:145.582483px;}
.y149{bottom:146.355313px;}
.y13b{bottom:148.025366px;}
.y115{bottom:152.130000px;}
.y81{bottom:152.430000px;}
.y33{bottom:153.330000px;}
.y12c{bottom:154.154825px;}
.y167{bottom:155.745000px;}
.y2e{bottom:168.975000px;}
.y114{bottom:175.875000px;}
.y80{bottom:176.475000px;}
.y32{bottom:177.075000px;}
.y166{bottom:179.475000px;}
.y2d{bottom:192.675000px;}
.y31{bottom:196.875000px;}
.y161{bottom:199.349980px;}
.y113{bottom:199.875000px;}
.y7f{bottom:200.175000px;}
.y160{bottom:209.775000px;}
.y2c{bottom:216.675000px;}
.y112{bottom:223.575000px;}
.y7e{bottom:223.875000px;}
.y2b{bottom:240.375000px;}
.y15f{bottom:242.475000px;}
.y111{bottom:247.275000px;}
.y7d{bottom:247.875000px;}
.y2a{bottom:264.375000px;}
.y15e{bottom:266.175000px;}
.y110{bottom:271.275000px;}
.y7c{bottom:271.575000px;}
.y29{bottom:288.075000px;}
.y15d{bottom:289.875000px;}
.y7b{bottom:291.375000px;}
.y10f{bottom:294.975000px;}
.y12b{bottom:310.049980px;}
.y28{bottom:311.775000px;}
.yde{bottom:314.849980px;}
.y27{bottom:335.775000px;}
.y26{bottom:359.505000px;}
.y10e{bottom:371.805000px;}
.y15c{bottom:377.505000px;}
.y25{bottom:383.205000px;}
.y24{bottom:407.205000px;}
.y23{bottom:430.920000px;}
.y22{bottom:454.620000px;}
.ydd{bottom:466.005000px;}
.y21{bottom:478.620000px;}
.y12a{bottom:487.905000px;}
.ydc{bottom:489.705000px;}
.y20{bottom:502.305000px;}
.yd5{bottom:509.549959px;}
.y129{bottom:511.650000px;}
.ydb{bottom:518.550000px;}
.y1f{bottom:526.050000px;}
.y128{bottom:535.650000px;}
.y1e{bottom:550.050000px;}
.yd4{bottom:556.350000px;}
.y127{bottom:559.350000px;}
.y7a{bottom:569.550000px;}
.y1d{bottom:573.750000px;}
.yd3{bottom:580.050000px;}
.y126{bottom:583.050000px;}
.y79{bottom:593.250000px;}
.y1c{bottom:597.450000px;}
.yd2{bottom:603.750000px;}
.y125{bottom:607.050000px;}
.y78{bottom:616.950000px;}
.y1b{bottom:621.450000px;}
.ycc{bottom:623.849959px;}
.y124{bottom:630.750000px;}
.yd1{bottom:634.350000px;}
.y77{bottom:640.950000px;}
.y1a{bottom:645.150000px;}
.y123{bottom:654.450000px;}
.y76{bottom:664.650000px;}
.y19{bottom:668.850000px;}
.ycb{bottom:669.450000px;}
.y11b{bottom:674.549959px;}
.y122{bottom:685.095000px;}
.y75{bottom:688.380000px;}
.y18{bottom:692.880000px;}
.yca{bottom:693.195000px;}
.y74{bottom:712.380000px;}
.y17{bottom:716.580000px;}
.yc9{bottom:717.195000px;}
.y11a{bottom:721.080000px;}
.y54{bottom:732.149919px;}
.y16{bottom:740.280000px;}
.yc8{bottom:740.880000px;}
.y119{bottom:744.780000px;}
.y15{bottom:764.280000px;}
.yc7{bottom:764.595000px;}
.y118{bottom:768.780000px;}
.y73{bottom:781.695000px;}
.ya7{bottom:784.649919px;}
.y14{bottom:787.995000px;}
.y117{bottom:792.480000px;}
.y13{bottom:811.695000px;}
.y116{bottom:812.295000px;}
.yc6{bottom:826.695000px;}
.y12{bottom:835.695000px;}
.y53{bottom:841.695000px;}
.y11{bottom:859.425000px;}
.y52{bottom:865.725000px;}
.y10{bottom:883.125000px;}
.y51{bottom:889.425000px;}
.ya6{bottom:906.825000px;}
.yf{bottom:907.125000px;}
.y50{bottom:913.125000px;}
.y82{bottom:926.549919px;}
.ye{bottom:930.825000px;}
.y4f{bottom:937.125000px;}
.yd{bottom:954.525000px;}
.y4e{bottom:960.825000px;}
.ya5{bottom:968.625000px;}
.yc{bottom:978.525000px;}
.y34{bottom:980.549919px;}
.yb{bottom:1002.225000px;}
.y4d{bottom:1006.125000px;}
.ya{bottom:1025.955000px;}
.y9{bottom:1049.955000px;}
.y8{bottom:1073.655000px;}
.y7{bottom:1097.655000px;}
.y5{bottom:1130.355000px;}
.y4{bottom:1162.155000px;}
.y3{bottom:1191.600000px;}
.y2{bottom:1220.700000px;}
.y1{bottom:1238.100000px;}
.h44{height:33.272595px;}
.h3f{height:35.237029px;}
.h47{height:35.999140px;}
.h24{height:38.699138px;}
.h29{height:39.599828px;}
.h35{height:39.599846px;}
.h12{height:39.983465px;}
.hd{height:42.462420px;}
.hb{height:42.483556px;}
.h45{height:45.848723px;}
.h31{height:47.992726px;}
.h2f{height:48.016615px;}
.h42{height:48.344122px;}
.h40{height:48.555658px;}
.h3d{height:48.579827px;}
.h20{height:50.533388px;}
.h1e{height:50.558542px;}
.h18{height:50.951938px;}
.h4b{height:51.094743px;}
.h49{height:51.111784px;}
.h2{height:51.884766px;}
.h8{height:52.066406px;}
.h25{height:52.224222px;}
.h39{height:53.259217px;}
.h37{height:53.413135px;}
.h36{height:53.439722px;}
.h2a{height:56.252022px;}
.h3{height:60.468750px;}
.ha{height:62.100743px;}
.h6{height:62.261719px;}
.h5{height:64.775391px;}
.h16{height:65.285414px;}
.h15{height:68.825554px;}
.h14{height:69.139903px;}
.h13{height:69.174318px;}
.h10{height:69.205188px;}
.h9{height:70.664062px;}
.h7{height:72.562500px;}
.hf{height:73.055216px;}
.he{height:73.291103px;}
.hc{height:73.327585px;}
.h34{height:78.286572px;}
.h46{height:79.281276px;}
.h23{height:82.510497px;}
.h33{height:82.654663px;}
.h32{height:82.908658px;}
.h30{height:82.949926px;}
.h1c{height:83.152512px;}
.h43{height:83.596303px;}
.h41{height:83.962089px;}
.h3e{height:84.003882px;}
.h4{height:84.656250px;}
.h28{height:85.228853px;}
.h22{height:86.918837px;}
.h3b{height:87.212523px;}
.h21{height:87.381966px;}
.h1f{height:87.425461px;}
.h1b{height:87.584027px;}
.h1a{height:88.061885px;}
.h19{height:88.105719px;}
.h4a{height:88.206005px;}
.h48{height:88.249911px;}
.h27{height:89.837316px;}
.h26{height:90.260815px;}
.h2d{height:91.619206px;}
.h3a{height:92.095449px;}
.h38{height:92.361602px;}
.h2c{height:96.486635px;}
.h2b{height:97.028458px;}
.h11{height:102.604800px;}
.h1d{height:115.206832px;}
.h17{height:116.103257px;}
.h2e{height:143.996849px;}
.h3c{height:170.997503px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:99.901235px;}
.wc{width:157.496656px;}
.w8{width:158.403418px;}
.w6{width:278.106724px;}
.w5{width:279.910367px;}
.w3{width:289.798808px;}
.wa{width:378.894434px;}
.w4{width:386.101641px;}
.w9{width:458.104906px;}
.wb{width:464.401497px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:2.820099px;}
.x43{left:8.498301px;}
.x26{left:12.559043px;}
.x42{left:13.776000px;}
.x51{left:15.064812px;}
.x19{left:16.883559px;}
.x18{left:21.320948px;}
.x1a{left:22.485502px;}
.x59{left:23.714158px;}
.x1d{left:26.810950px;}
.x69{left:31.628395px;}
.x4b{left:33.008534px;}
.x53{left:34.173969px;}
.x32{left:35.995296px;}
.x22{left:37.489295px;}
.x23{left:38.655403px;}
.x34{left:41.747422px;}
.x83{left:44.789611px;}
.x5e{left:49.542528px;}
.x45{left:51.704363px;}
.x1b{left:53.206749px;}
.x1c{left:54.372857px;}
.x56{left:56.763674px;}
.x1e{left:58.922184px;}
.x1f{left:60.088293px;}
.x70{left:62.099610px;}
.x27{left:64.186730px;}
.x28{left:65.352839px;}
.x55{left:66.969411px;}
.x86{left:75.913093px;}
.x88{left:80.517329px;}
.x21{left:81.671998px;}
.x3{left:84.937487px;}
.x6{left:90.637487px;}
.x85{left:91.992635px;}
.x20{left:103.894715px;}
.x3c{left:107.137487px;}
.x81{left:112.941862px;}
.x80{left:114.105802px;}
.x7c{left:115.874012px;}
.x74{left:116.914128px;}
.x7e{left:120.271339px;}
.x4e{left:121.926998px;}
.x2e{left:127.325990px;}
.x2d{left:129.301733px;}
.x73{left:133.586020px;}
.x4d{left:139.638926px;}
.x7{left:141.337487px;}
.xf{left:146.437487px;}
.x54{left:149.582272px;}
.x25{left:150.821638px;}
.x62{left:153.600089px;}
.x63{left:154.929162px;}
.x5f{left:156.001281px;}
.x24{left:157.221176px;}
.x41{left:158.469764px;}
.x40{left:160.973882px;}
.x16{left:164.144987px;}
.x50{left:166.246625px;}
.x60{left:169.157332px;}
.x6f{left:171.129676px;}
.x46{left:172.603074px;}
.x65{left:174.429322px;}
.x66{left:175.758395px;}
.x49{left:180.161659px;}
.xe{left:181.574987px;}
.x67{left:188.622050px;}
.x78{left:190.099769px;}
.x5c{left:192.343455px;}
.x5d{left:193.672528px;}
.x3f{left:198.850092px;}
.x64{left:200.229288px;}
.x11{left:205.274987px;}
.x37{left:208.780887px;}
.x14{left:210.674987px;}
.x4c{left:211.962508px;}
.x33{left:213.567030px;}
.xb{left:217.574987px;}
.x77{left:220.353619px;}
.x2c{left:221.796861px;}
.x44{left:224.483110px;}
.x2f{left:226.276574px;}
.x48{left:230.623210px;}
.x4a{left:232.713053px;}
.x9{left:238.574987px;}
.x36{left:240.007551px;}
.x7b{left:243.519346px;}
.x12{left:247.274987px;}
.x52{left:249.221110px;}
.x47{left:250.837411px;}
.xa{left:253.574987px;}
.x39{left:256.408845px;}
.x35{left:264.915922px;}
.x10{left:273.674987px;}
.x31{left:274.838413px;}
.x71{left:281.019210px;}
.x72{left:282.348283px;}
.x7a{left:286.349980px;}
.x5b{left:292.650000px;}
.x38{left:303.920067px;}
.x6c{left:305.438712px;}
.x3e{left:306.449980px;}
.xd{left:308.204987px;}
.x2b{left:310.650000px;}
.x17{left:312.449980px;}
.x61{left:317.790231px;}
.x30{left:321.517897px;}
.x68{left:325.711507px;}
.x13{left:332.819987px;}
.xc{left:339.119987px;}
.x4{left:350.819987px;}
.x58{left:367.049959px;}
.x3d{left:396.719987px;}
.x8a{left:404.504987px;}
.x84{left:414.563968px;}
.x7f{left:425.739977px;}
.x6d{left:427.323573px;}
.x5{left:428.549987px;}
.x6e{left:429.680463px;}
.x82{left:435.436550px;}
.x7d{left:436.719923px;}
.x6a{left:438.080205px;}
.x6b{left:440.791514px;}
.x8{left:446.249987px;}
.x2{left:457.049987px;}
.x87{left:468.149959px;}
.x57{left:496.349987px;}
.x1{left:510.449987px;}
.x5a{left:525.449987px;}
.x4f{left:586.379987px;}
.x15{left:599.279987px;}
.x2a{left:602.279987px;}
.x89{left:629.594987px;}
.x3b{left:633.194987px;}
.x76{left:678.524987px;}
.x79{left:692.324987px;}
.x3a{left:696.824987px;}
.x75{left:750.824987px;}
@media print{
.va{vertical-align:-80.222477pt;}
.v9{vertical-align:-75.982921pt;}
.vb{vertical-align:-64.462090pt;}
.vf{vertical-align:-63.233040pt;}
.ve{vertical-align:-60.036645pt;}
.v6{vertical-align:-53.739130pt;}
.v2{vertical-align:-46.788850pt;}
.v4{vertical-align:-42.242106pt;}
.v8{vertical-align:-23.029261pt;}
.v7{vertical-align:-18.060949pt;}
.vc{vertical-align:-12.860175pt;}
.v5{vertical-align:-9.621439pt;}
.v1{vertical-align:-5.333333pt;}
.v3{vertical-align:-2.893178pt;}
.vd{vertical-align:-0.915963pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:5.333333pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls42{letter-spacing:-0.076436pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000001pt;}
.ls2{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.053333pt;}
.ls5{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.384000pt;}
.ls3a{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.533333pt;}
.lse{letter-spacing:1.977822pt;}
.ls12{letter-spacing:2.067288pt;}
.ls24{letter-spacing:3.060953pt;}
.ls4a{letter-spacing:4.266667pt;}
.ls49{letter-spacing:9.546667pt;}
.ls7{letter-spacing:16.000000pt;}
.ls31{letter-spacing:16.705562pt;}
.ls20{letter-spacing:17.090986pt;}
.ls19{letter-spacing:19.491731pt;}
.ls18{letter-spacing:19.643396pt;}
.ls43{letter-spacing:25.078438pt;}
.ls30{letter-spacing:38.436375pt;}
.ls38{letter-spacing:50.670962pt;}
.ls2e{letter-spacing:53.880654pt;}
.ls28{letter-spacing:54.293002pt;}
.ls13{letter-spacing:56.267542pt;}
.ls25{letter-spacing:66.320654pt;}
.ls36{letter-spacing:67.277191pt;}
.ls2c{letter-spacing:71.330997pt;}
.ls48{letter-spacing:80.725337pt;}
.ls2d{letter-spacing:96.641996pt;}
.ls26{letter-spacing:98.056512pt;}
.ls27{letter-spacing:100.044144pt;}
.ls45{letter-spacing:103.093228pt;}
.ls32{letter-spacing:106.939839pt;}
.ls17{letter-spacing:139.839868pt;}
.ls14{letter-spacing:146.419958pt;}
.ls10{letter-spacing:152.689178pt;}
.ls33{letter-spacing:153.387718pt;}
.ls11{letter-spacing:154.295342pt;}
.ls44{letter-spacing:159.693432pt;}
.ls40{letter-spacing:159.946111pt;}
.ls41{letter-spacing:164.873361pt;}
.ls47{letter-spacing:184.519191pt;}
.ls3e{letter-spacing:226.535258pt;}
.ls3f{letter-spacing:229.731767pt;}
.ls37{letter-spacing:231.408734pt;}
.ls1d{letter-spacing:233.745647pt;}
.ls2b{letter-spacing:245.352333pt;}
.ls16{letter-spacing:246.468415pt;}
.ls9{letter-spacing:255.473566pt;}
.ls15{letter-spacing:293.565281pt;}
.ls3c{letter-spacing:305.542870pt;}
.ls3b{letter-spacing:309.667863pt;}
.lsc{letter-spacing:317.333137pt;}
.lsa{letter-spacing:358.284627pt;}
.lsb{letter-spacing:362.371037pt;}
.ls22{letter-spacing:368.205871pt;}
.ls21{letter-spacing:397.162966pt;}
.ls1e{letter-spacing:399.581224pt;}
.ls1f{letter-spacing:404.231721pt;}
.ls2f{letter-spacing:415.429097pt;}
.ls29{letter-spacing:423.630634pt;}
.ls1a{letter-spacing:473.758566pt;}
.ls39{letter-spacing:488.240186pt;}
.ls1b{letter-spacing:493.220248pt;}
.ls23{letter-spacing:519.169478pt;}
.ls35{letter-spacing:526.684295pt;}
.ls2a{letter-spacing:529.953149pt;}
.ls34{letter-spacing:531.024759pt;}
.ls1c{letter-spacing:585.475085pt;}
.lsf{letter-spacing:831.121309pt;}
.ls46{letter-spacing:1077.172625pt;}
.ls3d{letter-spacing:1158.401775pt;}
.ws19{word-spacing:-192.035485pt;}
.ws13{word-spacing:-141.634053pt;}
.ws18{word-spacing:-56.330193pt;}
.ws40{word-spacing:-16.448000pt;}
.ws2{word-spacing:-16.384000pt;}
.ws5{word-spacing:-16.021333pt;}
.ws6{word-spacing:-16.000001pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws4{word-spacing:-10.666667pt;}
.ws2a{word-spacing:-0.079181pt;}
.ws1e{word-spacing:-0.046147pt;}
.ws27{word-spacing:-0.045791pt;}
.ws36{word-spacing:-0.043488pt;}
.ws7{word-spacing:-0.038477pt;}
.ws14{word-spacing:-0.036213pt;}
.ws3{word-spacing:0.000000pt;}
.ws11{word-spacing:5.748773pt;}
.ws1a{word-spacing:6.142466pt;}
.ws3e{word-spacing:7.059395pt;}
.ws2e{word-spacing:8.007469pt;}
.ws25{word-spacing:8.068750pt;}
.ws3a{word-spacing:9.366895pt;}
.ws48{word-spacing:15.837202pt;}
.ws4a{word-spacing:20.922493pt;}
.ws49{word-spacing:24.991117pt;}
.ws4c{word-spacing:26.248218pt;}
.ws44{word-spacing:28.774984pt;}
.ws4b{word-spacing:28.987163pt;}
.ws41{word-spacing:31.050090pt;}
.ws46{word-spacing:34.142794pt;}
.ws31{word-spacing:35.252257pt;}
.ws45{word-spacing:36.870698pt;}
.wse{word-spacing:38.130798pt;}
.ws10{word-spacing:40.577937pt;}
.wsf{word-spacing:41.109236pt;}
.ws16{word-spacing:51.748055pt;}
.wsb{word-spacing:52.997044pt;}
.ws9{word-spacing:56.176554pt;}
.ws52{word-spacing:59.329636pt;}
.ws32{word-spacing:61.840431pt;}
.ws34{word-spacing:64.232290pt;}
.wsd{word-spacing:64.756945pt;}
.ws26{word-spacing:65.709447pt;}
.ws51{word-spacing:66.339736pt;}
.ws37{word-spacing:67.163744pt;}
.ws4e{word-spacing:68.197592pt;}
.ws20{word-spacing:68.666516pt;}
.ws2c{word-spacing:71.183444pt;}
.ws15{word-spacing:71.447805pt;}
.ws22{word-spacing:71.737323pt;}
.ws3b{word-spacing:73.774940pt;}
.ws50{word-spacing:86.321584pt;}
.ws4d{word-spacing:86.581079pt;}
.ws1b{word-spacing:90.342379pt;}
.ws1c{word-spacing:90.592982pt;}
.ws3d{word-spacing:90.828821pt;}
.ws2d{word-spacing:96.521266pt;}
.ws24{word-spacing:99.187422pt;}
.ws43{word-spacing:113.069195pt;}
.ws30{word-spacing:115.598981pt;}
.ws12{word-spacing:124.064966pt;}
.ws47{word-spacing:133.599626pt;}
.ws21{word-spacing:156.640667pt;}
.wsa{word-spacing:163.181346pt;}
.ws42{word-spacing:177.709060pt;}
.ws29{word-spacing:186.607706pt;}
.ws17{word-spacing:193.528160pt;}
.wsc{word-spacing:210.593515pt;}
.ws8{word-spacing:216.433641pt;}
.ws2f{word-spacing:222.791690pt;}
.ws1d{word-spacing:228.361976pt;}
.ws39{word-spacing:231.241614pt;}
.ws2b{word-spacing:245.222609pt;}
.ws23{word-spacing:247.130688pt;}
.ws38{word-spacing:257.779434pt;}
.ws3f{word-spacing:273.549235pt;}
.ws3c{word-spacing:445.174939pt;}
.ws28{word-spacing:464.041490pt;}
.ws33{word-spacing:468.891371pt;}
.ws1f{word-spacing:472.589913pt;}
.ws35{word-spacing:503.029724pt;}
.ws4f{word-spacing:806.280968pt;}
._32{margin-left:-1160.287002pt;}
._2a{margin-left:-365.661981pt;}
._33{margin-left:-322.170539pt;}
._46{margin-left:-110.553184pt;}
._10{margin-left:-11.360000pt;}
._f{margin-left:-9.856000pt;}
._5{margin-left:-7.722667pt;}
._6{margin-left:-6.026667pt;}
._4{margin-left:-4.800000pt;}
._3{margin-left:-3.520000pt;}
._2{margin-left:-2.346667pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.226667pt;}
._d{width:2.810667pt;}
._a{width:4.096000pt;}
._9{width:5.152000pt;}
._8{width:6.186667pt;}
._7{width:7.584000pt;}
._3a{width:8.960000pt;}
._15{width:9.850667pt;}
._b{width:11.264000pt;}
._c{width:12.352000pt;}
._11{width:13.418667pt;}
._19{width:14.560000pt;}
._79{width:17.184000pt;}
._3c{width:19.141333pt;}
._3b{width:20.101333pt;}
._16{width:21.050667pt;}
._e{width:22.576000pt;}
._14{width:27.690667pt;}
._5a{width:33.967420pt;}
._6b{width:37.706668pt;}
._57{width:39.419386pt;}
._59{width:41.428017pt;}
._23{width:42.786526pt;}
._54{width:44.273578pt;}
._26{width:49.199757pt;}
._18{width:51.573333pt;}
._17{width:52.928000pt;}
._12{width:57.898667pt;}
._13{width:59.050667pt;}
._1b{width:61.755732pt;}
._4c{width:64.275779pt;}
._3d{width:66.266880pt;}
._44{width:68.182137pt;}
._22{width:69.412673pt;}
._50{width:70.886008pt;}
._27{width:79.628390pt;}
._24{width:82.949007pt;}
._56{width:85.283131pt;}
._55{width:88.463463pt;}
._76{width:89.758462pt;}
._53{width:92.857256pt;}
._77{width:99.589531pt;}
._41{width:101.262138pt;}
._69{width:113.603988pt;}
._29{width:119.409379pt;}
._2f{width:120.697178pt;}
._68{width:122.259367pt;}
._58{width:124.032973pt;}
._38{width:136.515980pt;}
._36{width:138.144899pt;}
._66{width:140.857416pt;}
._6d{width:142.577277pt;}
._6c{width:145.767371pt;}
._74{width:147.294348pt;}
._70{width:148.506315pt;}
._60{width:149.546782pt;}
._73{width:160.603320pt;}
._4f{width:162.820376pt;}
._4e{width:165.081770pt;}
._72{width:167.866198pt;}
._5f{width:170.449981pt;}
._5c{width:183.873443pt;}
._64{width:185.717441pt;}
._62{width:187.081393pt;}
._6f{width:190.153075pt;}
._71{width:192.715178pt;}
._6e{width:197.964822pt;}
._67{width:199.486457pt;}
._5e{width:204.712991pt;}
._5d{width:210.571499pt;}
._2b{width:216.328639pt;}
._34{width:222.449736pt;}
._47{width:224.952351pt;}
._63{width:227.695895pt;}
._65{width:230.467798pt;}
._40{width:231.650109pt;}
._61{width:234.907704pt;}
._51{width:243.186843pt;}
._25{width:267.044000pt;}
._4b{width:274.655843pt;}
._45{width:320.488098pt;}
._78{width:323.125869pt;}
._3e{width:327.965678pt;}
._4d{width:333.338189pt;}
._37{width:343.827305pt;}
._49{width:347.365704pt;}
._42{width:357.569458pt;}
._52{width:359.408668pt;}
._28{width:366.662503pt;}
._1e{width:397.122063pt;}
._4a{width:410.382762pt;}
._48{width:412.135511pt;}
._43{width:418.734487pt;}
._3f{width:420.289742pt;}
._1a{width:431.905354pt;}
._1c{width:444.294978pt;}
._1d{width:457.723483pt;}
._20{width:466.413831pt;}
._2e{width:470.842836pt;}
._6a{width:522.877535pt;}
._21{width:530.700972pt;}
._1f{width:533.812251pt;}
._2d{width:545.923136pt;}
._75{width:577.863467pt;}
._2c{width:617.292053pt;}
._35{width:678.313180pt;}
._5b{width:718.349392pt;}
._39{width:868.840573pt;}
._30{width:902.546063pt;}
._31{width:965.197423pt;}
.fs20{font-size:31.929843pt;}
.fs8{font-size:36.212775pt;}
.fs5{font-size:38.477092pt;}
.fs4{font-size:42.666667pt;}
.fs17{font-size:43.488348pt;}
.fs1e{font-size:43.998446pt;}
.fse{font-size:45.790556pt;}
.fsb{font-size:46.146852pt;}
.fs24{font-size:46.314666pt;}
.fs21{font-size:46.393141pt;}
.fs11{font-size:47.299152pt;}
.fs1a{font-size:48.400022pt;}
.fs25{font-size:49.032757pt;}
.fs14{font-size:50.947105pt;}
.fs1c{font-size:51.109882pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:62.650748pt;}
.fs1{font-size:64.000000pt;}
.fsa{font-size:66.048021pt;}
.fs6{font-size:66.412335pt;}
.fs7{font-size:70.106991pt;}
.fs2{font-size:74.666667pt;}
.fs18{font-size:75.127230pt;}
.fs1f{font-size:76.081792pt;}
.fsf{font-size:79.180694pt;}
.fs19{font-size:79.319041pt;}
.fsc{font-size:79.796799pt;}
.fs23{font-size:79.927393pt;}
.fs22{font-size:80.222681pt;}
.fs12{font-size:81.789347pt;}
.fs10{font-size:83.411130pt;}
.fs1b{font-size:83.692965pt;}
.fsd{font-size:84.049476pt;}
.fs13{font-size:86.211831pt;}
.fs15{font-size:87.921810pt;}
.fs1d{font-size:88.378834pt;}
.fs16{font-size:92.592809pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:3.999369pt;}
.y5f{bottom:3.999378pt;}
.y4c{bottom:4.337251pt;}
.y43{bottom:4.468660pt;}
.y39{bottom:4.468684pt;}
.y3b{bottom:4.468693pt;}
.ye6{bottom:4.487119pt;}
.yea{bottom:4.487122pt;}
.yd7{bottom:5.778589pt;}
.yc5{bottom:6.065965pt;}
.ya4{bottom:6.273003pt;}
.y15b{bottom:6.285562pt;}
.yae{bottom:6.343371pt;}
.yaa{bottom:6.343384pt;}
.yb1{bottom:6.343393pt;}
.yba{bottom:6.343394pt;}
.y4b{bottom:6.801629pt;}
.y163{bottom:6.897237pt;}
.y165{bottom:6.897245pt;}
.y15a{bottom:7.009343pt;}
.ycd{bottom:7.043851pt;}
.y136{bottom:7.085615pt;}
.y11d{bottom:7.207800pt;}
.y11f{bottom:7.207812pt;}
.y68{bottom:8.029935pt;}
.y72{bottom:8.029936pt;}
.y64{bottom:8.029944pt;}
.y70{bottom:8.029945pt;}
.y159{bottom:8.685559pt;}
.y3f{bottom:8.740066pt;}
.y47{bottom:8.740070pt;}
.y3d{bottom:8.740071pt;}
.y41{bottom:8.740076pt;}
.y45{bottom:8.740083pt;}
.y144{bottom:8.837940pt;}
.y8f{bottom:8.869988pt;}
.y88{bottom:8.869995pt;}
.y83{bottom:8.870005pt;}
.y13a{bottom:9.104690pt;}
.yf6{bottom:9.348285pt;}
.yf9{bottom:9.348286pt;}
.y139{bottom:9.942635pt;}
.yc0{bottom:11.418072pt;}
.yb7{bottom:11.418073pt;}
.yb4{bottom:11.418080pt;}
.ybd{bottom:11.418088pt;}
.yd9{bottom:11.424727pt;}
.yda{bottom:11.424746pt;}
.yd8{bottom:11.424750pt;}
.y162{bottom:12.070082pt;}
.y164{bottom:12.070085pt;}
.yce{bottom:12.285734pt;}
.yd0{bottom:12.285743pt;}
.ycf{bottom:12.285750pt;}
.y11e{bottom:12.571695pt;}
.y121{bottom:12.571697pt;}
.y120{bottom:12.571699pt;}
.y148{bottom:14.018833pt;}
.y99{bottom:14.024075pt;}
.y91{bottom:14.024082pt;}
.y9f{bottom:14.024087pt;}
.y96{bottom:14.024088pt;}
.y94{bottom:14.024095pt;}
.y9c{bottom:14.024102pt;}
.y141{bottom:14.856936pt;}
.y3a{bottom:16.165904pt;}
.y37{bottom:16.165905pt;}
.y6f{bottom:19.996766pt;}
.y10d{bottom:20.080859pt;}
.yb0{bottom:20.298137pt;}
.y158{bottom:20.571286pt;}
.y4a{bottom:20.601027pt;}
.y157{bottom:21.218774pt;}
.yd6{bottom:21.261814pt;}
.y11c{bottom:21.916954pt;}
.y8d{bottom:22.933988pt;}
.y8a{bottom:22.933992pt;}
.yc4{bottom:23.153026pt;}
.ya3{bottom:23.174169pt;}
.y133{bottom:23.314429pt;}
.y5e{bottom:25.589847pt;}
.y5b{bottom:26.839785pt;}
.y6e{bottom:29.620802pt;}
.y67{bottom:30.838357pt;}
.y6d{bottom:30.838359pt;}
.y42{bottom:31.871307pt;}
.y38{bottom:31.871333pt;}
.y36{bottom:31.871342pt;}
.y49{bottom:33.022351pt;}
.ye9{bottom:35.411989pt;}
.yfc{bottom:35.411991pt;}
.ye5{bottom:35.411996pt;}
.yef{bottom:35.411997pt;}
.y3e{bottom:36.142981pt;}
.y46{bottom:36.142991pt;}
.y3c{bottom:36.142992pt;}
.y40{bottom:36.142997pt;}
.y44{bottom:36.143004pt;}
.y5d{bottom:36.619259pt;}
.y48{bottom:36.866301pt;}
.y138{bottom:37.676091pt;}
.y156{bottom:37.676108pt;}
.y10c{bottom:38.065881pt;}
.y58{bottom:39.024646pt;}
.y5a{bottom:39.024668pt;}
.y155{bottom:39.351685pt;}
.y103{bottom:40.234552pt;}
.y107{bottom:40.234557pt;}
.yf5{bottom:40.234562pt;}
.y104{bottom:40.234563pt;}
.yb9{bottom:41.311197pt;}
.ya9{bottom:41.311225pt;}
.yaf{bottom:41.311235pt;}
.y8e{bottom:41.632616pt;}
.y8c{bottom:41.632668pt;}
.y89{bottom:41.632679pt;}
.y135{bottom:42.437536pt;}
.y140{bottom:42.589128pt;}
.y6c{bottom:43.055595pt;}
.y66{bottom:43.055611pt;}
.y63{bottom:43.055615pt;}
.y60{bottom:43.055616pt;}
.y71{bottom:43.055619pt;}
.y134{bottom:43.276112pt;}
.y35{bottom:43.536679pt;}
.yc3{bottom:46.426001pt;}
.ybf{bottom:46.426015pt;}
.yb6{bottom:46.426017pt;}
.yb3{bottom:46.426024pt;}
.ybc{bottom:46.426032pt;}
.y95{bottom:46.787213pt;}
.ya2{bottom:46.787242pt;}
.y9e{bottom:46.787257pt;}
.y93{bottom:46.787258pt;}
.y98{bottom:46.787265pt;}
.y9b{bottom:46.787272pt;}
.y59{bottom:48.898649pt;}
.y57{bottom:50.054068pt;}
.y65{bottom:52.929594pt;}
.y62{bottom:52.929603pt;}
.y6b{bottom:52.929605pt;}
.ye2{bottom:54.406181pt;}
.yee{bottom:54.406183pt;}
.yad{bottom:55.266799pt;}
.y87{bottom:55.696830pt;}
.y154{bottom:55.846921pt;}
.y153{bottom:57.522498pt;}
.y10b{bottom:59.230294pt;}
.yf2{bottom:59.230297pt;}
.yf8{bottom:59.230298pt;}
.y100{bottom:59.230299pt;}
.yc2{bottom:61.015979pt;}
.y6{bottom:61.100000pt;}
.ya1{bottom:61.369831pt;}
.y6a{bottom:64.895519pt;}
.y137{bottom:66.551038pt;}
.y132{bottom:66.551054pt;}
.y131{bottom:66.817943pt;}
.yed{bottom:67.644598pt;}
.yfb{bottom:68.616535pt;}
.yfd{bottom:68.616540pt;}
.ye0{bottom:68.616544pt;}
.yec{bottom:68.616546pt;}
.y56{bottom:70.488599pt;}
.y152{bottom:71.465668pt;}
.y147{bottom:71.465670pt;}
.y10a{bottom:71.608367pt;}
.y13f{bottom:71.694658pt;}
.y102{bottom:73.440651pt;}
.yf7{bottom:73.440655pt;}
.y106{bottom:73.440657pt;}
.yf1{bottom:73.440660pt;}
.yf4{bottom:73.440661pt;}
.yff{bottom:73.440662pt;}
.y151{bottom:74.017734pt;}
.ya8{bottom:74.019900pt;}
.yac{bottom:74.019909pt;}
.yb8{bottom:74.019910pt;}
.y8b{bottom:74.435176pt;}
.y84{bottom:74.435183pt;}
.y86{bottom:74.435193pt;}
.y61{bottom:74.519553pt;}
.y69{bottom:74.519555pt;}
.y150{bottom:75.693311pt;}
.yb5{bottom:79.093597pt;}
.ybe{bottom:79.093602pt;}
.yb2{bottom:79.093603pt;}
.ybb{bottom:79.093618pt;}
.y97{bottom:79.550008pt;}
.y9d{bottom:79.550019pt;}
.y90{bottom:79.550021pt;}
.y92{bottom:79.550028pt;}
.y9a{bottom:79.550035pt;}
.yc1{bottom:79.966357pt;}
.y130{bottom:80.189421pt;}
.ya0{bottom:80.429565pt;}
.y55{bottom:81.518021pt;}
.ye1{bottom:81.853405pt;}
.ye4{bottom:81.853410pt;}
.yab{bottom:87.936029pt;}
.y85{bottom:88.459593pt;}
.y109{bottom:89.556185pt;}
.y14f{bottom:92.188547pt;}
.y14e{bottom:93.865704pt;}
.y12f{bottom:95.427581pt;}
.y143{bottom:95.579173pt;}
.y169{bottom:96.033333pt;}
.y13e{bottom:100.113203pt;}
.y146{bottom:100.340618pt;}
.y13d{bottom:100.455887pt;}
.yfa{bottom:101.821084pt;}
.yeb{bottom:101.821089pt;}
.ydf{bottom:101.821094pt;}
.ye8{bottom:101.821095pt;}
.y101{bottom:106.645200pt;}
.y105{bottom:106.645206pt;}
.yf0{bottom:106.645209pt;}
.yf3{bottom:106.645210pt;}
.yfe{bottom:106.645211pt;}
.y108{bottom:107.542757pt;}
.y30{bottom:107.766667pt;}
.y12e{bottom:108.607966pt;}
.y14d{bottom:110.359360pt;}
.y14c{bottom:112.036517pt;}
.ye7{bottom:115.057953pt;}
.ye3{bottom:115.057960pt;}
.y168{bottom:117.100000pt;}
.y12d{bottom:124.302529pt;}
.y142{bottom:126.665066pt;}
.y14b{bottom:127.731074pt;}
.y13c{bottom:128.569650pt;}
.y2f{bottom:129.100000pt;}
.y145{bottom:129.179243pt;}
.y14a{bottom:129.406652pt;}
.y149{bottom:130.093612pt;}
.y13b{bottom:131.578103pt;}
.y115{bottom:135.226667pt;}
.y81{bottom:135.493333pt;}
.y33{bottom:136.293333pt;}
.y12c{bottom:137.026512pt;}
.y167{bottom:138.440000pt;}
.y2e{bottom:150.200000pt;}
.y114{bottom:156.333333pt;}
.y80{bottom:156.866667pt;}
.y32{bottom:157.400000pt;}
.y166{bottom:159.533333pt;}
.y2d{bottom:171.266667pt;}
.y31{bottom:175.000000pt;}
.y161{bottom:177.199982pt;}
.y113{bottom:177.666667pt;}
.y7f{bottom:177.933333pt;}
.y160{bottom:186.466667pt;}
.y2c{bottom:192.600000pt;}
.y112{bottom:198.733333pt;}
.y7e{bottom:199.000000pt;}
.y2b{bottom:213.666667pt;}
.y15f{bottom:215.533333pt;}
.y111{bottom:219.800000pt;}
.y7d{bottom:220.333333pt;}
.y2a{bottom:235.000000pt;}
.y15e{bottom:236.600000pt;}
.y110{bottom:241.133333pt;}
.y7c{bottom:241.400000pt;}
.y29{bottom:256.066667pt;}
.y15d{bottom:257.666667pt;}
.y7b{bottom:259.000000pt;}
.y10f{bottom:262.200000pt;}
.y12b{bottom:275.599982pt;}
.y28{bottom:277.133333pt;}
.yde{bottom:279.866649pt;}
.y27{bottom:298.466667pt;}
.y26{bottom:319.560000pt;}
.y10e{bottom:330.493333pt;}
.y15c{bottom:335.560000pt;}
.y25{bottom:340.626667pt;}
.y24{bottom:361.960000pt;}
.y23{bottom:383.040000pt;}
.y22{bottom:404.106667pt;}
.ydd{bottom:414.226667pt;}
.y21{bottom:425.440000pt;}
.y12a{bottom:433.693333pt;}
.ydc{bottom:435.293333pt;}
.y20{bottom:446.493333pt;}
.yd5{bottom:452.933297pt;}
.y129{bottom:454.800000pt;}
.ydb{bottom:460.933333pt;}
.y1f{bottom:467.600000pt;}
.y128{bottom:476.133333pt;}
.y1e{bottom:488.933333pt;}
.yd4{bottom:494.533333pt;}
.y127{bottom:497.200000pt;}
.y7a{bottom:506.266667pt;}
.y1d{bottom:510.000000pt;}
.yd3{bottom:515.600000pt;}
.y126{bottom:518.266667pt;}
.y79{bottom:527.333333pt;}
.y1c{bottom:531.066667pt;}
.yd2{bottom:536.666667pt;}
.y125{bottom:539.600000pt;}
.y78{bottom:548.400000pt;}
.y1b{bottom:552.400000pt;}
.ycc{bottom:554.533297pt;}
.y124{bottom:560.666667pt;}
.yd1{bottom:563.866667pt;}
.y77{bottom:569.733333pt;}
.y1a{bottom:573.466667pt;}
.y123{bottom:581.733333pt;}
.y76{bottom:590.800000pt;}
.y19{bottom:594.533333pt;}
.ycb{bottom:595.066667pt;}
.y11b{bottom:599.599964pt;}
.y122{bottom:608.973333pt;}
.y75{bottom:611.893333pt;}
.y18{bottom:615.893333pt;}
.yca{bottom:616.173333pt;}
.y74{bottom:633.226667pt;}
.y17{bottom:636.960000pt;}
.yc9{bottom:637.506667pt;}
.y11a{bottom:640.960000pt;}
.y54{bottom:650.799928pt;}
.y16{bottom:658.026667pt;}
.yc8{bottom:658.560000pt;}
.y119{bottom:662.026667pt;}
.y15{bottom:679.360000pt;}
.yc7{bottom:679.640000pt;}
.y118{bottom:683.360000pt;}
.y73{bottom:694.840000pt;}
.ya7{bottom:697.466594pt;}
.y14{bottom:700.440000pt;}
.y117{bottom:704.426667pt;}
.y13{bottom:721.506667pt;}
.y116{bottom:722.040000pt;}
.yc6{bottom:734.840000pt;}
.y12{bottom:742.840000pt;}
.y53{bottom:748.173333pt;}
.y11{bottom:763.933333pt;}
.y52{bottom:769.533333pt;}
.y10{bottom:785.000000pt;}
.y51{bottom:790.600000pt;}
.ya6{bottom:806.066667pt;}
.yf{bottom:806.333333pt;}
.y50{bottom:811.666667pt;}
.y82{bottom:823.599928pt;}
.ye{bottom:827.400000pt;}
.y4f{bottom:833.000000pt;}
.yd{bottom:848.466667pt;}
.y4e{bottom:854.066667pt;}
.ya5{bottom:861.000000pt;}
.yc{bottom:869.800000pt;}
.y34{bottom:871.599928pt;}
.yb{bottom:890.866667pt;}
.y4d{bottom:894.333333pt;}
.ya{bottom:911.960000pt;}
.y9{bottom:933.293333pt;}
.y8{bottom:954.360000pt;}
.y7{bottom:975.693333pt;}
.y5{bottom:1004.760000pt;}
.y4{bottom:1033.026667pt;}
.y3{bottom:1059.200000pt;}
.y2{bottom:1085.066667pt;}
.y1{bottom:1100.533333pt;}
.h44{height:29.575640pt;}
.h3f{height:31.321804pt;}
.h47{height:31.999236pt;}
.h24{height:34.399234pt;}
.h29{height:35.199848pt;}
.h35{height:35.199863pt;}
.h12{height:35.540858pt;}
.hd{height:37.744374pt;}
.hb{height:37.763161pt;}
.h45{height:40.754420pt;}
.h31{height:42.660201pt;}
.h2f{height:42.681436pt;}
.h42{height:42.972553pt;}
.h40{height:43.160585pt;}
.h3d{height:43.182069pt;}
.h20{height:44.918567pt;}
.h1e{height:44.940926pt;}
.h18{height:45.290612pt;}
.h4b{height:45.417549pt;}
.h49{height:45.432697pt;}
.h2{height:46.119792pt;}
.h8{height:46.281250pt;}
.h25{height:46.421531pt;}
.h39{height:47.341526pt;}
.h37{height:47.478342pt;}
.h36{height:47.501975pt;}
.h2a{height:50.001797pt;}
.h3{height:53.750000pt;}
.ha{height:55.200661pt;}
.h6{height:55.343750pt;}
.h5{height:57.578125pt;}
.h16{height:58.031479pt;}
.h15{height:61.178270pt;}
.h14{height:61.457692pt;}
.h13{height:61.488283pt;}
.h10{height:61.515723pt;}
.h9{height:62.812500pt;}
.h7{height:64.500000pt;}
.hf{height:64.937969pt;}
.he{height:65.147647pt;}
.hc{height:65.180075pt;}
.h34{height:69.588064pt;}
.h46{height:70.472245pt;}
.h23{height:73.342664pt;}
.h33{height:73.470811pt;}
.h32{height:73.696584pt;}
.h30{height:73.733268pt;}
.h1c{height:73.913344pt;}
.h43{height:74.307825pt;}
.h41{height:74.632968pt;}
.h3e{height:74.670118pt;}
.h4{height:75.250000pt;}
.h28{height:75.758980pt;}
.h22{height:77.261189pt;}
.h3b{height:77.522243pt;}
.h21{height:77.672858pt;}
.h1f{height:77.711521pt;}
.h1b{height:77.852468pt;}
.h1a{height:78.277231pt;}
.h19{height:78.316195pt;}
.h4a{height:78.405338pt;}
.h48{height:78.444365pt;}
.h27{height:79.855392pt;}
.h26{height:80.231835pt;}
.h2d{height:81.439294pt;}
.h3a{height:81.862621pt;}
.h38{height:82.099202pt;}
.h2c{height:85.765897pt;}
.h2b{height:86.247518pt;}
.h11{height:91.204267pt;}
.h1d{height:102.406073pt;}
.h17{height:103.202895pt;}
.h2e{height:127.997199pt;}
.h3c{height:151.997780pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:88.801097pt;}
.wc{width:139.997027pt;}
.w8{width:140.803038pt;}
.w6{width:247.205977pt;}
.w5{width:248.809215pt;}
.w3{width:257.598940pt;}
.wa{width:336.795052pt;}
.w4{width:343.201459pt;}
.w9{width:407.204361pt;}
.wb{width:412.801331pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:2.506755pt;}
.x43{left:7.554045pt;}
.x26{left:11.163594pt;}
.x42{left:12.245333pt;}
.x51{left:13.390944pt;}
.x19{left:15.007608pt;}
.x18{left:18.951954pt;}
.x1a{left:19.987113pt;}
.x59{left:21.079251pt;}
.x1d{left:23.831956pt;}
.x69{left:28.114129pt;}
.x4b{left:29.340919pt;}
.x53{left:30.376861pt;}
.x32{left:31.995819pt;}
.x22{left:33.323818pt;}
.x23{left:34.360359pt;}
.x34{left:37.108820pt;}
.x83{left:39.812988pt;}
.x5e{left:44.037802pt;}
.x45{left:45.959434pt;}
.x1b{left:47.294888pt;}
.x1c{left:48.331429pt;}
.x56{left:50.456599pt;}
.x1e{left:52.375275pt;}
.x1f{left:53.411816pt;}
.x70{left:55.199653pt;}
.x27{left:57.054871pt;}
.x28{left:58.091412pt;}
.x55{left:59.528365pt;}
.x86{left:67.478305pt;}
.x88{left:71.570959pt;}
.x21{left:72.597331pt;}
.x3{left:75.499988pt;}
.x6{left:80.566655pt;}
.x85{left:81.771231pt;}
.x20{left:92.350857pt;}
.x3c{left:95.233322pt;}
.x81{left:100.392766pt;}
.x80{left:101.427380pt;}
.x7c{left:102.999121pt;}
.x74{left:103.923669pt;}
.x7e{left:106.907857pt;}
.x4e{left:108.379554pt;}
.x2e{left:113.178658pt;}
.x2d{left:114.934874pt;}
.x73{left:118.743129pt;}
.x4d{left:124.123490pt;}
.x7{left:125.633322pt;}
.xf{left:130.166655pt;}
.x54{left:132.962020pt;}
.x25{left:134.063678pt;}
.x62{left:136.533412pt;}
.x63{left:137.714810pt;}
.x5f{left:138.667805pt;}
.x24{left:139.752156pt;}
.x41{left:140.862013pt;}
.x40{left:143.087895pt;}
.x16{left:145.906655pt;}
.x50{left:147.774778pt;}
.x60{left:150.362073pt;}
.x6f{left:152.115268pt;}
.x46{left:153.424955pt;}
.x65{left:155.048286pt;}
.x66{left:156.229684pt;}
.x49{left:160.143697pt;}
.xe{left:161.399988pt;}
.x67{left:167.664044pt;}
.x78{left:168.977572pt;}
.x5c{left:170.971960pt;}
.x5d{left:172.153358pt;}
.x3f{left:176.755637pt;}
.x64{left:177.981589pt;}
.x11{left:182.466655pt;}
.x37{left:185.583011pt;}
.x14{left:187.266655pt;}
.x4c{left:188.411118pt;}
.x33{left:189.837360pt;}
.xb{left:193.399988pt;}
.x77{left:195.869883pt;}
.x2c{left:197.152765pt;}
.x44{left:199.540543pt;}
.x2f{left:201.134732pt;}
.x48{left:204.998409pt;}
.x4a{left:206.856047pt;}
.x9{left:212.066655pt;}
.x36{left:213.340045pt;}
.x7b{left:216.461641pt;}
.x12{left:219.799988pt;}
.x52{left:221.529876pt;}
.x47{left:222.966588pt;}
.xa{left:225.399988pt;}
.x39{left:227.918973pt;}
.x35{left:235.480819pt;}
.x10{left:243.266655pt;}
.x31{left:244.300812pt;}
.x71{left:249.794853pt;}
.x72{left:250.976251pt;}
.x7a{left:254.533315pt;}
.x5b{left:260.133333pt;}
.x38{left:270.151171pt;}
.x6c{left:271.501078pt;}
.x3e{left:272.399982pt;}
.xd{left:273.959988pt;}
.x2b{left:276.133333pt;}
.x17{left:277.733315pt;}
.x61{left:282.480206pt;}
.x30{left:285.793686pt;}
.x68{left:289.521339pt;}
.x13{left:295.839988pt;}
.xc{left:301.439988pt;}
.x4{left:311.839988pt;}
.x58{left:326.266630pt;}
.x3d{left:352.639988pt;}
.x8a{left:359.559988pt;}
.x84{left:368.501305pt;}
.x7f{left:378.435535pt;}
.x6d{left:379.843176pt;}
.x5{left:380.933322pt;}
.x6e{left:381.938189pt;}
.x82{left:387.054711pt;}
.x7d{left:388.195488pt;}
.x6a{left:389.404626pt;}
.x6b{left:391.814679pt;}
.x8{left:396.666655pt;}
.x2{left:406.266655pt;}
.x87{left:416.133297pt;}
.x57{left:441.199988pt;}
.x1{left:453.733322pt;}
.x5a{left:467.066655pt;}
.x4f{left:521.226655pt;}
.x15{left:532.693322pt;}
.x2a{left:535.359988pt;}
.x89{left:559.639988pt;}
.x3b{left:562.839988pt;}
.x76{left:603.133322pt;}
.x79{left:615.399988pt;}
.x3a{left:619.399988pt;}
.x75{left:667.399988pt;}
}




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