
    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_15715e5f0b36024fad7d4425.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.052734;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_e3c5aa219b9bcf03aa088e56.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.185547;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_f999825a8ccca64dde42969a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d22088aad8b65d32469feae1.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_526932e5337eafe0ff5ce2da.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_814cecf4eefee30ee61ba58e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_498e2a2948fbcb0b3174998a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107422;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_f0e66740b47c13f990ee575a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.062988;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_537c557c4fab60d337803189.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.185547;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_18ffb208e0b37e8a7923411e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.159668;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_1978aed931a2a4f4808e9317.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.119629;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_6059ba87cba83f4f51a2a896.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a1eed25a14241382e53dcfd0.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_f6e0fbd31336bab014e3b053.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.750000;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_13c914d2759ed2678d679cee.woff2')format("woff");}.fff{font-family:fff;line-height:0.853027;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_f82e07eb6b7d0ebcd653e47a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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);}
.m1{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(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:-172.980000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:16.416000px;}
.v3{vertical-align:124.128000px;}
.ls16{letter-spacing:-2.640000px;}
.ls25{letter-spacing:-2.058000px;}
.ls3c{letter-spacing:-1.392000px;}
.lsf{letter-spacing:-1.008000px;}
.ls4f{letter-spacing:-0.918000px;}
.ls42{letter-spacing:-0.912000px;}
.ls4c{letter-spacing:-0.888000px;}
.ls28{letter-spacing:-0.828000px;}
.ls35{letter-spacing:-0.810000px;}
.ls15{letter-spacing:-0.768000px;}
.ls45{letter-spacing:-0.744000px;}
.ls4e{letter-spacing:-0.666000px;}
.ls30{letter-spacing:-0.624000px;}
.ls27{letter-spacing:-0.554400px;}
.ls36{letter-spacing:-0.544200px;}
.ls12{letter-spacing:-0.528000px;}
.lsc{letter-spacing:-0.480600px;}
.ls4d{letter-spacing:-0.453600px;}
.ls10{letter-spacing:-0.400200px;}
.ls4b{letter-spacing:-0.378000px;}
.ls26{letter-spacing:-0.294000px;}
.ls2b{letter-spacing:-0.267600px;}
.ls17{letter-spacing:-0.229800px;}
.ls11{letter-spacing:-0.150000px;}
.ls3f{letter-spacing:-0.069000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.002304px;}
.ls58{letter-spacing:0.014400px;}
.ls57{letter-spacing:0.046080px;}
.ls3b{letter-spacing:0.048120px;}
.ls1e{letter-spacing:0.050700px;}
.ls52{letter-spacing:0.079200px;}
.ls59{letter-spacing:0.079800px;}
.ls54{letter-spacing:0.090000px;}
.ls1a{letter-spacing:0.101400px;}
.ls53{letter-spacing:0.146400px;}
.ls3{letter-spacing:0.175800px;}
.ls1b{letter-spacing:0.181200px;}
.ls14{letter-spacing:0.240000px;}
.ls37{letter-spacing:0.272400px;}
.ls63{letter-spacing:0.352200px;}
.ls2{letter-spacing:0.432000px;}
.ls55{letter-spacing:0.465600px;}
.ls1{letter-spacing:0.492192px;}
.ls56{letter-spacing:0.574800px;}
.ls3d{letter-spacing:0.575400px;}
.lse{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.760320px;}
.ls34{letter-spacing:0.767808px;}
.ls13{letter-spacing:0.816000px;}
.ls31{letter-spacing:0.887808px;}
.ls6{letter-spacing:0.906000px;}
.ls22{letter-spacing:0.960000px;}
.ls24{letter-spacing:0.990000px;}
.ls5{letter-spacing:0.996000px;}
.ls32{letter-spacing:1.008000px;}
.ls43{letter-spacing:1.080000px;}
.lsd{letter-spacing:1.152000px;}
.ls51{letter-spacing:1.368000px;}
.ls23{letter-spacing:1.488000px;}
.ls50{letter-spacing:1.704000px;}
.ls1c{letter-spacing:2.250720px;}
.ls7{letter-spacing:2.927808px;}
.ls5e{letter-spacing:3.541536px;}
.ls5f{letter-spacing:3.654720px;}
.ls5d{letter-spacing:3.721536px;}
.ls61{letter-spacing:3.774720px;}
.ls60{letter-spacing:3.834720px;}
.ls33{letter-spacing:5.127840px;}
.ls47{letter-spacing:12.620736px;}
.ls2f{letter-spacing:16.007808px;}
.lsb{letter-spacing:18.047808px;}
.ls38{letter-spacing:18.191808px;}
.ls1f{letter-spacing:19.650720px;}
.ls44{letter-spacing:39.660000px;}
.ls41{letter-spacing:49.161600px;}
.ls39{letter-spacing:57.297600px;}
.ls46{letter-spacing:57.348000px;}
.ls5b{letter-spacing:57.417600px;}
.ls5c{letter-spacing:57.468000px;}
.ls3a{letter-spacing:61.247808px;}
.ls49{letter-spacing:61.833600px;}
.ls48{letter-spacing:61.884000px;}
.ls18{letter-spacing:63.540000px;}
.ls1d{letter-spacing:64.850688px;}
.ls19{letter-spacing:78.720000px;}
.ls5a{letter-spacing:89.100000px;}
.ls3e{letter-spacing:108.146880px;}
.lsa{letter-spacing:111.441600px;}
.ls2d{letter-spacing:112.060800px;}
.ls2e{letter-spacing:112.180800px;}
.ls2c{letter-spacing:112.240800px;}
.ls2a{letter-spacing:117.279360px;}
.ls29{letter-spacing:117.423360px;}
.ls4a{letter-spacing:130.149696px;}
.ls20{letter-spacing:138.290688px;}
.ls21{letter-spacing:138.410688px;}
.ls40{letter-spacing:279.539808px;}
.ls9{letter-spacing:549.711840px;}
.ls62{letter-spacing:2081.541216px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(70,94,156),0 0.015em rgb(70,94,156),0.015em 0 rgb(70,94,156),0 -0.015em  rgb(70,94,156);}
.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(70,94,156);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2a{word-spacing:-108.072000px;}
.ws41{word-spacing:-84.312000px;}
.ws1{word-spacing:-84.240000px;}
.ws26{word-spacing:-53.482752px;}
.ws2b{word-spacing:-43.165560px;}
.ws8{word-spacing:-41.424192px;}
.ws2f{word-spacing:-41.312160px;}
.ws21{word-spacing:-41.280192px;}
.wse{word-spacing:-41.048160px;}
.ws9{word-spacing:-40.992192px;}
.ws28{word-spacing:-40.847592px;}
.ws2c{word-spacing:-40.521600px;}
.wsf{word-spacing:-40.512192px;}
.ws24{word-spacing:-40.504560px;}
.ws29{word-spacing:-40.320312px;}
.ws25{word-spacing:-40.272192px;}
.ws20{word-spacing:-40.232160px;}
.wsb{word-spacing:-39.831960px;}
.ws7{word-spacing:-39.791592px;}
.wsd{word-spacing:-39.704160px;}
.ws23{word-spacing:-39.687960px;}
.ws1f{word-spacing:-39.648192px;}
.ws10{word-spacing:-39.504192px;}
.ws22{word-spacing:-39.422160px;}
.ws2e{word-spacing:-39.360192px;}
.wsa{word-spacing:-39.264192px;}
.ws6{word-spacing:-39.015024px;}
.ws27{word-spacing:-38.880192px;}
.ws17{word-spacing:-38.157312px;}
.ws11{word-spacing:-37.632192px;}
.ws15{word-spacing:-37.629312px;}
.ws19{word-spacing:-37.619280px;}
.ws14{word-spacing:-36.810480px;}
.ws13{word-spacing:-36.770712px;}
.ws16{word-spacing:-36.720012px;}
.ws18{word-spacing:-36.629280px;}
.ws1e{word-spacing:-34.867872px;}
.ws1a{word-spacing:-34.611312px;}
.ws37{word-spacing:-34.443264px;}
.ws38{word-spacing:-34.074720px;}
.ws1b{word-spacing:-33.626880px;}
.wsc{word-spacing:-33.476880px;}
.ws12{word-spacing:-33.437112px;}
.ws1c{word-spacing:-33.112512px;}
.ws5{word-spacing:-32.739264px;}
.ws34{word-spacing:-32.706720px;}
.ws31{word-spacing:-32.328720px;}
.ws33{word-spacing:-32.285664px;}
.ws35{word-spacing:-32.040720px;}
.ws36{word-spacing:-31.821264px;}
.ws32{word-spacing:-31.818720px;}
.ws3{word-spacing:-30.456000px;}
.ws42{word-spacing:-30.416232px;}
.ws3d{word-spacing:-30.385104px;}
.ws3c{word-spacing:-30.243360px;}
.ws4{word-spacing:-30.239832px;}
.ws43{word-spacing:-30.024000px;}
.ws3a{word-spacing:-29.924160px;}
.ws40{word-spacing:-29.890104px;}
.ws3b{word-spacing:-29.867760px;}
.ws39{word-spacing:-29.856960px;}
.ws3e{word-spacing:-29.856384px;}
.ws3f{word-spacing:-29.824704px;}
.ws0{word-spacing:-24.440544px;}
.ws30{word-spacing:-24.408000px;}
.ws1d{word-spacing:-23.612544px;}
.ws2d{word-spacing:-18.014400px;}
.ws2{word-spacing:0.000000px;}
._c{margin-left:-27.436608px;}
._d{margin-left:-17.689392px;}
._8{margin-left:-14.311248px;}
._46{margin-left:-13.202784px;}
._6{margin-left:-12.065664px;}
._0{margin-left:-9.985680px;}
._45{margin-left:-8.792208px;}
._b{margin-left:-7.709904px;}
._e{margin-left:-6.377472px;}
._5{margin-left:-5.286384px;}
._3{margin-left:-4.250592px;}
._2{margin-left:-3.183840px;}
._9{margin-left:-2.171424px;}
._1{margin-left:-1.157760px;}
._4{width:1.730592px;}
._a{width:2.734704px;}
._7{width:3.794976px;}
._1f{width:5.760480px;}
._20{width:9.085056px;}
._16{width:11.030616px;}
._22{width:12.801120px;}
._21{width:15.634176px;}
._1b{width:17.206560px;}
._12{width:18.560160px;}
._1a{width:20.027568px;}
._3f{width:28.366800px;}
._42{width:30.895728px;}
._10{width:41.876256px;}
._f{width:43.582248px;}
._11{width:44.742264px;}
._18{width:46.228680px;}
._19{width:47.680740px;}
._3e{width:51.221184px;}
._3d{width:54.100464px;}
._23{width:62.255616px;}
._24{width:63.386112px;}
._17{width:64.409232px;}
._13{width:66.119712px;}
._25{width:68.033664px;}
._14{width:81.485184px;}
._3b{width:85.753440px;}
._2d{width:91.128672px;}
._43{width:93.967008px;}
._44{width:94.986000px;}
._29{width:98.753328px;}
._28{width:100.419840px;}
._27{width:105.430944px;}
._26{width:107.367456px;}
._2e{width:114.570720px;}
._40{width:129.477600px;}
._41{width:131.067456px;}
._1d{width:137.050968px;}
._1c{width:138.590616px;}
._38{width:143.726880px;}
._35{width:159.514800px;}
._34{width:160.697208px;}
._2a{width:164.586144px;}
._2c{width:176.391456px;}
._2f{width:192.474720px;}
._33{width:206.906832px;}
._32{width:214.736208px;}
._39{width:228.491952px;}
._3a{width:231.095376px;}
._3c{width:243.609888px;}
._31{width:279.661440px;}
._1e{width:330.886464px;}
._30{width:395.658720px;}
._2b{width:406.239552px;}
._36{width:460.629024px;}
._15{width:536.360640px;}
._37{width:671.142336px;}
.fcd{color:rgb(170,43,30);}
.fc1{color:rgb(216,62,44);}
.fc2{color:rgb(0,0,0);}
.fc8{color:transparent;}
.fc4{color:rgb(95,95,95);}
.fc5{color:rgb(127,127,127);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(204,221,234);}
.fc7{color:rgb(255,0,0);}
.fca{color:rgb(253,160,35);}
.fc9{color:rgb(255,192,0);}
.fcb{color:rgb(0,112,192);}
.fc3{color:rgb(70,94,156);}
.fcc{color:rgb(192,0,0);}
.fs23{font-size:17.280000px;}
.fs22{font-size:23.760000px;}
.fs1e{font-size:36.720000px;}
.fs1d{font-size:41.184000px;}
.fs1f{font-size:47.520000px;}
.fs1c{font-size:54.000000px;}
.fs10{font-size:56.160000px;}
.fs9{font-size:60.480000px;}
.fs15{font-size:64.800000px;}
.fs13{font-size:67.104000px;}
.fs18{font-size:71.280000px;}
.fs1b{font-size:77.760000px;}
.fs20{font-size:84.240000px;}
.fs21{font-size:95.184000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.fsa{font-size:120.960000px;}
.fsb{font-size:121.104000px;}
.fs12{font-size:125.280000px;}
.fs11{font-size:125.424000px;}
.fse{font-size:131.760000px;}
.fsd{font-size:131.904000px;}
.fs17{font-size:138.240000px;}
.fs16{font-size:138.384000px;}
.fs0{font-size:144.720000px;}
.fs1{font-size:144.864000px;}
.fs19{font-size:155.520000px;}
.fs3{font-size:168.480000px;}
.fs6{font-size:168.624000px;}
.fs1a{font-size:175.104000px;}
.fs14{font-size:192.240000px;}
.fs7{font-size:192.384000px;}
.fsf{font-size:216.144000px;}
.fs8{font-size:239.904000px;}
.fsc{font-size:276.624000px;}
.fs24{font-size:287.424000px;}
.fs5{font-size:361.008000px;}
.y192{bottom:-726.660000px;}
.y191{bottom:-674.790000px;}
.yb7{bottom:-650.055000px;}
.y190{bottom:-622.905000px;}
.yb6{bottom:-574.950000px;}
.y18f{bottom:-571.035000px;}
.y18e{bottom:-519.150000px;}
.yb5{bottom:-511.200000px;}
.y18d{bottom:-467.280000px;}
.yb4{bottom:-435.525000px;}
.y18c{bottom:-415.410000px;}
.yb3{bottom:-373.395000px;}
.y18b{bottom:-363.525000px;}
.y18a{bottom:-311.655000px;}
.yb2{bottom:-310.710000px;}
.y16b{bottom:-270.000000px;}
.y189{bottom:-259.770000px;}
.yb1{bottom:-248.580000px;}
.y16a{bottom:-230.580000px;}
.y188{bottom:-207.900000px;}
.y147{bottom:-194.910000px;}
.y169{bottom:-191.130000px;}
.yb0{bottom:-185.370000px;}
.y187{bottom:-156.030000px;}
.y168{bottom:-151.125000px;}
.y146{bottom:-147.348000px;}
.yaf{bottom:-121.032000px;}
.y167{bottom:-111.708000px;}
.y186{bottom:-104.148000px;}
.y145{bottom:-99.792000px;}
.y166{bottom:-72.252000px;}
.yae{bottom:-56.736000px;}
.y185{bottom:-52.272000px;}
.y144{bottom:-52.236000px;}
.y127{bottom:-42.840000px;}
.y165{bottom:-32.256000px;}
.y143{bottom:-4.716000px;}
.y184{bottom:-0.396060px;}
.y0{bottom:0.000000px;}
.yd5{bottom:2.412000px;}
.y126{bottom:4.716000px;}
.y164{bottom:7.200000px;}
.yad{bottom:7.560000px;}
.y5d{bottom:19.044000px;}
.y1ca{bottom:26.964000px;}
.yc3{bottom:32.148000px;}
.y112{bottom:41.580000px;}
.y72{bottom:42.264000px;}
.y142{bottom:42.840000px;}
.y116{bottom:46.260000px;}
.y163{bottom:46.620000px;}
.yb{bottom:47.412000px;}
.y62{bottom:49.032000px;}
.y183{bottom:51.480000px;}
.y125{bottom:52.272000px;}
.y1ab{bottom:53.352000px;}
.y4{bottom:54.216000px;}
.y5c{bottom:55.260000px;}
.y1c9{bottom:59.364000px;}
.y46{bottom:61.596000px;}
.y9f{bottom:62.280000px;}
.yd4{bottom:62.964000px;}
.yac{bottom:71.856000px;}
.yf7{bottom:74.556000px;}
.yc2{bottom:75.384000px;}
.y1c3{bottom:79.056000px;}
.ya{bottom:79.848000px;}
.y153{bottom:84.456000px;}
.y162{bottom:86.616000px;}
.y141{bottom:90.396000px;}
.y10f{bottom:91.260000px;}
.y1c8{bottom:91.800000px;}
.y115{bottom:95.904000px;}
.y8a{bottom:95.976000px;}
.y1b6{bottom:96.516000px;}
.y1aa{bottom:97.128000px;}
.yec{bottom:99.468000px;}
.y124{bottom:99.828000px;}
.y45{bottom:101.052000px;}
.y134{bottom:103.068000px;}
.y182{bottom:103.356000px;}
.y177{bottom:103.464000px;}
.y101{bottom:103.755000px;}
.yfb{bottom:103.785000px;}
.yfe{bottom:103.830000px;}
.y10a{bottom:103.860000px;}
.y10d{bottom:103.890000px;}
.y110{bottom:103.935000px;}
.y113{bottom:103.968000px;}
.y61{bottom:105.768000px;}
.y37{bottom:105.984000px;}
.y3{bottom:106.632000px;}
.y6{bottom:110.088000px;}
.y9{bottom:112.248000px;}
.y71{bottom:117.396000px;}
.y9e{bottom:120.096000px;}
.y161{bottom:121.212000px;}
.yd3{bottom:124.020000px;}
.y1c7{bottom:124.236000px;}
.yf6{bottom:128.052000px;}
.yc1{bottom:128.880000px;}
.y152{bottom:132.012000px;}
.y1b5{bottom:132.696000px;}
.yab{bottom:135.612000px;}
.y1c2{bottom:136.332000px;}
.y13f{bottom:137.952000px;}
.y123{bottom:138.744000px;}
.y1a9{bottom:140.364000px;}
.y44{bottom:140.508000px;}
.y160{bottom:140.652000px;}
.y10c{bottom:140.940000px;}
.yeb{bottom:142.668000px;}
.y8{bottom:144.684000px;}
.y114{bottom:145.548000px;}
.y19c{bottom:147.672000px;}
.y36{bottom:149.220000px;}
.y89{bottom:151.665000px;}
.y24{bottom:151.890000px;}
.y181{bottom:155.235000px;}
.y176{bottom:155.340000px;}
.y1e{bottom:156.525000px;}
.y1c6{bottom:156.630000px;}
.y19b{bottom:168.225000px;}
.y5b{bottom:168.450000px;}
.yf5{bottom:173.445000px;}
.y15f{bottom:174.165000px;}
.y133{bottom:174.390000px;}
.y7a{bottom:175.065000px;}
.y1a8{bottom:176.010000px;}
.y70{bottom:176.295000px;}
.y7{bottom:177.120000px;}
.y122{bottom:177.630000px;}
.yaa{bottom:178.845000px;}
.y151{bottom:179.565000px;}
.y43{bottom:180.465000px;}
.y1b4{bottom:182.955000px;}
.y2{bottom:183.990000px;}
.yd2{bottom:184.530000px;}
.y13e{bottom:185.505000px;}
.yea{bottom:185.910000px;}
.y16{bottom:188.640000px;}
.yc0{bottom:189.390000px;}
.y109{bottom:190.620000px;}
.y9d{bottom:190.875000px;}
.y15e{bottom:190.905000px;}
.y35{bottom:192.420000px;}
.y111{bottom:195.195000px;}
.y1c1{bottom:200.625000px;}
.yf9{bottom:201.345000px;}
.y5a{bottom:204.660000px;}
.y175{bottom:205.590000px;}
.y1d{bottom:206.790000px;}
.y180{bottom:207.075000px;}
.y88{bottom:207.330000px;}
.yc5{bottom:209.415000px;}
.y1a7{bottom:212.220000px;}
.y132{bottom:214.380000px;}
.yf4{bottom:218.850000px;}
.y42{bottom:219.930000px;}
.y19a{bottom:220.110000px;}
.y91{bottom:220.755000px;}
.ya9{bottom:222.090000px;}
.y52{bottom:223.305000px;}
.y121{bottom:225.180000px;}
.y1a6{bottom:225.720000px;}
.y150{bottom:227.130000px;}
.ye9{bottom:229.140000px;}
.y15d{bottom:230.370000px;}
.y13d{bottom:233.070000px;}
.y1b3{bottom:233.745000px;}
.y9c{bottom:234.645000px;}
.y6f{bottom:235.185000px;}
.y34{bottom:235.650000px;}
.y107{bottom:240.300000px;}
.y59{bottom:240.330000px;}
.ydf{bottom:240.585000px;}
.y131{bottom:243.570000px;}
.y10e{bottom:244.830000px;}
.yd1{bottom:245.055000px;}
.y15{bottom:246.450000px;}
.ybf{bottom:248.295000px;}
.y17f{bottom:250.305000px;}
.y174{bottom:250.455000px;}
.y79{bottom:253.410000px;}
.y1c{bottom:257.580000px;}
.y41{bottom:259.380000px;}
.y51{bottom:259.530000px;}
.y1a5{bottom:261.930000px;}
.y87{bottom:262.980000px;}
.y120{bottom:264.090000px;}
.yf3{bottom:264.240000px;}
.ya8{bottom:265.320000px;}
.y15c{bottom:270.360000px;}
.y1{bottom:271.545000px;}
.y199{bottom:271.980000px;}
.ye8{bottom:272.370000px;}
.y6e{bottom:273.030000px;}
.y14f{bottom:274.680000px;}
.y1a4{bottom:275.430000px;}
.y58{bottom:276.510000px;}
.y63{bottom:278.280000px;}
.y33{bottom:278.895000px;}
.y1c0{bottom:279.000000px;}
.y130{bottom:279.210000px;}
.yde{bottom:280.050000px;}
.y13c{bottom:280.620000px;}
.y1b2{bottom:284.010000px;}
.yf8{bottom:288.900000px;}
.y105{bottom:289.980000px;}
.yd0{bottom:292.065000px;}
.y10b{bottom:294.480000px;}
.yc4{bottom:296.970000px;}
.y9b{bottom:298.950000px;}
.y40{bottom:299.370000px;}
.ybe{bottom:300.165000px;}
.y17e{bottom:302.190000px;}
.y173{bottom:302.325000px;}
.y11f{bottom:303.015000px;}
.y1b{bottom:307.830000px;}
.y90{bottom:308.310000px;}
.yf2{bottom:309.630000px;}
.y15b{bottom:309.780000px;}
.y1a3{bottom:311.655000px;}
.y12f{bottom:314.895000px;}
.y14e{bottom:315.180000px;}
.y86{bottom:318.630000px;}
.ydd{bottom:319.500000px;}
.y32{bottom:322.125000px;}
.y23{bottom:323.025000px;}
.y198{bottom:323.850000px;}
.y1a2{bottom:324.615000px;}
.y13b{bottom:328.170000px;}
.ya7{bottom:329.610000px;}
.y1bf{bottom:329.790000px;}
.y6d{bottom:331.920000px;}
.y78{bottom:332.310000px;}
.y1b1{bottom:334.260000px;}
.y14d{bottom:335.730000px;}
.ye7{bottom:336.675000px;}
.ycf{bottom:339.090000px;}
.y103{bottom:339.660000px;}
.y15a{bottom:341.670000px;}
.y9a{bottom:342.180000px;}
.y108{bottom:344.130000px;}
.y11e{bottom:350.565000px;}
.yd{bottom:351.000000px;}
.ybd{bottom:352.050000px;}
.y17d{bottom:354.060000px;}
.y172{bottom:354.210000px;}
.y12e{bottom:358.665000px;}
.ydc{bottom:359.460000px;}
.y1a1{bottom:360.825000px;}
.y1a{bottom:362.415000px;}
.yf1{bottom:365.295000px;}
.y31{bottom:365.370000px;}
.y6c{bottom:369.720000px;}
.y22{bottom:373.290000px;}
.y85{bottom:374.295000px;}
.y1a0{bottom:374.325000px;}
.y13a{bottom:375.690000px;}
.y197{bottom:375.735000px;}
.y50{bottom:375.915000px;}
.ye6{bottom:379.905000px;}
.y1be{bottom:380.055000px;}
.y159{bottom:381.135000px;}
.y14c{bottom:383.295000px;}
.y57{bottom:384.870000px;}
.y99{bottom:385.410000px;}
.yce{bottom:386.640000px;}
.y100{bottom:389.340000px;}
.y11d{bottom:389.445000px;}
.y106{bottom:393.810000px;}
.ya6{bottom:393.915000px;}
.y12d{bottom:394.305000px;}
.ydb{bottom:398.910000px;}
.ybc{bottom:403.920000px;}
.y17c{bottom:405.930000px;}
.y171{bottom:406.080000px;}
.y30{bottom:408.570000px;}
.y77{bottom:410.655000px;}
.y19f{bottom:411.090000px;}
.y4f{bottom:412.125000px;}
.y6b{bottom:412.950000px;}
.y158{bottom:420.555000px;}
.yf0{bottom:420.945000px;}
.y3f{bottom:421.050000px;}
.ye5{bottom:423.150000px;}
.y139{bottom:423.255000px;}
.y21{bottom:424.080000px;}
.y19e{bottom:425.670000px;}
.y14b{bottom:425.955000px;}
.y196{bottom:427.575000px;}
.y84{bottom:429.405000px;}
.y1bd{bottom:430.305000px;}
.ycd{bottom:433.620000px;}
.y19{bottom:434.310000px;}
.y11c{bottom:437.010000px;}
.ya5{bottom:437.145000px;}
.y12c{bottom:437.550000px;}
.yda{bottom:438.375000px;}
.yfd{bottom:441.720000px;}
.y104{bottom:443.445000px;}
.y98{bottom:444.855000px;}
.y6a{bottom:445.395000px;}
.ybb{bottom:447.150000px;}
.y4e{bottom:447.765000px;}
.y2f{bottom:451.800000px;}
.y157{bottom:452.445000px;}
.y14a{bottom:452.985000px;}
.y17b{bottom:453.495000px;}
.y3e{bottom:456.735000px;}
.y94{bottom:456.945000px;}
.y170{bottom:457.950000px;}
.yc{bottom:459.105000px;}
.y19d{bottom:462.960000px;}
.ye4{bottom:466.350000px;}
.y20{bottom:467.310000px;}
.y138{bottom:470.805000px;}
.y11b{bottom:475.920000px;}
.yef{bottom:476.070000px;}
.y195{bottom:476.205000px;}
.yd9{bottom:478.335000px;}
.ya4{bottom:480.390000px;}
.ycc{bottom:480.630000px;}
.y1bc{bottom:481.065000px;}
.y12b{bottom:481.320000px;}
.y8f{bottom:482.685000px;}
.y4d{bottom:483.990000px;}
.y83{bottom:485.070000px;}
.y17a{bottom:488.085000px;}
.y76{bottom:489.525000px;}
.y97{bottom:490.245000px;}
.yba{bottom:490.350000px;}
.yfa{bottom:491.400000px;}
.y69{bottom:491.865000px;}
.y156{bottom:491.910000px;}
.y1f{bottom:492.195000px;}
.y3d{bottom:492.405000px;}
.y56{bottom:492.945000px;}
.y102{bottom:493.095000px;}
.y149{bottom:494.610000px;}
.y7d{bottom:495.330000px;}
.y93{bottom:500.145000px;}
.y16f{bottom:501.195000px;}
.y18{bottom:506.700000px;}
.y194{bottom:514.050000px;}
.y11a{bottom:514.830000px;}
.y12a{bottom:516.990000px;}
.yd8{bottom:517.785000px;}
.y137{bottom:518.370000px;}
.y4c{bottom:520.200000px;}
.y1bb{bottom:523.230000px;}
.ya3{bottom:523.620000px;}
.y155{bottom:523.770000px;}
.y8e{bottom:525.885000px;}
.ycb{bottom:527.655000px;}
.y3c{bottom:528.045000px;}
.y55{bottom:529.125000px;}
.yc7{bottom:530.640000px;}
.ye3{bottom:530.670000px;}
.yee{bottom:531.720000px;}
.yb9{bottom:533.595000px;}
.y179{bottom:534.030000px;}
.y2e{bottom:538.275000px;}
.y1b0{bottom:538.815000px;}
.y68{bottom:538.890000px;}
.y82{bottom:540.720000px;}
.y60{bottom:542.670000px;}
.y92{bottom:543.390000px;}
.yff{bottom:545.550000px;}
.y1ba{bottom:545.940000px;}
.y16e{bottom:553.065000px;}
.y4b{bottom:555.840000px;}
.yd7{bottom:557.250000px;}
.y7c{bottom:557.460000px;}
.y96{bottom:561.570000px;}
.y1c5{bottom:562.785000px;}
.y3b{bottom:563.730000px;}
.y54{bottom:564.810000px;}
.y14{bottom:566.895000px;}
.y129{bottom:568.080000px;}
.y75{bottom:568.440000px;}
.yc6{bottom:577.650000px;}
.y17{bottom:578.550000px;}
.y2d{bottom:581.505000px;}
.y1af{bottom:582.045000px;}
.y154{bottom:584.610000px;}
.yb8{bottom:585.465000px;}
.y136{bottom:585.615000px;}
.y67{bottom:585.900000px;}
.y29{bottom:586.875000px;}
.yed{bottom:587.370000px;}
.ya2{bottom:587.910000px;}
.yca{bottom:588.705000px;}
.y119{bottom:590.070000px;}
.y4a{bottom:592.050000px;}
.yf{bottom:592.590000px;}
.y140{bottom:594.105000px;}
.yfc{bottom:595.185000px;}
.y1b9{bottom:596.190000px;}
.y81{bottom:596.370000px;}
.yd6{bottom:597.240000px;}
.y3a{bottom:599.400000px;}
.y53{bottom:601.020000px;}
.y13{bottom:610.125000px;}
.y7b{bottom:610.950000px;}
.y128{bottom:611.310000px;}
.y1c4{bottom:613.050000px;}
.y16d{bottom:618.660000px;}
.y178{bottom:622.230000px;}
.y8d{bottom:622.620000px;}
.y2c{bottom:624.705000px;}
.y1ae{bottom:629.565000px;}
.y80{bottom:630.930000px;}
.y95{bottom:631.260000px;}
.y66{bottom:632.340000px;}
.y39{bottom:635.040000px;}
.y28{bottom:637.125000px;}
.y118{bottom:638.385000px;}
.ye{bottom:642.855000px;}
.ye2{bottom:645.150000px;}
.y1b8{bottom:646.455000px;}
.y193{bottom:649.905000px;}
.y12{bottom:653.370000px;}
.y2a{bottom:654.015000px;}
.y49{bottom:655.950000px;}
.y5f{bottom:661.890000px;}
.y2b{bottom:667.950000px;}
.yc9{bottom:670.890000px;}
.ya1{bottom:672.330000px;}
.y65{bottom:685.695000px;}
.y8c{bottom:687.450000px;}
.y27{bottom:687.930000px;}
.y7f{bottom:693.690000px;}
.y11{bottom:696.570000px;}
.y148{bottom:696.855000px;}
.ye1{bottom:697.035000px;}
.y135{bottom:697.395000px;}
.y48{bottom:699.195000px;}
.y1ad{bottom:701.745000px;}
.y74{bottom:714.675000px;}
.y117{bottom:718.380000px;}
.y5{bottom:718.950000px;}
.ya0{bottom:722.595000px;}
.yc8{bottom:723.315000px;}
.y38{bottom:723.345000px;}
.y16c{bottom:724.035000px;}
.y5e{bottom:726.735000px;}
.y26{bottom:731.160000px;}
.y1b7{bottom:735.945000px;}
.y10{bottom:739.800000px;}
.y47{bottom:742.425000px;}
.y7e{bottom:743.940000px;}
.ye0{bottom:749.445000px;}
.y64{bottom:750.525000px;}
.y8b{bottom:752.325000px;}
.y1ac{bottom:752.550000px;}
.y25{bottom:756.000000px;}
.y73{bottom:757.905000px;}
.h43{height:15.111563px;}
.h42{height:20.778398px;}
.h3a{height:32.112070px;}
.h39{height:36.015891px;}
.h45{height:39.190078px;}
.h3b{height:41.556797px;}
.h37{height:48.436523px;}
.hf{height:49.878281px;}
.h3e{height:52.890469px;}
.h38{height:58.683234px;}
.h24{height:63.078750px;}
.h36{height:68.002031px;}
.h20{height:69.987375px;}
.h3f{height:73.668867px;}
.h41{height:83.239523px;}
.h2d{height:94.447266px;}
.h3{height:94.573195px;}
.h40{height:99.756563px;}
.h27{height:101.790000px;}
.h26{height:101.896031px;}
.h3c{height:105.906867px;}
.h5{height:112.640625px;}
.h6{height:112.790813px;}
.h34{height:115.225664px;}
.h33{height:115.351594px;}
.h1b{height:116.766563px;}
.h1c{height:116.905570px;}
.h15{height:118.185117px;}
.h35{height:118.314281px;}
.ha{height:119.351602px;}
.h9{height:119.470359px;}
.h18{height:126.157500px;}
.h19{height:126.307688px;}
.h1{height:126.559336px;}
.h2{height:126.685266px;}
.h31{height:129.809883px;}
.h32{height:129.939047px;}
.h1f{height:130.663125px;}
.h1e{height:130.813312px;}
.h14{height:137.421562px;}
.h13{height:137.571750px;}
.he{height:138.946641px;}
.h8{height:139.065398px;}
.h2a{height:139.702852px;}
.h2b{height:147.463664px;}
.h16{height:147.475898px;}
.h17{height:147.622641px;}
.h11{height:150.938437px;}
.h10{height:151.088625px;}
.h3d{height:158.541680px;}
.hb{height:158.660438px;}
.h28{height:162.202500px;}
.h2f{height:169.560000px;}
.h4{height:171.688359px;}
.h25{height:171.835102px;}
.h23{height:175.719375px;}
.hd{height:175.869563px;}
.h44{height:178.255477px;}
.h29{height:178.438500px;}
.h22{height:200.500313px;}
.h21{height:200.650500px;}
.h1d{height:208.650727px;}
.h47{height:218.701195px;}
.h2e{height:219.240000px;}
.h1a{height:220.260023px;}
.h2c{height:226.800000px;}
.h30{height:233.131359px;}
.h12{height:235.967836px;}
.h46{height:237.040594px;}
.hc{height:250.212375px;}
.h7{height:297.725836px;}
.h0{height:810.000000px;}
.w1{width:306.180000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x50{left:10.800000px;}
.x63{left:24.048000px;}
.x62{left:25.128000px;}
.x29{left:26.964000px;}
.x71{left:27.972000px;}
.x44{left:36.468000px;}
.x64{left:38.628000px;}
.x2b{left:40.320000px;}
.x51{left:43.272000px;}
.x53{left:45.000000px;}
.x81{left:46.440000px;}
.x20{left:51.084000px;}
.x2a{left:55.584000px;}
.x2c{left:62.496000px;}
.x68{left:64.836000px;}
.x67{left:66.996000px;}
.xaa{left:69.624000px;}
.x11{left:71.280000px;}
.x3e{left:72.468000px;}
.x4a{left:74.304000px;}
.xa1{left:76.068000px;}
.x6a{left:77.796000px;}
.x6f{left:79.488000px;}
.x54{left:82.800000px;}
.x26{left:85.320000px;}
.x3f{left:89.748000px;}
.x23{left:91.620000px;}
.xf{left:93.456000px;}
.x16{left:97.560000px;}
.x85{left:104.004000px;}
.x22{left:105.120000px;}
.x4d{left:107.784000px;}
.x5e{left:109.836000px;}
.x43{left:111.600000px;}
.x4e{left:112.968000px;}
.x48{left:115.884000px;}
.x12{left:117.756000px;}
.xa4{left:122.004000px;}
.x17{left:125.100000px;}
.x9c{left:129.204000px;}
.x24{left:131.292000px;}
.x8d{left:134.280000px;}
.x66{left:136.152000px;}
.x90{left:139.680000px;}
.x10{left:142.056000px;}
.x82{left:146.700000px;}
.x45{left:147.780000px;}
.x5d{left:154.050000px;}
.x95{left:157.500000px;}
.x99{left:160.200000px;}
.x6{left:161.925000px;}
.x5b{left:164.850000px;}
.x93{left:172.080000px;}
.x60{left:173.520000px;}
.xa7{left:183.090000px;}
.x8a{left:186.660000px;}
.x3{left:193.680000px;}
.x70{left:199.980000px;}
.xa{left:205.170000px;}
.xb0{left:209.130000px;}
.x27{left:213.330000px;}
.x19{left:215.355000px;}
.x49{left:224.490000px;}
.x9{left:232.170000px;}
.x47{left:241.770000px;}
.xa3{left:245.910000px;}
.x13{left:253.365000px;}
.x7{left:255.930000px;}
.x52{left:258.840000px;}
.xa5{left:260.310000px;}
.x80{left:263.055000px;}
.x7b{left:266.430000px;}
.xa6{left:273.855000px;}
.x69{left:276.630000px;}
.x28{left:278.715000px;}
.x3a{left:279.870000px;}
.x3c{left:283.110000px;}
.x3d{left:289.050000px;}
.x3b{left:290.670000px;}
.x46{left:293.115000px;}
.x4f{left:296.670000px;}
.x8{left:299.160000px;}
.x37{left:303.765000px;}
.xb{left:305.310000px;}
.x36{left:308.085000px;}
.x38{left:310.245000px;}
.xad{left:313.815000px;}
.x25{left:315.105000px;}
.x4{left:316.515000px;}
.x5f{left:319.860000px;}
.xa9{left:324.075000px;}
.x55{left:328.065000px;}
.x65{left:352.545000px;}
.x56{left:356.190000px;}
.x39{left:361.590000px;}
.x4c{left:369.825000px;}
.xae{left:372.165000px;}
.x4b{left:379.005000px;}
.x15{left:383.220000px;}
.xac{left:385.665000px;}
.x59{left:395.610000px;}
.x57{left:401.040000px;}
.x8e{left:404.385000px;}
.x1d{left:406.080000px;}
.x5c{left:412.845000px;}
.x58{left:416.160000px;}
.x14{left:427.530000px;}
.xaf{left:433.875000px;}
.x1c{left:437.400000px;}
.x88{left:441.150000px;}
.x40{left:442.650000px;}
.x96{left:444.930000px;}
.x41{left:447.510000px;}
.x9a{left:450.330000px;}
.x1b{left:452.520000px;}
.x97{left:457.350000px;}
.x86{left:465.450000px;}
.x91{left:469.770000px;}
.x94{left:480.030000px;}
.x83{left:493.530000px;}
.x8b{left:496.230000px;}
.xab{left:497.520000px;}
.x21{left:499.530000px;}
.x18{left:501.660000px;}
.xa8{left:503.460000px;}
.x61{left:504.900000px;}
.x1a{left:518.970000px;}
.x5a{left:531.210000px;}
.x6c{left:539.070000px;}
.x9f{left:546.585000px;}
.x35{left:557.310000px;}
.x2d{left:561.390000px;}
.x6d{left:566.070000px;}
.x2f{left:574.350000px;}
.x34{left:577.290000px;}
.x32{left:579.210000px;}
.x9d{left:582.300000px;}
.x6b{left:586.050000px;}
.x31{left:593.250000px;}
.x2e{left:597.570000px;}
.xa0{left:616.110000px;}
.x7e{left:620.610000px;}
.x30{left:625.140000px;}
.x7f{left:627.090000px;}
.x33{left:632.160000px;}
.x7c{left:641.670000px;}
.x9e{left:642.810000px;}
.xa2{left:650.160000px;}
.x7d{left:657.870000px;}
.x73{left:670.935000px;}
.x74{left:681.195000px;}
.x79{left:682.275000px;}
.x7a{left:697.395000px;}
.x77{left:702.255000px;}
.x78{left:707.655000px;}
.x76{left:708.735000px;}
.x72{left:714.135000px;}
.x75{left:718.995000px;}
.x1e{left:723.600000px;}
.x89{left:731.805000px;}
.xe{left:743.370000px;}
.x42{left:751.530000px;}
.x9b{left:753.945000px;}
.x1f{left:757.650000px;}
.x8c{left:760.425000px;}
.x98{left:766.365000px;}
.x84{left:769.605000px;}
.x92{left:787.425000px;}
.x87{left:789.585000px;}
.x8f{left:790.665000px;}
.xd{left:793.080000px;}
.x1{left:1026.690000px;}
.x6e{left:1028.775000px;}
.xc{left:1031.400000px;}
.x5{left:1035.255000px;}
.x2{left:1069.920000px;}
@media print{
.v1{vertical-align:-153.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.592000pt;}
.v3{vertical-align:110.336000pt;}
.ls16{letter-spacing:-2.346667pt;}
.ls25{letter-spacing:-1.829333pt;}
.ls3c{letter-spacing:-1.237333pt;}
.lsf{letter-spacing:-0.896000pt;}
.ls4f{letter-spacing:-0.816000pt;}
.ls42{letter-spacing:-0.810667pt;}
.ls4c{letter-spacing:-0.789333pt;}
.ls28{letter-spacing:-0.736000pt;}
.ls35{letter-spacing:-0.720000pt;}
.ls15{letter-spacing:-0.682667pt;}
.ls45{letter-spacing:-0.661333pt;}
.ls4e{letter-spacing:-0.592000pt;}
.ls30{letter-spacing:-0.554667pt;}
.ls27{letter-spacing:-0.492800pt;}
.ls36{letter-spacing:-0.483733pt;}
.ls12{letter-spacing:-0.469333pt;}
.lsc{letter-spacing:-0.427200pt;}
.ls4d{letter-spacing:-0.403200pt;}
.ls10{letter-spacing:-0.355733pt;}
.ls4b{letter-spacing:-0.336000pt;}
.ls26{letter-spacing:-0.261333pt;}
.ls2b{letter-spacing:-0.237867pt;}
.ls17{letter-spacing:-0.204267pt;}
.ls11{letter-spacing:-0.133333pt;}
.ls3f{letter-spacing:-0.061333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.002048pt;}
.ls58{letter-spacing:0.012800pt;}
.ls57{letter-spacing:0.040960pt;}
.ls3b{letter-spacing:0.042773pt;}
.ls1e{letter-spacing:0.045067pt;}
.ls52{letter-spacing:0.070400pt;}
.ls59{letter-spacing:0.070933pt;}
.ls54{letter-spacing:0.080000pt;}
.ls1a{letter-spacing:0.090133pt;}
.ls53{letter-spacing:0.130133pt;}
.ls3{letter-spacing:0.156267pt;}
.ls1b{letter-spacing:0.161067pt;}
.ls14{letter-spacing:0.213333pt;}
.ls37{letter-spacing:0.242133pt;}
.ls63{letter-spacing:0.313067pt;}
.ls2{letter-spacing:0.384000pt;}
.ls55{letter-spacing:0.413867pt;}
.ls1{letter-spacing:0.437504pt;}
.ls56{letter-spacing:0.510933pt;}
.ls3d{letter-spacing:0.511467pt;}
.lse{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.675840pt;}
.ls34{letter-spacing:0.682496pt;}
.ls13{letter-spacing:0.725333pt;}
.ls31{letter-spacing:0.789163pt;}
.ls6{letter-spacing:0.805333pt;}
.ls22{letter-spacing:0.853333pt;}
.ls24{letter-spacing:0.880000pt;}
.ls5{letter-spacing:0.885333pt;}
.ls32{letter-spacing:0.896000pt;}
.ls43{letter-spacing:0.960000pt;}
.lsd{letter-spacing:1.024000pt;}
.ls51{letter-spacing:1.216000pt;}
.ls23{letter-spacing:1.322667pt;}
.ls50{letter-spacing:1.514667pt;}
.ls1c{letter-spacing:2.000640pt;}
.ls7{letter-spacing:2.602496pt;}
.ls5e{letter-spacing:3.148032pt;}
.ls5f{letter-spacing:3.248640pt;}
.ls5d{letter-spacing:3.308032pt;}
.ls61{letter-spacing:3.355307pt;}
.ls60{letter-spacing:3.408640pt;}
.ls33{letter-spacing:4.558080pt;}
.ls47{letter-spacing:11.218432pt;}
.ls2f{letter-spacing:14.229163pt;}
.lsb{letter-spacing:16.042496pt;}
.ls38{letter-spacing:16.170496pt;}
.ls1f{letter-spacing:17.467307pt;}
.ls44{letter-spacing:35.253333pt;}
.ls41{letter-spacing:43.699200pt;}
.ls39{letter-spacing:50.931200pt;}
.ls46{letter-spacing:50.976000pt;}
.ls5b{letter-spacing:51.037867pt;}
.ls5c{letter-spacing:51.082667pt;}
.ls3a{letter-spacing:54.442496pt;}
.ls49{letter-spacing:54.963200pt;}
.ls48{letter-spacing:55.008000pt;}
.ls18{letter-spacing:56.480000pt;}
.ls1d{letter-spacing:57.645056pt;}
.ls19{letter-spacing:69.973333pt;}
.ls5a{letter-spacing:79.200000pt;}
.ls3e{letter-spacing:96.130560pt;}
.lsa{letter-spacing:99.059200pt;}
.ls2d{letter-spacing:99.609600pt;}
.ls2e{letter-spacing:99.716267pt;}
.ls2c{letter-spacing:99.769600pt;}
.ls2a{letter-spacing:104.248320pt;}
.ls29{letter-spacing:104.376320pt;}
.ls4a{letter-spacing:115.688619pt;}
.ls20{letter-spacing:122.925056pt;}
.ls21{letter-spacing:123.031723pt;}
.ls40{letter-spacing:248.479829pt;}
.ls9{letter-spacing:488.632747pt;}
.ls62{letter-spacing:1850.258859pt;}
.ws2a{word-spacing:-96.064000pt;}
.ws41{word-spacing:-74.944000pt;}
.ws1{word-spacing:-74.880000pt;}
.ws26{word-spacing:-47.540224pt;}
.ws2b{word-spacing:-38.369387pt;}
.ws8{word-spacing:-36.821504pt;}
.ws2f{word-spacing:-36.721920pt;}
.ws21{word-spacing:-36.693504pt;}
.wse{word-spacing:-36.487253pt;}
.ws9{word-spacing:-36.437504pt;}
.ws28{word-spacing:-36.308971pt;}
.ws2c{word-spacing:-36.019200pt;}
.wsf{word-spacing:-36.010837pt;}
.ws24{word-spacing:-36.004053pt;}
.ws29{word-spacing:-35.840277pt;}
.ws25{word-spacing:-35.797504pt;}
.ws20{word-spacing:-35.761920pt;}
.wsb{word-spacing:-35.406187pt;}
.ws7{word-spacing:-35.370304pt;}
.wsd{word-spacing:-35.292587pt;}
.ws23{word-spacing:-35.278187pt;}
.ws1f{word-spacing:-35.242837pt;}
.ws10{word-spacing:-35.114837pt;}
.ws22{word-spacing:-35.041920pt;}
.ws2e{word-spacing:-34.986837pt;}
.wsa{word-spacing:-34.901504pt;}
.ws6{word-spacing:-34.680021pt;}
.ws27{word-spacing:-34.560171pt;}
.ws17{word-spacing:-33.917611pt;}
.ws11{word-spacing:-33.450837pt;}
.ws15{word-spacing:-33.448277pt;}
.ws19{word-spacing:-33.439360pt;}
.ws14{word-spacing:-32.720427pt;}
.ws13{word-spacing:-32.685077pt;}
.ws16{word-spacing:-32.640011pt;}
.ws18{word-spacing:-32.559360pt;}
.ws1e{word-spacing:-30.993664pt;}
.ws1a{word-spacing:-30.765611pt;}
.ws37{word-spacing:-30.616235pt;}
.ws38{word-spacing:-30.288640pt;}
.ws1b{word-spacing:-29.890560pt;}
.wsc{word-spacing:-29.757227pt;}
.ws12{word-spacing:-29.721877pt;}
.ws1c{word-spacing:-29.433344pt;}
.ws5{word-spacing:-29.101568pt;}
.ws34{word-spacing:-29.072640pt;}
.ws31{word-spacing:-28.736640pt;}
.ws33{word-spacing:-28.698368pt;}
.ws35{word-spacing:-28.480640pt;}
.ws36{word-spacing:-28.285568pt;}
.ws32{word-spacing:-28.283307pt;}
.ws3{word-spacing:-27.072000pt;}
.ws42{word-spacing:-27.036651pt;}
.ws3d{word-spacing:-27.008981pt;}
.ws3c{word-spacing:-26.882987pt;}
.ws4{word-spacing:-26.879851pt;}
.ws43{word-spacing:-26.688000pt;}
.ws3a{word-spacing:-26.599253pt;}
.ws40{word-spacing:-26.568981pt;}
.ws3b{word-spacing:-26.549120pt;}
.ws39{word-spacing:-26.539520pt;}
.ws3e{word-spacing:-26.539008pt;}
.ws3f{word-spacing:-26.510848pt;}
.ws0{word-spacing:-21.724928pt;}
.ws30{word-spacing:-21.696000pt;}
.ws1d{word-spacing:-20.988928pt;}
.ws2d{word-spacing:-16.012800pt;}
.ws2{word-spacing:0.000000pt;}
._c{margin-left:-24.388096pt;}
._d{margin-left:-15.723904pt;}
._8{margin-left:-12.721109pt;}
._46{margin-left:-11.735808pt;}
._6{margin-left:-10.725035pt;}
._0{margin-left:-8.876160pt;}
._45{margin-left:-7.815296pt;}
._b{margin-left:-6.853248pt;}
._e{margin-left:-5.668864pt;}
._5{margin-left:-4.699008pt;}
._3{margin-left:-3.778304pt;}
._2{margin-left:-2.830080pt;}
._9{margin-left:-1.930155pt;}
._1{margin-left:-1.029120pt;}
._4{width:1.538304pt;}
._a{width:2.430848pt;}
._7{width:3.373312pt;}
._1f{width:5.120427pt;}
._20{width:8.075605pt;}
._16{width:9.804992pt;}
._22{width:11.378773pt;}
._21{width:13.897045pt;}
._1b{width:15.294720pt;}
._12{width:16.497920pt;}
._1a{width:17.802283pt;}
._3f{width:25.214933pt;}
._42{width:27.462869pt;}
._10{width:37.223339pt;}
._f{width:38.739776pt;}
._11{width:39.770901pt;}
._18{width:41.092160pt;}
._19{width:42.382880pt;}
._3e{width:45.529941pt;}
._3d{width:48.089301pt;}
._23{width:55.338325pt;}
._24{width:56.343211pt;}
._17{width:57.252651pt;}
._13{width:58.773077pt;}
._25{width:60.474368pt;}
._14{width:72.431275pt;}
._3b{width:76.225280pt;}
._2d{width:81.003264pt;}
._43{width:83.526229pt;}
._44{width:84.432000pt;}
._29{width:87.780736pt;}
._28{width:89.262080pt;}
._27{width:93.716395pt;}
._26{width:95.437739pt;}
._2e{width:101.840640pt;}
._40{width:115.091200pt;}
._41{width:116.504405pt;}
._1d{width:121.823083pt;}
._1c{width:123.191659pt;}
._38{width:127.757227pt;}
._35{width:141.790933pt;}
._34{width:142.841963pt;}
._2a{width:146.298795pt;}
._2c{width:156.792405pt;}
._2f{width:171.088640pt;}
._33{width:183.917184pt;}
._32{width:190.876629pt;}
._39{width:203.103957pt;}
._3a{width:205.418112pt;}
._3c{width:216.542123pt;}
._31{width:248.587947pt;}
._1e{width:294.121301pt;}
._30{width:351.696640pt;}
._2b{width:361.101824pt;}
._36{width:409.448021pt;}
._15{width:476.765013pt;}
._37{width:596.570965pt;}
.fs23{font-size:15.360000pt;}
.fs22{font-size:21.120000pt;}
.fs1e{font-size:32.640000pt;}
.fs1d{font-size:36.608000pt;}
.fs1f{font-size:42.240000pt;}
.fs1c{font-size:48.000000pt;}
.fs10{font-size:49.920000pt;}
.fs9{font-size:53.760000pt;}
.fs15{font-size:57.600000pt;}
.fs13{font-size:59.648000pt;}
.fs18{font-size:63.360000pt;}
.fs1b{font-size:69.120000pt;}
.fs20{font-size:74.880000pt;}
.fs21{font-size:84.608000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.fsa{font-size:107.520000pt;}
.fsb{font-size:107.648000pt;}
.fs12{font-size:111.360000pt;}
.fs11{font-size:111.488000pt;}
.fse{font-size:117.120000pt;}
.fsd{font-size:117.248000pt;}
.fs17{font-size:122.880000pt;}
.fs16{font-size:123.008000pt;}
.fs0{font-size:128.640000pt;}
.fs1{font-size:128.768000pt;}
.fs19{font-size:138.240000pt;}
.fs3{font-size:149.760000pt;}
.fs6{font-size:149.888000pt;}
.fs1a{font-size:155.648000pt;}
.fs14{font-size:170.880000pt;}
.fs7{font-size:171.008000pt;}
.fsf{font-size:192.128000pt;}
.fs8{font-size:213.248000pt;}
.fsc{font-size:245.888000pt;}
.fs24{font-size:255.488000pt;}
.fs5{font-size:320.896000pt;}
.y192{bottom:-645.920000pt;}
.y191{bottom:-599.813333pt;}
.yb7{bottom:-577.826667pt;}
.y190{bottom:-553.693333pt;}
.yb6{bottom:-511.066667pt;}
.y18f{bottom:-507.586667pt;}
.y18e{bottom:-461.466667pt;}
.yb5{bottom:-454.400000pt;}
.y18d{bottom:-415.360000pt;}
.yb4{bottom:-387.133333pt;}
.y18c{bottom:-369.253333pt;}
.yb3{bottom:-331.906667pt;}
.y18b{bottom:-323.133333pt;}
.y18a{bottom:-277.026667pt;}
.yb2{bottom:-276.186667pt;}
.y16b{bottom:-240.000000pt;}
.y189{bottom:-230.906667pt;}
.yb1{bottom:-220.960000pt;}
.y16a{bottom:-204.960000pt;}
.y188{bottom:-184.800000pt;}
.y147{bottom:-173.253333pt;}
.y169{bottom:-169.893333pt;}
.yb0{bottom:-164.773333pt;}
.y187{bottom:-138.693333pt;}
.y168{bottom:-134.333333pt;}
.y146{bottom:-130.976000pt;}
.yaf{bottom:-107.584000pt;}
.y167{bottom:-99.296000pt;}
.y186{bottom:-92.576000pt;}
.y145{bottom:-88.704000pt;}
.y166{bottom:-64.224000pt;}
.yae{bottom:-50.432000pt;}
.y185{bottom:-46.464000pt;}
.y144{bottom:-46.432000pt;}
.y127{bottom:-38.080000pt;}
.y165{bottom:-28.672000pt;}
.y143{bottom:-4.192000pt;}
.y184{bottom:-0.352053pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:2.144000pt;}
.y126{bottom:4.192000pt;}
.y164{bottom:6.400000pt;}
.yad{bottom:6.720000pt;}
.y5d{bottom:16.928000pt;}
.y1ca{bottom:23.968000pt;}
.yc3{bottom:28.576000pt;}
.y112{bottom:36.960000pt;}
.y72{bottom:37.568000pt;}
.y142{bottom:38.080000pt;}
.y116{bottom:41.120000pt;}
.y163{bottom:41.440000pt;}
.yb{bottom:42.144000pt;}
.y62{bottom:43.584000pt;}
.y183{bottom:45.760000pt;}
.y125{bottom:46.464000pt;}
.y1ab{bottom:47.424000pt;}
.y4{bottom:48.192000pt;}
.y5c{bottom:49.120000pt;}
.y1c9{bottom:52.768000pt;}
.y46{bottom:54.752000pt;}
.y9f{bottom:55.360000pt;}
.yd4{bottom:55.968000pt;}
.yac{bottom:63.872000pt;}
.yf7{bottom:66.272000pt;}
.yc2{bottom:67.008000pt;}
.y1c3{bottom:70.272000pt;}
.ya{bottom:70.976000pt;}
.y153{bottom:75.072000pt;}
.y162{bottom:76.992000pt;}
.y141{bottom:80.352000pt;}
.y10f{bottom:81.120000pt;}
.y1c8{bottom:81.600000pt;}
.y115{bottom:85.248000pt;}
.y8a{bottom:85.312000pt;}
.y1b6{bottom:85.792000pt;}
.y1aa{bottom:86.336000pt;}
.yec{bottom:88.416000pt;}
.y124{bottom:88.736000pt;}
.y45{bottom:89.824000pt;}
.y134{bottom:91.616000pt;}
.y182{bottom:91.872000pt;}
.y177{bottom:91.968000pt;}
.y101{bottom:92.226667pt;}
.yfb{bottom:92.253333pt;}
.yfe{bottom:92.293333pt;}
.y10a{bottom:92.320000pt;}
.y10d{bottom:92.346667pt;}
.y110{bottom:92.386667pt;}
.y113{bottom:92.416000pt;}
.y61{bottom:94.016000pt;}
.y37{bottom:94.208000pt;}
.y3{bottom:94.784000pt;}
.y6{bottom:97.856000pt;}
.y9{bottom:99.776000pt;}
.y71{bottom:104.352000pt;}
.y9e{bottom:106.752000pt;}
.y161{bottom:107.744000pt;}
.yd3{bottom:110.240000pt;}
.y1c7{bottom:110.432000pt;}
.yf6{bottom:113.824000pt;}
.yc1{bottom:114.560000pt;}
.y152{bottom:117.344000pt;}
.y1b5{bottom:117.952000pt;}
.yab{bottom:120.544000pt;}
.y1c2{bottom:121.184000pt;}
.y13f{bottom:122.624000pt;}
.y123{bottom:123.328000pt;}
.y1a9{bottom:124.768000pt;}
.y44{bottom:124.896000pt;}
.y160{bottom:125.024000pt;}
.y10c{bottom:125.280000pt;}
.yeb{bottom:126.816000pt;}
.y8{bottom:128.608000pt;}
.y114{bottom:129.376000pt;}
.y19c{bottom:131.264000pt;}
.y36{bottom:132.640000pt;}
.y89{bottom:134.813333pt;}
.y24{bottom:135.013333pt;}
.y181{bottom:137.986667pt;}
.y176{bottom:138.080000pt;}
.y1e{bottom:139.133333pt;}
.y1c6{bottom:139.226667pt;}
.y19b{bottom:149.533333pt;}
.y5b{bottom:149.733333pt;}
.yf5{bottom:154.173333pt;}
.y15f{bottom:154.813333pt;}
.y133{bottom:155.013333pt;}
.y7a{bottom:155.613333pt;}
.y1a8{bottom:156.453333pt;}
.y70{bottom:156.706667pt;}
.y7{bottom:157.440000pt;}
.y122{bottom:157.893333pt;}
.yaa{bottom:158.973333pt;}
.y151{bottom:159.613333pt;}
.y43{bottom:160.413333pt;}
.y1b4{bottom:162.626667pt;}
.y2{bottom:163.546667pt;}
.yd2{bottom:164.026667pt;}
.y13e{bottom:164.893333pt;}
.yea{bottom:165.253333pt;}
.y16{bottom:167.680000pt;}
.yc0{bottom:168.346667pt;}
.y109{bottom:169.440000pt;}
.y9d{bottom:169.666667pt;}
.y15e{bottom:169.693333pt;}
.y35{bottom:171.040000pt;}
.y111{bottom:173.506667pt;}
.y1c1{bottom:178.333333pt;}
.yf9{bottom:178.973333pt;}
.y5a{bottom:181.920000pt;}
.y175{bottom:182.746667pt;}
.y1d{bottom:183.813333pt;}
.y180{bottom:184.066667pt;}
.y88{bottom:184.293333pt;}
.yc5{bottom:186.146667pt;}
.y1a7{bottom:188.640000pt;}
.y132{bottom:190.560000pt;}
.yf4{bottom:194.533333pt;}
.y42{bottom:195.493333pt;}
.y19a{bottom:195.653333pt;}
.y91{bottom:196.226667pt;}
.ya9{bottom:197.413333pt;}
.y52{bottom:198.493333pt;}
.y121{bottom:200.160000pt;}
.y1a6{bottom:200.640000pt;}
.y150{bottom:201.893333pt;}
.ye9{bottom:203.680000pt;}
.y15d{bottom:204.773333pt;}
.y13d{bottom:207.173333pt;}
.y1b3{bottom:207.773333pt;}
.y9c{bottom:208.573333pt;}
.y6f{bottom:209.053333pt;}
.y34{bottom:209.466667pt;}
.y107{bottom:213.600000pt;}
.y59{bottom:213.626667pt;}
.ydf{bottom:213.853333pt;}
.y131{bottom:216.506667pt;}
.y10e{bottom:217.626667pt;}
.yd1{bottom:217.826667pt;}
.y15{bottom:219.066667pt;}
.ybf{bottom:220.706667pt;}
.y17f{bottom:222.493333pt;}
.y174{bottom:222.626667pt;}
.y79{bottom:225.253333pt;}
.y1c{bottom:228.960000pt;}
.y41{bottom:230.560000pt;}
.y51{bottom:230.693333pt;}
.y1a5{bottom:232.826667pt;}
.y87{bottom:233.760000pt;}
.y120{bottom:234.746667pt;}
.yf3{bottom:234.880000pt;}
.ya8{bottom:235.840000pt;}
.y15c{bottom:240.320000pt;}
.y1{bottom:241.373333pt;}
.y199{bottom:241.760000pt;}
.ye8{bottom:242.106667pt;}
.y6e{bottom:242.693333pt;}
.y14f{bottom:244.160000pt;}
.y1a4{bottom:244.826667pt;}
.y58{bottom:245.786667pt;}
.y63{bottom:247.360000pt;}
.y33{bottom:247.906667pt;}
.y1c0{bottom:248.000000pt;}
.y130{bottom:248.186667pt;}
.yde{bottom:248.933333pt;}
.y13c{bottom:249.440000pt;}
.y1b2{bottom:252.453333pt;}
.yf8{bottom:256.800000pt;}
.y105{bottom:257.760000pt;}
.yd0{bottom:259.613333pt;}
.y10b{bottom:261.760000pt;}
.yc4{bottom:263.973333pt;}
.y9b{bottom:265.733333pt;}
.y40{bottom:266.106667pt;}
.ybe{bottom:266.813333pt;}
.y17e{bottom:268.613333pt;}
.y173{bottom:268.733333pt;}
.y11f{bottom:269.346667pt;}
.y1b{bottom:273.626667pt;}
.y90{bottom:274.053333pt;}
.yf2{bottom:275.226667pt;}
.y15b{bottom:275.360000pt;}
.y1a3{bottom:277.026667pt;}
.y12f{bottom:279.906667pt;}
.y14e{bottom:280.160000pt;}
.y86{bottom:283.226667pt;}
.ydd{bottom:284.000000pt;}
.y32{bottom:286.333333pt;}
.y23{bottom:287.133333pt;}
.y198{bottom:287.866667pt;}
.y1a2{bottom:288.546667pt;}
.y13b{bottom:291.706667pt;}
.ya7{bottom:292.986667pt;}
.y1bf{bottom:293.146667pt;}
.y6d{bottom:295.040000pt;}
.y78{bottom:295.386667pt;}
.y1b1{bottom:297.120000pt;}
.y14d{bottom:298.426667pt;}
.ye7{bottom:299.266667pt;}
.ycf{bottom:301.413333pt;}
.y103{bottom:301.920000pt;}
.y15a{bottom:303.706667pt;}
.y9a{bottom:304.160000pt;}
.y108{bottom:305.893333pt;}
.y11e{bottom:311.613333pt;}
.yd{bottom:312.000000pt;}
.ybd{bottom:312.933333pt;}
.y17d{bottom:314.720000pt;}
.y172{bottom:314.853333pt;}
.y12e{bottom:318.813333pt;}
.ydc{bottom:319.520000pt;}
.y1a1{bottom:320.733333pt;}
.y1a{bottom:322.146667pt;}
.yf1{bottom:324.706667pt;}
.y31{bottom:324.773333pt;}
.y6c{bottom:328.640000pt;}
.y22{bottom:331.813333pt;}
.y85{bottom:332.706667pt;}
.y1a0{bottom:332.733333pt;}
.y13a{bottom:333.946667pt;}
.y197{bottom:333.986667pt;}
.y50{bottom:334.146667pt;}
.ye6{bottom:337.693333pt;}
.y1be{bottom:337.826667pt;}
.y159{bottom:338.786667pt;}
.y14c{bottom:340.706667pt;}
.y57{bottom:342.106667pt;}
.y99{bottom:342.586667pt;}
.yce{bottom:343.680000pt;}
.y100{bottom:346.080000pt;}
.y11d{bottom:346.173333pt;}
.y106{bottom:350.053333pt;}
.ya6{bottom:350.146667pt;}
.y12d{bottom:350.493333pt;}
.ydb{bottom:354.586667pt;}
.ybc{bottom:359.040000pt;}
.y17c{bottom:360.826667pt;}
.y171{bottom:360.960000pt;}
.y30{bottom:363.173333pt;}
.y77{bottom:365.026667pt;}
.y19f{bottom:365.413333pt;}
.y4f{bottom:366.333333pt;}
.y6b{bottom:367.066667pt;}
.y158{bottom:373.826667pt;}
.yf0{bottom:374.173333pt;}
.y3f{bottom:374.266667pt;}
.ye5{bottom:376.133333pt;}
.y139{bottom:376.226667pt;}
.y21{bottom:376.960000pt;}
.y19e{bottom:378.373333pt;}
.y14b{bottom:378.626667pt;}
.y196{bottom:380.066667pt;}
.y84{bottom:381.693333pt;}
.y1bd{bottom:382.493333pt;}
.ycd{bottom:385.440000pt;}
.y19{bottom:386.053333pt;}
.y11c{bottom:388.453333pt;}
.ya5{bottom:388.573333pt;}
.y12c{bottom:388.933333pt;}
.yda{bottom:389.666667pt;}
.yfd{bottom:392.640000pt;}
.y104{bottom:394.173333pt;}
.y98{bottom:395.426667pt;}
.y6a{bottom:395.906667pt;}
.ybb{bottom:397.466667pt;}
.y4e{bottom:398.013333pt;}
.y2f{bottom:401.600000pt;}
.y157{bottom:402.173333pt;}
.y14a{bottom:402.653333pt;}
.y17b{bottom:403.106667pt;}
.y3e{bottom:405.986667pt;}
.y94{bottom:406.173333pt;}
.y170{bottom:407.066667pt;}
.yc{bottom:408.093333pt;}
.y19d{bottom:411.520000pt;}
.ye4{bottom:414.533333pt;}
.y20{bottom:415.386667pt;}
.y138{bottom:418.493333pt;}
.y11b{bottom:423.040000pt;}
.yef{bottom:423.173333pt;}
.y195{bottom:423.293333pt;}
.yd9{bottom:425.186667pt;}
.ya4{bottom:427.013333pt;}
.ycc{bottom:427.226667pt;}
.y1bc{bottom:427.613333pt;}
.y12b{bottom:427.840000pt;}
.y8f{bottom:429.053333pt;}
.y4d{bottom:430.213333pt;}
.y83{bottom:431.173333pt;}
.y17a{bottom:433.853333pt;}
.y76{bottom:435.133333pt;}
.y97{bottom:435.773333pt;}
.yba{bottom:435.866667pt;}
.yfa{bottom:436.800000pt;}
.y69{bottom:437.213333pt;}
.y156{bottom:437.253333pt;}
.y1f{bottom:437.506667pt;}
.y3d{bottom:437.693333pt;}
.y56{bottom:438.173333pt;}
.y102{bottom:438.306667pt;}
.y149{bottom:439.653333pt;}
.y7d{bottom:440.293333pt;}
.y93{bottom:444.573333pt;}
.y16f{bottom:445.506667pt;}
.y18{bottom:450.400000pt;}
.y194{bottom:456.933333pt;}
.y11a{bottom:457.626667pt;}
.y12a{bottom:459.546667pt;}
.yd8{bottom:460.253333pt;}
.y137{bottom:460.773333pt;}
.y4c{bottom:462.400000pt;}
.y1bb{bottom:465.093333pt;}
.ya3{bottom:465.440000pt;}
.y155{bottom:465.573333pt;}
.y8e{bottom:467.453333pt;}
.ycb{bottom:469.026667pt;}
.y3c{bottom:469.373333pt;}
.y55{bottom:470.333333pt;}
.yc7{bottom:471.680000pt;}
.ye3{bottom:471.706667pt;}
.yee{bottom:472.640000pt;}
.yb9{bottom:474.306667pt;}
.y179{bottom:474.693333pt;}
.y2e{bottom:478.466667pt;}
.y1b0{bottom:478.946667pt;}
.y68{bottom:479.013333pt;}
.y82{bottom:480.640000pt;}
.y60{bottom:482.373333pt;}
.y92{bottom:483.013333pt;}
.yff{bottom:484.933333pt;}
.y1ba{bottom:485.280000pt;}
.y16e{bottom:491.613333pt;}
.y4b{bottom:494.080000pt;}
.yd7{bottom:495.333333pt;}
.y7c{bottom:495.520000pt;}
.y96{bottom:499.173333pt;}
.y1c5{bottom:500.253333pt;}
.y3b{bottom:501.093333pt;}
.y54{bottom:502.053333pt;}
.y14{bottom:503.906667pt;}
.y129{bottom:504.960000pt;}
.y75{bottom:505.280000pt;}
.yc6{bottom:513.466667pt;}
.y17{bottom:514.266667pt;}
.y2d{bottom:516.893333pt;}
.y1af{bottom:517.373333pt;}
.y154{bottom:519.653333pt;}
.yb8{bottom:520.413333pt;}
.y136{bottom:520.546667pt;}
.y67{bottom:520.800000pt;}
.y29{bottom:521.666667pt;}
.yed{bottom:522.106667pt;}
.ya2{bottom:522.586667pt;}
.yca{bottom:523.293333pt;}
.y119{bottom:524.506667pt;}
.y4a{bottom:526.266667pt;}
.yf{bottom:526.746667pt;}
.y140{bottom:528.093333pt;}
.yfc{bottom:529.053333pt;}
.y1b9{bottom:529.946667pt;}
.y81{bottom:530.106667pt;}
.yd6{bottom:530.880000pt;}
.y3a{bottom:532.800000pt;}
.y53{bottom:534.240000pt;}
.y13{bottom:542.333333pt;}
.y7b{bottom:543.066667pt;}
.y128{bottom:543.386667pt;}
.y1c4{bottom:544.933333pt;}
.y16d{bottom:549.920000pt;}
.y178{bottom:553.093333pt;}
.y8d{bottom:553.440000pt;}
.y2c{bottom:555.293333pt;}
.y1ae{bottom:559.613333pt;}
.y80{bottom:560.826667pt;}
.y95{bottom:561.120000pt;}
.y66{bottom:562.080000pt;}
.y39{bottom:564.480000pt;}
.y28{bottom:566.333333pt;}
.y118{bottom:567.453333pt;}
.ye{bottom:571.426667pt;}
.ye2{bottom:573.466667pt;}
.y1b8{bottom:574.626667pt;}
.y193{bottom:577.693333pt;}
.y12{bottom:580.773333pt;}
.y2a{bottom:581.346667pt;}
.y49{bottom:583.066667pt;}
.y5f{bottom:588.346667pt;}
.y2b{bottom:593.733333pt;}
.yc9{bottom:596.346667pt;}
.ya1{bottom:597.626667pt;}
.y65{bottom:609.506667pt;}
.y8c{bottom:611.066667pt;}
.y27{bottom:611.493333pt;}
.y7f{bottom:616.613333pt;}
.y11{bottom:619.173333pt;}
.y148{bottom:619.426667pt;}
.ye1{bottom:619.586667pt;}
.y135{bottom:619.906667pt;}
.y48{bottom:621.506667pt;}
.y1ad{bottom:623.773333pt;}
.y74{bottom:635.266667pt;}
.y117{bottom:638.560000pt;}
.y5{bottom:639.066667pt;}
.ya0{bottom:642.306667pt;}
.yc8{bottom:642.946667pt;}
.y38{bottom:642.973333pt;}
.y16c{bottom:643.586667pt;}
.y5e{bottom:645.986667pt;}
.y26{bottom:649.920000pt;}
.y1b7{bottom:654.173333pt;}
.y10{bottom:657.600000pt;}
.y47{bottom:659.933333pt;}
.y7e{bottom:661.280000pt;}
.ye0{bottom:666.173333pt;}
.y64{bottom:667.133333pt;}
.y8b{bottom:668.733333pt;}
.y1ac{bottom:668.933333pt;}
.y25{bottom:672.000000pt;}
.y73{bottom:673.693333pt;}
.h43{height:13.432500pt;}
.h42{height:18.469687pt;}
.h3a{height:28.544062pt;}
.h39{height:32.014125pt;}
.h45{height:34.835625pt;}
.h3b{height:36.939375pt;}
.h37{height:43.054688pt;}
.hf{height:44.336250pt;}
.h3e{height:47.013750pt;}
.h38{height:52.162875pt;}
.h24{height:56.070000pt;}
.h36{height:60.446250pt;}
.h20{height:62.211000pt;}
.h3f{height:65.483437pt;}
.h41{height:73.990687pt;}
.h2d{height:83.953125pt;}
.h3{height:84.065062pt;}
.h40{height:88.672500pt;}
.h27{height:90.480000pt;}
.h26{height:90.574250pt;}
.h3c{height:94.139437pt;}
.h5{height:100.125000pt;}
.h6{height:100.258500pt;}
.h34{height:102.422812pt;}
.h33{height:102.534750pt;}
.h1b{height:103.792500pt;}
.h1c{height:103.916063pt;}
.h15{height:105.053437pt;}
.h35{height:105.168250pt;}
.ha{height:106.090312pt;}
.h9{height:106.195875pt;}
.h18{height:112.140000pt;}
.h19{height:112.273500pt;}
.h1{height:112.497187pt;}
.h2{height:112.609125pt;}
.h31{height:115.386562pt;}
.h32{height:115.501375pt;}
.h1f{height:116.145000pt;}
.h1e{height:116.278500pt;}
.h14{height:122.152500pt;}
.h13{height:122.286000pt;}
.he{height:123.508125pt;}
.h8{height:123.613688pt;}
.h2a{height:124.180312pt;}
.h2b{height:131.078812pt;}
.h16{height:131.089687pt;}
.h17{height:131.220125pt;}
.h11{height:134.167500pt;}
.h10{height:134.301000pt;}
.h3d{height:140.925938pt;}
.hb{height:141.031500pt;}
.h28{height:144.180000pt;}
.h2f{height:150.720000pt;}
.h4{height:152.611875pt;}
.h25{height:152.742313pt;}
.h23{height:156.195000pt;}
.hd{height:156.328500pt;}
.h44{height:158.449312pt;}
.h29{height:158.612000pt;}
.h22{height:178.222500pt;}
.h21{height:178.356000pt;}
.h1d{height:185.467312pt;}
.h47{height:194.401062pt;}
.h2e{height:194.880000pt;}
.h1a{height:195.786687pt;}
.h2c{height:201.600000pt;}
.h30{height:207.227875pt;}
.h12{height:209.749188pt;}
.h46{height:210.702750pt;}
.hc{height:222.411000pt;}
.h7{height:264.645188pt;}
.h0{height:720.000000pt;}
.w1{width:272.160000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x50{left:9.600000pt;}
.x63{left:21.376000pt;}
.x62{left:22.336000pt;}
.x29{left:23.968000pt;}
.x71{left:24.864000pt;}
.x44{left:32.416000pt;}
.x64{left:34.336000pt;}
.x2b{left:35.840000pt;}
.x51{left:38.464000pt;}
.x53{left:40.000000pt;}
.x81{left:41.280000pt;}
.x20{left:45.408000pt;}
.x2a{left:49.408000pt;}
.x2c{left:55.552000pt;}
.x68{left:57.632000pt;}
.x67{left:59.552000pt;}
.xaa{left:61.888000pt;}
.x11{left:63.360000pt;}
.x3e{left:64.416000pt;}
.x4a{left:66.048000pt;}
.xa1{left:67.616000pt;}
.x6a{left:69.152000pt;}
.x6f{left:70.656000pt;}
.x54{left:73.600000pt;}
.x26{left:75.840000pt;}
.x3f{left:79.776000pt;}
.x23{left:81.440000pt;}
.xf{left:83.072000pt;}
.x16{left:86.720000pt;}
.x85{left:92.448000pt;}
.x22{left:93.440000pt;}
.x4d{left:95.808000pt;}
.x5e{left:97.632000pt;}
.x43{left:99.200000pt;}
.x4e{left:100.416000pt;}
.x48{left:103.008000pt;}
.x12{left:104.672000pt;}
.xa4{left:108.448000pt;}
.x17{left:111.200000pt;}
.x9c{left:114.848000pt;}
.x24{left:116.704000pt;}
.x8d{left:119.360000pt;}
.x66{left:121.024000pt;}
.x90{left:124.160000pt;}
.x10{left:126.272000pt;}
.x82{left:130.400000pt;}
.x45{left:131.360000pt;}
.x5d{left:136.933333pt;}
.x95{left:140.000000pt;}
.x99{left:142.400000pt;}
.x6{left:143.933333pt;}
.x5b{left:146.533333pt;}
.x93{left:152.960000pt;}
.x60{left:154.240000pt;}
.xa7{left:162.746667pt;}
.x8a{left:165.920000pt;}
.x3{left:172.160000pt;}
.x70{left:177.760000pt;}
.xa{left:182.373333pt;}
.xb0{left:185.893333pt;}
.x27{left:189.626667pt;}
.x19{left:191.426667pt;}
.x49{left:199.546667pt;}
.x9{left:206.373333pt;}
.x47{left:214.906667pt;}
.xa3{left:218.586667pt;}
.x13{left:225.213333pt;}
.x7{left:227.493333pt;}
.x52{left:230.080000pt;}
.xa5{left:231.386667pt;}
.x80{left:233.826667pt;}
.x7b{left:236.826667pt;}
.xa6{left:243.426667pt;}
.x69{left:245.893333pt;}
.x28{left:247.746667pt;}
.x3a{left:248.773333pt;}
.x3c{left:251.653333pt;}
.x3d{left:256.933333pt;}
.x3b{left:258.373333pt;}
.x46{left:260.546667pt;}
.x4f{left:263.706667pt;}
.x8{left:265.920000pt;}
.x37{left:270.013333pt;}
.xb{left:271.386667pt;}
.x36{left:273.853333pt;}
.x38{left:275.773333pt;}
.xad{left:278.946667pt;}
.x25{left:280.093333pt;}
.x4{left:281.346667pt;}
.x5f{left:284.320000pt;}
.xa9{left:288.066667pt;}
.x55{left:291.613333pt;}
.x65{left:313.373333pt;}
.x56{left:316.613333pt;}
.x39{left:321.413333pt;}
.x4c{left:328.733333pt;}
.xae{left:330.813333pt;}
.x4b{left:336.893333pt;}
.x15{left:340.640000pt;}
.xac{left:342.813333pt;}
.x59{left:351.653333pt;}
.x57{left:356.480000pt;}
.x8e{left:359.453333pt;}
.x1d{left:360.960000pt;}
.x5c{left:366.973333pt;}
.x58{left:369.920000pt;}
.x14{left:380.026667pt;}
.xaf{left:385.666667pt;}
.x1c{left:388.800000pt;}
.x88{left:392.133333pt;}
.x40{left:393.466667pt;}
.x96{left:395.493333pt;}
.x41{left:397.786667pt;}
.x9a{left:400.293333pt;}
.x1b{left:402.240000pt;}
.x97{left:406.533333pt;}
.x86{left:413.733333pt;}
.x91{left:417.573333pt;}
.x94{left:426.693333pt;}
.x83{left:438.693333pt;}
.x8b{left:441.093333pt;}
.xab{left:442.240000pt;}
.x21{left:444.026667pt;}
.x18{left:445.920000pt;}
.xa8{left:447.520000pt;}
.x61{left:448.800000pt;}
.x1a{left:461.306667pt;}
.x5a{left:472.186667pt;}
.x6c{left:479.173333pt;}
.x9f{left:485.853333pt;}
.x35{left:495.386667pt;}
.x2d{left:499.013333pt;}
.x6d{left:503.173333pt;}
.x2f{left:510.533333pt;}
.x34{left:513.146667pt;}
.x32{left:514.853333pt;}
.x9d{left:517.600000pt;}
.x6b{left:520.933333pt;}
.x31{left:527.333333pt;}
.x2e{left:531.173333pt;}
.xa0{left:547.653333pt;}
.x7e{left:551.653333pt;}
.x30{left:555.680000pt;}
.x7f{left:557.413333pt;}
.x33{left:561.920000pt;}
.x7c{left:570.373333pt;}
.x9e{left:571.386667pt;}
.xa2{left:577.920000pt;}
.x7d{left:584.773333pt;}
.x73{left:596.386667pt;}
.x74{left:605.506667pt;}
.x79{left:606.466667pt;}
.x7a{left:619.906667pt;}
.x77{left:624.226667pt;}
.x78{left:629.026667pt;}
.x76{left:629.986667pt;}
.x72{left:634.786667pt;}
.x75{left:639.106667pt;}
.x1e{left:643.200000pt;}
.x89{left:650.493333pt;}
.xe{left:660.773333pt;}
.x42{left:668.026667pt;}
.x9b{left:670.173333pt;}
.x1f{left:673.466667pt;}
.x8c{left:675.933333pt;}
.x98{left:681.213333pt;}
.x84{left:684.093333pt;}
.x92{left:699.933333pt;}
.x87{left:701.853333pt;}
.x8f{left:702.813333pt;}
.xd{left:704.960000pt;}
.x1{left:912.613333pt;}
.x6e{left:914.466667pt;}
.xc{left:916.800000pt;}
.x5{left:920.226667pt;}
.x2{left:951.040000pt;}
}




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