
    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_4acf8398ee41803b3d116382.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_ecfc7791ce8658e35eb4553d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_fdc54ae0170ce44b8cd7e085.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_074ea1673b85c5f20c01d787.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.903809;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_debfeb1378be7225cae9f510.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_98fe9394163ecf3be2ca28dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_99ea0727ca14cbbd37ac9eb0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.902344;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_7a8a52f01901dabca6dee4ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.677734;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_beb75c4c3b93b46e373a5b8f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.068848;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_108f13c5e084019a582c78be.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.677734;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_3870ea0089fba64da1536c85.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900391;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_38691a23f951bdf80f9b3db0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.675781;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_fe9bf72522f65e62bb0712d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_24dd348d2f6c39ba23baa4c6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_b8321c863939d1c7fe91cf70.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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_65ccd9584208fd4dff234198.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_735d77581b2e0b2eb9aa6b84.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0ce739c86759eb037af0ab21.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_8646bfef206f40159f88b76c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_7a773224cc3c4baac6061150.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_b1250d8aaaf303e3d8709cc2.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.682617;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:ff16;src:url('chunks/assets/font_b41a1df753d2c2cec1474408.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-0.459648px;}
.ls1c{letter-spacing:-0.338688px;}
.ls6{letter-spacing:-0.328032px;}
.ls17{letter-spacing:-0.320544px;}
.ls4{letter-spacing:-0.318384px;}
.ls7{letter-spacing:-0.308736px;}
.ls1a{letter-spacing:-0.254016px;}
.ls16{letter-spacing:-0.241920px;}
.ls1e{letter-spacing:-0.198720px;}
.ls5{letter-spacing:-0.173664px;}
.ls14{letter-spacing:-0.158976px;}
.ls1b{letter-spacing:-0.132480px;}
.ls13{letter-spacing:-0.119232px;}
.ls18{letter-spacing:-0.096768px;}
.ls1d{letter-spacing:-0.079488px;}
.ls15{letter-spacing:-0.059616px;}
.ls9{letter-spacing:-0.014400px;}
.ls3{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000576px;}
.ls30{letter-spacing:0.007056px;}
.lsc{letter-spacing:0.007200px;}
.lsa{letter-spacing:0.014400px;}
.ls32{letter-spacing:0.035424px;}
.ls34{letter-spacing:0.036000px;}
.ls24{letter-spacing:0.060048px;}
.ls2f{letter-spacing:0.119952px;}
.ls2a{letter-spacing:0.120096px;}
.ls2{letter-spacing:0.159840px;}
.ls2e{letter-spacing:0.200448px;}
.ls1f{letter-spacing:0.239040px;}
.ls26{letter-spacing:0.242208px;}
.ls33{letter-spacing:0.283968px;}
.ls10{letter-spacing:0.294336px;}
.ls2c{letter-spacing:0.310752px;}
.ls27{letter-spacing:0.317376px;}
.ls0{letter-spacing:0.322704px;}
.ls20{letter-spacing:0.358560px;}
.ls8{letter-spacing:0.359136px;}
.ls2d{letter-spacing:0.367488px;}
.ls1{letter-spacing:0.370512px;}
.ls22{letter-spacing:0.394416px;}
.ls2b{letter-spacing:0.400896px;}
.lsf{letter-spacing:1.202400px;}
.ls12{letter-spacing:1.772640px;}
.ls35{letter-spacing:3.765600px;}
.ls11{letter-spacing:7.195680px;}
.ls25{letter-spacing:33.984000px;}
.ls31{letter-spacing:44.776944px;}
.ls21{letter-spacing:54.866736px;}
.ls29{letter-spacing:64.007424px;}
.lse{letter-spacing:64.728000px;}
.ls23{letter-spacing:66.781440px;}
.lsb{letter-spacing:73.728000px;}
.lsd{letter-spacing:100.728000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14{word-spacing:-30.250512px;}
.ws12{word-spacing:-30.238560px;}
.ws0{word-spacing:-30.202704px;}
.ws16{word-spacing:-30.190752px;}
.ws10{word-spacing:-30.119040px;}
.ws2{word-spacing:-21.239136px;}
.ws17{word-spacing:-21.163968px;}
.ws15{word-spacing:-21.122208px;}
.ws3{word-spacing:-18.014400px;}
.ws4{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.985600px;}
.wse{word-spacing:-16.480512px;}
.ws6{word-spacing:-16.440768px;}
.wsf{word-spacing:-16.361280px;}
.ws5{word-spacing:-16.279200px;}
.wsd{word-spacing:-16.257600px;}
.ws7{word-spacing:-14.910624px;}
.ws8{word-spacing:-14.878080px;}
.wsb{word-spacing:-14.837760px;}
.wsc{word-spacing:-14.781312px;}
.ws9{word-spacing:-13.571712px;}
.wsa{word-spacing:-13.414464px;}
.ws13{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._e{margin-left:-15.810768px;}
._f{margin-left:-13.280832px;}
._11{margin-left:-11.753568px;}
._14{margin-left:-10.578240px;}
._d{margin-left:-8.177472px;}
._12{margin-left:-6.535872px;}
._10{margin-left:-5.513472px;}
._13{margin-left:-4.240224px;}
._5{margin-left:-3.117600px;}
._3{margin-left:-2.076192px;}
._0{margin-left:-1.075680px;}
._1{width:1.061280px;}
._7{width:2.177568px;}
._17{width:3.294720px;}
._a{width:4.370400px;}
._6{width:6.112800px;}
._8{width:7.977600px;}
._15{width:9.136800px;}
._1d{width:10.368288px;}
._9{width:11.376000px;}
._4{width:12.448800px;}
._22{width:13.456800px;}
._16{width:14.486400px;}
._18{width:15.631200px;}
._19{width:16.906752px;}
._c{width:19.749600px;}
._b{width:20.764800px;}
._2{width:21.816000px;}
._23{width:23.046336px;}
._21{width:24.379632px;}
._1a{width:25.696800px;}
._26{width:26.791200px;}
._25{width:27.986400px;}
._1b{width:30.506976px;}
._1c{width:31.591584px;}
._24{width:32.788800px;}
._1e{width:34.459200px;}
._27{width:38.721600px;}
._2d{width:39.852000px;}
._29{width:41.619456px;}
._1f{width:44.647200px;}
._28{width:57.312000px;}
._2b{width:62.611200px;}
._2c{width:79.567200px;}
._20{width:189.842400px;}
._2a{width:518.961600px;}
._2e{width:869.465376px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs7{font-size:70.588238px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs3{font-size:83.520000px;}
.fs1{font-size:96.480000px;}
.fs2{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y16{bottom:5.220000px;}
.ya8{bottom:14.280000px;}
.y112{bottom:14.460000px;}
.y19f{bottom:14.520000px;}
.y106{bottom:14.580000px;}
.y10d{bottom:14.700000px;}
.y1a4{bottom:15.060000px;}
.y10a{bottom:15.120000px;}
.ya4{bottom:15.240000px;}
.y11b{bottom:15.300000px;}
.y110{bottom:15.420000px;}
.y120{bottom:15.600000px;}
.y1a1{bottom:15.840000px;}
.ya7{bottom:45.240000px;}
.y118{bottom:45.540000px;}
.y10c{bottom:45.660000px;}
.y115{bottom:45.780000px;}
.y113{bottom:46.200000px;}
.y11a{bottom:46.260000px;}
.y109{bottom:46.440000px;}
.y11f{bottom:46.560000px;}
.y10f{bottom:46.740000px;}
.y15{bottom:52.500000px;}
.y14{bottom:57.720000px;}
.y117{bottom:76.500000px;}
.ya6{bottom:76.560000px;}
.y108{bottom:77.400000px;}
.y11e{bottom:77.880000px;}
.y11d{bottom:108.840000px;}
.ya2{bottom:112.800000px;}
.y13{bottom:115.320000px;}
.y178{bottom:119.280000px;}
.y21e{bottom:123.960000px;}
.y210{bottom:126.840000px;}
.y1f9{bottom:129.720000px;}
.y141{bottom:130.440000px;}
.y1c7{bottom:130.800000px;}
.yf7{bottom:133.320000px;}
.y18e{bottom:134.040000px;}
.y53{bottom:138.000000px;}
.y1ab{bottom:139.440000px;}
.ya1{bottom:143.760000px;}
.y111{bottom:145.500000px;}
.y12{bottom:146.280000px;}
.y36{bottom:149.160000px;}
.y177{bottom:150.240000px;}
.y100{bottom:153.480000px;}
.y21d{bottom:154.920000px;}
.y20f{bottom:158.160000px;}
.y131{bottom:159.960000px;}
.y1f8{bottom:160.680000px;}
.ybb{bottom:161.400000px;}
.y1c6{bottom:161.760000px;}
.yf6{bottom:164.640000px;}
.y18d{bottom:165.000000px;}
.y1aa{bottom:170.400000px;}
.yd8{bottom:171.120000px;}
.y8a{bottom:174.360000px;}
.ya0{bottom:174.720000px;}
.y10e{bottom:175.500000px;}
.y11{bottom:177.240000px;}
.y52{bottom:179.760000px;}
.y176{bottom:181.560000px;}
.y35{bottom:182.640000px;}
.yff{bottom:184.440000px;}
.y21c{bottom:186.240000px;}
.y20e{bottom:189.120000px;}
.y9f{bottom:189.480000px;}
.y130{bottom:190.920000px;}
.y1f7{bottom:191.640000px;}
.y140{bottom:192.720000px;}
.y1c5{bottom:193.080000px;}
.y22b{bottom:194.880000px;}
.y220{bottom:195.240000px;}
.yf5{bottom:195.600000px;}
.y18c{bottom:195.960000px;}
.y1a9{bottom:201.720000px;}
.yd7{bottom:202.080000px;}
.y89{bottom:206.040000px;}
.y10{bottom:208.200000px;}
.y175{bottom:212.520000px;}
.yba{bottom:213.240000px;}
.yfe{bottom:215.400000px;}
.y34{bottom:216.120000px;}
.y21b{bottom:217.200000px;}
.y20d{bottom:220.080000px;}
.y51{bottom:220.440000px;}
.y12f{bottom:222.240000px;}
.y1f6{bottom:222.600000px;}
.y13f{bottom:223.680000px;}
.y1db{bottom:224.040000px;}
.y1c4{bottom:224.400000px;}
.y159{bottom:224.760000px;}
.yf4{bottom:226.560000px;}
.y18b{bottom:227.280000px;}
.y6d{bottom:232.680000px;}
.yd6{bottom:233.040000px;}
.y88{bottom:237.000000px;}
.y10b{bottom:238.500000px;}
.yf{bottom:239.520000px;}
.y9e{bottom:241.320000px;}
.y174{bottom:243.480000px;}
.yfd{bottom:246.360000px;}
.y33{bottom:247.440000px;}
.y21a{bottom:248.160000px;}
.y20c{bottom:251.040000px;}
.y12e{bottom:253.200000px;}
.y1f5{bottom:253.920000px;}
.y13e{bottom:254.640000px;}
.y1da{bottom:255.000000px;}
.y158{bottom:255.720000px;}
.y1c3{bottom:256.440000px;}
.yf3{bottom:257.520000px;}
.y50{bottom:259.680000px;}
.y18a{bottom:261.120000px;}
.y1a8{bottom:263.640000px;}
.yd5{bottom:264.000000px;}
.yb9{bottom:265.080000px;}
.y6c{bottom:265.800000px;}
.y87{bottom:267.960000px;}
.y173{bottom:274.440000px;}
.ye{bottom:275.160000px;}
.yfc{bottom:277.680000px;}
.y32{bottom:278.400000px;}
.y219{bottom:279.120000px;}
.y20b{bottom:282.360000px;}
.y12d{bottom:284.160000px;}
.y1f4{bottom:284.880000px;}
.y13d{bottom:285.600000px;}
.y1d9{bottom:285.960000px;}
.y157{bottom:286.680000px;}
.y1c2{bottom:287.400000px;}
.yf2{bottom:288.840000px;}
.y15a{bottom:289.200000px;}
.y9d{bottom:293.160000px;}
.y1a7{bottom:294.600000px;}
.yd4{bottom:295.320000px;}
.y189{bottom:297.480000px;}
.y22a{bottom:298.200000px;}
.y4f{bottom:298.920000px;}
.y6b{bottom:299.640000px;}
.y107{bottom:300.000000px;}
.y172{bottom:305.400000px;}
.yfb{bottom:308.640000px;}
.y31{bottom:309.360000px;}
.y218{bottom:310.440000px;}
.y20a{bottom:313.320000px;}
.y12c{bottom:315.120000px;}
.y1f3{bottom:315.840000px;}
.yd{bottom:316.560000px;}
.y13c{bottom:316.920000px;}
.y1d8{bottom:317.280000px;}
.y156{bottom:318.000000px;}
.y1c1{bottom:318.360000px;}
.yf1{bottom:319.800000px;}
.y1a6{bottom:325.560000px;}
.yd3{bottom:326.280000px;}
.y188{bottom:328.440000px;}
.y86{bottom:330.240000px;}
.y6a{bottom:336.000000px;}
.y171{bottom:336.720000px;}
.y4e{bottom:338.160000px;}
.yfa{bottom:339.600000px;}
.y30{bottom:340.320000px;}
.y1a5{bottom:342.000000px;}
.y217{bottom:342.480000px;}
.y209{bottom:344.280000px;}
.y9c{bottom:344.640000px;}
.y12b{bottom:346.440000px;}
.y1f2{bottom:346.800000px;}
.y13b{bottom:347.880000px;}
.y1d7{bottom:348.240000px;}
.y155{bottom:348.960000px;}
.y1c0{bottom:349.680000px;}
.y229{bottom:350.040000px;}
.yf0{bottom:350.760000px;}
.yd2{bottom:357.600000px;}
.yc{bottom:357.960000px;}
.y187{bottom:359.400000px;}
.y85{bottom:361.200000px;}
.y170{bottom:367.680000px;}
.yb8{bottom:368.400000px;}
.y2f{bottom:371.640000px;}
.y69{bottom:372.360000px;}
.y1a3{bottom:373.500000px;}
.y216{bottom:373.800000px;}
.y208{bottom:375.240000px;}
.yf9{bottom:376.320000px;}
.y4d{bottom:377.400000px;}
.y1f1{bottom:378.120000px;}
.y13a{bottom:378.840000px;}
.y1d6{bottom:379.200000px;}
.y154{bottom:379.920000px;}
.y1bf{bottom:380.640000px;}
.yef{bottom:381.720000px;}
.y186{bottom:390.720000px;}
.yd1{bottom:391.440000px;}
.y84{bottom:392.160000px;}
.y105{bottom:394.500000px;}
.y9b{bottom:396.480000px;}
.y16f{bottom:399.000000px;}
.y228{bottom:401.880000px;}
.y2e{bottom:402.600000px;}
.yb{bottom:404.040000px;}
.y215{bottom:404.760000px;}
.y1a2{bottom:405.000000px;}
.y207{bottom:406.560000px;}
.y68{bottom:408.360000px;}
.y1f0{bottom:409.080000px;}
.y139{bottom:409.800000px;}
.y1d5{bottom:410.160000px;}
.y153{bottom:410.880000px;}
.y1be{bottom:411.600000px;}
.yee{bottom:413.040000px;}
.y4c{bottom:415.200000px;}
.yb7{bottom:420.240000px;}
.y185{bottom:421.680000px;}
.yd0{bottom:422.400000px;}
.y83{bottom:423.120000px;}
.y16e{bottom:432.840000px;}
.y2d{bottom:433.560000px;}
.y1a0{bottom:435.000000px;}
.y214{bottom:435.720000px;}
.y206{bottom:437.520000px;}
.y12a{bottom:439.320000px;}
.y1ef{bottom:440.040000px;}
.y104{bottom:440.760000px;}
.y1d4{bottom:441.480000px;}
.y152{bottom:442.200000px;}
.y4b{bottom:442.560000px;}
.yed{bottom:444.000000px;}
.y67{bottom:444.720000px;}
.y9a{bottom:448.320000px;}
.y184{bottom:452.640000px;}
.ycf{bottom:453.360000px;}
.y82{bottom:454.440000px;}
.ya{bottom:455.880000px;}
.y16d{bottom:463.800000px;}
.y2c{bottom:464.520000px;}
.y213{bottom:466.680000px;}
.y19e{bottom:468.000000px;}
.y205{bottom:469.920000px;}
.y4a{bottom:470.280000px;}
.y129{bottom:470.640000px;}
.y1ee{bottom:471.000000px;}
.yb6{bottom:472.080000px;}
.y1d3{bottom:472.440000px;}
.y151{bottom:473.160000px;}
.y1bd{bottom:473.520000px;}
.yec{bottom:474.960000px;}
.y66{bottom:481.080000px;}
.yce{bottom:484.680000px;}
.y81{bottom:485.400000px;}
.y183{bottom:486.480000px;}
.y16c{bottom:494.760000px;}
.y2b{bottom:495.840000px;}
.y212{bottom:498.000000px;}
.y49{bottom:498.720000px;}
.y99{bottom:500.160000px;}
.y204{bottom:500.880000px;}
.y128{bottom:501.600000px;}
.y1ed{bottom:502.320000px;}
.y103{bottom:503.040000px;}
.y1d2{bottom:503.400000px;}
.y150{bottom:504.120000px;}
.y1bc{bottom:504.840000px;}
.y227{bottom:505.200000px;}
.yeb{bottom:505.920000px;}
.y9{bottom:507.720000px;}
.y19d{bottom:514.200000px;}
.ycd{bottom:515.640000px;}
.y80{bottom:516.360000px;}
.y65{bottom:517.080000px;}
.y182{bottom:522.840000px;}
.yb5{bottom:523.560000px;}
.y2a{bottom:526.800000px;}
.y16b{bottom:528.600000px;}
.y211{bottom:531.840000px;}
.y203{bottom:532.200000px;}
.y127{bottom:532.560000px;}
.y1ec{bottom:533.280000px;}
.y102{bottom:534.000000px;}
.y1d1{bottom:534.360000px;}
.y14f{bottom:535.080000px;}
.y1bb{bottom:535.800000px;}
.yea{bottom:537.240000px;}
.y48{bottom:537.960000px;}
.y19c{bottom:545.160000px;}
.ycc{bottom:546.600000px;}
.y7f{bottom:547.320000px;}
.y98{bottom:551.640000px;}
.y64{bottom:553.440000px;}
.y181{bottom:554.160000px;}
.y226{bottom:557.040000px;}
.y29{bottom:557.760000px;}
.y8{bottom:559.560000px;}
.y17c{bottom:562.080000px;}
.y1eb{bottom:564.240000px;}
.y138{bottom:564.960000px;}
.y101{bottom:565.320000px;}
.y1d0{bottom:565.680000px;}
.y14e{bottom:566.040000px;}
.y126{bottom:566.760000px;}
.ye9{bottom:568.200000px;}
.yb4{bottom:575.400000px;}
.y19b{bottom:576.480000px;}
.ycb{bottom:577.560000px;}
.y47{bottom:578.640000px;}
.y180{bottom:585.120000px;}
.y63{bottom:589.440000px;}
.y28{bottom:591.600000px;}
.y17b{bottom:593.040000px;}
.y1ea{bottom:595.200000px;}
.y137{bottom:596.280000px;}
.y1cf{bottom:596.640000px;}
.y14d{bottom:597.360000px;}
.y125{bottom:597.720000px;}
.ye8{bottom:599.160000px;}
.y16a{bottom:601.320000px;}
.y97{bottom:603.480000px;}
.y19a{bottom:607.440000px;}
.yca{bottom:608.520000px;}
.y225{bottom:608.880000px;}
.y7e{bottom:609.600000px;}
.y7{bottom:611.040000px;}
.y17f{bottom:616.080000px;}
.y46{bottom:620.760000px;}
.y17a{bottom:624.360000px;}
.y27{bottom:625.080000px;}
.y62{bottom:625.800000px;}
.y1e9{bottom:626.520000px;}
.yb3{bottom:627.240000px;}
.y1ce{bottom:627.600000px;}
.y14c{bottom:628.320000px;}
.y124{bottom:628.680000px;}
.y1ba{bottom:629.040000px;}
.ye7{bottom:630.120000px;}
.y169{bottom:632.280000px;}
.y199{bottom:638.400000px;}
.yc9{bottom:639.840000px;}
.y7d{bottom:640.560000px;}
.y17e{bottom:647.040000px;}
.y96{bottom:655.320000px;}
.y26{bottom:656.040000px;}
.y1e8{bottom:657.480000px;}
.y1fa{bottom:657.744708px;}
.y6{bottom:657.840000px;}
.y136{bottom:658.200000px;}
.y1cd{bottom:658.560000px;}
.y21f{bottom:658.920000px;}
.y14b{bottom:659.280000px;}
.y123{bottom:659.640000px;}
.y45{bottom:660.000000px;}
.y224{bottom:660.360000px;}
.ye6{bottom:661.440000px;}
.y61{bottom:662.160000px;}
.y168{bottom:663.600000px;}
.y198{bottom:669.360000px;}
.yc8{bottom:670.800000px;}
.y7c{bottom:671.520000px;}
.y17d{bottom:674.400000px;}
.yb2{bottom:679.080000px;}
.y25{bottom:687.000000px;}
.y44{bottom:687.360000px;}
.y1e7{bottom:688.440000px;}
.y135{bottom:689.160000px;}
.y1cc{bottom:689.880000px;}
.y14a{bottom:690.240000px;}
.y122{bottom:690.960000px;}
.ye5{bottom:692.400000px;}
.y167{bottom:694.560000px;}
.y95{bottom:697.440000px;}
.y60{bottom:698.160000px;}
.y5{bottom:699.240000px;}
.yc7{bottom:701.760000px;}
.y7b{bottom:702.840000px;}
.y197{bottom:703.200000px;}
.y223{bottom:712.200000px;}
.y43{bottom:714.720000px;}
.y24{bottom:718.320000px;}
.y1e6{bottom:719.400000px;}
.y134{bottom:720.480000px;}
.y1cb{bottom:720.840000px;}
.yb1{bottom:721.200000px;}
.y149{bottom:721.560000px;}
.y121{bottom:721.920000px;}
.ye4{bottom:723.360000px;}
.y166{bottom:725.520000px;}
.y94{bottom:728.400000px;}
.yc6{bottom:732.720000px;}
.y7a{bottom:733.800000px;}
.y5f{bottom:734.520000px;}
.y11c{bottom:738.000000px;}
.y196{bottom:739.920000px;}
.y4{bottom:740.640000px;}
.y42{bottom:742.440000px;}
.y23{bottom:749.280000px;}
.y1e5{bottom:750.360000px;}
.y133{bottom:751.440000px;}
.y1ca{bottom:751.800000px;}
.yb0{bottom:752.160000px;}
.y148{bottom:752.520000px;}
.y1b9{bottom:753.240000px;}
.ye3{bottom:754.320000px;}
.y165{bottom:756.480000px;}
.y93{bottom:759.720000px;}
.yc5{bottom:764.040000px;}
.y79{bottom:764.760000px;}
.y41{bottom:769.800000px;}
.y5e{bottom:770.520000px;}
.y195{bottom:772.320000px;}
.y3{bottom:773.760000px;}
.y22{bottom:780.240000px;}
.y1e4{bottom:781.680000px;}
.y132{bottom:782.400000px;}
.y1c9{bottom:782.760000px;}
.yaf{bottom:783.120000px;}
.y147{bottom:783.480000px;}
.y1b8{bottom:784.200000px;}
.ye2{bottom:785.280000px;}
.y164{bottom:787.800000px;}
.y92{bottom:790.680000px;}
.yc4{bottom:795.000000px;}
.y78{bottom:795.720000px;}
.y40{bottom:798.600000px;}
.y194{bottom:804.720000px;}
.y5d{bottom:806.880000px;}
.y21{bottom:811.200000px;}
.y1fe{bottom:812.640000px;}
.y1e2{bottom:813.000000px;}
.y1e3{bottom:813.264708px;}
.y179{bottom:813.720000px;}
.yae{bottom:814.080000px;}
.y1c8{bottom:814.344708px;}
.y146{bottom:814.440000px;}
.y1b7{bottom:815.160000px;}
.y222{bottom:815.520000px;}
.ye1{bottom:816.600000px;}
.y163{bottom:818.760000px;}
.y91{bottom:823.080000px;}
.yc3{bottom:825.960000px;}
.y77{bottom:826.680000px;}
.y3f{bottom:836.400000px;}
.y193{bottom:836.760000px;}
.y20{bottom:842.520000px;}
.y5c{bottom:843.240000px;}
.y1fd{bottom:843.600000px;}
.y1e1{bottom:845.040000px;}
.yad{bottom:845.400000px;}
.y145{bottom:845.760000px;}
.y1b6{bottom:846.120000px;}
.ye0{bottom:847.560000px;}
.y162{bottom:849.720000px;}
.y90{bottom:854.400000px;}
.yc2{bottom:856.920000px;}
.y76{bottom:858.000000px;}
.y119{bottom:862.500000px;}
.y3e{bottom:863.760000px;}
.y221{bottom:867.360000px;}
.y192{bottom:868.080000px;}
.y1f{bottom:873.480000px;}
.y202{bottom:874.560000px;}
.y1fb{bottom:874.920000px;}
.y1fc{bottom:875.184708px;}
.y1e0{bottom:876.000000px;}
.yac{bottom:876.360000px;}
.y144{bottom:876.720000px;}
.y1b5{bottom:877.440000px;}
.ydf{bottom:878.520000px;}
.y5b{bottom:879.240000px;}
.y161{bottom:880.680000px;}
.y8f{bottom:886.440000px;}
.yc1{bottom:888.240000px;}
.y75{bottom:888.960000px;}
.y3d{bottom:891.480000px;}
.y191{bottom:900.480000px;}
.y1e{bottom:904.440000px;}
.y201{bottom:905.880000px;}
.y1df{bottom:906.960000px;}
.yab{bottom:907.320000px;}
.y143{bottom:907.680000px;}
.y1b4{bottom:908.400000px;}
.yde{bottom:909.480000px;}
.y160{bottom:912.000000px;}
.y5a{bottom:915.600000px;}
.y8e{bottom:917.400000px;}
.yc0{bottom:919.200000px;}
.y74{bottom:919.920000px;}
.y3c{bottom:920.280000px;}
.y116{bottom:925.500000px;}
.y190{bottom:932.520000px;}
.y1d{bottom:935.400000px;}
.y1ff{bottom:937.200000px;}
.y200{bottom:937.464704px;}
.yaa{bottom:938.280000px;}
.y1b3{bottom:939.360000px;}
.y142{bottom:940.440000px;}
.ydd{bottom:940.800000px;}
.y15f{bottom:942.960000px;}
.y8d{bottom:948.720000px;}
.ybf{bottom:950.160000px;}
.y73{bottom:950.880000px;}
.y59{bottom:951.960000px;}
.y3b{bottom:960.600000px;}
.y18f{bottom:966.360000px;}
.y1c{bottom:966.720000px;}
.y1de{bottom:969.240000px;}
.ya9{bottom:969.600000px;}
.y1b2{bottom:970.320000px;}
.ydc{bottom:971.760000px;}
.y15e{bottom:973.920000px;}
.y8c{bottom:980.760000px;}
.ybe{bottom:981.480000px;}
.y72{bottom:982.200000px;}
.ya5{bottom:987.000000px;}
.y58{bottom:987.960000px;}
.y1b{bottom:997.680000px;}
.y1dd{bottom:1000.200000px;}
.y1b1{bottom:1001.640000px;}
.y3a{bottom:1002.720000px;}
.y15d{bottom:1004.880000px;}
.y8b{bottom:1012.080000px;}
.y71{bottom:1013.160000px;}
.ybd{bottom:1018.200000px;}
.y114{bottom:1018.500000px;}
.y57{bottom:1024.320000px;}
.y1a{bottom:1028.640000px;}
.y1dc{bottom:1031.520000px;}
.y1b0{bottom:1032.600000px;}
.ydb{bottom:1033.680000px;}
.y15c{bottom:1035.840000px;}
.y70{bottom:1044.120000px;}
.y39{bottom:1044.480000px;}
.y19{bottom:1059.600000px;}
.y56{bottom:1060.320000px;}
.y1af{bottom:1063.560000px;}
.ybc{bottom:1063.920000px;}
.yda{bottom:1065.000000px;}
.y15b{bottom:1069.680000px;}
.y6f{bottom:1075.080000px;}
.ya3{bottom:1080.000000px;}
.y38{bottom:1086.600000px;}
.y18{bottom:1090.920000px;}
.y55{bottom:1094.160000px;}
.y1ae{bottom:1094.520000px;}
.yd9{bottom:1095.960000px;}
.y2{bottom:1111.800000px;}
.y6e{bottom:1115.760000px;}
.y17{bottom:1124.400000px;}
.y1ac{bottom:1125.840000px;}
.y1ad{bottom:1126.104708px;}
.y54{bottom:1126.560000px;}
.y37{bottom:1126.920000px;}
.yf8{bottom:1127.280000px;}
.y1{bottom:1128.720000px;}
.h5{height:22.500000px;}
.hc{height:31.500000px;}
.ha{height:33.000000px;}
.h1{height:47.988281px;}
.h11{height:49.992188px;}
.h10{height:51.011032px;}
.h9{height:58.833281px;}
.hd{height:63.000000px;}
.h2{height:63.175781px;}
.h8{height:63.843750px;}
.h7{height:63.949219px;}
.he{height:64.500000px;}
.h6{height:74.181094px;}
.h3{height:85.691953px;}
.hb{height:94.500000px;}
.h4{height:106.155703px;}
.hf{height:126.000000px;}
.h0{height:1263.000000px;}
.w1{width:12.000000px;}
.w4{width:21.000000px;}
.w2{width:159.000000px;}
.w3{width:160.500000px;}
.w6{width:319.500000px;}
.w5{width:405.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x10{left:1.140000px;}
.x1e{left:8.219964px;}
.x31{left:9.720696px;}
.x1d{left:12.049320px;}
.x32{left:13.593768px;}
.x2a{left:14.717280px;}
.x27{left:17.709960px;}
.x2c{left:20.197272px;}
.x2e{left:21.212400px;}
.x25{left:23.967768px;}
.x19{left:25.819332px;}
.x28{left:28.964352px;}
.x26{left:30.941904px;}
.x2f{left:32.462400px;}
.x2d{left:34.573236px;}
.x1b{left:36.929880px;}
.x29{left:39.073236px;}
.x18{left:43.703616px;}
.x30{left:46.570308px;}
.x2b{left:48.203616px;}
.x22{left:53.187024px;}
.x23{left:59.301276px;}
.x2{left:127.439928px;}
.x12{left:145.439928px;}
.xe{left:154.439928px;}
.x13{left:163.439928px;}
.x24{left:164.977200px;}
.x17{left:170.650980px;}
.x11{left:180.539784px;}
.x42{left:203.148216px;}
.x35{left:208.439928px;}
.x1f{left:210.275028px;}
.x4{left:214.486452px;}
.x7{left:234.077256px;}
.x8{left:236.185560px;}
.x9{left:244.110348px;}
.x41{left:257.318496px;}
.x54{left:258.565068px;}
.x15{left:259.965072px;}
.x50{left:263.561652px;}
.x59{left:265.574340px;}
.x3d{left:272.951640px;}
.x34{left:279.393660px;}
.xb{left:286.498152px;}
.x3e{left:290.591316px;}
.xc{left:293.529420px;}
.x49{left:296.419536px;}
.x5b{left:299.926368px;}
.xa{left:303.290064px;}
.x5f{left:308.394648px;}
.x55{left:311.163192px;}
.x47{left:314.160264px;}
.x48{left:317.161728px;}
.x5a{left:319.420512px;}
.x4e{left:323.151480px;}
.x14{left:325.272204px;}
.x33{left:327.770136px;}
.x4c{left:328.903920px;}
.x4f{left:330.406848px;}
.x51{left:331.650504px;}
.x4b{left:335.908800px;}
.x53{left:337.895136px;}
.x39{left:346.454568px;}
.x66{left:348.384888px;}
.x20{left:350.580672px;}
.x3f{left:352.967292px;}
.x5d{left:355.143672px;}
.x4d{left:356.400504px;}
.x45{left:358.632936px;}
.x16{left:360.252684px;}
.x46{left:362.385864px;}
.x3a{left:364.094208px;}
.x5e{left:365.396148px;}
.x60{left:366.630984px;}
.x65{left:369.144648px;}
.x40{left:370.606932px;}
.x4a{left:372.379032px;}
.x57{left:374.875128px;}
.x44{left:377.138304px;}
.x56{left:378.636840px;}
.x37{left:381.435084px;}
.x43{left:383.602644px;}
.xd{left:386.177832px;}
.x67{left:387.377640px;}
.x62{left:388.634400px;}
.x64{left:391.886280px;}
.x61{left:395.630640px;}
.x38{left:399.074760px;}
.x3b{left:400.946760px;}
.x52{left:403.883280px;}
.x63{left:405.364320px;}
.x5c{left:408.625200px;}
.x5{left:414.213840px;}
.x3c{left:418.586400px;}
.x58{left:429.617880px;}
.x1a{left:445.500000px;}
.x6{left:459.502200px;}
.x1c{left:604.500000px;}
.x36{left:713.054880px;}
.x21{left:745.500000px;}
.xf{left:754.500000px;}
.x1{left:764.640000px;}
.x3{left:791.640000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.408576pt;}
.ls1c{letter-spacing:-0.301056pt;}
.ls6{letter-spacing:-0.291584pt;}
.ls17{letter-spacing:-0.284928pt;}
.ls4{letter-spacing:-0.283008pt;}
.ls7{letter-spacing:-0.274432pt;}
.ls1a{letter-spacing:-0.225792pt;}
.ls16{letter-spacing:-0.215040pt;}
.ls1e{letter-spacing:-0.176640pt;}
.ls5{letter-spacing:-0.154368pt;}
.ls14{letter-spacing:-0.141312pt;}
.ls1b{letter-spacing:-0.117760pt;}
.ls13{letter-spacing:-0.105984pt;}
.ls18{letter-spacing:-0.086016pt;}
.ls1d{letter-spacing:-0.070656pt;}
.ls15{letter-spacing:-0.052992pt;}
.ls9{letter-spacing:-0.012800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000512pt;}
.ls30{letter-spacing:0.006272pt;}
.lsc{letter-spacing:0.006400pt;}
.lsa{letter-spacing:0.012800pt;}
.ls32{letter-spacing:0.031488pt;}
.ls34{letter-spacing:0.032000pt;}
.ls24{letter-spacing:0.053376pt;}
.ls2f{letter-spacing:0.106624pt;}
.ls2a{letter-spacing:0.106752pt;}
.ls2{letter-spacing:0.142080pt;}
.ls2e{letter-spacing:0.178176pt;}
.ls1f{letter-spacing:0.212480pt;}
.ls26{letter-spacing:0.215296pt;}
.ls33{letter-spacing:0.252416pt;}
.ls10{letter-spacing:0.261632pt;}
.ls2c{letter-spacing:0.276224pt;}
.ls27{letter-spacing:0.282112pt;}
.ls0{letter-spacing:0.286848pt;}
.ls20{letter-spacing:0.318720pt;}
.ls8{letter-spacing:0.319232pt;}
.ls2d{letter-spacing:0.326656pt;}
.ls1{letter-spacing:0.329344pt;}
.ls22{letter-spacing:0.350592pt;}
.ls2b{letter-spacing:0.356352pt;}
.lsf{letter-spacing:1.068800pt;}
.ls12{letter-spacing:1.575680pt;}
.ls35{letter-spacing:3.347200pt;}
.ls11{letter-spacing:6.396160pt;}
.ls25{letter-spacing:30.208000pt;}
.ls31{letter-spacing:39.801728pt;}
.ls21{letter-spacing:48.770432pt;}
.ls29{letter-spacing:56.895488pt;}
.lse{letter-spacing:57.536000pt;}
.ls23{letter-spacing:59.361280pt;}
.lsb{letter-spacing:65.536000pt;}
.lsd{letter-spacing:89.536000pt;}
.ws14{word-spacing:-26.889344pt;}
.ws12{word-spacing:-26.878720pt;}
.ws0{word-spacing:-26.846848pt;}
.ws16{word-spacing:-26.836224pt;}
.ws10{word-spacing:-26.772480pt;}
.ws2{word-spacing:-18.879232pt;}
.ws17{word-spacing:-18.812416pt;}
.ws15{word-spacing:-18.775296pt;}
.ws3{word-spacing:-16.012800pt;}
.ws4{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.987200pt;}
.wse{word-spacing:-14.649344pt;}
.ws6{word-spacing:-14.614016pt;}
.wsf{word-spacing:-14.543360pt;}
.ws5{word-spacing:-14.470400pt;}
.wsd{word-spacing:-14.451200pt;}
.ws7{word-spacing:-13.253888pt;}
.ws8{word-spacing:-13.224960pt;}
.wsb{word-spacing:-13.189120pt;}
.wsc{word-spacing:-13.138944pt;}
.ws9{word-spacing:-12.063744pt;}
.wsa{word-spacing:-11.923968pt;}
.ws13{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._e{margin-left:-14.054016pt;}
._f{margin-left:-11.805184pt;}
._11{margin-left:-10.447616pt;}
._14{margin-left:-9.402880pt;}
._d{margin-left:-7.268864pt;}
._12{margin-left:-5.809664pt;}
._10{margin-left:-4.900864pt;}
._13{margin-left:-3.769088pt;}
._5{margin-left:-2.771200pt;}
._3{margin-left:-1.845504pt;}
._0{margin-left:-0.956160pt;}
._1{width:0.943360pt;}
._7{width:1.935616pt;}
._17{width:2.928640pt;}
._a{width:3.884800pt;}
._6{width:5.433600pt;}
._8{width:7.091200pt;}
._15{width:8.121600pt;}
._1d{width:9.216256pt;}
._9{width:10.112000pt;}
._4{width:11.065600pt;}
._22{width:11.961600pt;}
._16{width:12.876800pt;}
._18{width:13.894400pt;}
._19{width:15.028224pt;}
._c{width:17.555200pt;}
._b{width:18.457600pt;}
._2{width:19.392000pt;}
._23{width:20.485632pt;}
._21{width:21.670784pt;}
._1a{width:22.841600pt;}
._26{width:23.814400pt;}
._25{width:24.876800pt;}
._1b{width:27.117312pt;}
._1c{width:28.081408pt;}
._24{width:29.145600pt;}
._1e{width:30.630400pt;}
._27{width:34.419200pt;}
._2d{width:35.424000pt;}
._29{width:36.995072pt;}
._1f{width:39.686400pt;}
._28{width:50.944000pt;}
._2b{width:55.654400pt;}
._2c{width:70.726400pt;}
._20{width:168.748800pt;}
._2a{width:461.299200pt;}
._2e{width:772.858112pt;}
.fs5{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs7{font-size:62.745101pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs3{font-size:74.240000pt;}
.fs1{font-size:85.760000pt;}
.fs2{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:4.640000pt;}
.ya8{bottom:12.693333pt;}
.y112{bottom:12.853333pt;}
.y19f{bottom:12.906667pt;}
.y106{bottom:12.960000pt;}
.y10d{bottom:13.066667pt;}
.y1a4{bottom:13.386667pt;}
.y10a{bottom:13.440000pt;}
.ya4{bottom:13.546667pt;}
.y11b{bottom:13.600000pt;}
.y110{bottom:13.706667pt;}
.y120{bottom:13.866667pt;}
.y1a1{bottom:14.080000pt;}
.ya7{bottom:40.213333pt;}
.y118{bottom:40.480000pt;}
.y10c{bottom:40.586667pt;}
.y115{bottom:40.693333pt;}
.y113{bottom:41.066667pt;}
.y11a{bottom:41.120000pt;}
.y109{bottom:41.280000pt;}
.y11f{bottom:41.386667pt;}
.y10f{bottom:41.546667pt;}
.y15{bottom:46.666667pt;}
.y14{bottom:51.306667pt;}
.y117{bottom:68.000000pt;}
.ya6{bottom:68.053333pt;}
.y108{bottom:68.800000pt;}
.y11e{bottom:69.226667pt;}
.y11d{bottom:96.746667pt;}
.ya2{bottom:100.266667pt;}
.y13{bottom:102.506667pt;}
.y178{bottom:106.026667pt;}
.y21e{bottom:110.186667pt;}
.y210{bottom:112.746667pt;}
.y1f9{bottom:115.306667pt;}
.y141{bottom:115.946667pt;}
.y1c7{bottom:116.266667pt;}
.yf7{bottom:118.506667pt;}
.y18e{bottom:119.146667pt;}
.y53{bottom:122.666667pt;}
.y1ab{bottom:123.946667pt;}
.ya1{bottom:127.786667pt;}
.y111{bottom:129.333333pt;}
.y12{bottom:130.026667pt;}
.y36{bottom:132.586667pt;}
.y177{bottom:133.546667pt;}
.y100{bottom:136.426667pt;}
.y21d{bottom:137.706667pt;}
.y20f{bottom:140.586667pt;}
.y131{bottom:142.186667pt;}
.y1f8{bottom:142.826667pt;}
.ybb{bottom:143.466667pt;}
.y1c6{bottom:143.786667pt;}
.yf6{bottom:146.346667pt;}
.y18d{bottom:146.666667pt;}
.y1aa{bottom:151.466667pt;}
.yd8{bottom:152.106667pt;}
.y8a{bottom:154.986667pt;}
.ya0{bottom:155.306667pt;}
.y10e{bottom:156.000000pt;}
.y11{bottom:157.546667pt;}
.y52{bottom:159.786667pt;}
.y176{bottom:161.386667pt;}
.y35{bottom:162.346667pt;}
.yff{bottom:163.946667pt;}
.y21c{bottom:165.546667pt;}
.y20e{bottom:168.106667pt;}
.y9f{bottom:168.426667pt;}
.y130{bottom:169.706667pt;}
.y1f7{bottom:170.346667pt;}
.y140{bottom:171.306667pt;}
.y1c5{bottom:171.626667pt;}
.y22b{bottom:173.226667pt;}
.y220{bottom:173.546667pt;}
.yf5{bottom:173.866667pt;}
.y18c{bottom:174.186667pt;}
.y1a9{bottom:179.306667pt;}
.yd7{bottom:179.626667pt;}
.y89{bottom:183.146667pt;}
.y10{bottom:185.066667pt;}
.y175{bottom:188.906667pt;}
.yba{bottom:189.546667pt;}
.yfe{bottom:191.466667pt;}
.y34{bottom:192.106667pt;}
.y21b{bottom:193.066667pt;}
.y20d{bottom:195.626667pt;}
.y51{bottom:195.946667pt;}
.y12f{bottom:197.546667pt;}
.y1f6{bottom:197.866667pt;}
.y13f{bottom:198.826667pt;}
.y1db{bottom:199.146667pt;}
.y1c4{bottom:199.466667pt;}
.y159{bottom:199.786667pt;}
.yf4{bottom:201.386667pt;}
.y18b{bottom:202.026667pt;}
.y6d{bottom:206.826667pt;}
.yd6{bottom:207.146667pt;}
.y88{bottom:210.666667pt;}
.y10b{bottom:212.000000pt;}
.yf{bottom:212.906667pt;}
.y9e{bottom:214.506667pt;}
.y174{bottom:216.426667pt;}
.yfd{bottom:218.986667pt;}
.y33{bottom:219.946667pt;}
.y21a{bottom:220.586667pt;}
.y20c{bottom:223.146667pt;}
.y12e{bottom:225.066667pt;}
.y1f5{bottom:225.706667pt;}
.y13e{bottom:226.346667pt;}
.y1da{bottom:226.666667pt;}
.y158{bottom:227.306667pt;}
.y1c3{bottom:227.946667pt;}
.yf3{bottom:228.906667pt;}
.y50{bottom:230.826667pt;}
.y18a{bottom:232.106667pt;}
.y1a8{bottom:234.346667pt;}
.yd5{bottom:234.666667pt;}
.yb9{bottom:235.626667pt;}
.y6c{bottom:236.266667pt;}
.y87{bottom:238.186667pt;}
.y173{bottom:243.946667pt;}
.ye{bottom:244.586667pt;}
.yfc{bottom:246.826667pt;}
.y32{bottom:247.466667pt;}
.y219{bottom:248.106667pt;}
.y20b{bottom:250.986667pt;}
.y12d{bottom:252.586667pt;}
.y1f4{bottom:253.226667pt;}
.y13d{bottom:253.866667pt;}
.y1d9{bottom:254.186667pt;}
.y157{bottom:254.826667pt;}
.y1c2{bottom:255.466667pt;}
.yf2{bottom:256.746667pt;}
.y15a{bottom:257.066667pt;}
.y9d{bottom:260.586667pt;}
.y1a7{bottom:261.866667pt;}
.yd4{bottom:262.506667pt;}
.y189{bottom:264.426667pt;}
.y22a{bottom:265.066667pt;}
.y4f{bottom:265.706667pt;}
.y6b{bottom:266.346667pt;}
.y107{bottom:266.666667pt;}
.y172{bottom:271.466667pt;}
.yfb{bottom:274.346667pt;}
.y31{bottom:274.986667pt;}
.y218{bottom:275.946667pt;}
.y20a{bottom:278.506667pt;}
.y12c{bottom:280.106667pt;}
.y1f3{bottom:280.746667pt;}
.yd{bottom:281.386667pt;}
.y13c{bottom:281.706667pt;}
.y1d8{bottom:282.026667pt;}
.y156{bottom:282.666667pt;}
.y1c1{bottom:282.986667pt;}
.yf1{bottom:284.266667pt;}
.y1a6{bottom:289.386667pt;}
.yd3{bottom:290.026667pt;}
.y188{bottom:291.946667pt;}
.y86{bottom:293.546667pt;}
.y6a{bottom:298.666667pt;}
.y171{bottom:299.306667pt;}
.y4e{bottom:300.586667pt;}
.yfa{bottom:301.866667pt;}
.y30{bottom:302.506667pt;}
.y1a5{bottom:304.000000pt;}
.y217{bottom:304.426667pt;}
.y209{bottom:306.026667pt;}
.y9c{bottom:306.346667pt;}
.y12b{bottom:307.946667pt;}
.y1f2{bottom:308.266667pt;}
.y13b{bottom:309.226667pt;}
.y1d7{bottom:309.546667pt;}
.y155{bottom:310.186667pt;}
.y1c0{bottom:310.826667pt;}
.y229{bottom:311.146667pt;}
.yf0{bottom:311.786667pt;}
.yd2{bottom:317.866667pt;}
.yc{bottom:318.186667pt;}
.y187{bottom:319.466667pt;}
.y85{bottom:321.066667pt;}
.y170{bottom:326.826667pt;}
.yb8{bottom:327.466667pt;}
.y2f{bottom:330.346667pt;}
.y69{bottom:330.986667pt;}
.y1a3{bottom:332.000000pt;}
.y216{bottom:332.266667pt;}
.y208{bottom:333.546667pt;}
.yf9{bottom:334.506667pt;}
.y4d{bottom:335.466667pt;}
.y1f1{bottom:336.106667pt;}
.y13a{bottom:336.746667pt;}
.y1d6{bottom:337.066667pt;}
.y154{bottom:337.706667pt;}
.y1bf{bottom:338.346667pt;}
.yef{bottom:339.306667pt;}
.y186{bottom:347.306667pt;}
.yd1{bottom:347.946667pt;}
.y84{bottom:348.586667pt;}
.y105{bottom:350.666667pt;}
.y9b{bottom:352.426667pt;}
.y16f{bottom:354.666667pt;}
.y228{bottom:357.226667pt;}
.y2e{bottom:357.866667pt;}
.yb{bottom:359.146667pt;}
.y215{bottom:359.786667pt;}
.y1a2{bottom:360.000000pt;}
.y207{bottom:361.386667pt;}
.y68{bottom:362.986667pt;}
.y1f0{bottom:363.626667pt;}
.y139{bottom:364.266667pt;}
.y1d5{bottom:364.586667pt;}
.y153{bottom:365.226667pt;}
.y1be{bottom:365.866667pt;}
.yee{bottom:367.146667pt;}
.y4c{bottom:369.066667pt;}
.yb7{bottom:373.546667pt;}
.y185{bottom:374.826667pt;}
.yd0{bottom:375.466667pt;}
.y83{bottom:376.106667pt;}
.y16e{bottom:384.746667pt;}
.y2d{bottom:385.386667pt;}
.y1a0{bottom:386.666667pt;}
.y214{bottom:387.306667pt;}
.y206{bottom:388.906667pt;}
.y12a{bottom:390.506667pt;}
.y1ef{bottom:391.146667pt;}
.y104{bottom:391.786667pt;}
.y1d4{bottom:392.426667pt;}
.y152{bottom:393.066667pt;}
.y4b{bottom:393.386667pt;}
.yed{bottom:394.666667pt;}
.y67{bottom:395.306667pt;}
.y9a{bottom:398.506667pt;}
.y184{bottom:402.346667pt;}
.ycf{bottom:402.986667pt;}
.y82{bottom:403.946667pt;}
.ya{bottom:405.226667pt;}
.y16d{bottom:412.266667pt;}
.y2c{bottom:412.906667pt;}
.y213{bottom:414.826667pt;}
.y19e{bottom:416.000000pt;}
.y205{bottom:417.706667pt;}
.y4a{bottom:418.026667pt;}
.y129{bottom:418.346667pt;}
.y1ee{bottom:418.666667pt;}
.yb6{bottom:419.626667pt;}
.y1d3{bottom:419.946667pt;}
.y151{bottom:420.586667pt;}
.y1bd{bottom:420.906667pt;}
.yec{bottom:422.186667pt;}
.y66{bottom:427.626667pt;}
.yce{bottom:430.826667pt;}
.y81{bottom:431.466667pt;}
.y183{bottom:432.426667pt;}
.y16c{bottom:439.786667pt;}
.y2b{bottom:440.746667pt;}
.y212{bottom:442.666667pt;}
.y49{bottom:443.306667pt;}
.y99{bottom:444.586667pt;}
.y204{bottom:445.226667pt;}
.y128{bottom:445.866667pt;}
.y1ed{bottom:446.506667pt;}
.y103{bottom:447.146667pt;}
.y1d2{bottom:447.466667pt;}
.y150{bottom:448.106667pt;}
.y1bc{bottom:448.746667pt;}
.y227{bottom:449.066667pt;}
.yeb{bottom:449.706667pt;}
.y9{bottom:451.306667pt;}
.y19d{bottom:457.066667pt;}
.ycd{bottom:458.346667pt;}
.y80{bottom:458.986667pt;}
.y65{bottom:459.626667pt;}
.y182{bottom:464.746667pt;}
.yb5{bottom:465.386667pt;}
.y2a{bottom:468.266667pt;}
.y16b{bottom:469.866667pt;}
.y211{bottom:472.746667pt;}
.y203{bottom:473.066667pt;}
.y127{bottom:473.386667pt;}
.y1ec{bottom:474.026667pt;}
.y102{bottom:474.666667pt;}
.y1d1{bottom:474.986667pt;}
.y14f{bottom:475.626667pt;}
.y1bb{bottom:476.266667pt;}
.yea{bottom:477.546667pt;}
.y48{bottom:478.186667pt;}
.y19c{bottom:484.586667pt;}
.ycc{bottom:485.866667pt;}
.y7f{bottom:486.506667pt;}
.y98{bottom:490.346667pt;}
.y64{bottom:491.946667pt;}
.y181{bottom:492.586667pt;}
.y226{bottom:495.146667pt;}
.y29{bottom:495.786667pt;}
.y8{bottom:497.386667pt;}
.y17c{bottom:499.626667pt;}
.y1eb{bottom:501.546667pt;}
.y138{bottom:502.186667pt;}
.y101{bottom:502.506667pt;}
.y1d0{bottom:502.826667pt;}
.y14e{bottom:503.146667pt;}
.y126{bottom:503.786667pt;}
.ye9{bottom:505.066667pt;}
.yb4{bottom:511.466667pt;}
.y19b{bottom:512.426667pt;}
.ycb{bottom:513.386667pt;}
.y47{bottom:514.346667pt;}
.y180{bottom:520.106667pt;}
.y63{bottom:523.946667pt;}
.y28{bottom:525.866667pt;}
.y17b{bottom:527.146667pt;}
.y1ea{bottom:529.066667pt;}
.y137{bottom:530.026667pt;}
.y1cf{bottom:530.346667pt;}
.y14d{bottom:530.986667pt;}
.y125{bottom:531.306667pt;}
.ye8{bottom:532.586667pt;}
.y16a{bottom:534.506667pt;}
.y97{bottom:536.426667pt;}
.y19a{bottom:539.946667pt;}
.yca{bottom:540.906667pt;}
.y225{bottom:541.226667pt;}
.y7e{bottom:541.866667pt;}
.y7{bottom:543.146667pt;}
.y17f{bottom:547.626667pt;}
.y46{bottom:551.786667pt;}
.y17a{bottom:554.986667pt;}
.y27{bottom:555.626667pt;}
.y62{bottom:556.266667pt;}
.y1e9{bottom:556.906667pt;}
.yb3{bottom:557.546667pt;}
.y1ce{bottom:557.866667pt;}
.y14c{bottom:558.506667pt;}
.y124{bottom:558.826667pt;}
.y1ba{bottom:559.146667pt;}
.ye7{bottom:560.106667pt;}
.y169{bottom:562.026667pt;}
.y199{bottom:567.466667pt;}
.yc9{bottom:568.746667pt;}
.y7d{bottom:569.386667pt;}
.y17e{bottom:575.146667pt;}
.y96{bottom:582.506667pt;}
.y26{bottom:583.146667pt;}
.y1e8{bottom:584.426667pt;}
.y1fa{bottom:584.661963pt;}
.y6{bottom:584.746667pt;}
.y136{bottom:585.066667pt;}
.y1cd{bottom:585.386667pt;}
.y21f{bottom:585.706667pt;}
.y14b{bottom:586.026667pt;}
.y123{bottom:586.346667pt;}
.y45{bottom:586.666667pt;}
.y224{bottom:586.986667pt;}
.ye6{bottom:587.946667pt;}
.y61{bottom:588.586667pt;}
.y168{bottom:589.866667pt;}
.y198{bottom:594.986667pt;}
.yc8{bottom:596.266667pt;}
.y7c{bottom:596.906667pt;}
.y17d{bottom:599.466667pt;}
.yb2{bottom:603.626667pt;}
.y25{bottom:610.666667pt;}
.y44{bottom:610.986667pt;}
.y1e7{bottom:611.946667pt;}
.y135{bottom:612.586667pt;}
.y1cc{bottom:613.226667pt;}
.y14a{bottom:613.546667pt;}
.y122{bottom:614.186667pt;}
.ye5{bottom:615.466667pt;}
.y167{bottom:617.386667pt;}
.y95{bottom:619.946667pt;}
.y60{bottom:620.586667pt;}
.y5{bottom:621.546667pt;}
.yc7{bottom:623.786667pt;}
.y7b{bottom:624.746667pt;}
.y197{bottom:625.066667pt;}
.y223{bottom:633.066667pt;}
.y43{bottom:635.306667pt;}
.y24{bottom:638.506667pt;}
.y1e6{bottom:639.466667pt;}
.y134{bottom:640.426667pt;}
.y1cb{bottom:640.746667pt;}
.yb1{bottom:641.066667pt;}
.y149{bottom:641.386667pt;}
.y121{bottom:641.706667pt;}
.ye4{bottom:642.986667pt;}
.y166{bottom:644.906667pt;}
.y94{bottom:647.466667pt;}
.yc6{bottom:651.306667pt;}
.y7a{bottom:652.266667pt;}
.y5f{bottom:652.906667pt;}
.y11c{bottom:656.000000pt;}
.y196{bottom:657.706667pt;}
.y4{bottom:658.346667pt;}
.y42{bottom:659.946667pt;}
.y23{bottom:666.026667pt;}
.y1e5{bottom:666.986667pt;}
.y133{bottom:667.946667pt;}
.y1ca{bottom:668.266667pt;}
.yb0{bottom:668.586667pt;}
.y148{bottom:668.906667pt;}
.y1b9{bottom:669.546667pt;}
.ye3{bottom:670.506667pt;}
.y165{bottom:672.426667pt;}
.y93{bottom:675.306667pt;}
.yc5{bottom:679.146667pt;}
.y79{bottom:679.786667pt;}
.y41{bottom:684.266667pt;}
.y5e{bottom:684.906667pt;}
.y195{bottom:686.506667pt;}
.y3{bottom:687.786667pt;}
.y22{bottom:693.546667pt;}
.y1e4{bottom:694.826667pt;}
.y132{bottom:695.466667pt;}
.y1c9{bottom:695.786667pt;}
.yaf{bottom:696.106667pt;}
.y147{bottom:696.426667pt;}
.y1b8{bottom:697.066667pt;}
.ye2{bottom:698.026667pt;}
.y164{bottom:700.266667pt;}
.y92{bottom:702.826667pt;}
.yc4{bottom:706.666667pt;}
.y78{bottom:707.306667pt;}
.y40{bottom:709.866667pt;}
.y194{bottom:715.306667pt;}
.y5d{bottom:717.226667pt;}
.y21{bottom:721.066667pt;}
.y1fe{bottom:722.346667pt;}
.y1e2{bottom:722.666667pt;}
.y1e3{bottom:722.901963pt;}
.y179{bottom:723.306667pt;}
.yae{bottom:723.626667pt;}
.y1c8{bottom:723.861963pt;}
.y146{bottom:723.946667pt;}
.y1b7{bottom:724.586667pt;}
.y222{bottom:724.906667pt;}
.ye1{bottom:725.866667pt;}
.y163{bottom:727.786667pt;}
.y91{bottom:731.626667pt;}
.yc3{bottom:734.186667pt;}
.y77{bottom:734.826667pt;}
.y3f{bottom:743.466667pt;}
.y193{bottom:743.786667pt;}
.y20{bottom:748.906667pt;}
.y5c{bottom:749.546667pt;}
.y1fd{bottom:749.866667pt;}
.y1e1{bottom:751.146667pt;}
.yad{bottom:751.466667pt;}
.y145{bottom:751.786667pt;}
.y1b6{bottom:752.106667pt;}
.ye0{bottom:753.386667pt;}
.y162{bottom:755.306667pt;}
.y90{bottom:759.466667pt;}
.yc2{bottom:761.706667pt;}
.y76{bottom:762.666667pt;}
.y119{bottom:766.666667pt;}
.y3e{bottom:767.786667pt;}
.y221{bottom:770.986667pt;}
.y192{bottom:771.626667pt;}
.y1f{bottom:776.426667pt;}
.y202{bottom:777.386667pt;}
.y1fb{bottom:777.706667pt;}
.y1fc{bottom:777.941963pt;}
.y1e0{bottom:778.666667pt;}
.yac{bottom:778.986667pt;}
.y144{bottom:779.306667pt;}
.y1b5{bottom:779.946667pt;}
.ydf{bottom:780.906667pt;}
.y5b{bottom:781.546667pt;}
.y161{bottom:782.826667pt;}
.y8f{bottom:787.946667pt;}
.yc1{bottom:789.546667pt;}
.y75{bottom:790.186667pt;}
.y3d{bottom:792.426667pt;}
.y191{bottom:800.426667pt;}
.y1e{bottom:803.946667pt;}
.y201{bottom:805.226667pt;}
.y1df{bottom:806.186667pt;}
.yab{bottom:806.506667pt;}
.y143{bottom:806.826667pt;}
.y1b4{bottom:807.466667pt;}
.yde{bottom:808.426667pt;}
.y160{bottom:810.666667pt;}
.y5a{bottom:813.866667pt;}
.y8e{bottom:815.466667pt;}
.yc0{bottom:817.066667pt;}
.y74{bottom:817.706667pt;}
.y3c{bottom:818.026667pt;}
.y116{bottom:822.666667pt;}
.y190{bottom:828.906667pt;}
.y1d{bottom:831.466667pt;}
.y1ff{bottom:833.066667pt;}
.y200{bottom:833.301959pt;}
.yaa{bottom:834.026667pt;}
.y1b3{bottom:834.986667pt;}
.y142{bottom:835.946667pt;}
.ydd{bottom:836.266667pt;}
.y15f{bottom:838.186667pt;}
.y8d{bottom:843.306667pt;}
.ybf{bottom:844.586667pt;}
.y73{bottom:845.226667pt;}
.y59{bottom:846.186667pt;}
.y3b{bottom:853.866667pt;}
.y18f{bottom:858.986667pt;}
.y1c{bottom:859.306667pt;}
.y1de{bottom:861.546667pt;}
.ya9{bottom:861.866667pt;}
.y1b2{bottom:862.506667pt;}
.ydc{bottom:863.786667pt;}
.y15e{bottom:865.706667pt;}
.y8c{bottom:871.786667pt;}
.ybe{bottom:872.426667pt;}
.y72{bottom:873.066667pt;}
.ya5{bottom:877.333333pt;}
.y58{bottom:878.186667pt;}
.y1b{bottom:886.826667pt;}
.y1dd{bottom:889.066667pt;}
.y1b1{bottom:890.346667pt;}
.y3a{bottom:891.306667pt;}
.y15d{bottom:893.226667pt;}
.y8b{bottom:899.626667pt;}
.y71{bottom:900.586667pt;}
.ybd{bottom:905.066667pt;}
.y114{bottom:905.333333pt;}
.y57{bottom:910.506667pt;}
.y1a{bottom:914.346667pt;}
.y1dc{bottom:916.906667pt;}
.y1b0{bottom:917.866667pt;}
.ydb{bottom:918.826667pt;}
.y15c{bottom:920.746667pt;}
.y70{bottom:928.106667pt;}
.y39{bottom:928.426667pt;}
.y19{bottom:941.866667pt;}
.y56{bottom:942.506667pt;}
.y1af{bottom:945.386667pt;}
.ybc{bottom:945.706667pt;}
.yda{bottom:946.666667pt;}
.y15b{bottom:950.826667pt;}
.y6f{bottom:955.626667pt;}
.ya3{bottom:960.000000pt;}
.y38{bottom:965.866667pt;}
.y18{bottom:969.706667pt;}
.y55{bottom:972.586667pt;}
.y1ae{bottom:972.906667pt;}
.yd9{bottom:974.186667pt;}
.y2{bottom:988.266667pt;}
.y6e{bottom:991.786667pt;}
.y17{bottom:999.466667pt;}
.y1ac{bottom:1000.746667pt;}
.y1ad{bottom:1000.981963pt;}
.y54{bottom:1001.386667pt;}
.y37{bottom:1001.706667pt;}
.yf8{bottom:1002.026667pt;}
.y1{bottom:1003.306667pt;}
.h5{height:20.000000pt;}
.hc{height:28.000000pt;}
.ha{height:29.333333pt;}
.h1{height:42.656250pt;}
.h11{height:44.437500pt;}
.h10{height:45.343139pt;}
.h9{height:52.296250pt;}
.hd{height:56.000000pt;}
.h2{height:56.156250pt;}
.h8{height:56.750000pt;}
.h7{height:56.843750pt;}
.he{height:57.333333pt;}
.h6{height:65.938750pt;}
.h3{height:76.170625pt;}
.hb{height:84.000000pt;}
.h4{height:94.360625pt;}
.hf{height:112.000000pt;}
.h0{height:1122.666667pt;}
.w1{width:10.666667pt;}
.w4{width:18.666667pt;}
.w2{width:141.333333pt;}
.w3{width:142.666667pt;}
.w6{width:284.000000pt;}
.w5{width:360.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x10{left:1.013333pt;}
.x1e{left:7.306635pt;}
.x31{left:8.640619pt;}
.x1d{left:10.710507pt;}
.x32{left:12.083349pt;}
.x2a{left:13.082027pt;}
.x27{left:15.742187pt;}
.x2c{left:17.953131pt;}
.x2e{left:18.855467pt;}
.x25{left:21.304683pt;}
.x19{left:22.950517pt;}
.x28{left:25.746091pt;}
.x26{left:27.503915pt;}
.x2f{left:28.855467pt;}
.x2d{left:30.731765pt;}
.x1b{left:32.826560pt;}
.x29{left:34.731765pt;}
.x18{left:38.847659pt;}
.x30{left:41.395829pt;}
.x2b{left:42.847659pt;}
.x22{left:47.277355pt;}
.x23{left:52.712245pt;}
.x2{left:113.279936pt;}
.x12{left:129.279936pt;}
.xe{left:137.279936pt;}
.x13{left:145.279936pt;}
.x24{left:146.646400pt;}
.x17{left:151.689760pt;}
.x11{left:160.479808pt;}
.x42{left:180.576192pt;}
.x35{left:185.279936pt;}
.x1f{left:186.911136pt;}
.x4{left:190.654624pt;}
.x7{left:208.068672pt;}
.x8{left:209.942720pt;}
.x9{left:216.986976pt;}
.x41{left:228.727552pt;}
.x54{left:229.835616pt;}
.x15{left:231.080064pt;}
.x50{left:234.277024pt;}
.x59{left:236.066080pt;}
.x3d{left:242.623680pt;}
.x34{left:248.349920pt;}
.xb{left:254.665024pt;}
.x3e{left:258.303392pt;}
.xc{left:260.915040pt;}
.x49{left:263.484032pt;}
.x5b{left:266.601216pt;}
.xa{left:269.591168pt;}
.x5f{left:274.128576pt;}
.x55{left:276.589504pt;}
.x47{left:279.253568pt;}
.x48{left:281.921536pt;}
.x5a{left:283.929344pt;}
.x4e{left:287.245760pt;}
.x14{left:289.130848pt;}
.x33{left:291.351232pt;}
.x4c{left:292.359040pt;}
.x4f{left:293.694976pt;}
.x51{left:294.800448pt;}
.x4b{left:298.585600pt;}
.x53{left:300.351232pt;}
.x39{left:307.959616pt;}
.x66{left:309.675456pt;}
.x20{left:311.627264pt;}
.x3f{left:313.748704pt;}
.x5d{left:315.683264pt;}
.x4d{left:316.800448pt;}
.x45{left:318.784832pt;}
.x16{left:320.224608pt;}
.x46{left:322.120768pt;}
.x3a{left:323.639296pt;}
.x5e{left:324.796576pt;}
.x60{left:325.894208pt;}
.x65{left:328.128576pt;}
.x40{left:329.428384pt;}
.x4a{left:331.003584pt;}
.x57{left:333.222336pt;}
.x44{left:335.234048pt;}
.x56{left:336.566080pt;}
.x37{left:339.053408pt;}
.x43{left:340.980128pt;}
.xd{left:343.269184pt;}
.x67{left:344.335680pt;}
.x62{left:345.452800pt;}
.x64{left:348.343360pt;}
.x61{left:351.671680pt;}
.x38{left:354.733120pt;}
.x3b{left:356.397120pt;}
.x52{left:359.007360pt;}
.x63{left:360.323840pt;}
.x5c{left:363.222400pt;}
.x5{left:368.190080pt;}
.x3c{left:372.076800pt;}
.x58{left:381.882560pt;}
.x1a{left:396.000000pt;}
.x6{left:408.446400pt;}
.x1c{left:537.333333pt;}
.x36{left:633.826560pt;}
.x21{left:662.666667pt;}
.xf{left:670.666667pt;}
.x1{left:679.680000pt;}
.x3{left:703.680000pt;}
}




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