
    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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_100119459715e57362d21653.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_3c7c9115f60e005c9d178e42.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3d57ff1cb25b2529af801b57.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_fe8aa8b45532eb31774b0257.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.008789;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_875ab513d51449959ae10d2f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008789;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_33b32b63e86de0ec9c347a8c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.191406;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736816;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_4295cd1e576624d5d6725f8b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.191406;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_fe61b4b5950422d0f8de3ca8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916992;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_c8bd648bf4cfa884b6309bf1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_0a0e95fe11729c9869c7e686.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9fb284180da631b03a2070fd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.766602;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_7c6b87185e88c84f6eb4a8e0.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_86b00c990fc1d5c121217b56.woff2')format("woff");}.fff{font-family:fff;line-height:1.040039;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_0670aa9d8f50711060a3bd20.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.435059;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;}
.m4{transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,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);}
.v1{vertical-align:-81.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.160000px;}
.v2{vertical-align:38.880000px;}
.lsc{letter-spacing:-0.900000px;}
.ls1c{letter-spacing:-0.690000px;}
.ls1d{letter-spacing:-0.684000px;}
.ls34{letter-spacing:-0.449400px;}
.ls11{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.341400px;}
.ls10{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.129600px;}
.ls23{letter-spacing:-0.037440px;}
.ls31{letter-spacing:-0.028080px;}
.ls2{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.007680px;}
.ls13{letter-spacing:0.028080px;}
.ls29{letter-spacing:0.037440px;}
.ls1{letter-spacing:0.043920px;}
.ls8{letter-spacing:0.049680px;}
.ls14{letter-spacing:0.087600px;}
.ls5{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.118800px;}
.ls4{letter-spacing:0.123840px;}
.lsf{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.164880px;}
.ls25{letter-spacing:0.208080px;}
.ls3{letter-spacing:0.210960px;}
.ls21{letter-spacing:0.256200px;}
.ls37{letter-spacing:0.274800px;}
.ls12{letter-spacing:0.291600px;}
.lsa{letter-spacing:0.295920px;}
.ls7{letter-spacing:0.310320px;}
.ls0{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.540000px;}
.ls20{letter-spacing:1.980000px;}
.ls16{letter-spacing:4.140000px;}
.ls1b{letter-spacing:6.300000px;}
.ls30{letter-spacing:7.020000px;}
.ls1f{letter-spacing:7.920000px;}
.ls19{letter-spacing:14.220000px;}
.ls3a{letter-spacing:14.940000px;}
.ls38{letter-spacing:15.660000px;}
.ls39{letter-spacing:17.820000px;}
.ls2b{letter-spacing:21.420000px;}
.ls2a{letter-spacing:22.140000px;}
.ls2d{letter-spacing:25.740000px;}
.ls2c{letter-spacing:26.460000px;}
.ls3b{letter-spacing:26.623647px;}
.ls1e{letter-spacing:27.900000px;}
.ls27{letter-spacing:30.780000px;}
.ls18{letter-spacing:32.220000px;}
.ls17{letter-spacing:32.940000px;}
.ls1a{letter-spacing:35.100000px;}
.ls2e{letter-spacing:38.700000px;}
.ls32{letter-spacing:40.140000px;}
.lsd{letter-spacing:54.000000px;}
.ls2f{letter-spacing:57.420000px;}
.ls33{letter-spacing:77.040000px;}
.ls35{letter-spacing:83.141280px;}
.ls15{letter-spacing:110.880000px;}
.ls24{letter-spacing:123.084000px;}
.lse{letter-spacing:227.496000px;}
.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;}
}
.ws8{word-spacing:-41.940000px;}
.ws3{word-spacing:-40.680000px;}
.ws4{word-spacing:-40.500000px;}
.ws5{word-spacing:-33.845760px;}
.ws0{word-spacing:-33.300000px;}
.ws1{word-spacing:-32.940000px;}
.ws6{word-spacing:-22.500000px;}
.ws7{word-spacing:-21.780000px;}
.ws14{word-spacing:-21.420000px;}
.wse{word-spacing:-21.351600px;}
.wsd{word-spacing:-21.060000px;}
.ws17{word-spacing:-21.031920px;}
.ws15{word-spacing:-21.022560px;}
.ws13{word-spacing:-20.930400px;}
.ws16{word-spacing:-20.718600px;}
.ws18{word-spacing:-20.700000px;}
.ws11{word-spacing:-20.376000px;}
.ws10{word-spacing:-20.370000px;}
.wsa{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.280000px;}
.ws12{word-spacing:-15.226440px;}
.wsf{word-spacing:-13.500000px;}
.wsb{word-spacing:-10.980000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.589760px;}
._1{width:1.103520px;}
._15{width:2.122320px;}
._d{width:3.399840px;}
._6{width:4.878480px;}
._5{width:5.896800px;}
._18{width:7.160400px;}
._11{width:8.413200px;}
._19{width:9.815040px;}
._3{width:11.290080px;}
._4{width:12.366720px;}
._1a{width:13.983840px;}
._1c{width:15.141600px;}
._1e{width:16.511040px;}
._17{width:17.524080px;}
._16{width:18.951840px;}
._1b{width:19.967040px;}
._28{width:22.284240px;}
._12{width:23.499120px;}
._7{width:24.598080px;}
._8{width:25.935120px;}
._20{width:27.285360px;}
._b{width:28.473120px;}
._c{width:30.287760px;}
._22{width:31.421520px;}
._21{width:32.907360px;}
._23{width:34.240320px;}
._a{width:35.742720px;}
._9{width:37.223280px;}
._32{width:38.666160px;}
._33{width:39.697200px;}
._1f{width:40.782240px;}
._13{width:41.867280px;}
._14{width:43.269360px;}
._2a{width:44.394480px;}
._29{width:45.742320px;}
._31{width:46.910880px;}
._36{width:48.210720px;}
._2{width:49.752000px;}
._3c{width:50.880960px;}
._30{width:51.936000px;}
._27{width:53.062800px;}
._26{width:54.913680px;}
._3f{width:56.957040px;}
._3d{width:58.715280px;}
._3b{width:59.715360px;}
._3a{width:60.821280px;}
._24{width:61.821360px;}
._25{width:62.873280px;}
._2b{width:64.348560px;}
._46{width:65.538720px;}
._43{width:69.549840px;}
._2c{width:70.845840px;}
._2d{width:71.940960px;}
._42{width:73.059840px;}
._34{width:75.142080px;}
._35{width:76.731840px;}
._3e{width:78.416640px;}
._47{width:81.090720px;}
._e{width:82.134000px;}
._f{width:83.386800px;}
._41{width:90.030960px;}
._40{width:91.147680px;}
._37{width:92.158560px;}
._38{width:93.158640px;}
._2e{width:94.195440px;}
._2f{width:95.333760px;}
._48{width:97.234800px;}
._10{width:100.571760px;}
._1d{width:110.762400px;}
._45{width:114.387120px;}
._39{width:120.789360px;}
._44{width:170.424000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,204);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:2.880000px;}
.fs4{font-size:5.760000px;}
.fs13{font-size:18.000000px;}
.fs11{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fse{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs10{font-size:69.120000px;}
.fsc{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fsd{font-size:87.120000px;}
.fsa{font-size:90.000000px;}
.fsb{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.fs9{font-size:120.240000px;}
.fs1{font-size:131.760000px;}
.fs7{font-size:149.760000px;}
.fsf{font-size:167.760000px;}
.fs8{font-size:180.000000px;}
.y5{bottom:-4.149000px;}
.y0{bottom:0.000000px;}
.y72{bottom:4.305000px;}
.y76{bottom:5.040000px;}
.y16{bottom:5.220000px;}
.y23{bottom:5.760000px;}
.y1b{bottom:6.660000px;}
.y43{bottom:9.525000px;}
.y14{bottom:12.060000px;}
.yf2{bottom:16.725000px;}
.yc5{bottom:16.740000px;}
.yf1{bottom:16.770000px;}
.yf5{bottom:16.905000px;}
.yfd{bottom:16.920000px;}
.yf7{bottom:17.085000px;}
.yd7{bottom:17.100000px;}
.yf4{bottom:17.265000px;}
.yda{bottom:17.280000px;}
.y7{bottom:22.140000px;}
.y8{bottom:22.500000px;}
.y71{bottom:24.105000px;}
.y3{bottom:27.360000px;}
.y22{bottom:33.120000px;}
.y105{bottom:34.740000px;}
.y103{bottom:35.100000px;}
.y102{bottom:35.280000px;}
.y70{bottom:43.905000px;}
.y1a{bottom:44.640000px;}
.y35{bottom:48.045000px;}
.y42{bottom:52.005000px;}
.y101{bottom:52.920000px;}
.yd5{bottom:52.950000px;}
.yc4{bottom:53.100000px;}
.y100{bottom:53.280000px;}
.ye0{bottom:53.460000px;}
.yef{bottom:53.670000px;}
.y2{bottom:58.140000px;}
.y21{bottom:59.040000px;}
.y6f{bottom:63.705000px;}
.y34{bottom:66.945000px;}
.y13{bottom:67.005000px;}
.y41{bottom:68.925000px;}
.y9{bottom:75.600000px;}
.y6e{bottom:83.505000px;}
.y20{bottom:84.960000px;}
.y33{bottom:85.845000px;}
.y40{bottom:88.005000px;}
.y19{bottom:90.360000px;}
.y6{bottom:102.060000px;}
.y6d{bottom:103.485000px;}
.y32{bottom:104.925000px;}
.y18{bottom:106.920000px;}
.y1f{bottom:110.190000px;}
.y3f{bottom:115.545000px;}
.y12{bottom:115.965000px;}
.y6c{bottom:123.285000px;}
.y31{bottom:123.825000px;}
.y1e{bottom:136.650000px;}
.y1d{bottom:137.910000px;}
.y3e{bottom:142.725000px;}
.y30{bottom:142.905000px;}
.y6b{bottom:143.085000px;}
.y11{bottom:148.365000px;}
.y4{bottom:151.065000px;}
.y2f{bottom:161.805000px;}
.y6a{bottom:162.885000px;}
.y147{bottom:165.990000px;}
.yfa{bottom:167.625000px;}
.y3d{bottom:167.745000px;}
.y18b{bottom:168.510000px;}
.y131{bottom:171.765000px;}
.y44{bottom:178.230000px;}
.y24{bottom:179.685000px;}
.yc3{bottom:179.850000px;}
.y2e{bottom:180.705000px;}
.y90{bottom:181.830000px;}
.y69{bottom:182.685000px;}
.y45{bottom:185.985000px;}
.yac{bottom:190.830000px;}
.yb7{bottom:191.190000px;}
.y166{bottom:192.630000px;}
.y3c{bottom:192.765000px;}
.y10{bottom:194.085000px;}
.y2d{bottom:199.785000px;}
.y68{bottom:202.665000px;}
.y146{bottom:203.070000px;}
.yf9{bottom:204.525000px;}
.y18a{bottom:204.870000px;}
.y130{bottom:208.845000px;}
.y19b{bottom:217.290000px;}
.y3b{bottom:217.830000px;}
.yd3{bottom:218.370000px;}
.y2c{bottom:218.730000px;}
.y67{bottom:222.510000px;}
.y12e{bottom:225.930000px;}
.yb1{bottom:227.010000px;}
.yab{bottom:227.370000px;}
.y165{bottom:228.810000px;}
.yf{bottom:235.665000px;}
.y2b{bottom:237.810000px;}
.y145{bottom:239.970000px;}
.y189{bottom:241.050000px;}
.yf8{bottom:241.605000px;}
.y66{bottom:242.310000px;}
.y3a{bottom:242.850000px;}
.y14e{bottom:243.030000px;}
.y12f{bottom:245.745000px;}
.y19a{bottom:253.470000px;}
.yd2{bottom:254.550000px;}
.y2a{bottom:256.710000px;}
.y65{bottom:262.110000px;}
.yb0{bottom:263.190000px;}
.yaa{bottom:263.550000px;}
.y164{bottom:265.170000px;}
.ye{bottom:267.165000px;}
.y39{bottom:267.870000px;}
.y29{bottom:275.610000px;}
.y144{bottom:276.870000px;}
.y188{bottom:277.230000px;}
.yf6{bottom:278.505000px;}
.y14d{bottom:279.210000px;}
.y64{bottom:281.910000px;}
.y120{bottom:282.990000px;}
.y199{bottom:289.830000px;}
.yd1{bottom:290.910000px;}
.y176{bottom:291.810000px;}
.y38{bottom:293.070000px;}
.yc2{bottom:293.250000px;}
.y28{bottom:294.690000px;}
.yd{bottom:295.455000px;}
.yc{bottom:298.335000px;}
.yaf{bottom:299.550000px;}
.ya9{bottom:299.910000px;}
.y163{bottom:301.350000px;}
.y63{bottom:301.890000px;}
.y187{bottom:313.410000px;}
.y27{bottom:313.590000px;}
.y143{bottom:313.950000px;}
.y14c{bottom:315.390000px;}
.yf3{bottom:315.405000px;}
.y37{bottom:318.810000px;}
.y11f{bottom:319.170000px;}
.y62{bottom:321.690000px;}
.y8f{bottom:322.590000px;}
.y198{bottom:326.010000px;}
.yd0{bottom:327.090000px;}
.y175{bottom:327.990000px;}
.yc1{bottom:329.430000px;}
.y26{bottom:332.670000px;}
.yae{bottom:335.730000px;}
.ya8{bottom:336.090000px;}
.y162{bottom:337.530000px;}
.y61{bottom:341.490000px;}
.y36{bottom:341.670000px;}
.y186{bottom:349.770000px;}
.y142{bottom:350.850000px;}
.y25{bottom:351.570000px;}
.yee{bottom:352.485000px;}
.y11e{bottom:355.530000px;}
.y60{bottom:361.290000px;}
.y197{bottom:362.190000px;}
.ycf{bottom:363.270000px;}
.y174{bottom:364.170000px;}
.yc0{bottom:365.790000px;}
.ya7{bottom:372.270000px;}
.y161{bottom:373.710000px;}
.y5f{bottom:381.090000px;}
.y185{bottom:385.950000px;}
.y14b{bottom:387.930000px;}
.yf0{bottom:389.385000px;}
.y11d{bottom:391.710000px;}
.y196{bottom:398.415000px;}
.yce{bottom:399.495000px;}
.y10e{bottom:400.395000px;}
.y5e{bottom:401.070000px;}
.ybf{bottom:402.375000px;}
.ya6{bottom:408.495000px;}
.y160{bottom:410.115000px;}
.y5d{bottom:420.870000px;}
.y184{bottom:422.175000px;}
.y14a{bottom:424.155000px;}
.y11c{bottom:427.935000px;}
.y195{bottom:434.775000px;}
.ycd{bottom:435.855000px;}
.y10d{bottom:436.575000px;}
.y173{bottom:436.755000px;}
.ybe{bottom:438.555000px;}
.y5c{bottom:440.670000px;}
.y141{bottom:440.715000px;}
.yed{bottom:443.235000px;}
.yb6{bottom:444.495000px;}
.ya5{bottom:444.855000px;}
.y15f{bottom:446.295000px;}
.y183{bottom:458.355000px;}
.y149{bottom:459.975000px;}
.y5b{bottom:460.500000px;}
.y11b{bottom:464.115000px;}
.y194{bottom:470.955000px;}
.ycc{bottom:472.035000px;}
.y10c{bottom:472.755000px;}
.y172{bottom:472.935000px;}
.ybd{bottom:474.735000px;}
.y140{bottom:476.895000px;}
.yec{bottom:479.415000px;}
.y5a{bottom:480.300000px;}
.ya4{bottom:481.035000px;}
.y15e{bottom:482.475000px;}
.y148{bottom:491.475000px;}
.y182{bottom:494.715000px;}
.y59{bottom:500.280000px;}
.y11a{bottom:500.475000px;}
.y193{bottom:507.135000px;}
.ycb{bottom:508.215000px;}
.y10b{bottom:508.935000px;}
.y171{bottom:509.115000px;}
.y8e{bottom:509.295000px;}
.ybc{bottom:510.915000px;}
.y13f{bottom:513.435000px;}
.y12d{bottom:513.975000px;}
.yeb{bottom:515.955000px;}
.ya3{bottom:517.215000px;}
.y15d{bottom:518.655000px;}
.y58{bottom:520.080000px;}
.y181{bottom:530.895000px;}
.y8d{bottom:534.135000px;}
.y119{bottom:536.655000px;}
.y57{bottom:540.240000px;}
.y192{bottom:543.315000px;}
.yca{bottom:544.395000px;}
.y10a{bottom:545.115000px;}
.y170{bottom:545.295000px;}
.y1c{bottom:546.555000px;}
.ybb{bottom:546.915000px;}
.y13e{bottom:549.615000px;}
.y12c{bottom:550.155000px;}
.yea{bottom:552.135000px;}
.y19c{bottom:553.035000px;}
.ya2{bottom:553.395000px;}
.y15c{bottom:555.015000px;}
.y8c{bottom:559.155000px;}
.y56{bottom:560.940000px;}
.y180{bottom:567.075000px;}
.y118{bottom:572.835000px;}
.yba{bottom:578.415000px;}
.y191{bottom:579.675000px;}
.yc9{bottom:580.755000px;}
.y109{bottom:581.475000px;}
.y55{bottom:581.640000px;}
.y8b{bottom:583.995000px;}
.y13d{bottom:585.975000px;}
.y12b{bottom:586.335000px;}
.ye9{bottom:588.495000px;}
.ya1{bottom:589.755000px;}
.y15b{bottom:591.195000px;}
.y54{bottom:602.340000px;}
.y17f{bottom:603.255000px;}
.y8a{bottom:608.835000px;}
.y117{bottom:609.015000px;}
.y190{bottom:615.855000px;}
.yc8{bottom:616.935000px;}
.y108{bottom:617.655000px;}
.y16f{bottom:617.835000px;}
.y13c{bottom:622.155000px;}
.y12a{bottom:622.515000px;}
.ye8{bottom:624.675000px;}
.y53{bottom:625.920000px;}
.ya0{bottom:625.935000px;}
.y15a{bottom:627.375000px;}
.y89{bottom:633.855000px;}
.y17e{bottom:639.435000px;}
.y116{bottom:645.405000px;}
.y18f{bottom:652.065000px;}
.yc7{bottom:653.145000px;}
.y107{bottom:653.865000px;}
.y16e{bottom:654.045000px;}
.y52{bottom:655.080000px;}
.y13b{bottom:658.365000px;}
.y88{bottom:658.725000px;}
.y129{bottom:658.905000px;}
.ye7{bottom:660.885000px;}
.y9f{bottom:662.145000px;}
.y159{bottom:663.585000px;}
.y51{bottom:675.240000px;}
.y17d{bottom:675.825000px;}
.y115{bottom:681.585000px;}
.y87{bottom:683.565000px;}
.y18e{bottom:688.245000px;}
.yc6{bottom:689.325000px;}
.y106{bottom:690.045000px;}
.y16d{bottom:690.225000px;}
.y13a{bottom:694.545000px;}
.y128{bottom:695.085000px;}
.ye6{bottom:697.065000px;}
.y9e{bottom:698.325000px;}
.y158{bottom:699.765000px;}
.y17{bottom:703.545000px;}
.y86{bottom:708.585000px;}
.ye2{bottom:709.125000px;}
.y104{bottom:710.025000px;}
.y17c{bottom:712.005000px;}
.y50{bottom:716.325000px;}
.y114{bottom:717.765000px;}
.y18d{bottom:724.065000px;}
.y16c{bottom:726.405000px;}
.y139{bottom:730.905000px;}
.y127{bottom:731.265000px;}
.y85{bottom:733.425000px;}
.yb9{bottom:734.145000px;}
.y9d{bottom:734.505000px;}
.y157{bottom:736.125000px;}
.ye1{bottom:746.205000px;}
.y17b{bottom:748.185000px;}
.y113{bottom:753.945000px;}
.y18c{bottom:755.745000px;}
.y4f{bottom:757.725000px;}
.y84{bottom:758.265000px;}
.y16b{bottom:762.765000px;}
.y138{bottom:767.085000px;}
.y126{bottom:767.445000px;}
.ye5{bottom:769.605000px;}
.y19d{bottom:770.505000px;}
.y9c{bottom:770.865000px;}
.y156{bottom:772.305000px;}
.ydf{bottom:783.105000px;}
.y83{bottom:783.285000px;}
.y17a{bottom:784.365000px;}
.y112{bottom:790.125000px;}
.y16a{bottom:798.945000px;}
.y4e{bottom:799.125000px;}
.y137{bottom:803.265000px;}
.y125{bottom:803.625000px;}
.ye4{bottom:805.425000px;}
.y9b{bottom:807.045000px;}
.y82{bottom:808.125000px;}
.y155{bottom:808.485000px;}
.y4d{bottom:820.185000px;}
.y179{bottom:820.725000px;}
.y111{bottom:826.125000px;}
.y15{bottom:829.545000px;}
.y81{bottom:832.965000px;}
.y169{bottom:834.765000px;}
.ye3{bottom:836.925000px;}
.y136{bottom:839.445000px;}
.y124{bottom:839.985000px;}
.y4c{bottom:840.525000px;}
.yad{bottom:843.225000px;}
.y154{bottom:844.665000px;}
.y9a{bottom:852.585000px;}
.yb{bottom:853.845000px;}
.yde{bottom:856.365000px;}
.y178{bottom:856.545000px;}
.y80{bottom:857.985000px;}
.y4b{bottom:860.865000px;}
.y110{bottom:862.305000px;}
.y168{bottom:870.945000px;}
.y135{bottom:875.805000px;}
.y123{bottom:876.165000px;}
.y99{bottom:879.405000px;}
.y153{bottom:881.025000px;}
.y4a{bottom:881.385000px;}
.y7f{bottom:882.825000px;}
.y177{bottom:888.045000px;}
.ydd{bottom:893.310000px;}
.y10f{bottom:893.850000px;}
.y49{bottom:902.085000px;}
.y167{bottom:902.670000px;}
.y7e{bottom:907.710000px;}
.y122{bottom:912.030000px;}
.y98{bottom:915.810000px;}
.y152{bottom:917.250000px;}
.y48{bottom:922.965000px;}
.ydc{bottom:930.390000px;}
.y7d{bottom:932.730000px;}
.y121{bottom:943.530000px;}
.y134{bottom:948.210000px;}
.y47{bottom:949.785000px;}
.y74{bottom:950.865000px;}
.y97{bottom:951.990000px;}
.y151{bottom:953.070000px;}
.y7c{bottom:957.570000px;}
.ydb{bottom:967.290000px;}
.y73{bottom:977.355000px;}
.y46{bottom:980.055000px;}
.y7b{bottom:982.410000px;}
.y133{bottom:984.390000px;}
.y150{bottom:984.570000px;}
.y96{bottom:988.170000px;}
.y14f{bottom:1003.470000px;}
.yd9{bottom:1004.190000px;}
.y7a{bottom:1007.430000px;}
.y132{bottom:1020.570000px;}
.y95{bottom:1023.990000px;}
.yb5{bottom:1024.350000px;}
.y79{bottom:1032.270000px;}
.yff{bottom:1040.550000px;}
.yd8{bottom:1041.270000px;}
.y78{bottom:1057.110000px;}
.y94{bottom:1060.350000px;}
.yb4{bottom:1060.710000px;}
.yfe{bottom:1077.450000px;}
.yd6{bottom:1078.170000px;}
.y77{bottom:1082.130000px;}
.y93{bottom:1096.530000px;}
.yb3{bottom:1096.890000px;}
.y75{bottom:1106.970000px;}
.yfc{bottom:1114.350000px;}
.yd4{bottom:1115.250000px;}
.y92{bottom:1132.710000px;}
.yb2{bottom:1133.070000px;}
.yfb{bottom:1151.460000px;}
.y91{bottom:1168.920000px;}
.yb8{bottom:1169.280000px;}
.y1{bottom:1172.700000px;}
.ya{bottom:1186.920000px;}
.h2b{height:2.864531px;}
.h9{height:5.729063px;}
.h5{height:8.625000px;}
.h2c{height:17.903320px;}
.h29{height:24.120000px;}
.h2a{height:24.156000px;}
.h11{height:24.300000px;}
.h3a{height:36.165000px;}
.h35{height:36.180000px;}
.h39{height:36.201000px;}
.h37{height:36.216000px;}
.h3b{height:36.345000px;}
.h36{height:36.360000px;}
.h3c{height:36.390000px;}
.h41{height:36.396000px;}
.h7{height:38.158500px;}
.h27{height:48.465000px;}
.h28{height:52.998047px;}
.h6{height:53.709961px;}
.h1a{height:54.386719px;}
.h30{height:54.421875px;}
.h3{height:57.958500px;}
.h1d{height:58.621992px;}
.h31{height:59.066719px;}
.hf{height:60.917695px;}
.hc{height:61.287891px;}
.h2{height:65.884219px;}
.h8{height:66.757500px;}
.h24{height:67.803750px;}
.h26{height:67.837500px;}
.h21{height:69.669141px;}
.h25{height:70.628906px;}
.h23{height:70.664062px;}
.h3d{height:72.345000px;}
.h3f{height:72.360000px;}
.h3e{height:72.382500px;}
.h34{height:72.396000px;}
.h33{height:72.540000px;}
.h32{height:72.846211px;}
.h38{height:73.101000px;}
.h2f{height:82.635820px;}
.hb{height:82.676953px;}
.h40{height:84.836953px;}
.h22{height:84.898125px;}
.h1b{height:85.460977px;}
.h42{height:87.695156px;}
.h15{height:88.330078px;}
.h16{height:90.703125px;}
.h2e{height:91.851680px;}
.h2d{height:93.301875px;}
.h1c{height:93.936445px;}
.h17{height:93.983203px;}
.h20{height:96.508125px;}
.h19{height:105.943359px;}
.hd{height:108.843750px;}
.h13{height:121.179375px;}
.h12{height:126.000000px;}
.h4{height:132.789375px;}
.he{height:153.343125px;}
.h14{height:156.990000px;}
.h1e{height:164.647266px;}
.h10{height:184.306641px;}
.ha{height:317.415000px;}
.h18{height:366.855000px;}
.h1f{height:1002.375000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:44.674500px;}
.w19{width:63.574500px;}
.w16{width:72.741000px;}
.w17{width:78.465000px;}
.w13{width:79.740000px;}
.w14{width:81.576000px;}
.w15{width:82.245000px;}
.w18{width:88.725000px;}
.wd{width:91.440000px;}
.wc{width:114.156000px;}
.w20{width:128.520000px;}
.w1e{width:128.880000px;}
.w5{width:133.414500px;}
.w1f{width:140.076000px;}
.w11{width:155.715000px;}
.wa{width:156.630000px;}
.w10{width:162.030000px;}
.w12{width:167.925000px;}
.w1c{width:169.755000px;}
.w1b{width:169.770000px;}
.wf{width:182.719500px;}
.w9{width:204.870000px;}
.w1a{width:275.779500px;}
.w1d{width:323.175000px;}
.w2{width:323.893500px;}
.w7{width:335.413500px;}
.w4{width:369.645000px;}
.w3{width:370.513500px;}
.w8{width:377.715000px;}
.wb{width:523.365000px;}
.w6{width:571.950000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:6.838500px;}
.x5{left:8.458500px;}
.x6c{left:9.705000px;}
.x3{left:10.978500px;}
.x47{left:13.320000px;}
.x64{left:14.385000px;}
.x68{left:16.183500px;}
.x14{left:17.625000px;}
.x16{left:19.425000px;}
.x5f{left:21.045000px;}
.x67{left:22.500000px;}
.x62{left:24.120000px;}
.x63{left:25.365000px;}
.x4a{left:26.460000px;}
.x10{left:28.245000px;}
.x65{left:29.340000px;}
.x66{left:30.585000px;}
.x50{left:31.680000px;}
.x12{left:33.465000px;}
.x1f{left:34.905000px;}
.x6a{left:36.345000px;}
.x2{left:40.141500px;}
.x49{left:41.265000px;}
.x6b{left:44.280000px;}
.x44{left:47.025000px;}
.x1a{left:48.274500px;}
.x52{left:51.705000px;}
.x58{left:54.163500px;}
.x5a{left:55.260000px;}
.x5d{left:58.140000px;}
.xf{left:59.430000px;}
.x69{left:61.363500px;}
.x1b{left:62.490000px;}
.x77{left:65.550000px;}
.x19{left:66.634500px;}
.x1e{left:69.330000px;}
.x24{left:70.774500px;}
.x79{left:71.803500px;}
.xc{left:74.010000px;}
.x4{left:76.501500px;}
.x9{left:78.121500px;}
.x1d{left:80.670000px;}
.x20{left:82.470000px;}
.x1{left:84.960000px;}
.x2b{left:86.580000px;}
.x33{left:88.020000px;}
.x26{left:93.448500px;}
.x39{left:95.076000px;}
.x35{left:96.336000px;}
.x78{left:100.063500px;}
.x25{left:102.088500px;}
.x22{left:103.350000px;}
.x3b{left:105.156000px;}
.x4e{left:109.290000px;}
.x7a{left:112.663500px;}
.x2d{left:114.516000px;}
.x4b{left:116.850000px;}
.x55{left:125.496000px;}
.x3e{left:127.476000px;}
.x4d{left:128.730000px;}
.xd{left:132.330000px;}
.x57{left:133.966500px;}
.x21{left:137.370000px;}
.x56{left:140.976000px;}
.x70{left:142.596000px;}
.x51{left:146.730000px;}
.x18{left:148.350000px;}
.x6e{left:153.930000px;}
.x1c{left:158.970000px;}
.x17{left:162.210000px;}
.x23{left:167.608500px;}
.x48{left:169.410000px;}
.x38{left:175.170000px;}
.x7b{left:178.770000px;}
.x15{left:180.210000px;}
.x32{left:186.510000px;}
.x28{left:188.850000px;}
.x11{left:196.410000px;}
.x4f{left:199.155000px;}
.x4c{left:200.955000px;}
.x2f{left:202.890000px;}
.x7f{left:209.910000px;}
.x13{left:211.170000px;}
.xb{left:213.885000px;}
.x74{left:215.490000px;}
.x30{left:217.290000px;}
.x31{left:224.670000px;}
.x54{left:226.470000px;}
.x80{left:230.610000px;}
.x83{left:238.170000px;}
.x3d{left:249.510000px;}
.x40{left:252.210000px;}
.x72{left:263.370000px;}
.x2c{left:264.630000px;}
.x3a{left:280.695000px;}
.x37{left:282.495000px;}
.xe{left:285.900000px;}
.x34{left:308.415000px;}
.x36{left:309.495000px;}
.x3c{left:313.995000px;}
.x59{left:317.415000px;}
.x46{left:344.235000px;}
.x42{left:351.435000px;}
.x8{left:352.695000px;}
.x7{left:360.975000px;}
.x2e{left:372.855000px;}
.x84{left:390.135000px;}
.x5e{left:397.875000px;}
.x27{left:415.875000px;}
.x75{left:418.575000px;}
.x29{left:423.615000px;}
.x6{left:447.015000px;}
.x87{left:462.525000px;}
.x5b{left:480.180000px;}
.x7c{left:502.665000px;}
.x60{left:563.160000px;}
.x76{left:589.080000px;}
.x85{left:597.345000px;}
.x43{left:604.005000px;}
.x2a{left:629.205000px;}
.x7d{left:631.905000px;}
.x5c{left:636.630000px;}
.x86{left:679.470000px;}
.x41{left:705.570000px;}
.x73{left:710.790000px;}
.x61{left:715.830000px;}
.x45{left:718.890000px;}
.x82{left:725.730000px;}
.x81{left:747.510000px;}
.x7e{left:755.250000px;}
.x6f{left:760.290000px;}
.x71{left:762.270000px;}
.x3f{left:764.610000px;}
.x6d{left:773.430000px;}
.x53{left:804.570000px;}
.x88{left:807.990000px;}
@media print{
.v1{vertical-align:-72.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.920000pt;}
.v2{vertical-align:34.560000pt;}
.lsc{letter-spacing:-0.800000pt;}
.ls1c{letter-spacing:-0.613333pt;}
.ls1d{letter-spacing:-0.608000pt;}
.ls34{letter-spacing:-0.399467pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.303467pt;}
.ls10{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.115200pt;}
.ls23{letter-spacing:-0.033280pt;}
.ls31{letter-spacing:-0.024960pt;}
.ls2{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.006827pt;}
.ls13{letter-spacing:0.024960pt;}
.ls29{letter-spacing:0.033280pt;}
.ls1{letter-spacing:0.039040pt;}
.ls8{letter-spacing:0.044160pt;}
.ls14{letter-spacing:0.077867pt;}
.ls5{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.105600pt;}
.ls4{letter-spacing:0.110080pt;}
.lsf{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.146560pt;}
.ls25{letter-spacing:0.184960pt;}
.ls3{letter-spacing:0.187520pt;}
.ls21{letter-spacing:0.227733pt;}
.ls37{letter-spacing:0.244267pt;}
.ls12{letter-spacing:0.259200pt;}
.lsa{letter-spacing:0.263040pt;}
.ls7{letter-spacing:0.275840pt;}
.ls0{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.480000pt;}
.ls20{letter-spacing:1.760000pt;}
.ls16{letter-spacing:3.680000pt;}
.ls1b{letter-spacing:5.600000pt;}
.ls30{letter-spacing:6.240000pt;}
.ls1f{letter-spacing:7.040000pt;}
.ls19{letter-spacing:12.640000pt;}
.ls3a{letter-spacing:13.280000pt;}
.ls38{letter-spacing:13.920000pt;}
.ls39{letter-spacing:15.840000pt;}
.ls2b{letter-spacing:19.040000pt;}
.ls2a{letter-spacing:19.680000pt;}
.ls2d{letter-spacing:22.880000pt;}
.ls2c{letter-spacing:23.520000pt;}
.ls3b{letter-spacing:23.665464pt;}
.ls1e{letter-spacing:24.800000pt;}
.ls27{letter-spacing:27.360000pt;}
.ls18{letter-spacing:28.640000pt;}
.ls17{letter-spacing:29.280000pt;}
.ls1a{letter-spacing:31.200000pt;}
.ls2e{letter-spacing:34.400000pt;}
.ls32{letter-spacing:35.680000pt;}
.lsd{letter-spacing:48.000000pt;}
.ls2f{letter-spacing:51.040000pt;}
.ls33{letter-spacing:68.480000pt;}
.ls35{letter-spacing:73.903360pt;}
.ls15{letter-spacing:98.560000pt;}
.ls24{letter-spacing:109.408000pt;}
.lse{letter-spacing:202.218667pt;}
.ws8{word-spacing:-37.280000pt;}
.ws3{word-spacing:-36.160000pt;}
.ws4{word-spacing:-36.000000pt;}
.ws5{word-spacing:-30.085120pt;}
.ws0{word-spacing:-29.600000pt;}
.ws1{word-spacing:-29.280000pt;}
.ws6{word-spacing:-20.000000pt;}
.ws7{word-spacing:-19.360000pt;}
.ws14{word-spacing:-19.040000pt;}
.wse{word-spacing:-18.979200pt;}
.wsd{word-spacing:-18.720000pt;}
.ws17{word-spacing:-18.695040pt;}
.ws15{word-spacing:-18.686720pt;}
.ws13{word-spacing:-18.604800pt;}
.ws16{word-spacing:-18.416533pt;}
.ws18{word-spacing:-18.400000pt;}
.ws11{word-spacing:-18.112000pt;}
.ws10{word-spacing:-18.106667pt;}
.wsa{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.360000pt;}
.ws12{word-spacing:-13.534613pt;}
.wsf{word-spacing:-12.000000pt;}
.wsb{word-spacing:-9.760000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.413120pt;}
._1{width:0.980907pt;}
._15{width:1.886507pt;}
._d{width:3.022080pt;}
._6{width:4.336427pt;}
._5{width:5.241600pt;}
._18{width:6.364800pt;}
._11{width:7.478400pt;}
._19{width:8.724480pt;}
._3{width:10.035627pt;}
._4{width:10.992640pt;}
._1a{width:12.430080pt;}
._1c{width:13.459200pt;}
._1e{width:14.676480pt;}
._17{width:15.576960pt;}
._16{width:16.846080pt;}
._1b{width:17.748480pt;}
._28{width:19.808213pt;}
._12{width:20.888107pt;}
._7{width:21.864960pt;}
._8{width:23.053440pt;}
._20{width:24.253653pt;}
._b{width:25.309440pt;}
._c{width:26.922453pt;}
._22{width:27.930240pt;}
._21{width:29.250987pt;}
._23{width:30.435840pt;}
._a{width:31.771307pt;}
._9{width:33.087360pt;}
._32{width:34.369920pt;}
._33{width:35.286400pt;}
._1f{width:36.250880pt;}
._13{width:37.215360pt;}
._14{width:38.461653pt;}
._2a{width:39.461760pt;}
._29{width:40.659840pt;}
._31{width:41.698560pt;}
._36{width:42.853973pt;}
._2{width:44.224000pt;}
._3c{width:45.227520pt;}
._30{width:46.165333pt;}
._27{width:47.166933pt;}
._26{width:48.812160pt;}
._3f{width:50.628480pt;}
._3d{width:52.191360pt;}
._3b{width:53.080320pt;}
._3a{width:54.063360pt;}
._24{width:54.952320pt;}
._25{width:55.887360pt;}
._2b{width:57.198720pt;}
._46{width:58.256640pt;}
._43{width:61.822080pt;}
._2c{width:62.974080pt;}
._2d{width:63.947520pt;}
._42{width:64.942080pt;}
._34{width:66.792960pt;}
._35{width:68.206080pt;}
._3e{width:69.703680pt;}
._47{width:72.080640pt;}
._e{width:73.008000pt;}
._f{width:74.121600pt;}
._41{width:80.027520pt;}
._40{width:81.020160pt;}
._37{width:81.918720pt;}
._38{width:82.807680pt;}
._2e{width:83.729280pt;}
._2f{width:84.741120pt;}
._48{width:86.430933pt;}
._10{width:89.397120pt;}
._1d{width:98.455467pt;}
._45{width:101.677440pt;}
._39{width:107.368320pt;}
._44{width:151.488000pt;}
.fs12{font-size:2.560000pt;}
.fs4{font-size:5.120000pt;}
.fs13{font-size:16.000000pt;}
.fs11{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fse{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs10{font-size:61.440000pt;}
.fsc{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fsd{font-size:77.440000pt;}
.fsa{font-size:80.000000pt;}
.fsb{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.fs9{font-size:106.880000pt;}
.fs1{font-size:117.120000pt;}
.fs7{font-size:133.120000pt;}
.fsf{font-size:149.120000pt;}
.fs8{font-size:160.000000pt;}
.y5{bottom:-3.688000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:3.826667pt;}
.y76{bottom:4.480000pt;}
.y16{bottom:4.640000pt;}
.y23{bottom:5.120000pt;}
.y1b{bottom:5.920000pt;}
.y43{bottom:8.466667pt;}
.y14{bottom:10.720000pt;}
.yf2{bottom:14.866667pt;}
.yc5{bottom:14.880000pt;}
.yf1{bottom:14.906667pt;}
.yf5{bottom:15.026667pt;}
.yfd{bottom:15.040000pt;}
.yf7{bottom:15.186667pt;}
.yd7{bottom:15.200000pt;}
.yf4{bottom:15.346667pt;}
.yda{bottom:15.360000pt;}
.y7{bottom:19.680000pt;}
.y8{bottom:20.000000pt;}
.y71{bottom:21.426667pt;}
.y3{bottom:24.320000pt;}
.y22{bottom:29.440000pt;}
.y105{bottom:30.880000pt;}
.y103{bottom:31.200000pt;}
.y102{bottom:31.360000pt;}
.y70{bottom:39.026667pt;}
.y1a{bottom:39.680000pt;}
.y35{bottom:42.706667pt;}
.y42{bottom:46.226667pt;}
.y101{bottom:47.040000pt;}
.yd5{bottom:47.066667pt;}
.yc4{bottom:47.200000pt;}
.y100{bottom:47.360000pt;}
.ye0{bottom:47.520000pt;}
.yef{bottom:47.706667pt;}
.y2{bottom:51.680000pt;}
.y21{bottom:52.480000pt;}
.y6f{bottom:56.626667pt;}
.y34{bottom:59.506667pt;}
.y13{bottom:59.560000pt;}
.y41{bottom:61.266667pt;}
.y9{bottom:67.200000pt;}
.y6e{bottom:74.226667pt;}
.y20{bottom:75.520000pt;}
.y33{bottom:76.306667pt;}
.y40{bottom:78.226667pt;}
.y19{bottom:80.320000pt;}
.y6{bottom:90.720000pt;}
.y6d{bottom:91.986667pt;}
.y32{bottom:93.266667pt;}
.y18{bottom:95.040000pt;}
.y1f{bottom:97.946667pt;}
.y3f{bottom:102.706667pt;}
.y12{bottom:103.080000pt;}
.y6c{bottom:109.586667pt;}
.y31{bottom:110.066667pt;}
.y1e{bottom:121.466667pt;}
.y1d{bottom:122.586667pt;}
.y3e{bottom:126.866667pt;}
.y30{bottom:127.026667pt;}
.y6b{bottom:127.186667pt;}
.y11{bottom:131.880000pt;}
.y4{bottom:134.280000pt;}
.y2f{bottom:143.826667pt;}
.y6a{bottom:144.786667pt;}
.y147{bottom:147.546667pt;}
.yfa{bottom:149.000000pt;}
.y3d{bottom:149.106667pt;}
.y18b{bottom:149.786667pt;}
.y131{bottom:152.680000pt;}
.y44{bottom:158.426667pt;}
.y24{bottom:159.720000pt;}
.yc3{bottom:159.866667pt;}
.y2e{bottom:160.626667pt;}
.y90{bottom:161.626667pt;}
.y69{bottom:162.386667pt;}
.y45{bottom:165.320000pt;}
.yac{bottom:169.626667pt;}
.yb7{bottom:169.946667pt;}
.y166{bottom:171.226667pt;}
.y3c{bottom:171.346667pt;}
.y10{bottom:172.520000pt;}
.y2d{bottom:177.586667pt;}
.y68{bottom:180.146667pt;}
.y146{bottom:180.506667pt;}
.yf9{bottom:181.800000pt;}
.y18a{bottom:182.106667pt;}
.y130{bottom:185.640000pt;}
.y19b{bottom:193.146667pt;}
.y3b{bottom:193.626667pt;}
.yd3{bottom:194.106667pt;}
.y2c{bottom:194.426667pt;}
.y67{bottom:197.786667pt;}
.y12e{bottom:200.826667pt;}
.yb1{bottom:201.786667pt;}
.yab{bottom:202.106667pt;}
.y165{bottom:203.386667pt;}
.yf{bottom:209.480000pt;}
.y2b{bottom:211.386667pt;}
.y145{bottom:213.306667pt;}
.y189{bottom:214.266667pt;}
.yf8{bottom:214.760000pt;}
.y66{bottom:215.386667pt;}
.y3a{bottom:215.866667pt;}
.y14e{bottom:216.026667pt;}
.y12f{bottom:218.440000pt;}
.y19a{bottom:225.306667pt;}
.yd2{bottom:226.266667pt;}
.y2a{bottom:228.186667pt;}
.y65{bottom:232.986667pt;}
.yb0{bottom:233.946667pt;}
.yaa{bottom:234.266667pt;}
.y164{bottom:235.706667pt;}
.ye{bottom:237.480000pt;}
.y39{bottom:238.106667pt;}
.y29{bottom:244.986667pt;}
.y144{bottom:246.106667pt;}
.y188{bottom:246.426667pt;}
.yf6{bottom:247.560000pt;}
.y14d{bottom:248.186667pt;}
.y64{bottom:250.586667pt;}
.y120{bottom:251.546667pt;}
.y199{bottom:257.626667pt;}
.yd1{bottom:258.586667pt;}
.y176{bottom:259.386667pt;}
.y38{bottom:260.506667pt;}
.yc2{bottom:260.666667pt;}
.y28{bottom:261.946667pt;}
.yd{bottom:262.626667pt;}
.yc{bottom:265.186667pt;}
.yaf{bottom:266.266667pt;}
.ya9{bottom:266.586667pt;}
.y163{bottom:267.866667pt;}
.y63{bottom:268.346667pt;}
.y187{bottom:278.586667pt;}
.y27{bottom:278.746667pt;}
.y143{bottom:279.066667pt;}
.y14c{bottom:280.346667pt;}
.yf3{bottom:280.360000pt;}
.y37{bottom:283.386667pt;}
.y11f{bottom:283.706667pt;}
.y62{bottom:285.946667pt;}
.y8f{bottom:286.746667pt;}
.y198{bottom:289.786667pt;}
.yd0{bottom:290.746667pt;}
.y175{bottom:291.546667pt;}
.yc1{bottom:292.826667pt;}
.y26{bottom:295.706667pt;}
.yae{bottom:298.426667pt;}
.ya8{bottom:298.746667pt;}
.y162{bottom:300.026667pt;}
.y61{bottom:303.546667pt;}
.y36{bottom:303.706667pt;}
.y186{bottom:310.906667pt;}
.y142{bottom:311.866667pt;}
.y25{bottom:312.506667pt;}
.yee{bottom:313.320000pt;}
.y11e{bottom:316.026667pt;}
.y60{bottom:321.146667pt;}
.y197{bottom:321.946667pt;}
.ycf{bottom:322.906667pt;}
.y174{bottom:323.706667pt;}
.yc0{bottom:325.146667pt;}
.ya7{bottom:330.906667pt;}
.y161{bottom:332.186667pt;}
.y5f{bottom:338.746667pt;}
.y185{bottom:343.066667pt;}
.y14b{bottom:344.826667pt;}
.yf0{bottom:346.120000pt;}
.y11d{bottom:348.186667pt;}
.y196{bottom:354.146667pt;}
.yce{bottom:355.106667pt;}
.y10e{bottom:355.906667pt;}
.y5e{bottom:356.506667pt;}
.ybf{bottom:357.666667pt;}
.ya6{bottom:363.106667pt;}
.y160{bottom:364.546667pt;}
.y5d{bottom:374.106667pt;}
.y184{bottom:375.266667pt;}
.y14a{bottom:377.026667pt;}
.y11c{bottom:380.386667pt;}
.y195{bottom:386.466667pt;}
.ycd{bottom:387.426667pt;}
.y10d{bottom:388.066667pt;}
.y173{bottom:388.226667pt;}
.ybe{bottom:389.826667pt;}
.y5c{bottom:391.706667pt;}
.y141{bottom:391.746667pt;}
.yed{bottom:393.986667pt;}
.yb6{bottom:395.106667pt;}
.ya5{bottom:395.426667pt;}
.y15f{bottom:396.706667pt;}
.y183{bottom:407.426667pt;}
.y149{bottom:408.866667pt;}
.y5b{bottom:409.333333pt;}
.y11b{bottom:412.546667pt;}
.y194{bottom:418.626667pt;}
.ycc{bottom:419.586667pt;}
.y10c{bottom:420.226667pt;}
.y172{bottom:420.386667pt;}
.ybd{bottom:421.986667pt;}
.y140{bottom:423.906667pt;}
.yec{bottom:426.146667pt;}
.y5a{bottom:426.933333pt;}
.ya4{bottom:427.586667pt;}
.y15e{bottom:428.866667pt;}
.y148{bottom:436.866667pt;}
.y182{bottom:439.746667pt;}
.y59{bottom:444.693333pt;}
.y11a{bottom:444.866667pt;}
.y193{bottom:450.786667pt;}
.ycb{bottom:451.746667pt;}
.y10b{bottom:452.386667pt;}
.y171{bottom:452.546667pt;}
.y8e{bottom:452.706667pt;}
.ybc{bottom:454.146667pt;}
.y13f{bottom:456.386667pt;}
.y12d{bottom:456.866667pt;}
.yeb{bottom:458.626667pt;}
.ya3{bottom:459.746667pt;}
.y15d{bottom:461.026667pt;}
.y58{bottom:462.293333pt;}
.y181{bottom:471.906667pt;}
.y8d{bottom:474.786667pt;}
.y119{bottom:477.026667pt;}
.y57{bottom:480.213333pt;}
.y192{bottom:482.946667pt;}
.yca{bottom:483.906667pt;}
.y10a{bottom:484.546667pt;}
.y170{bottom:484.706667pt;}
.y1c{bottom:485.826667pt;}
.ybb{bottom:486.146667pt;}
.y13e{bottom:488.546667pt;}
.y12c{bottom:489.026667pt;}
.yea{bottom:490.786667pt;}
.y19c{bottom:491.586667pt;}
.ya2{bottom:491.906667pt;}
.y15c{bottom:493.346667pt;}
.y8c{bottom:497.026667pt;}
.y56{bottom:498.613333pt;}
.y180{bottom:504.066667pt;}
.y118{bottom:509.186667pt;}
.yba{bottom:514.146667pt;}
.y191{bottom:515.266667pt;}
.yc9{bottom:516.226667pt;}
.y109{bottom:516.866667pt;}
.y55{bottom:517.013333pt;}
.y8b{bottom:519.106667pt;}
.y13d{bottom:520.866667pt;}
.y12b{bottom:521.186667pt;}
.ye9{bottom:523.106667pt;}
.ya1{bottom:524.226667pt;}
.y15b{bottom:525.506667pt;}
.y54{bottom:535.413333pt;}
.y17f{bottom:536.226667pt;}
.y8a{bottom:541.186667pt;}
.y117{bottom:541.346667pt;}
.y190{bottom:547.426667pt;}
.yc8{bottom:548.386667pt;}
.y108{bottom:549.026667pt;}
.y16f{bottom:549.186667pt;}
.y13c{bottom:553.026667pt;}
.y12a{bottom:553.346667pt;}
.ye8{bottom:555.266667pt;}
.y53{bottom:556.373333pt;}
.ya0{bottom:556.386667pt;}
.y15a{bottom:557.666667pt;}
.y89{bottom:563.426667pt;}
.y17e{bottom:568.386667pt;}
.y116{bottom:573.693333pt;}
.y18f{bottom:579.613333pt;}
.yc7{bottom:580.573333pt;}
.y107{bottom:581.213333pt;}
.y16e{bottom:581.373333pt;}
.y52{bottom:582.293333pt;}
.y13b{bottom:585.213333pt;}
.y88{bottom:585.533333pt;}
.y129{bottom:585.693333pt;}
.ye7{bottom:587.453333pt;}
.y9f{bottom:588.573333pt;}
.y159{bottom:589.853333pt;}
.y51{bottom:600.213333pt;}
.y17d{bottom:600.733333pt;}
.y115{bottom:605.853333pt;}
.y87{bottom:607.613333pt;}
.y18e{bottom:611.773333pt;}
.yc6{bottom:612.733333pt;}
.y106{bottom:613.373333pt;}
.y16d{bottom:613.533333pt;}
.y13a{bottom:617.373333pt;}
.y128{bottom:617.853333pt;}
.ye6{bottom:619.613333pt;}
.y9e{bottom:620.733333pt;}
.y158{bottom:622.013333pt;}
.y17{bottom:625.373333pt;}
.y86{bottom:629.853333pt;}
.ye2{bottom:630.333333pt;}
.y104{bottom:631.133333pt;}
.y17c{bottom:632.893333pt;}
.y50{bottom:636.733333pt;}
.y114{bottom:638.013333pt;}
.y18d{bottom:643.613333pt;}
.y16c{bottom:645.693333pt;}
.y139{bottom:649.693333pt;}
.y127{bottom:650.013333pt;}
.y85{bottom:651.933333pt;}
.yb9{bottom:652.573333pt;}
.y9d{bottom:652.893333pt;}
.y157{bottom:654.333333pt;}
.ye1{bottom:663.293333pt;}
.y17b{bottom:665.053333pt;}
.y113{bottom:670.173333pt;}
.y18c{bottom:671.773333pt;}
.y4f{bottom:673.533333pt;}
.y84{bottom:674.013333pt;}
.y16b{bottom:678.013333pt;}
.y138{bottom:681.853333pt;}
.y126{bottom:682.173333pt;}
.ye5{bottom:684.093333pt;}
.y19d{bottom:684.893333pt;}
.y9c{bottom:685.213333pt;}
.y156{bottom:686.493333pt;}
.ydf{bottom:696.093333pt;}
.y83{bottom:696.253333pt;}
.y17a{bottom:697.213333pt;}
.y112{bottom:702.333333pt;}
.y16a{bottom:710.173333pt;}
.y4e{bottom:710.333333pt;}
.y137{bottom:714.013333pt;}
.y125{bottom:714.333333pt;}
.ye4{bottom:715.933333pt;}
.y9b{bottom:717.373333pt;}
.y82{bottom:718.333333pt;}
.y155{bottom:718.653333pt;}
.y4d{bottom:729.053333pt;}
.y179{bottom:729.533333pt;}
.y111{bottom:734.333333pt;}
.y15{bottom:737.373333pt;}
.y81{bottom:740.413333pt;}
.y169{bottom:742.013333pt;}
.ye3{bottom:743.933333pt;}
.y136{bottom:746.173333pt;}
.y124{bottom:746.653333pt;}
.y4c{bottom:747.133333pt;}
.yad{bottom:749.533333pt;}
.y154{bottom:750.813333pt;}
.y9a{bottom:757.853333pt;}
.yb{bottom:758.973333pt;}
.yde{bottom:761.213333pt;}
.y178{bottom:761.373333pt;}
.y80{bottom:762.653333pt;}
.y4b{bottom:765.213333pt;}
.y110{bottom:766.493333pt;}
.y168{bottom:774.173333pt;}
.y135{bottom:778.493333pt;}
.y123{bottom:778.813333pt;}
.y99{bottom:781.693333pt;}
.y153{bottom:783.133333pt;}
.y4a{bottom:783.453333pt;}
.y7f{bottom:784.733333pt;}
.y177{bottom:789.373333pt;}
.ydd{bottom:794.053333pt;}
.y10f{bottom:794.533333pt;}
.y49{bottom:801.853333pt;}
.y167{bottom:802.373333pt;}
.y7e{bottom:806.853333pt;}
.y122{bottom:810.693333pt;}
.y98{bottom:814.053333pt;}
.y152{bottom:815.333333pt;}
.y48{bottom:820.413333pt;}
.ydc{bottom:827.013333pt;}
.y7d{bottom:829.093333pt;}
.y121{bottom:838.693333pt;}
.y134{bottom:842.853333pt;}
.y47{bottom:844.253333pt;}
.y74{bottom:845.213333pt;}
.y97{bottom:846.213333pt;}
.y151{bottom:847.173333pt;}
.y7c{bottom:851.173333pt;}
.ydb{bottom:859.813333pt;}
.y73{bottom:868.760000pt;}
.y46{bottom:871.160000pt;}
.y7b{bottom:873.253333pt;}
.y133{bottom:875.013333pt;}
.y150{bottom:875.173333pt;}
.y96{bottom:878.373333pt;}
.y14f{bottom:891.973333pt;}
.yd9{bottom:892.613333pt;}
.y7a{bottom:895.493333pt;}
.y132{bottom:907.173333pt;}
.y95{bottom:910.213333pt;}
.yb5{bottom:910.533333pt;}
.y79{bottom:917.573333pt;}
.yff{bottom:924.933333pt;}
.yd8{bottom:925.573333pt;}
.y78{bottom:939.653333pt;}
.y94{bottom:942.533333pt;}
.yb4{bottom:942.853333pt;}
.yfe{bottom:957.733333pt;}
.yd6{bottom:958.373333pt;}
.y77{bottom:961.893333pt;}
.y93{bottom:974.693333pt;}
.yb3{bottom:975.013333pt;}
.y75{bottom:983.973333pt;}
.yfc{bottom:990.533333pt;}
.yd4{bottom:991.333333pt;}
.y92{bottom:1006.853333pt;}
.yb2{bottom:1007.173333pt;}
.yfb{bottom:1023.520000pt;}
.y91{bottom:1039.040000pt;}
.yb8{bottom:1039.360000pt;}
.y1{bottom:1042.400000pt;}
.ya{bottom:1055.040000pt;}
.h2b{height:2.546250pt;}
.h9{height:5.092500pt;}
.h5{height:7.666667pt;}
.h2c{height:15.914062pt;}
.h29{height:21.440000pt;}
.h2a{height:21.472000pt;}
.h11{height:21.600000pt;}
.h3a{height:32.146667pt;}
.h35{height:32.160000pt;}
.h39{height:32.178667pt;}
.h37{height:32.192000pt;}
.h3b{height:32.306667pt;}
.h36{height:32.320000pt;}
.h3c{height:32.346667pt;}
.h41{height:32.352000pt;}
.h7{height:33.918667pt;}
.h27{height:43.080000pt;}
.h28{height:47.109375pt;}
.h6{height:47.742188pt;}
.h1a{height:48.343750pt;}
.h30{height:48.375000pt;}
.h3{height:51.518667pt;}
.h1d{height:52.108438pt;}
.h31{height:52.503750pt;}
.hf{height:54.149062pt;}
.hc{height:54.478125pt;}
.h2{height:58.563750pt;}
.h8{height:59.340000pt;}
.h24{height:60.270000pt;}
.h26{height:60.300000pt;}
.h21{height:61.928125pt;}
.h25{height:62.781250pt;}
.h23{height:62.812500pt;}
.h3d{height:64.306667pt;}
.h3f{height:64.320000pt;}
.h3e{height:64.340000pt;}
.h34{height:64.352000pt;}
.h33{height:64.480000pt;}
.h32{height:64.752187pt;}
.h38{height:64.978667pt;}
.h2f{height:73.454062pt;}
.hb{height:73.490625pt;}
.h40{height:75.410625pt;}
.h22{height:75.465000pt;}
.h1b{height:75.965312pt;}
.h42{height:77.951250pt;}
.h15{height:78.515625pt;}
.h16{height:80.625000pt;}
.h2e{height:81.645937pt;}
.h2d{height:82.935000pt;}
.h1c{height:83.499062pt;}
.h17{height:83.540625pt;}
.h20{height:85.785000pt;}
.h19{height:94.171875pt;}
.hd{height:96.750000pt;}
.h13{height:107.715000pt;}
.h12{height:112.000000pt;}
.h4{height:118.035000pt;}
.he{height:136.305000pt;}
.h14{height:139.546667pt;}
.h1e{height:146.353125pt;}
.h10{height:163.828125pt;}
.ha{height:282.146667pt;}
.h18{height:326.093333pt;}
.h1f{height:891.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:39.710667pt;}
.w19{width:56.510667pt;}
.w16{width:64.658667pt;}
.w17{width:69.746667pt;}
.w13{width:70.880000pt;}
.w14{width:72.512000pt;}
.w15{width:73.106667pt;}
.w18{width:78.866667pt;}
.wd{width:81.280000pt;}
.wc{width:101.472000pt;}
.w20{width:114.240000pt;}
.w1e{width:114.560000pt;}
.w5{width:118.590667pt;}
.w1f{width:124.512000pt;}
.w11{width:138.413333pt;}
.wa{width:139.226667pt;}
.w10{width:144.026667pt;}
.w12{width:149.266667pt;}
.w1c{width:150.893333pt;}
.w1b{width:150.906667pt;}
.wf{width:162.417333pt;}
.w9{width:182.106667pt;}
.w1a{width:245.137333pt;}
.w1d{width:287.266667pt;}
.w2{width:287.905333pt;}
.w7{width:298.145333pt;}
.w4{width:328.573333pt;}
.w3{width:329.345333pt;}
.w8{width:335.746667pt;}
.wb{width:465.213333pt;}
.w6{width:508.400000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.078667pt;}
.x5{left:7.518667pt;}
.x6c{left:8.626667pt;}
.x3{left:9.758667pt;}
.x47{left:11.840000pt;}
.x64{left:12.786667pt;}
.x68{left:14.385333pt;}
.x14{left:15.666667pt;}
.x16{left:17.266667pt;}
.x5f{left:18.706667pt;}
.x67{left:20.000000pt;}
.x62{left:21.440000pt;}
.x63{left:22.546667pt;}
.x4a{left:23.520000pt;}
.x10{left:25.106667pt;}
.x65{left:26.080000pt;}
.x66{left:27.186667pt;}
.x50{left:28.160000pt;}
.x12{left:29.746667pt;}
.x1f{left:31.026667pt;}
.x6a{left:32.306667pt;}
.x2{left:35.681333pt;}
.x49{left:36.680000pt;}
.x6b{left:39.360000pt;}
.x44{left:41.800000pt;}
.x1a{left:42.910667pt;}
.x52{left:45.960000pt;}
.x58{left:48.145333pt;}
.x5a{left:49.120000pt;}
.x5d{left:51.680000pt;}
.xf{left:52.826667pt;}
.x69{left:54.545333pt;}
.x1b{left:55.546667pt;}
.x77{left:58.266667pt;}
.x19{left:59.230667pt;}
.x1e{left:61.626667pt;}
.x24{left:62.910667pt;}
.x79{left:63.825333pt;}
.xc{left:65.786667pt;}
.x4{left:68.001333pt;}
.x9{left:69.441333pt;}
.x1d{left:71.706667pt;}
.x20{left:73.306667pt;}
.x1{left:75.520000pt;}
.x2b{left:76.960000pt;}
.x33{left:78.240000pt;}
.x26{left:83.065333pt;}
.x39{left:84.512000pt;}
.x35{left:85.632000pt;}
.x78{left:88.945333pt;}
.x25{left:90.745333pt;}
.x22{left:91.866667pt;}
.x3b{left:93.472000pt;}
.x4e{left:97.146667pt;}
.x7a{left:100.145333pt;}
.x2d{left:101.792000pt;}
.x4b{left:103.866667pt;}
.x55{left:111.552000pt;}
.x3e{left:113.312000pt;}
.x4d{left:114.426667pt;}
.xd{left:117.626667pt;}
.x57{left:119.081333pt;}
.x21{left:122.106667pt;}
.x56{left:125.312000pt;}
.x70{left:126.752000pt;}
.x51{left:130.426667pt;}
.x18{left:131.866667pt;}
.x6e{left:136.826667pt;}
.x1c{left:141.306667pt;}
.x17{left:144.186667pt;}
.x23{left:148.985333pt;}
.x48{left:150.586667pt;}
.x38{left:155.706667pt;}
.x7b{left:158.906667pt;}
.x15{left:160.186667pt;}
.x32{left:165.786667pt;}
.x28{left:167.866667pt;}
.x11{left:174.586667pt;}
.x4f{left:177.026667pt;}
.x4c{left:178.626667pt;}
.x2f{left:180.346667pt;}
.x7f{left:186.586667pt;}
.x13{left:187.706667pt;}
.xb{left:190.120000pt;}
.x74{left:191.546667pt;}
.x30{left:193.146667pt;}
.x31{left:199.706667pt;}
.x54{left:201.306667pt;}
.x80{left:204.986667pt;}
.x83{left:211.706667pt;}
.x3d{left:221.786667pt;}
.x40{left:224.186667pt;}
.x72{left:234.106667pt;}
.x2c{left:235.226667pt;}
.x3a{left:249.506667pt;}
.x37{left:251.106667pt;}
.xe{left:254.133333pt;}
.x34{left:274.146667pt;}
.x36{left:275.106667pt;}
.x3c{left:279.106667pt;}
.x59{left:282.146667pt;}
.x46{left:305.986667pt;}
.x42{left:312.386667pt;}
.x8{left:313.506667pt;}
.x7{left:320.866667pt;}
.x2e{left:331.426667pt;}
.x84{left:346.786667pt;}
.x5e{left:353.666667pt;}
.x27{left:369.666667pt;}
.x75{left:372.066667pt;}
.x29{left:376.546667pt;}
.x6{left:397.346667pt;}
.x87{left:411.133333pt;}
.x5b{left:426.826667pt;}
.x7c{left:446.813333pt;}
.x60{left:500.586667pt;}
.x76{left:523.626667pt;}
.x85{left:530.973333pt;}
.x43{left:536.893333pt;}
.x2a{left:559.293333pt;}
.x7d{left:561.693333pt;}
.x5c{left:565.893333pt;}
.x86{left:603.973333pt;}
.x41{left:627.173333pt;}
.x73{left:631.813333pt;}
.x61{left:636.293333pt;}
.x45{left:639.013333pt;}
.x82{left:645.093333pt;}
.x81{left:664.453333pt;}
.x7e{left:671.333333pt;}
.x6f{left:675.813333pt;}
.x71{left:677.573333pt;}
.x3f{left:679.653333pt;}
.x6d{left:687.493333pt;}
.x53{left:715.173333pt;}
.x88{left:718.213333pt;}
}




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