
    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_562098ebd7019b949eaa9938.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.122070;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_3f44ca996b858e35c5f0a798.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.122070;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_b05b12d1e4dd530b1cf39b28.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_31990c472a66802c59c0b3df.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_66b53d784cbe29d5b55f89a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.122070;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_6b8a1080759e341ff241a9d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.122070;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_e59ab3a6adcb20d04c487616.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.122070;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_ea804eb8337474aaf16d9cda.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.993000;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_20196d9d195c4754201b6ee3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.125000;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_c9ae40ed0049aa18f1a19f74.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.126953;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_9e85bbd5ab71516bc95de22e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6c489b1d233f2d7a80d97832.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.957000;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_c4f12046a15169d3b13ce1ff.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.946000;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_0d92de4faed03ae909e5be2d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.947000;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_6472c6e2807d49b296a6d4a4.woff2')format("woff");}.fff{font-family:fff;line-height:0.859375;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_6048f3a39aed3c2e269570ca.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.948000;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_d805be0488c9567b30c2bfab.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921000;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_40b9eb2d464e18f9b3bc197b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.031738;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_bf8c92d16ea71e276e5b2bee.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.985352;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_71981ec4c60c34c2ef9a8e3c.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.122070;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_12c16e874883715cd903f249.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.973000;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_b74638133dfe0a262a05f1da.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.989000;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_0c9f188ba540f07b6290c959.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_8aec451096b36e2c2136bf31.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.732000;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_92afd6374c28305b53b3ff96.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.730469;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_e67112a11bdb8a7341fc42fa.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.959000;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:ff1b;src:url('chunks/assets/font_f55ace2d9ed831a01fb97b7b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.940918;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:ff1c;src:url('chunks/assets/font_a99be12dda6695ee941919ae.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.953125;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:ff1d;src:url('chunks/assets/font_beba2f105b4e5e002a9c23dc.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_2d09b2f7f6423fcf6d83ae11.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.941000;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:ff1f;src:url('chunks/assets/font_20ebb4d6841344c6d275b970.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.952000;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:ff20;src:url('chunks/assets/font_71321e216e88eada336117c3.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.959000;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;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-31.500010px;}
.va{vertical-align:-23.030416px;}
.v8{vertical-align:-21.169396px;}
.vb{vertical-align:-16.854332px;}
.v3{vertical-align:-2.574810px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.574810px;}
.v5{vertical-align:11.741900px;}
.v6{vertical-align:13.857165px;}
.v7{vertical-align:36.351496px;}
.v9{vertical-align:48.782117px;}
.v2{vertical-align:68.176802px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.007425px;}
.ls1{letter-spacing:0.031174px;}
.ls5{letter-spacing:0.064980px;}
.ls6{letter-spacing:0.088155px;}
.ls8{letter-spacing:107.972021px;}
.ls9{letter-spacing:107.972030px;}
.lsa{letter-spacing:107.974911px;}
.lsb{letter-spacing:107.977664px;}
.ls3{letter-spacing:107.986185px;}
.ls2{letter-spacing:108.000354px;}
.ls4{letter-spacing:108.000426px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(49,57,77),0 0.015em rgb(49,57,77),0.015em 0 rgb(49,57,77),0 -0.015em  rgb(49,57,77);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(49,57,77);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-57.600004px;}
.ws21{word-spacing:-43.200001px;}
.ws1d{word-spacing:-30.348001px;}
.ws20{word-spacing:-28.800002px;}
.ws2d{word-spacing:-27.168002px;}
.ws1c{word-spacing:-25.488001px;}
.ws7{word-spacing:-25.470001px;}
.ws4{word-spacing:-25.290001px;}
.ws5{word-spacing:-24.072000px;}
.wse{word-spacing:-23.772000px;}
.ws23{word-spacing:-22.498500px;}
.ws1b{word-spacing:-22.074002px;}
.ws1{word-spacing:-21.918002px;}
.ws2b{word-spacing:-21.606002px;}
.wsc{word-spacing:-20.982001px;}
.ws10{word-spacing:-20.748001px;}
.ws22{word-spacing:-20.376001px;}
.ws12{word-spacing:-19.872001px;}
.ws11{word-spacing:-19.824000px;}
.ws16{word-spacing:-19.368001px;}
.ws8{word-spacing:-18.864001px;}
.ws1f{word-spacing:-18.546001px;}
.ws6{word-spacing:-17.451001px;}
.wsa{word-spacing:-17.292001px;}
.ws3{word-spacing:-15.234116px;}
.ws17{word-spacing:-14.526000px;}
.ws24{word-spacing:-13.488001px;}
.ws28{word-spacing:-12.576001px;}
.ws1a{word-spacing:-7.623414px;}
.ws19{word-spacing:-0.033947px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:156.355313px;}
.ws25{word-spacing:314.335934px;}
.ws1e{word-spacing:380.164684px;}
.ws27{word-spacing:398.419938px;}
.ws2{word-spacing:443.640940px;}
.ws26{word-spacing:446.995941px;}
.wsd{word-spacing:454.214672px;}
.ws14{word-spacing:544.240277px;}
.ws15{word-spacing:558.424278px;}
.ws18{word-spacing:583.802434px;}
.wsf{word-spacing:592.253511px;}
.ws13{word-spacing:616.888505px;}
.ws2a{word-spacing:622.467454px;}
.ws29{word-spacing:649.502870px;}
.ws2c{word-spacing:782.815409px;}
._9{margin-left:-2269.017037px;}
._1e{margin-left:-1787.129215px;}
._2c{margin-left:-1557.725469px;}
._2f{margin-left:-1416.258088px;}
._a{margin-left:-1250.312472px;}
._b{margin-left:-853.297370px;}
._20{margin-left:-232.242359px;}
._21{margin-left:-231.233189px;}
._5{margin-left:-8.317610px;}
._4{margin-left:-7.104000px;}
._3{margin-left:-5.280000px;}
._1{margin-left:-3.528000px;}
._6{margin-left:-2.166000px;}
._0{margin-left:-1.045704px;}
._2{width:1.008000px;}
._7{width:2.034000px;}
._8{width:3.074250px;}
._10{width:86.400003px;}
._1b{width:94.773991px;}
._17{width:98.128443px;}
._2e{width:107.972021px;}
._13{width:112.894489px;}
._24{width:125.641923px;}
._16{width:128.127601px;}
._25{width:132.241924px;}
._15{width:244.720268px;}
._1d{width:291.558024px;}
._27{width:347.412042px;}
._f{width:377.775675px;}
._28{width:382.699937px;}
._2d{width:409.566733px;}
._30{width:433.524020px;}
._18{width:448.192274px;}
._31{width:463.189740px;}
._c{width:465.857974px;}
._1c{width:475.389021px;}
._29{width:485.386374px;}
._14{width:507.448501px;}
._e{width:585.620698px;}
._1a{width:628.166106px;}
._19{width:652.838626px;}
._2b{width:678.773369px;}
._12{width:717.982463px;}
._22{width:745.620041px;}
._2a{width:841.761259px;}
._26{width:1011.700375px;}
._23{width:1077.394378px;}
._d{width:1403.493021px;}
._11{width:2494.995409px;}
._1f{width:2657.874119px;}
.fc17{color:transparent;}
.fc14{color:rgb(220,162,104);}
.fc13{color:rgb(55,151,220);}
.fc11{color:rgb(240,133,33);}
.fcd{color:rgb(55,71,79);}
.fc15{color:rgb(220,59,59);}
.fce{color:rgb(47,158,210);}
.fc0{color:rgb(67,67,67);}
.fc2{color:rgb(49,49,49);}
.fc3{color:rgb(0,0,0);}
.fcb{color:rgb(255,255,255);}
.fc10{color:rgb(62,66,74);}
.fc1{color:rgb(138,34,131);}
.fc18{color:rgb(63,3,59);}
.fc5{color:rgb(255,0,0);}
.fc6{color:rgb(106,168,79);}
.fc7{color:rgb(49,57,77);}
.fc16{color:rgb(120,59,220);}
.fc12{color:rgb(93,179,45);}
.fc4{color:rgb(102,102,102);}
.fc8{color:rgb(184,87,65);}
.fc9{color:rgb(0,147,132);}
.fcc{color:rgb(0,189,170);}
.fcf{color:rgb(89,89,89);}
.fca{color:rgb(0,47,74);}
.fs15{font-size:19.398002px;}
.fs16{font-size:21.822599px;}
.fs14{font-size:29.097001px;}
.fs13{font-size:33.946802px;}
.fs18{font-size:42.000000px;}
.fs1{font-size:47.531999px;}
.fs17{font-size:48.000003px;}
.fs9{font-size:53.830799px;}
.fs11{font-size:54.000002px;}
.fs8{font-size:56.000003px;}
.fs10{font-size:60.000000px;}
.fsc{font-size:63.000002px;}
.fs0{font-size:66.000004px;}
.fse{font-size:72.000002px;}
.fs6{font-size:78.000005px;}
.fs19{font-size:79.500000px;}
.fs1b{font-size:81.600010px;}
.fs4{font-size:84.000000px;}
.fsa{font-size:90.000003px;}
.fs1a{font-size:91.800012px;}
.fs3{font-size:96.000006px;}
.fsb{font-size:102.000000px;}
.fsf{font-size:108.000003px;}
.fs5{font-size:114.000007px;}
.fsd{font-size:126.000004px;}
.fs12{font-size:129.599991px;}
.fs7{font-size:144.000005px;}
.fs2{font-size:167.999999px;}
.y0{bottom:0.000000px;}
.y14f{bottom:9.211335px;}
.y160{bottom:12.142185px;}
.y8{bottom:12.505391px;}
.y1{bottom:14.080961px;}
.y2{bottom:15.220106px;}
.y12d{bottom:16.773191px;}
.yd7{bottom:39.978961px;}
.yce{bottom:43.159574px;}
.ydb{bottom:43.919734px;}
.ye0{bottom:44.029152px;}
.y14e{bottom:44.491336px;}
.y115{bottom:49.885242px;}
.yc7{bottom:49.892461px;}
.yfb{bottom:50.118318px;}
.y29{bottom:50.204066px;}
.y7b{bottom:50.675495px;}
.ycd{bottom:51.081847px;}
.y5c{bottom:51.968142px;}
.y12c{bottom:52.053192px;}
.yca{bottom:53.318885px;}
.y1b6{bottom:53.444775px;}
.y180{bottom:58.022625px;}
.y182{bottom:58.469307px;}
.y14d{bottom:61.771336px;}
.y9d{bottom:62.009848px;}
.y1eb{bottom:62.314048px;}
.y1b4{bottom:62.375702px;}
.y114{bottom:62.685408px;}
.ya9{bottom:62.763996px;}
.yd6{bottom:63.378961px;}
.ya5{bottom:63.424581px;}
.y4b{bottom:65.707903px;}
.y111{bottom:66.323370px;}
.ye7{bottom:66.564007px;}
.y6{bottom:66.688657px;}
.y10f{bottom:68.785241px;}
.ye5{bottom:69.025868px;}
.y1a0{bottom:69.027980px;}
.y12b{bottom:69.333193px;}
.yc6{bottom:69.692462px;}
.y51{bottom:70.981509px;}
.y84{bottom:72.840441px;}
.y5b{bottom:73.568132px;}
.y87{bottom:74.423167px;}
.y28{bottom:77.114064px;}
.y1f6{bottom:77.640817px;}
.y169{bottom:77.709707px;}
.y14c{bottom:79.051337px;}
.yc{bottom:80.094538px;}
.y113{bottom:84.285411px;}
.y38{bottom:84.983226px;}
.y110{bottom:85.223369px;}
.ye6{bottom:85.464007px;}
.y181{bottom:85.469306px;}
.y1ea{bottom:85.714037px;}
.y19c{bottom:86.348312px;}
.y7e{bottom:86.915683px;}
.y4a{bottom:87.307897px;}
.y1b3{bottom:87.575701px;}
.y10e{bottom:87.685241px;}
.ye4{bottom:87.925867px;}
.ya8{bottom:87.963994px;}
.y76{bottom:90.290683px;}
.y12a{bottom:91.905542px;}
.y14b{bottom:92.072312px;}
.y50{bottom:92.581503px;}
.y19f{bottom:93.777981px;}
.y1b5{bottom:94.688896px;}
.yf{bottom:94.877455px;}
.y5a{bottom:95.168126px;}
.y7f{bottom:95.915684px;}
.y1fb{bottom:98.954815px;}
.y62{bottom:102.716534px;}
.y67{bottom:102.717018px;}
.y168{bottom:102.909701px;}
.yb{bottom:103.494539px;}
.y65{bottom:104.116124px;}
.y12{bottom:104.778551px;}
.y112{bottom:105.885411px;}
.y1f5{bottom:106.440813px;}
.y1b7{bottom:107.114026px;}
.y7d{bottom:107.165684px;}
.y49{bottom:108.907893px;}
.y1e9{bottom:109.114015px;}
.y75{bottom:110.540684px;}
.y14a{bottom:111.872313px;}
.ya4{bottom:112.274163px;}
.y4f{bottom:114.181499px;}
.y7a{bottom:116.165684px;}
.y59{bottom:116.768122px;}
.y15d{bottom:117.417112px;}
.y19e{bottom:118.527982px;}
.y192{bottom:120.417172px;}
.y129{bottom:120.885554px;}
.y13d{bottom:122.145554px;}
.y2c{bottom:122.313317px;}
.y152{bottom:124.247462px;}
.y11{bottom:125.658549px;}
.y1fa{bottom:125.864827px;}
.y167{bottom:128.109699px;}
.y48{bottom:130.507891px;}
.y74{bottom:130.790685px;}
.y149{bottom:131.672314px;}
.y1e8{bottom:132.514016px;}
.y4e{bottom:135.781498px;}
.y79{bottom:136.415685px;}
.y1ae{bottom:137.069872px;}
.y27{bottom:137.228578px;}
.y58{bottom:138.368120px;}
.y10d{bottom:138.433305px;}
.y1d0{bottom:139.125473px;}
.y1f4{bottom:139.560816px;}
.yba{bottom:142.237613px;}
.y19d{bottom:143.277986px;}
.y7c{bottom:143.840685px;}
.y13c{bottom:145.545533px;}
.y2b{bottom:149.223315px;}
.y128{bottom:149.865567px;}
.y1b2{bottom:150.542085px;}
.yb9{bottom:151.237612px;}
.y47{bottom:152.107894px;}
.y1f9{bottom:152.774828px;}
.y93{bottom:153.587607px;}
.y8f{bottom:154.317608px;}
.y15c{bottom:154.677113px;}
.ya3{bottom:155.469439px;}
.y1e7{bottom:155.914017px;}
.y15f{bottom:156.937906px;}
.y4d{bottom:157.381501px;}
.y191{bottom:157.677162px;}
.y57{bottom:159.968123px;}
.y1a5{bottom:166.038117px;}
.y13b{bottom:168.945522px;}
.yae{bottom:170.158712px;}
.y148{bottom:173.068152px;}
.y73{bottom:173.090686px;}
.y46{bottom:173.707895px;}
.y1b1{bottom:173.942086px;}
.y1ad{bottom:174.329907px;}
.y10c{bottom:174.433248px;}
.y1c4{bottom:175.829881px;}
.y92{bottom:176.987607px;}
.ya2{bottom:177.069440px;}
.y1db{bottom:177.604017px;}
.y8e{bottom:177.717609px;}
.y15{bottom:178.377250px;}
.y10{bottom:178.816149px;}
.y4c{bottom:178.981501px;}
.y1e6{bottom:179.313984px;}
.y1f8{bottom:179.684829px;}
.y37{bottom:180.092846px;}
.y31{bottom:180.093026px;}
.y173{bottom:181.162937px;}
.y56{bottom:181.568124px;}
.y15e{bottom:182.137905px;}
.y8d{bottom:184.073409px;}
.y1a4{bottom:189.438118px;}
.yd2{bottom:190.856529px;}
.y13a{bottom:192.345500px;}
.y147{bottom:192.868153px;}
.y1cf{bottom:193.870101px;}
.y190{bottom:194.937197px;}
.y116{bottom:196.244562px;}
.y17a{bottom:196.437171px;}
.y127{bottom:196.845546px;}
.ybb{bottom:198.184844px;}
.y36{bottom:198.992846px;}
.y30{bottom:198.993026px;}
.ycb{bottom:199.241121px;}
.y91{bottom:200.387608px;}
.y1f{bottom:201.927193px;}
.y1e5{bottom:202.713973px;}
.y1da{bottom:204.514018px;}
.y1af{bottom:205.034410px;}
.y8c{bottom:207.473410px;}
.y172{bottom:208.162938px;}
.y1f7{bottom:208.484821px;}
.y1ac{bottom:211.589897px;}
.y1c3{bottom:213.089894px;}
.yd1{bottom:214.256530px;}
.y2a{bottom:215.572602px;}
.y139{bottom:215.745479px;}
.y40{bottom:216.189067px;}
.y1ce{bottom:217.707501px;}
.ya1{bottom:220.333218px;}
.yc5{bottom:220.770098px;}
.y86{bottom:222.360022px;}
.y1e4{bottom:226.113997px;}
.y26{bottom:230.205545px;}
.y1e{bottom:230.277194px;}
.y1d9{bottom:231.424030px;}
.y15b{bottom:232.197153px;}
.y18f{bottom:232.197187px;}
.y179{bottom:233.697172px;}
.y5{bottom:233.849767px;}
.yf3{bottom:235.423529px;}
.yc4{bottom:236.970101px;}
.y163{bottom:237.106001px;}
.yd0{bottom:237.656531px;}
.y146{bottom:237.868154px;}
.y138{bottom:239.145491px;}
.y126{bottom:243.825536px;}
.y85{bottom:247.560021px;}
.ydf{bottom:248.085101px;}
.y83{bottom:248.306112px;}
.y1ab{bottom:248.849899px;}
.y1e3{bottom:249.513997px;}
.y1c2{bottom:250.349884px;}
.yf9{bottom:251.041685px;}
.y1f3{bottom:252.124852px;}
.y1a3{bottom:252.871177px;}
.y25{bottom:257.115544px;}
.y166{bottom:257.180537px;}
.y1d8{bottom:258.334031px;}
.y1d{bottom:258.627195px;}
.y3f{bottom:261.094346px;}
.yc0{bottom:261.689246px;}
.y171{bottom:262.162940px;}
.y137{bottom:262.545491px;}
.y4{bottom:263.099768px;}
.y90{bottom:263.256874px;}
.y14{bottom:263.277954px;}
.ya0{bottom:263.597006px;}
.y6e{bottom:263.704118px;}
.y1bd{bottom:265.775918px;}
.y9c{bottom:266.890050px;}
.yb8{bottom:267.719240px;}
.y11a{bottom:268.165274px;}
.y11c{bottom:268.166748px;}
.y11e{bottom:268.838496px;}
.y72{bottom:269.327644px;}
.y15a{bottom:269.457154px;}
.yda{bottom:269.457165px;}
.y108{bottom:269.485688px;}
.y19b{bottom:269.648170px;}
.ybf{bottom:270.068390px;}
.y178{bottom:270.957162px;}
.y1cd{bottom:272.452084px;}
.y125{bottom:272.805537px;}
.y1e2{bottom:272.914009px;}
.y118{bottom:273.011772px;}
.yb7{bottom:273.344240px;}
.yf2{bottom:274.318345px;}
.y162{bottom:274.366013px;}
.yf8{bottom:277.367676px;}
.ycf{bottom:278.390972px;}
.y105{bottom:278.678412px;}
.y1f2{bottom:279.034853px;}
.y145{bottom:279.262272px;}
.y1fc{bottom:281.359700px;}
.yef{bottom:282.572222px;}
.y1c5{bottom:283.690846px;}
.y6d{bottom:283.954118px;}
.yfa{bottom:284.416235px;}
.y1d7{bottom:285.244021px;}
.y136{bottom:285.945492px;}
.y2f{bottom:286.051670px;}
.ye3{bottom:286.841217px;}
.y1c{bottom:286.977196px;}
.y1aa{bottom:287.609885px;}
.y170{bottom:289.162941px;}
.y71{bottom:289.577645px;}
.y6a{bottom:289.578095px;}
.y1a2{bottom:290.131179px;}
.y1bc{bottom:290.975919px;}
.y5f{bottom:291.307647px;}
.yb2{bottom:293.971528px;}
.ybd{bottom:294.287375px;}
.y119{bottom:295.075273px;}
.y11b{bottom:295.076746px;}
.y61{bottom:295.081269px;}
.y117{bottom:295.669273px;}
.y1cc{bottom:295.708074px;}
.y11d{bottom:295.748495px;}
.y1e1{bottom:296.314010px;}
.ya{bottom:297.060110px;}
.y144{bottom:299.062273px;}
.y124{bottom:301.785526px;}
.yb4{bottom:302.442830px;}
.y9b{bottom:302.710051px;}
.yb1{bottom:302.971529px;}
.yf7{bottom:303.217871px;}
.ybc{bottom:303.287376px;}
.y82{bottom:304.065373px;}
.y6c{bottom:304.204119px;}
.y1f1{bottom:305.944854px;}
.y19a{bottom:306.113852px;}
.y17b{bottom:306.561489px;}
.y159{bottom:306.717144px;}
.yd9{bottom:306.717167px;}
.yb3{bottom:308.067830px;}
.y177{bottom:308.217163px;}
.y135{bottom:309.345504px;}
.y2e{bottom:309.451670px;}
.y18e{bottom:309.717170px;}
.y70{bottom:309.827645px;}
.y69{bottom:309.828095px;}
.y24{bottom:309.870319px;}
.ye2{bottom:310.241218px;}
.yb6{bottom:310.286080px;}
.yd{bottom:310.487188px;}
.y161{bottom:311.626014px;}
.y1d6{bottom:312.154022px;}
.y45{bottom:312.783295px;}
.y3e{bottom:312.783644px;}
.y63{bottom:314.480286px;}
.y5e{bottom:314.707648px;}
.yb5{bottom:315.911080px;}
.y16f{bottom:316.162941px;}
.y1b{bottom:316.827182px;}
.y16a{bottom:317.795481px;}
.y64{bottom:317.861192px;}
.y60{bottom:318.481270px;}
.y143{bottom:318.862273px;}
.y1cb{bottom:318.964075px;}
.y1e0{bottom:319.714011px;}
.y9{bottom:320.460111px;}
.y66{bottom:321.859217px;}
.y10a{bottom:323.370363px;}
.y81{bottom:324.315373px;}
.y3{bottom:326.457711px;}
.yf5{bottom:328.365464px;}
.yee{bottom:328.755080px;}
.y9a{bottom:328.990052px;}
.y199{bottom:329.513852px;}
.y123{bottom:330.765527px;}
.y10b{bottom:332.076395px;}
.y134{bottom:332.745505px;}
.y1f0{bottom:332.854844px;}
.ye1{bottom:333.641219px;}
.y44{bottom:334.383291px;}
.y3d{bottom:334.383640px;}
.y109{bottom:335.745364px;}
.y183{bottom:337.763916px;}
.y1d5{bottom:339.064023px;}
.y1bb{bottom:341.375898px;}
.y35{bottom:341.774251px;}
.y1ca{bottom:342.801475px;}
.y33{bottom:343.085810px;}
.y1df{bottom:343.114023px;}
.y16e{bottom:343.162942px;}
.yed{bottom:343.380082px;}
.y55{bottom:343.383292px;}
.y158{bottom:343.977145px;}
.y8b{bottom:345.477153px;}
.yad{bottom:345.744679px;}
.y6f{bottom:346.502647px;}
.y68{bottom:346.503097px;}
.y6b{bottom:346.504120px;}
.y1a{bottom:346.677168px;}
.y18d{bottom:346.977160px;}
.y198{bottom:352.913853px;}
.ybe{bottom:353.519154px;}
.yf6{bottom:353.573339px;}
.y99{bottom:353.830042px;}
.y13{bottom:354.388445px;}
.y43{bottom:355.983290px;}
.y3c{bottom:355.983638px;}
.y133{bottom:356.145506px;}
.y17d{bottom:358.007766px;}
.y17f{bottom:358.040244px;}
.ycc{bottom:358.518693px;}
.y156{bottom:358.907831px;}
.y1ef{bottom:359.764845px;}
.y154{bottom:359.876568px;}
.y142{bottom:360.258123px;}
.y34{bottom:360.674251px;}
.y80{bottom:360.990375px;}
.y32{bottom:361.985810px;}
.y54{bottom:364.983290px;}
.y1a9{bottom:365.129868px;}
.y1d4{bottom:365.974035px;}
.y1de{bottom:366.514024px;}
.y2d{bottom:367.258618px;}
.yf1{bottom:368.115425px;}
.y197{bottom:376.313854px;}
.y19{bottom:376.527176px;}
.y17c{bottom:376.907765px;}
.y155{bottom:376.907829px;}
.y17e{bottom:376.940244px;}
.y18b{bottom:377.125631px;}
.y42{bottom:377.583293px;}
.y3b{bottom:377.583641px;}
.y122{bottom:377.745518px;}
.y153{bottom:377.876567px;}
.yd5{bottom:379.173716px;}
.y132{bottom:379.545506px;}
.y141{bottom:380.058124px;}
.y23{bottom:381.290710px;}
.y8a{bottom:382.737154px;}
.yb0{bottom:383.741956px;}
.yec{bottom:384.067923px;}
.yd8{bottom:384.237150px;}
.y53{bottom:386.583293px;}
.y1ee{bottom:386.674845px;}
.yff{bottom:389.365702px;}
.y98{bottom:389.650043px;}
.y1dd{bottom:389.914024px;}
.y1ba{bottom:391.775888px;}
.y1c1{bottom:391.780163px;}
.yfd{bottom:391.827562px;}
.y1d3{bottom:392.884036px;}
.y106{bottom:394.570077px;}
.y11f{bottom:394.934866px;}
.yc3{bottom:395.868863px;}
.y176{bottom:397.162793px;}
.y16d{bottom:397.162944px;}
.y103{bottom:397.165403px;}
.y1c9{bottom:397.546081px;}
.yac{bottom:397.907937px;}
.yeb{bottom:398.692925px;}
.y41{bottom:399.183293px;}
.y3a{bottom:399.183642px;}
.y196{bottom:399.713866px;}
.ya6{bottom:401.374681px;}
.y18a{bottom:402.325627px;}
.y1a8{bottom:402.389881px;}
.y131{bottom:402.945518px;}
.y186{bottom:404.520710px;}
.yc2{bottom:404.868864px;}
.y18{bottom:404.877166px;}
.y52{bottom:408.183294px;}
.y22{bottom:408.200709px;}
.yfe{bottom:408.265701px;}
.yfc{bottom:410.727561px;}
.y104{bottom:411.420216px;}
.yc9{bottom:411.860024px;}
.yc1{bottom:413.868865px;}
.y97{bottom:414.670044px;}
.yd4{bottom:416.433729px;}
.y1b9{bottom:416.975883px;}
.y1c0{bottom:416.980158px;}
.y1d2{bottom:419.794032px;}
.y1c8{bottom:420.802082px;}
.yf4{bottom:421.306509px;}
.y140{bottom:421.454003px;}
.y89{bottom:421.497163px;}
.y195{bottom:423.113855px;}
.y78{bottom:423.303411px;}
.y175{bottom:424.162798px;}
.y16c{bottom:424.162948px;}
.y102{bottom:424.165404px;}
.y121{bottom:424.725519px;}
.y130{bottom:426.345508px;}
.y189{bottom:427.525633px;}
.ye9{bottom:428.009338px;}
.y185{bottom:429.720704px;}
.y1b0{bottom:430.256325px;}
.yab{bottom:430.307945px;}
.y1ed{bottom:433.474842px;}
.y17{bottom:434.727170px;}
.y5d{bottom:435.059163px;}
.y9f{bottom:436.385785px;}
.y96{bottom:436.630038px;}
.y150{bottom:437.318646px;}
.y1dc{bottom:437.794028px;}
.y1a7{bottom:439.649882px;}
.y13f{bottom:441.254004px;}
.y1bf{bottom:442.180165px;}
.ye8{bottom:442.409338px;}
.y151{bottom:443.076255px;}
.y1c7{bottom:444.639481px;}
.y194{bottom:446.513856px;}
.yea{bottom:447.816280px;}
.yc8{bottom:449.120026px;}
.y1a1{bottom:449.646137px;}
.y12f{bottom:449.745509px;}
.y174{bottom:451.162796px;}
.y16b{bottom:451.162947px;}
.y101{bottom:451.165408px;}
.y188{bottom:452.725627px;}
.yd3{bottom:453.693730px;}
.y184{bottom:454.920702px;}
.y157{bottom:456.599875px;}
.y9e{bottom:457.985785px;}
.y88{bottom:458.757164px;}
.y77{bottom:460.788419px;}
.y21{bottom:461.244850px;}
.yf0{bottom:461.912501px;}
.ya7{bottom:462.214010px;}
.yaa{bottom:462.707950px;}
.y16{bottom:463.077165px;}
.y107{bottom:466.457722px;}
.y1d1{bottom:466.594027px;}
.y1ec{bottom:466.594837px;}
.y1b8{bottom:467.375884px;}
.y1be{bottom:467.380159px;}
.y95{bottom:467.590034px;}
.y39{bottom:468.094358px;}
.y18c{bottom:468.521098px;}
.y193{bottom:469.913857px;}
.ydd{bottom:471.274513px;}
.y120{bottom:471.705512px;}
.y12e{bottom:473.145509px;}
.yde{bottom:477.685482px;}
.y187{bottom:477.925626px;}
.y100{bottom:478.165407px;}
.ydc{bottom:481.086638px;}
.y1c6{bottom:486.064236px;}
.y13e{bottom:486.254005px;}
.y7{bottom:525.175629px;}
.ye{bottom:526.975628px;}
.yaf{bottom:529.149385px;}
.y20{bottom:531.309092px;}
.y1a6{bottom:534.765098px;}
.y94{bottom:543.710668px;}
.y164{bottom:560.794726px;}
.y165{bottom:565.008309px;}
.h2b{height:14.490308px;}
.h2d{height:16.301481px;}
.h2a{height:21.735460px;}
.h29{height:24.305910px;}
.h2c{height:26.232207px;}
.h38{height:33.694336px;}
.h36{height:35.085940px;}
.h3e{height:35.856002px;}
.h34{height:38.507815px;}
.h35{height:38.712106px;}
.h26{height:40.878001px;}
.hb{height:42.364839px;}
.h2{height:43.075874px;}
.h31{height:43.242188px;}
.h3c{height:43.500003px;}
.h3f{height:45.420000px;}
.hf{height:45.865724px;}
.h33{height:45.927248px;}
.h21{height:47.220000px;}
.h16{height:47.988283px;}
.h15{height:47.994223px;}
.h9{height:48.114260px;}
.h2e{height:48.937502px;}
.h18{height:49.302003px;}
.h30{height:49.962003px;}
.h1b{height:51.264002px;}
.h3d{height:51.942003px;}
.h12{height:53.784002px;}
.h25{height:54.504002px;}
.h22{height:55.582033px;}
.h24{height:55.584002px;}
.h14{height:56.628004px;}
.h39{height:56.664002px;}
.h43{height:56.786137px;}
.h42{height:56.862309px;}
.h20{height:57.761721px;}
.h10{height:59.046004px;}
.h1{height:59.812503px;}
.h5{height:61.154297px;}
.h27{height:61.236328px;}
.h1f{height:61.386004px;}
.h44{height:61.824000px;}
.h3b{height:62.566500px;}
.h3a{height:63.588000px;}
.h1c{height:66.108000px;}
.h37{height:68.130002px;}
.h17{height:69.504004px;}
.h4{height:69.984379px;}
.h7{height:70.687505px;}
.h13{height:70.830002px;}
.h19{height:71.712005px;}
.h2f{height:72.903170px;}
.h1a{height:73.848000px;}
.h46{height:73.950009px;}
.h47{height:75.552005px;}
.ha{height:76.125000px;}
.h23{height:76.125067px;}
.hc{height:81.562503px;}
.h32{height:82.278744px;}
.h45{height:83.193761px;}
.he{height:92.437500px;}
.h40{height:94.202117px;}
.h28{height:94.478899px;}
.h1d{height:97.875003px;}
.h11{height:99.162003px;}
.h6{height:103.312506px;}
.hd{height:104.976566px;}
.h41{height:122.472656px;}
.h8{height:130.500004px;}
.h1e{height:138.864307px;}
.h3{height:152.249999px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.xca{left:-972.891774px;}
.xd0{left:-936.891772px;}
.x0{left:0.000000px;}
.xef{left:17.850747px;}
.x9e{left:19.939961px;}
.xbe{left:23.019382px;}
.x63{left:26.514801px;}
.x97{left:29.231626px;}
.xe7{left:35.350396px;}
.x49{left:39.328155px;}
.xd8{left:41.146553px;}
.xdf{left:43.818820px;}
.x64{left:45.354492px;}
.x3{left:46.939963px;}
.x62{left:48.109606px;}
.x65{left:52.865269px;}
.x42{left:54.185600px;}
.xec{left:55.392879px;}
.x86{left:56.435897px;}
.xd9{left:57.631857px;}
.xce{left:58.739174px;}
.x17{left:60.349875px;}
.x48{left:62.506105px;}
.xd7{left:64.742589px;}
.x2{left:66.161014px;}
.x69{left:69.265516px;}
.x68{left:71.198474px;}
.xd6{left:74.271359px;}
.x82{left:75.324805px;}
.xd5{left:76.880342px;}
.x3e{left:83.182263px;}
.x83{left:86.016700px;}
.x39{left:88.707760px;}
.xe0{left:89.955022px;}
.x85{left:92.300043px;}
.xe3{left:95.197292px;}
.x76{left:96.495914px;}
.x7f{left:98.145473px;}
.x18{left:100.939964px;}
.xe4{left:103.519563px;}
.xe2{left:104.777317px;}
.x7d{left:106.066545px;}
.xc5{left:107.975334px;}
.x3f{left:112.423320px;}
.xee{left:115.623949px;}
.xd3{left:122.161425px;}
.x9a{left:131.115196px;}
.x31{left:147.415212px;}
.x30{left:153.098440px;}
.x70{left:160.781559px;}
.xba{left:163.692523px;}
.x71{left:164.870083px;}
.xb7{left:168.284377px;}
.xb6{left:171.884146px;}
.xd1{left:175.685795px;}
.x75{left:179.489177px;}
.xb8{left:186.541587px;}
.xb9{left:189.423666px;}
.xd4{left:197.902329px;}
.x4a{left:201.790401px;}
.x7{left:209.734290px;}
.x3b{left:212.252969px;}
.x4c{left:214.051213px;}
.xc{left:218.085905px;}
.x3a{left:221.252970px;}
.xa8{left:224.140569px;}
.x80{left:226.306087px;}
.x66{left:228.060512px;}
.x67{left:230.262566px;}
.x4b{left:232.295754px;}
.x89{left:234.179239px;}
.xb{left:242.801052px;}
.xcd{left:245.365163px;}
.xc6{left:247.620261px;}
.x15{left:253.105332px;}
.xe5{left:255.555132px;}
.x8{left:258.384068px;}
.xaf{left:267.310325px;}
.x8c{left:269.249510px;}
.x84{left:283.183738px;}
.xf0{left:284.584228px;}
.xc7{left:287.297267px;}
.xb0{left:297.926841px;}
.x40{left:300.078748px;}
.xc8{left:301.620261px;}
.x2a{left:314.086000px;}
.x87{left:315.320982px;}
.x41{left:317.623382px;}
.x2f{left:319.351204px;}
.x34{left:323.310138px;}
.x2e{left:325.918833px;}
.xb1{left:328.762012px;}
.xc2{left:332.816467px;}
.x88{left:333.935907px;}
.x77{left:346.138574px;}
.x8f{left:350.000910px;}
.x8a{left:359.842521px;}
.x78{left:368.026619px;}
.x6e{left:376.033265px;}
.x16{left:377.353565px;}
.xea{left:382.359556px;}
.x6c{left:386.827437px;}
.x8b{left:392.176471px;}
.x4f{left:395.417597px;}
.x2c{left:411.383960px;}
.xad{left:416.888968px;}
.x4e{left:419.614229px;}
.x29{left:422.769643px;}
.x2b{left:424.053943px;}
.xf{left:427.977115px;}
.x28{left:430.194753px;}
.x50{left:431.543466px;}
.x5d{left:436.804506px;}
.x6d{left:440.001233px;}
.x5e{left:441.560170px;}
.x4d{left:445.981694px;}
.x10{left:447.057204px;}
.xe{left:449.027643px;}
.xa1{left:452.274778px;}
.x3c{left:464.642734px;}
.xa9{left:466.772958px;}
.x20{left:473.500875px;}
.xaa{left:481.161239px;}
.x5c{left:485.779636px;}
.x44{left:499.580026px;}
.x43{left:504.954466px;}
.xa3{left:506.516866px;}
.x8e{left:516.296717px;}
.x8d{left:519.428213px;}
.x1a{left:524.827953px;}
.x1e{left:526.495252px;}
.x9d{left:531.877000px;}
.x2d{left:534.465452px;}
.x1d{left:538.888500px;}
.x38{left:541.020714px;}
.xc3{left:543.457817px;}
.x37{left:545.834923px;}
.x7a{left:547.394631px;}
.xc1{left:553.541280px;}
.xbf{left:556.890462px;}
.xed{left:558.178837px;}
.x21{left:568.168522px;}
.xc0{left:569.310506px;}
.x1c{left:572.146702px;}
.x91{left:574.359226px;}
.x1b{left:575.681115px;}
.x92{left:580.297440px;}
.x1f{left:582.084660px;}
.x90{left:584.181253px;}
.xe1{left:585.277556px;}
.xab{left:586.362465px;}
.x79{left:592.862736px;}
.x60{left:603.938291px;}
.xe9{left:621.777924px;}
.x19{left:625.771708px;}
.x32{left:626.927616px;}
.x5f{left:631.407024px;}
.x13{left:636.304497px;}
.xa5{left:640.241606px;}
.xc9{left:647.108278px;}
.x61{left:651.218608px;}
.x51{left:653.191465px;}
.x53{left:657.026774px;}
.x6b{left:659.140907px;}
.xbc{left:664.365320px;}
.x14{left:666.367048px;}
.x52{left:672.410390px;}
.x81{left:675.552622px;}
.x9{left:678.984362px;}
.x95{left:680.043678px;}
.xbb{left:681.434229px;}
.xcf{left:683.108279px;}
.x72{left:686.477696px;}
.x3d{left:689.642741px;}
.x47{left:691.140211px;}
.x6{left:696.156547px;}
.xd{left:697.222569px;}
.x46{left:699.970459px;}
.xcb{left:702.596497px;}
.xa{left:710.590725px;}
.x12{left:721.784723px;}
.x73{left:725.252243px;}
.x6a{left:729.758709px;}
.xd2{left:742.246044px;}
.xeb{left:749.613736px;}
.xa7{left:755.054799px;}
.xe8{left:757.291898px;}
.x7e{left:758.920862px;}
.xa6{left:760.730338px;}
.x7c{left:767.559729px;}
.x23{left:770.069854px;}
.x7b{left:776.955735px;}
.x24{left:778.203402px;}
.xbd{left:784.854051px;}
.x26{left:788.682659px;}
.xa0{left:790.848475px;}
.x4{left:794.755038px;}
.xdb{left:800.932121px;}
.xa2{left:803.616146px;}
.x27{left:807.796097px;}
.x33{left:810.207703px;}
.xe6{left:825.767115px;}
.xae{left:828.892669px;}
.xda{left:830.317932px;}
.xc4{left:850.574266px;}
.x5a{left:851.752275px;}
.x59{left:854.563599px;}
.x58{left:856.454389px;}
.x55{left:858.299250px;}
.xac{left:865.537580px;}
.xb3{left:870.761764px;}
.x56{left:877.441708px;}
.xb2{left:887.830673px;}
.x22{left:889.274897px;}
.x54{left:890.310209px;}
.x93{left:894.744628px;}
.x94{left:899.635743px;}
.x25{left:901.283541px;}
.x5b{left:905.050739px;}
.x99{left:907.348788px;}
.x57{left:910.649448px;}
.x45{left:920.269958px;}
.xdc{left:921.658968px;}
.x98{left:923.284978px;}
.x36{left:925.020975px;}
.xdd{left:926.911530px;}
.x35{left:930.696513px;}
.x11{left:941.108117px;}
.xa4{left:954.197851px;}
.xf1{left:961.958393px;}
.x9c{left:982.237581px;}
.xb5{left:985.575013px;}
.xb4{left:991.250551px;}
.x9f{left:1012.602682px;}
.xcc{left:1013.673454px;}
.x6f{left:1015.951864px;}
.x96{left:1017.022636px;}
.x74{left:1019.647236px;}
.x5{left:1023.004469px;}
.x1{left:1026.353651px;}
.xde{left:1031.751629px;}
.x9b{left:1038.512351px;}
@media print{
.v1{vertical-align:-28.000009pt;}
.va{vertical-align:-20.471481pt;}
.v8{vertical-align:-18.817241pt;}
.vb{vertical-align:-14.981628pt;}
.v3{vertical-align:-2.288720pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.288720pt;}
.v5{vertical-align:10.437244pt;}
.v6{vertical-align:12.317480pt;}
.v7{vertical-align:32.312441pt;}
.v9{vertical-align:43.361881pt;}
.v2{vertical-align:60.601602pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.006600pt;}
.ls1{letter-spacing:0.027711pt;}
.ls5{letter-spacing:0.057760pt;}
.ls6{letter-spacing:0.078360pt;}
.ls8{letter-spacing:95.975130pt;}
.ls9{letter-spacing:95.975138pt;}
.lsa{letter-spacing:95.977698pt;}
.lsb{letter-spacing:95.980146pt;}
.ls3{letter-spacing:95.987720pt;}
.ls2{letter-spacing:96.000315pt;}
.ls4{letter-spacing:96.000379pt;}
.wsb{word-spacing:-51.200003pt;}
.ws21{word-spacing:-38.400001pt;}
.ws1d{word-spacing:-26.976001pt;}
.ws20{word-spacing:-25.600002pt;}
.ws2d{word-spacing:-24.149335pt;}
.ws1c{word-spacing:-22.656001pt;}
.ws7{word-spacing:-22.640001pt;}
.ws4{word-spacing:-22.480001pt;}
.ws5{word-spacing:-21.397333pt;}
.wse{word-spacing:-21.130667pt;}
.ws23{word-spacing:-19.998667pt;}
.ws1b{word-spacing:-19.621335pt;}
.ws1{word-spacing:-19.482668pt;}
.ws2b{word-spacing:-19.205335pt;}
.wsc{word-spacing:-18.650668pt;}
.ws10{word-spacing:-18.442668pt;}
.ws22{word-spacing:-18.112001pt;}
.ws12{word-spacing:-17.664001pt;}
.ws11{word-spacing:-17.621333pt;}
.ws16{word-spacing:-17.216001pt;}
.ws8{word-spacing:-16.768001pt;}
.ws1f{word-spacing:-16.485334pt;}
.ws6{word-spacing:-15.512000pt;}
.wsa{word-spacing:-15.370668pt;}
.ws3{word-spacing:-13.541437pt;}
.ws17{word-spacing:-12.912000pt;}
.ws24{word-spacing:-11.989334pt;}
.ws28{word-spacing:-11.178667pt;}
.ws1a{word-spacing:-6.776368pt;}
.ws19{word-spacing:-0.030175pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:138.982500pt;}
.ws25{word-spacing:279.409719pt;}
.ws1e{word-spacing:337.924164pt;}
.ws27{word-spacing:354.151056pt;}
.ws2{word-spacing:394.347502pt;}
.ws26{word-spacing:397.329725pt;}
.wsd{word-spacing:403.746375pt;}
.ws14{word-spacing:483.769135pt;}
.ws15{word-spacing:496.377136pt;}
.ws18{word-spacing:518.935497pt;}
.wsf{word-spacing:526.447565pt;}
.ws13{word-spacing:548.345338pt;}
.ws2a{word-spacing:553.304404pt;}
.ws29{word-spacing:577.335885pt;}
.ws2c{word-spacing:695.835919pt;}
._9{margin-left:-2016.904033pt;}
._1e{margin-left:-1588.559303pt;}
._2c{margin-left:-1384.644861pt;}
._2f{margin-left:-1258.896079pt;}
._a{margin-left:-1111.388864pt;}
._b{margin-left:-758.486551pt;}
._20{margin-left:-206.437652pt;}
._21{margin-left:-205.540612pt;}
._5{margin-left:-7.393431pt;}
._4{margin-left:-6.314667pt;}
._3{margin-left:-4.693334pt;}
._1{margin-left:-3.136000pt;}
._6{margin-left:-1.925333pt;}
._0{margin-left:-0.929515pt;}
._2{width:0.896000pt;}
._7{width:1.808000pt;}
._8{width:2.732667pt;}
._10{width:76.800002pt;}
._1b{width:84.243547pt;}
._17{width:87.225283pt;}
._2e{width:95.975130pt;}
._13{width:100.350657pt;}
._24{width:111.681710pt;}
._16{width:113.891201pt;}
._25{width:117.548377pt;}
._15{width:217.529127pt;}
._1d{width:259.162688pt;}
._27{width:308.810704pt;}
._f{width:335.800600pt;}
._28{width:340.177722pt;}
._2d{width:364.059318pt;}
._30{width:385.354685pt;}
._18{width:398.393133pt;}
._31{width:411.724214pt;}
._c{width:414.095977pt;}
._1c{width:422.568019pt;}
._29{width:431.454554pt;}
._14{width:451.065334pt;}
._e{width:520.551731pt;}
._1a{width:558.369872pt;}
._19{width:580.301000pt;}
._2b{width:603.354106pt;}
._12{width:638.206634pt;}
._22{width:662.773370pt;}
._2a{width:748.232230pt;}
._26{width:899.289222pt;}
._23{width:957.683892pt;}
._d{width:1247.549352pt;}
._11{width:2217.773697pt;}
._1f{width:2362.554772pt;}
.fs15{font-size:17.242669pt;}
.fs16{font-size:19.397866pt;}
.fs14{font-size:25.864001pt;}
.fs13{font-size:30.174935pt;}
.fs18{font-size:37.333333pt;}
.fs1{font-size:42.250665pt;}
.fs17{font-size:42.666669pt;}
.fs9{font-size:47.849600pt;}
.fs11{font-size:48.000002pt;}
.fs8{font-size:49.777780pt;}
.fs10{font-size:53.333334pt;}
.fsc{font-size:56.000002pt;}
.fs0{font-size:58.666670pt;}
.fse{font-size:64.000002pt;}
.fs6{font-size:69.333338pt;}
.fs19{font-size:70.666666pt;}
.fs1b{font-size:72.533342pt;}
.fs4{font-size:74.666666pt;}
.fsa{font-size:80.000003pt;}
.fs1a{font-size:81.600011pt;}
.fs3{font-size:85.333339pt;}
.fsb{font-size:90.666667pt;}
.fsf{font-size:96.000003pt;}
.fs5{font-size:101.333339pt;}
.fsd{font-size:112.000004pt;}
.fs12{font-size:115.199992pt;}
.fs7{font-size:128.000004pt;}
.fs2{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y14f{bottom:8.187853pt;}
.y160{bottom:10.793053pt;}
.y8{bottom:11.115903pt;}
.y1{bottom:12.516410pt;}
.y2{bottom:13.528983pt;}
.y12d{bottom:14.909503pt;}
.yd7{bottom:35.536854pt;}
.yce{bottom:38.364066pt;}
.ydb{bottom:39.039764pt;}
.ye0{bottom:39.137024pt;}
.y14e{bottom:39.547854pt;}
.y115{bottom:44.342437pt;}
.yc7{bottom:44.348854pt;}
.yfb{bottom:44.549616pt;}
.y29{bottom:44.625836pt;}
.y7b{bottom:45.044884pt;}
.ycd{bottom:45.406086pt;}
.y5c{bottom:46.193904pt;}
.y12c{bottom:46.269504pt;}
.yca{bottom:47.394564pt;}
.y1b6{bottom:47.506466pt;}
.y180{bottom:51.575666pt;}
.y182{bottom:51.972717pt;}
.y14d{bottom:54.907854pt;}
.y9d{bottom:55.119864pt;}
.y1eb{bottom:55.390264pt;}
.y1b4{bottom:55.445068pt;}
.y114{bottom:55.720363pt;}
.ya9{bottom:55.790219pt;}
.yd6{bottom:56.336855pt;}
.ya5{bottom:56.377406pt;}
.y4b{bottom:58.407025pt;}
.y111{bottom:58.954107pt;}
.ye7{bottom:59.168007pt;}
.y6{bottom:59.278807pt;}
.y10f{bottom:61.142437pt;}
.ye5{bottom:61.356327pt;}
.y1a0{bottom:61.358205pt;}
.y12b{bottom:61.629505pt;}
.yc6{bottom:61.948855pt;}
.y51{bottom:63.094675pt;}
.y84{bottom:64.747059pt;}
.y5b{bottom:65.393895pt;}
.y87{bottom:66.153926pt;}
.y28{bottom:68.545835pt;}
.y1f6{bottom:69.014060pt;}
.y169{bottom:69.075295pt;}
.y14c{bottom:70.267855pt;}
.yc{bottom:71.195145pt;}
.y113{bottom:74.920365pt;}
.y38{bottom:75.540645pt;}
.y110{bottom:75.754106pt;}
.ye6{bottom:75.968006pt;}
.y181{bottom:75.972716pt;}
.y1ea{bottom:76.190255pt;}
.y19c{bottom:76.754055pt;}
.y7e{bottom:77.258385pt;}
.y4a{bottom:77.607019pt;}
.y1b3{bottom:77.845067pt;}
.y10e{bottom:77.942436pt;}
.ye4{bottom:78.156326pt;}
.ya8{bottom:78.190217pt;}
.y76{bottom:80.258385pt;}
.y12a{bottom:81.693815pt;}
.y14b{bottom:81.842055pt;}
.y50{bottom:82.294669pt;}
.y19f{bottom:83.358205pt;}
.y1b5{bottom:84.167907pt;}
.yf{bottom:84.335515pt;}
.y5a{bottom:84.593889pt;}
.y7f{bottom:85.258385pt;}
.y1fb{bottom:87.959836pt;}
.y62{bottom:91.303586pt;}
.y67{bottom:91.304016pt;}
.y168{bottom:91.475290pt;}
.yb{bottom:91.995146pt;}
.y65{bottom:92.547666pt;}
.y12{bottom:93.136490pt;}
.y112{bottom:94.120366pt;}
.y1f5{bottom:94.614056pt;}
.y1b7{bottom:95.212468pt;}
.y7d{bottom:95.258386pt;}
.y49{bottom:96.807016pt;}
.y1e9{bottom:96.990236pt;}
.y75{bottom:98.258386pt;}
.y14a{bottom:99.442056pt;}
.ya4{bottom:99.799256pt;}
.y4f{bottom:101.494666pt;}
.y7a{bottom:103.258386pt;}
.y59{bottom:103.793886pt;}
.y15d{bottom:104.370766pt;}
.y19e{bottom:105.358206pt;}
.y192{bottom:107.037486pt;}
.y129{bottom:107.453826pt;}
.y13d{bottom:108.573826pt;}
.y2c{bottom:108.722948pt;}
.y152{bottom:110.442188pt;}
.y11{bottom:111.696488pt;}
.y1fa{bottom:111.879846pt;}
.y167{bottom:113.875288pt;}
.y48{bottom:116.007014pt;}
.y74{bottom:116.258386pt;}
.y149{bottom:117.042056pt;}
.y1e8{bottom:117.790236pt;}
.y4e{bottom:120.694665pt;}
.y79{bottom:121.258387pt;}
.y1ae{bottom:121.839887pt;}
.y27{bottom:121.980959pt;}
.y58{bottom:122.993885pt;}
.y10d{bottom:123.051827pt;}
.y1d0{bottom:123.667087pt;}
.y1f4{bottom:124.054059pt;}
.yba{bottom:126.433434pt;}
.y19d{bottom:127.358210pt;}
.y7c{bottom:127.858387pt;}
.y13c{bottom:129.373807pt;}
.y2b{bottom:132.642947pt;}
.y128{bottom:133.213837pt;}
.y1b2{bottom:133.815187pt;}
.yb9{bottom:134.433433pt;}
.y47{bottom:135.207017pt;}
.y1f9{bottom:135.799847pt;}
.y93{bottom:136.522317pt;}
.y8f{bottom:137.171207pt;}
.y15c{bottom:137.490767pt;}
.ya3{bottom:138.195057pt;}
.y1e7{bottom:138.590237pt;}
.y15f{bottom:139.500361pt;}
.y4d{bottom:139.894667pt;}
.y191{bottom:140.157477pt;}
.y57{bottom:142.193887pt;}
.y1a5{bottom:147.589437pt;}
.y13b{bottom:150.173798pt;}
.yae{bottom:151.252189pt;}
.y148{bottom:153.838358pt;}
.y73{bottom:153.858388pt;}
.y46{bottom:154.407018pt;}
.y1b1{bottom:154.615188pt;}
.y1ad{bottom:154.959918pt;}
.y10c{bottom:155.051776pt;}
.y1c4{bottom:156.293228pt;}
.y92{bottom:157.322318pt;}
.ya2{bottom:157.395058pt;}
.y1db{bottom:157.870238pt;}
.y8e{bottom:157.971208pt;}
.y15{bottom:158.557556pt;}
.y10{bottom:158.947688pt;}
.y4c{bottom:159.094668pt;}
.y1e6{bottom:159.390208pt;}
.y1f8{bottom:159.719848pt;}
.y37{bottom:160.082530pt;}
.y31{bottom:160.082690pt;}
.y173{bottom:161.033722pt;}
.y56{bottom:161.393888pt;}
.y15e{bottom:161.900360pt;}
.y8d{bottom:163.620808pt;}
.y1a4{bottom:168.389438pt;}
.yd2{bottom:169.650248pt;}
.y13a{bottom:170.973778pt;}
.y147{bottom:171.438358pt;}
.y1cf{bottom:172.328978pt;}
.y190{bottom:173.277508pt;}
.y116{bottom:174.439610pt;}
.y17a{bottom:174.610818pt;}
.y127{bottom:174.973818pt;}
.ybb{bottom:176.164305pt;}
.y36{bottom:176.882529pt;}
.y30{bottom:176.882689pt;}
.ycb{bottom:177.103218pt;}
.y91{bottom:178.122318pt;}
.y1f{bottom:179.490838pt;}
.y1e5{bottom:180.190198pt;}
.y1da{bottom:181.790239pt;}
.y1af{bottom:182.252809pt;}
.y8c{bottom:184.420809pt;}
.y172{bottom:185.033723pt;}
.y1f7{bottom:185.319841pt;}
.y1ac{bottom:188.079909pt;}
.y1c3{bottom:189.413239pt;}
.yd1{bottom:190.450249pt;}
.y2a{bottom:191.620091pt;}
.y139{bottom:191.773759pt;}
.y40{bottom:192.168060pt;}
.y1ce{bottom:193.517779pt;}
.ya1{bottom:195.851749pt;}
.yc5{bottom:196.240087pt;}
.y86{bottom:197.653353pt;}
.y1e4{bottom:200.990219pt;}
.y26{bottom:204.627151pt;}
.y1e{bottom:204.690839pt;}
.y1d9{bottom:205.710249pt;}
.y15b{bottom:206.397469pt;}
.y18f{bottom:206.397499pt;}
.y179{bottom:207.730819pt;}
.y5{bottom:207.866459pt;}
.yf3{bottom:209.265359pt;}
.yc4{bottom:210.640089pt;}
.y163{bottom:210.760889pt;}
.yd0{bottom:211.250249pt;}
.y146{bottom:211.438359pt;}
.y138{bottom:212.573770pt;}
.y126{bottom:216.733810pt;}
.y85{bottom:220.053352pt;}
.ydf{bottom:220.520090pt;}
.y83{bottom:220.716544pt;}
.y1ab{bottom:221.199910pt;}
.y1e3{bottom:221.790220pt;}
.y1c2{bottom:222.533230pt;}
.yf9{bottom:223.148165pt;}
.y1f3{bottom:224.110980pt;}
.y1a3{bottom:224.774380pt;}
.y25{bottom:228.547150pt;}
.y166{bottom:228.604922pt;}
.y1d8{bottom:229.630250pt;}
.y1d{bottom:229.890840pt;}
.y3f{bottom:232.083863pt;}
.yc0{bottom:232.612663pt;}
.y171{bottom:233.033724pt;}
.y137{bottom:233.373770pt;}
.y4{bottom:233.866460pt;}
.y90{bottom:234.006110pt;}
.y14{bottom:234.024848pt;}
.ya0{bottom:234.308450pt;}
.y6e{bottom:234.403660pt;}
.y1bd{bottom:236.245260pt;}
.y9c{bottom:237.235600pt;}
.yb8{bottom:237.972658pt;}
.y11a{bottom:238.369132pt;}
.y11c{bottom:238.370442pt;}
.y11e{bottom:238.967552pt;}
.y72{bottom:239.402350pt;}
.y15a{bottom:239.517470pt;}
.yda{bottom:239.517480pt;}
.y108{bottom:239.542833pt;}
.y19b{bottom:239.687262pt;}
.ybf{bottom:240.060791pt;}
.y178{bottom:240.850810pt;}
.y1cd{bottom:242.179630pt;}
.y125{bottom:242.493810pt;}
.y1e2{bottom:242.590230pt;}
.y118{bottom:242.677130pt;}
.yb7{bottom:242.972658pt;}
.yf2{bottom:243.838529pt;}
.y162{bottom:243.880901pt;}
.yf8{bottom:246.549046pt;}
.ycf{bottom:247.458642pt;}
.y105{bottom:247.714144pt;}
.y1f2{bottom:248.030981pt;}
.y145{bottom:248.233131pt;}
.y1fc{bottom:250.097511pt;}
.yef{bottom:251.175309pt;}
.y1c5{bottom:252.169641pt;}
.y6d{bottom:252.403661pt;}
.yfa{bottom:252.814431pt;}
.y1d7{bottom:253.550241pt;}
.y136{bottom:254.173771pt;}
.y2f{bottom:254.268151pt;}
.ye3{bottom:254.969971pt;}
.y1c{bottom:255.090841pt;}
.y1aa{bottom:255.653231pt;}
.y170{bottom:257.033725pt;}
.y71{bottom:257.402351pt;}
.y6a{bottom:257.402751pt;}
.y1a2{bottom:257.894381pt;}
.y1bc{bottom:258.645261pt;}
.y5f{bottom:258.940131pt;}
.yb2{bottom:261.308025pt;}
.ybd{bottom:261.588778pt;}
.y119{bottom:262.289131pt;}
.y11b{bottom:262.290441pt;}
.y61{bottom:262.294461pt;}
.y117{bottom:262.817131pt;}
.y1cc{bottom:262.851621pt;}
.y11d{bottom:262.887551pt;}
.y1e1{bottom:263.390231pt;}
.ya{bottom:264.053431pt;}
.y144{bottom:265.833131pt;}
.y124{bottom:268.253801pt;}
.yb4{bottom:268.838071pt;}
.y9b{bottom:269.075601pt;}
.yb1{bottom:269.308025pt;}
.yf7{bottom:269.526996pt;}
.ybc{bottom:269.588778pt;}
.y82{bottom:270.280331pt;}
.y6c{bottom:270.403661pt;}
.y1f1{bottom:271.950981pt;}
.y19a{bottom:272.101201pt;}
.y17b{bottom:272.499101pt;}
.y159{bottom:272.637461pt;}
.yd9{bottom:272.637481pt;}
.yb3{bottom:273.838071pt;}
.y177{bottom:273.970811pt;}
.y135{bottom:274.973782pt;}
.y2e{bottom:275.068152pt;}
.y18e{bottom:275.304152pt;}
.y70{bottom:275.402352pt;}
.y69{bottom:275.402752pt;}
.y24{bottom:275.440284pt;}
.ye2{bottom:275.769972pt;}
.yb6{bottom:275.809849pt;}
.yd{bottom:275.988612pt;}
.y161{bottom:277.000902pt;}
.y1d6{bottom:277.470242pt;}
.y45{bottom:278.029596pt;}
.y3e{bottom:278.029906pt;}
.y63{bottom:279.538032pt;}
.y5e{bottom:279.740132pt;}
.yb5{bottom:280.809849pt;}
.y16f{bottom:281.033726pt;}
.y1b{bottom:281.624162pt;}
.y16a{bottom:282.484872pt;}
.y64{bottom:282.543282pt;}
.y60{bottom:283.094462pt;}
.y143{bottom:283.433132pt;}
.y1cb{bottom:283.523622pt;}
.y1e0{bottom:284.190232pt;}
.y9{bottom:284.853432pt;}
.y66{bottom:286.097082pt;}
.y10a{bottom:287.440323pt;}
.y81{bottom:288.280332pt;}
.y3{bottom:290.184632pt;}
.yf5{bottom:291.880412pt;}
.yee{bottom:292.226738pt;}
.y9a{bottom:292.435602pt;}
.y199{bottom:292.901202pt;}
.y123{bottom:294.013802pt;}
.y10b{bottom:295.179018pt;}
.y134{bottom:295.773782pt;}
.y1f0{bottom:295.870972pt;}
.ye1{bottom:296.569972pt;}
.y44{bottom:297.229592pt;}
.y3d{bottom:297.229902pt;}
.y109{bottom:298.440323pt;}
.y183{bottom:300.234592pt;}
.y1d5{bottom:301.390242pt;}
.y1bb{bottom:303.445242pt;}
.y35{bottom:303.799334pt;}
.y1ca{bottom:304.712422pt;}
.y33{bottom:304.965164pt;}
.y1df{bottom:304.990242pt;}
.y16e{bottom:305.033726pt;}
.yed{bottom:305.226739pt;}
.y55{bottom:305.229592pt;}
.y158{bottom:305.757463pt;}
.y8b{bottom:307.090803pt;}
.yad{bottom:307.328604pt;}
.y6f{bottom:308.002353pt;}
.y68{bottom:308.002753pt;}
.y6b{bottom:308.003663pt;}
.y1a{bottom:308.157483pt;}
.y18d{bottom:308.424143pt;}
.y198{bottom:313.701203pt;}
.ybe{bottom:314.239248pt;}
.yf6{bottom:314.287413pt;}
.y99{bottom:314.515593pt;}
.y13{bottom:315.011951pt;}
.y43{bottom:316.429591pt;}
.y3c{bottom:316.429901pt;}
.y133{bottom:316.573783pt;}
.y17d{bottom:318.229125pt;}
.y17f{bottom:318.257995pt;}
.ycc{bottom:318.683283pt;}
.y156{bottom:319.029183pt;}
.y1ef{bottom:319.790973pt;}
.y154{bottom:319.890283pt;}
.y142{bottom:320.229443pt;}
.y34{bottom:320.599334pt;}
.y80{bottom:320.880333pt;}
.y32{bottom:321.765164pt;}
.y54{bottom:324.429591pt;}
.y1a9{bottom:324.559883pt;}
.y1d4{bottom:325.310253pt;}
.y1de{bottom:325.790243pt;}
.y2d{bottom:326.452105pt;}
.yf1{bottom:327.213711pt;}
.y197{bottom:334.501203pt;}
.y19{bottom:334.690823pt;}
.y17c{bottom:335.029124pt;}
.y155{bottom:335.029181pt;}
.y17e{bottom:335.057994pt;}
.y18b{bottom:335.222783pt;}
.y42{bottom:335.629593pt;}
.y3b{bottom:335.629903pt;}
.y122{bottom:335.773793pt;}
.y153{bottom:335.890281pt;}
.yd5{bottom:337.043304pt;}
.y132{bottom:337.373784pt;}
.y141{bottom:337.829444pt;}
.y23{bottom:338.925076pt;}
.y8a{bottom:340.210804pt;}
.yb0{bottom:341.103961pt;}
.yec{bottom:341.393710pt;}
.yd8{bottom:341.544134pt;}
.y53{bottom:343.629594pt;}
.y1ee{bottom:343.710974pt;}
.yff{bottom:346.102846pt;}
.y98{bottom:346.355594pt;}
.y1dd{bottom:346.590244pt;}
.y1ba{bottom:348.245234pt;}
.y1c1{bottom:348.249034pt;}
.yfd{bottom:348.291166pt;}
.y1d3{bottom:349.230254pt;}
.y106{bottom:350.728957pt;}
.y11f{bottom:351.053214pt;}
.yc3{bottom:351.883434pt;}
.y176{bottom:353.033594pt;}
.y16d{bottom:353.033728pt;}
.y103{bottom:353.035914pt;}
.y1c9{bottom:353.374294pt;}
.yac{bottom:353.695944pt;}
.yeb{bottom:354.393711pt;}
.y41{bottom:354.829594pt;}
.y3a{bottom:354.829904pt;}
.y196{bottom:355.301214pt;}
.ya6{bottom:356.777494pt;}
.y18a{bottom:357.622779pt;}
.y1a8{bottom:357.679894pt;}
.y131{bottom:358.173794pt;}
.y186{bottom:359.573964pt;}
.yc2{bottom:359.883434pt;}
.y18{bottom:359.890814pt;}
.y52{bottom:362.829594pt;}
.y22{bottom:362.845074pt;}
.yfe{bottom:362.902845pt;}
.yfc{bottom:365.091165pt;}
.y104{bottom:365.706858pt;}
.yc9{bottom:366.097799pt;}
.yc1{bottom:367.883435pt;}
.y97{bottom:368.595595pt;}
.yd4{bottom:370.163315pt;}
.y1b9{bottom:370.645230pt;}
.y1c0{bottom:370.649030pt;}
.y1d2{bottom:373.150251pt;}
.y1c8{bottom:374.046295pt;}
.yf4{bottom:374.494675pt;}
.y140{bottom:374.625781pt;}
.y89{bottom:374.664145pt;}
.y195{bottom:376.101205pt;}
.y78{bottom:376.269699pt;}
.y175{bottom:377.033598pt;}
.y16c{bottom:377.033732pt;}
.y102{bottom:377.035915pt;}
.y121{bottom:377.533795pt;}
.y130{bottom:378.973785pt;}
.y189{bottom:380.022785pt;}
.ye9{bottom:380.452745pt;}
.y185{bottom:381.973959pt;}
.y1b0{bottom:382.450067pt;}
.yab{bottom:382.495951pt;}
.y1ed{bottom:385.310971pt;}
.y17{bottom:386.424151pt;}
.y5d{bottom:386.719256pt;}
.y9f{bottom:387.898475pt;}
.y96{bottom:388.115589pt;}
.y150{bottom:388.727685pt;}
.y1dc{bottom:389.150247pt;}
.y1a7{bottom:390.799895pt;}
.y13f{bottom:392.225781pt;}
.y1bf{bottom:393.049035pt;}
.ye8{bottom:393.252745pt;}
.y151{bottom:393.845560pt;}
.y1c7{bottom:395.235094pt;}
.y194{bottom:396.901205pt;}
.yea{bottom:398.058915pt;}
.yc8{bottom:399.217800pt;}
.y1a1{bottom:399.685456pt;}
.y12f{bottom:399.773786pt;}
.y174{bottom:401.033597pt;}
.y16b{bottom:401.033731pt;}
.y101{bottom:401.035919pt;}
.y188{bottom:402.422780pt;}
.yd3{bottom:403.283316pt;}
.y184{bottom:404.373958pt;}
.y157{bottom:405.866556pt;}
.y9e{bottom:407.098476pt;}
.y88{bottom:407.784146pt;}
.y77{bottom:409.589706pt;}
.y21{bottom:409.995422pt;}
.yf0{bottom:410.588890pt;}
.ya7{bottom:410.856898pt;}
.yaa{bottom:411.295956pt;}
.y16{bottom:411.624147pt;}
.y107{bottom:414.629086pt;}
.y1d1{bottom:414.750246pt;}
.y1ec{bottom:414.750966pt;}
.y1b8{bottom:415.445230pt;}
.y1be{bottom:415.449030pt;}
.y95{bottom:415.635586pt;}
.y39{bottom:416.083874pt;}
.y18c{bottom:416.463198pt;}
.y193{bottom:417.701206pt;}
.ydd{bottom:418.910678pt;}
.y120{bottom:419.293788pt;}
.y12e{bottom:420.573786pt;}
.yde{bottom:424.609317pt;}
.y187{bottom:424.822778pt;}
.y100{bottom:425.035917pt;}
.ydc{bottom:427.632567pt;}
.y1c6{bottom:432.057099pt;}
.y13e{bottom:432.225783pt;}
.y7{bottom:466.822782pt;}
.ye{bottom:468.422781pt;}
.yaf{bottom:470.355009pt;}
.y20{bottom:472.274749pt;}
.y1a6{bottom:475.346754pt;}
.y94{bottom:483.298371pt;}
.y164{bottom:498.484201pt;}
.y165{bottom:502.229608pt;}
.h2b{height:12.880273pt;}
.h2d{height:14.490206pt;}
.h2a{height:19.320409pt;}
.h29{height:21.605254pt;}
.h2c{height:23.317518pt;}
.h38{height:29.950521pt;}
.h36{height:31.187502pt;}
.h3e{height:31.872002pt;}
.h34{height:34.229169pt;}
.h35{height:34.410761pt;}
.h26{height:36.336001pt;}
.hb{height:37.657635pt;}
.h2{height:38.289665pt;}
.h31{height:38.437500pt;}
.h3c{height:38.666669pt;}
.h3f{height:40.373334pt;}
.hf{height:40.769533pt;}
.h33{height:40.824220pt;}
.h21{height:41.973334pt;}
.h16{height:42.656251pt;}
.h15{height:42.661531pt;}
.h9{height:42.768232pt;}
.h2e{height:43.500001pt;}
.h18{height:43.824002pt;}
.h30{height:44.410669pt;}
.h1b{height:45.568001pt;}
.h3d{height:46.170669pt;}
.h12{height:47.808002pt;}
.h25{height:48.448002pt;}
.h22{height:49.406252pt;}
.h24{height:49.408002pt;}
.h14{height:50.336004pt;}
.h39{height:50.368002pt;}
.h43{height:50.476566pt;}
.h42{height:50.544274pt;}
.h20{height:51.343752pt;}
.h10{height:52.485337pt;}
.h1{height:53.166670pt;}
.h5{height:54.359375pt;}
.h27{height:54.432291pt;}
.h1f{height:54.565337pt;}
.h44{height:54.954666pt;}
.h3b{height:55.614666pt;}
.h3a{height:56.522666pt;}
.h1c{height:58.762666pt;}
.h37{height:60.560002pt;}
.h17{height:61.781337pt;}
.h4{height:62.208337pt;}
.h7{height:62.833338pt;}
.h13{height:62.960002pt;}
.h19{height:63.744004pt;}
.h2f{height:64.802817pt;}
.h1a{height:65.642667pt;}
.h46{height:65.733341pt;}
.h47{height:67.157338pt;}
.ha{height:67.666666pt;}
.h23{height:67.666726pt;}
.hc{height:72.500002pt;}
.h32{height:73.136661pt;}
.h45{height:73.950010pt;}
.he{height:82.166667pt;}
.h40{height:83.735215pt;}
.h28{height:83.981244pt;}
.h1d{height:87.000003pt;}
.h11{height:88.144003pt;}
.h6{height:91.833339pt;}
.hd{height:93.312503pt;}
.h41{height:108.864583pt;}
.h8{height:116.000004pt;}
.h1e{height:123.434940pt;}
.h3{height:135.333333pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.xca{left:-864.792688pt;}
.xd0{left:-832.792687pt;}
.x0{left:0.000000pt;}
.xef{left:15.867331pt;}
.x9e{left:17.724410pt;}
.xbe{left:20.461673pt;}
.x63{left:23.568712pt;}
.x97{left:25.983668pt;}
.xe7{left:31.422574pt;}
.x49{left:34.958360pt;}
.xd8{left:36.574714pt;}
.xdf{left:38.950062pt;}
.x64{left:40.315104pt;}
.x3{left:41.724411pt;}
.x62{left:42.764094pt;}
.x65{left:46.991351pt;}
.x42{left:48.164978pt;}
.xec{left:49.238115pt;}
.x86{left:50.165242pt;}
.xd9{left:51.228318pt;}
.xce{left:52.212599pt;}
.x17{left:53.644334pt;}
.x48{left:55.560982pt;}
.xd7{left:57.548968pt;}
.x2{left:58.809790pt;}
.x69{left:61.569348pt;}
.x68{left:63.287532pt;}
.xd6{left:66.018986pt;}
.x82{left:66.955382pt;}
.xd5{left:68.338082pt;}
.x3e{left:73.939789pt;}
.x83{left:76.459288pt;}
.x39{left:78.851343pt;}
.xe0{left:79.960020pt;}
.x85{left:82.044483pt;}
.xe3{left:84.619815pt;}
.x76{left:85.774146pt;}
.x7f{left:87.240421pt;}
.x18{left:89.724413pt;}
.xe4{left:92.017389pt;}
.xe2{left:93.135393pt;}
.x7d{left:94.281373pt;}
.xc5{left:95.978075pt;}
.x3f{left:99.931840pt;}
.xee{left:102.776843pt;}
.xd3{left:108.587933pt;}
.x9a{left:116.546841pt;}
.x31{left:131.035744pt;}
.x30{left:136.087502pt;}
.x70{left:142.916942pt;}
.xba{left:145.504465pt;}
.x71{left:146.551185pt;}
.xb7{left:149.586113pt;}
.xb6{left:152.785908pt;}
.xd1{left:156.165151pt;}
.x75{left:159.545935pt;}
.xb8{left:165.814744pt;}
.xb9{left:168.376592pt;}
.xd4{left:175.913182pt;}
.x4a{left:179.369246pt;}
.x7{left:186.430480pt;}
.x3b{left:188.669306pt;}
.x4c{left:190.267745pt;}
.xc{left:193.854138pt;}
.x3a{left:196.669306pt;}
.xa8{left:199.236061pt;}
.x80{left:201.160966pt;}
.x66{left:202.720455pt;}
.x67{left:204.677837pt;}
.x4b{left:206.485115pt;}
.x89{left:208.159324pt;}
.xb{left:215.823157pt;}
.xcd{left:218.102367pt;}
.xc6{left:220.106899pt;}
.x15{left:224.982517pt;}
.xe5{left:227.160117pt;}
.x8{left:229.674727pt;}
.xaf{left:237.609178pt;}
.x8c{left:239.332898pt;}
.x84{left:251.718878pt;}
.xf0{left:252.963758pt;}
.xc7{left:255.375348pt;}
.xb0{left:264.823858pt;}
.x40{left:266.736665pt;}
.xc8{left:268.106899pt;}
.x2a{left:279.187556pt;}
.x87{left:280.285317pt;}
.x41{left:282.331895pt;}
.x2f{left:283.867737pt;}
.x34{left:287.386789pt;}
.x2e{left:289.705629pt;}
.xb1{left:292.232899pt;}
.xc2{left:295.836859pt;}
.x88{left:296.831917pt;}
.x77{left:307.678733pt;}
.x8f{left:311.111920pt;}
.x8a{left:319.860019pt;}
.x78{left:327.134772pt;}
.x6e{left:334.251791pt;}
.x16{left:335.425391pt;}
.xea{left:339.875161pt;}
.x6c{left:343.846611pt;}
.x8b{left:348.601307pt;}
.x4f{left:351.482308pt;}
.x2c{left:365.674631pt;}
.xad{left:370.567972pt;}
.x4e{left:372.990426pt;}
.x29{left:375.795238pt;}
.x2b{left:376.936838pt;}
.xf{left:380.424102pt;}
.x28{left:382.395336pt;}
.x50{left:383.594192pt;}
.x5d{left:388.270672pt;}
.x6d{left:391.112208pt;}
.x5e{left:392.497929pt;}
.x4d{left:396.428173pt;}
.x10{left:397.384182pt;}
.xe{left:399.135683pt;}
.xa1{left:402.022025pt;}
.x3c{left:413.015763pt;}
.xa9{left:414.909296pt;}
.x20{left:420.889666pt;}
.xaa{left:427.698879pt;}
.x5c{left:431.804121pt;}
.x44{left:444.071134pt;}
.x43{left:448.848414pt;}
.xa3{left:450.237214pt;}
.x8e{left:458.930415pt;}
.x8d{left:461.713967pt;}
.x1a{left:466.513736pt;}
.x1e{left:467.995780pt;}
.x9d{left:472.779555pt;}
.x2d{left:475.080402pt;}
.x1d{left:479.012000pt;}
.x38{left:480.907301pt;}
.xc3{left:483.073615pt;}
.x37{left:485.186599pt;}
.x7a{left:486.573006pt;}
.xc1{left:492.036694pt;}
.xbf{left:495.013744pt;}
.xed{left:496.158966pt;}
.x21{left:505.038686pt;}
.xc0{left:506.053783pt;}
.x1c{left:508.574846pt;}
.x91{left:510.541534pt;}
.x1b{left:511.716546pt;}
.x92{left:515.819947pt;}
.x1f{left:517.408587pt;}
.x90{left:519.272225pt;}
.xe1{left:520.246717pt;}
.xab{left:521.211080pt;}
.x79{left:526.989099pt;}
.x60{left:536.834036pt;}
.xe9{left:552.691488pt;}
.x19{left:556.241518pt;}
.x32{left:557.268992pt;}
.x5f{left:561.250688pt;}
.x13{left:565.603997pt;}
.xa5{left:569.103650pt;}
.xc9{left:575.207358pt;}
.x61{left:578.860985pt;}
.x51{left:580.614636pt;}
.x53{left:584.023799pt;}
.x6b{left:585.903029pt;}
.xbc{left:590.546951pt;}
.x14{left:592.326265pt;}
.x52{left:597.698124pt;}
.x81{left:600.491219pt;}
.x9{left:603.541655pt;}
.x95{left:604.483269pt;}
.xbb{left:605.719314pt;}
.xcf{left:607.207359pt;}
.x72{left:610.202397pt;}
.x3d{left:613.015770pt;}
.x47{left:614.346855pt;}
.x6{left:618.805820pt;}
.xd{left:619.753395pt;}
.x46{left:622.195964pt;}
.xcb{left:624.530220pt;}
.xa{left:631.636200pt;}
.x12{left:641.586421pt;}
.x73{left:644.668661pt;}
.x6a{left:648.674408pt;}
.xd2{left:659.774261pt;}
.xeb{left:666.323321pt;}
.xa7{left:671.159821pt;}
.xe8{left:673.148354pt;}
.x7e{left:674.596322pt;}
.xa6{left:676.204745pt;}
.x7c{left:682.275315pt;}
.x23{left:684.506537pt;}
.x7b{left:690.627320pt;}
.x24{left:691.736357pt;}
.xbd{left:697.648045pt;}
.x26{left:701.051252pt;}
.xa0{left:702.976422pt;}
.x4{left:706.448923pt;}
.xdb{left:711.939663pt;}
.xa2{left:714.325463pt;}
.x27{left:718.040975pt;}
.x33{left:720.184625pt;}
.xe6{left:734.015213pt;}
.xae{left:736.793484pt;}
.xda{left:738.060384pt;}
.xc4{left:756.066014pt;}
.x5a{left:757.113133pt;}
.x59{left:759.612088pt;}
.x58{left:761.292790pt;}
.x55{left:762.932666pt;}
.xac{left:769.366738pt;}
.xb3{left:774.010457pt;}
.x56{left:779.948185pt;}
.xb2{left:789.182820pt;}
.x22{left:790.466575pt;}
.x54{left:791.386852pt;}
.x93{left:795.328558pt;}
.x94{left:799.676216pt;}
.x25{left:801.140926pt;}
.x5b{left:804.489546pt;}
.x99{left:806.532256pt;}
.x57{left:809.466176pt;}
.x45{left:818.017740pt;}
.xdc{left:819.252416pt;}
.x98{left:820.697758pt;}
.x36{left:822.240866pt;}
.xdd{left:823.921360pt;}
.x35{left:827.285789pt;}
.x11{left:836.540549pt;}
.xa4{left:848.175867pt;}
.xf1{left:855.074127pt;}
.x9c{left:873.100072pt;}
.xb5{left:876.066678pt;}
.xb4{left:881.111601pt;}
.x9f{left:900.091273pt;}
.xcc{left:901.043070pt;}
.x6f{left:903.068324pt;}
.x96{left:904.020121pt;}
.x74{left:906.353099pt;}
.x5{left:909.337306pt;}
.x1{left:912.314356pt;}
.xde{left:917.112559pt;}
.x9b{left:923.122090pt;}
}




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