
    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_53ab771bed6ef904784ed63e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_b4b8d527e79467ecd32482c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.734000;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_b4b8d527e79467ecd32482c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734000;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_21b7694f2fb6b3e3a022368c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940000;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_6b54276d5c6d05a8b824fb69.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.751000;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_500de047ab857313ceca570a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.931000;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_4cf6fd5c2868f3760cde3544.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3e50f6a4cd54fb89766c17cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_26d93cbb5b6a6333768e5549.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e9cbf254e3ed4b12841af6b2.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7a5e7fdd23738e73fcee6624.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_73d712c73b1df42ea130fb31.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_e62992f6a020d31f3ce5aab8.woff2')format("woff");}.fff{font-family:fff;line-height:1.112305;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_059c3395ccfbb7a64fd9c90b.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_ccb393a5897fb20ef5a06f35.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b07858cd56c45f89402aaf88.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_ce03e3308cc451c728bd378e.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_60f4542c1a6ab2a6de3387f3.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.592000;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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-35.580000px;}
.vc{vertical-align:-34.200000px;}
.v4{vertical-align:-32.580000px;}
.v12{vertical-align:-30.900000px;}
.vd{vertical-align:-29.280000px;}
.vb{vertical-align:-27.900000px;}
.v1{vertical-align:-22.500000px;}
.v7{vertical-align:-20.520000px;}
.v2{vertical-align:-18.000000px;}
.v13{vertical-align:-15.420000px;}
.v14{vertical-align:-11.700000px;}
.v16{vertical-align:-9.780000px;}
.v17{vertical-align:-7.320000px;}
.v9{vertical-align:-3.480000px;}
.v8{vertical-align:-1.080000px;}
.v0{vertical-align:0.000000px;}
.v15{vertical-align:1.320000px;}
.v6{vertical-align:3.240000px;}
.v3{vertical-align:18.000000px;}
.ve{vertical-align:20.580000px;}
.v10{vertical-align:24.000000px;}
.v11{vertical-align:27.420000px;}
.v5{vertical-align:34.200000px;}
.vf{vertical-align:39.900000px;}
.ls2b{letter-spacing:-2.988000px;}
.ls2d{letter-spacing:-2.766000px;}
.ls17{letter-spacing:-2.190000px;}
.ls16{letter-spacing:-2.124000px;}
.ls3d{letter-spacing:-2.031840px;}
.ls18{letter-spacing:-1.974000px;}
.ls14{letter-spacing:-1.554000px;}
.ls13{letter-spacing:-1.512000px;}
.ls1b{letter-spacing:-1.482000px;}
.ls33{letter-spacing:-1.314000px;}
.ls15{letter-spacing:-1.284000px;}
.ls6{letter-spacing:-1.266000px;}
.ls3b{letter-spacing:-1.194000px;}
.ls7{letter-spacing:-1.026000px;}
.ls3a{letter-spacing:-0.774000px;}
.ls37{letter-spacing:-0.660000px;}
.ls36{letter-spacing:-0.600000px;}
.ls3c{letter-spacing:-0.298800px;}
.ls40{letter-spacing:-0.270000px;}
.ls3f{letter-spacing:-0.162000px;}
.ls5{letter-spacing:-0.072000px;}
.ls32{letter-spacing:-0.066240px;}
.ls38{letter-spacing:-0.060000px;}
.ls3e{letter-spacing:-0.059760px;}
.ls27{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.018000px;}
.ls2e{letter-spacing:0.033120px;}
.ls34{letter-spacing:0.060000px;}
.ls24{letter-spacing:0.078000px;}
.ls31{letter-spacing:0.119520px;}
.ls2f{letter-spacing:0.120000px;}
.ls30{letter-spacing:0.179280px;}
.ls39{letter-spacing:0.240000px;}
.ls25{letter-spacing:0.324000px;}
.ls26{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.513000px;}
.ls1e{letter-spacing:0.642000px;}
.ls35{letter-spacing:0.714000px;}
.lsa{letter-spacing:0.768000px;}
.ls2a{letter-spacing:1.188000px;}
.lsf{letter-spacing:1.392000px;}
.lsc{letter-spacing:1.404000px;}
.lsb{letter-spacing:1.416000px;}
.ls1a{letter-spacing:1.476000px;}
.lse{letter-spacing:1.494000px;}
.lsd{letter-spacing:1.512000px;}
.ls1f{letter-spacing:1.536000px;}
.ls22{letter-spacing:1.548000px;}
.ls20{letter-spacing:1.584000px;}
.ls19{letter-spacing:1.596000px;}
.ls11{letter-spacing:1.626000px;}
.ls12{letter-spacing:1.644000px;}
.ls21{letter-spacing:1.692000px;}
.ls2c{letter-spacing:1.737000px;}
.ls8{letter-spacing:1.740000px;}
.ls2{letter-spacing:1.800000px;}
.ls3{letter-spacing:1.962000px;}
.ls9{letter-spacing:1.992000px;}
.ls1{letter-spacing:2.250000px;}
.ls29{letter-spacing:2.322000px;}
.ls28{letter-spacing:2.376000px;}
.ls1c{letter-spacing:6.240000px;}
.ls1d{letter-spacing:10.737000px;}
.ls4{letter-spacing:848.757000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2d{word-spacing:-37.692000px;}
.ws2f{word-spacing:-37.548000px;}
.ws3c{word-spacing:-28.745040px;}
.ws4{word-spacing:-22.503000px;}
.ws9{word-spacing:-18.255000px;}
.ws32{word-spacing:-17.031000px;}
.wsa{word-spacing:-16.776000px;}
.wsc{word-spacing:-16.638000px;}
.ws33{word-spacing:-16.524000px;}
.wsd{word-spacing:-16.506000px;}
.ws18{word-spacing:-16.488000px;}
.ws30{word-spacing:-16.416000px;}
.ws6{word-spacing:-16.263000px;}
.ws5{word-spacing:-15.237000px;}
.ws39{word-spacing:-15.102720px;}
.ws8{word-spacing:-15.053700px;}
.ws38{word-spacing:-15.036480px;}
.ws31{word-spacing:-15.012000px;}
.ws37{word-spacing:-14.781000px;}
.ws35{word-spacing:-14.688000px;}
.ws3b{word-spacing:-13.745280px;}
.ws3f{word-spacing:-13.744800px;}
.ws3a{word-spacing:-13.625280px;}
.ws36{word-spacing:-13.500000px;}
.ws3d{word-spacing:-13.326480px;}
.ws14{word-spacing:-12.346200px;}
.ws13{word-spacing:-12.312000px;}
.ws40{word-spacing:-12.150000px;}
.ws41{word-spacing:-12.042000px;}
.ws34{word-spacing:-12.024000px;}
.ws3e{word-spacing:-11.593440px;}
.wsf{word-spacing:-11.320200px;}
.ws17{word-spacing:-11.300700px;}
.wse{word-spacing:-11.286000px;}
.ws7{word-spacing:-11.259000px;}
.ws3{word-spacing:-11.214000px;}
.ws1{word-spacing:-10.440000px;}
.wsb{word-spacing:-10.008000px;}
.ws2b{word-spacing:-9.792000px;}
.ws2e{word-spacing:-9.756000px;}
.ws1e{word-spacing:-9.268200px;}
.ws1a{word-spacing:-9.234000px;}
.ws2c{word-spacing:-8.208000px;}
.ws50{word-spacing:-2.124000px;}
.ws4e{word-spacing:-0.714000px;}
.ws4b{word-spacing:-0.240000px;}
.ws5a{word-spacing:-0.198000px;}
.ws59{word-spacing:-0.126000px;}
.ws44{word-spacing:-0.120000px;}
.ws5e{word-spacing:-0.119520px;}
.ws42{word-spacing:-0.066240px;}
.ws49{word-spacing:-0.066000px;}
.ws4c{word-spacing:-0.060000px;}
.ws5f{word-spacing:-0.059760px;}
.ws51{word-spacing:-0.054000px;}
.ws5c{word-spacing:-0.024000px;}
.ws0{word-spacing:0.000000px;}
.ws4a{word-spacing:0.054000px;}
.ws5d{word-spacing:0.059760px;}
.ws53{word-spacing:0.060000px;}
.ws43{word-spacing:0.066240px;}
.ws61{word-spacing:0.108000px;}
.ws4d{word-spacing:0.120000px;}
.ws55{word-spacing:0.288000px;}
.ws60{word-spacing:0.298800px;}
.ws58{word-spacing:0.540000px;}
.ws46{word-spacing:0.588000px;}
.ws52{word-spacing:0.594000px;}
.ws4f{word-spacing:0.600000px;}
.ws5b{word-spacing:0.606000px;}
.ws54{word-spacing:0.624000px;}
.ws45{word-spacing:0.660000px;}
.ws47{word-spacing:0.774000px;}
.ws57{word-spacing:0.870000px;}
.ws56{word-spacing:1.002000px;}
.ws48{word-spacing:1.362000px;}
.ws2{word-spacing:7.560000px;}
.ws15{word-spacing:59.502000px;}
.ws16{word-spacing:70.962000px;}
.ws23{word-spacing:167.323800px;}
.ws22{word-spacing:167.445000px;}
.ws21{word-spacing:167.503800px;}
.ws1f{word-spacing:167.563800px;}
.ws20{word-spacing:167.625000px;}
.ws25{word-spacing:167.685000px;}
.ws29{word-spacing:171.105000px;}
.ws1d{word-spacing:176.220000px;}
.ws27{word-spacing:176.383800px;}
.ws1b{word-spacing:176.443800px;}
.ws24{word-spacing:176.505000px;}
.ws26{word-spacing:176.563800px;}
.ws1c{word-spacing:176.565000px;}
.ws28{word-spacing:176.625000px;}
.ws19{word-spacing:176.685000px;}
.ws11{word-spacing:179.262000px;}
.ws10{word-spacing:179.532000px;}
.ws12{word-spacing:179.592000px;}
.ws2a{word-spacing:182.023800px;}
._26{margin-left:-1674.136500px;}
._2{margin-left:-11.484000px;}
._1{margin-left:-10.440000px;}
._3{margin-left:-9.396000px;}
._1a{margin-left:-8.092650px;}
._16{margin-left:-6.826650px;}
._0{margin-left:-5.220000px;}
._6{margin-left:-3.894000px;}
._4{margin-left:-2.250000px;}
._7{margin-left:-1.135200px;}
._8{width:1.189650px;}
._5{width:2.250000px;}
._b{width:3.258150px;}
._9{width:4.308600px;}
._a{width:6.062700px;}
._f{width:7.142100px;}
._14{width:8.739900px;}
._10{width:9.914250px;}
._d{width:11.913000px;}
._23{width:13.470000px;}
._c{width:15.050550px;}
._11{width:16.280250px;}
._19{width:17.358000px;}
._12{width:18.696000px;}
._e{width:20.645100px;}
._18{width:22.110000px;}
._13{width:24.183000px;}
._1e{width:26.456700px;}
._17{width:27.838950px;}
._21{width:29.006100px;}
._15{width:30.078300px;}
._1f{width:32.328000px;}
._1d{width:33.654000px;}
._20{width:35.559450px;}
._22{width:38.299350px;}
._24{width:41.370750px;}
._25{width:42.988500px;}
._29{width:87.791550px;}
._28{width:172.079850px;}
._2e{width:330.885900px;}
._2a{width:348.742800px;}
._1c{width:397.968150px;}
._27{width:416.199000px;}
._2c{width:524.632800px;}
._2b{width:640.066350px;}
._1b{width:731.001600px;}
._2d{width:825.903750px;}
._30{width:850.079400px;}
._2f{width:919.806450px;}
.fca{color:transparent;}
.fc9{color:rgb(255,0,0);}
.fc8{color:rgb(95,187,201);}
.fc7{color:rgb(110,53,139);}
.fc5{color:rgb(214,0,126);}
.fc6{color:rgb(0,130,173);}
.fc4{color:rgb(0,73,101);}
.fc3{color:rgb(227,5,19);}
.fc1{color:rgb(227,5,19);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:22.500000px;}
.fsf{font-size:36.000000px;}
.fsd{font-size:40.500000px;}
.fs13{font-size:40.650000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:49.500000px;}
.fs11{font-size:49.650000px;}
.fs10{font-size:54.000000px;}
.fse{font-size:54.150000px;}
.fs9{font-size:58.500000px;}
.fs15{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs14{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:85.500000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fsb{font-size:108.150000px;}
.fs6{font-size:252.000000px;}
.fs5{font-size:261.000000px;}
.y0{bottom:0.000000px;}
.y1bc{bottom:0.015000px;}
.y122{bottom:2.250000px;}
.y1a6{bottom:2.265000px;}
.y1b3{bottom:2.280000px;}
.y126{bottom:2.295000px;}
.y8a{bottom:3.255000px;}
.y149{bottom:3.300000px;}
.y124{bottom:3.375000px;}
.y11f{bottom:3.420000px;}
.y12e{bottom:3.570000px;}
.y128{bottom:3.675000px;}
.y11b{bottom:3.705000px;}
.y12c{bottom:3.900000px;}
.y78{bottom:4.230000px;}
.y130{bottom:4.320000px;}
.y19e{bottom:4.545000px;}
.y136{bottom:4.575000px;}
.ycd{bottom:4.605000px;}
.y11d{bottom:4.650000px;}
.y12a{bottom:5.505000px;}
.y132{bottom:5.580000px;}
.y151{bottom:5.625000px;}
.y134{bottom:5.895000px;}
.y73{bottom:6.570000px;}
.y1a2{bottom:6.750000px;}
.y1b7{bottom:6.765000px;}
.y1a3{bottom:6.780000px;}
.y1b4{bottom:6.795000px;}
.y1ad{bottom:7.875000px;}
.y1b1{bottom:7.890000px;}
.y14d{bottom:7.905000px;}
.y1b5{bottom:7.920000px;}
.y186{bottom:9.000000px;}
.yb7{bottom:9.345000px;}
.y155{bottom:10.125000px;}
.y15b{bottom:10.140000px;}
.y157{bottom:10.170000px;}
.y15d{bottom:11.250000px;}
.y189{bottom:11.295000px;}
.y19c{bottom:12.420000px;}
.y14f{bottom:13.500000px;}
.y182{bottom:14.625000px;}
.y15a{bottom:14.640000px;}
.y187{bottom:14.655000px;}
.y156{bottom:14.670000px;}
.y18b{bottom:15.750000px;}
.y14b{bottom:15.780000px;}
.y18a{bottom:15.795000px;}
.y153{bottom:18.000000px;}
.y17f{bottom:19.125000px;}
.y1a1{bottom:19.155000px;}
.y1a8{bottom:19.170000px;}
.y19d{bottom:20.295000px;}
.y148{bottom:20.925000px;}
.y150{bottom:21.375000px;}
.y1ab{bottom:21.405000px;}
.y1ba{bottom:21.420000px;}
.y89{bottom:22.005000px;}
.y1a7{bottom:22.500000px;}
.y14c{bottom:22.530000px;}
.y2a{bottom:23.662500px;}
.ycc{bottom:26.625000px;}
.y1bf{bottom:27.030000px;}
.yb6{bottom:31.980000px;}
.y1c3{bottom:33.780000px;}
.y180{bottom:34.920000px;}
.y6{bottom:35.925007px;}
.y29{bottom:37.200000px;}
.y147{bottom:38.550000px;}
.y88{bottom:40.800000px;}
.ycb{bottom:48.645000px;}
.y1c2{bottom:49.545000px;}
.y1af{bottom:54.045000px;}
.y146{bottom:56.175000px;}
.y87{bottom:64.620000px;}
.y5{bottom:66.525004px;}
.y1b9{bottom:72.075000px;}
.y145{bottom:73.800000px;}
.yca{bottom:77.205000px;}
.yb5{bottom:80.520000px;}
.y79{bottom:81.045000px;}
.y1c8{bottom:88.987500px;}
.ya6{bottom:90.112500px;}
.y144{bottom:91.425000px;}
.y71{bottom:92.362500px;}
.yb9{bottom:93.600000px;}
.y7a{bottom:95.505000px;}
.ya8{bottom:96.945000px;}
.y4{bottom:97.125005px;}
.y52{bottom:97.987500px;}
.y1c7{bottom:104.737500px;}
.y70{bottom:108.112500px;}
.y143{bottom:109.050000px;}
.y7b{bottom:110.025000px;}
.yba{bottom:110.325000px;}
.y167{bottom:111.487500px;}
.y51{bottom:112.612500px;}
.ya9{bottom:119.025000px;}
.y1c6{bottom:119.362500px;}
.y6f{bottom:123.900000px;}
.y7c{bottom:124.500000px;}
.ybb{bottom:127.050000px;}
.ya5{bottom:128.400000px;}
.ye0{bottom:129.525000px;}
.y16f{bottom:131.775000px;}
.y76{bottom:134.550000px;}
.y142{bottom:135.795000px;}
.y166{bottom:136.275000px;}
.y206{bottom:136.980000px;}
.y6e{bottom:138.525000px;}
.y7d{bottom:139.005000px;}
.y21{bottom:139.264499px;}
.y1e5{bottom:140.775000px;}
.yaa{bottom:141.120000px;}
.ybc{bottom:143.775000px;}
.ya4{bottom:144.150000px;}
.y1c1{bottom:146.400000px;}
.y141{bottom:147.030000px;}
.y75{bottom:147.300000px;}
.yb8{bottom:151.875000px;}
.y7e{bottom:153.495000px;}
.y205{bottom:153.544500px;}
.yf1{bottom:154.275000px;}
.y16e{bottom:155.400000px;}
.y137{bottom:156.405000px;}
.ya3{bottom:156.525000px;}
.ya7{bottom:157.500000px;}
.y6d{bottom:159.900000px;}
.ybd{bottom:160.500000px;}
.yab{bottom:163.245000px;}
.y50{bottom:164.400000px;}
.y7f{bottom:168.000000px;}
.y1c5{bottom:168.930000px;}
.y204{bottom:169.920000px;}
.yf0{bottom:170.055000px;}
.y1e4{bottom:171.180000px;}
.ybe{bottom:177.225000px;}
.y6c{bottom:177.930000px;}
.y16d{bottom:180.180000px;}
.y80{bottom:182.475000px;}
.y165{bottom:183.555000px;}
.yac{bottom:185.325000px;}
.y19a{bottom:185.805000px;}
.y203{bottom:186.480000px;}
.y4f{bottom:188.055000px;}
.yef{bottom:191.430000px;}
.y1c4{bottom:192.570000px;}
.y6b{bottom:193.695000px;}
.ybf{bottom:193.950000px;}
.y18{bottom:196.933500px;}
.y81{bottom:196.980000px;}
.y138{bottom:199.275000px;}
.y202{bottom:203.044500px;}
.y16c{bottom:203.820000px;}
.y1e3{bottom:204.945000px;}
.yee{bottom:206.070000px;}
.yad{bottom:207.450000px;}
.y164{bottom:208.320000px;}
.y6a{bottom:209.445000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y199{bottom:210.600000px;}
.yc0{bottom:210.675000px;}
.y82{bottom:211.470000px;}
.y4e{bottom:212.850000px;}
.ydf{bottom:215.100000px;}
.y1c0{bottom:216.225000px;}
.y201{bottom:219.420000px;}
.y17c{bottom:221.850000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y83{bottom:225.975000px;}
.yc1{bottom:227.400000px;}
.y16b{bottom:227.475000px;}
.yae{bottom:229.545000px;}
.y69{bottom:229.725000px;}
.y163{bottom:231.975000px;}
.y198{bottom:234.225000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y4d{bottom:236.475000px;}
.y1be{bottom:238.725000px;}
.yde{bottom:239.850000px;}
.y84{bottom:240.450000px;}
.y68{bottom:242.100000px;}
.y139{bottom:242.130000px;}
.yc2{bottom:244.125000px;}
.y17b{bottom:245.475000px;}
.y104{bottom:250.650000px;}
.yaf{bottom:251.655000px;}
.y16a{bottom:252.255000px;}
.y1e2{bottom:253.380000px;}
.y200{bottom:254.332440px;}
.y85{bottom:254.970000px;}
.y197{bottom:257.895000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y4c{bottom:260.130000px;}
.yc3{bottom:260.850000px;}
.y1bd{bottom:262.380000px;}
.y103{bottom:263.520000px;}
.yf8{bottom:264.645000px;}
.y17a{bottom:269.130000px;}
.y86{bottom:269.475000px;}
.y1ff{bottom:272.335200px;}
.y162{bottom:272.505000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yb0{bottom:273.750000px;}
.y169{bottom:275.880000px;}
.yc4{bottom:277.575000px;}
.ydd{bottom:280.380000px;}
.yfc{bottom:280.695000px;}
.y196{bottom:282.630000px;}
.y67{bottom:283.755000px;}
.y4b{bottom:284.895000px;}
.y13a{bottom:285.000000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yf7{bottom:286.005000px;}
.y161{bottom:292.755000px;}
.y179{bottom:293.880000px;}
.yc5{bottom:294.300000px;}
.yb1{bottom:295.830000px;}
.y168{bottom:299.550000px;}
.y1e1{bottom:300.675000px;}
.y195{bottom:306.300000px;}
.yfa{bottom:306.375000px;}
.y4a{bottom:308.550000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yfb{bottom:310.695000px;}
.yc6{bottom:311.025000px;}
.y1fe{bottom:313.016700px;}
.y178{bottom:317.550000px;}
.yb2{bottom:317.970000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y160{bottom:323.175000px;}
.yec{bottom:324.300000px;}
.yc7{bottom:327.750000px;}
.y13b{bottom:327.870000px;}
.yed{bottom:329.925000px;}
.yfe{bottom:331.695000px;}
.y49{bottom:332.175000px;}
.y66{bottom:337.830000px;}
.yb3{bottom:340.050000px;}
.yf6{bottom:340.080000px;}
.ydc{bottom:341.205000px;}
.yc8{bottom:344.475000px;}
.y102{bottom:344.970000px;}
.yeb{bottom:347.955000px;}
.yf{bottom:348.133500px;}
.y15f{bottom:349.080000px;}
.y1e0{bottom:349.095000px;}
.yfd{bottom:349.245000px;}
.yf5{bottom:351.330000px;}
.y1fd{bottom:351.717000px;}
.yf9{bottom:353.250000px;}
.y194{bottom:354.705000px;}
.y1bb{bottom:355.830000px;}
.y65{bottom:355.845000px;}
.y48{bottom:356.955000px;}
.yff{bottom:358.095000px;}
.yc9{bottom:361.200000px;}
.y101{bottom:362.100000px;}
.yb4{bottom:362.175000px;}
.ydb{bottom:365.970000px;}
.y10a{bottom:366.405000px;}
.y106{bottom:366.825000px;}
.y1fc{bottom:369.720000px;}
.y13c{bottom:370.725000px;}
.yea{bottom:371.580000px;}
.y193{bottom:378.330000px;}
.y100{bottom:379.275000px;}
.y47{bottom:380.580000px;}
.y15e{bottom:382.875000px;}
.y105{bottom:383.550000px;}
.ye{bottom:386.785499px;}
.y109{bottom:387.825000px;}
.yda{bottom:389.625000px;}
.ye9{bottom:396.375000px;}
.y110{bottom:396.420000px;}
.y107{bottom:396.720000px;}
.y10b{bottom:400.695000px;}
.y192{bottom:402.000000px;}
.y64{bottom:403.125000px;}
.y46{bottom:404.250000px;}
.y10d{bottom:404.970000px;}
.yd{bottom:408.044999px;}
.y108{bottom:409.275000px;}
.y10f{bottom:409.575000px;}
.y1fb{bottom:411.289500px;}
.y15c{bottom:412.125000px;}
.yd9{bottom:413.250000px;}
.y13d{bottom:413.595000px;}
.y1b8{bottom:415.500000px;}
.y10c{bottom:417.825000px;}
.ye8{bottom:420.000000px;}
.y112{bottom:422.145000px;}
.y63{bottom:423.375000px;}
.y10e{bottom:426.420000px;}
.y191{bottom:426.795000px;}
.y45{bottom:429.045000px;}
.y1fa{bottom:429.292500px;}
.y1df{bottom:430.170000px;}
.yd8{bottom:438.030000px;}
.y1b6{bottom:439.155000px;}
.y159{bottom:442.530000px;}
.ye7{bottom:443.670000px;}
.y113{bottom:444.945000px;}
.y1f9{bottom:447.295500px;}
.y62{bottom:448.155000px;}
.y190{bottom:449.295000px;}
.y116{bottom:452.145000px;}
.y44{bottom:452.670000px;}
.y111{bottom:456.330000px;}
.y13e{bottom:456.450000px;}
.y114{bottom:457.275000px;}
.y74{bottom:461.250000px;}
.yd7{bottom:461.655000px;}
.y18f{bottom:463.920000px;}
.y119{bottom:465.000000px;}
.ye6{bottom:468.450000px;}
.y115{bottom:469.275000px;}
.y158{bottom:471.825000px;}
.y43{bottom:476.325000px;}
.y1de{bottom:478.575000px;}
.y18e{bottom:479.700000px;}
.y120{bottom:482.130000px;}
.y117{bottom:484.650000px;}
.yd6{bottom:485.325000px;}
.ye5{bottom:492.075000px;}
.y1f8{bottom:495.540000px;}
.y13f{bottom:499.320000px;}
.y42{bottom:501.075000px;}
.y118{bottom:502.200000px;}
.y18d{bottom:503.325000px;}
.y1b2{bottom:508.950000px;}
.yd5{bottom:510.120000px;}
.ye4{bottom:515.745000px;}
.yc{bottom:520.864502px;}
.y41{bottom:524.730000px;}
.y1dd{bottom:525.870000px;}
.y154{bottom:531.480000px;}
.y18c{bottom:533.730000px;}
.yd3{bottom:533.745000px;}
.ya2{bottom:534.855000px;}
.yb{bottom:538.864499px;}
.yd4{bottom:539.370000px;}
.ye3{bottom:540.495000px;}
.y140{bottom:542.175000px;}
.y40{bottom:548.355000px;}
.y1b0{bottom:555.150000px;}
.ya{bottom:556.864499px;}
.yd2{bottom:557.400000px;}
.ya1{bottom:560.775000px;}
.y152{bottom:561.900000px;}
.ye2{bottom:564.150000px;}
.y3f{bottom:573.150000px;}
.y1dc{bottom:574.275000px;}
.ya0{bottom:576.525000px;}
.y72{bottom:577.125000px;}
.y1ae{bottom:578.775000px;}
.yd1{bottom:582.150000px;}
.ye1{bottom:587.775000px;}
.y188{bottom:594.525000px;}
.y3e{bottom:596.820000px;}
.y14e{bottom:599.070000px;}
.y1ac{bottom:601.320000px;}
.yd0{bottom:605.820000px;}
.y9f{bottom:612.570000px;}
.y77{bottom:616.500000px;}
.y3d{bottom:620.445000px;}
.y1db{bottom:622.695000px;}
.y1aa{bottom:624.945000px;}
.y185{bottom:626.070000px;}
.ycf{bottom:629.445000px;}
.y9e{bottom:636.195000px;}
.y1da{bottom:638.445000px;}
.y3c{bottom:645.225000px;}
.y9{bottom:645.510000px;}
.y177{bottom:654.225000px;}
.y184{bottom:656.475000px;}
.y9d{bottom:659.850000px;}
.y1a9{bottom:660.975000px;}
.y8{bottom:666.771000px;}
.y3b{bottom:668.850000px;}
.y1d9{bottom:669.975000px;}
.y26{bottom:670.535400px;}
.yce{bottom:671.100000px;}
.y1f7{bottom:673.350000px;}
.y176{bottom:677.850000px;}
.y9c{bottom:684.630000px;}
.y183{bottom:686.880000px;}
.y3a{bottom:692.520000px;}
.y14a{bottom:697.005000px;}
.y175{bottom:701.505000px;}
.y1f6{bottom:704.880000px;}
.y1a5{bottom:707.130000px;}
.y9b{bottom:708.255000px;}
.y39{bottom:717.255000px;}
.y1d8{bottom:718.380000px;}
.y1f5{bottom:721.755000px;}
.y25{bottom:724.535400px;}
.y7{bottom:726.298500px;}
.y174{bottom:726.300000px;}
.y9a{bottom:731.925000px;}
.y1d7{bottom:735.300000px;}
.y1a4{bottom:739.800000px;}
.y38{bottom:740.925000px;}
.y181{bottom:747.675000px;}
.y173{bottom:749.925000px;}
.y1d6{bottom:751.050000px;}
.y24{bottom:751.535400px;}
.y3{bottom:752.599495px;}
.y1f4{bottom:753.300000px;}
.y99{bottom:756.675000px;}
.y61{bottom:758.925000px;}
.y1a0{bottom:762.300000px;}
.y37{bottom:764.550000px;}
.y1f3{bottom:770.205000px;}
.y125{bottom:772.875000px;}
.y172{bottom:773.580000px;}
.y60{bottom:774.705000px;}
.y17e{bottom:778.080000px;}
.y98{bottom:780.330000px;}
.y12d{bottom:780.750000px;}
.y1d5{bottom:782.580000px;}
.y19f{bottom:785.955000px;}
.y131{bottom:786.375000px;}
.y12f{bottom:788.625000px;}
.y36{bottom:789.330000px;}
.y127{bottom:792.000000px;}
.y133{bottom:796.500000px;}
.y12b{bottom:797.625000px;}
.y171{bottom:798.330000px;}
.y1d4{bottom:799.455000px;}
.y1f2{bottom:800.580000px;}
.y97{bottom:803.955000px;}
.y129{bottom:805.500000px;}
.y23{bottom:805.535400px;}
.y5f{bottom:809.580000px;}
.y35{bottom:813.000000px;}
.y1d3{bottom:816.375000px;}
.y1f1{bottom:817.500000px;}
.y11a{bottom:819.000000px;}
.y135{bottom:823.500000px;}
.y96{bottom:828.750000px;}
.y121{bottom:832.500000px;}
.y11e{bottom:833.625000px;}
.y5e{bottom:834.375000px;}
.y11c{bottom:835.875000px;}
.y34{bottom:836.625000px;}
.y170{bottom:838.875000px;}
.y123{bottom:840.375000px;}
.y17d{bottom:846.750000px;}
.y1f0{bottom:849.000000px;}
.y95{bottom:852.375000px;}
.y5d{bottom:858.045000px;}
.y33{bottom:861.420000px;}
.y1d2{bottom:863.670000px;}
.y19b{bottom:864.795000px;}
.y1ef{bottom:865.920000px;}
.y94{bottom:876.045000px;}
.y2{bottom:879.369000px;}
.y1d1{bottom:880.545000px;}
.y5c{bottom:881.670000px;}
.y32{bottom:885.045000px;}
.y1ee{bottom:897.420000px;}
.y93{bottom:900.825000px;}
.y5b{bottom:906.450000px;}
.y31{bottom:908.700000px;}
.y1d0{bottom:912.075000px;}
.y1ed{bottom:914.325000px;}
.y92{bottom:924.450000px;}
.yf4{bottom:927.825000px;}
.y1cf{bottom:928.950000px;}
.y5a{bottom:930.075000px;}
.yf3{bottom:943.620000px;}
.y1ec{bottom:944.745000px;}
.y91{bottom:948.120000px;}
.y30{bottom:950.370000px;}
.y58{bottom:953.745000px;}
.y59{bottom:959.370000px;}
.y1eb{bottom:961.620000px;}
.y1{bottom:966.726000px;}
.y27{bottom:972.212700px;}
.y90{bottom:972.870000px;}
.y1ce{bottom:976.245000px;}
.y57{bottom:978.495000px;}
.yf2{bottom:984.150000px;}
.y2e{bottom:996.525000px;}
.y2f{bottom:1002.150000px;}
.y1cd{bottom:1007.775000px;}
.y1ea{bottom:1010.025000px;}
.y8f{bottom:1020.150000px;}
.y22{bottom:1023.023400px;}
.y1cc{bottom:1024.650000px;}
.y56{bottom:1025.775000px;}
.y1e9{bottom:1026.945000px;}
.y2d{bottom:1040.445000px;}
.y1cb{bottom:1041.570000px;}
.y8e{bottom:1044.945000px;}
.y55{bottom:1050.570000px;}
.y1e8{bottom:1057.320000px;}
.y2c{bottom:1065.195000px;}
.y8d{bottom:1068.570000px;}
.y1ca{bottom:1071.975000px;}
.y54{bottom:1074.225000px;}
.y1c9{bottom:1088.850000px;}
.y8c{bottom:1092.225000px;}
.y1e7{bottom:1105.725000px;}
.y2b{bottom:1107.975000px;}
.y53{bottom:1115.880000px;}
.y8b{bottom:1117.005000px;}
.y1e6{bottom:1122.630000px;}
.y28{bottom:1196.925000px;}
.h34{height:14.625000px;}
.h32{height:15.750000px;}
.h31{height:16.875000px;}
.h1d{height:18.000000px;}
.h1a{height:22.500000px;}
.h44{height:22.537500px;}
.h20{height:23.466797px;}
.h3e{height:29.250000px;}
.h3c{height:29.287500px;}
.h3d{height:30.375000px;}
.h3b{height:30.412500px;}
.h45{height:31.537500px;}
.h7{height:32.130000px;}
.h37{height:32.466797px;}
.h3f{height:32.662500px;}
.h41{height:33.787500px;}
.h47{height:34.912500px;}
.h36{height:36.037354px;}
.h4a{height:36.037500px;}
.h35{height:36.146558px;}
.h26{height:36.525146px;}
.h29{height:36.660425px;}
.h39{height:37.125000px;}
.h3a{height:37.162500px;}
.h24{height:37.546875px;}
.h30{height:37.845146px;}
.h38{height:38.287500px;}
.h18{height:38.320312px;}
.h42{height:39.313477px;}
.h28{height:39.765146px;}
.h16{height:42.240234px;}
.h23{height:42.396680px;}
.h11{height:44.641846px;}
.h1c{height:44.777124px;}
.h6{height:45.900000px;}
.h43{height:46.162500px;}
.h40{height:47.287500px;}
.h3{height:48.195000px;}
.h1f{height:48.700195px;}
.h1e{height:48.835474px;}
.hd{height:48.906000px;}
.h15{height:51.626953px;}
.hc{height:53.064000px;}
.h2c{height:53.625146px;}
.h46{height:54.037500px;}
.h2{height:55.080000px;}
.h17{height:56.320312px;}
.h19{height:56.476758px;}
.h51{height:57.618000px;}
.h33{height:61.005146px;}
.h10{height:61.013672px;}
.h4e{height:63.763920px;}
.h4f{height:63.764160px;}
.h50{height:64.779840px;}
.hb{height:67.050000px;}
.h4d{height:70.678080px;}
.h27{height:70.725146px;}
.h2d{height:70.980425px;}
.h14{height:75.093750px;}
.h2e{height:76.425146px;}
.h5{height:78.030000px;}
.h2a{height:88.005146px;}
.h13{height:89.173828px;}
.h4b{height:92.325000px;}
.h2b{height:105.360425px;}
.h12{height:112.797070px;}
.h48{height:115.987500px;}
.h4{height:119.055004px;}
.h2f{height:121.245146px;}
.h49{height:152.025000px;}
.ha{height:182.196000px;}
.h9{height:188.703000px;}
.h1b{height:282.375000px;}
.h21{height:376.875000px;}
.h22{height:382.500000px;}
.h25{height:553.500000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.he{height:1263.375000px;}
.hf{height:1263.750000px;}
.h4c{height:1264.500000px;}
.w10{width:12.412500px;}
.w19{width:16.912500px;}
.w18{width:29.287500px;}
.wf{width:57.375000px;}
.w15{width:73.237500px;}
.w8{width:74.250000px;}
.w6{width:75.375000px;}
.wd{width:84.375000px;}
.wc{width:85.500000px;}
.we{width:96.750000px;}
.w14{width:105.900000px;}
.w13{width:106.987500px;}
.w1b{width:116.025000px;}
.w12{width:117.150000px;}
.w11{width:168.930000px;}
.w17{width:206.130000px;}
.w1a{width:208.350000px;}
.w1c{width:297.375000px;}
.w9{width:299.250000px;}
.wa{width:325.125000px;}
.w16{width:332.250000px;}
.w2{width:637.794021px;}
.w7{width:651.375000px;}
.wb{width:667.125000px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w5{width:893.249973px;}
.w4{width:893.249987px;}
.w1{width:893.250000px;}
.w1d{width:895.500000px;}
.x0{left:0.000000px;}
.x1f{left:2.820000px;}
.x6c{left:4.500000px;}
.x45{left:6.150000px;}
.x1a{left:8.287500px;}
.x18{left:10.762500px;}
.x64{left:12.405000px;}
.x19{left:14.475000px;}
.x6f{left:18.030000px;}
.x54{left:19.162500px;}
.x20{left:20.775000px;}
.x22{left:24.000000px;}
.x61{left:27.030000px;}
.x1b{left:28.725000px;}
.x59{left:30.420000px;}
.x66{left:32.655000px;}
.x37{left:37.020000px;}
.x3b{left:40.875000px;}
.x14{left:42.375000px;}
.x5f{left:43.920000px;}
.x5d{left:48.405000px;}
.x2d{left:52.155000px;}
.x2b{left:53.280000px;}
.x1c{left:55.770000px;}
.x5b{left:58.575000px;}
.x5c{left:59.700000px;}
.x23{left:70.050000px;}
.x21{left:75.045000px;}
.x5{left:77.983650px;}
.x6{left:83.131200px;}
.x5e{left:86.745000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x2e{left:111.120000px;}
.x67{left:117.135000px;}
.x15{left:119.250000px;}
.x7{left:127.274987px;}
.x69{left:131.805000px;}
.x55{left:139.687500px;}
.x12{left:144.187487px;}
.x68{left:147.555000px;}
.xc{left:148.687487px;}
.x46{left:152.700000px;}
.x70{left:161.054987px;}
.x3a{left:164.250000px;}
.x33{left:167.820000px;}
.x2c{left:168.945000px;}
.x6a{left:175.724973px;}
.x26{left:180.224973px;}
.x6b{left:181.349987px;}
.x27{left:185.849987px;}
.x62{left:200.520000px;}
.x4{left:203.484001px;}
.x47{left:204.900000px;}
.x48{left:210.525000px;}
.x3c{left:217.125000px;}
.xa{left:226.379973px;}
.x71{left:231.306000px;}
.xb{left:233.174987px;}
.x49{left:262.725000px;}
.x4a{left:276.225000px;}
.x3d{left:277.875000px;}
.x35{left:284.595000px;}
.x56{left:308.625000px;}
.x36{left:317.250000px;}
.x4b{left:326.175000px;}
.x3e{left:337.500000px;}
.xd{left:343.529987px;}
.x6d{left:352.545000px;}
.x38{left:375.750000px;}
.x4c{left:377.250000px;}
.x3f{left:394.875000px;}
.xe{left:399.854973px;}
.xf{left:405.494987px;}
.x60{left:409.979987px;}
.x8{left:412.244987px;}
.x57{left:425.775000px;}
.x39{left:432.000000px;}
.x4d{left:440.700000px;}
.x9{left:446.069987px;}
.x40{left:452.250000px;}
.x3{left:454.959000px;}
.x32{left:456.945000px;}
.x2f{left:458.070000px;}
.x1d{left:466.319987px;}
.x6e{left:468.570000px;}
.x4e{left:498.525000px;}
.x4f{left:499.650000px;}
.x41{left:509.625000px;}
.x30{left:515.880000px;}
.x63{left:532.770000px;}
.x58{left:542.925000px;}
.x50{left:556.350000px;}
.x51{left:557.475000px;}
.x42{left:568.125000px;}
.x24{left:569.969973px;}
.x34{left:573.675000px;}
.x25{left:575.594987px;}
.x52{left:614.175000px;}
.x16{left:618.525000px;}
.x53{left:623.175000px;}
.x43{left:624.375000px;}
.x31{left:631.500000px;}
.x5a{left:649.905000px;}
.x10{left:684.824973px;}
.x11{left:690.449987px;}
.x13{left:695.250000px;}
.x17{left:696.375000px;}
.x28{left:727.649973px;}
.x29{left:733.274987px;}
.x44{left:736.875000px;}
.x65{left:738.900000px;}
.x1e{left:765.944987px;}
.x2a{left:795.224987px;}
@media print{
.va{vertical-align:-31.626667pt;}
.vc{vertical-align:-30.400000pt;}
.v4{vertical-align:-28.960000pt;}
.v12{vertical-align:-27.466667pt;}
.vd{vertical-align:-26.026667pt;}
.vb{vertical-align:-24.800000pt;}
.v1{vertical-align:-20.000000pt;}
.v7{vertical-align:-18.240000pt;}
.v2{vertical-align:-16.000000pt;}
.v13{vertical-align:-13.706667pt;}
.v14{vertical-align:-10.400000pt;}
.v16{vertical-align:-8.693333pt;}
.v17{vertical-align:-6.506667pt;}
.v9{vertical-align:-3.093333pt;}
.v8{vertical-align:-0.960000pt;}
.v0{vertical-align:0.000000pt;}
.v15{vertical-align:1.173333pt;}
.v6{vertical-align:2.880000pt;}
.v3{vertical-align:16.000000pt;}
.ve{vertical-align:18.293333pt;}
.v10{vertical-align:21.333333pt;}
.v11{vertical-align:24.373333pt;}
.v5{vertical-align:30.400000pt;}
.vf{vertical-align:35.466667pt;}
.ls2b{letter-spacing:-2.656000pt;}
.ls2d{letter-spacing:-2.458667pt;}
.ls17{letter-spacing:-1.946667pt;}
.ls16{letter-spacing:-1.888000pt;}
.ls3d{letter-spacing:-1.806080pt;}
.ls18{letter-spacing:-1.754667pt;}
.ls14{letter-spacing:-1.381333pt;}
.ls13{letter-spacing:-1.344000pt;}
.ls1b{letter-spacing:-1.317333pt;}
.ls33{letter-spacing:-1.168000pt;}
.ls15{letter-spacing:-1.141333pt;}
.ls6{letter-spacing:-1.125333pt;}
.ls3b{letter-spacing:-1.061333pt;}
.ls7{letter-spacing:-0.912000pt;}
.ls3a{letter-spacing:-0.688000pt;}
.ls37{letter-spacing:-0.586667pt;}
.ls36{letter-spacing:-0.533333pt;}
.ls3c{letter-spacing:-0.265600pt;}
.ls40{letter-spacing:-0.240000pt;}
.ls3f{letter-spacing:-0.144000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls32{letter-spacing:-0.058880pt;}
.ls38{letter-spacing:-0.053333pt;}
.ls3e{letter-spacing:-0.053120pt;}
.ls27{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.016000pt;}
.ls2e{letter-spacing:0.029440pt;}
.ls34{letter-spacing:0.053333pt;}
.ls24{letter-spacing:0.069333pt;}
.ls31{letter-spacing:0.106240pt;}
.ls2f{letter-spacing:0.106667pt;}
.ls30{letter-spacing:0.159360pt;}
.ls39{letter-spacing:0.213333pt;}
.ls25{letter-spacing:0.288000pt;}
.ls26{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.456000pt;}
.ls1e{letter-spacing:0.570667pt;}
.ls35{letter-spacing:0.634667pt;}
.lsa{letter-spacing:0.682667pt;}
.ls2a{letter-spacing:1.056000pt;}
.lsf{letter-spacing:1.237333pt;}
.lsc{letter-spacing:1.248000pt;}
.lsb{letter-spacing:1.258667pt;}
.ls1a{letter-spacing:1.312000pt;}
.lse{letter-spacing:1.328000pt;}
.lsd{letter-spacing:1.344000pt;}
.ls1f{letter-spacing:1.365333pt;}
.ls22{letter-spacing:1.376000pt;}
.ls20{letter-spacing:1.408000pt;}
.ls19{letter-spacing:1.418667pt;}
.ls11{letter-spacing:1.445333pt;}
.ls12{letter-spacing:1.461333pt;}
.ls21{letter-spacing:1.504000pt;}
.ls2c{letter-spacing:1.544000pt;}
.ls8{letter-spacing:1.546667pt;}
.ls2{letter-spacing:1.600000pt;}
.ls3{letter-spacing:1.744000pt;}
.ls9{letter-spacing:1.770667pt;}
.ls1{letter-spacing:2.000000pt;}
.ls29{letter-spacing:2.064000pt;}
.ls28{letter-spacing:2.112000pt;}
.ls1c{letter-spacing:5.546667pt;}
.ls1d{letter-spacing:9.544000pt;}
.ls4{letter-spacing:754.450667pt;}
.ws2d{word-spacing:-33.504000pt;}
.ws2f{word-spacing:-33.376000pt;}
.ws3c{word-spacing:-25.551147pt;}
.ws4{word-spacing:-20.002667pt;}
.ws9{word-spacing:-16.226667pt;}
.ws32{word-spacing:-15.138667pt;}
.wsa{word-spacing:-14.912000pt;}
.wsc{word-spacing:-14.789333pt;}
.ws33{word-spacing:-14.688000pt;}
.wsd{word-spacing:-14.672000pt;}
.ws18{word-spacing:-14.656000pt;}
.ws30{word-spacing:-14.592000pt;}
.ws6{word-spacing:-14.456000pt;}
.ws5{word-spacing:-13.544000pt;}
.ws39{word-spacing:-13.424640pt;}
.ws8{word-spacing:-13.381067pt;}
.ws38{word-spacing:-13.365760pt;}
.ws31{word-spacing:-13.344000pt;}
.ws37{word-spacing:-13.138667pt;}
.ws35{word-spacing:-13.056000pt;}
.ws3b{word-spacing:-12.218027pt;}
.ws3f{word-spacing:-12.217600pt;}
.ws3a{word-spacing:-12.111360pt;}
.ws36{word-spacing:-12.000000pt;}
.ws3d{word-spacing:-11.845760pt;}
.ws14{word-spacing:-10.974400pt;}
.ws13{word-spacing:-10.944000pt;}
.ws40{word-spacing:-10.800000pt;}
.ws41{word-spacing:-10.704000pt;}
.ws34{word-spacing:-10.688000pt;}
.ws3e{word-spacing:-10.305280pt;}
.wsf{word-spacing:-10.062400pt;}
.ws17{word-spacing:-10.045067pt;}
.wse{word-spacing:-10.032000pt;}
.ws7{word-spacing:-10.008000pt;}
.ws3{word-spacing:-9.968000pt;}
.ws1{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.896000pt;}
.ws2b{word-spacing:-8.704000pt;}
.ws2e{word-spacing:-8.672000pt;}
.ws1e{word-spacing:-8.238400pt;}
.ws1a{word-spacing:-8.208000pt;}
.ws2c{word-spacing:-7.296000pt;}
.ws50{word-spacing:-1.888000pt;}
.ws4e{word-spacing:-0.634667pt;}
.ws4b{word-spacing:-0.213333pt;}
.ws5a{word-spacing:-0.176000pt;}
.ws59{word-spacing:-0.112000pt;}
.ws44{word-spacing:-0.106667pt;}
.ws5e{word-spacing:-0.106240pt;}
.ws42{word-spacing:-0.058880pt;}
.ws49{word-spacing:-0.058667pt;}
.ws4c{word-spacing:-0.053333pt;}
.ws5f{word-spacing:-0.053120pt;}
.ws51{word-spacing:-0.048000pt;}
.ws5c{word-spacing:-0.021333pt;}
.ws0{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.048000pt;}
.ws5d{word-spacing:0.053120pt;}
.ws53{word-spacing:0.053333pt;}
.ws43{word-spacing:0.058880pt;}
.ws61{word-spacing:0.096000pt;}
.ws4d{word-spacing:0.106667pt;}
.ws55{word-spacing:0.256000pt;}
.ws60{word-spacing:0.265600pt;}
.ws58{word-spacing:0.480000pt;}
.ws46{word-spacing:0.522667pt;}
.ws52{word-spacing:0.528000pt;}
.ws4f{word-spacing:0.533333pt;}
.ws5b{word-spacing:0.538667pt;}
.ws54{word-spacing:0.554667pt;}
.ws45{word-spacing:0.586667pt;}
.ws47{word-spacing:0.688000pt;}
.ws57{word-spacing:0.773333pt;}
.ws56{word-spacing:0.890667pt;}
.ws48{word-spacing:1.210667pt;}
.ws2{word-spacing:6.720000pt;}
.ws15{word-spacing:52.890667pt;}
.ws16{word-spacing:63.077333pt;}
.ws23{word-spacing:148.732267pt;}
.ws22{word-spacing:148.840000pt;}
.ws21{word-spacing:148.892267pt;}
.ws1f{word-spacing:148.945600pt;}
.ws20{word-spacing:149.000000pt;}
.ws25{word-spacing:149.053333pt;}
.ws29{word-spacing:152.093333pt;}
.ws1d{word-spacing:156.640000pt;}
.ws27{word-spacing:156.785600pt;}
.ws1b{word-spacing:156.838933pt;}
.ws24{word-spacing:156.893333pt;}
.ws26{word-spacing:156.945600pt;}
.ws1c{word-spacing:156.946667pt;}
.ws28{word-spacing:157.000000pt;}
.ws19{word-spacing:157.053333pt;}
.ws11{word-spacing:159.344000pt;}
.ws10{word-spacing:159.584000pt;}
.ws12{word-spacing:159.637333pt;}
.ws2a{word-spacing:161.798933pt;}
._26{margin-left:-1488.121333pt;}
._2{margin-left:-10.208000pt;}
._1{margin-left:-9.280000pt;}
._3{margin-left:-8.352000pt;}
._1a{margin-left:-7.193467pt;}
._16{margin-left:-6.068133pt;}
._0{margin-left:-4.640000pt;}
._6{margin-left:-3.461333pt;}
._4{margin-left:-2.000000pt;}
._7{margin-left:-1.009067pt;}
._8{width:1.057467pt;}
._5{width:2.000000pt;}
._b{width:2.896133pt;}
._9{width:3.829867pt;}
._a{width:5.389067pt;}
._f{width:6.348533pt;}
._14{width:7.768800pt;}
._10{width:8.812667pt;}
._d{width:10.589333pt;}
._23{width:11.973333pt;}
._c{width:13.378267pt;}
._11{width:14.471333pt;}
._19{width:15.429333pt;}
._12{width:16.618667pt;}
._e{width:18.351200pt;}
._18{width:19.653333pt;}
._13{width:21.496000pt;}
._1e{width:23.517067pt;}
._17{width:24.745733pt;}
._21{width:25.783200pt;}
._15{width:26.736267pt;}
._1f{width:28.736000pt;}
._1d{width:29.914667pt;}
._20{width:31.608400pt;}
._22{width:34.043867pt;}
._24{width:36.774000pt;}
._25{width:38.212000pt;}
._29{width:78.036933pt;}
._28{width:152.959867pt;}
._2e{width:294.120800pt;}
._2a{width:309.993600pt;}
._1c{width:353.749467pt;}
._27{width:369.954667pt;}
._2c{width:466.340267pt;}
._2b{width:568.947867pt;}
._1b{width:649.779200pt;}
._2d{width:734.136667pt;}
._30{width:755.626133pt;}
._2f{width:817.605733pt;}
.fs12{font-size:20.000000pt;}
.fsf{font-size:32.000000pt;}
.fsd{font-size:36.000000pt;}
.fs13{font-size:36.133333pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:44.000000pt;}
.fs11{font-size:44.133333pt;}
.fs10{font-size:48.000000pt;}
.fse{font-size:48.133333pt;}
.fs9{font-size:52.000000pt;}
.fs15{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs14{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:76.000000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fsb{font-size:96.133333pt;}
.fs6{font-size:224.000000pt;}
.fs5{font-size:232.000000pt;}
.y0{bottom:0.000000pt;}
.y1bc{bottom:0.013333pt;}
.y122{bottom:2.000000pt;}
.y1a6{bottom:2.013333pt;}
.y1b3{bottom:2.026667pt;}
.y126{bottom:2.040000pt;}
.y8a{bottom:2.893333pt;}
.y149{bottom:2.933333pt;}
.y124{bottom:3.000000pt;}
.y11f{bottom:3.040000pt;}
.y12e{bottom:3.173333pt;}
.y128{bottom:3.266667pt;}
.y11b{bottom:3.293333pt;}
.y12c{bottom:3.466667pt;}
.y78{bottom:3.760000pt;}
.y130{bottom:3.840000pt;}
.y19e{bottom:4.040000pt;}
.y136{bottom:4.066667pt;}
.ycd{bottom:4.093333pt;}
.y11d{bottom:4.133333pt;}
.y12a{bottom:4.893333pt;}
.y132{bottom:4.960000pt;}
.y151{bottom:5.000000pt;}
.y134{bottom:5.240000pt;}
.y73{bottom:5.840000pt;}
.y1a2{bottom:6.000000pt;}
.y1b7{bottom:6.013333pt;}
.y1a3{bottom:6.026667pt;}
.y1b4{bottom:6.040000pt;}
.y1ad{bottom:7.000000pt;}
.y1b1{bottom:7.013333pt;}
.y14d{bottom:7.026667pt;}
.y1b5{bottom:7.040000pt;}
.y186{bottom:8.000000pt;}
.yb7{bottom:8.306667pt;}
.y155{bottom:9.000000pt;}
.y15b{bottom:9.013333pt;}
.y157{bottom:9.040000pt;}
.y15d{bottom:10.000000pt;}
.y189{bottom:10.040000pt;}
.y19c{bottom:11.040000pt;}
.y14f{bottom:12.000000pt;}
.y182{bottom:13.000000pt;}
.y15a{bottom:13.013333pt;}
.y187{bottom:13.026667pt;}
.y156{bottom:13.040000pt;}
.y18b{bottom:14.000000pt;}
.y14b{bottom:14.026667pt;}
.y18a{bottom:14.040000pt;}
.y153{bottom:16.000000pt;}
.y17f{bottom:17.000000pt;}
.y1a1{bottom:17.026667pt;}
.y1a8{bottom:17.040000pt;}
.y19d{bottom:18.040000pt;}
.y148{bottom:18.600000pt;}
.y150{bottom:19.000000pt;}
.y1ab{bottom:19.026667pt;}
.y1ba{bottom:19.040000pt;}
.y89{bottom:19.560000pt;}
.y1a7{bottom:20.000000pt;}
.y14c{bottom:20.026667pt;}
.y2a{bottom:21.033333pt;}
.ycc{bottom:23.666667pt;}
.y1bf{bottom:24.026667pt;}
.yb6{bottom:28.426667pt;}
.y1c3{bottom:30.026667pt;}
.y180{bottom:31.040000pt;}
.y6{bottom:31.933340pt;}
.y29{bottom:33.066667pt;}
.y147{bottom:34.266667pt;}
.y88{bottom:36.266667pt;}
.ycb{bottom:43.240000pt;}
.y1c2{bottom:44.040000pt;}
.y1af{bottom:48.040000pt;}
.y146{bottom:49.933333pt;}
.y87{bottom:57.440000pt;}
.y5{bottom:59.133337pt;}
.y1b9{bottom:64.066667pt;}
.y145{bottom:65.600000pt;}
.yca{bottom:68.626667pt;}
.yb5{bottom:71.573333pt;}
.y79{bottom:72.040000pt;}
.y1c8{bottom:79.100000pt;}
.ya6{bottom:80.100000pt;}
.y144{bottom:81.266667pt;}
.y71{bottom:82.100000pt;}
.yb9{bottom:83.200000pt;}
.y7a{bottom:84.893333pt;}
.ya8{bottom:86.173333pt;}
.y4{bottom:86.333337pt;}
.y52{bottom:87.100000pt;}
.y1c7{bottom:93.100000pt;}
.y70{bottom:96.100000pt;}
.y143{bottom:96.933333pt;}
.y7b{bottom:97.800000pt;}
.yba{bottom:98.066667pt;}
.y167{bottom:99.100000pt;}
.y51{bottom:100.100000pt;}
.ya9{bottom:105.800000pt;}
.y1c6{bottom:106.100000pt;}
.y6f{bottom:110.133333pt;}
.y7c{bottom:110.666667pt;}
.ybb{bottom:112.933333pt;}
.ya5{bottom:114.133333pt;}
.ye0{bottom:115.133333pt;}
.y16f{bottom:117.133333pt;}
.y76{bottom:119.600000pt;}
.y142{bottom:120.706667pt;}
.y166{bottom:121.133333pt;}
.y206{bottom:121.760000pt;}
.y6e{bottom:123.133333pt;}
.y7d{bottom:123.560000pt;}
.y21{bottom:123.790666pt;}
.y1e5{bottom:125.133333pt;}
.yaa{bottom:125.440000pt;}
.ybc{bottom:127.800000pt;}
.ya4{bottom:128.133333pt;}
.y1c1{bottom:130.133333pt;}
.y141{bottom:130.693333pt;}
.y75{bottom:130.933333pt;}
.yb8{bottom:135.000000pt;}
.y7e{bottom:136.440000pt;}
.y205{bottom:136.484000pt;}
.yf1{bottom:137.133333pt;}
.y16e{bottom:138.133333pt;}
.y137{bottom:139.026667pt;}
.ya3{bottom:139.133333pt;}
.ya7{bottom:140.000000pt;}
.y6d{bottom:142.133333pt;}
.ybd{bottom:142.666667pt;}
.yab{bottom:145.106667pt;}
.y50{bottom:146.133333pt;}
.y7f{bottom:149.333333pt;}
.y1c5{bottom:150.160000pt;}
.y204{bottom:151.040000pt;}
.yf0{bottom:151.160000pt;}
.y1e4{bottom:152.160000pt;}
.ybe{bottom:157.533333pt;}
.y6c{bottom:158.160000pt;}
.y16d{bottom:160.160000pt;}
.y80{bottom:162.200000pt;}
.y165{bottom:163.160000pt;}
.yac{bottom:164.733333pt;}
.y19a{bottom:165.160000pt;}
.y203{bottom:165.760000pt;}
.y4f{bottom:167.160000pt;}
.yef{bottom:170.160000pt;}
.y1c4{bottom:171.173333pt;}
.y6b{bottom:172.173333pt;}
.ybf{bottom:172.400000pt;}
.y18{bottom:175.052000pt;}
.y81{bottom:175.093333pt;}
.y138{bottom:177.133333pt;}
.y202{bottom:180.484000pt;}
.y16c{bottom:181.173333pt;}
.y1e3{bottom:182.173333pt;}
.yee{bottom:183.173333pt;}
.yad{bottom:184.400000pt;}
.y164{bottom:185.173333pt;}
.y6a{bottom:186.173333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y199{bottom:187.200000pt;}
.yc0{bottom:187.266667pt;}
.y82{bottom:187.973333pt;}
.y4e{bottom:189.200000pt;}
.ydf{bottom:191.200000pt;}
.y1c0{bottom:192.200000pt;}
.y201{bottom:195.040000pt;}
.y17c{bottom:197.200000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y83{bottom:200.866667pt;}
.yc1{bottom:202.133333pt;}
.y16b{bottom:202.200000pt;}
.yae{bottom:204.040000pt;}
.y69{bottom:204.200000pt;}
.y163{bottom:206.200000pt;}
.y198{bottom:208.200000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y4d{bottom:210.200000pt;}
.y1be{bottom:212.200000pt;}
.yde{bottom:213.200000pt;}
.y84{bottom:213.733333pt;}
.y68{bottom:215.200000pt;}
.y139{bottom:215.226667pt;}
.yc2{bottom:217.000000pt;}
.y17b{bottom:218.200000pt;}
.y104{bottom:222.800000pt;}
.yaf{bottom:223.693333pt;}
.y16a{bottom:224.226667pt;}
.y1e2{bottom:225.226667pt;}
.y200{bottom:226.073280pt;}
.y85{bottom:226.640000pt;}
.y197{bottom:229.240000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y4c{bottom:231.226667pt;}
.yc3{bottom:231.866667pt;}
.y1bd{bottom:233.226667pt;}
.y103{bottom:234.240000pt;}
.yf8{bottom:235.240000pt;}
.y17a{bottom:239.226667pt;}
.y86{bottom:239.533333pt;}
.y1ff{bottom:242.075733pt;}
.y162{bottom:242.226667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yb0{bottom:243.333333pt;}
.y169{bottom:245.226667pt;}
.yc4{bottom:246.733333pt;}
.ydd{bottom:249.226667pt;}
.yfc{bottom:249.506667pt;}
.y196{bottom:251.226667pt;}
.y67{bottom:252.226667pt;}
.y4b{bottom:253.240000pt;}
.y13a{bottom:253.333333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yf7{bottom:254.226667pt;}
.y161{bottom:260.226667pt;}
.y179{bottom:261.226667pt;}
.yc5{bottom:261.600000pt;}
.yb1{bottom:262.960000pt;}
.y168{bottom:266.266667pt;}
.y1e1{bottom:267.266667pt;}
.y195{bottom:272.266667pt;}
.yfa{bottom:272.333333pt;}
.y4a{bottom:274.266667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yfb{bottom:276.173333pt;}
.yc6{bottom:276.466667pt;}
.y1fe{bottom:278.237067pt;}
.y178{bottom:282.266667pt;}
.yb2{bottom:282.640000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y160{bottom:287.266667pt;}
.yec{bottom:288.266667pt;}
.yc7{bottom:291.333333pt;}
.y13b{bottom:291.440000pt;}
.yed{bottom:293.266667pt;}
.yfe{bottom:294.840000pt;}
.y49{bottom:295.266667pt;}
.y66{bottom:300.293333pt;}
.yb3{bottom:302.266667pt;}
.yf6{bottom:302.293333pt;}
.ydc{bottom:303.293333pt;}
.yc8{bottom:306.200000pt;}
.y102{bottom:306.640000pt;}
.yeb{bottom:309.293333pt;}
.yf{bottom:309.452000pt;}
.y15f{bottom:310.293333pt;}
.y1e0{bottom:310.306667pt;}
.yfd{bottom:310.440000pt;}
.yf5{bottom:312.293333pt;}
.y1fd{bottom:312.637333pt;}
.yf9{bottom:314.000000pt;}
.y194{bottom:315.293333pt;}
.y1bb{bottom:316.293333pt;}
.y65{bottom:316.306667pt;}
.y48{bottom:317.293333pt;}
.yff{bottom:318.306667pt;}
.yc9{bottom:321.066667pt;}
.y101{bottom:321.866667pt;}
.yb4{bottom:321.933333pt;}
.ydb{bottom:325.306667pt;}
.y10a{bottom:325.693333pt;}
.y106{bottom:326.066667pt;}
.y1fc{bottom:328.640000pt;}
.y13c{bottom:329.533333pt;}
.yea{bottom:330.293333pt;}
.y193{bottom:336.293333pt;}
.y100{bottom:337.133333pt;}
.y47{bottom:338.293333pt;}
.y15e{bottom:340.333333pt;}
.y105{bottom:340.933333pt;}
.ye{bottom:343.809333pt;}
.y109{bottom:344.733333pt;}
.yda{bottom:346.333333pt;}
.ye9{bottom:352.333333pt;}
.y110{bottom:352.373333pt;}
.y107{bottom:352.640000pt;}
.y10b{bottom:356.173333pt;}
.y192{bottom:357.333333pt;}
.y64{bottom:358.333333pt;}
.y46{bottom:359.333333pt;}
.y10d{bottom:359.973333pt;}
.yd{bottom:362.706666pt;}
.y108{bottom:363.800000pt;}
.y10f{bottom:364.066667pt;}
.y1fb{bottom:365.590667pt;}
.y15c{bottom:366.333333pt;}
.yd9{bottom:367.333333pt;}
.y13d{bottom:367.640000pt;}
.y1b8{bottom:369.333333pt;}
.y10c{bottom:371.400000pt;}
.ye8{bottom:373.333333pt;}
.y112{bottom:375.240000pt;}
.y63{bottom:376.333333pt;}
.y10e{bottom:379.040000pt;}
.y191{bottom:379.373333pt;}
.y45{bottom:381.373333pt;}
.y1fa{bottom:381.593333pt;}
.y1df{bottom:382.373333pt;}
.yd8{bottom:389.360000pt;}
.y1b6{bottom:390.360000pt;}
.y159{bottom:393.360000pt;}
.ye7{bottom:394.373333pt;}
.y113{bottom:395.506667pt;}
.y1f9{bottom:397.596000pt;}
.y62{bottom:398.360000pt;}
.y190{bottom:399.373333pt;}
.y116{bottom:401.906667pt;}
.y44{bottom:402.373333pt;}
.y111{bottom:405.626667pt;}
.y13e{bottom:405.733333pt;}
.y114{bottom:406.466667pt;}
.y74{bottom:410.000000pt;}
.yd7{bottom:410.360000pt;}
.y18f{bottom:412.373333pt;}
.y119{bottom:413.333333pt;}
.ye6{bottom:416.400000pt;}
.y115{bottom:417.133333pt;}
.y158{bottom:419.400000pt;}
.y43{bottom:423.400000pt;}
.y1de{bottom:425.400000pt;}
.y18e{bottom:426.400000pt;}
.y120{bottom:428.560000pt;}
.y117{bottom:430.800000pt;}
.yd6{bottom:431.400000pt;}
.ye5{bottom:437.400000pt;}
.y1f8{bottom:440.480000pt;}
.y13f{bottom:443.840000pt;}
.y42{bottom:445.400000pt;}
.y118{bottom:446.400000pt;}
.y18d{bottom:447.400000pt;}
.y1b2{bottom:452.400000pt;}
.yd5{bottom:453.440000pt;}
.ye4{bottom:458.440000pt;}
.yc{bottom:462.990669pt;}
.y41{bottom:466.426667pt;}
.y1dd{bottom:467.440000pt;}
.y154{bottom:472.426667pt;}
.y18c{bottom:474.426667pt;}
.yd3{bottom:474.440000pt;}
.ya2{bottom:475.426667pt;}
.yb{bottom:478.990666pt;}
.yd4{bottom:479.440000pt;}
.ye3{bottom:480.440000pt;}
.y140{bottom:481.933333pt;}
.y40{bottom:487.426667pt;}
.y1b0{bottom:493.466667pt;}
.ya{bottom:494.990666pt;}
.yd2{bottom:495.466667pt;}
.ya1{bottom:498.466667pt;}
.y152{bottom:499.466667pt;}
.ye2{bottom:501.466667pt;}
.y3f{bottom:509.466667pt;}
.y1dc{bottom:510.466667pt;}
.ya0{bottom:512.466667pt;}
.y72{bottom:513.000000pt;}
.y1ae{bottom:514.466667pt;}
.yd1{bottom:517.466667pt;}
.ye1{bottom:522.466667pt;}
.y188{bottom:528.466667pt;}
.y3e{bottom:530.506667pt;}
.y14e{bottom:532.506667pt;}
.y1ac{bottom:534.506667pt;}
.yd0{bottom:538.506667pt;}
.y9f{bottom:544.506667pt;}
.y77{bottom:548.000000pt;}
.y3d{bottom:551.506667pt;}
.y1db{bottom:553.506667pt;}
.y1aa{bottom:555.506667pt;}
.y185{bottom:556.506667pt;}
.ycf{bottom:559.506667pt;}
.y9e{bottom:565.506667pt;}
.y1da{bottom:567.506667pt;}
.y3c{bottom:573.533333pt;}
.y9{bottom:573.786667pt;}
.y177{bottom:581.533333pt;}
.y184{bottom:583.533333pt;}
.y9d{bottom:586.533333pt;}
.y1a9{bottom:587.533333pt;}
.y8{bottom:592.685334pt;}
.y3b{bottom:594.533333pt;}
.y1d9{bottom:595.533333pt;}
.y26{bottom:596.031467pt;}
.yce{bottom:596.533333pt;}
.y1f7{bottom:598.533333pt;}
.y176{bottom:602.533333pt;}
.y9c{bottom:608.560000pt;}
.y183{bottom:610.560000pt;}
.y3a{bottom:615.573333pt;}
.y14a{bottom:619.560000pt;}
.y175{bottom:623.560000pt;}
.y1f6{bottom:626.560000pt;}
.y1a5{bottom:628.560000pt;}
.y9b{bottom:629.560000pt;}
.y39{bottom:637.560000pt;}
.y1d8{bottom:638.560000pt;}
.y1f5{bottom:641.560000pt;}
.y25{bottom:644.031467pt;}
.y7{bottom:645.598667pt;}
.y174{bottom:645.600000pt;}
.y9a{bottom:650.600000pt;}
.y1d7{bottom:653.600000pt;}
.y1a4{bottom:657.600000pt;}
.y38{bottom:658.600000pt;}
.y181{bottom:664.600000pt;}
.y173{bottom:666.600000pt;}
.y1d6{bottom:667.600000pt;}
.y24{bottom:668.031467pt;}
.y3{bottom:668.977329pt;}
.y1f4{bottom:669.600000pt;}
.y99{bottom:672.600000pt;}
.y61{bottom:674.600000pt;}
.y1a0{bottom:677.600000pt;}
.y37{bottom:679.600000pt;}
.y1f3{bottom:684.626667pt;}
.y125{bottom:687.000000pt;}
.y172{bottom:687.626667pt;}
.y60{bottom:688.626667pt;}
.y17e{bottom:691.626667pt;}
.y98{bottom:693.626667pt;}
.y12d{bottom:694.000000pt;}
.y1d5{bottom:695.626667pt;}
.y19f{bottom:698.626667pt;}
.y131{bottom:699.000000pt;}
.y12f{bottom:701.000000pt;}
.y36{bottom:701.626667pt;}
.y127{bottom:704.000000pt;}
.y133{bottom:708.000000pt;}
.y12b{bottom:709.000000pt;}
.y171{bottom:709.626667pt;}
.y1d4{bottom:710.626667pt;}
.y1f2{bottom:711.626667pt;}
.y97{bottom:714.626667pt;}
.y129{bottom:716.000000pt;}
.y23{bottom:716.031467pt;}
.y5f{bottom:719.626667pt;}
.y35{bottom:722.666667pt;}
.y1d3{bottom:725.666667pt;}
.y1f1{bottom:726.666667pt;}
.y11a{bottom:728.000000pt;}
.y135{bottom:732.000000pt;}
.y96{bottom:736.666667pt;}
.y121{bottom:740.000000pt;}
.y11e{bottom:741.000000pt;}
.y5e{bottom:741.666667pt;}
.y11c{bottom:743.000000pt;}
.y34{bottom:743.666667pt;}
.y170{bottom:745.666667pt;}
.y123{bottom:747.000000pt;}
.y17d{bottom:752.666667pt;}
.y1f0{bottom:754.666667pt;}
.y95{bottom:757.666667pt;}
.y5d{bottom:762.706667pt;}
.y33{bottom:765.706667pt;}
.y1d2{bottom:767.706667pt;}
.y19b{bottom:768.706667pt;}
.y1ef{bottom:769.706667pt;}
.y94{bottom:778.706667pt;}
.y2{bottom:781.661334pt;}
.y1d1{bottom:782.706667pt;}
.y5c{bottom:783.706667pt;}
.y32{bottom:786.706667pt;}
.y1ee{bottom:797.706667pt;}
.y93{bottom:800.733333pt;}
.y5b{bottom:805.733333pt;}
.y31{bottom:807.733333pt;}
.y1d0{bottom:810.733333pt;}
.y1ed{bottom:812.733333pt;}
.y92{bottom:821.733333pt;}
.yf4{bottom:824.733333pt;}
.y1cf{bottom:825.733333pt;}
.y5a{bottom:826.733333pt;}
.yf3{bottom:838.773333pt;}
.y1ec{bottom:839.773333pt;}
.y91{bottom:842.773333pt;}
.y30{bottom:844.773333pt;}
.y58{bottom:847.773333pt;}
.y59{bottom:852.773333pt;}
.y1eb{bottom:854.773333pt;}
.y1{bottom:859.312000pt;}
.y27{bottom:864.189067pt;}
.y90{bottom:864.773333pt;}
.y1ce{bottom:867.773333pt;}
.y57{bottom:869.773333pt;}
.yf2{bottom:874.800000pt;}
.y2e{bottom:885.800000pt;}
.y2f{bottom:890.800000pt;}
.y1cd{bottom:895.800000pt;}
.y1ea{bottom:897.800000pt;}
.y8f{bottom:906.800000pt;}
.y22{bottom:909.354133pt;}
.y1cc{bottom:910.800000pt;}
.y56{bottom:911.800000pt;}
.y1e9{bottom:912.840000pt;}
.y2d{bottom:924.840000pt;}
.y1cb{bottom:925.840000pt;}
.y8e{bottom:928.840000pt;}
.y55{bottom:933.840000pt;}
.y1e8{bottom:939.840000pt;}
.y2c{bottom:946.840000pt;}
.y8d{bottom:949.840000pt;}
.y1ca{bottom:952.866667pt;}
.y54{bottom:954.866667pt;}
.y1c9{bottom:967.866667pt;}
.y8c{bottom:970.866667pt;}
.y1e7{bottom:982.866667pt;}
.y2b{bottom:984.866667pt;}
.y53{bottom:991.893333pt;}
.y8b{bottom:992.893333pt;}
.y1e6{bottom:997.893333pt;}
.y28{bottom:1063.933333pt;}
.h34{height:13.000000pt;}
.h32{height:14.000000pt;}
.h31{height:15.000000pt;}
.h1d{height:16.000000pt;}
.h1a{height:20.000000pt;}
.h44{height:20.033333pt;}
.h20{height:20.859375pt;}
.h3e{height:26.000000pt;}
.h3c{height:26.033333pt;}
.h3d{height:27.000000pt;}
.h3b{height:27.033333pt;}
.h45{height:28.033333pt;}
.h7{height:28.560000pt;}
.h37{height:28.859375pt;}
.h3f{height:29.033333pt;}
.h41{height:30.033333pt;}
.h47{height:31.033333pt;}
.h36{height:32.033203pt;}
.h4a{height:32.033333pt;}
.h35{height:32.130273pt;}
.h26{height:32.466797pt;}
.h29{height:32.587044pt;}
.h39{height:33.000000pt;}
.h3a{height:33.033333pt;}
.h24{height:33.375000pt;}
.h30{height:33.640130pt;}
.h38{height:34.033333pt;}
.h18{height:34.062500pt;}
.h42{height:34.945312pt;}
.h28{height:35.346797pt;}
.h16{height:37.546875pt;}
.h23{height:37.685938pt;}
.h11{height:39.681641pt;}
.h1c{height:39.801888pt;}
.h6{height:40.800000pt;}
.h43{height:41.033333pt;}
.h40{height:42.033333pt;}
.h3{height:42.840000pt;}
.h1f{height:43.289062pt;}
.h1e{height:43.409310pt;}
.hd{height:43.472000pt;}
.h15{height:45.890625pt;}
.hc{height:47.168000pt;}
.h2c{height:47.666797pt;}
.h46{height:48.033333pt;}
.h2{height:48.960000pt;}
.h17{height:50.062500pt;}
.h19{height:50.201563pt;}
.h51{height:51.216000pt;}
.h33{height:54.226797pt;}
.h10{height:54.234375pt;}
.h4e{height:56.679040pt;}
.h4f{height:56.679253pt;}
.h50{height:57.582080pt;}
.hb{height:59.600000pt;}
.h4d{height:62.824960pt;}
.h27{height:62.866797pt;}
.h2d{height:63.093711pt;}
.h14{height:66.750000pt;}
.h2e{height:67.933464pt;}
.h5{height:69.360000pt;}
.h2a{height:78.226797pt;}
.h13{height:79.265625pt;}
.h4b{height:82.066667pt;}
.h2b{height:93.653711pt;}
.h12{height:100.264062pt;}
.h48{height:103.100000pt;}
.h4{height:105.826671pt;}
.h2f{height:107.773464pt;}
.h49{height:135.133333pt;}
.ha{height:161.952000pt;}
.h9{height:167.736000pt;}
.h1b{height:251.000000pt;}
.h21{height:335.000000pt;}
.h22{height:340.000000pt;}
.h25{height:492.000000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.he{height:1123.000000pt;}
.hf{height:1123.333333pt;}
.h4c{height:1124.000000pt;}
.w10{width:11.033333pt;}
.w19{width:15.033333pt;}
.w18{width:26.033333pt;}
.wf{width:51.000000pt;}
.w15{width:65.100000pt;}
.w8{width:66.000000pt;}
.w6{width:67.000000pt;}
.wd{width:75.000000pt;}
.wc{width:76.000000pt;}
.we{width:86.000000pt;}
.w14{width:94.133333pt;}
.w13{width:95.100000pt;}
.w1b{width:103.133333pt;}
.w12{width:104.133333pt;}
.w11{width:150.160000pt;}
.w17{width:183.226667pt;}
.w1a{width:185.200000pt;}
.w1c{width:264.333333pt;}
.w9{width:266.000000pt;}
.wa{width:289.000000pt;}
.w16{width:295.333333pt;}
.w2{width:566.928019pt;}
.w7{width:579.000000pt;}
.wb{width:593.000000pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w5{width:793.999976pt;}
.w4{width:793.999988pt;}
.w1{width:794.000000pt;}
.w1d{width:796.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:2.506667pt;}
.x6c{left:4.000000pt;}
.x45{left:5.466667pt;}
.x1a{left:7.366667pt;}
.x18{left:9.566667pt;}
.x64{left:11.026667pt;}
.x19{left:12.866667pt;}
.x6f{left:16.026667pt;}
.x54{left:17.033333pt;}
.x20{left:18.466667pt;}
.x22{left:21.333333pt;}
.x61{left:24.026667pt;}
.x1b{left:25.533333pt;}
.x59{left:27.040000pt;}
.x66{left:29.026667pt;}
.x37{left:32.906667pt;}
.x3b{left:36.333333pt;}
.x14{left:37.666667pt;}
.x5f{left:39.040000pt;}
.x5d{left:43.026667pt;}
.x2d{left:46.360000pt;}
.x2b{left:47.360000pt;}
.x1c{left:49.573333pt;}
.x5b{left:52.066667pt;}
.x5c{left:53.066667pt;}
.x23{left:62.266667pt;}
.x21{left:66.706667pt;}
.x5{left:69.318800pt;}
.x6{left:73.894400pt;}
.x5e{left:77.106667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x2e{left:98.773333pt;}
.x67{left:104.120000pt;}
.x15{left:106.000000pt;}
.x7{left:113.133322pt;}
.x69{left:117.160000pt;}
.x55{left:124.166667pt;}
.x12{left:128.166655pt;}
.x68{left:131.160000pt;}
.xc{left:132.166655pt;}
.x46{left:135.733333pt;}
.x70{left:143.159988pt;}
.x3a{left:146.000000pt;}
.x33{left:149.173333pt;}
.x2c{left:150.173333pt;}
.x6a{left:156.199976pt;}
.x26{left:160.199976pt;}
.x6b{left:161.199988pt;}
.x27{left:165.199988pt;}
.x62{left:178.240000pt;}
.x4{left:180.874667pt;}
.x47{left:182.133333pt;}
.x48{left:187.133333pt;}
.x3c{left:193.000000pt;}
.xa{left:201.226643pt;}
.x71{left:205.605333pt;}
.xb{left:207.266655pt;}
.x49{left:233.533333pt;}
.x4a{left:245.533333pt;}
.x3d{left:247.000000pt;}
.x35{left:252.973333pt;}
.x56{left:274.333333pt;}
.x36{left:282.000000pt;}
.x4b{left:289.933333pt;}
.x3e{left:300.000000pt;}
.xd{left:305.359988pt;}
.x6d{left:313.373333pt;}
.x38{left:334.000000pt;}
.x4c{left:335.333333pt;}
.x3f{left:351.000000pt;}
.xe{left:355.426643pt;}
.xf{left:360.439988pt;}
.x60{left:364.426655pt;}
.x8{left:366.439988pt;}
.x57{left:378.466667pt;}
.x39{left:384.000000pt;}
.x4d{left:391.733333pt;}
.x9{left:396.506655pt;}
.x40{left:402.000000pt;}
.x3{left:404.408000pt;}
.x32{left:406.173333pt;}
.x2f{left:407.173333pt;}
.x1d{left:414.506655pt;}
.x6e{left:416.506667pt;}
.x4e{left:443.133333pt;}
.x4f{left:444.133333pt;}
.x41{left:453.000000pt;}
.x30{left:458.560000pt;}
.x63{left:473.573333pt;}
.x58{left:482.600000pt;}
.x50{left:494.533333pt;}
.x51{left:495.533333pt;}
.x42{left:505.000000pt;}
.x24{left:506.639976pt;}
.x34{left:509.933333pt;}
.x25{left:511.639988pt;}
.x52{left:545.933333pt;}
.x16{left:549.800000pt;}
.x53{left:553.933333pt;}
.x43{left:555.000000pt;}
.x31{left:561.333333pt;}
.x5a{left:577.693333pt;}
.x10{left:608.733310pt;}
.x11{left:613.733322pt;}
.x13{left:618.000000pt;}
.x17{left:619.000000pt;}
.x28{left:646.799976pt;}
.x29{left:651.799988pt;}
.x44{left:655.000000pt;}
.x65{left:656.800000pt;}
.x1e{left:680.839988pt;}
.x2a{left:706.866655pt;}
}




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