
    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_e87fa8585f257e64f338d40b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4ef92dfb247c72cbf85a3c17.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c63ec948fbdd6e374ad515fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.725098;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_f78c7a5e7d30deebbbb78686.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_2534e2860a9dd00984472b56.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_59e495998f695693a45d32bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.096680;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_bc41088df98fdfcceda75413.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.781000;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_371f90f76119c1dc99b4c73c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906308;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_4c957f7002638a1def2bde94.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.715820;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_1d548db24a4ec0b914f5e0fa.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_479e09709365e1901843c377.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.906308;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_f70f1e3523d0ddd49756bc77.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.865723;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_5942f8ee98285d1924faa579.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919434;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_bc41088df98fdfcceda75413.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.781000;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_371f90f76119c1dc99b4c73c.woff2')format("woff");}.fff{font-family:fff;line-height:0.906308;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_4c957f7002638a1def2bde94.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.715820;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_1d548db24a4ec0b914f5e0fa.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_bc41088df98fdfcceda75413.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.781000;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_371f90f76119c1dc99b4c73c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.906308;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_4c957f7002638a1def2bde94.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.715820;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_1d548db24a4ec0b914f5e0fa.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_bc41088df98fdfcceda75413.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.781000;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:ff17;src:url('chunks/assets/font_371f90f76119c1dc99b4c73c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.906308;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:ff18;src:url('chunks/assets/font_4c957f7002638a1def2bde94.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.715820;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:ff19;src:url('chunks/assets/font_1d548db24a4ec0b914f5e0fa.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_f3085cf54d7cc2650aa77405.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.690918;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-4.440000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.001200px;}
.ls4{letter-spacing:0.001800px;}
.ls3{letter-spacing:0.003000px;}
.ls7{letter-spacing:0.003600px;}
.ls6{letter-spacing:2.100000px;}
.ls2{letter-spacing:8.640000px;}
.ls1{letter-spacing:10.800000px;}
.lsa{letter-spacing:14.400000px;}
.ls5{letter-spacing:27.000000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(38,122,200),0 0.015em rgb(38,122,200),0.015em 0 rgb(38,122,200),0 -0.015em  rgb(38,122,200);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(38,122,200);text-shadow:none;}
}
.ws0{word-spacing:-100.080000px;}
.ws2{word-spacing:-74.687035px;}
.ws1{word-spacing:-36.568231px;}
.wse{word-spacing:-31.680000px;}
.ws11{word-spacing:-30.240000px;}
.ws6{word-spacing:-27.000000px;}
.ws4{word-spacing:-25.812000px;}
.ws1a{word-spacing:-20.016000px;}
.ws5{word-spacing:-18.780000px;}
.ws9{word-spacing:-16.680000px;}
.wsf{word-spacing:-15.012000px;}
.ws8{word-spacing:-12.240000px;}
.wsd{word-spacing:-6.330600px;}
.wsc{word-spacing:-6.088800px;}
.ws19{word-spacing:-2.340000px;}
.ws7{word-spacing:-2.100000px;}
.wsb{word-spacing:-1.776000px;}
.ws15{word-spacing:-1.080000px;}
.ws3{word-spacing:0.000000px;}
.ws14{word-spacing:1.800000px;}
.wsa{word-spacing:4.440000px;}
.ws12{word-spacing:5.700000px;}
.ws18{word-spacing:7.920000px;}
.ws13{word-spacing:9.480000px;}
.ws17{word-spacing:9.780000px;}
.ws16{word-spacing:10.800000px;}
.ws10{word-spacing:15.552000px;}
._17{margin-left:-2916.981000px;}
._2d{margin-left:-880.344000px;}
._0{margin-left:-801.720000px;}
._29{margin-left:-648.144000px;}
._4{margin-left:-597.496282px;}
._2e{margin-left:-544.207200px;}
._2a{margin-left:-504.180600px;}
._2c{margin-left:-467.680800px;}
._1{margin-left:-402.119003px;}
._2b{margin-left:-360.000000px;}
._19{margin-left:-16.900200px;}
._13{margin-left:-15.613200px;}
._1a{margin-left:-14.364600px;}
._8{margin-left:-13.296000px;}
._16{margin-left:-12.262200px;}
._9{margin-left:-10.800000px;}
._e{margin-left:-8.803800px;}
._11{margin-left:-7.704000px;}
._7{margin-left:-6.052200px;}
._6{margin-left:-4.458000px;}
._5{margin-left:-3.264000px;}
._2{margin-left:-2.177400px;}
._3{margin-left:-1.060200px;}
._10{width:1.097400px;}
._f{width:2.142000px;}
._1e{width:3.731400px;}
._18{width:4.989000px;}
._1b{width:6.495000px;}
._1f{width:7.519200px;}
._15{width:8.894400px;}
._12{width:10.125000px;}
._14{width:11.214600px;}
._25{width:12.240000px;}
._20{width:13.354200px;}
._27{width:14.424000px;}
._23{width:16.135200px;}
._26{width:18.561000px;}
._24{width:21.041400px;}
._1c{width:22.354200px;}
._1d{width:23.568000px;}
._a{width:25.002000px;}
._d{width:27.000000px;}
._21{width:39.881400px;}
._22{width:41.177400px;}
._28{width:59.007000px;}
._c{width:105.361200px;}
._b{width:1024.640400px;}
.fca{color:rgb(5,99,193);}
.fc9{color:rgb(245,126,19);}
.fc8{color:rgb(47,92,179);}
.fc7{color:rgb(152,169,221);}
.fc5{color:rgb(66,178,60);}
.fc6{color:rgb(38,122,200);}
.fc3{color:rgb(210,32,39);}
.fc2{color:rgb(42,62,146);}
.fc4{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fcb{color:rgb(0,173,239);}
.fc0{color:transparent;}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:114.000000px;}
.fsb{font-size:126.000000px;}
.fs1{font-size:131.540400px;}
.fs9{font-size:144.000000px;}
.fs8{font-size:180.000000px;}
.fs3{font-size:268.658400px;}
.fs0{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:78.581550px;}
.y113{bottom:114.502050px;}
.y124{bottom:123.005850px;}
.y1f9{bottom:124.399050px;}
.y3{bottom:128.872800px;}
.ybe{bottom:132.052050px;}
.y5d{bottom:132.431250px;}
.y8b{bottom:136.888650px;}
.y140{bottom:140.105850px;}
.y123{bottom:140.555850px;}
.y5a{bottom:141.403650px;}
.y21c{bottom:142.094700px;}
.y1be{bottom:142.172700px;}
.y1f8{bottom:142.399050px;}
.y239{bottom:145.528350px;}
.ybd{bottom:149.601900px;}
.y8a{bottom:154.438650px;}
.y2f{bottom:154.581000px;}
.y13f{bottom:157.655850px;}
.y122{bottom:158.105850px;}
.y167{bottom:158.197950px;}
.y21b{bottom:158.294700px;}
.y59{bottom:159.403650px;}
.y1f7{bottom:160.399050px;}
.y238{bottom:163.528350px;}
.yf0{bottom:165.759450px;}
.y1bd{bottom:166.876650px;}
.y199{bottom:167.035050px;}
.y2e{bottom:172.581000px;}
.y21a{bottom:174.494700px;}
.ybc{bottom:175.655850px;}
.y166{bottom:175.747950px;}
.y58{bottom:177.403650px;}
.y1f6{bottom:178.399050px;}
.y89{bottom:180.492600px;}
.y237{bottom:181.528350px;}
.y1bc{bottom:183.076650px;}
.yef{bottom:183.309600px;}
.y13e{bottom:183.709800px;}
.y121{bottom:184.159950px;}
.y198{bottom:184.585050px;}
.y2d{bottom:190.581000px;}
.ybb{bottom:193.206000px;}
.y165{bottom:193.298100px;}
.y57{bottom:195.403650px;}
.y1f5{bottom:196.399050px;}
.y88{bottom:198.042600px;}
.y1bb{bottom:199.276650px;}
.y236{bottom:199.528350px;}
.yee{bottom:200.859450px;}
.y13d{bottom:201.259800px;}
.y120{bottom:201.709800px;}
.y197{bottom:202.135050px;}
.y2c{bottom:208.581000px;}
.y112{bottom:210.755850px;}
.y56{bottom:213.403650px;}
.y1f4{bottom:214.399050px;}
.y1ba{bottom:215.476650px;}
.y87{bottom:215.592600px;}
.y235{bottom:217.528350px;}
.y13c{bottom:218.809800px;}
.yba{bottom:219.259800px;}
.y164{bottom:219.351900px;}
.y2b{bottom:226.581000px;}
.yed{bottom:226.913400px;}
.y196{bottom:228.189000px;}
.y55{bottom:231.403650px;}
.y1b9{bottom:231.676650px;}
.y1f3{bottom:232.399050px;}
.y234{bottom:235.528350px;}
.yb9{bottom:236.809800px;}
.y163{bottom:236.901900px;}
.y86{bottom:241.646550px;}
.yec{bottom:244.463400px;}
.y2a{bottom:244.581000px;}
.y13b{bottom:244.863750px;}
.y11f{bottom:245.313750px;}
.y195{bottom:245.739000px;}
.y1b8{bottom:247.876650px;}
.y54{bottom:249.403650px;}
.y1f2{bottom:250.399050px;}
.y233{bottom:253.528350px;}
.y111{bottom:254.359800px;}
.y162{bottom:254.901900px;}
.y85{bottom:259.196550px;}
.yeb{bottom:262.013400px;}
.y13a{bottom:262.413750px;}
.y29{bottom:262.581000px;}
.yb8{bottom:262.863750px;}
.y194{bottom:263.288850px;}
.y1b7{bottom:264.076650px;}
.y53{bottom:267.403650px;}
.y1f1{bottom:268.399050px;}
.y232{bottom:271.528350px;}
.y110{bottom:271.909950px;}
.y84{bottom:276.746550px;}
.y139{bottom:279.963750px;}
.y1b6{bottom:280.276650px;}
.yb7{bottom:280.413750px;}
.y28{bottom:280.581000px;}
.y193{bottom:280.839000px;}
.y161{bottom:280.956000px;}
.y52{bottom:285.403650px;}
.y1f0{bottom:286.399050px;}
.yea{bottom:288.067350px;}
.y11e{bottom:288.917700px;}
.y1b5{bottom:296.476650px;}
.y138{bottom:297.513750px;}
.yb6{bottom:297.963750px;}
.y160{bottom:298.505850px;}
.y27{bottom:298.581000px;}
.y83{bottom:302.800500px;}
.y254{bottom:302.845350px;}
.y51{bottom:303.403650px;}
.y1ef{bottom:304.399050px;}
.ye9{bottom:305.617350px;}
.y11d{bottom:306.467700px;}
.y192{bottom:306.892950px;}
.y231{bottom:307.528350px;}
.y1b4{bottom:312.676650px;}
.y137{bottom:315.063750px;}
.y10f{bottom:315.513750px;}
.y15f{bottom:316.055850px;}
.y26{bottom:316.581000px;}
.y82{bottom:320.350500px;}
.y253{bottom:320.845350px;}
.y50{bottom:321.403650px;}
.y1ee{bottom:322.399050px;}
.ye8{bottom:323.167350px;}
.yb5{bottom:324.017700px;}
.y191{bottom:324.442800px;}
.y1b3{bottom:328.876650px;}
.y10e{bottom:333.063750px;}
.y25{bottom:334.581000px;}
.y81{bottom:337.900500px;}
.y1ed{bottom:340.399050px;}
.y136{bottom:341.117700px;}
.yb4{bottom:341.567700px;}
.y190{bottom:341.992800px;}
.y15e{bottom:342.109800px;}
.y1b2{bottom:345.076650px;}
.ye7{bottom:349.221300px;}
.y24{bottom:352.581000px;}
.y25d{bottom:355.244250px;}
.y1ec{bottom:358.399050px;}
.y135{bottom:358.667700px;}
.y10d{bottom:359.117700px;}
.y15d{bottom:359.659950px;}
.y1b1{bottom:361.276650px;}
.y80{bottom:363.954450px;}
.ye6{bottom:366.771300px;}
.yb3{bottom:367.621650px;}
.y18f{bottom:368.046900px;}
.y23{bottom:370.581000px;}
.y25c{bottom:375.044250px;}
.y1eb{bottom:376.399050px;}
.y10c{bottom:376.667700px;}
.y15c{bottom:377.209800px;}
.y1b0{bottom:377.476650px;}
.y7f{bottom:381.504300px;}
.ye5{bottom:384.321300px;}
.y134{bottom:384.721650px;}
.yb2{bottom:385.171650px;}
.y18e{bottom:385.596900px;}
.y22{bottom:388.581000px;}
.y1af{bottom:393.676650px;}
.y10b{bottom:394.217700px;}
.y1ea{bottom:394.399050px;}
.y25b{bottom:394.844250px;}
.y7e{bottom:399.054450px;}
.y4f{bottom:402.176550px;}
.y133{bottom:402.271650px;}
.yb1{bottom:402.721650px;}
.y18d{bottom:403.146900px;}
.y15b{bottom:403.263750px;}
.y21{bottom:406.581000px;}
.ye4{bottom:410.375250px;}
.y11c{bottom:411.225600px;}
.y10a{bottom:411.767700px;}
.y1e9{bottom:412.399050px;}
.y25a{bottom:414.644250px;}
.y1ae{bottom:415.504950px;}
.y132{bottom:419.821650px;}
.y4e{bottom:420.176550px;}
.y11a{bottom:420.271650px;}
.y15a{bottom:420.813750px;}
.y20{bottom:424.581000px;}
.y7d{bottom:425.108250px;}
.ye3{bottom:427.925250px;}
.yb0{bottom:428.775600px;}
.y18c{bottom:429.200850px;}
.y1e8{bottom:430.399050px;}
.y259{bottom:434.444250px;}
.y109{bottom:437.821650px;}
.y4d{bottom:438.176550px;}
.y1ad{bottom:440.208900px;}
.y1f{bottom:442.581000px;}
.y7c{bottom:442.658400px;}
.ye2{bottom:445.475250px;}
.y131{bottom:445.875600px;}
.yaf{bottom:446.325600px;}
.y18b{bottom:446.750700px;}
.y159{bottom:446.867700px;}
.y1e7{bottom:448.399050px;}
.y108{bottom:455.371650px;}
.y4c{bottom:456.176550px;}
.y1ac{bottom:456.408900px;}
.y1e{bottom:460.581000px;}
.y130{bottom:463.425600px;}
.yae{bottom:463.875600px;}
.y18a{bottom:464.300700px;}
.y158{bottom:464.417700px;}
.y1e6{bottom:466.399050px;}
.y7b{bottom:468.712350px;}
.ye1{bottom:471.529200px;}
.y1ab{bottom:472.608900px;}
.y107{bottom:472.921650px;}
.y4b{bottom:474.176550px;}
.y1d{bottom:478.581000px;}
.y12f{bottom:480.975600px;}
.y119{bottom:481.425600px;}
.y157{bottom:481.967700px;}
.y1e5{bottom:484.399050px;}
.y7a{bottom:486.262200px;}
.y1aa{bottom:488.808900px;}
.ye0{bottom:489.079200px;}
.yad{bottom:489.929550px;}
.y189{bottom:490.354650px;}
.y4a{bottom:492.176550px;}
.y1c{bottom:496.581000px;}
.y106{bottom:498.975600px;}
.y219{bottom:501.111150px;}
.y1e4{bottom:502.399050px;}
.y79{bottom:503.812200px;}
.y1a9{bottom:505.008900px;}
.y12e{bottom:507.029550px;}
.yac{bottom:507.479550px;}
.y188{bottom:507.904650px;}
.y156{bottom:508.021650px;}
.y1b{bottom:514.581000px;}
.ydf{bottom:515.133150px;}
.y105{bottom:516.525600px;}
.y218{bottom:519.111150px;}
.y1a8{bottom:521.208900px;}
.y12d{bottom:524.579550px;}
.yab{bottom:525.029550px;}
.y187{bottom:525.454650px;}
.y155{bottom:525.571650px;}
.y1e3{bottom:528.903150px;}
.y78{bottom:529.866150px;}
.y1a{bottom:532.581150px;}
.yde{bottom:532.683150px;}
.y217{bottom:537.111150px;}
.y1a7{bottom:537.408900px;}
.y12c{bottom:542.129550px;}
.y104{bottom:542.579550px;}
.y77{bottom:547.416150px;}
.ydd{bottom:550.233150px;}
.y19{bottom:550.581150px;}
.yaa{bottom:551.083500px;}
.y186{bottom:551.508600px;}
.y154{bottom:551.625600px;}
.y24e{bottom:552.215100px;}
.y1a6{bottom:553.608900px;}
.y216{bottom:555.111150px;}
.y103{bottom:560.129550px;}
.y49{bottom:562.444800px;}
.y76{bottom:564.966150px;}
.y1e2{bottom:567.903150px;}
.y12b{bottom:568.183500px;}
.y24d{bottom:568.415100px;}
.y18{bottom:568.581150px;}
.ya9{bottom:568.633500px;}
.y185{bottom:569.058600px;}
.y153{bottom:569.175600px;}
.y1a5{bottom:569.809050px;}
.y215{bottom:573.111150px;}
.ydc{bottom:576.287100px;}
.y48{bottom:576.844800px;}
.y102{bottom:577.679550px;}
.y24c{bottom:584.615100px;}
.y12a{bottom:585.733500px;}
.y1e1{bottom:585.903150px;}
.y1a4{bottom:586.008900px;}
.ya8{bottom:586.183500px;}
.y17{bottom:586.581150px;}
.y184{bottom:586.608600px;}
.y152{bottom:586.725600px;}
.y75{bottom:591.020100px;}
.y214{bottom:591.111150px;}
.y47{bottom:591.244800px;}
.ydb{bottom:593.837100px;}
.y101{bottom:595.229550px;}
.y24b{bottom:600.815100px;}
.y1a3{bottom:602.209050px;}
.y129{bottom:603.283500px;}
.y1e0{bottom:603.903150px;}
.y183{bottom:604.158600px;}
.y16{bottom:604.581150px;}
.y46{bottom:605.644800px;}
.y74{bottom:608.570100px;}
.y213{bottom:609.111150px;}
.yda{bottom:611.387100px;}
.ya7{bottom:612.237450px;}
.y151{bottom:612.779550px;}
.y24a{bottom:617.015100px;}
.y1a2{bottom:618.408900px;}
.y45{bottom:620.044800px;}
.y100{bottom:621.283500px;}
.y1df{bottom:621.903150px;}
.y15{bottom:622.581150px;}
.y73{bottom:626.120100px;}
.y258{bottom:626.867850px;}
.y212{bottom:627.111150px;}
.yd9{bottom:628.937100px;}
.y128{bottom:629.337450px;}
.ya6{bottom:629.787450px;}
.y182{bottom:630.212550px;}
.y150{bottom:630.329550px;}
.y249{bottom:633.215100px;}
.y44{bottom:634.444800px;}
.y1a1{bottom:634.609050px;}
.yff{bottom:638.833500px;}
.y1de{bottom:639.903150px;}
.y14{bottom:640.581150px;}
.y211{bottom:645.111150px;}
.y257{bottom:646.667850px;}
.y127{bottom:646.887450px;}
.ya5{bottom:647.337450px;}
.y181{bottom:647.762550px;}
.y14f{bottom:647.879550px;}
.y43{bottom:648.844800px;}
.y248{bottom:649.415100px;}
.y1a0{bottom:650.809050px;}
.y72{bottom:652.174050px;}
.yd8{bottom:654.991050px;}
.y118{bottom:656.383500px;}
.y1dd{bottom:657.903150px;}
.y13{bottom:658.581150px;}
.y210{bottom:663.111150px;}
.y42{bottom:663.244800px;}
.y126{bottom:664.437450px;}
.yfe{bottom:664.887450px;}
.y180{bottom:665.312550px;}
.y247{bottom:665.615100px;}
.y256{bottom:666.467850px;}
.y71{bottom:669.724050px;}
.yd7{bottom:672.541050px;}
.ya4{bottom:673.391400px;}
.y14e{bottom:673.933500px;}
.y1dc{bottom:675.903150px;}
.y12{bottom:676.581150px;}
.y41{bottom:677.644800px;}
.y20f{bottom:681.111150px;}
.y246{bottom:681.815100px;}
.yfd{bottom:682.437450px;}
.y230{bottom:686.119050px;}
.y255{bottom:686.267850px;}
.y70{bottom:687.274050px;}
.yd6{bottom:690.091050px;}
.y125{bottom:690.491250px;}
.ya3{bottom:690.941400px;}
.y17f{bottom:691.366500px;}
.y14d{bottom:691.483500px;}
.y40{bottom:692.044800px;}
.y1db{bottom:693.903150px;}
.y11{bottom:694.581150px;}
.y245{bottom:698.015100px;}
.y20e{bottom:699.111150px;}
.yfc{bottom:699.987450px;}
.y22f{bottom:704.119050px;}
.y3f{bottom:706.444800px;}
.ya2{bottom:708.491250px;}
.y19f{bottom:708.637350px;}
.y17e{bottom:708.916500px;}
.y1da{bottom:711.903150px;}
.y10{bottom:712.581000px;}
.y6f{bottom:713.328000px;}
.y244{bottom:714.215100px;}
.yd5{bottom:716.145000px;}
.y20d{bottom:717.111150px;}
.y117{bottom:717.537450px;}
.y3e{bottom:720.844800px;}
.y22e{bottom:722.119050px;}
.yfb{bottom:726.041400px;}
.y17d{bottom:726.466500px;}
.y1c1{bottom:728.198550px;}
.y19e{bottom:728.437350px;}
.y1d9{bottom:729.903150px;}
.y243{bottom:730.415100px;}
.yf{bottom:730.581000px;}
.y6e{bottom:730.878000px;}
.yd4{bottom:733.694850px;}
.ya1{bottom:734.545200px;}
.y14c{bottom:735.087450px;}
.y20c{bottom:735.111150px;}
.y3d{bottom:735.244800px;}
.y22d{bottom:740.119050px;}
.yfa{bottom:743.591400px;}
.y1d8{bottom:747.903150px;}
.y1c0{bottom:747.998550px;}
.y19d{bottom:748.237350px;}
.y6d{bottom:748.428000px;}
.ye{bottom:748.581000px;}
.y3c{bottom:749.644800px;}
.y24f{bottom:750.626550px;}
.yd3{bottom:751.245000px;}
.ya0{bottom:752.095350px;}
.y17c{bottom:752.520450px;}
.y20b{bottom:753.111150px;}
.y22c{bottom:758.119050px;}
.yf9{bottom:761.141400px;}
.y3b{bottom:764.044800px;}
.y242{bottom:764.615100px;}
.y1d7{bottom:765.903150px;}
.yd{bottom:766.581000px;}
.y1bf{bottom:767.798550px;}
.y19c{bottom:768.037350px;}
.y2{bottom:769.573800px;}
.y9f{bottom:769.645350px;}
.y17b{bottom:770.070450px;}
.y20a{bottom:771.111150px;}
.y6c{bottom:774.481950px;}
.y22b{bottom:776.119050px;}
.yd2{bottom:777.298800px;}
.y3a{bottom:778.444800px;}
.y14b{bottom:778.691400px;}
.y241{bottom:782.614950px;}
.yc{bottom:784.581150px;}
.yf8{bottom:787.195350px;}
.y209{bottom:789.111150px;}
.y6b{bottom:792.031950px;}
.y1d6{bottom:792.407100px;}
.y39{bottom:792.844800px;}
.y22a{bottom:794.119050px;}
.yd1{bottom:794.848800px;}
.y9e{bottom:795.699150px;}
.y17a{bottom:796.124400px;}
.y14a{bottom:796.241400px;}
.y240{bottom:800.614950px;}
.yb{bottom:802.581150px;}
.yf7{bottom:804.745200px;}
.y208{bottom:807.111150px;}
.y38{bottom:807.244800px;}
.y4{bottom:807.481350px;}
.y6a{bottom:809.581950px;}
.y229{bottom:812.119050px;}
.yd0{bottom:812.398800px;}
.y9d{bottom:813.249150px;}
.y179{bottom:813.674400px;}
.y23f{bottom:818.614950px;}
.y37{bottom:821.644800px;}
.y116{bottom:822.295200px;}
.y252{bottom:824.305800px;}
.y207{bottom:825.111150px;}
.ya{bottom:829.084950px;}
.y228{bottom:830.119050px;}
.y9c{bottom:830.799150px;}
.y178{bottom:831.224400px;}
.y1d5{bottom:831.407100px;}
.y69{bottom:835.635900px;}
.y36{bottom:836.044800px;}
.y23e{bottom:836.614950px;}
.ycf{bottom:838.452750px;}
.y149{bottom:839.845350px;}
.y9{bottom:847.084950px;}
.y227{bottom:848.119050px;}
.yf6{bottom:848.349300px;}
.y177{bottom:848.774400px;}
.y35{bottom:850.444800px;}
.y206{bottom:851.614950px;}
.y68{bottom:853.185900px;}
.y251{bottom:854.409750px;}
.y23d{bottom:854.614950px;}
.yce{bottom:856.002750px;}
.y1d4{bottom:856.110900px;}
.y9b{bottom:856.853100px;}
.y148{bottom:857.395350px;}
.y34{bottom:864.844800px;}
.yf5{bottom:865.899150px;}
.y226{bottom:866.119050px;}
.y67{bottom:870.735900px;}
.y1d3{bottom:872.310900px;}
.y23c{bottom:872.614950px;}
.ycd{bottom:873.552750px;}
.y8{bottom:873.588900px;}
.y9a{bottom:874.403100px;}
.y176{bottom:874.828350px;}
.y33{bottom:879.244800px;}
.y147{bottom:883.449150px;}
.y225{bottom:884.119050px;}
.y250{bottom:884.513700px;}
.y1d2{bottom:888.510900px;}
.y205{bottom:890.614950px;}
.y7{bottom:891.588900px;}
.y99{bottom:891.953100px;}
.y175{bottom:892.378350px;}
.y32{bottom:893.644800px;}
.y66{bottom:896.789850px;}
.ycc{bottom:899.606700px;}
.y146{bottom:900.999150px;}
.y224{bottom:902.119050px;}
.y1d1{bottom:904.710900px;}
.y31{bottom:908.044800px;}
.y204{bottom:908.614950px;}
.yf4{bottom:909.503100px;}
.y65{bottom:914.339850px;}
.ycb{bottom:917.156850px;}
.y98{bottom:918.007200px;}
.y174{bottom:918.432300px;}
.y223{bottom:920.119050px;}
.y1d0{bottom:920.910900px;}
.y30{bottom:922.444800px;}
.y203{bottom:926.614950px;}
.yf3{bottom:927.053100px;}
.y64{bottom:931.889850px;}
.yca{bottom:934.706700px;}
.y97{bottom:935.557050px;}
.y173{bottom:935.982300px;}
.y1cf{bottom:937.110900px;}
.y222{bottom:938.119050px;}
.y145{bottom:944.603100px;}
.y202{bottom:944.614950px;}
.y1{bottom:946.740300px;}
.y96{bottom:953.107050px;}
.y1ce{bottom:953.310900px;}
.y172{bottom:953.532300px;}
.y221{bottom:956.119050px;}
.y63{bottom:957.943800px;}
.yc9{bottom:960.760650px;}
.y144{bottom:962.153100px;}
.y201{bottom:962.614950px;}
.y1cd{bottom:969.510900px;}
.yf2{bottom:970.657050px;}
.y220{bottom:974.119050px;}
.y62{bottom:975.493800px;}
.yc8{bottom:978.310800px;}
.y95{bottom:979.161000px;}
.y171{bottom:979.586250px;}
.y200{bottom:980.614950px;}
.y1cc{bottom:985.710900px;}
.y115{bottom:988.207050px;}
.y21f{bottom:992.119050px;}
.yc7{bottom:995.860650px;}
.y94{bottom:996.711000px;}
.y170{bottom:997.136250px;}
.y23b{bottom:998.614950px;}
.y61{bottom:1001.547750px;}
.y1cb{bottom:1001.910900px;}
.y143{bottom:1005.757050px;}
.y1ff{bottom:1007.119050px;}
.y21e{bottom:1010.119050px;}
.yc6{bottom:1013.410650px;}
.y93{bottom:1014.261000px;}
.y16f{bottom:1014.686250px;}
.y1ca{bottom:1018.110900px;}
.y60{bottom:1019.097600px;}
.y23a{bottom:1025.119050px;}
.y21d{bottom:1028.119050px;}
.yc5{bottom:1030.960650px;}
.yf1{bottom:1031.811000px;}
.y16e{bottom:1032.236250px;}
.y1c9{bottom:1034.310900px;}
.y5f{bottom:1036.647600px;}
.y92{bottom:1040.314950px;}
.y1fe{bottom:1046.119050px;}
.y114{bottom:1049.361000px;}
.y1c8{bottom:1050.510900px;}
.y5e{bottom:1054.197750px;}
.yc4{bottom:1057.014600px;}
.y91{bottom:1057.864950px;}
.y16d{bottom:1058.290200px;}
.y1fd{bottom:1064.119050px;}
.y1c7{bottom:1066.710900px;}
.y142{bottom:1066.911000px;}
.yc3{bottom:1074.564600px;}
.y90{bottom:1075.414950px;}
.y16c{bottom:1075.840200px;}
.y1fc{bottom:1082.119050px;}
.y1c6{bottom:1082.910900px;}
.yc2{bottom:1092.114600px;}
.y8f{bottom:1092.964950px;}
.y16b{bottom:1093.390200px;}
.y19b{bottom:1093.837350px;}
.y1c5{bottom:1099.110900px;}
.y1fb{bottom:1100.119050px;}
.y11b{bottom:1101.468900px;}
.y141{bottom:1110.514950px;}
.y1c4{bottom:1115.310900px;}
.y1fa{bottom:1118.119050px;}
.yc1{bottom:1118.168550px;}
.y8e{bottom:1119.018900px;}
.y16a{bottom:1119.444150px;}
.y1c3{bottom:1131.510900px;}
.yc0{bottom:1135.718550px;}
.y6{bottom:1136.119050px;}
.y8d{bottom:1136.568900px;}
.y169{bottom:1136.994150px;}
.y19a{bottom:1137.037350px;}
.y1c2{bottom:1147.710900px;}
.ybf{bottom:1153.268550px;}
.y8c{bottom:1154.118900px;}
.y5{bottom:1154.119050px;}
.y168{bottom:1154.544150px;}
.y5b{bottom:1188.116700px;}
.h13{height:34.945312px;}
.hc{height:34.968750px;}
.h14{height:38.988000px;}
.h8{height:39.313477px;}
.h7{height:39.339844px;}
.h12{height:41.976562px;}
.h18{height:42.070312px;}
.hb{height:42.539062px;}
.h10{height:43.320000px;}
.h6{height:43.681641px;}
.he{height:43.710938px;}
.h9{height:47.223633px;}
.ha{height:47.856445px;}
.h1d{height:48.082031px;}
.h17{height:48.550781px;}
.h1b{height:52.470703px;}
.hf{height:52.560000px;}
.hd{height:53.173828px;}
.h16{height:57.717773px;}
.h1c{height:58.491211px;}
.h1a{height:63.808594px;}
.h4{height:81.826172px;}
.h19{height:85.148438px;}
.h3{height:95.829237px;}
.h15{height:97.101562px;}
.h11{height:126.210938px;}
.h5{height:234.944919px;}
.h2{height:314.824219px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:31.351200px;}
.x2{left:55.783650px;}
.x13{left:64.449150px;}
.x8{left:68.031450px;}
.x1e{left:74.031450px;}
.x11{left:81.637800px;}
.x7{left:97.795350px;}
.x21{left:101.877300px;}
.x22{left:103.795200px;}
.x19{left:105.477150px;}
.x12{left:109.077150px;}
.x18{left:110.551200px;}
.x28{left:113.191050px;}
.x2a{left:123.120750px;}
.x9{left:127.559100px;}
.x29{left:132.240900px;}
.x14{left:140.314950px;}
.x1c{left:193.366200px;}
.x25{left:208.346400px;}
.x2f{left:216.316050px;}
.x2d{left:227.937750px;}
.x2e{left:242.157600px;}
.x2c{left:270.110250px;}
.x26{left:319.105950px;}
.x30{left:345.754050px;}
.x2b{left:369.641850px;}
.x27{left:379.223100px;}
.x24{left:386.449200px;}
.xd{left:429.572400px;}
.xf{left:431.700150px;}
.xe{left:440.870100px;}
.xa{left:444.330750px;}
.x15{left:472.580700px;}
.x10{left:485.046000px;}
.xb{left:503.858250px;}
.x1f{left:522.513600px;}
.xc{left:535.030200px;}
.x20{left:573.121050px;}
.x1d{left:592.547850px;}
.x5{left:648.382800px;}
.x3{left:653.932500px;}
.x1{left:679.618950px;}
.x6{left:718.153350px;}
.x23{left:746.483100px;}
.x1b{left:769.436400px;}
.x1a{left:773.036250px;}
.x16{left:776.636400px;}
.x17{left:855.632400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-3.946667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.001067pt;}
.ls4{letter-spacing:0.001600pt;}
.ls3{letter-spacing:0.002667pt;}
.ls7{letter-spacing:0.003200pt;}
.ls6{letter-spacing:1.866667pt;}
.ls2{letter-spacing:7.680000pt;}
.ls1{letter-spacing:9.600000pt;}
.lsa{letter-spacing:12.800000pt;}
.ls5{letter-spacing:24.000000pt;}
.ws0{word-spacing:-88.960000pt;}
.ws2{word-spacing:-66.388476pt;}
.ws1{word-spacing:-32.505094pt;}
.wse{word-spacing:-28.160000pt;}
.ws11{word-spacing:-26.880000pt;}
.ws6{word-spacing:-24.000000pt;}
.ws4{word-spacing:-22.944000pt;}
.ws1a{word-spacing:-17.792000pt;}
.ws5{word-spacing:-16.693333pt;}
.ws9{word-spacing:-14.826667pt;}
.wsf{word-spacing:-13.344000pt;}
.ws8{word-spacing:-10.880000pt;}
.wsd{word-spacing:-5.627200pt;}
.wsc{word-spacing:-5.412267pt;}
.ws19{word-spacing:-2.080000pt;}
.ws7{word-spacing:-1.866667pt;}
.wsb{word-spacing:-1.578667pt;}
.ws15{word-spacing:-0.960000pt;}
.ws3{word-spacing:0.000000pt;}
.ws14{word-spacing:1.600000pt;}
.wsa{word-spacing:3.946667pt;}
.ws12{word-spacing:5.066667pt;}
.ws18{word-spacing:7.040000pt;}
.ws13{word-spacing:8.426667pt;}
.ws17{word-spacing:8.693333pt;}
.ws16{word-spacing:9.600000pt;}
.ws10{word-spacing:13.824000pt;}
._17{margin-left:-2592.872000pt;}
._2d{margin-left:-782.528000pt;}
._0{margin-left:-712.640000pt;}
._29{margin-left:-576.128000pt;}
._4{margin-left:-531.107806pt;}
._2e{margin-left:-483.739733pt;}
._2a{margin-left:-448.160533pt;}
._2c{margin-left:-415.716267pt;}
._1{margin-left:-357.439114pt;}
._2b{margin-left:-320.000000pt;}
._19{margin-left:-15.022400pt;}
._13{margin-left:-13.878400pt;}
._1a{margin-left:-12.768533pt;}
._8{margin-left:-11.818667pt;}
._16{margin-left:-10.899733pt;}
._9{margin-left:-9.600000pt;}
._e{margin-left:-7.825600pt;}
._11{margin-left:-6.848000pt;}
._7{margin-left:-5.379733pt;}
._6{margin-left:-3.962667pt;}
._5{margin-left:-2.901333pt;}
._2{margin-left:-1.935467pt;}
._3{margin-left:-0.942400pt;}
._10{width:0.975467pt;}
._f{width:1.904000pt;}
._1e{width:3.316800pt;}
._18{width:4.434667pt;}
._1b{width:5.773333pt;}
._1f{width:6.683733pt;}
._15{width:7.906133pt;}
._12{width:9.000000pt;}
._14{width:9.968533pt;}
._25{width:10.880000pt;}
._20{width:11.870400pt;}
._27{width:12.821333pt;}
._23{width:14.342400pt;}
._26{width:16.498667pt;}
._24{width:18.703467pt;}
._1c{width:19.870400pt;}
._1d{width:20.949333pt;}
._a{width:22.224000pt;}
._d{width:24.000000pt;}
._21{width:35.450133pt;}
._22{width:36.602133pt;}
._28{width:52.450667pt;}
._c{width:93.654400pt;}
._b{width:910.791467pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:101.333333pt;}
.fsb{font-size:112.000000pt;}
.fs1{font-size:116.924800pt;}
.fs9{font-size:128.000000pt;}
.fs8{font-size:160.000000pt;}
.fs3{font-size:238.807467pt;}
.fs0{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:69.850267pt;}
.y113{bottom:101.779600pt;}
.y124{bottom:109.338533pt;}
.y1f9{bottom:110.576933pt;}
.y3{bottom:114.553600pt;}
.ybe{bottom:117.379600pt;}
.y5d{bottom:117.716667pt;}
.y8b{bottom:121.678800pt;}
.y140{bottom:124.538533pt;}
.y123{bottom:124.938533pt;}
.y5a{bottom:125.692133pt;}
.y21c{bottom:126.306400pt;}
.y1be{bottom:126.375733pt;}
.y1f8{bottom:126.576933pt;}
.y239{bottom:129.358533pt;}
.ybd{bottom:132.979467pt;}
.y8a{bottom:137.278800pt;}
.y2f{bottom:137.405333pt;}
.y13f{bottom:140.138533pt;}
.y122{bottom:140.538533pt;}
.y167{bottom:140.620400pt;}
.y21b{bottom:140.706400pt;}
.y59{bottom:141.692133pt;}
.y1f7{bottom:142.576933pt;}
.y238{bottom:145.358533pt;}
.yf0{bottom:147.341733pt;}
.y1bd{bottom:148.334800pt;}
.y199{bottom:148.475600pt;}
.y2e{bottom:153.405333pt;}
.y21a{bottom:155.106400pt;}
.ybc{bottom:156.138533pt;}
.y166{bottom:156.220400pt;}
.y58{bottom:157.692133pt;}
.y1f6{bottom:158.576933pt;}
.y89{bottom:160.437867pt;}
.y237{bottom:161.358533pt;}
.y1bc{bottom:162.734800pt;}
.yef{bottom:162.941867pt;}
.y13e{bottom:163.297600pt;}
.y121{bottom:163.697733pt;}
.y198{bottom:164.075600pt;}
.y2d{bottom:169.405333pt;}
.ybb{bottom:171.738667pt;}
.y165{bottom:171.820533pt;}
.y57{bottom:173.692133pt;}
.y1f5{bottom:174.576933pt;}
.y88{bottom:176.037867pt;}
.y1bb{bottom:177.134800pt;}
.y236{bottom:177.358533pt;}
.yee{bottom:178.541733pt;}
.y13d{bottom:178.897600pt;}
.y120{bottom:179.297600pt;}
.y197{bottom:179.675600pt;}
.y2c{bottom:185.405333pt;}
.y112{bottom:187.338533pt;}
.y56{bottom:189.692133pt;}
.y1f4{bottom:190.576933pt;}
.y1ba{bottom:191.534800pt;}
.y87{bottom:191.637867pt;}
.y235{bottom:193.358533pt;}
.y13c{bottom:194.497600pt;}
.yba{bottom:194.897600pt;}
.y164{bottom:194.979467pt;}
.y2b{bottom:201.405333pt;}
.yed{bottom:201.700800pt;}
.y196{bottom:202.834667pt;}
.y55{bottom:205.692133pt;}
.y1b9{bottom:205.934800pt;}
.y1f3{bottom:206.576933pt;}
.y234{bottom:209.358533pt;}
.yb9{bottom:210.497600pt;}
.y163{bottom:210.579467pt;}
.y86{bottom:214.796933pt;}
.yec{bottom:217.300800pt;}
.y2a{bottom:217.405333pt;}
.y13b{bottom:217.656667pt;}
.y11f{bottom:218.056667pt;}
.y195{bottom:218.434667pt;}
.y1b8{bottom:220.334800pt;}
.y54{bottom:221.692133pt;}
.y1f2{bottom:222.576933pt;}
.y233{bottom:225.358533pt;}
.y111{bottom:226.097600pt;}
.y162{bottom:226.579467pt;}
.y85{bottom:230.396933pt;}
.yeb{bottom:232.900800pt;}
.y13a{bottom:233.256667pt;}
.y29{bottom:233.405333pt;}
.yb8{bottom:233.656667pt;}
.y194{bottom:234.034533pt;}
.y1b7{bottom:234.734800pt;}
.y53{bottom:237.692133pt;}
.y1f1{bottom:238.576933pt;}
.y232{bottom:241.358533pt;}
.y110{bottom:241.697733pt;}
.y84{bottom:245.996933pt;}
.y139{bottom:248.856667pt;}
.y1b6{bottom:249.134800pt;}
.yb7{bottom:249.256667pt;}
.y28{bottom:249.405333pt;}
.y193{bottom:249.634667pt;}
.y161{bottom:249.738667pt;}
.y52{bottom:253.692133pt;}
.y1f0{bottom:254.576933pt;}
.yea{bottom:256.059867pt;}
.y11e{bottom:256.815733pt;}
.y1b5{bottom:263.534800pt;}
.y138{bottom:264.456667pt;}
.yb6{bottom:264.856667pt;}
.y160{bottom:265.338533pt;}
.y27{bottom:265.405333pt;}
.y83{bottom:269.156000pt;}
.y254{bottom:269.195867pt;}
.y51{bottom:269.692133pt;}
.y1ef{bottom:270.576933pt;}
.ye9{bottom:271.659867pt;}
.y11d{bottom:272.415733pt;}
.y192{bottom:272.793733pt;}
.y231{bottom:273.358533pt;}
.y1b4{bottom:277.934800pt;}
.y137{bottom:280.056667pt;}
.y10f{bottom:280.456667pt;}
.y15f{bottom:280.938533pt;}
.y26{bottom:281.405333pt;}
.y82{bottom:284.756000pt;}
.y253{bottom:285.195867pt;}
.y50{bottom:285.692133pt;}
.y1ee{bottom:286.576933pt;}
.ye8{bottom:287.259867pt;}
.yb5{bottom:288.015733pt;}
.y191{bottom:288.393600pt;}
.y1b3{bottom:292.334800pt;}
.y10e{bottom:296.056667pt;}
.y25{bottom:297.405333pt;}
.y81{bottom:300.356000pt;}
.y1ed{bottom:302.576933pt;}
.y136{bottom:303.215733pt;}
.yb4{bottom:303.615733pt;}
.y190{bottom:303.993600pt;}
.y15e{bottom:304.097600pt;}
.y1b2{bottom:306.734800pt;}
.ye7{bottom:310.418933pt;}
.y24{bottom:313.405333pt;}
.y25d{bottom:315.772667pt;}
.y1ec{bottom:318.576933pt;}
.y135{bottom:318.815733pt;}
.y10d{bottom:319.215733pt;}
.y15d{bottom:319.697733pt;}
.y1b1{bottom:321.134800pt;}
.y80{bottom:323.515067pt;}
.ye6{bottom:326.018933pt;}
.yb3{bottom:326.774800pt;}
.y18f{bottom:327.152800pt;}
.y23{bottom:329.405333pt;}
.y25c{bottom:333.372667pt;}
.y1eb{bottom:334.576933pt;}
.y10c{bottom:334.815733pt;}
.y15c{bottom:335.297600pt;}
.y1b0{bottom:335.534800pt;}
.y7f{bottom:339.114933pt;}
.ye5{bottom:341.618933pt;}
.y134{bottom:341.974800pt;}
.yb2{bottom:342.374800pt;}
.y18e{bottom:342.752800pt;}
.y22{bottom:345.405333pt;}
.y1af{bottom:349.934800pt;}
.y10b{bottom:350.415733pt;}
.y1ea{bottom:350.576933pt;}
.y25b{bottom:350.972667pt;}
.y7e{bottom:354.715067pt;}
.y4f{bottom:357.490267pt;}
.y133{bottom:357.574800pt;}
.yb1{bottom:357.974800pt;}
.y18d{bottom:358.352800pt;}
.y15b{bottom:358.456667pt;}
.y21{bottom:361.405333pt;}
.ye4{bottom:364.778000pt;}
.y11c{bottom:365.533867pt;}
.y10a{bottom:366.015733pt;}
.y1e9{bottom:366.576933pt;}
.y25a{bottom:368.572667pt;}
.y1ae{bottom:369.337733pt;}
.y132{bottom:373.174800pt;}
.y4e{bottom:373.490267pt;}
.y11a{bottom:373.574800pt;}
.y15a{bottom:374.056667pt;}
.y20{bottom:377.405333pt;}
.y7d{bottom:377.874000pt;}
.ye3{bottom:380.378000pt;}
.yb0{bottom:381.133867pt;}
.y18c{bottom:381.511867pt;}
.y1e8{bottom:382.576933pt;}
.y259{bottom:386.172667pt;}
.y109{bottom:389.174800pt;}
.y4d{bottom:389.490267pt;}
.y1ad{bottom:391.296800pt;}
.y1f{bottom:393.405333pt;}
.y7c{bottom:393.474133pt;}
.ye2{bottom:395.978000pt;}
.y131{bottom:396.333867pt;}
.yaf{bottom:396.733867pt;}
.y18b{bottom:397.111733pt;}
.y159{bottom:397.215733pt;}
.y1e7{bottom:398.576933pt;}
.y108{bottom:404.774800pt;}
.y4c{bottom:405.490267pt;}
.y1ac{bottom:405.696800pt;}
.y1e{bottom:409.405333pt;}
.y130{bottom:411.933867pt;}
.yae{bottom:412.333867pt;}
.y18a{bottom:412.711733pt;}
.y158{bottom:412.815733pt;}
.y1e6{bottom:414.576933pt;}
.y7b{bottom:416.633200pt;}
.ye1{bottom:419.137067pt;}
.y1ab{bottom:420.096800pt;}
.y107{bottom:420.374800pt;}
.y4b{bottom:421.490267pt;}
.y1d{bottom:425.405333pt;}
.y12f{bottom:427.533867pt;}
.y119{bottom:427.933867pt;}
.y157{bottom:428.415733pt;}
.y1e5{bottom:430.576933pt;}
.y7a{bottom:432.233067pt;}
.y1aa{bottom:434.496800pt;}
.ye0{bottom:434.737067pt;}
.yad{bottom:435.492933pt;}
.y189{bottom:435.870800pt;}
.y4a{bottom:437.490267pt;}
.y1c{bottom:441.405333pt;}
.y106{bottom:443.533867pt;}
.y219{bottom:445.432133pt;}
.y1e4{bottom:446.576933pt;}
.y79{bottom:447.833067pt;}
.y1a9{bottom:448.896800pt;}
.y12e{bottom:450.692933pt;}
.yac{bottom:451.092933pt;}
.y188{bottom:451.470800pt;}
.y156{bottom:451.574800pt;}
.y1b{bottom:457.405333pt;}
.ydf{bottom:457.896133pt;}
.y105{bottom:459.133867pt;}
.y218{bottom:461.432133pt;}
.y1a8{bottom:463.296800pt;}
.y12d{bottom:466.292933pt;}
.yab{bottom:466.692933pt;}
.y187{bottom:467.070800pt;}
.y155{bottom:467.174800pt;}
.y1e3{bottom:470.136133pt;}
.y78{bottom:470.992133pt;}
.y1a{bottom:473.405467pt;}
.yde{bottom:473.496133pt;}
.y217{bottom:477.432133pt;}
.y1a7{bottom:477.696800pt;}
.y12c{bottom:481.892933pt;}
.y104{bottom:482.292933pt;}
.y77{bottom:486.592133pt;}
.ydd{bottom:489.096133pt;}
.y19{bottom:489.405467pt;}
.yaa{bottom:489.852000pt;}
.y186{bottom:490.229867pt;}
.y154{bottom:490.333867pt;}
.y24e{bottom:490.857867pt;}
.y1a6{bottom:492.096800pt;}
.y216{bottom:493.432133pt;}
.y103{bottom:497.892933pt;}
.y49{bottom:499.950933pt;}
.y76{bottom:502.192133pt;}
.y1e2{bottom:504.802800pt;}
.y12b{bottom:505.052000pt;}
.y24d{bottom:505.257867pt;}
.y18{bottom:505.405467pt;}
.ya9{bottom:505.452000pt;}
.y185{bottom:505.829867pt;}
.y153{bottom:505.933867pt;}
.y1a5{bottom:506.496933pt;}
.y215{bottom:509.432133pt;}
.ydc{bottom:512.255200pt;}
.y48{bottom:512.750933pt;}
.y102{bottom:513.492933pt;}
.y24c{bottom:519.657867pt;}
.y12a{bottom:520.652000pt;}
.y1e1{bottom:520.802800pt;}
.y1a4{bottom:520.896800pt;}
.ya8{bottom:521.052000pt;}
.y17{bottom:521.405467pt;}
.y184{bottom:521.429867pt;}
.y152{bottom:521.533867pt;}
.y75{bottom:525.351200pt;}
.y214{bottom:525.432133pt;}
.y47{bottom:525.550933pt;}
.ydb{bottom:527.855200pt;}
.y101{bottom:529.092933pt;}
.y24b{bottom:534.057867pt;}
.y1a3{bottom:535.296933pt;}
.y129{bottom:536.252000pt;}
.y1e0{bottom:536.802800pt;}
.y183{bottom:537.029867pt;}
.y16{bottom:537.405467pt;}
.y46{bottom:538.350933pt;}
.y74{bottom:540.951200pt;}
.y213{bottom:541.432133pt;}
.yda{bottom:543.455200pt;}
.ya7{bottom:544.211067pt;}
.y151{bottom:544.692933pt;}
.y24a{bottom:548.457867pt;}
.y1a2{bottom:549.696800pt;}
.y45{bottom:551.150933pt;}
.y100{bottom:552.252000pt;}
.y1df{bottom:552.802800pt;}
.y15{bottom:553.405467pt;}
.y73{bottom:556.551200pt;}
.y258{bottom:557.215867pt;}
.y212{bottom:557.432133pt;}
.yd9{bottom:559.055200pt;}
.y128{bottom:559.411067pt;}
.ya6{bottom:559.811067pt;}
.y182{bottom:560.188933pt;}
.y150{bottom:560.292933pt;}
.y249{bottom:562.857867pt;}
.y44{bottom:563.950933pt;}
.y1a1{bottom:564.096933pt;}
.yff{bottom:567.852000pt;}
.y1de{bottom:568.802800pt;}
.y14{bottom:569.405467pt;}
.y211{bottom:573.432133pt;}
.y257{bottom:574.815867pt;}
.y127{bottom:575.011067pt;}
.ya5{bottom:575.411067pt;}
.y181{bottom:575.788933pt;}
.y14f{bottom:575.892933pt;}
.y43{bottom:576.750933pt;}
.y248{bottom:577.257867pt;}
.y1a0{bottom:578.496933pt;}
.y72{bottom:579.710267pt;}
.yd8{bottom:582.214267pt;}
.y118{bottom:583.452000pt;}
.y1dd{bottom:584.802800pt;}
.y13{bottom:585.405467pt;}
.y210{bottom:589.432133pt;}
.y42{bottom:589.550933pt;}
.y126{bottom:590.611067pt;}
.yfe{bottom:591.011067pt;}
.y180{bottom:591.388933pt;}
.y247{bottom:591.657867pt;}
.y256{bottom:592.415867pt;}
.y71{bottom:595.310267pt;}
.yd7{bottom:597.814267pt;}
.ya4{bottom:598.570133pt;}
.y14e{bottom:599.052000pt;}
.y1dc{bottom:600.802800pt;}
.y12{bottom:601.405467pt;}
.y41{bottom:602.350933pt;}
.y20f{bottom:605.432133pt;}
.y246{bottom:606.057867pt;}
.yfd{bottom:606.611067pt;}
.y230{bottom:609.883600pt;}
.y255{bottom:610.015867pt;}
.y70{bottom:610.910267pt;}
.yd6{bottom:613.414267pt;}
.y125{bottom:613.770000pt;}
.ya3{bottom:614.170133pt;}
.y17f{bottom:614.548000pt;}
.y14d{bottom:614.652000pt;}
.y40{bottom:615.150933pt;}
.y1db{bottom:616.802800pt;}
.y11{bottom:617.405467pt;}
.y245{bottom:620.457867pt;}
.y20e{bottom:621.432133pt;}
.yfc{bottom:622.211067pt;}
.y22f{bottom:625.883600pt;}
.y3f{bottom:627.950933pt;}
.ya2{bottom:629.770000pt;}
.y19f{bottom:629.899867pt;}
.y17e{bottom:630.148000pt;}
.y1da{bottom:632.802800pt;}
.y10{bottom:633.405333pt;}
.y6f{bottom:634.069333pt;}
.y244{bottom:634.857867pt;}
.yd5{bottom:636.573333pt;}
.y20d{bottom:637.432133pt;}
.y117{bottom:637.811067pt;}
.y3e{bottom:640.750933pt;}
.y22e{bottom:641.883600pt;}
.yfb{bottom:645.370133pt;}
.y17d{bottom:645.748000pt;}
.y1c1{bottom:647.287600pt;}
.y19e{bottom:647.499867pt;}
.y1d9{bottom:648.802800pt;}
.y243{bottom:649.257867pt;}
.yf{bottom:649.405333pt;}
.y6e{bottom:649.669333pt;}
.yd4{bottom:652.173200pt;}
.ya1{bottom:652.929067pt;}
.y14c{bottom:653.411067pt;}
.y20c{bottom:653.432133pt;}
.y3d{bottom:653.550933pt;}
.y22d{bottom:657.883600pt;}
.yfa{bottom:660.970133pt;}
.y1d8{bottom:664.802800pt;}
.y1c0{bottom:664.887600pt;}
.y19d{bottom:665.099867pt;}
.y6d{bottom:665.269333pt;}
.ye{bottom:665.405333pt;}
.y3c{bottom:666.350933pt;}
.y24f{bottom:667.223600pt;}
.yd3{bottom:667.773333pt;}
.ya0{bottom:668.529200pt;}
.y17c{bottom:668.907067pt;}
.y20b{bottom:669.432133pt;}
.y22c{bottom:673.883600pt;}
.yf9{bottom:676.570133pt;}
.y3b{bottom:679.150933pt;}
.y242{bottom:679.657867pt;}
.y1d7{bottom:680.802800pt;}
.yd{bottom:681.405333pt;}
.y1bf{bottom:682.487600pt;}
.y19c{bottom:682.699867pt;}
.y2{bottom:684.065600pt;}
.y9f{bottom:684.129200pt;}
.y17b{bottom:684.507067pt;}
.y20a{bottom:685.432133pt;}
.y6c{bottom:688.428400pt;}
.y22b{bottom:689.883600pt;}
.yd2{bottom:690.932267pt;}
.y3a{bottom:691.950933pt;}
.y14b{bottom:692.170133pt;}
.y241{bottom:695.657733pt;}
.yc{bottom:697.405467pt;}
.yf8{bottom:699.729200pt;}
.y209{bottom:701.432133pt;}
.y6b{bottom:704.028400pt;}
.y1d6{bottom:704.361867pt;}
.y39{bottom:704.750933pt;}
.y22a{bottom:705.883600pt;}
.yd1{bottom:706.532267pt;}
.y9e{bottom:707.288133pt;}
.y17a{bottom:707.666133pt;}
.y14a{bottom:707.770133pt;}
.y240{bottom:711.657733pt;}
.yb{bottom:713.405467pt;}
.yf7{bottom:715.329067pt;}
.y208{bottom:717.432133pt;}
.y38{bottom:717.550933pt;}
.y4{bottom:717.761200pt;}
.y6a{bottom:719.628400pt;}
.y229{bottom:721.883600pt;}
.yd0{bottom:722.132267pt;}
.y9d{bottom:722.888133pt;}
.y179{bottom:723.266133pt;}
.y23f{bottom:727.657733pt;}
.y37{bottom:730.350933pt;}
.y116{bottom:730.929067pt;}
.y252{bottom:732.716267pt;}
.y207{bottom:733.432133pt;}
.ya{bottom:736.964400pt;}
.y228{bottom:737.883600pt;}
.y9c{bottom:738.488133pt;}
.y178{bottom:738.866133pt;}
.y1d5{bottom:739.028533pt;}
.y69{bottom:742.787467pt;}
.y36{bottom:743.150933pt;}
.y23e{bottom:743.657733pt;}
.ycf{bottom:745.291333pt;}
.y149{bottom:746.529200pt;}
.y9{bottom:752.964400pt;}
.y227{bottom:753.883600pt;}
.yf6{bottom:754.088267pt;}
.y177{bottom:754.466133pt;}
.y35{bottom:755.950933pt;}
.y206{bottom:756.991067pt;}
.y68{bottom:758.387467pt;}
.y251{bottom:759.475333pt;}
.y23d{bottom:759.657733pt;}
.yce{bottom:760.891333pt;}
.y1d4{bottom:760.987467pt;}
.y9b{bottom:761.647200pt;}
.y148{bottom:762.129200pt;}
.y34{bottom:768.750933pt;}
.yf5{bottom:769.688133pt;}
.y226{bottom:769.883600pt;}
.y67{bottom:773.987467pt;}
.y1d3{bottom:775.387467pt;}
.y23c{bottom:775.657733pt;}
.ycd{bottom:776.491333pt;}
.y8{bottom:776.523467pt;}
.y9a{bottom:777.247200pt;}
.y176{bottom:777.625200pt;}
.y33{bottom:781.550933pt;}
.y147{bottom:785.288133pt;}
.y225{bottom:785.883600pt;}
.y250{bottom:786.234400pt;}
.y1d2{bottom:789.787467pt;}
.y205{bottom:791.657733pt;}
.y7{bottom:792.523467pt;}
.y99{bottom:792.847200pt;}
.y175{bottom:793.225200pt;}
.y32{bottom:794.350933pt;}
.y66{bottom:797.146533pt;}
.ycc{bottom:799.650400pt;}
.y146{bottom:800.888133pt;}
.y224{bottom:801.883600pt;}
.y1d1{bottom:804.187467pt;}
.y31{bottom:807.150933pt;}
.y204{bottom:807.657733pt;}
.yf4{bottom:808.447200pt;}
.y65{bottom:812.746533pt;}
.ycb{bottom:815.250533pt;}
.y98{bottom:816.006400pt;}
.y174{bottom:816.384267pt;}
.y223{bottom:817.883600pt;}
.y1d0{bottom:818.587467pt;}
.y30{bottom:819.950933pt;}
.y203{bottom:823.657733pt;}
.yf3{bottom:824.047200pt;}
.y64{bottom:828.346533pt;}
.yca{bottom:830.850400pt;}
.y97{bottom:831.606267pt;}
.y173{bottom:831.984267pt;}
.y1cf{bottom:832.987467pt;}
.y222{bottom:833.883600pt;}
.y145{bottom:839.647200pt;}
.y202{bottom:839.657733pt;}
.y1{bottom:841.546933pt;}
.y96{bottom:847.206267pt;}
.y1ce{bottom:847.387467pt;}
.y172{bottom:847.584267pt;}
.y221{bottom:849.883600pt;}
.y63{bottom:851.505600pt;}
.yc9{bottom:854.009467pt;}
.y144{bottom:855.247200pt;}
.y201{bottom:855.657733pt;}
.y1cd{bottom:861.787467pt;}
.yf2{bottom:862.806267pt;}
.y220{bottom:865.883600pt;}
.y62{bottom:867.105600pt;}
.yc8{bottom:869.609600pt;}
.y95{bottom:870.365333pt;}
.y171{bottom:870.743333pt;}
.y200{bottom:871.657733pt;}
.y1cc{bottom:876.187467pt;}
.y115{bottom:878.406267pt;}
.y21f{bottom:881.883600pt;}
.yc7{bottom:885.209467pt;}
.y94{bottom:885.965333pt;}
.y170{bottom:886.343333pt;}
.y23b{bottom:887.657733pt;}
.y61{bottom:890.264667pt;}
.y1cb{bottom:890.587467pt;}
.y143{bottom:894.006267pt;}
.y1ff{bottom:895.216933pt;}
.y21e{bottom:897.883600pt;}
.yc6{bottom:900.809467pt;}
.y93{bottom:901.565333pt;}
.y16f{bottom:901.943333pt;}
.y1ca{bottom:904.987467pt;}
.y60{bottom:905.864533pt;}
.y23a{bottom:911.216933pt;}
.y21d{bottom:913.883600pt;}
.yc5{bottom:916.409467pt;}
.yf1{bottom:917.165333pt;}
.y16e{bottom:917.543333pt;}
.y1c9{bottom:919.387467pt;}
.y5f{bottom:921.464533pt;}
.y92{bottom:924.724400pt;}
.y1fe{bottom:929.883600pt;}
.y114{bottom:932.765333pt;}
.y1c8{bottom:933.787467pt;}
.y5e{bottom:937.064667pt;}
.yc4{bottom:939.568533pt;}
.y91{bottom:940.324400pt;}
.y16d{bottom:940.702400pt;}
.y1fd{bottom:945.883600pt;}
.y1c7{bottom:948.187467pt;}
.y142{bottom:948.365333pt;}
.yc3{bottom:955.168533pt;}
.y90{bottom:955.924400pt;}
.y16c{bottom:956.302400pt;}
.y1fc{bottom:961.883600pt;}
.y1c6{bottom:962.587467pt;}
.yc2{bottom:970.768533pt;}
.y8f{bottom:971.524400pt;}
.y16b{bottom:971.902400pt;}
.y19b{bottom:972.299867pt;}
.y1c5{bottom:976.987467pt;}
.y1fb{bottom:977.883600pt;}
.y11b{bottom:979.083467pt;}
.y141{bottom:987.124400pt;}
.y1c4{bottom:991.387467pt;}
.y1fa{bottom:993.883600pt;}
.yc1{bottom:993.927600pt;}
.y8e{bottom:994.683467pt;}
.y16a{bottom:995.061467pt;}
.y1c3{bottom:1005.787467pt;}
.yc0{bottom:1009.527600pt;}
.y6{bottom:1009.883600pt;}
.y8d{bottom:1010.283467pt;}
.y169{bottom:1010.661467pt;}
.y19a{bottom:1010.699867pt;}
.y1c2{bottom:1020.187467pt;}
.ybf{bottom:1025.127600pt;}
.y8c{bottom:1025.883467pt;}
.y5{bottom:1025.883600pt;}
.y168{bottom:1026.261467pt;}
.y5b{bottom:1056.103733pt;}
.h13{height:31.062500pt;}
.hc{height:31.083333pt;}
.h14{height:34.656000pt;}
.h8{height:34.945312pt;}
.h7{height:34.968750pt;}
.h12{height:37.312500pt;}
.h18{height:37.395833pt;}
.hb{height:37.812500pt;}
.h10{height:38.506667pt;}
.h6{height:38.828125pt;}
.he{height:38.854167pt;}
.h9{height:41.976562pt;}
.ha{height:42.539062pt;}
.h1d{height:42.739583pt;}
.h17{height:43.156250pt;}
.h1b{height:46.640625pt;}
.hf{height:46.720000pt;}
.hd{height:47.265625pt;}
.h16{height:51.304688pt;}
.h1c{height:51.992188pt;}
.h1a{height:56.718750pt;}
.h4{height:72.734375pt;}
.h19{height:75.687500pt;}
.h3{height:85.181544pt;}
.h15{height:86.312500pt;}
.h11{height:112.187500pt;}
.h5{height:208.839928pt;}
.h2{height:279.843750pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:27.867733pt;}
.x2{left:49.585467pt;}
.x13{left:57.288133pt;}
.x8{left:60.472400pt;}
.x1e{left:65.805733pt;}
.x11{left:72.566933pt;}
.x7{left:86.929200pt;}
.x21{left:90.557600pt;}
.x22{left:92.262400pt;}
.x19{left:93.757467pt;}
.x12{left:96.957467pt;}
.x18{left:98.267733pt;}
.x28{left:100.614267pt;}
.x2a{left:109.440667pt;}
.x9{left:113.385867pt;}
.x29{left:117.547467pt;}
.x14{left:124.724400pt;}
.x1c{left:171.881067pt;}
.x25{left:185.196800pt;}
.x2f{left:192.280933pt;}
.x2d{left:202.611333pt;}
.x2e{left:215.251200pt;}
.x2c{left:240.098000pt;}
.x26{left:283.649733pt;}
.x30{left:307.336933pt;}
.x2b{left:328.570533pt;}
.x27{left:337.087200pt;}
.x24{left:343.510400pt;}
.xd{left:381.842133pt;}
.xf{left:383.733467pt;}
.xe{left:391.884533pt;}
.xa{left:394.960667pt;}
.x15{left:420.071733pt;}
.x10{left:431.152000pt;}
.xb{left:447.874000pt;}
.x1f{left:464.456533pt;}
.xc{left:475.582400pt;}
.x20{left:509.440933pt;}
.x1d{left:526.709200pt;}
.x5{left:576.340267pt;}
.x3{left:581.273333pt;}
.x1{left:604.105733pt;}
.x6{left:638.358533pt;}
.x23{left:663.540533pt;}
.x1b{left:683.943467pt;}
.x1a{left:687.143333pt;}
.x16{left:690.343467pt;}
.x17{left:760.562133pt;}
}




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