
    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_4c17eb50cc6d4b53728544e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.138250;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_213f6d6c2a7c61f44551cbe7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d84bc1a547ddc49120f26ec3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_415820d8d5bff35c4525c416.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901855;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_b08cc81da8f06decfdd0414b.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_727cc39c89d4daf42bd3d033.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.996000;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_adeec1d970e0ca721f157dc8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.832031;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_121d3029601e833c9babedda.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.998000;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_63582bacb6e42fff769e7294.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999000;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_311539d5c6d2890e76c79365.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740723;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_30c0e0337fea41dfa75f879d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966797;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_b1857f89cc59fe869fcb888d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.746094;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_264204648dbabf94f9f6221f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.952148;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_ab7bf7666c1426d3f6a06fbf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893555;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_d98ee14d5754300f5e003841.woff2')format("woff");}.fff{font-family:fff;line-height:0.994000;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_fca723ae2124c174955510b3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.854980;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_913f4f36029949cc836fbef3.woff2')format("woff");}.ff11{font-family:ff11;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);}
.m2{transform:matrix(0.094297,-0.231534,0.231554,0.094249,0,0);-ms-transform:matrix(0.094297,-0.231534,0.231554,0.094249,0,0);-webkit-transform:matrix(0.094297,-0.231534,0.231554,0.094249,0,0);}
.m3{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.460546px;}
.v1{vertical-align:-17.668796px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000018px;}
.ls6{letter-spacing:0.000090px;}
.lsd{letter-spacing:0.906578px;}
.lsf{letter-spacing:0.906592px;}
.lse{letter-spacing:0.906614px;}
.ls9{letter-spacing:88.441207px;}
.ls5{letter-spacing:106.500000px;}
.lsa{letter-spacing:107.953131px;}
.ls4{letter-spacing:107.976563px;}
.ls10{letter-spacing:107.986253px;}
.ls2{letter-spacing:108.000003px;}
.ls3{letter-spacing:109.500007px;}
.ls8{letter-spacing:127.559394px;}
.ls1{letter-spacing:144.000356px;}
.lsb{letter-spacing:168.578987px;}
.ls7{letter-spacing:928.363467px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-75.366000px;}
.ws14{word-spacing:-61.200000px;}
.ws2{word-spacing:-49.860002px;}
.ws3f{word-spacing:-39.600002px;}
.ws23{word-spacing:-36.000000px;}
.ws1f{word-spacing:-32.706000px;}
.ws8{word-spacing:-31.284002px;}
.wsa{word-spacing:-29.862001px;}
.ws10{word-spacing:-28.800001px;}
.ws12{word-spacing:-28.440000px;}
.ws20{word-spacing:-27.600000px;}
.ws22{word-spacing:-27.018002px;}
.ws9{word-spacing:-26.400001px;}
.ws5{word-spacing:-25.596001px;}
.ws1a{word-spacing:-25.500000px;}
.ws13{word-spacing:-25.200001px;}
.ws19{word-spacing:-24.885002px;}
.ws15{word-spacing:-24.174000px;}
.ws11{word-spacing:-24.000000px;}
.ws21{word-spacing:-22.800001px;}
.ws18{word-spacing:-22.752001px;}
.ws7{word-spacing:-22.041000px;}
.ws6{word-spacing:-21.436649px;}
.ws3{word-spacing:-21.330001px;}
.wsd{word-spacing:-20.619001px;}
.wsc{word-spacing:-19.908000px;}
.ws16{word-spacing:-19.200001px;}
.wse{word-spacing:-18.486001px;}
.wsf{word-spacing:-18.000001px;}
.wsb{word-spacing:-17.400001px;}
.ws17{word-spacing:-15.600001px;}
.ws39{word-spacing:-12.000000px;}
.ws40{word-spacing:-3.336427px;}
.ws4{word-spacing:-0.090000px;}
.ws28{word-spacing:-0.084000px;}
.ws1{word-spacing:0.000000px;}
.ws38{word-spacing:240.389306px;}
.ws32{word-spacing:250.525115px;}
.ws37{word-spacing:297.673210px;}
.ws2b{word-spacing:319.429119px;}
.ws2f{word-spacing:348.001211px;}
.ws3d{word-spacing:362.473212px;}
.ws35{word-spacing:391.273213px;}
.ws2a{word-spacing:415.609213px;}
.ws30{word-spacing:418.345213px;}
.ws29{word-spacing:430.141220px;}
.ws33{word-spacing:430.729214px;}
.ws2e{word-spacing:431.737214px;}
.ws3c{word-spacing:442.825214px;}
.ws2c{word-spacing:469.825215px;}
.ws3a{word-spacing:470.041215px;}
.ws31{word-spacing:486.817216px;}
.ws27{word-spacing:501.387451px;}
.ws3e{word-spacing:611.507326px;}
.ws34{word-spacing:621.643136px;}
.ws2d{word-spacing:632.995136px;}
.ws26{word-spacing:652.587456px;}
.ws25{word-spacing:684.843457px;}
.ws24{word-spacing:687.783463px;}
.ws3b{word-spacing:822.179338px;}
.ws36{word-spacing:832.315147px;}
.ws1b{word-spacing:868.050182px;}
.ws1d{word-spacing:893.610201px;}
.ws1e{word-spacing:915.504185px;}
.ws1c{word-spacing:967.116188px;}
._3a{margin-left:-41.056419px;}
._39{margin-left:-34.808696px;}
._5{margin-left:-30.528000px;}
._49{margin-left:-24.114128px;}
._7{margin-left:-15.972001px;}
._19{margin-left:-13.320000px;}
._b{margin-left:-11.340000px;}
._2{margin-left:-8.904000px;}
._2f{margin-left:-7.356000px;}
._6{margin-left:-5.940000px;}
._1{margin-left:-4.452000px;}
._3{margin-left:-2.544000px;}
._4{margin-left:-1.272000px;}
._9{width:1.512240px;}
._8{width:2.531865px;}
._a{width:3.803685px;}
._0{width:5.088000px;}
._4b{width:6.531192px;}
._2a{width:7.579763px;}
._27{width:9.316238px;}
._26{width:10.760976px;}
._25{width:12.240000px;}
._1a{width:14.111760px;}
._1b{width:15.276137px;}
._16{width:16.368000px;}
._17{width:17.988000px;}
._11{width:19.116001px;}
._f{width:20.520001px;}
._15{width:22.279816px;}
._21{width:23.343000px;}
._23{width:25.216514px;}
._10{width:27.000001px;}
._e{width:28.356001px;}
._3d{width:31.920002px;}
._d{width:36.396001px;}
._c{width:37.752001px;}
._4c{width:40.068002px;}
._4d{width:41.610002px;}
._14{width:43.352596px;}
._2e{width:44.466526px;}
._35{width:47.232002px;}
._3c{width:48.288003px;}
._3e{width:51.920173px;}
._13{width:53.664002px;}
._12{width:55.140002px;}
._1c{width:57.042000px;}
._1e{width:63.366000px;}
._1f{width:65.346000px;}
._32{width:68.850002px;}
._22{width:73.410000px;}
._34{width:75.510002px;}
._1d{width:83.421000px;}
._31{width:87.864003px;}
._2b{width:93.672005px;}
._30{width:107.983996px;}
._36{width:112.320004px;}
._24{width:115.236006px;}
._33{width:131.580004px;}
._20{width:138.198000px;}
._3f{width:160.569010px;}
._37{width:164.976005px;}
._38{width:166.884005px;}
._29{width:208.992011px;}
._28{width:210.468011px;}
._2d{width:251.760014px;}
._2c{width:253.080014px;}
._4a{width:504.000020px;}
._48{width:534.408990px;}
._46{width:554.886991px;}
._41{width:568.921127px;}
._44{width:604.200994px;}
._42{width:615.012995px;}
._45{width:643.975131px;}
._40{width:722.573255px;}
._3b{width:768.144048px;}
._47{width:782.797003px;}
._43{width:856.681143px;}
._18{width:1096.117637px;}
._4e{width:3989.922233px;}
.fc10{color:rgb(56,118,29);}
.fc12{color:rgb(255,153,0);}
.fcf{color:rgb(237,125,49);}
.fce{color:rgb(153,0,255);}
.fcd{color:rgb(133,32,12);}
.fcc{color:rgb(0,44,92);}
.fc2{color:rgb(255,255,255);}
.fc3{color:rgb(70,135,200);}
.fc8{color:rgb(0,0,0);}
.fc4{color:rgb(152,0,0);}
.fc6{color:rgb(42,67,133);}
.fc13{color:rgb(5,99,193);}
.fc7{color:rgb(153,0,0);}
.fc0{color:rgb(0,32,97);}
.fc9{color:rgb(255,0,0);}
.fca{color:rgb(106,168,79);}
.fc11{color:rgb(0,0,255);}
.fc1{color:rgb(0,32,96);}
.fc5{color:transparent;}
.fcb{color:rgb(23,22,22);}
.fs1d{font-size:42.000000px;}
.fs1a{font-size:60.000000px;}
.fs19{font-size:66.000004px;}
.fs4{font-size:72.000002px;}
.fs16{font-size:72.150001px;}
.fs3{font-size:78.000005px;}
.fs1e{font-size:79.544710px;}
.fsf{font-size:84.000000px;}
.fse{font-size:87.000006px;}
.fs7{font-size:90.000003px;}
.fs9{font-size:90.449994px;}
.fsb{font-size:93.000000px;}
.fsd{font-size:96.000006px;}
.fsa{font-size:99.000003px;}
.fs10{font-size:102.000000px;}
.fs12{font-size:105.000006px;}
.fs8{font-size:108.000003px;}
.fs11{font-size:114.000007px;}
.fs17{font-size:120.000001px;}
.fsc{font-size:126.000004px;}
.fs18{font-size:126.000008px;}
.fs5{font-size:132.000007px;}
.fs15{font-size:138.000001px;}
.fs14{font-size:144.000005px;}
.fs13{font-size:149.999999px;}
.fs1c{font-size:162.000005px;}
.fs1b{font-size:174.000012px;}
.fs6{font-size:180.000006px;}
.fs2{font-size:240.000002px;}
.fs1{font-size:294.000021px;}
.fs0{font-size:317.999998px;}
.y0{bottom:0.000000px;}
.y121{bottom:20.861146px;}
.y197{bottom:27.753241px;}
.y9{bottom:33.714875px;}
.yb1{bottom:34.697675px;}
.y7{bottom:62.177916px;}
.y1c7{bottom:73.440989px;}
.yb0{bottom:79.779700px;}
.y13b{bottom:113.843205px;}
.ye8{bottom:116.069218px;}
.y189{bottom:116.104849px;}
.y178{bottom:117.309758px;}
.yad{bottom:121.176844px;}
.yaf{bottom:121.179702px;}
.yd5{bottom:125.668705px;}
.y97{bottom:131.476181px;}
.y177{bottom:131.799758px;}
.y7f{bottom:132.099638px;}
.yed{bottom:134.896248px;}
.ye7{bottom:139.694219px;}
.y11d{bottom:142.800751px;}
.y145{bottom:144.440472px;}
.y1f{bottom:144.532599px;}
.y11a{bottom:145.036880px;}
.y176{bottom:146.289770px;}
.y188{bottom:146.468038px;}
.y6e{bottom:146.673558px;}
.y83{bottom:148.159846px;}
.y13a{bottom:149.483195px;}
.y1b9{bottom:152.831533px;}
.y92{bottom:153.795883px;}
.y10c{bottom:156.364157px;}
.y7e{bottom:158.199639px;}
.y96{bottom:158.386180px;}
.y2d{bottom:160.075779px;}
.y1c5{bottom:161.135282px;}
.yec{bottom:161.356243px;}
.yac{bottom:162.576834px;}
.yae{bottom:162.579692px;}
.ye6{bottom:163.319222px;}
.yd4{bottom:163.468717px;}
.y4{bottom:165.340746px;}
.y58{bottom:172.314643px;}
.y175{bottom:175.269782px;}
.y1b8{bottom:176.231533px;}
.y15a{bottom:176.690331px;}
.y119{bottom:177.076881px;}
.y82{bottom:177.139836px;}
.y3e{bottom:178.471262px;}
.y194{bottom:179.466831px;}
.y187{bottom:180.436536px;}
.y1e{bottom:181.792589px;}
.y91{bottom:183.810884px;}
.y7d{bottom:184.299640px;}
.y10b{bottom:185.164146px;}
.y95{bottom:185.296179px;}
.y144{bottom:185.840451px;}
.y12f{bottom:185.967543px;}
.yeb{bottom:187.816244px;}
.ya6{bottom:189.036059px;}
.yfa{bottom:189.478105px;}
.y174{bottom:189.759783px;}
.y6d{bottom:190.143571px;}
.y139{bottom:190.883185px;}
.y2c{bottom:192.475791px;}
.y1c4{bottom:193.625294px;}
.y62{bottom:195.378292px;}
.y102{bottom:196.228111px;}
.y1b7{bottom:199.631545px;}
.y11b{bottom:201.145967px;}
.y1a4{bottom:201.736218px;}
.y173{bottom:204.249783px;}
.y81{bottom:206.119834px;}
.y186{bottom:206.348833px;}
.y118{bottom:207.676876px;}
.y193{bottom:210.066832px;}
.y7c{bottom:210.399630px;}
.y3d{bottom:210.556263px;}
.y159{bottom:210.890332px;}
.y94{bottom:212.206177px;}
.ycc{bottom:212.817468px;}
.y90{bottom:213.825873px;}
.yea{bottom:214.276239px;}
.yf9{bottom:216.478107px;}
.y43{bottom:216.886640px;}
.y57{bottom:217.854667px;}
.y172{bottom:218.739795px;}
.y1d{bottom:219.052590px;}
.y12e{bottom:219.152636px;}
.ya5{bottom:220.086049px;}
.yfc{bottom:221.442632px;}
.y1b6{bottom:223.031546px;}
.y101{bottom:223.228110px;}
.y2b{bottom:224.875815px;}
.y143{bottom:227.240441px;}
.y1a3{bottom:231.839576px;}
.y138{bottom:232.283175px;}
.y171{bottom:233.229807px;}
.y6c{bottom:233.613583px;}
.y80{bottom:235.099829px;}
.y7b{bottom:236.499630px;}
.y117{bottom:238.276874px;}
.y14c{bottom:238.504594px;}
.ye3{bottom:240.335059px;}
.y192{bottom:240.666833px;}
.ye9{bottom:240.736237px;}
.y61{bottom:240.918293px;}
.y3{bottom:242.020759px;}
.y3c{bottom:242.641242px;}
.y10a{bottom:242.764126px;}
.y8f{bottom:243.840863px;}
.y9f{bottom:244.737398px;}
.y158{bottom:245.090311px;}
.ycb{bottom:245.217492px;}
.y1b5{bottom:246.431547px;}
.y170{bottom:247.719807px;}
.y12d{bottom:249.457730px;}
.ya4{bottom:251.136038px;}
.y11f{bottom:255.347446px;}
.y1c{bottom:256.312602px;}
.yd3{bottom:257.068743px;}
.y1c3{bottom:258.605307px;}
.y1a2{bottom:261.942901px;}
.y7a{bottom:262.599631px;}
.y56{bottom:263.394669px;}
.ye2{bottom:265.085061px;}
.y2a{bottom:266.275850px;}
.y142{bottom:268.640420px;}
.y1b4{bottom:269.831548px;}
.y109{bottom:271.564127px;}
.y137{bottom:273.683165px;}
.y8e{bottom:273.855864px;}
.y3b{bottom:274.726232px;}
.y9e{bottom:275.787394px;}
.y11e{bottom:276.494725px;}
.y16f{bottom:276.699808px;}
.y6b{bottom:277.083607px;}
.yca{bottom:277.617515px;}
.y157{bottom:279.290312px;}
.y14b{bottom:279.904596px;}
.ya3{bottom:282.186034px;}
.y12c{bottom:284.329783px;}
.y60{bottom:286.458294px;}
.y3f{bottom:287.947672px;}
.y1a1{bottom:292.046271px;}
.y1b3{bottom:293.231560px;}
.y1b{bottom:293.572603px;}
.yd2{bottom:294.868744px;}
.y116{bottom:297.604113px;}
.y79{bottom:298.239621px;}
.y29{bottom:298.675851px;}
.y8d{bottom:303.870854px;}
.y12{bottom:305.553494px;}
.y16e{bottom:305.679809px;}
.y191{bottom:306.186835px;}
.y3a{bottom:306.811221px;}
.y9d{bottom:306.837384px;}
.y195{bottom:307.579664px;}
.y55{bottom:308.934670px;}
.yc9{bottom:310.017539px;}
.y141{bottom:310.040422px;}
.y44{bottom:310.152405px;}
.ya2{bottom:313.236025px;}
.y156{bottom:313.490313px;}
.y136{bottom:315.083155px;}
.y12b{bottom:316.074843px;}
.y1b2{bottom:316.631551px;}
.y16d{bottom:320.169804px;}
.y100{bottom:320.505982px;}
.y6a{bottom:320.553620px;}
.y14a{bottom:321.304597px;}
.y1a0{bottom:323.519688px;}
.y1c2{bottom:323.585321px;}
.ydf{bottom:325.496173px;}
.yfb{bottom:327.453191px;}
.y115{bottom:329.104114px;}
.y108{bottom:329.164106px;}
.y5f{bottom:331.998318px;}
.y8c{bottom:333.885866px;}
.y54{bottom:334.422980px;}
.y16c{bottom:334.659799px;}
.y78{bottom:336.759622px;}
.y2{bottom:337.420751px;}
.y9c{bottom:337.887384px;}
.y39{bottom:338.896211px;}
.y28{bottom:340.075886px;}
.y190{bottom:340.386836px;}
.y1b1{bottom:341.111550px;}
.yc8{bottom:342.417563px;}
.ya1{bottom:344.286024px;}
.y155{bottom:347.690314px;}
.y12a{bottom:347.819948px;}
.y16b{bottom:349.149799px;}
.y140{bottom:351.440423px;}
.yde{bottom:351.956168px;}
.y19f{bottom:353.623035px;}
.y4c{bottom:354.474694px;}
.y1c1{bottom:356.075322px;}
.y135{bottom:356.483134px;}
.y107{bottom:357.964098px;}
.y120{bottom:358.420088px;}
.y11{bottom:359.553496px;}
.y114{bottom:360.604115px;}
.y149{bottom:362.704598px;}
.y16a{bottom:363.639795px;}
.y8b{bottom:363.900856px;}
.y69{bottom:364.023644px;}
.y9b{bottom:368.937381px;}
.y185{bottom:369.000571px;}
.y38{bottom:370.981190px;}
.y27{bottom:372.475887px;}
.y53{bottom:374.023004px;}
.y18f{bottom:374.586837px;}
.yc7{bottom:374.817564px;}
.ya0{bottom:375.336021px;}
.y1cb{bottom:375.644270px;}
.y5e{bottom:377.538320px;}
.yc1{bottom:377.801199px;}
.y169{bottom:378.129793px;}
.ydd{bottom:378.416169px;}
.yd1{bottom:379.468747px;}
.y129{bottom:379.565007px;}
.y154{bottom:381.890304px;}
.yfe{bottom:385.493901px;}
.y1b0{bottom:385.623751px;}
.y106{bottom:386.764096px;}
.y184{bottom:387.000571px;}
.y19e{bottom:387.833656px;}
.ybb{bottom:389.561083px;}
.yb6{bottom:391.295630px;}
.y168{bottom:392.619789px;}
.y13f{bottom:392.840424px;}
.y40{bottom:393.172075px;}
.y8a{bottom:393.915845px;}
.y134{bottom:397.883136px;}
.y4b{bottom:400.014696px;}
.y37{bottom:403.066202px;}
.y148{bottom:404.104611px;}
.y77{bottom:404.586066px;}
.y26{bottom:404.875877px;}
.ydc{bottom:404.876164px;}
.y183{bottom:405.000572px;}
.y1af{bottom:405.423752px;}
.yc6{bottom:407.217553px;}
.y68{bottom:407.493656px;}
.y1ca{bottom:408.764277px;}
.y18e{bottom:408.786827px;}
.y128{bottom:411.310067px;}
.y10{bottom:413.553497px;}
.y52{bottom:413.623005px;}
.y153{bottom:416.090312px;}
.yd0{bottom:417.268748px;}
.y19d{bottom:417.937037px;}
.yc0{bottom:420.701185px;}
.y1c0{bottom:421.055324px;}
.y182{bottom:423.000573px;}
.y5d{bottom:423.078310px;}
.y113{bottom:423.604117px;}
.y89{bottom:423.930835px;}
.y19{bottom:424.241448px;}
.y1ae{bottom:425.223764px;}
.ydb{bottom:431.336161px;}
.yba{bottom:432.461069px;}
.y1{bottom:432.820732px;}
.yb5{bottom:434.195605px;}
.y13e{bottom:434.240437px;}
.y76{bottom:434.601055px;}
.y36{bottom:435.151192px;}
.y25{bottom:437.275856px;}
.y9a{bottom:437.718757px;}
.y133{bottom:439.283148px;}
.yc5{bottom:439.617543px;}
.y181{bottom:441.000573px;}
.y1c9{bottom:441.884267px;}
.y18d{bottom:442.986835px;}
.y127{bottom:443.055172px;}
.y1ad{bottom:445.023776px;}
.y147{bottom:445.504612px;}
.y4a{bottom:445.554686px;}
.y19c{bottom:448.040351px;}
.y152{bottom:450.290317px;}
.y67{bottom:450.963658px;}
.yff{bottom:452.516445px;}
.ybf{bottom:453.101175px;}
.y51{bottom:453.222995px;}
.y1bf{bottom:453.545325px;}
.y88{bottom:453.945836px;}
.y112{bottom:455.104118px;}
.yab{bottom:458.694315px;}
.y180{bottom:459.000574px;}
.y18{bottom:461.501449px;}
.y75{bottom:464.616045px;}
.y1ac{bottom:464.823776px;}
.yb9{bottom:464.861059px;}
.yb4{bottom:466.595595px;}
.yf{bottom:466.655895px;}
.y35{bottom:467.236182px;}
.y1ba{bottom:467.965962px;}
.y5c{bottom:468.618312px;}
.yf6{bottom:470.063246px;}
.yc4{bottom:472.017533px;}
.y45{bottom:472.763623px;}
.y167{bottom:472.870857px;}
.y126{bottom:474.800232px;}
.y1c8{bottom:475.004262px;}
.y13d{bottom:475.640438px;}
.y17f{bottom:477.000574px;}
.y18c{bottom:477.186841px;}
.y19b{bottom:478.143721px;}
.y24{bottom:478.675857px;}
.y132{bottom:480.683149px;}
.y87{bottom:483.960826px;}
.y151{bottom:484.490318px;}
.y1ab{bottom:484.623777px;}
.ybe{bottom:485.501153px;}
.y1be{bottom:486.035337px;}
.y111{bottom:486.604119px;}
.y146{bottom:486.904602px;}
.y166{bottom:487.360868px;}
.y49{bottom:491.094687px;}
.yf5{bottom:493.463258px;}
.ye{bottom:493.655896px;}
.y66{bottom:494.433659px;}
.y74{bottom:494.631046px;}
.y17e{bottom:495.000575px;}
.yb8{bottom:497.261049px;}
.y17{bottom:498.761450px;}
.y50{bottom:498.762997px;}
.yb3{bottom:498.995585px;}
.y34{bottom:499.321160px;}
.y165{bottom:501.850880px;}
.yda{bottom:501.887386px;}
.yaa{bottom:501.894316px;}
.yc3{bottom:504.417534px;}
.y1aa{bottom:504.423784px;}
.yfd{bottom:504.971807px;}
.y125{bottom:506.545314px;}
.y19a{bottom:508.247068px;}
.ye1{bottom:509.165698px;}
.ycf{bottom:510.868762px;}
.y23{bottom:511.075847px;}
.y18b{bottom:511.386842px;}
.y41{bottom:512.829554px;}
.y86{bottom:513.975816px;}
.y5b{bottom:514.158307px;}
.y164{bottom:516.340881px;}
.yf4{bottom:516.863259px;}
.y13c{bottom:517.040428px;}
.ybd{bottom:517.901166px;}
.y110{bottom:518.104120px;}
.y150{bottom:518.690319px;}
.y131{bottom:523.523151px;}
.y1a9{bottom:524.223783px;}
.y73{bottom:524.646036px;}
.yb7{bottom:529.661050px;}
.y163{bottom:530.830892px;}
.y17d{bottom:531.000576px;}
.yb2{bottom:531.395586px;}
.y33{bottom:531.406172px;}
.ye0{bottom:533.915700px;}
.y16{bottom:536.021440px;}
.y48{bottom:536.634683px;}
.yc2{bottom:536.817535px;}
.yd9{bottom:537.077365px;}
.y124{bottom:538.290396px;}
.yf3{bottom:540.263259px;}
.y199{bottom:541.087608px;}
.y85{bottom:543.990819px;}
.y1a8{bottom:544.023779px;}
.y4f{bottom:544.302993px;}
.ya9{bottom:545.094318px;}
.y162{bottom:545.320882px;}
.y18a{bottom:545.586843px;}
.yd{bottom:547.655898px;}
.yce{bottom:548.668764px;}
.y17c{bottom:549.000577px;}
.ybc{bottom:550.301167px;}
.y1bd{bottom:551.015350px;}
.y105{bottom:552.471978px;}
.y22{bottom:552.475848px;}
.y72{bottom:554.661026px;}
.y65{bottom:555.903672px;}
.y1c6{bottom:556.059089px;}
.y5a{bottom:559.698303px;}
.y161{bottom:559.810882px;}
.y32{bottom:563.491173px;}
.yf2{bottom:563.663260px;}
.y1a7{bottom:563.823780px;}
.y17b{bottom:567.000577px;}
.y123{bottom:570.035479px;}
.y198{bottom:571.479272px;}
.y15{bottom:573.281441px;}
.yd8{bottom:573.527362px;}
.y84{bottom:574.005817px;}
.yf8{bottom:574.252279px;}
.y11c{bottom:574.346040px;}
.y104{bottom:579.471982px;}
.y10f{bottom:581.104122px;}
.y47{bottom:582.174679px;}
.y1bc{bottom:583.505352px;}
.y1a6{bottom:583.623780px;}
.y71{bottom:584.676021px;}
.y21{bottom:584.875856px;}
.y17a{bottom:585.000578px;}
.yf1{bottom:587.063272px;}
.ya8{bottom:588.294319px;}
.y160{bottom:588.790877px;}
.y4e{bottom:589.842989px;}
.y31{bottom:595.576167px;}
.y64{bottom:599.373663px;}
.yf7{bottom:601.252275px;}
.yc{bottom:601.655900px;}
.y15f{bottom:603.280872px;}
.y1a5{bottom:603.423781px;}
.y59{bottom:605.238305px;}
.y98{bottom:605.965382px;}
.y103{bottom:606.471979px;}
.y122{bottom:608.462535px;}
.yf0{bottom:610.463262px;}
.y14{bottom:610.541454px;}
.yd7{bottom:611.597356px;}
.y10e{bottom:612.604123px;}
.y1bb{bottom:615.995356px;}
.y20{bottom:617.275861px;}
.y15e{bottom:617.770873px;}
.y70{bottom:624.636014px;}
.y14d{bottom:627.578443px;}
.y46{bottom:627.714680px;}
.y30{bottom:628.291165px;}
.yb{bottom:628.655900px;}
.ya7{bottom:631.854321px;}
.y15d{bottom:632.260869px;}
.yef{bottom:633.863262px;}
.ycd{bottom:633.988755px;}
.y4d{bottom:635.382990px;}
.y63{bottom:642.843656px;}
.ye5{bottom:643.238612px;}
.y10d{bottom:644.104124px;}
.y2e{bottom:645.547316px;}
.y42{bottom:646.719330px;}
.y15c{bottom:646.750867px;}
.y13{bottom:647.801455px;}
.y179{bottom:647.818521px;}
.yd6{bottom:648.677357px;}
.y93{bottom:652.775903px;}
.y196{bottom:653.269308px;}
.ya{bottom:655.655905px;}
.yee{bottom:657.263263px;}
.y6f{bottom:659.016018px;}
.y15b{bottom:661.240863px;}
.y14f{bottom:661.635940px;}
.y99{bottom:667.895902px;}
.ye4{bottom:667.988614px;}
.y6{bottom:717.427673px;}
.y1a{bottom:737.140391px;}
.y8{bottom:745.437635px;}
.y14e{bottom:746.947391px;}
.y2f{bottom:752.789996px;}
.y130{bottom:753.221995px;}
.y5{bottom:760.987675px;}
.h44{height:28.485351px;}
.h47{height:39.990235px;}
.h46{height:40.693360px;}
.h3e{height:42.360000px;}
.h4c{height:44.762698px;}
.h3d{height:46.596003px;}
.h4{height:51.750002px;}
.h48{height:52.356003px;}
.h26{height:52.527173px;}
.h2e{height:52.863285px;}
.h30{height:52.901371px;}
.h4b{height:53.880005px;}
.h32{height:55.068004px;}
.h1f{height:55.302004px;}
.h3{height:56.786137px;}
.h2d{height:56.929687px;}
.h2c{height:56.970703px;}
.h4a{height:57.093750px;}
.h3c{height:59.220000px;}
.h2b{height:59.304000px;}
.h1d{height:59.556000px;}
.h3b{height:61.154297px;}
.h2a{height:61.359375px;}
.h1a{height:61.422004px;}
.h1c{height:61.683004px;}
.h4d{height:63.387191px;}
.h9{height:63.540002px;}
.h10{height:65.658000px;}
.h31{height:66.241505px;}
.h2f{height:66.937500px;}
.h33{height:67.776004px;}
.h3a{height:69.128906px;}
.h19{height:69.328130px;}
.h4e{height:69.890629px;}
.h8{height:71.718752px;}
.h49{height:72.318000px;}
.h1b{height:73.884755px;}
.h37{height:74.130004px;}
.hd{height:76.248002px;}
.hc{height:76.356002px;}
.h7{height:76.432502px;}
.h34{height:76.500005px;}
.hf{height:78.980250px;}
.h43{height:80.484005px;}
.h18{height:81.528005px;}
.h36{height:83.671880px;}
.he{height:84.075753px;}
.h28{height:84.720001px;}
.h39{height:85.394537px;}
.hb{height:86.062503px;}
.h1e{height:86.623500px;}
.h5{height:87.978520px;}
.h16{height:88.956003px;}
.h35{height:89.171255px;}
.h29{height:90.843755px;}
.ha{height:91.719003px;}
.h12{height:93.192005px;}
.h45{height:93.324005px;}
.h38{height:93.527345px;}
.h14{height:93.588005px;}
.h20{height:96.814506px;}
.h25{height:97.428001px;}
.h41{height:97.566001px;}
.h42{height:97.842001px;}
.h17{height:100.406253px;}
.h23{height:101.664003px;}
.h27{height:101.910001px;}
.h13{height:105.187506px;}
.h15{height:107.005503px;}
.h11{height:112.101006px;}
.h40{height:114.372004px;}
.h22{height:114.750004px;}
.h24{height:117.196501px;}
.h3f{height:126.676766px;}
.h21{height:127.387499px;}
.h6{height:131.044926px;}
.h2{height:203.820001px;}
.h1{height:270.061498px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x5a{left:23.586615px;}
.x9{left:28.934056px;}
.x78{left:34.257874px;}
.x12{left:37.632875px;}
.x8{left:38.757875px;}
.x13{left:42.224410px;}
.x15{left:43.349410px;}
.x70{left:46.567914px;}
.x19{left:48.682086px;}
.x1d{left:49.830664px;}
.x5d{left:52.119048px;}
.x5b{left:53.613188px;}
.x5c{left:55.124907px;}
.xf{left:56.235238px;}
.x24{left:58.381870px;}
.x89{left:62.158468px;}
.x83{left:65.225999px;}
.xa{left:66.555123px;}
.x98{left:68.069836px;}
.x32{left:72.236221px;}
.x72{left:75.534449px;}
.x87{left:79.579729px;}
.x6c{left:85.286837px;}
.x35{left:88.340549px;}
.x7d{left:91.255681px;}
.x14{left:93.974412px;}
.x23{left:96.126971px;}
.x7e{left:99.256817px;}
.x41{left:100.767373px;}
.x1e{left:103.830666px;}
.x25{left:106.756872px;}
.x43{left:108.534269px;}
.x10{left:110.235240px;}
.x7f{left:112.586615px;}
.x2f{left:114.434061px;}
.x96{left:116.557091px;}
.x6d{left:118.800572px;}
.x38{left:120.628942px;}
.x99{left:123.563978px;}
.x44{left:129.495762px;}
.x33{left:131.296159px;}
.x7a{left:133.693223px;}
.x36{left:137.840551px;}
.x86{left:143.199826px;}
.x79{left:144.611240px;}
.x7b{left:148.212965px;}
.x26{left:162.275725px;}
.x7c{left:179.097389px;}
.x8b{left:183.132872px;}
.x8a{left:185.382872px;}
.x1{left:188.427396px;}
.x42{left:195.424758px;}
.x80{left:201.807742px;}
.x27{left:204.126975px;}
.xb{left:210.555127px;}
.x3c{left:223.228943px;}
.x88{left:226.728682px;}
.x71{left:244.018718px;}
.x37{left:246.368655px;}
.x3d{left:247.905126px;}
.x93{left:251.517676px;}
.x68{left:256.150133px;}
.x81{left:260.165859px;}
.x9b{left:269.577326px;}
.x9a{left:340.895385px;}
.x92{left:385.457848px;}
.x7{left:388.125012px;}
.x46{left:407.236690px;}
.x48{left:411.689895px;}
.x6a{left:416.798698px;}
.x45{left:418.632921px;}
.x69{left:420.257457px;}
.x6b{left:428.688054px;}
.x66{left:433.892324px;}
.x2a{left:436.420296px;}
.x67{left:442.432249px;}
.xc{left:444.733756px;}
.x47{left:458.741148px;}
.x34{left:465.528570px;}
.x22{left:474.126983px;}
.x29{left:484.795298px;}
.x58{left:491.270640px;}
.x20{left:509.592538px;}
.x1f{left:514.092538px;}
.x1b{left:521.843529px;}
.xd{left:530.220504px;}
.x59{left:544.880942px;}
.x2b{left:550.944051px;}
.x2{left:555.267629px;}
.x82{left:557.424243px;}
.x21{left:568.092539px;}
.xe{left:584.220506px;}
.x5{left:653.125312px;}
.x6e{left:673.830697px;}
.x4c{left:703.666910px;}
.x1c{left:710.439030px;}
.x97{left:713.759997px;}
.x4a{left:716.111880px;}
.x3a{left:722.548261px;}
.x49{left:725.828241px;}
.x4d{left:729.021674px;}
.x76{left:731.199939px;}
.x11{left:738.068730px;}
.x6f{left:739.975445px;}
.x62{left:747.822711px;}
.x17{left:750.711624px;}
.x61{left:769.395141px;}
.x4b{left:774.888634px;}
.x3b{left:785.548263px;}
.x30{left:799.270561px;}
.x8c{left:800.926141px;}
.x2d{left:803.213324px;}
.x90{left:806.775348px;}
.x91{left:813.045692px;}
.x2e{left:817.222523px;}
.x2c{left:829.269117px;}
.x74{left:838.074781px;}
.x8e{left:854.926143px;}
.x8d{left:856.420284px;}
.x28{left:862.795310px;}
.x1a{left:870.944878px;}
.x95{left:879.859266px;}
.x94{left:882.109266px;}
.x18{left:897.073791px;}
.x3f{left:906.805371px;}
.x8f{left:910.420285px;}
.x39{left:924.512115px;}
.x3e{left:944.587718px;}
.x77{left:953.585827px;}
.x31{left:959.813671px;}
.x84{left:962.763753px;}
.x40{left:966.987368px;}
.x3{left:968.209456px;}
.x73{left:984.856826px;}
.x55{left:1015.113262px;}
.x85{left:1018.257895px;}
.x4e{left:1019.500739px;}
.x54{left:1021.431216px;}
.x50{left:1039.764198px;}
.x53{left:1042.491168px;}
.x51{left:1044.354165px;}
.x56{left:1050.037677px;}
.x52{left:1056.180133px;}
.x16{left:1065.800172px;}
.x4f{left:1103.511005px;}
.x57{left:1117.213461px;}
.x75{left:1253.434505px;}
.x5f{left:1263.165249px;}
.x5e{left:1268.417444px;}
.x6{left:1275.653527px;}
.x60{left:1277.074306px;}
.x65{left:1315.172127px;}
.x63{left:1327.627257px;}
.x64{left:1347.112052px;}
.x4{left:1392.516787px;}
@media print{
.v2{vertical-align:-19.076041pt;}
.v1{vertical-align:-15.705597pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000016pt;}
.ls6{letter-spacing:0.000080pt;}
.lsd{letter-spacing:0.805847pt;}
.lsf{letter-spacing:0.805859pt;}
.lse{letter-spacing:0.805879pt;}
.ls9{letter-spacing:78.614407pt;}
.ls5{letter-spacing:94.666667pt;}
.lsa{letter-spacing:95.958339pt;}
.ls4{letter-spacing:95.979167pt;}
.ls10{letter-spacing:95.987780pt;}
.ls2{letter-spacing:96.000003pt;}
.ls3{letter-spacing:97.333339pt;}
.ls8{letter-spacing:113.386128pt;}
.ls1{letter-spacing:128.000316pt;}
.lsb{letter-spacing:149.847989pt;}
.ls7{letter-spacing:825.211970pt;}
.ws0{word-spacing:-66.992000pt;}
.ws14{word-spacing:-54.400000pt;}
.ws2{word-spacing:-44.320001pt;}
.ws3f{word-spacing:-35.200002pt;}
.ws23{word-spacing:-32.000000pt;}
.ws1f{word-spacing:-29.072000pt;}
.ws8{word-spacing:-27.808002pt;}
.wsa{word-spacing:-26.544001pt;}
.ws10{word-spacing:-25.600001pt;}
.ws12{word-spacing:-25.280000pt;}
.ws20{word-spacing:-24.533334pt;}
.ws22{word-spacing:-24.016001pt;}
.ws9{word-spacing:-23.466668pt;}
.ws5{word-spacing:-22.752001pt;}
.ws1a{word-spacing:-22.666667pt;}
.ws13{word-spacing:-22.400001pt;}
.ws19{word-spacing:-22.120001pt;}
.ws15{word-spacing:-21.488000pt;}
.ws11{word-spacing:-21.333333pt;}
.ws21{word-spacing:-20.266668pt;}
.ws18{word-spacing:-20.224001pt;}
.ws7{word-spacing:-19.592000pt;}
.ws6{word-spacing:-19.054799pt;}
.ws3{word-spacing:-18.960001pt;}
.wsd{word-spacing:-18.328001pt;}
.wsc{word-spacing:-17.696000pt;}
.ws16{word-spacing:-17.066668pt;}
.wse{word-spacing:-16.432001pt;}
.wsf{word-spacing:-16.000001pt;}
.wsb{word-spacing:-15.466668pt;}
.ws17{word-spacing:-13.866668pt;}
.ws39{word-spacing:-10.666667pt;}
.ws40{word-spacing:-2.965713pt;}
.ws4{word-spacing:-0.080000pt;}
.ws28{word-spacing:-0.074667pt;}
.ws1{word-spacing:0.000000pt;}
.ws38{word-spacing:213.679383pt;}
.ws32{word-spacing:222.688991pt;}
.ws37{word-spacing:264.598408pt;}
.ws2b{word-spacing:283.936995pt;}
.ws2f{word-spacing:309.334410pt;}
.ws3d{word-spacing:322.198410pt;}
.ws35{word-spacing:347.798411pt;}
.ws2a{word-spacing:369.430412pt;}
.ws30{word-spacing:371.862412pt;}
.ws29{word-spacing:382.347751pt;}
.ws33{word-spacing:382.870412pt;}
.ws2e{word-spacing:383.766412pt;}
.ws3c{word-spacing:393.622413pt;}
.ws2c{word-spacing:417.622413pt;}
.ws3a{word-spacing:417.814413pt;}
.ws31{word-spacing:432.726414pt;}
.ws27{word-spacing:445.677734pt;}
.ws3e{word-spacing:543.562068pt;}
.ws34{word-spacing:552.571676pt;}
.ws2d{word-spacing:562.662343pt;}
.ws26{word-spacing:580.077739pt;}
.ws25{word-spacing:608.749739pt;}
.ws24{word-spacing:611.363079pt;}
.ws3b{word-spacing:730.826078pt;}
.ws36{word-spacing:739.835686pt;}
.ws1b{word-spacing:771.600162pt;}
.ws1d{word-spacing:794.320179pt;}
.ws1e{word-spacing:813.781498pt;}
.ws1c{word-spacing:859.658834pt;}
._3a{margin-left:-36.494595pt;}
._39{margin-left:-30.941063pt;}
._5{margin-left:-27.136000pt;}
._49{margin-left:-21.434780pt;}
._7{margin-left:-14.197334pt;}
._19{margin-left:-11.840000pt;}
._b{margin-left:-10.080000pt;}
._2{margin-left:-7.914667pt;}
._2f{margin-left:-6.538667pt;}
._6{margin-left:-5.280000pt;}
._1{margin-left:-3.957333pt;}
._3{margin-left:-2.261333pt;}
._4{margin-left:-1.130667pt;}
._9{width:1.344214pt;}
._8{width:2.250547pt;}
._a{width:3.381054pt;}
._0{width:4.522667pt;}
._4b{width:5.805504pt;}
._2a{width:6.737567pt;}
._27{width:8.281101pt;}
._26{width:9.565312pt;}
._25{width:10.880000pt;}
._1a{width:12.543786pt;}
._1b{width:13.578789pt;}
._16{width:14.549334pt;}
._17{width:15.989334pt;}
._11{width:16.992001pt;}
._f{width:18.240001pt;}
._15{width:19.804281pt;}
._21{width:20.749333pt;}
._23{width:22.414679pt;}
._10{width:24.000001pt;}
._e{width:25.205334pt;}
._3d{width:28.373335pt;}
._d{width:32.352001pt;}
._c{width:33.557334pt;}
._4c{width:35.616002pt;}
._4d{width:36.986669pt;}
._14{width:38.535641pt;}
._2e{width:39.525801pt;}
._35{width:41.984001pt;}
._3c{width:42.922669pt;}
._3e{width:46.151265pt;}
._13{width:47.701335pt;}
._12{width:49.013335pt;}
._1c{width:50.704000pt;}
._1e{width:56.325333pt;}
._1f{width:58.085333pt;}
._32{width:61.200002pt;}
._22{width:65.253333pt;}
._34{width:67.120002pt;}
._1d{width:74.152000pt;}
._31{width:78.101336pt;}
._2b{width:83.264004pt;}
._30{width:95.985775pt;}
._36{width:99.840003pt;}
._24{width:102.432006pt;}
._33{width:116.960004pt;}
._20{width:122.842667pt;}
._3f{width:142.728008pt;}
._37{width:146.645338pt;}
._38{width:148.341338pt;}
._29{width:185.770677pt;}
._28{width:187.082676pt;}
._2d{width:223.786679pt;}
._2c{width:224.960012pt;}
._4a{width:448.000018pt;}
._48{width:475.030214pt;}
._46{width:493.232881pt;}
._41{width:505.707668pt;}
._44{width:537.067550pt;}
._42{width:546.678217pt;}
._45{width:572.422338pt;}
._40{width:642.287338pt;}
._3b{width:682.794710pt;}
._47{width:695.819558pt;}
._43{width:761.494349pt;}
._18{width:974.326788pt;}
._4e{width:3546.597540pt;}
.fs1d{font-size:37.333333pt;}
.fs1a{font-size:53.333334pt;}
.fs19{font-size:58.666670pt;}
.fs4{font-size:64.000002pt;}
.fs16{font-size:64.133334pt;}
.fs3{font-size:69.333338pt;}
.fs1e{font-size:70.706409pt;}
.fsf{font-size:74.666666pt;}
.fse{font-size:77.333338pt;}
.fs7{font-size:80.000003pt;}
.fs9{font-size:80.399995pt;}
.fsb{font-size:82.666667pt;}
.fsd{font-size:85.333339pt;}
.fsa{font-size:88.000003pt;}
.fs10{font-size:90.666667pt;}
.fs12{font-size:93.333339pt;}
.fs8{font-size:96.000003pt;}
.fs11{font-size:101.333339pt;}
.fs17{font-size:106.666667pt;}
.fsc{font-size:112.000004pt;}
.fs18{font-size:112.000008pt;}
.fs5{font-size:117.333340pt;}
.fs15{font-size:122.666668pt;}
.fs14{font-size:128.000004pt;}
.fs13{font-size:133.333332pt;}
.fs1c{font-size:144.000005pt;}
.fs1b{font-size:154.666677pt;}
.fs6{font-size:160.000005pt;}
.fs2{font-size:213.333335pt;}
.fs1{font-size:261.333352pt;}
.fs0{font-size:282.666665pt;}
.y0{bottom:0.000000pt;}
.y121{bottom:18.543241pt;}
.y197{bottom:24.669548pt;}
.y9{bottom:29.968778pt;}
.yb1{bottom:30.842378pt;}
.y7{bottom:55.269259pt;}
.y1c7{bottom:65.280879pt;}
.yb0{bottom:70.915289pt;}
.y13b{bottom:101.193960pt;}
.ye8{bottom:103.172638pt;}
.y189{bottom:103.204310pt;}
.y178{bottom:104.275340pt;}
.yad{bottom:107.712750pt;}
.yaf{bottom:107.715290pt;}
.yd5{bottom:111.705516pt;}
.y97{bottom:116.867717pt;}
.y177{bottom:117.155341pt;}
.y7f{bottom:117.421901pt;}
.yed{bottom:119.907776pt;}
.ye7{bottom:124.172639pt;}
.y11d{bottom:126.934001pt;}
.y145{bottom:128.391531pt;}
.y1f{bottom:128.473421pt;}
.y11a{bottom:128.921671pt;}
.y176{bottom:130.035351pt;}
.y188{bottom:130.193811pt;}
.y6e{bottom:130.376496pt;}
.y83{bottom:131.697641pt;}
.y13a{bottom:132.873951pt;}
.y1b9{bottom:135.850251pt;}
.y92{bottom:136.707451pt;}
.y10c{bottom:138.990361pt;}
.y7e{bottom:140.621901pt;}
.y96{bottom:140.787715pt;}
.y2d{bottom:142.289582pt;}
.y1c5{bottom:143.231362pt;}
.yec{bottom:143.427772pt;}
.yac{bottom:144.512742pt;}
.yae{bottom:144.515282pt;}
.ye6{bottom:145.172642pt;}
.yd4{bottom:145.305527pt;}
.y4{bottom:146.969552pt;}
.y58{bottom:153.168572pt;}
.y175{bottom:155.795362pt;}
.y1b8{bottom:156.650252pt;}
.y15a{bottom:157.058072pt;}
.y119{bottom:157.401672pt;}
.y82{bottom:157.457632pt;}
.y3e{bottom:158.641122pt;}
.y194{bottom:159.526072pt;}
.y187{bottom:160.388032pt;}
.y1e{bottom:161.593412pt;}
.y91{bottom:163.387452pt;}
.y7d{bottom:163.821902pt;}
.y10b{bottom:164.590352pt;}
.y95{bottom:164.707714pt;}
.y144{bottom:165.191512pt;}
.y12f{bottom:165.304482pt;}
.yeb{bottom:166.947772pt;}
.ya6{bottom:168.032052pt;}
.yfa{bottom:168.424982pt;}
.y174{bottom:168.675362pt;}
.y6d{bottom:169.016507pt;}
.y139{bottom:169.673942pt;}
.y2c{bottom:171.089592pt;}
.y1c4{bottom:172.111372pt;}
.y62{bottom:173.669593pt;}
.y102{bottom:174.424988pt;}
.y1b7{bottom:177.450263pt;}
.y11b{bottom:178.796415pt;}
.y1a4{bottom:179.321083pt;}
.y173{bottom:181.555363pt;}
.y81{bottom:183.217630pt;}
.y186{bottom:183.421185pt;}
.y118{bottom:184.601668pt;}
.y193{bottom:186.726073pt;}
.y7c{bottom:187.021893pt;}
.y3d{bottom:187.161123pt;}
.y159{bottom:187.458073pt;}
.y94{bottom:188.627713pt;}
.ycc{bottom:189.171083pt;}
.y90{bottom:190.067443pt;}
.yea{bottom:190.467768pt;}
.yf9{bottom:192.424984pt;}
.y43{bottom:192.788124pt;}
.y57{bottom:193.648593pt;}
.y172{bottom:194.435373pt;}
.y1d{bottom:194.713413pt;}
.y12e{bottom:194.802343pt;}
.ya5{bottom:195.632043pt;}
.yfc{bottom:196.837895pt;}
.y1b6{bottom:198.250263pt;}
.y101{bottom:198.424986pt;}
.y2b{bottom:199.889613pt;}
.y143{bottom:201.991503pt;}
.y1a3{bottom:206.079624pt;}
.y138{bottom:206.473934pt;}
.y171{bottom:207.315384pt;}
.y6c{bottom:207.656519pt;}
.y80{bottom:208.977626pt;}
.y7b{bottom:210.221894pt;}
.y117{bottom:211.801666pt;}
.y14c{bottom:212.004084pt;}
.ye3{bottom:213.631164pt;}
.y192{bottom:213.926074pt;}
.ye9{bottom:213.987766pt;}
.y61{bottom:214.149594pt;}
.y3{bottom:215.129564pt;}
.y3c{bottom:215.681104pt;}
.y10a{bottom:215.790334pt;}
.y8f{bottom:216.747434pt;}
.y9f{bottom:217.544354pt;}
.y158{bottom:217.858054pt;}
.ycb{bottom:217.971104pt;}
.y1b5{bottom:219.050264pt;}
.y170{bottom:220.195384pt;}
.y12d{bottom:221.740204pt;}
.ya4{bottom:223.232034pt;}
.y11f{bottom:226.975507pt;}
.y1c{bottom:227.833424pt;}
.yd3{bottom:228.505549pt;}
.y1c3{bottom:229.871384pt;}
.y1a2{bottom:232.838134pt;}
.y7a{bottom:233.421894pt;}
.y56{bottom:234.128594pt;}
.ye2{bottom:235.631166pt;}
.y2a{bottom:236.689645pt;}
.y142{bottom:238.791485pt;}
.y1b4{bottom:239.850265pt;}
.y109{bottom:241.390335pt;}
.y137{bottom:243.273925pt;}
.y8e{bottom:243.427435pt;}
.y3b{bottom:244.201095pt;}
.y9e{bottom:245.144350pt;}
.y11e{bottom:245.773089pt;}
.y16f{bottom:245.955385pt;}
.y6b{bottom:246.296540pt;}
.yca{bottom:246.771125pt;}
.y157{bottom:248.258055pt;}
.y14b{bottom:248.804085pt;}
.ya3{bottom:250.832030pt;}
.y12c{bottom:252.737585pt;}
.y60{bottom:254.629595pt;}
.y3f{bottom:255.953486pt;}
.y1a1{bottom:259.596685pt;}
.y1b3{bottom:260.650275pt;}
.y1b{bottom:260.953425pt;}
.yd2{bottom:262.105550pt;}
.y116{bottom:264.536989pt;}
.y79{bottom:265.101885pt;}
.y29{bottom:265.489645pt;}
.y8d{bottom:270.107426pt;}
.y12{bottom:271.603106pt;}
.y16e{bottom:271.715386pt;}
.y191{bottom:272.166076pt;}
.y3a{bottom:272.721086pt;}
.y9d{bottom:272.744342pt;}
.y195{bottom:273.404146pt;}
.y55{bottom:274.608596pt;}
.yc9{bottom:275.571146pt;}
.y141{bottom:275.591486pt;}
.y44{bottom:275.691027pt;}
.ya2{bottom:278.432022pt;}
.y156{bottom:278.658056pt;}
.y136{bottom:280.073916pt;}
.y12b{bottom:280.955416pt;}
.y1b2{bottom:281.450268pt;}
.y16d{bottom:284.595381pt;}
.y100{bottom:284.894206pt;}
.y6a{bottom:284.936551pt;}
.y14a{bottom:285.604086pt;}
.y1a0{bottom:287.573056pt;}
.y1c2{bottom:287.631396pt;}
.ydf{bottom:289.329931pt;}
.yfb{bottom:291.069503pt;}
.y115{bottom:292.536990pt;}
.y108{bottom:292.590316pt;}
.y5f{bottom:295.109616pt;}
.y8c{bottom:296.787436pt;}
.y54{bottom:297.264871pt;}
.y16c{bottom:297.475376pt;}
.y78{bottom:299.341887pt;}
.y2{bottom:299.929557pt;}
.y9c{bottom:300.344342pt;}
.y39{bottom:301.241077pt;}
.y28{bottom:302.289677pt;}
.y190{bottom:302.566077pt;}
.y1b1{bottom:303.210267pt;}
.yc8{bottom:304.371167pt;}
.ya1{bottom:306.032022pt;}
.y155{bottom:309.058057pt;}
.y12a{bottom:309.173287pt;}
.y16b{bottom:310.355377pt;}
.y140{bottom:312.391487pt;}
.yde{bottom:312.849927pt;}
.y19f{bottom:314.331587pt;}
.y4c{bottom:315.088617pt;}
.y1c1{bottom:316.511397pt;}
.y135{bottom:316.873897pt;}
.y107{bottom:318.190309pt;}
.y120{bottom:318.595634pt;}
.y11{bottom:319.603107pt;}
.y114{bottom:320.536991pt;}
.y149{bottom:322.404087pt;}
.y16a{bottom:323.235373pt;}
.y8b{bottom:323.467427pt;}
.y69{bottom:323.576572pt;}
.y9b{bottom:327.944338pt;}
.y185{bottom:328.000507pt;}
.y38{bottom:329.761058pt;}
.y27{bottom:331.089678pt;}
.y53{bottom:332.464893pt;}
.y18f{bottom:332.966078pt;}
.yc7{bottom:333.171168pt;}
.ya0{bottom:333.632019pt;}
.y1cb{bottom:333.906018pt;}
.y5e{bottom:335.589618pt;}
.yc1{bottom:335.823288pt;}
.y169{bottom:336.115372pt;}
.ydd{bottom:336.369928pt;}
.yd1{bottom:337.305553pt;}
.y129{bottom:337.391118pt;}
.y154{bottom:339.458048pt;}
.yfe{bottom:342.661245pt;}
.y1b0{bottom:342.776668pt;}
.y106{bottom:343.790308pt;}
.y184{bottom:344.000508pt;}
.y19e{bottom:344.741028pt;}
.ybb{bottom:346.276518pt;}
.yb6{bottom:347.818338pt;}
.y168{bottom:348.995368pt;}
.y13f{bottom:349.191488pt;}
.y40{bottom:349.486289pt;}
.y8a{bottom:350.147418pt;}
.y134{bottom:353.673898pt;}
.y4b{bottom:355.568618pt;}
.y37{bottom:358.281068pt;}
.y148{bottom:359.204098pt;}
.y77{bottom:359.632058pt;}
.y26{bottom:359.889668pt;}
.ydc{bottom:359.889923pt;}
.y183{bottom:360.000508pt;}
.y1af{bottom:360.376668pt;}
.yc6{bottom:361.971159pt;}
.y68{bottom:362.216584pt;}
.y1ca{bottom:363.346024pt;}
.y18e{bottom:363.366069pt;}
.y128{bottom:365.608949pt;}
.y10{bottom:367.603109pt;}
.y52{bottom:367.664894pt;}
.y153{bottom:369.858055pt;}
.yd0{bottom:370.905554pt;}
.y19d{bottom:371.499589pt;}
.yc0{bottom:373.956609pt;}
.y1c0{bottom:374.271399pt;}
.y182{bottom:376.000509pt;}
.y5d{bottom:376.069609pt;}
.y113{bottom:376.536993pt;}
.y89{bottom:376.827409pt;}
.y19{bottom:377.103509pt;}
.y1ae{bottom:377.976679pt;}
.ydb{bottom:383.409921pt;}
.yba{bottom:384.409839pt;}
.y1{bottom:384.729539pt;}
.yb5{bottom:385.951649pt;}
.y13e{bottom:385.991499pt;}
.y76{bottom:386.312049pt;}
.y36{bottom:386.801059pt;}
.y25{bottom:388.689649pt;}
.y9a{bottom:389.083339pt;}
.y133{bottom:390.473909pt;}
.yc5{bottom:390.771149pt;}
.y181{bottom:392.000510pt;}
.y1c9{bottom:392.786016pt;}
.y18d{bottom:393.766076pt;}
.y127{bottom:393.826820pt;}
.y1ad{bottom:395.576690pt;}
.y147{bottom:396.004100pt;}
.y4a{bottom:396.048610pt;}
.y19c{bottom:398.258090pt;}
.y152{bottom:400.258060pt;}
.y67{bottom:400.856585pt;}
.yff{bottom:402.236840pt;}
.ybf{bottom:402.756600pt;}
.y51{bottom:402.864885pt;}
.y1bf{bottom:403.151400pt;}
.y88{bottom:403.507410pt;}
.y112{bottom:404.536994pt;}
.yab{bottom:407.728280pt;}
.y180{bottom:408.000510pt;}
.y18{bottom:410.223510pt;}
.y75{bottom:412.992040pt;}
.y1ac{bottom:413.176690pt;}
.yb9{bottom:413.209830pt;}
.yb4{bottom:414.751640pt;}
.yf{bottom:414.805240pt;}
.y35{bottom:415.321050pt;}
.y1ba{bottom:415.969744pt;}
.y5c{bottom:416.549610pt;}
.yf6{bottom:417.833996pt;}
.yc4{bottom:419.571140pt;}
.y45{bottom:420.234331pt;}
.y167{bottom:420.329650pt;}
.y126{bottom:422.044650pt;}
.y1c8{bottom:422.226010pt;}
.y13d{bottom:422.791500pt;}
.y17f{bottom:424.000511pt;}
.y18c{bottom:424.166081pt;}
.y19b{bottom:425.016641pt;}
.y24{bottom:425.489651pt;}
.y132{bottom:427.273911pt;}
.y87{bottom:430.187401pt;}
.y151{bottom:430.658061pt;}
.y1ab{bottom:430.776691pt;}
.ybe{bottom:431.556581pt;}
.y1be{bottom:432.031411pt;}
.y111{bottom:432.536995pt;}
.y146{bottom:432.804091pt;}
.y166{bottom:433.209661pt;}
.y49{bottom:436.528611pt;}
.yf5{bottom:438.634007pt;}
.ye{bottom:438.805241pt;}
.y66{bottom:439.496586pt;}
.y74{bottom:439.672041pt;}
.y17e{bottom:440.000511pt;}
.yb8{bottom:442.009821pt;}
.y17{bottom:443.343511pt;}
.y50{bottom:443.344886pt;}
.yb3{bottom:443.551631pt;}
.y34{bottom:443.841031pt;}
.y165{bottom:446.089671pt;}
.yda{bottom:446.122121pt;}
.yaa{bottom:446.128281pt;}
.yc3{bottom:448.371141pt;}
.y1aa{bottom:448.376697pt;}
.yfd{bottom:448.863828pt;}
.y125{bottom:450.262501pt;}
.y19a{bottom:451.775171pt;}
.ye1{bottom:452.591731pt;}
.ycf{bottom:454.105566pt;}
.y23{bottom:454.289641pt;}
.y18b{bottom:454.566082pt;}
.y41{bottom:455.848493pt;}
.y86{bottom:456.867392pt;}
.y5b{bottom:457.029607pt;}
.y164{bottom:458.969672pt;}
.yf4{bottom:459.434008pt;}
.y13c{bottom:459.591492pt;}
.ybd{bottom:460.356592pt;}
.y110{bottom:460.536996pt;}
.y150{bottom:461.058062pt;}
.y131{bottom:465.353912pt;}
.y1a9{bottom:465.976696pt;}
.y73{bottom:466.352032pt;}
.yb7{bottom:470.809822pt;}
.y163{bottom:471.849682pt;}
.y17d{bottom:472.000512pt;}
.yb2{bottom:472.351632pt;}
.y33{bottom:472.361042pt;}
.ye0{bottom:474.591733pt;}
.y16{bottom:476.463502pt;}
.y48{bottom:477.008607pt;}
.yc2{bottom:477.171142pt;}
.yd9{bottom:477.402102pt;}
.y124{bottom:478.480352pt;}
.yf3{bottom:480.234008pt;}
.y199{bottom:480.966762pt;}
.y85{bottom:483.547394pt;}
.y1a8{bottom:483.576692pt;}
.y4f{bottom:483.824882pt;}
.ya9{bottom:484.528282pt;}
.y162{bottom:484.729672pt;}
.y18a{bottom:484.966082pt;}
.yd{bottom:486.805243pt;}
.yce{bottom:487.705568pt;}
.y17c{bottom:488.000513pt;}
.ybc{bottom:489.156593pt;}
.y1bd{bottom:489.791423pt;}
.y105{bottom:491.086203pt;}
.y22{bottom:491.089643pt;}
.y72{bottom:493.032023pt;}
.y65{bottom:494.136598pt;}
.y1c6{bottom:494.274746pt;}
.y5a{bottom:497.509603pt;}
.y161{bottom:497.609673pt;}
.y32{bottom:500.881043pt;}
.yf2{bottom:501.034009pt;}
.y1a7{bottom:501.176693pt;}
.y17b{bottom:504.000513pt;}
.y123{bottom:506.698203pt;}
.y198{bottom:507.981575pt;}
.y15{bottom:509.583503pt;}
.yd8{bottom:509.802099pt;}
.y84{bottom:510.227393pt;}
.yf8{bottom:510.446470pt;}
.y11c{bottom:510.529813pt;}
.y104{bottom:515.086206pt;}
.y10f{bottom:516.536997pt;}
.y47{bottom:517.488604pt;}
.y1bc{bottom:518.671424pt;}
.y1a6{bottom:518.776694pt;}
.y71{bottom:519.712019pt;}
.y21{bottom:519.889650pt;}
.y17a{bottom:520.000514pt;}
.yf1{bottom:521.834020pt;}
.ya8{bottom:522.928284pt;}
.y160{bottom:523.369669pt;}
.y4e{bottom:524.304879pt;}
.y31{bottom:529.401037pt;}
.y64{bottom:532.776589pt;}
.yf7{bottom:534.446467pt;}
.yc{bottom:534.805244pt;}
.y15f{bottom:536.249664pt;}
.y1a5{bottom:536.376694pt;}
.y59{bottom:537.989604pt;}
.y98{bottom:538.635895pt;}
.y103{bottom:539.086203pt;}
.y122{bottom:540.855586pt;}
.yf0{bottom:542.634010pt;}
.y14{bottom:542.703514pt;}
.yd7{bottom:543.642094pt;}
.y10e{bottom:544.536998pt;}
.y1bb{bottom:547.551427pt;}
.y20{bottom:548.689655pt;}
.y15e{bottom:549.129665pt;}
.y70{bottom:555.232013pt;}
.y14d{bottom:557.847505pt;}
.y46{bottom:557.968605pt;}
.y30{bottom:558.481036pt;}
.yb{bottom:558.805245pt;}
.ya7{bottom:561.648285pt;}
.y15d{bottom:562.009661pt;}
.yef{bottom:563.434011pt;}
.ycd{bottom:563.545560pt;}
.y4d{bottom:564.784880pt;}
.y63{bottom:571.416583pt;}
.ye5{bottom:571.767655pt;}
.y10d{bottom:572.536999pt;}
.y2e{bottom:573.819836pt;}
.y42{bottom:574.861626pt;}
.y15c{bottom:574.889659pt;}
.y13{bottom:575.823515pt;}
.y179{bottom:575.838685pt;}
.yd6{bottom:576.602095pt;}
.y93{bottom:580.245248pt;}
.y196{bottom:580.683830pt;}
.ya{bottom:582.805249pt;}
.yee{bottom:584.234012pt;}
.y6f{bottom:585.792016pt;}
.y15b{bottom:587.769656pt;}
.y14f{bottom:588.120836pt;}
.y99{bottom:593.685246pt;}
.ye4{bottom:593.767657pt;}
.y6{bottom:637.713487pt;}
.y1a{bottom:655.235903pt;}
.y8{bottom:662.611231pt;}
.y14e{bottom:663.953236pt;}
.y2f{bottom:669.146663pt;}
.y130{bottom:669.530662pt;}
.y5{bottom:676.433489pt;}
.h44{height:25.320312pt;}
.h47{height:35.546875pt;}
.h46{height:36.171875pt;}
.h3e{height:37.653334pt;}
.h4c{height:39.789065pt;}
.h3d{height:41.418669pt;}
.h4{height:46.000001pt;}
.h48{height:46.538669pt;}
.h26{height:46.690821pt;}
.h2e{height:46.989587pt;}
.h30{height:47.023441pt;}
.h4b{height:47.893338pt;}
.h32{height:48.949337pt;}
.h1f{height:49.157337pt;}
.h3{height:50.476566pt;}
.h2d{height:50.604166pt;}
.h2c{height:50.640625pt;}
.h4a{height:50.750000pt;}
.h3c{height:52.640000pt;}
.h2b{height:52.714666pt;}
.h1d{height:52.938666pt;}
.h3b{height:54.359375pt;}
.h2a{height:54.541666pt;}
.h1a{height:54.597337pt;}
.h1c{height:54.829337pt;}
.h4d{height:56.344170pt;}
.h9{height:56.480002pt;}
.h10{height:58.362667pt;}
.h31{height:58.881337pt;}
.h2f{height:59.500000pt;}
.h33{height:60.245337pt;}
.h3a{height:61.447917pt;}
.h19{height:61.625004pt;}
.h4e{height:62.125004pt;}
.h8{height:63.750002pt;}
.h49{height:64.282667pt;}
.h1b{height:65.675338pt;}
.h37{height:65.893337pt;}
.hd{height:67.776002pt;}
.hc{height:67.872002pt;}
.h7{height:67.940002pt;}
.h34{height:68.000004pt;}
.hf{height:70.204667pt;}
.h43{height:71.541338pt;}
.h18{height:72.469338pt;}
.h36{height:74.375005pt;}
.he{height:74.734002pt;}
.h28{height:75.306667pt;}
.h39{height:75.906255pt;}
.hb{height:76.500002pt;}
.h1e{height:76.998667pt;}
.h5{height:78.203129pt;}
.h16{height:79.072003pt;}
.h35{height:79.263338pt;}
.h29{height:80.750005pt;}
.ha{height:81.528003pt;}
.h12{height:82.837338pt;}
.h45{height:82.954671pt;}
.h38{height:83.135418pt;}
.h14{height:83.189338pt;}
.h20{height:86.057338pt;}
.h25{height:86.602668pt;}
.h41{height:86.725334pt;}
.h42{height:86.970668pt;}
.h17{height:89.250003pt;}
.h23{height:90.368003pt;}
.h27{height:90.586667pt;}
.h13{height:93.500005pt;}
.h15{height:95.116003pt;}
.h11{height:99.645339pt;}
.h40{height:101.664003pt;}
.h22{height:102.000003pt;}
.h24{height:104.174668pt;}
.h3f{height:112.601570pt;}
.h21{height:113.233332pt;}
.h6{height:116.484379pt;}
.h2{height:181.173335pt;}
.h1{height:240.054665pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x5a{left:20.965880pt;}
.x9{left:25.719161pt;}
.x78{left:30.451444pt;}
.x12{left:33.451444pt;}
.x8{left:34.451444pt;}
.x13{left:37.532809pt;}
.x15{left:38.532809pt;}
.x70{left:41.393701pt;}
.x19{left:43.272965pt;}
.x1d{left:44.293923pt;}
.x5d{left:46.328042pt;}
.x5b{left:47.656168pt;}
.x5c{left:48.999918pt;}
.xf{left:49.986879pt;}
.x24{left:51.894996pt;}
.x89{left:55.251972pt;}
.x83{left:57.978666pt;}
.xa{left:59.160109pt;}
.x98{left:60.506521pt;}
.x32{left:64.209974pt;}
.x72{left:67.141732pt;}
.x87{left:70.737537pt;}
.x6c{left:75.810521pt;}
.x35{left:78.524933pt;}
.x7d{left:81.116161pt;}
.x14{left:83.532811pt;}
.x23{left:85.446197pt;}
.x7e{left:88.228282pt;}
.x41{left:89.570998pt;}
.x1e{left:92.293925pt;}
.x25{left:94.894997pt;}
.x43{left:96.474906pt;}
.x10{left:97.986880pt;}
.x7f{left:100.076991pt;}
.x2f{left:101.719165pt;}
.x96{left:103.606303pt;}
.x6d{left:105.600508pt;}
.x38{left:107.225726pt;}
.x99{left:109.834648pt;}
.x44{left:115.107344pt;}
.x33{left:116.707697pt;}
.x7a{left:118.838421pt;}
.x36{left:122.524934pt;}
.x86{left:127.288734pt;}
.x79{left:128.543324pt;}
.x7b{left:131.744858pt;}
.x26{left:144.245089pt;}
.x7c{left:159.197679pt;}
.x8b{left:162.784775pt;}
.x8a{left:164.784775pt;}
.x1{left:167.491018pt;}
.x42{left:173.710896pt;}
.x80{left:179.384660pt;}
.x27{left:181.446200pt;}
.xb{left:187.160113pt;}
.x3c{left:198.425727pt;}
.x88{left:201.536606pt;}
.x71{left:216.905527pt;}
.x37{left:218.994360pt;}
.x3d{left:220.360112pt;}
.x93{left:223.571267pt;}
.x68{left:227.689007pt;}
.x81{left:231.258541pt;}
.x9b{left:239.624290pt;}
.x9a{left:303.018120pt;}
.x92{left:342.629198pt;}
.x7{left:345.000011pt;}
.x46{left:361.988169pt;}
.x48{left:365.946574pt;}
.x6a{left:370.487732pt;}
.x45{left:372.118152pt;}
.x69{left:373.562184pt;}
.x6b{left:381.056048pt;}
.x66{left:385.682065pt;}
.x2a{left:387.929152pt;}
.x67{left:393.273111pt;}
.xc{left:395.318895pt;}
.x47{left:407.769909pt;}
.x34{left:413.803173pt;}
.x22{left:421.446207pt;}
.x29{left:430.929154pt;}
.x58{left:436.685013pt;}
.x20{left:452.971144pt;}
.x1f{left:456.971145pt;}
.x1b{left:463.860915pt;}
.xd{left:471.307115pt;}
.x59{left:484.338615pt;}
.x2b{left:489.728046pt;}
.x2{left:493.571226pt;}
.x82{left:495.488216pt;}
.x21{left:504.971146pt;}
.xe{left:519.307117pt;}
.x5{left:580.555833pt;}
.x6e{left:598.960619pt;}
.x4c{left:625.481698pt;}
.x1c{left:631.501360pt;}
.x97{left:634.453330pt;}
.x4a{left:636.543893pt;}
.x3a{left:642.265121pt;}
.x49{left:645.180659pt;}
.x4d{left:648.019266pt;}
.x76{left:649.955502pt;}
.x11{left:656.061093pt;}
.x6f{left:657.755951pt;}
.x62{left:664.731298pt;}
.x17{left:667.299221pt;}
.x61{left:683.906792pt;}
.x4b{left:688.789897pt;}
.x3b{left:698.265122pt;}
.x30{left:710.462721pt;}
.x8c{left:711.934348pt;}
.x2d{left:713.967399pt;}
.x90{left:717.133643pt;}
.x91{left:722.707282pt;}
.x2e{left:726.420020pt;}
.x2c{left:737.128104pt;}
.x74{left:744.955361pt;}
.x8e{left:759.934349pt;}
.x8d{left:761.262474pt;}
.x28{left:766.929165pt;}
.x1a{left:774.173225pt;}
.x95{left:782.097125pt;}
.x94{left:784.097125pt;}
.x18{left:797.398926pt;}
.x3f{left:806.049219pt;}
.x8f{left:809.262476pt;}
.x39{left:821.788546pt;}
.x3e{left:839.633527pt;}
.x77{left:847.631846pt;}
.x31{left:853.167707pt;}
.x84{left:855.790002pt;}
.x40{left:859.544328pt;}
.x3{left:860.630628pt;}
.x73{left:875.428290pt;}
.x55{left:902.322900pt;}
.x85{left:905.118129pt;}
.x4e{left:906.222879pt;}
.x54{left:907.938859pt;}
.x50{left:924.234843pt;}
.x53{left:926.658816pt;}
.x51{left:928.314814pt;}
.x56{left:933.366824pt;}
.x52{left:938.826785pt;}
.x16{left:947.377930pt;}
.x4f{left:980.898671pt;}
.x57{left:993.078632pt;}
.x75{left:1114.164005pt;}
.x5f{left:1122.813555pt;}
.x5e{left:1127.482172pt;}
.x6{left:1133.914246pt;}
.x60{left:1135.177161pt;}
.x65{left:1169.041890pt;}
.x63{left:1180.113118pt;}
.x64{left:1197.432935pt;}
.x4{left:1237.792700pt;}
}




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