
    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_13d59acb2b0bfe7966b24b55.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_89e4f346d9464de06a5daeb3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_6e556152bea2b2689ddcec57.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_bfe5f815e2599d109c00472b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_7d29b38078ba073d86a6cc21.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.979980;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_c04d8584f764849bf5a05b46.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_f828b145874f94cbf84116d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.575000;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_1fc2ace22cb17434d30b21c7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_09f69372f2c81aca2ef14da8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5d191f3944ab06d501e60c50.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.882324;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_6351d0cc1391eb3faf3c0e8f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.861816;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_9ad791e14519d2cb8b8dce40.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.844238;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_0fa7dc7ae3b544c05574f474.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.882324;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_54de9186369f2e47e40293cb.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a7769e57fcc65e3d8620907e.woff2')format("woff");}.fff{font-family:fff;line-height:0.756836;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_f756e69b2736fbbba647ab68.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7d103fb0b4c197108ef4fb68.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4f778145a5b97cbc28a5ea3c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_56382ebb4dafdf56a66f0b24.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.979004;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_1c57e4ede4221ebdd472d7bc.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.834961;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_ed4b26de0442d4f6b3c2b3f3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.758789;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_b33d9ef25c516ce65ef737d7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.882324;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_da68d80a4e5048a7751ec7f6.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;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_13ac755b84ecb44395794224.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;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_67239187080573859f3e9015.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.575000;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_1472fa1a14b6c48c91b680e5.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.575000;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);}
.m4{transform:matrix(0.213066,0.000000,-0.071023,0.239699,0,0);-ms-transform:matrix(0.213066,0.000000,-0.071023,0.239699,0,0);-webkit-transform:matrix(0.213066,0.000000,-0.071023,0.239699,0,0);}
.m3{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,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);}
.m2{transform:matrix(0.251389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251389,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-83.362200px;}
.vc{vertical-align:-36.719400px;}
.vd{vertical-align:-32.400000px;}
.v9{vertical-align:-23.759400px;}
.va{vertical-align:-17.364000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:3.996000px;}
.vf{vertical-align:5.908800px;}
.v10{vertical-align:13.500000px;}
.v11{vertical-align:18.036000px;}
.ve{vertical-align:26.249400px;}
.v4{vertical-align:42.000000px;}
.v3{vertical-align:54.449400px;}
.vb{vertical-align:64.800000px;}
.v5{vertical-align:78.480000px;}
.v2{vertical-align:100.050000px;}
.v1{vertical-align:122.357880px;}
.v6{vertical-align:172.800000px;}
.ls79{letter-spacing:-5.382720px;}
.ls37{letter-spacing:-4.675320px;}
.ls1{letter-spacing:-3.024000px;}
.ls50{letter-spacing:-2.484000px;}
.ls6c{letter-spacing:-1.620000px;}
.ls38{letter-spacing:-0.359640px;}
.ls2d{letter-spacing:-0.251640px;}
.ls70{letter-spacing:-0.239760px;}
.ls27{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.192240px;}
.ls2{letter-spacing:-0.191880px;}
.ls56{letter-spacing:-0.167760px;}
.ls57{letter-spacing:-0.159840px;}
.ls16{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.119880px;}
.lsb{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.101880px;}
.ls1e{letter-spacing:-0.096120px;}
.ls10{letter-spacing:-0.083880px;}
.ls7a{letter-spacing:-0.072000px;}
.ls72{letter-spacing:-0.060120px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.083880px;}
.ls19{letter-spacing:0.096120px;}
.ls7{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.119880px;}
.ls71{letter-spacing:0.120240px;}
.ls13{letter-spacing:0.132120px;}
.ls30{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.167760px;}
.ls20{letter-spacing:0.192240px;}
.ls9{letter-spacing:0.216000px;}
.ls2e{letter-spacing:0.239760px;}
.ls73{letter-spacing:0.288000px;}
.ls58{letter-spacing:0.479520px;}
.ls78{letter-spacing:0.504000px;}
.ls74{letter-spacing:1.152000px;}
.ls34{letter-spacing:5.154840px;}
.ls35{letter-spacing:5.514480px;}
.ls6e{letter-spacing:14.505480px;}
.ls6f{letter-spacing:14.865120px;}
.ls33{letter-spacing:17.382600px;}
.ls32{letter-spacing:18.101880px;}
.ls6d{letter-spacing:25.654320px;}
.ls3c{letter-spacing:33.696000px;}
.ls51{letter-spacing:42.611040px;}
.ls3b{letter-spacing:96.171000px;}
.ls48{letter-spacing:103.680000px;}
.ls47{letter-spacing:109.944000px;}
.ls31{letter-spacing:120.839040px;}
.ls2f{letter-spacing:130.248000px;}
.ls75{letter-spacing:146.202840px;}
.ls3a{letter-spacing:155.952000px;}
.ls3{letter-spacing:170.750880px;}
.ls1c{letter-spacing:180.705600px;}
.ls2b{letter-spacing:182.059560px;}
.ls18{letter-spacing:197.622720px;}
.ls1d{letter-spacing:198.295560px;}
.ls76{letter-spacing:206.265000px;}
.ls5f{letter-spacing:211.572000px;}
.ls40{letter-spacing:219.024000px;}
.ls1a{letter-spacing:220.307040px;}
.ls3d{letter-spacing:230.688000px;}
.ls41{letter-spacing:236.952000px;}
.ls5e{letter-spacing:246.456000px;}
.ls36{letter-spacing:247.536000px;}
.ls1b{letter-spacing:252.699480px;}
.ls1f{letter-spacing:253.476000px;}
.ls6b{letter-spacing:257.796000px;}
.lsc{letter-spacing:261.627840px;}
.ls5d{letter-spacing:266.004000px;}
.ls25{letter-spacing:273.445920px;}
.ls44{letter-spacing:276.588000px;}
.ls17{letter-spacing:281.880000px;}
.ls4a{letter-spacing:283.608000px;}
.ls63{letter-spacing:294.300000px;}
.ls26{letter-spacing:297.795240px;}
.ls55{letter-spacing:300.240360px;}
.ls6{letter-spacing:305.741880px;}
.ls4{letter-spacing:307.371960px;}
.ls21{letter-spacing:312.293880px;}
.ls54{letter-spacing:312.465960px;}
.ls2c{letter-spacing:315.929880px;}
.ls4c{letter-spacing:320.328000px;}
.ls49{letter-spacing:323.892000px;}
.ls5b{letter-spacing:324.000000px;}
.ls53{letter-spacing:333.147600px;}
.ls4d{letter-spacing:333.504000px;}
.ls22{letter-spacing:340.745400px;}
.ls23{letter-spacing:341.418240px;}
.ls43{letter-spacing:346.464000px;}
.ls69{letter-spacing:351.324000px;}
.lse{letter-spacing:351.791640px;}
.ls28{letter-spacing:361.278120px;}
.ls64{letter-spacing:365.040000px;}
.lsd{letter-spacing:369.926280px;}
.ls39{letter-spacing:374.292000px;}
.ls42{letter-spacing:374.544000px;}
.ls3e{letter-spacing:380.592000px;}
.ls4b{letter-spacing:384.480000px;}
.ls67{letter-spacing:397.008000px;}
.ls5a{letter-spacing:401.112000px;}
.ls3f{letter-spacing:401.220000px;}
.ls5c{letter-spacing:405.216000px;}
.ls4f{letter-spacing:406.560000px;}
.ls60{letter-spacing:408.780000px;}
.ls62{letter-spacing:410.724000px;}
.ls45{letter-spacing:414.936000px;}
.ls52{letter-spacing:417.300480px;}
.ls5{letter-spacing:431.971200px;}
.ls12{letter-spacing:435.312000px;}
.ls61{letter-spacing:441.180000px;}
.ls46{letter-spacing:442.101600px;}
.ls65{letter-spacing:456.732000px;}
.ls66{letter-spacing:499.176000px;}
.ls4e{letter-spacing:509.328000px;}
.ls68{letter-spacing:511.380000px;}
.ls24{letter-spacing:523.181160px;}
.ls77{letter-spacing:559.586640px;}
.ls6a{letter-spacing:578.016000px;}
.ls14{letter-spacing:669.698160px;}
.lsa{letter-spacing:1531.086000px;}
.ls59{letter-spacing:1650.591000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws40{word-spacing:-395.104500px;}
.ws42{word-spacing:-263.232000px;}
.ws44{word-spacing:-240.120000px;}
.ws12{word-spacing:-119.880000px;}
.ws41{word-spacing:-118.080000px;}
.ws1a{word-spacing:-96.120000px;}
.ws10{word-spacing:-53.150760px;}
.ws4e{word-spacing:-47.196000px;}
.ws11{word-spacing:-39.888000px;}
.ws46{word-spacing:-37.044000px;}
.ws3e{word-spacing:-33.566400px;}
.ws3c{word-spacing:-33.446520px;}
.ws2f{word-spacing:-33.206760px;}
.ws5c{word-spacing:-33.086880px;}
.ws3d{word-spacing:-32.967000px;}
.ws7{word-spacing:-30.132000px;}
.wsa{word-spacing:-30.024000px;}
.ws18{word-spacing:-29.916000px;}
.ws6a{word-spacing:-29.850120px;}
.ws1d{word-spacing:-29.808000px;}
.ws3b{word-spacing:-28.651320px;}
.ws6{word-spacing:-28.220760px;}
.ws22{word-spacing:-26.721360px;}
.ws24{word-spacing:-26.625240px;}
.ws23{word-spacing:-26.529120px;}
.ws53{word-spacing:-24.624000px;}
.ws14{word-spacing:-24.516000px;}
.ws51{word-spacing:-24.408000px;}
.ws54{word-spacing:-24.300000px;}
.wsd{word-spacing:-23.486400px;}
.wsf{word-spacing:-23.402520px;}
.ws60{word-spacing:-23.318640px;}
.wse{word-spacing:-23.234760px;}
.ws55{word-spacing:-23.150880px;}
.ws5a{word-spacing:-22.788000px;}
.ws56{word-spacing:-22.057920px;}
.ws5f{word-spacing:-22.011480px;}
.ws52{word-spacing:-21.924000px;}
.ws19{word-spacing:-21.723120px;}
.ws15{word-spacing:-21.627000px;}
.ws64{word-spacing:-21.338640px;}
.ws38{word-spacing:-20.160000px;}
.ws65{word-spacing:-19.944000px;}
.ws59{word-spacing:-16.128000px;}
.ws5e{word-spacing:-13.707360px;}
.ws5d{word-spacing:-13.527000px;}
.ws4d{word-spacing:-13.500000px;}
.ws67{word-spacing:-6.123240px;}
.ws58{word-spacing:-2.037960px;}
.ws32{word-spacing:-1.845360px;}
.ws4f{word-spacing:-1.678320px;}
.ws33{word-spacing:-1.509840px;}
.ws2c{word-spacing:-1.404000px;}
.ws49{word-spacing:-1.318680px;}
.ws45{word-spacing:-1.296000px;}
.ws20{word-spacing:-1.188000px;}
.ws34{word-spacing:-1.174320px;}
.ws66{word-spacing:-1.090440px;}
.ws21{word-spacing:-1.080000px;}
.ws6c{word-spacing:-1.078920px;}
.ws57{word-spacing:-0.972000px;}
.ws50{word-spacing:-0.959040px;}
.ws69{word-spacing:-0.922680px;}
.ws3a{word-spacing:-0.864000px;}
.ws2a{word-spacing:-0.768960px;}
.ws4c{word-spacing:-0.756000px;}
.ws31{word-spacing:-0.754920px;}
.ws6b{word-spacing:-0.719280px;}
.ws4a{word-spacing:-0.672840px;}
.ws4b{word-spacing:-0.599400px;}
.ws47{word-spacing:-0.576720px;}
.wsb{word-spacing:-0.540000px;}
.ws68{word-spacing:-0.503280px;}
.ws28{word-spacing:-0.479520px;}
.ws1f{word-spacing:-0.432000px;}
.ws29{word-spacing:-0.384480px;}
.wsc{word-spacing:-0.324000px;}
.ws36{word-spacing:-0.239760px;}
.ws9{word-spacing:-0.216000px;}
.ws1b{word-spacing:-0.192240px;}
.ws63{word-spacing:-0.167760px;}
.ws39{word-spacing:-0.144000px;}
.ws27{word-spacing:-0.119880px;}
.ws16{word-spacing:-0.108000px;}
.ws1e{word-spacing:-0.101880px;}
.ws1c{word-spacing:-0.096120px;}
.ws37{word-spacing:-0.083880px;}
.ws2{word-spacing:0.000000px;}
.ws61{word-spacing:0.083880px;}
.ws17{word-spacing:0.096120px;}
.ws8{word-spacing:0.101880px;}
.ws2e{word-spacing:0.108000px;}
.ws25{word-spacing:0.119880px;}
.ws0{word-spacing:0.144000px;}
.ws43{word-spacing:0.192240px;}
.ws13{word-spacing:0.216000px;}
.ws5b{word-spacing:0.239760px;}
.ws35{word-spacing:0.251640px;}
.ws6d{word-spacing:0.263880px;}
.ws48{word-spacing:0.324000px;}
.ws26{word-spacing:0.359640px;}
.ws2b{word-spacing:0.480600px;}
.ws30{word-spacing:0.599400px;}
.ws2d{word-spacing:0.672840px;}
.ws3{word-spacing:0.767520px;}
.ws62{word-spacing:0.865080px;}
.ws4{word-spacing:0.959400px;}
.ws5{word-spacing:1.151280px;}
.ws1{word-spacing:3.024000px;}
.ws3f{word-spacing:310.272750px;}
._11{margin-left:-1088.064000px;}
._20{margin-left:-73.835400px;}
._13{margin-left:-57.186000px;}
._12{margin-left:-12.062160px;}
._a{margin-left:-10.086120px;}
._c{margin-left:-8.316000px;}
._0{margin-left:-7.056000px;}
._b{margin-left:-5.882040px;}
._5{margin-left:-4.222440px;}
._4{margin-left:-3.070080px;}
._3{margin-left:-1.918800px;}
._2{width:1.728000px;}
._1{width:3.384000px;}
._d{width:5.437440px;}
._f{width:6.472800px;}
._23{width:14.025960px;}
._24{width:15.177960px;}
._e{width:17.580240px;}
._21{width:24.502680px;}
._22{width:26.014680px;}
._7{width:105.592800px;}
._6{width:109.368000px;}
._14{width:115.714800px;}
._10{width:151.056000px;}
._26{width:164.160000px;}
._1b{width:265.222800px;}
._15{width:317.890080px;}
._1d{width:418.392000px;}
._1f{width:426.862080px;}
._17{width:431.676000px;}
._1e{width:439.210800px;}
._1c{width:452.520000px;}
._19{width:459.108000px;}
._1a{width:466.426800px;}
._8{width:472.176000px;}
._16{width:493.560000px;}
._18{width:519.886800px;}
._9{width:525.680280px;}
._25{width:906.853200px;}
.fc11{color:rgb(255,153,0);}
.fcf{color:rgb(128,0,128);}
.fcd{color:rgb(0,51,0);}
.fc9{color:rgb(0,0,102);}
.fcb{color:rgb(127,255,0);}
.fcc{color:rgb(255,0,0);}
.fc0{color:rgb(82,94,102);}
.fc4{color:rgb(0,0,0);}
.fc6{color:rgb(28,28,28);}
.fc8{color:rgb(254,254,254);}
.fca{color:rgb(102,255,51);}
.fc2{color:rgb(0,46,103);}
.fc12{color:rgb(8,8,8);}
.fc10{color:rgb(0,32,96);}
.fce{color:rgb(254,255,255);}
.fc5{color:rgb(95,95,95);}
.fc3{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc7{color:rgb(255,204,0);}
.fs11{font-size:47.880000px;}
.fse{font-size:54.000000px;}
.fsf{font-size:56.320568px;}
.fsd{font-size:60.120000px;}
.fsc{font-size:64.080000px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:79.920000px;}
.fsb{font-size:83.250000px;}
.fs7{font-size:83.880000px;}
.fsa{font-size:96.120000px;}
.fs4{font-size:101.880000px;}
.fs3{font-size:108.000000px;}
.fs9{font-size:119.880000px;}
.fs12{font-size:126.364615px;}
.fs8{font-size:132.120000px;}
.fs6{font-size:144.000000px;}
.fs2{font-size:191.880000px;}
.fs5{font-size:216.000000px;}
.fs1{font-size:240.120000px;}
.fs13{font-size:263.880000px;}
.y0{bottom:0.000000px;}
.yc6{bottom:5.624700px;}
.y85{bottom:8.712938px;}
.y86{bottom:17.999850px;}
.y1{bottom:19.507500px;}
.y84{bottom:34.125000px;}
.yf{bottom:34.935600px;}
.yfd{bottom:45.675510px;}
.y16c{bottom:70.344300px;}
.y5e{bottom:78.546150px;}
.yfc{bottom:81.669480px;}
.y10e{bottom:83.466030px;}
.yba{bottom:100.940550px;}
.ye6{bottom:105.838200px;}
.y5d{bottom:109.596150px;}
.y122{bottom:111.927000px;}
.y11f{bottom:111.928800px;}
.y9f{bottom:114.171750px;}
.y145{bottom:117.559170px;}
.yfb{bottom:117.663450px;}
.y10d{bottom:119.460000px;}
.y15c{bottom:129.840000px;}
.y15b{bottom:129.845310px;}
.y1f{bottom:137.257500px;}
.ye5{bottom:138.238200px;}
.y79{bottom:139.151850px;}
.yed{bottom:139.254300px;}
.y1e{bottom:140.182500px;}
.y144{bottom:142.765110px;}
.y10c{bottom:148.062360px;}
.yc7{bottom:150.861450px;}
.y14f{bottom:153.240450px;}
.yc2{bottom:157.353090px;}
.y73{bottom:159.710250px;}
.yd{bottom:162.690000px;}
.y13c{bottom:163.485750px;}
.y23{bottom:163.890000px;}
.y15a{bottom:165.120000px;}
.y153{bottom:166.545000px;}
.y154{bottom:166.920000px;}
.y109{bottom:166.971000px;}
.y143{bottom:167.971050px;}
.ye{bottom:168.435000px;}
.ye4{bottom:170.638200px;}
.y4f{bottom:174.552660px;}
.yec{bottom:177.063210px;}
.y8a{bottom:177.311910px;}
.y14e{bottom:178.440450px;}
.y169{bottom:179.820000px;}
.ye2{bottom:180.007500px;}
.y5c{bottom:181.372200px;}
.y6d{bottom:182.076360px;}
.y3c{bottom:183.146580px;}
.y10b{bottom:184.056330px;}
.y135{bottom:185.482500px;}
.yd9{bottom:185.877000px;}
.y12d{bottom:186.062700px;}
.yb1{bottom:186.138600px;}
.ya9{bottom:187.920000px;}
.y2c{bottom:188.081100px;}
.yb9{bottom:188.200800px;}
.y13b{bottom:188.691690px;}
.y78{bottom:190.163850px;}
.ybd{bottom:190.687500px;}
.y142{bottom:193.176990px;}
.yc1{bottom:193.347060px;}
.ye3{bottom:203.038200px;}
.y4e{bottom:203.364630px;}
.y14d{bottom:203.640450px;}
.y89{bottom:206.099850px;}
.y82{bottom:207.393750px;}
.y6c{bottom:209.798700px;}
.y108{bottom:210.171000px;}
.y12f{bottom:211.247670px;}
.y12b{bottom:211.268640px;}
.y15e{bottom:212.964060px;}
.y5b{bottom:213.772200px;}
.y13a{bottom:213.897630px;}
.yeb{bottom:214.872120px;}
.y141{bottom:218.382930px;}
.y10a{bottom:220.050300px;}
.y2b{bottom:220.481100px;}
.y12c{bottom:223.871610px;}
.y3b{bottom:225.847890px;}
.y14c{bottom:226.770450px;}
.yc0{bottom:229.341030px;}
.y4d{bottom:232.152570px;}
.y148{bottom:237.978570px;}
.y15d{bottom:238.170000px;}
.y139{bottom:239.103570px;}
.y14b{bottom:243.228570px;}
.y140{bottom:243.588870px;}
.yd1{bottom:247.300830px;}
.y12e{bottom:249.056580px;}
.y12a{bottom:249.077550px;}
.yd8{bottom:249.462000px;}
.yea{bottom:252.681030px;}
.y2a{bottom:252.881100px;}
.y107{bottom:253.371000px;}
.y11e{bottom:254.700000px;}
.y6b{bottom:256.059150px;}
.y4c{bottom:260.940510px;}
.y147{bottom:263.184510px;}
.y138{bottom:264.309510px;}
.ya{bottom:264.315000px;}
.ybf{bottom:265.335000px;}
.yb{bottom:268.372650px;}
.y14a{bottom:268.434510px;}
.y3a{bottom:268.549200px;}
.y13f{bottom:268.794810px;}
.y16a{bottom:270.945000px;}
.yc{bottom:271.372650px;}
.y9b{bottom:275.199900px;}
.yf7{bottom:278.703900px;}
.y98{bottom:281.819850px;}
.y44{bottom:282.783750px;}
.yd0{bottom:283.294800px;}
.y146{bottom:288.390450px;}
.y137{bottom:289.515450px;}
.ye9{bottom:290.489940px;}
.y149{bottom:293.640450px;}
.y13e{bottom:294.000750px;}
.y106{bottom:296.571000px;}
.y88{bottom:299.662500px;}
.y21{bottom:300.420000px;}
.y22{bottom:300.795000px;}
.y3f{bottom:302.580000px;}
.yb0{bottom:303.603750px;}
.ya0{bottom:304.054800px;}
.ya8{bottom:304.097100px;}
.y53{bottom:304.883280px;}
.ye1{bottom:305.323500px;}
.y9c{bottom:305.512800px;}
.y99{bottom:307.429200px;}
.yb8{bottom:309.763650px;}
.y4b{bottom:310.569000px;}
.yf6{bottom:311.103900px;}
.y39{bottom:311.250510px;}
.yd7{bottom:313.047000px;}
.y43{bottom:313.329900px;}
.y121{bottom:318.960000px;}
.ycf{bottom:319.288770px;}
.y14{bottom:325.357500px;}
.y17{bottom:326.257500px;}
.y77{bottom:326.675850px;}
.y45{bottom:327.397500px;}
.y164{bottom:327.520590px;}
.ye8{bottom:328.298850px;}
.y52{bottom:333.671220px;}
.y33{bottom:336.371190px;}
.y9e{bottom:337.509600px;}
.yaf{bottom:338.793750px;}
.y120{bottom:339.088800px;}
.ya7{bottom:339.287100px;}
.y105{bottom:339.771000px;}
.yf5{bottom:343.503900px;}
.yb7{bottom:344.953650px;}
.y4a{bottom:346.562970px;}
.y8f{bottom:348.553350px;}
.ye0{bottom:349.117500px;}
.y3e{bottom:351.180000px;}
.y38{bottom:353.855700px;}
.yce{bottom:355.282740px;}
.y9a{bottom:357.079800px;}
.y13{bottom:357.757500px;}
.y168{bottom:359.820000px;}
.y51{bottom:362.459160px;}
.y163{bottom:363.514560px;}
.y9d{bottom:365.442000px;}
.y7{bottom:366.127500px;}
.y13d{bottom:368.385450px;}
.y8{bottom:370.372500px;}
.y9{bottom:373.184850px;}
.yf4{bottom:375.903900px;}
.y32{bottom:375.972630px;}
.y70{bottom:376.019160px;}
.yd6{bottom:376.632000px;}
.y97{bottom:377.227500px;}
.yee{bottom:380.940000px;}
.y8e{bottom:381.034350px;}
.y49{bottom:382.556940px;}
.yae{bottom:382.635000px;}
.y104{bottom:382.971000px;}
.ya6{bottom:383.260350px;}
.y87{bottom:384.599850px;}
.y62{bottom:387.163050px;}
.yb6{bottom:387.953850px;}
.y50{bottom:391.247100px;}
.ycd{bottom:391.276710px;}
.y113{bottom:391.843110px;}
.ydf{bottom:392.911500px;}
.y27{bottom:394.784250px;}
.y37{bottom:396.757500px;}
.y1d{bottom:397.170000px;}
.y162{bottom:399.508530px;}
.y123{bottom:403.347000px;}
.y5a{bottom:403.596450px;}
.y6f{bottom:403.741500px;}
.y1c{bottom:404.557500px;}
.y18{bottom:406.807500px;}
.y19{bottom:407.257500px;}
.yf3{bottom:408.303900px;}
.y2d{bottom:409.803300px;}
.y8d{bottom:413.434350px;}
.y129{bottom:414.054000px;}
.y31{bottom:415.574070px;}
.yad{bottom:417.825000px;}
.y76{bottom:418.187850px;}
.y61{bottom:418.213050px;}
.ya5{bottom:418.450350px;}
.y48{bottom:418.550910px;}
.yb5{bottom:423.143850px;}
.y103{bottom:426.171000px;}
.ycc{bottom:427.270680px;}
.y59{bottom:434.646450px;}
.y112{bottom:435.029880px;}
.y161{bottom:435.502500px;}
.yde{bottom:436.705500px;}
.yd5{bottom:440.217000px;}
.yf2{bottom:440.703900px;}
.y71{bottom:441.466950px;}
.y83{bottom:441.562500px;}
.y167{bottom:445.320000px;}
.yc4{bottom:447.172800px;}
.y166{bottom:448.695000px;}
.y47{bottom:454.544880px;}
.y30{bottom:455.175510px;}
.y42{bottom:455.505000px;}
.y128{bottom:457.254000px;}
.y16{bottom:458.388750px;}
.ycb{bottom:463.264650px;}
.y5{bottom:467.752500px;}
.y102{bottom:469.371000px;}
.y155{bottom:471.945000px;}
.y159{bottom:471.963750px;}
.y6{bottom:474.622500px;}
.y72{bottom:476.302500px;}
.y111{bottom:478.216650px;}
.y114{bottom:478.790250px;}
.ydd{bottom:480.499500px;}
.y158{bottom:482.450850px;}
.y60{bottom:483.203400px;}
.y92{bottom:483.553350px;}
.y41{bottom:487.905000px;}
.y46{bottom:490.538850px;}
.y11b{bottom:492.851220px;}
.y58{bottom:493.374900px;}
.yd3{bottom:493.785000px;}
.y2f{bottom:494.776950px;}
.y81{bottom:496.969560px;}
.y127{bottom:500.454000px;}
.y26{bottom:501.324300px;}
.yc5{bottom:505.021500px;}
.yd2{bottom:509.985000px;}
.y11a{bottom:511.127700px;}
.y101{bottom:512.571000px;}
.y91{bottom:516.034350px;}
.y5f{bottom:517.223400px;}
.y40{bottom:520.305000px;}
.ya4{bottom:521.641050px;}
.yac{bottom:522.157500px;}
.y15{bottom:523.188750px;}
.yb4{bottom:523.527900px;}
.y36{bottom:523.561800px;}
.ydc{bottom:524.293500px;}
.y25{bottom:524.904300px;}
.y57{bottom:525.774900px;}
.yd4{bottom:526.185000px;}
.y160{bottom:527.894310px;}
.y165{bottom:531.382500px;}
.y80{bottom:532.963530px;}
.y6a{bottom:534.296820px;}
.y2e{bottom:535.006950px;}
.y7a{bottom:539.340000px;}
.y126{bottom:543.654000px;}
.y90{bottom:548.434350px;}
.yab{bottom:548.709000px;}
.ya3{bottom:551.077200px;}
.yb3{bottom:552.947400px;}
.y15f{bottom:553.100250px;}
.y100{bottom:555.960000px;}
.y35{bottom:555.961800px;}
.y117{bottom:557.360070px;}
.y75{bottom:559.199850px;}
.y7d{bottom:559.717950px;}
.y110{bottom:560.668800px;}
.y69{bottom:562.019160px;}
.y130{bottom:565.102500px;}
.y1a{bottom:565.807500px;}
.ydb{bottom:568.087500px;}
.y134{bottom:568.102500px;}
.y3{bottom:568.627500px;}
.y7f{bottom:568.957500px;}
.y131{bottom:570.164850px;}
.yf9{bottom:572.721030px;}
.ybc{bottom:574.117500px;}
.y116{bottom:575.636550px;}
.y132{bottom:577.665000px;}
.y4{bottom:578.872500px;}
.yca{bottom:579.448500px;}
.y119{bottom:579.995250px;}
.yc9{bottom:583.948500px;}
.y157{bottom:584.008530px;}
.y11d{bottom:584.188530px;}
.y34{bottom:588.361800px;}
.y29{bottom:588.532500px;}
.y68{bottom:589.741500px;}
.y7c{bottom:595.087950px;}
.yfa{bottom:596.190000px;}
.y8c{bottom:597.925350px;}
.y118{bottom:598.271730px;}
.yff{bottom:598.971000px;}
.y11c{bottom:602.465010px;}
.y150{bottom:605.863050px;}
.yf8{bottom:608.715000px;}
.yaa{bottom:610.755000px;}
.ya2{bottom:611.530200px;}
.yb2{bottom:612.725400px;}
.ye7{bottom:618.000300px;}
.yf1{bottom:618.939300px;}
.y156{bottom:620.002500px;}
.yda{bottom:620.872350px;}
.y28{bottom:620.932500px;}
.ybe{bottom:624.442500px;}
.y7e{bottom:624.952800px;}
.y136{bottom:625.125300px;}
.y67{bottom:626.371500px;}
.y10f{bottom:627.097050px;}
.y115{bottom:627.187800px;}
.y7b{bottom:627.487950px;}
.ybb{bottom:628.048500px;}
.y152{bottom:628.125300px;}
.yc3{bottom:630.060000px;}
.y8b{bottom:630.325350px;}
.y74{bottom:630.802500px;}
.yc8{bottom:632.548500px;}
.y3d{bottom:632.625300px;}
.y54{bottom:633.000300px;}
.y133{bottom:635.625300px;}
.ya1{bottom:636.582300px;}
.y24{bottom:639.421050px;}
.yfe{bottom:639.660000px;}
.y151{bottom:640.195650px;}
.y1b{bottom:641.257500px;}
.y6e{bottom:655.054710px;}
.y12{bottom:716.994300px;}
.y20{bottom:717.180000px;}
.y95{bottom:717.930000px;}
.yf0{bottom:718.282200px;}
.y55{bottom:719.430000px;}
.y96{bottom:720.742500px;}
.y65{bottom:720.930000px;}
.yef{bottom:721.094700px;}
.y16b{bottom:721.304850px;}
.y56{bottom:722.242500px;}
.y124{bottom:722.617500px;}
.y66{bottom:723.742500px;}
.y125{bottom:725.617500px;}
.y2{bottom:729.247500px;}
.y94{bottom:739.233030px;}
.y11{bottom:740.733030px;}
.y64{bottom:742.233030px;}
.y93{bottom:769.822500px;}
.y10{bottom:771.322500px;}
.y63{bottom:772.822500px;}
.h22{height:18.000000px;}
.h24{height:37.537879px;}
.h2a{height:41.655410px;}
.h1e{height:48.084258px;}
.h2e{height:49.937344px;}
.h28{height:52.277344px;}
.h23{height:52.998047px;}
.h1b{height:57.001500px;}
.h1{height:63.281250px;}
.h14{height:66.598770px;}
.h16{height:66.983250px;}
.h15{height:69.790254px;}
.h26{height:74.830078px;}
.h1a{height:75.093750px;}
.h4{height:78.416016px;}
.h7{height:81.000000px;}
.h1c{height:81.705322px;}
.hd{height:87.484219px;}
.h27{height:89.031094px;}
.h29{height:94.165875px;}
.h17{height:94.921875px;}
.h13{height:100.250156px;}
.h21{height:102.560040px;}
.h18{height:105.363281px;}
.h2d{height:106.158956px;}
.h5{height:106.257656px;}
.h8{height:112.640625px;}
.h20{height:115.236000px;}
.h2f{height:117.655664px;}
.h19{height:125.031094px;}
.h31{height:126.140625px;}
.h2c{height:126.499556px;}
.h32{height:130.676625px;}
.h3{height:132.948105px;}
.h30{height:134.831045px;}
.h2b{height:136.710000px;}
.h12{height:137.797031px;}
.h1d{height:141.257812px;}
.h25{height:143.216016px;}
.h9{height:149.660156px;}
.h11{height:150.187500px;}
.ha{height:153.648000px;}
.he{height:200.124844px;}
.hc{height:208.097400px;}
.h2{height:211.042969px;}
.hb{height:212.690625px;}
.h6{height:228.615536px;}
.hf{height:228.667500px;}
.h1f{height:235.547402px;}
.h33{height:275.218594px;}
.h10{height:322.987500px;}
.h0{height:810.000000px;}
.w2{width:33.000000px;}
.w4{width:137.070000px;}
.w3{width:138.960000px;}
.w1{width:271.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x82{left:1.999950px;}
.x5b{left:5.467950px;}
.xce{left:17.182860px;}
.x60{left:18.742200px;}
.x7{left:23.693400px;}
.x69{left:26.746950px;}
.x56{left:31.987500px;}
.xc8{left:39.596250px;}
.x12{left:40.800000px;}
.xc6{left:42.333750px;}
.x7c{left:44.748750px;}
.x4a{left:45.908250px;}
.x8{left:47.445000px;}
.x49{left:49.425000px;}
.x7f{left:51.637500px;}
.x3f{left:53.733750px;}
.x1f{left:56.190000px;}
.x59{left:57.788250px;}
.x48{left:58.799700px;}
.xe{left:60.738750px;}
.xb9{left:63.552510px;}
.x5a{left:64.757324px;}
.x7e{left:65.767500px;}
.xd{left:66.792750px;}
.x9b{left:68.902500px;}
.xba{left:70.577460px;}
.xc{left:72.003750px;}
.x45{left:75.294600px;}
.xa0{left:76.717500px;}
.x8b{left:78.789000px;}
.x5f{left:80.545200px;}
.x57{left:85.813620px;}
.xf{left:87.738750px;}
.x46{left:90.234600px;}
.x47{left:92.522250px;}
.xbb{left:93.791250px;}
.x50{left:95.385000px;}
.xb{left:97.987050px;}
.xaf{left:100.800000px;}
.x85{left:103.170000px;}
.x89{left:105.438000px;}
.x7b{left:107.550000px;}
.x8a{left:114.105000px;}
.x78{left:120.435000px;}
.x9a{left:122.735550px;}
.xb3{left:123.862500px;}
.x76{left:130.515000px;}
.x20{left:131.908050px;}
.x7a{left:133.218750px;}
.x1d{left:136.560300px;}
.x22{left:144.167100px;}
.x97{left:146.075400px;}
.xcd{left:158.851050px;}
.x79{left:160.485000px;}
.xc7{left:167.550000px;}
.x37{left:169.837020px;}
.x77{left:171.015000px;}
.x38{left:174.961890px;}
.x36{left:178.198650px;}
.xd0{left:193.800000px;}
.x23{left:200.716500px;}
.x24{left:201.987750px;}
.x25{left:205.844400px;}
.x29{left:208.954650px;}
.xcf{left:246.487500px;}
.x86{left:248.754000px;}
.x98{left:250.486500px;}
.x5{left:259.425000px;}
.x4{left:263.175000px;}
.x6{left:264.675000px;}
.xb8{left:269.792850px;}
.xb7{left:280.208310px;}
.x11{left:283.050000px;}
.x83{left:298.899750px;}
.x95{left:300.725250px;}
.x3{left:303.675000px;}
.x1a{left:305.175000px;}
.x68{left:316.162200px;}
.xb0{left:323.564310px;}
.xb6{left:338.442000px;}
.x17{left:345.112500px;}
.x2{left:348.300000px;}
.x1{left:357.502500px;}
.x51{left:363.255900px;}
.x53{left:369.267900px;}
.x52{left:379.761900px;}
.x99{left:382.024830px;}
.x88{left:383.943000px;}
.x87{left:387.993000px;}
.x1e{left:400.053750px;}
.x21{left:420.556050px;}
.x6c{left:426.285000px;}
.x10{left:433.800000px;}
.x3b{left:435.425430px;}
.xc9{left:438.333990px;}
.x14{left:439.800000px;}
.xcb{left:443.140860px;}
.x1c{left:444.810600px;}
.x7d{left:446.737500px;}
.x39{left:448.209390px;}
.xae{left:451.800000px;}
.x3a{left:454.144800px;}
.x18{left:455.168760px;}
.x6f{left:460.125000px;}
.x9{left:466.604790px;}
.x54{left:469.237500px;}
.xc5{left:470.444700px;}
.xc3{left:473.298750px;}
.xc2{left:475.818750px;}
.x81{left:478.101000px;}
.x55{left:480.179700px;}
.x6d{left:482.985000px;}
.x44{left:484.857600px;}
.x6b{left:487.497750px;}
.x62{left:492.487500px;}
.x40{left:493.987500px;}
.x4e{left:495.487500px;}
.x63{left:497.737500px;}
.x13{left:499.425000px;}
.x4f{left:500.737500px;}
.x8e{left:503.390400px;}
.x6e{left:504.405000px;}
.x8d{left:506.630400px;}
.x91{left:510.410400px;}
.x8c{left:512.084400px;}
.x94{left:514.863750px;}
.x90{left:519.320400px;}
.x93{left:523.057020px;}
.x8f{left:528.554400px;}
.x64{left:539.412450px;}
.xb1{left:548.383680px;}
.x4b{left:554.084100px;}
.xc4{left:570.588750px;}
.x84{left:595.495350px;}
.x9f{left:602.752500px;}
.x4c{left:604.620000px;}
.xa7{left:615.124110px;}
.xca{left:617.565000px;}
.x2b{left:619.448700px;}
.x2a{left:620.524950px;}
.xa8{left:624.397620px;}
.x2c{left:626.489490px;}
.x2d{left:632.905500px;}
.x61{left:647.266230px;}
.x19{left:648.766230px;}
.x4d{left:650.266230px;}
.xc1{left:658.918320px;}
.xa9{left:662.850000px;}
.xc0{left:664.139850px;}
.x26{left:672.473700px;}
.xa{left:675.738960px;}
.x96{left:677.075400px;}
.x2e{left:678.274140px;}
.x28{left:681.117720px;}
.x27{left:685.707450px;}
.xac{left:688.050150px;}
.xad{left:691.612500px;}
.x3c{left:693.962100px;}
.xaa{left:721.327650px;}
.x92{left:722.737500px;}
.x3d{left:731.328750px;}
.x58{left:735.562500px;}
.x3e{left:736.639380px;}
.xa5{left:737.738850px;}
.x15{left:740.550000px;}
.xa6{left:748.094520px;}
.xb5{left:751.425000px;}
.x33{left:756.510150px;}
.x70{left:760.642500px;}
.x72{left:773.156250px;}
.xb2{left:775.635570px;}
.xcc{left:780.613500px;}
.x9c{left:789.230250px;}
.x1b{left:793.653900px;}
.x35{left:795.165000px;}
.x75{left:798.086250px;}
.x5c{left:801.060000px;}
.x16{left:805.800000px;}
.x6a{left:813.975450px;}
.x73{left:815.362500px;}
.x34{left:818.819850px;}
.x71{left:825.901500px;}
.x5d{left:828.333600px;}
.x74{left:831.022500px;}
.x5e{left:834.989910px;}
.xb4{left:836.925000px;}
.x32{left:838.517250px;}
.x2f{left:846.254850px;}
.x41{left:852.933600px;}
.x31{left:858.875250px;}
.xbc{left:860.032500px;}
.x30{left:864.074850px;}
.xbf{left:868.327500px;}
.xbe{left:879.555570px;}
.xa1{left:883.520550px;}
.xab{left:884.736900px;}
.x42{left:886.924350px;}
.xa2{left:893.876220px;}
.xbd{left:898.281780px;}
.x43{left:902.044350px;}
.xd1{left:919.800000px;}
.x65{left:922.129050px;}
.x9e{left:932.395500px;}
.x9d{left:937.957500px;}
.x80{left:965.144100px;}
.x66{left:966.649800px;}
.x67{left:974.653500px;}
.xa3{left:1012.613220px;}
.xa4{left:1025.659260px;}
@media print{
.v8{vertical-align:-74.099733pt;}
.vc{vertical-align:-32.639467pt;}
.vd{vertical-align:-28.800000pt;}
.v9{vertical-align:-21.119467pt;}
.va{vertical-align:-15.434667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:3.552000pt;}
.vf{vertical-align:5.252267pt;}
.v10{vertical-align:12.000000pt;}
.v11{vertical-align:16.032000pt;}
.ve{vertical-align:23.332800pt;}
.v4{vertical-align:37.333333pt;}
.v3{vertical-align:48.399467pt;}
.vb{vertical-align:57.600000pt;}
.v5{vertical-align:69.760000pt;}
.v2{vertical-align:88.933333pt;}
.v1{vertical-align:108.762560pt;}
.v6{vertical-align:153.600000pt;}
.ls79{letter-spacing:-4.784640pt;}
.ls37{letter-spacing:-4.155840pt;}
.ls1{letter-spacing:-2.688000pt;}
.ls50{letter-spacing:-2.208000pt;}
.ls6c{letter-spacing:-1.440000pt;}
.ls38{letter-spacing:-0.319680pt;}
.ls2d{letter-spacing:-0.223680pt;}
.ls70{letter-spacing:-0.213120pt;}
.ls27{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.170880pt;}
.ls2{letter-spacing:-0.170560pt;}
.ls56{letter-spacing:-0.149120pt;}
.ls57{letter-spacing:-0.142080pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.106560pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.090560pt;}
.ls1e{letter-spacing:-0.085440pt;}
.ls10{letter-spacing:-0.074560pt;}
.ls7a{letter-spacing:-0.064000pt;}
.ls72{letter-spacing:-0.053440pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.074560pt;}
.ls19{letter-spacing:0.085440pt;}
.ls7{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.106560pt;}
.ls71{letter-spacing:0.106880pt;}
.ls13{letter-spacing:0.117440pt;}
.ls30{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.149120pt;}
.ls20{letter-spacing:0.170880pt;}
.ls9{letter-spacing:0.192000pt;}
.ls2e{letter-spacing:0.213120pt;}
.ls73{letter-spacing:0.256000pt;}
.ls58{letter-spacing:0.426240pt;}
.ls78{letter-spacing:0.448000pt;}
.ls74{letter-spacing:1.024000pt;}
.ls34{letter-spacing:4.582080pt;}
.ls35{letter-spacing:4.901760pt;}
.ls6e{letter-spacing:12.893760pt;}
.ls6f{letter-spacing:13.213440pt;}
.ls33{letter-spacing:15.451200pt;}
.ls32{letter-spacing:16.090560pt;}
.ls6d{letter-spacing:22.803840pt;}
.ls3c{letter-spacing:29.952000pt;}
.ls51{letter-spacing:37.876480pt;}
.ls3b{letter-spacing:85.485333pt;}
.ls48{letter-spacing:92.160000pt;}
.ls47{letter-spacing:97.728000pt;}
.ls31{letter-spacing:107.412480pt;}
.ls2f{letter-spacing:115.776000pt;}
.ls75{letter-spacing:129.958080pt;}
.ls3a{letter-spacing:138.624000pt;}
.ls3{letter-spacing:151.778560pt;}
.ls1c{letter-spacing:160.627200pt;}
.ls2b{letter-spacing:161.830720pt;}
.ls18{letter-spacing:175.664640pt;}
.ls1d{letter-spacing:176.262720pt;}
.ls76{letter-spacing:183.346667pt;}
.ls5f{letter-spacing:188.064000pt;}
.ls40{letter-spacing:194.688000pt;}
.ls1a{letter-spacing:195.828480pt;}
.ls3d{letter-spacing:205.056000pt;}
.ls41{letter-spacing:210.624000pt;}
.ls5e{letter-spacing:219.072000pt;}
.ls36{letter-spacing:220.032000pt;}
.ls1b{letter-spacing:224.621760pt;}
.ls1f{letter-spacing:225.312000pt;}
.ls6b{letter-spacing:229.152000pt;}
.lsc{letter-spacing:232.558080pt;}
.ls5d{letter-spacing:236.448000pt;}
.ls25{letter-spacing:243.063040pt;}
.ls44{letter-spacing:245.856000pt;}
.ls17{letter-spacing:250.560000pt;}
.ls4a{letter-spacing:252.096000pt;}
.ls63{letter-spacing:261.600000pt;}
.ls26{letter-spacing:264.706880pt;}
.ls55{letter-spacing:266.880320pt;}
.ls6{letter-spacing:271.770560pt;}
.ls4{letter-spacing:273.219520pt;}
.ls21{letter-spacing:277.594560pt;}
.ls54{letter-spacing:277.747520pt;}
.ls2c{letter-spacing:280.826560pt;}
.ls4c{letter-spacing:284.736000pt;}
.ls49{letter-spacing:287.904000pt;}
.ls5b{letter-spacing:288.000000pt;}
.ls53{letter-spacing:296.131200pt;}
.ls4d{letter-spacing:296.448000pt;}
.ls22{letter-spacing:302.884800pt;}
.ls23{letter-spacing:303.482880pt;}
.ls43{letter-spacing:307.968000pt;}
.ls69{letter-spacing:312.288000pt;}
.lse{letter-spacing:312.703680pt;}
.ls28{letter-spacing:321.136107pt;}
.ls64{letter-spacing:324.480000pt;}
.lsd{letter-spacing:328.823360pt;}
.ls39{letter-spacing:332.704000pt;}
.ls42{letter-spacing:332.928000pt;}
.ls3e{letter-spacing:338.304000pt;}
.ls4b{letter-spacing:341.760000pt;}
.ls67{letter-spacing:352.896000pt;}
.ls5a{letter-spacing:356.544000pt;}
.ls3f{letter-spacing:356.640000pt;}
.ls5c{letter-spacing:360.192000pt;}
.ls4f{letter-spacing:361.386667pt;}
.ls60{letter-spacing:363.360000pt;}
.ls62{letter-spacing:365.088000pt;}
.ls45{letter-spacing:368.832000pt;}
.ls52{letter-spacing:370.933760pt;}
.ls5{letter-spacing:383.974400pt;}
.ls12{letter-spacing:386.944000pt;}
.ls61{letter-spacing:392.160000pt;}
.ls46{letter-spacing:392.979200pt;}
.ls65{letter-spacing:405.984000pt;}
.ls66{letter-spacing:443.712000pt;}
.ls4e{letter-spacing:452.736000pt;}
.ls68{letter-spacing:454.560000pt;}
.ls24{letter-spacing:465.049920pt;}
.ls77{letter-spacing:497.410347pt;}
.ls6a{letter-spacing:513.792000pt;}
.ls14{letter-spacing:595.287253pt;}
.lsa{letter-spacing:1360.965333pt;}
.ls59{letter-spacing:1467.192000pt;}
.ws40{word-spacing:-351.204000pt;}
.ws42{word-spacing:-233.984000pt;}
.ws44{word-spacing:-213.440000pt;}
.ws12{word-spacing:-106.560000pt;}
.ws41{word-spacing:-104.960000pt;}
.ws1a{word-spacing:-85.440000pt;}
.ws10{word-spacing:-47.245120pt;}
.ws4e{word-spacing:-41.952000pt;}
.ws11{word-spacing:-35.456000pt;}
.ws46{word-spacing:-32.928000pt;}
.ws3e{word-spacing:-29.836800pt;}
.ws3c{word-spacing:-29.730240pt;}
.ws2f{word-spacing:-29.517120pt;}
.ws5c{word-spacing:-29.410560pt;}
.ws3d{word-spacing:-29.304000pt;}
.ws7{word-spacing:-26.784000pt;}
.wsa{word-spacing:-26.688000pt;}
.ws18{word-spacing:-26.592000pt;}
.ws6a{word-spacing:-26.533440pt;}
.ws1d{word-spacing:-26.496000pt;}
.ws3b{word-spacing:-25.467840pt;}
.ws6{word-spacing:-25.085120pt;}
.ws22{word-spacing:-23.752320pt;}
.ws24{word-spacing:-23.666880pt;}
.ws23{word-spacing:-23.581440pt;}
.ws53{word-spacing:-21.888000pt;}
.ws14{word-spacing:-21.792000pt;}
.ws51{word-spacing:-21.696000pt;}
.ws54{word-spacing:-21.600000pt;}
.wsd{word-spacing:-20.876800pt;}
.wsf{word-spacing:-20.802240pt;}
.ws60{word-spacing:-20.727680pt;}
.wse{word-spacing:-20.653120pt;}
.ws55{word-spacing:-20.578560pt;}
.ws5a{word-spacing:-20.256000pt;}
.ws56{word-spacing:-19.607040pt;}
.ws5f{word-spacing:-19.565760pt;}
.ws52{word-spacing:-19.488000pt;}
.ws19{word-spacing:-19.309440pt;}
.ws15{word-spacing:-19.224000pt;}
.ws64{word-spacing:-18.967680pt;}
.ws38{word-spacing:-17.920000pt;}
.ws65{word-spacing:-17.728000pt;}
.ws59{word-spacing:-14.336000pt;}
.ws5e{word-spacing:-12.184320pt;}
.ws5d{word-spacing:-12.024000pt;}
.ws4d{word-spacing:-12.000000pt;}
.ws67{word-spacing:-5.442880pt;}
.ws58{word-spacing:-1.811520pt;}
.ws32{word-spacing:-1.640320pt;}
.ws4f{word-spacing:-1.491840pt;}
.ws33{word-spacing:-1.342080pt;}
.ws2c{word-spacing:-1.248000pt;}
.ws49{word-spacing:-1.172160pt;}
.ws45{word-spacing:-1.152000pt;}
.ws20{word-spacing:-1.056000pt;}
.ws34{word-spacing:-1.043840pt;}
.ws66{word-spacing:-0.969280pt;}
.ws21{word-spacing:-0.960000pt;}
.ws6c{word-spacing:-0.959040pt;}
.ws57{word-spacing:-0.864000pt;}
.ws50{word-spacing:-0.852480pt;}
.ws69{word-spacing:-0.820160pt;}
.ws3a{word-spacing:-0.768000pt;}
.ws2a{word-spacing:-0.683520pt;}
.ws4c{word-spacing:-0.672000pt;}
.ws31{word-spacing:-0.671040pt;}
.ws6b{word-spacing:-0.639360pt;}
.ws4a{word-spacing:-0.598080pt;}
.ws4b{word-spacing:-0.532800pt;}
.ws47{word-spacing:-0.512640pt;}
.wsb{word-spacing:-0.480000pt;}
.ws68{word-spacing:-0.447360pt;}
.ws28{word-spacing:-0.426240pt;}
.ws1f{word-spacing:-0.384000pt;}
.ws29{word-spacing:-0.341760pt;}
.wsc{word-spacing:-0.288000pt;}
.ws36{word-spacing:-0.213120pt;}
.ws9{word-spacing:-0.192000pt;}
.ws1b{word-spacing:-0.170880pt;}
.ws63{word-spacing:-0.149120pt;}
.ws39{word-spacing:-0.128000pt;}
.ws27{word-spacing:-0.106560pt;}
.ws16{word-spacing:-0.096000pt;}
.ws1e{word-spacing:-0.090560pt;}
.ws1c{word-spacing:-0.085440pt;}
.ws37{word-spacing:-0.074560pt;}
.ws2{word-spacing:0.000000pt;}
.ws61{word-spacing:0.074560pt;}
.ws17{word-spacing:0.085440pt;}
.ws8{word-spacing:0.090560pt;}
.ws2e{word-spacing:0.096000pt;}
.ws25{word-spacing:0.106560pt;}
.ws0{word-spacing:0.128000pt;}
.ws43{word-spacing:0.170880pt;}
.ws13{word-spacing:0.192000pt;}
.ws5b{word-spacing:0.213120pt;}
.ws35{word-spacing:0.223680pt;}
.ws6d{word-spacing:0.234560pt;}
.ws48{word-spacing:0.288000pt;}
.ws26{word-spacing:0.319680pt;}
.ws2b{word-spacing:0.427200pt;}
.ws30{word-spacing:0.532800pt;}
.ws2d{word-spacing:0.598080pt;}
.ws3{word-spacing:0.682240pt;}
.ws62{word-spacing:0.768960pt;}
.ws4{word-spacing:0.852800pt;}
.ws5{word-spacing:1.023360pt;}
.ws1{word-spacing:2.688000pt;}
.ws3f{word-spacing:275.798000pt;}
._11{margin-left:-967.168000pt;}
._20{margin-left:-65.631467pt;}
._13{margin-left:-50.832000pt;}
._12{margin-left:-10.721920pt;}
._a{margin-left:-8.965440pt;}
._c{margin-left:-7.392000pt;}
._0{margin-left:-6.272000pt;}
._b{margin-left:-5.228480pt;}
._5{margin-left:-3.753280pt;}
._4{margin-left:-2.728960pt;}
._3{margin-left:-1.705600pt;}
._2{width:1.536000pt;}
._1{width:3.008000pt;}
._d{width:4.833280pt;}
._f{width:5.753600pt;}
._23{width:12.467520pt;}
._24{width:13.491520pt;}
._e{width:15.626880pt;}
._21{width:21.780160pt;}
._22{width:23.124160pt;}
._7{width:93.860267pt;}
._6{width:97.216000pt;}
._14{width:102.857600pt;}
._10{width:134.272000pt;}
._26{width:145.920000pt;}
._1b{width:235.753600pt;}
._15{width:282.568960pt;}
._1d{width:371.904000pt;}
._1f{width:379.432960pt;}
._17{width:383.712000pt;}
._1e{width:390.409600pt;}
._1c{width:402.240000pt;}
._19{width:408.096000pt;}
._1a{width:414.601600pt;}
._8{width:419.712000pt;}
._16{width:438.720000pt;}
._18{width:462.121600pt;}
._9{width:467.271360pt;}
._25{width:806.091733pt;}
.fs11{font-size:42.560000pt;}
.fse{font-size:48.000000pt;}
.fsf{font-size:50.062727pt;}
.fsd{font-size:53.440000pt;}
.fsc{font-size:56.960000pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:71.040000pt;}
.fsb{font-size:74.000000pt;}
.fs7{font-size:74.560000pt;}
.fsa{font-size:85.440000pt;}
.fs4{font-size:90.560000pt;}
.fs3{font-size:96.000000pt;}
.fs9{font-size:106.560000pt;}
.fs12{font-size:112.324102pt;}
.fs8{font-size:117.440000pt;}
.fs6{font-size:128.000000pt;}
.fs2{font-size:170.560000pt;}
.fs5{font-size:192.000000pt;}
.fs1{font-size:213.440000pt;}
.fs13{font-size:234.560000pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:4.999733pt;}
.y85{bottom:7.744833pt;}
.y86{bottom:15.999867pt;}
.y1{bottom:17.340000pt;}
.y84{bottom:30.333333pt;}
.yf{bottom:31.053867pt;}
.yfd{bottom:40.600453pt;}
.y16c{bottom:62.528267pt;}
.y5e{bottom:69.818800pt;}
.yfc{bottom:72.595093pt;}
.y10e{bottom:74.192027pt;}
.yba{bottom:89.724933pt;}
.ye6{bottom:94.078400pt;}
.y5d{bottom:97.418800pt;}
.y122{bottom:99.490667pt;}
.y11f{bottom:99.492267pt;}
.y9f{bottom:101.486000pt;}
.y145{bottom:104.497040pt;}
.yfb{bottom:104.589733pt;}
.y10d{bottom:106.186667pt;}
.y15c{bottom:115.413333pt;}
.y15b{bottom:115.418053pt;}
.y1f{bottom:122.006667pt;}
.ye5{bottom:122.878400pt;}
.y79{bottom:123.690533pt;}
.yed{bottom:123.781600pt;}
.y1e{bottom:124.606667pt;}
.y144{bottom:126.902320pt;}
.y10c{bottom:131.610987pt;}
.yc7{bottom:134.099067pt;}
.y14f{bottom:136.213733pt;}
.yc2{bottom:139.869413pt;}
.y73{bottom:141.964667pt;}
.yd{bottom:144.613333pt;}
.y13c{bottom:145.320667pt;}
.y23{bottom:145.680000pt;}
.y15a{bottom:146.773333pt;}
.y153{bottom:148.040000pt;}
.y154{bottom:148.373333pt;}
.y109{bottom:148.418667pt;}
.y143{bottom:149.307600pt;}
.ye{bottom:149.720000pt;}
.ye4{bottom:151.678400pt;}
.y4f{bottom:155.157920pt;}
.yec{bottom:157.389520pt;}
.y8a{bottom:157.610587pt;}
.y14e{bottom:158.613733pt;}
.y169{bottom:159.840000pt;}
.ye2{bottom:160.006667pt;}
.y5c{bottom:161.219733pt;}
.y6d{bottom:161.845653pt;}
.y3c{bottom:162.796960pt;}
.y10b{bottom:163.605627pt;}
.y135{bottom:164.873333pt;}
.yd9{bottom:165.224000pt;}
.y12d{bottom:165.389067pt;}
.yb1{bottom:165.456533pt;}
.ya9{bottom:167.040000pt;}
.y2c{bottom:167.183200pt;}
.yb9{bottom:167.289600pt;}
.y13b{bottom:167.725947pt;}
.y78{bottom:169.034533pt;}
.ybd{bottom:169.500000pt;}
.y142{bottom:171.712880pt;}
.yc1{bottom:171.864053pt;}
.ye3{bottom:180.478400pt;}
.y4e{bottom:180.768560pt;}
.y14d{bottom:181.013733pt;}
.y89{bottom:183.199867pt;}
.y82{bottom:184.350000pt;}
.y6c{bottom:186.487733pt;}
.y108{bottom:186.818667pt;}
.y12f{bottom:187.775707pt;}
.y12b{bottom:187.794347pt;}
.y15e{bottom:189.301387pt;}
.y5b{bottom:190.019733pt;}
.y13a{bottom:190.131227pt;}
.yeb{bottom:190.997440pt;}
.y141{bottom:194.118160pt;}
.y10a{bottom:195.600267pt;}
.y2b{bottom:195.983200pt;}
.y12c{bottom:198.996987pt;}
.y3b{bottom:200.753680pt;}
.y14c{bottom:201.573733pt;}
.yc0{bottom:203.858693pt;}
.y4d{bottom:206.357840pt;}
.y148{bottom:211.536507pt;}
.y15d{bottom:211.706667pt;}
.y139{bottom:212.536507pt;}
.y14b{bottom:216.203173pt;}
.y140{bottom:216.523440pt;}
.yd1{bottom:219.822960pt;}
.y12e{bottom:221.383627pt;}
.y12a{bottom:221.402267pt;}
.yd8{bottom:221.744000pt;}
.yea{bottom:224.605360pt;}
.y2a{bottom:224.783200pt;}
.y107{bottom:225.218667pt;}
.y11e{bottom:226.400000pt;}
.y6b{bottom:227.608133pt;}
.y4c{bottom:231.947120pt;}
.y147{bottom:233.941787pt;}
.y138{bottom:234.941787pt;}
.ya{bottom:234.946667pt;}
.ybf{bottom:235.853333pt;}
.yb{bottom:238.553467pt;}
.y14a{bottom:238.608453pt;}
.y3a{bottom:238.710400pt;}
.y13f{bottom:238.928720pt;}
.y16a{bottom:240.840000pt;}
.yc{bottom:241.220133pt;}
.y9b{bottom:244.622133pt;}
.yf7{bottom:247.736800pt;}
.y98{bottom:250.506533pt;}
.y44{bottom:251.363333pt;}
.yd0{bottom:251.817600pt;}
.y146{bottom:256.347067pt;}
.y137{bottom:257.347067pt;}
.ye9{bottom:258.213280pt;}
.y149{bottom:261.013733pt;}
.y13e{bottom:261.334000pt;}
.y106{bottom:263.618667pt;}
.y88{bottom:266.366667pt;}
.y21{bottom:267.040000pt;}
.y22{bottom:267.373333pt;}
.y3f{bottom:268.960000pt;}
.yb0{bottom:269.870000pt;}
.ya0{bottom:270.270933pt;}
.ya8{bottom:270.308533pt;}
.y53{bottom:271.007360pt;}
.ye1{bottom:271.398667pt;}
.y9c{bottom:271.566933pt;}
.y99{bottom:273.270400pt;}
.yb8{bottom:275.345467pt;}
.y4b{bottom:276.061333pt;}
.yf6{bottom:276.536800pt;}
.y39{bottom:276.667120pt;}
.yd7{bottom:278.264000pt;}
.y43{bottom:278.515467pt;}
.y121{bottom:283.520000pt;}
.ycf{bottom:283.812240pt;}
.y14{bottom:289.206667pt;}
.y17{bottom:290.006667pt;}
.y77{bottom:290.378533pt;}
.y45{bottom:291.020000pt;}
.y164{bottom:291.129413pt;}
.ye8{bottom:291.821200pt;}
.y52{bottom:296.596640pt;}
.y33{bottom:298.996613pt;}
.y9e{bottom:300.008533pt;}
.yaf{bottom:301.150000pt;}
.y120{bottom:301.412267pt;}
.ya7{bottom:301.588533pt;}
.y105{bottom:302.018667pt;}
.yf5{bottom:305.336800pt;}
.yb7{bottom:306.625467pt;}
.y4a{bottom:308.055973pt;}
.y8f{bottom:309.825200pt;}
.ye0{bottom:310.326667pt;}
.y3e{bottom:312.160000pt;}
.y38{bottom:314.538400pt;}
.yce{bottom:315.806880pt;}
.y9a{bottom:317.404267pt;}
.y13{bottom:318.006667pt;}
.y168{bottom:319.840000pt;}
.y51{bottom:322.185920pt;}
.y163{bottom:323.124053pt;}
.y9d{bottom:324.837333pt;}
.y7{bottom:325.446667pt;}
.y13d{bottom:327.453733pt;}
.y8{bottom:329.220000pt;}
.y9{bottom:331.719867pt;}
.yf4{bottom:334.136800pt;}
.y32{bottom:334.197893pt;}
.y70{bottom:334.239253pt;}
.yd6{bottom:334.784000pt;}
.y97{bottom:335.313333pt;}
.yee{bottom:338.613333pt;}
.y8e{bottom:338.697200pt;}
.y49{bottom:340.050613pt;}
.yae{bottom:340.120000pt;}
.y104{bottom:340.418667pt;}
.ya6{bottom:340.675867pt;}
.y87{bottom:341.866533pt;}
.y62{bottom:344.144933pt;}
.yb6{bottom:344.847867pt;}
.y50{bottom:347.775200pt;}
.ycd{bottom:347.801520pt;}
.y113{bottom:348.304987pt;}
.ydf{bottom:349.254667pt;}
.y27{bottom:350.919333pt;}
.y37{bottom:352.673333pt;}
.y1d{bottom:353.040000pt;}
.y162{bottom:355.118693pt;}
.y123{bottom:358.530667pt;}
.y5a{bottom:358.752400pt;}
.y6f{bottom:358.881333pt;}
.y1c{bottom:359.606667pt;}
.y18{bottom:361.606667pt;}
.y19{bottom:362.006667pt;}
.yf3{bottom:362.936800pt;}
.y2d{bottom:364.269600pt;}
.y8d{bottom:367.497200pt;}
.y129{bottom:368.048000pt;}
.y31{bottom:369.399173pt;}
.yad{bottom:371.400000pt;}
.y76{bottom:371.722533pt;}
.y61{bottom:371.744933pt;}
.ya5{bottom:371.955867pt;}
.y48{bottom:372.045253pt;}
.yb5{bottom:376.127867pt;}
.y103{bottom:378.818667pt;}
.ycc{bottom:379.796160pt;}
.y59{bottom:386.352400pt;}
.y112{bottom:386.693227pt;}
.y161{bottom:387.113333pt;}
.yde{bottom:388.182667pt;}
.yd5{bottom:391.304000pt;}
.yf2{bottom:391.736800pt;}
.y71{bottom:392.415067pt;}
.y83{bottom:392.500000pt;}
.y167{bottom:395.840000pt;}
.yc4{bottom:397.486933pt;}
.y166{bottom:398.840000pt;}
.y47{bottom:404.039893pt;}
.y30{bottom:404.600453pt;}
.y42{bottom:404.893333pt;}
.y128{bottom:406.448000pt;}
.y16{bottom:407.456667pt;}
.ycb{bottom:411.790800pt;}
.y5{bottom:415.780000pt;}
.y102{bottom:417.218667pt;}
.y155{bottom:419.506667pt;}
.y159{bottom:419.523333pt;}
.y6{bottom:421.886667pt;}
.y72{bottom:423.380000pt;}
.y111{bottom:425.081467pt;}
.y114{bottom:425.591333pt;}
.ydd{bottom:427.110667pt;}
.y158{bottom:428.845200pt;}
.y60{bottom:429.514133pt;}
.y92{bottom:429.825200pt;}
.y41{bottom:433.693333pt;}
.y46{bottom:436.034533pt;}
.y11b{bottom:438.089973pt;}
.y58{bottom:438.555467pt;}
.yd3{bottom:438.920000pt;}
.y2f{bottom:439.801733pt;}
.y81{bottom:441.750720pt;}
.y127{bottom:444.848000pt;}
.y26{bottom:445.621600pt;}
.yc5{bottom:448.908000pt;}
.yd2{bottom:453.320000pt;}
.y11a{bottom:454.335733pt;}
.y101{bottom:455.618667pt;}
.y91{bottom:458.697200pt;}
.y5f{bottom:459.754133pt;}
.y40{bottom:462.493333pt;}
.ya4{bottom:463.680933pt;}
.yac{bottom:464.140000pt;}
.y15{bottom:465.056667pt;}
.yb4{bottom:465.358133pt;}
.y36{bottom:465.388267pt;}
.ydc{bottom:466.038667pt;}
.y25{bottom:466.581600pt;}
.y57{bottom:467.355467pt;}
.yd4{bottom:467.720000pt;}
.y160{bottom:469.239387pt;}
.y165{bottom:472.340000pt;}
.y80{bottom:473.745360pt;}
.y6a{bottom:474.930507pt;}
.y2e{bottom:475.561733pt;}
.y7a{bottom:479.413333pt;}
.y126{bottom:483.248000pt;}
.y90{bottom:487.497200pt;}
.yab{bottom:487.741333pt;}
.ya3{bottom:489.846400pt;}
.yb3{bottom:491.508800pt;}
.y15f{bottom:491.644667pt;}
.y100{bottom:494.186667pt;}
.y35{bottom:494.188267pt;}
.y117{bottom:495.431173pt;}
.y75{bottom:497.066533pt;}
.y7d{bottom:497.527067pt;}
.y110{bottom:498.372267pt;}
.y69{bottom:499.572587pt;}
.y130{bottom:502.313333pt;}
.y1a{bottom:502.940000pt;}
.ydb{bottom:504.966667pt;}
.y134{bottom:504.980000pt;}
.y3{bottom:505.446667pt;}
.y7f{bottom:505.740000pt;}
.y131{bottom:506.813200pt;}
.yf9{bottom:509.085360pt;}
.ybc{bottom:510.326667pt;}
.y116{bottom:511.676933pt;}
.y132{bottom:513.480000pt;}
.y4{bottom:514.553333pt;}
.yca{bottom:515.065333pt;}
.y119{bottom:515.551333pt;}
.yc9{bottom:519.065333pt;}
.y157{bottom:519.118693pt;}
.y11d{bottom:519.278693pt;}
.y34{bottom:522.988267pt;}
.y29{bottom:523.140000pt;}
.y68{bottom:524.214667pt;}
.y7c{bottom:528.967067pt;}
.yfa{bottom:529.946667pt;}
.y8c{bottom:531.489200pt;}
.y118{bottom:531.797093pt;}
.yff{bottom:532.418667pt;}
.y11c{bottom:535.524453pt;}
.y150{bottom:538.544933pt;}
.yf8{bottom:541.080000pt;}
.yaa{bottom:542.893333pt;}
.ya2{bottom:543.582400pt;}
.yb2{bottom:544.644800pt;}
.ye7{bottom:549.333600pt;}
.yf1{bottom:550.168267pt;}
.y156{bottom:551.113333pt;}
.yda{bottom:551.886533pt;}
.y28{bottom:551.940000pt;}
.ybe{bottom:555.060000pt;}
.y7e{bottom:555.513600pt;}
.y136{bottom:555.666933pt;}
.y67{bottom:556.774667pt;}
.y10f{bottom:557.419600pt;}
.y115{bottom:557.500267pt;}
.y7b{bottom:557.767067pt;}
.ybb{bottom:558.265333pt;}
.y152{bottom:558.333600pt;}
.yc3{bottom:560.053333pt;}
.y8b{bottom:560.289200pt;}
.y74{bottom:560.713333pt;}
.yc8{bottom:562.265333pt;}
.y3d{bottom:562.333600pt;}
.y54{bottom:562.666933pt;}
.y133{bottom:565.000267pt;}
.ya1{bottom:565.850933pt;}
.y24{bottom:568.374267pt;}
.yfe{bottom:568.586667pt;}
.y151{bottom:569.062800pt;}
.y1b{bottom:570.006667pt;}
.y6e{bottom:582.270853pt;}
.y12{bottom:637.328267pt;}
.y20{bottom:637.493333pt;}
.y95{bottom:638.160000pt;}
.yf0{bottom:638.473067pt;}
.y55{bottom:639.493333pt;}
.y96{bottom:640.660000pt;}
.y65{bottom:640.826667pt;}
.yef{bottom:640.973067pt;}
.y16b{bottom:641.159867pt;}
.y56{bottom:641.993333pt;}
.y124{bottom:642.326667pt;}
.y66{bottom:643.326667pt;}
.y125{bottom:644.993333pt;}
.y2{bottom:648.220000pt;}
.y94{bottom:657.096027pt;}
.y11{bottom:658.429360pt;}
.y64{bottom:659.762693pt;}
.y93{bottom:684.286667pt;}
.y10{bottom:685.620000pt;}
.y63{bottom:686.953333pt;}
.h22{height:16.000000pt;}
.h24{height:33.367003pt;}
.h2a{height:37.027031pt;}
.h1e{height:42.741562pt;}
.h2e{height:44.388750pt;}
.h28{height:46.468750pt;}
.h23{height:47.109375pt;}
.h1b{height:50.668000pt;}
.h1{height:56.250000pt;}
.h14{height:59.198906pt;}
.h16{height:59.540666pt;}
.h15{height:62.035781pt;}
.h26{height:66.515625pt;}
.h1a{height:66.750000pt;}
.h4{height:69.703125pt;}
.h7{height:72.000000pt;}
.h1c{height:72.626953pt;}
.hd{height:77.763750pt;}
.h27{height:79.138750pt;}
.h29{height:83.703000pt;}
.h17{height:84.375000pt;}
.h13{height:89.111250pt;}
.h21{height:91.164480pt;}
.h18{height:93.656250pt;}
.h2d{height:94.363517pt;}
.h5{height:94.451250pt;}
.h8{height:100.125000pt;}
.h20{height:102.432000pt;}
.h2f{height:104.582812pt;}
.h19{height:111.138750pt;}
.h31{height:112.125000pt;}
.h2c{height:112.444050pt;}
.h32{height:116.157000pt;}
.h3{height:118.176094pt;}
.h30{height:119.849817pt;}
.h2b{height:121.520000pt;}
.h12{height:122.486250pt;}
.h1d{height:125.562500pt;}
.h25{height:127.303125pt;}
.h9{height:133.031250pt;}
.h11{height:133.500000pt;}
.ha{height:136.576000pt;}
.he{height:177.888750pt;}
.hc{height:184.975467pt;}
.h2{height:187.593750pt;}
.hb{height:189.058333pt;}
.h6{height:203.213810pt;}
.hf{height:203.260000pt;}
.h1f{height:209.375469pt;}
.h33{height:244.638750pt;}
.h10{height:287.100000pt;}
.h0{height:720.000000pt;}
.w2{width:29.333333pt;}
.w4{width:121.840000pt;}
.w3{width:123.520000pt;}
.w1{width:241.333333pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x82{left:1.777733pt;}
.x5b{left:4.860400pt;}
.xce{left:15.273653pt;}
.x60{left:16.659733pt;}
.x7{left:21.060800pt;}
.x69{left:23.775067pt;}
.x56{left:28.433333pt;}
.xc8{left:35.196667pt;}
.x12{left:36.266667pt;}
.xc6{left:37.630000pt;}
.x7c{left:39.776667pt;}
.x4a{left:40.807333pt;}
.x8{left:42.173333pt;}
.x49{left:43.933333pt;}
.x7f{left:45.900000pt;}
.x3f{left:47.763333pt;}
.x1f{left:49.946667pt;}
.x59{left:51.367333pt;}
.x48{left:52.266400pt;}
.xe{left:53.990000pt;}
.xb9{left:56.491120pt;}
.x5a{left:57.562066pt;}
.x7e{left:58.460000pt;}
.xd{left:59.371333pt;}
.x9b{left:61.246667pt;}
.xba{left:62.735520pt;}
.xc{left:64.003333pt;}
.x45{left:66.928533pt;}
.xa0{left:68.193333pt;}
.x8b{left:70.034667pt;}
.x5f{left:71.595733pt;}
.x57{left:76.278773pt;}
.xf{left:77.990000pt;}
.x46{left:80.208533pt;}
.x47{left:82.242000pt;}
.xbb{left:83.370000pt;}
.x50{left:84.786667pt;}
.xb{left:87.099600pt;}
.xaf{left:89.600000pt;}
.x85{left:91.706667pt;}
.x89{left:93.722667pt;}
.x7b{left:95.600000pt;}
.x8a{left:101.426667pt;}
.x78{left:107.053333pt;}
.x9a{left:109.098267pt;}
.xb3{left:110.100000pt;}
.x76{left:116.013333pt;}
.x20{left:117.251600pt;}
.x7a{left:118.416667pt;}
.x1d{left:121.386933pt;}
.x22{left:128.148533pt;}
.x97{left:129.844800pt;}
.xcd{left:141.200933pt;}
.x79{left:142.653333pt;}
.xc7{left:148.933333pt;}
.x37{left:150.966240pt;}
.x77{left:152.013333pt;}
.x38{left:155.521680pt;}
.x36{left:158.398800pt;}
.xd0{left:172.266667pt;}
.x23{left:178.414667pt;}
.x24{left:179.544667pt;}
.x25{left:182.972800pt;}
.x29{left:185.737467pt;}
.xcf{left:219.100000pt;}
.x86{left:221.114667pt;}
.x98{left:222.654667pt;}
.x5{left:230.600000pt;}
.x4{left:233.933333pt;}
.x6{left:235.266667pt;}
.xb8{left:239.815867pt;}
.xb7{left:249.074053pt;}
.x11{left:251.600000pt;}
.x83{left:265.688667pt;}
.x95{left:267.311333pt;}
.x3{left:269.933333pt;}
.x1a{left:271.266667pt;}
.x68{left:281.033067pt;}
.xb0{left:287.612720pt;}
.xb6{left:300.837333pt;}
.x17{left:306.766667pt;}
.x2{left:309.600000pt;}
.x1{left:317.780000pt;}
.x51{left:322.894133pt;}
.x53{left:328.238133pt;}
.x52{left:337.566133pt;}
.x99{left:339.577627pt;}
.x88{left:341.282667pt;}
.x87{left:344.882667pt;}
.x1e{left:355.603333pt;}
.x21{left:373.827600pt;}
.x6c{left:378.920000pt;}
.x10{left:385.600000pt;}
.x3b{left:387.044827pt;}
.xc9{left:389.630213pt;}
.x14{left:390.933333pt;}
.xcb{left:393.902987pt;}
.x1c{left:395.387200pt;}
.x7d{left:397.100000pt;}
.x39{left:398.408347pt;}
.xae{left:401.600000pt;}
.x3a{left:403.684267pt;}
.x18{left:404.594453pt;}
.x6f{left:409.000000pt;}
.x9{left:414.759813pt;}
.x54{left:417.100000pt;}
.xc5{left:418.173067pt;}
.xc3{left:420.710000pt;}
.xc2{left:422.950000pt;}
.x81{left:424.978667pt;}
.x55{left:426.826400pt;}
.x6d{left:429.320000pt;}
.x44{left:430.984533pt;}
.x6b{left:433.331333pt;}
.x62{left:437.766667pt;}
.x40{left:439.100000pt;}
.x4e{left:440.433333pt;}
.x63{left:442.433333pt;}
.x13{left:443.933333pt;}
.x4f{left:445.100000pt;}
.x8e{left:447.458133pt;}
.x6e{left:448.360000pt;}
.x8d{left:450.338133pt;}
.x91{left:453.698133pt;}
.x8c{left:455.186133pt;}
.x94{left:457.656667pt;}
.x90{left:461.618133pt;}
.x93{left:464.939573pt;}
.x8f{left:469.826133pt;}
.x64{left:479.477733pt;}
.xb1{left:487.452160pt;}
.x4b{left:492.519200pt;}
.xc4{left:507.190000pt;}
.x84{left:529.329200pt;}
.x9f{left:535.780000pt;}
.x4c{left:537.440000pt;}
.xa7{left:546.776987pt;}
.xca{left:548.946667pt;}
.x2b{left:550.621067pt;}
.x2a{left:551.577733pt;}
.xa8{left:555.020107pt;}
.x2c{left:556.879547pt;}
.x2d{left:562.582667pt;}
.x61{left:575.347760pt;}
.x19{left:576.681093pt;}
.x4d{left:578.014427pt;}
.xc1{left:585.705173pt;}
.xa9{left:589.200000pt;}
.xc0{left:590.346533pt;}
.x26{left:597.754400pt;}
.xa{left:600.656853pt;}
.x96{left:601.844800pt;}
.x2e{left:602.910347pt;}
.x28{left:605.437973pt;}
.x27{left:609.517733pt;}
.xac{left:611.600133pt;}
.xad{left:614.766667pt;}
.x3c{left:616.855200pt;}
.xaa{left:641.180133pt;}
.x92{left:642.433333pt;}
.x3d{left:650.070000pt;}
.x58{left:653.833333pt;}
.x3e{left:654.790560pt;}
.xa5{left:655.767867pt;}
.x15{left:658.266667pt;}
.xa6{left:664.972907pt;}
.xb5{left:667.933333pt;}
.x33{left:672.453467pt;}
.x70{left:676.126667pt;}
.x72{left:687.250000pt;}
.xb2{left:689.453840pt;}
.xcc{left:693.878667pt;}
.x9c{left:701.538000pt;}
.x1b{left:705.470133pt;}
.x35{left:706.813333pt;}
.x75{left:709.410000pt;}
.x5c{left:712.053333pt;}
.x16{left:716.266667pt;}
.x6a{left:723.533733pt;}
.x73{left:724.766667pt;}
.x34{left:727.839867pt;}
.x71{left:734.134667pt;}
.x5d{left:736.296533pt;}
.x74{left:738.686667pt;}
.x5e{left:742.213253pt;}
.xb4{left:743.933333pt;}
.x32{left:745.348667pt;}
.x2f{left:752.226533pt;}
.x41{left:758.163200pt;}
.x31{left:763.444667pt;}
.xbc{left:764.473333pt;}
.x30{left:768.066533pt;}
.xbf{left:771.846667pt;}
.xbe{left:781.827173pt;}
.xa1{left:785.351600pt;}
.xab{left:786.432800pt;}
.x42{left:788.377200pt;}
.xa2{left:794.556640pt;}
.xbd{left:798.472693pt;}
.x43{left:801.817200pt;}
.xd1{left:817.600000pt;}
.x65{left:819.670267pt;}
.x9e{left:828.796000pt;}
.x9d{left:833.740000pt;}
.x80{left:857.905867pt;}
.x66{left:859.244267pt;}
.x67{left:866.358667pt;}
.xa3{left:900.100640pt;}
.xa4{left:911.697120pt;}
}




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