
    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_8fe5ad99e5aa5ccd957bd02b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_cd3d16245eb2566f26ccd66c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.689453;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_61a9e832007aa3970fa0c0e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_9cbe2babf712bc6a43385ee9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_59de92f514da5d71572a3c4a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_de4ac0cb044c5d37b2c0478a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_2c4bdcdd66d6d3f96ad7dc94.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.860840;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_64ffb1a1e973ba9f88480c9c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_0474e88dbc1f9781ba04d0d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_8fe5ad99e5aa5ccd957bd02b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_8489045218376dfccc56acdd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_0474e88dbc1f9781ba04d0d3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_8fe5ad99e5aa5ccd957bd02b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_8489045218376dfccc56acdd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_0474e88dbc1f9781ba04d0d3.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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_2f271985602412ac585058f9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.200000;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_d82f7f5ec705c687ccdb6dbc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.860840;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_8ce49cb294a0b9be64597707.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.209660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209660,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-48.609600px;}
.v4{vertical-align:-45.022500px;}
.v5{vertical-align:-36.366000px;}
.v7{vertical-align:-18.959400px;}
.v8{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:8.273400px;}
.v3{vertical-align:17.982000px;}
.v6{vertical-align:20.490600px;}
.v1{vertical-align:21.978600px;}
.ls4f{letter-spacing:-2.268000px;}
.ls1d{letter-spacing:-2.220000px;}
.ls4e{letter-spacing:-1.674000px;}
.ls57{letter-spacing:-1.596000px;}
.ls46{letter-spacing:-1.311000px;}
.ls16{letter-spacing:-1.254000px;}
.ls37{letter-spacing:-1.197000px;}
.ls41{letter-spacing:-1.140000px;}
.ls4d{letter-spacing:-1.134000px;}
.ls51{letter-spacing:-1.083000px;}
.ls38{letter-spacing:-1.026000px;}
.ls48{letter-spacing:-0.969000px;}
.ls42{letter-spacing:-0.912000px;}
.ls15{letter-spacing:-0.855000px;}
.ls44{letter-spacing:-0.741000px;}
.ls4b{letter-spacing:-0.718200px;}
.ls10{letter-spacing:-0.627000px;}
.ls21{letter-spacing:-0.570000px;}
.lsc{letter-spacing:-0.561000px;}
.ls50{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.513000px;}
.ls43{letter-spacing:-0.456000px;}
.ls1f{letter-spacing:-0.399000px;}
.lsd{letter-spacing:-0.357000px;}
.ls13{letter-spacing:-0.342000px;}
.ls22{letter-spacing:-0.285000px;}
.lsf{letter-spacing:-0.255000px;}
.ls30{letter-spacing:-0.228000px;}
.ls17{letter-spacing:-0.171000px;}
.ls52{letter-spacing:-0.114000px;}
.ls1e{letter-spacing:-0.057000px;}
.lsa{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.016200px;}
.ls14{letter-spacing:0.057000px;}
.ls28{letter-spacing:0.114000px;}
.ls2a{letter-spacing:0.114600px;}
.ls45{letter-spacing:0.171000px;}
.ls3e{letter-spacing:0.228000px;}
.ls40{letter-spacing:0.285000px;}
.ls1{letter-spacing:0.306000px;}
.ls11{letter-spacing:0.342000px;}
.ls2{letter-spacing:0.357000px;}
.ls1c{letter-spacing:0.399000px;}
.ls39{letter-spacing:0.513000px;}
.ls3{letter-spacing:0.561000px;}
.ls47{letter-spacing:0.570000px;}
.ls3f{letter-spacing:0.627000px;}
.ls3c{letter-spacing:0.684000px;}
.ls55{letter-spacing:0.798000px;}
.ls1a{letter-spacing:0.803700px;}
.ls4c{letter-spacing:0.855000px;}
.lse{letter-spacing:0.867000px;}
.ls19{letter-spacing:0.912000px;}
.ls23{letter-spacing:0.969000px;}
.ls4{letter-spacing:1.026000px;}
.ls24{letter-spacing:1.034242px;}
.ls2c{letter-spacing:1.083000px;}
.ls7{letter-spacing:1.140000px;}
.ls4a{letter-spacing:1.197000px;}
.ls31{letter-spacing:1.254000px;}
.ls58{letter-spacing:1.311000px;}
.ls3a{letter-spacing:1.368000px;}
.ls6{letter-spacing:1.425000px;}
.ls49{letter-spacing:1.482000px;}
.ls2e{letter-spacing:1.539000px;}
.ls9{letter-spacing:1.653000px;}
.ls3d{letter-spacing:1.710000px;}
.lsb{letter-spacing:1.836000px;}
.ls1b{letter-spacing:1.938000px;}
.ls5{letter-spacing:1.995000px;}
.ls56{letter-spacing:2.052000px;}
.ls53{letter-spacing:2.109000px;}
.ls3b{letter-spacing:2.280000px;}
.ls8{letter-spacing:2.508000px;}
.ls2d{letter-spacing:2.565000px;}
.ls54{letter-spacing:2.736000px;}
.ls59{letter-spacing:2.793000px;}
.ls0{letter-spacing:3.315000px;}
.ls12{letter-spacing:3.705000px;}
.ls2b{letter-spacing:4.275000px;}
.ls29{letter-spacing:7.239000px;}
.ls20{letter-spacing:8.037000px;}
.ls2f{letter-spacing:71.989200px;}
.ls32{letter-spacing:74.908642px;}
.ls33{letter-spacing:81.453000px;}
.ls36{letter-spacing:101.346000px;}
.ls25{letter-spacing:232.674000px;}
.ls26{letter-spacing:373.794000px;}
.ls35{letter-spacing:385.092000px;}
.ls34{letter-spacing:635.835000px;}
.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;}
}
.ws38{word-spacing:-635.835000px;}
.ws39{word-spacing:-385.092000px;}
.ws3a{word-spacing:-101.346000px;}
.ws37{word-spacing:-81.453000px;}
.ws36{word-spacing:-74.908642px;}
.ws57{word-spacing:-16.245000px;}
.ws2{word-spacing:-15.000000px;}
.ws1f{word-spacing:-14.250000px;}
.ws42{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.000000px;}
.ws30{word-spacing:-9.975000px;}
.ws58{word-spacing:-9.256800px;}
.ws32{word-spacing:-8.400000px;}
.ws24{word-spacing:-8.037000px;}
.ws3c{word-spacing:-4.275000px;}
.ws13{word-spacing:-3.705000px;}
.ws4{word-spacing:-3.315000px;}
.ws6a{word-spacing:-2.793000px;}
.ws65{word-spacing:-2.736000px;}
.ws3e{word-spacing:-2.565000px;}
.ws14{word-spacing:-2.508000px;}
.ws46{word-spacing:-2.280000px;}
.ws64{word-spacing:-2.109000px;}
.ws67{word-spacing:-2.052000px;}
.ws10{word-spacing:-1.995000px;}
.ws27{word-spacing:-1.938000px;}
.ws5{word-spacing:-1.836000px;}
.ws48{word-spacing:-1.710000px;}
.ws15{word-spacing:-1.653000px;}
.ws41{word-spacing:-1.539000px;}
.ws59{word-spacing:-1.482000px;}
.ws11{word-spacing:-1.425000px;}
.ws45{word-spacing:-1.368000px;}
.ws69{word-spacing:-1.311000px;}
.ws34{word-spacing:-1.254000px;}
.ws5a{word-spacing:-1.197000px;}
.ws12{word-spacing:-1.140000px;}
.ws3d{word-spacing:-1.083000px;}
.ws2c{word-spacing:-1.071179px;}
.wsd{word-spacing:-1.026000px;}
.ws35{word-spacing:-0.969000px;}
.ws23{word-spacing:-0.912000px;}
.ws9{word-spacing:-0.867000px;}
.ws5b{word-spacing:-0.855000px;}
.ws66{word-spacing:-0.798000px;}
.ws47{word-spacing:-0.684000px;}
.ws4b{word-spacing:-0.627000px;}
.ws50{word-spacing:-0.570000px;}
.wsc{word-spacing:-0.561000px;}
.ws43{word-spacing:-0.513000px;}
.ws28{word-spacing:-0.399000px;}
.wsb{word-spacing:-0.357000px;}
.wsf{word-spacing:-0.342000px;}
.ws6{word-spacing:-0.306000px;}
.ws44{word-spacing:-0.285000px;}
.ws49{word-spacing:-0.228000px;}
.ws63{word-spacing:-0.171000px;}
.ws3b{word-spacing:-0.114000px;}
.ws1{word-spacing:-0.060000px;}
.ws1a{word-spacing:-0.057000px;}
.ws16{word-spacing:-0.048000px;}
.ws2f{word-spacing:-0.039900px;}
.ws18{word-spacing:-0.037800px;}
.ws3{word-spacing:0.000000px;}
.ws21{word-spacing:0.057000px;}
.ws62{word-spacing:0.114000px;}
.ws1d{word-spacing:0.171000px;}
.ws33{word-spacing:0.228000px;}
.wsa{word-spacing:0.255000px;}
.ws26{word-spacing:0.285000px;}
.ws19{word-spacing:0.342000px;}
.ws8{word-spacing:0.357000px;}
.ws22{word-spacing:0.399000px;}
.ws4d{word-spacing:0.456000px;}
.ws1e{word-spacing:0.513000px;}
.ws5f{word-spacing:0.540000px;}
.ws7{word-spacing:0.561000px;}
.ws25{word-spacing:0.570000px;}
.wse{word-spacing:0.627000px;}
.ws4e{word-spacing:0.741000px;}
.ws1b{word-spacing:0.855000px;}
.ws4c{word-spacing:0.912000px;}
.ws56{word-spacing:0.969000px;}
.ws40{word-spacing:1.026000px;}
.ws61{word-spacing:1.083000px;}
.ws5c{word-spacing:1.134000px;}
.ws4a{word-spacing:1.140000px;}
.ws3f{word-spacing:1.197000px;}
.ws1c{word-spacing:1.254000px;}
.ws4f{word-spacing:1.311000px;}
.ws68{word-spacing:1.596000px;}
.ws5d{word-spacing:1.674000px;}
.ws20{word-spacing:2.220000px;}
.ws5e{word-spacing:2.268000px;}
.ws29{word-spacing:18.832469px;}
.ws2b{word-spacing:23.287468px;}
.ws2e{word-spacing:25.302300px;}
.ws2a{word-spacing:111.863663px;}
.ws2d{word-spacing:120.150300px;}
.ws31{word-spacing:192.348000px;}
.ws54{word-spacing:522.234000px;}
.ws55{word-spacing:534.330000px;}
.ws52{word-spacing:541.782000px;}
.ws53{word-spacing:583.794000px;}
.ws17{word-spacing:610.979400px;}
.ws60{word-spacing:625.919400px;}
.ws51{word-spacing:645.300000px;}
._3b{margin-left:-40.992000px;}
._e{margin-left:-14.250000px;}
._b{margin-left:-9.212400px;}
._d{margin-left:-7.706400px;}
._0{margin-left:-6.206400px;}
._9{margin-left:-4.722600px;}
._3{margin-left:-3.406800px;}
._1{margin-left:-1.867200px;}
._a{width:1.044300px;}
._6{width:2.097300px;}
._4{width:3.315000px;}
._c{width:4.534500px;}
._8{width:5.640600px;}
._7{width:6.701400px;}
._5{width:8.160000px;}
._2{width:9.848100px;}
._f{width:11.167800px;}
._33{width:28.044000px;}
._12{width:39.690000px;}
._45{width:43.578000px;}
._3c{width:53.700600px;}
._2a{width:56.367300px;}
._3d{width:59.539200px;}
._1c{width:68.395200px;}
._43{width:78.138000px;}
._28{width:81.863400px;}
._25{width:88.182000px;}
._24{width:90.450000px;}
._2d{width:94.969200px;}
._2c{width:97.926600px;}
._39{width:99.468000px;}
._21{width:101.682000px;}
._23{width:102.708000px;}
._20{width:103.950000px;}
._1d{width:108.291000px;}
._27{width:112.312800px;}
._2f{width:123.444000px;}
._2e{width:127.224000px;}
._37{width:142.776000px;}
._44{width:148.207200px;}
._26{width:156.397513px;}
._30{width:162.689400px;}
._2b{width:164.274000px;}
._3e{width:193.482000px;}
._31{width:235.926000px;}
._34{width:241.758000px;}
._32{width:265.950000px;}
._16{width:272.106000px;}
._42{width:288.090000px;}
._29{width:294.313800px;}
._35{width:295.758000px;}
._3f{width:301.736400px;}
._40{width:304.706400px;}
._15{width:314.226000px;}
._38{width:316.818000px;}
._36{width:328.752000px;}
._41{width:340.724400px;}
._1f{width:384.966000px;}
._10{width:420.900600px;}
._14{width:447.552000px;}
._3a{width:466.074000px;}
._1e{width:487.134000px;}
._22{width:507.384000px;}
._17{width:558.414000px;}
._13{width:720.630000px;}
._11{width:746.064000px;}
._1b{width:899.046000px;}
._1a{width:920.052000px;}
._18{width:929.070000px;}
._19{width:944.028000px;}
.fc1{color:rgb(46,49,146);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:28.500000px;}
.fsf{font-size:33.600000px;}
.fsc{font-size:36.937200px;}
.fs9{font-size:37.800000px;}
.fse{font-size:39.900000px;}
.fs6{font-size:46.200000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fsa{font-size:67.500000px;}
.fs4{font-size:84.000000px;}
.fsd{font-size:85.500000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ybc{bottom:3.028650px;}
.ybb{bottom:3.356400px;}
.yba{bottom:7.346400px;}
.yb9{bottom:7.488900px;}
.yb8{bottom:13.260150px;}
.yb7{bottom:16.124400px;}
.yb5{bottom:19.163850px;}
.yb4{bottom:26.060850px;}
.yb3{bottom:26.858850px;}
.yb2{bottom:33.874350px;}
.yb1{bottom:36.026100px;}
.yb0{bottom:36.254100px;}
.yaf{bottom:42.153600px;}
.yae{bottom:45.944100px;}
.yad{bottom:48.053100px;}
.y2{bottom:49.102650px;}
.y36{bottom:49.551450px;}
.yac{bottom:50.390100px;}
.y31{bottom:61.883100px;}
.y1{bottom:63.502650px;}
.y35{bottom:63.951450px;}
.y1c0{bottom:111.070500px;}
.y125{bottom:112.261050px;}
.y141{bottom:112.402800px;}
.y230{bottom:112.539900px;}
.y52{bottom:112.551150px;}
.yca{bottom:112.555650px;}
.y121{bottom:112.573650px;}
.ydb{bottom:112.598400px;}
.y11{bottom:113.444400px;}
.y163{bottom:113.465850px;}
.y10f{bottom:113.560350px;}
.y48{bottom:113.678400px;}
.y184{bottom:114.026850px;}
.y1c8{bottom:114.271800px;}
.y17d{bottom:114.996600px;}
.y167{bottom:116.631150px;}
.y1bf{bottom:127.270500px;}
.y124{bottom:128.461050px;}
.y140{bottom:128.602800px;}
.y162{bottom:129.665850px;}
.y10e{bottom:129.760350px;}
.y47{bottom:129.878400px;}
.y183{bottom:130.226850px;}
.y1c7{bottom:130.471800px;}
.y22f{bottom:130.537650px;}
.y51{bottom:130.548900px;}
.yc9{bottom:130.553400px;}
.y120{bottom:130.571400px;}
.yda{bottom:130.596150px;}
.y17c{bottom:131.196600px;}
.y166{bottom:132.831150px;}
.y10{bottom:142.244400px;}
.y1be{bottom:143.470500px;}
.y1c6{bottom:146.671800px;}
.y17b{bottom:147.396600px;}
.y22e{bottom:148.535400px;}
.y50{bottom:148.546650px;}
.yc8{bottom:148.551150px;}
.y11f{bottom:148.569150px;}
.yd9{bottom:148.593900px;}
.yf{bottom:156.644400px;}
.y1bd{bottom:159.670500px;}
.y17a{bottom:163.596600px;}
.y4f{bottom:166.544400px;}
.yc7{bottom:166.548900px;}
.y11e{bottom:166.566900px;}
.yd8{bottom:166.591650px;}
.y1bc{bottom:175.870500px;}
.y179{bottom:179.796600px;}
.y4e{bottom:184.542150px;}
.yc6{bottom:184.546650px;}
.y11d{bottom:184.564650px;}
.yd7{bottom:184.589400px;}
.y178{bottom:195.996600px;}
.y62{bottom:202.497300px;}
.y4d{bottom:202.539900px;}
.yc5{bottom:202.544400px;}
.y11c{bottom:202.562400px;}
.yd6{bottom:202.587150px;}
.y61{bottom:218.697300px;}
.y4c{bottom:220.537650px;}
.yc4{bottom:220.542150px;}
.y11b{bottom:220.560150px;}
.y22d{bottom:220.574400px;}
.yd5{bottom:220.584900px;}
.y4b{bottom:238.535400px;}
.yc3{bottom:238.539900px;}
.y11a{bottom:238.557900px;}
.y22c{bottom:238.572150px;}
.yd4{bottom:238.582650px;}
.y23{bottom:255.005700px;}
.y30{bottom:255.034200px;}
.yc2{bottom:256.537650px;}
.y119{bottom:256.555650px;}
.y22b{bottom:256.569900px;}
.yd3{bottom:256.580400px;}
.y22{bottom:273.003450px;}
.y2f{bottom:273.031950px;}
.yc1{bottom:274.542150px;}
.y118{bottom:274.553400px;}
.y22a{bottom:274.567650px;}
.yd2{bottom:274.578150px;}
.y60{bottom:280.396650px;}
.y1e8{bottom:288.186300px;}
.y21{bottom:291.001200px;}
.y2e{bottom:291.029700px;}
.yc0{bottom:292.539900px;}
.y117{bottom:292.551150px;}
.y229{bottom:292.565400px;}
.yd1{bottom:292.575900px;}
.y5f{bottom:296.596650px;}
.y1e7{bottom:304.386300px;}
.y20{bottom:308.998950px;}
.y2d{bottom:309.027450px;}
.ybf{bottom:310.537650px;}
.y116{bottom:310.548900px;}
.y228{bottom:310.563150px;}
.yd0{bottom:310.573650px;}
.y1f6{bottom:317.721900px;}
.y1e6{bottom:320.586300px;}
.y1f{bottom:326.996700px;}
.y2c{bottom:327.025200px;}
.ybe{bottom:328.530000px;}
.y115{bottom:328.546650px;}
.y227{bottom:328.560900px;}
.ycf{bottom:328.571400px;}
.y1f5{bottom:333.921900px;}
.y1e5{bottom:336.786300px;}
.y1e{bottom:344.994450px;}
.y2b{bottom:345.022950px;}
.y114{bottom:346.544400px;}
.y226{bottom:346.558650px;}
.yce{bottom:346.569150px;}
.y1f4{bottom:350.121900px;}
.y1e4{bottom:352.986300px;}
.yab{bottom:357.186000px;}
.y1d{bottom:362.992200px;}
.y2a{bottom:363.020700px;}
.y113{bottom:364.542150px;}
.y225{bottom:364.556400px;}
.ycd{bottom:364.566900px;}
.ya2{bottom:365.809350px;}
.y1f3{bottom:366.321900px;}
.ya8{bottom:368.202825px;}
.y1e3{bottom:369.186300px;}
.ya5{bottom:370.732290px;}
.yb6{bottom:374.435400px;}
.yaa{bottom:374.442150px;}
.ybd{bottom:380.763600px;}
.y1c{bottom:380.989950px;}
.y29{bottom:381.018450px;}
.ya4{bottom:381.979665px;}
.y1f2{bottom:382.521900px;}
.y112{bottom:382.539900px;}
.y224{bottom:382.554150px;}
.ycc{bottom:382.564650px;}
.ya0{bottom:385.122900px;}
.y1e2{bottom:385.386300px;}
.ya9{bottom:385.685400px;}
.y9f{bottom:385.931400px;}
.ya6{bottom:394.779150px;}
.y1f1{bottom:398.721900px;}
.y1b{bottom:398.987700px;}
.y28{bottom:399.016200px;}
.y111{bottom:400.537650px;}
.ycb{bottom:400.562400px;}
.ya1{bottom:402.232350px;}
.ya7{bottom:404.622900px;}
.ya3{bottom:410.107350px;}
.y1f0{bottom:414.921900px;}
.y1a{bottom:416.985450px;}
.y27{bottom:417.013950px;}
.y110{bottom:418.535400px;}
.y223{bottom:427.143600px;}
.y19{bottom:434.983200px;}
.y26{bottom:435.011700px;}
.y9e{bottom:436.575900px;}
.y222{bottom:448.500600px;}
.y18{bottom:452.980950px;}
.y25{bottom:453.009450px;}
.y9d{bottom:454.573650px;}
.yf1{bottom:454.620900px;}
.y10a{bottom:454.677900px;}
.ye4{bottom:455.876400px;}
.y216{bottom:457.825650px;}
.y6c{bottom:465.372900px;}
.y221{bottom:469.857600px;}
.ye3{bottom:472.076400px;}
.y9c{bottom:472.571400px;}
.yf0{bottom:472.618650px;}
.y109{bottom:472.675650px;}
.y215{bottom:474.025650px;}
.y6b{bottom:481.572900px;}
.ye2{bottom:488.276400px;}
.y17{bottom:488.976450px;}
.y24{bottom:489.004950px;}
.y214{bottom:490.225650px;}
.y9b{bottom:490.569150px;}
.yef{bottom:490.616400px;}
.y108{bottom:490.673400px;}
.y220{bottom:491.214600px;}
.y6a{bottom:497.772900px;}
.ye1{bottom:504.476400px;}
.y213{bottom:506.425650px;}
.y9a{bottom:508.566900px;}
.yee{bottom:508.614150px;}
.y107{bottom:508.671150px;}
.y21f{bottom:512.571600px;}
.y69{bottom:513.972900px;}
.y46{bottom:523.420650px;}
.y99{bottom:526.564650px;}
.yed{bottom:526.611900px;}
.y106{bottom:526.668900px;}
.y1e1{bottom:533.361900px;}
.y21e{bottom:533.928600px;}
.y98{bottom:544.562400px;}
.yec{bottom:544.609650px;}
.y105{bottom:544.666650px;}
.y45{bottom:544.777650px;}
.y1e0{bottom:549.561900px;}
.y21d{bottom:555.285600px;}
.ye{bottom:559.492950px;}
.y97{bottom:562.560150px;}
.y8b{bottom:562.607400px;}
.y104{bottom:562.664400px;}
.y68{bottom:563.876850px;}
.y1df{bottom:565.761900px;}
.y44{bottom:566.134650px;}
.y12c{bottom:568.353600px;}
.y13b{bottom:568.814250px;}
.y165{bottom:575.105850px;}
.yd{bottom:575.991450px;}
.y21c{bottom:577.179150px;}
.y67{bottom:580.076850px;}
.y96{bottom:580.557900px;}
.y8a{bottom:580.605150px;}
.y103{bottom:580.662150px;}
.y1de{bottom:581.961900px;}
.y43{bottom:587.491650px;}
.y12b{bottom:589.710600px;}
.y13a{bottom:590.171250px;}
.y164{bottom:591.305850px;}
.y21b{bottom:593.379150px;}
.y66{bottom:596.276850px;}
.y1dd{bottom:598.161900px;}
.y95{bottom:598.555650px;}
.y89{bottom:598.602900px;}
.y102{bottom:598.659900px;}
.y42{bottom:608.848650px;}
.yc{bottom:608.988450px;}
.y12a{bottom:611.067600px;}
.y139{bottom:611.528250px;}
.y65{bottom:612.476850px;}
.y1dc{bottom:614.361900px;}
.y94{bottom:616.553400px;}
.y212{bottom:616.557900px;}
.y19e{bottom:616.560150px;}
.y88{bottom:616.600650px;}
.y1bb{bottom:616.631400px;}
.y101{bottom:616.657650px;}
.yb{bottom:625.486950px;}
.y41{bottom:630.205650px;}
.y1db{bottom:630.561900px;}
.y129{bottom:632.424600px;}
.y138{bottom:632.885250px;}
.y93{bottom:634.551150px;}
.y211{bottom:634.555650px;}
.y19d{bottom:634.557900px;}
.y87{bottom:634.598400px;}
.y1ba{bottom:634.629150px;}
.ya{bottom:641.985450px;}
.y1da{bottom:646.761900px;}
.y40{bottom:651.562650px;}
.y92{bottom:652.548900px;}
.y210{bottom:652.553400px;}
.y19c{bottom:652.555650px;}
.y86{bottom:652.596150px;}
.y1b9{bottom:652.626900px;}
.y100{bottom:652.653150px;}
.y128{bottom:653.781600px;}
.y137{bottom:654.242250px;}
.y9{bottom:658.483950px;}
.y1d9{bottom:662.961900px;}
.y91{bottom:670.546650px;}
.y20f{bottom:670.551150px;}
.y19b{bottom:670.553400px;}
.y85{bottom:670.593900px;}
.y1b8{bottom:670.624650px;}
.yff{bottom:670.650900px;}
.y3f{bottom:672.919650px;}
.y8{bottom:674.982450px;}
.y136{bottom:675.599250px;}
.y127{bottom:675.892050px;}
.y1d8{bottom:679.161900px;}
.y90{bottom:688.544400px;}
.y20e{bottom:688.548900px;}
.y19a{bottom:688.551150px;}
.y84{bottom:688.591650px;}
.y1b7{bottom:688.622400px;}
.yfe{bottom:688.648650px;}
.y1c5{bottom:691.464300px;}
.y7{bottom:691.480950px;}
.y126{bottom:692.092050px;}
.y3e{bottom:694.276650px;}
.y1ef{bottom:695.001900px;}
.y135{bottom:696.956250px;}
.y8f{bottom:706.542150px;}
.y20d{bottom:706.546650px;}
.y199{bottom:706.548900px;}
.yeb{bottom:706.589400px;}
.y1b6{bottom:706.620150px;}
.yfd{bottom:706.646400px;}
.y1c4{bottom:707.664300px;}
.y6{bottom:707.979450px;}
.y1ee{bottom:711.201900px;}
.y3d{bottom:715.633650px;}
.y134{bottom:718.313250px;}
.y1c3{bottom:723.864300px;}
.y5{bottom:724.477950px;}
.y1d7{bottom:724.537650px;}
.y8e{bottom:724.539900px;}
.y20c{bottom:724.544400px;}
.y198{bottom:724.546650px;}
.y83{bottom:724.587150px;}
.y1b5{bottom:724.617900px;}
.yfc{bottom:724.644150px;}
.y1ed{bottom:727.401900px;}
.y3c{bottom:736.990650px;}
.y1c2{bottom:740.064300px;}
.y133{bottom:740.208450px;}
.y4{bottom:740.976450px;}
.y1d6{bottom:742.535400px;}
.y8d{bottom:742.537650px;}
.y144{bottom:742.539900px;}
.y20b{bottom:742.542150px;}
.y82{bottom:742.584900px;}
.y1b4{bottom:742.615650px;}
.yfb{bottom:742.641900px;}
.y1ec{bottom:743.601900px;}
.y1c1{bottom:756.264300px;}
.y132{bottom:756.408450px;}
.y3b{bottom:758.347650px;}
.y1eb{bottom:759.801900px;}
.y8c{bottom:760.535400px;}
.y143{bottom:760.537650px;}
.y20a{bottom:760.539900px;}
.y197{bottom:760.542150px;}
.y81{bottom:760.582650px;}
.y1b3{bottom:760.613400px;}
.yfa{bottom:760.639650px;}
.y1ea{bottom:776.001900px;}
.y3{bottom:776.976450px;}
.y142{bottom:778.535400px;}
.y209{bottom:778.537650px;}
.y196{bottom:778.539900px;}
.y80{bottom:778.580400px;}
.y1b2{bottom:778.611150px;}
.y3a{bottom:780.457950px;}
.y1e9{bottom:792.201900px;}
.y208{bottom:796.535400px;}
.y195{bottom:796.537650px;}
.y13f{bottom:796.542150px;}
.y7f{bottom:796.578150px;}
.y1b1{bottom:796.608900px;}
.yf9{bottom:796.635150px;}
.y39{bottom:796.657950px;}
.y5e{bottom:810.136650px;}
.y1d5{bottom:814.535400px;}
.y13e{bottom:814.539900px;}
.y194{bottom:814.573650px;}
.yea{bottom:814.575900px;}
.y1b0{bottom:814.606650px;}
.yf8{bottom:814.632900px;}
.y5d{bottom:826.336650px;}
.y13d{bottom:832.537650px;}
.y193{bottom:832.571400px;}
.y7e{bottom:832.573650px;}
.y1af{bottom:832.604400px;}
.yf7{bottom:832.630650px;}
.y131{bottom:836.841450px;}
.y38{bottom:841.969800px;}
.y5c{bottom:842.536650px;}
.y13c{bottom:850.535400px;}
.y151{bottom:850.562400px;}
.y161{bottom:850.566900px;}
.y192{bottom:850.569150px;}
.y7d{bottom:850.571400px;}
.y1ae{bottom:850.602150px;}
.y207{bottom:850.614150px;}
.yf6{bottom:850.628400px;}
.y130{bottom:853.041450px;}
.y21a{bottom:853.497150px;}
.y37{bottom:858.169800px;}
.y5b{bottom:858.736650px;}
.y177{bottom:868.537650px;}
.y150{bottom:868.560150px;}
.y160{bottom:868.564650px;}
.y191{bottom:868.566900px;}
.y7c{bottom:868.569150px;}
.y1ad{bottom:868.599900px;}
.y206{bottom:868.611900px;}
.yf5{bottom:868.626150px;}
.y12f{bottom:869.241450px;}
.y219{bottom:869.697150px;}
.y16{bottom:870.890700px;}
.y218{bottom:885.897150px;}
.y176{bottom:886.535400px;}
.y14f{bottom:886.557900px;}
.y15f{bottom:886.562400px;}
.y190{bottom:886.564650px;}
.y7b{bottom:886.566900px;}
.y182{bottom:886.595400px;}
.y1ac{bottom:886.597650px;}
.y205{bottom:886.609650px;}
.yf4{bottom:886.623900px;}
.y12e{bottom:897.593850px;}
.y64{bottom:898.160850px;}
.y217{bottom:902.097150px;}
.y175{bottom:904.537650px;}
.y14e{bottom:904.555650px;}
.y15e{bottom:904.560150px;}
.y18f{bottom:904.562400px;}
.y7a{bottom:904.564650px;}
.y181{bottom:904.593150px;}
.y1ab{bottom:904.595400px;}
.y204{bottom:904.607400px;}
.yf3{bottom:904.621650px;}
.y15{bottom:906.290700px;}
.y12d{bottom:913.793850px;}
.y63{bottom:914.360850px;}
.y174{bottom:922.535400px;}
.y14d{bottom:922.553400px;}
.y15d{bottom:922.557900px;}
.y18e{bottom:922.560150px;}
.y79{bottom:922.562400px;}
.y180{bottom:922.590900px;}
.y1aa{bottom:922.593150px;}
.y203{bottom:922.605150px;}
.yf2{bottom:922.619400px;}
.y173{bottom:940.537650px;}
.y14c{bottom:940.551150px;}
.y15c{bottom:940.555650px;}
.y18d{bottom:940.557900px;}
.y78{bottom:940.560150px;}
.y17f{bottom:940.588650px;}
.y1a9{bottom:940.590900px;}
.y202{bottom:940.602900px;}
.y1d4{bottom:940.617150px;}
.y14{bottom:944.090700px;}
.ye0{bottom:956.361900px;}
.y172{bottom:958.535400px;}
.y14b{bottom:958.548900px;}
.y15b{bottom:958.553400px;}
.y18c{bottom:958.555650px;}
.y77{bottom:958.557900px;}
.y17e{bottom:958.586400px;}
.y1a8{bottom:958.588650px;}
.y201{bottom:958.600650px;}
.y1d3{bottom:958.614900px;}
.ydf{bottom:972.561900px;}
.y10d{bottom:972.876150px;}
.y15a{bottom:976.551150px;}
.y18b{bottom:976.553400px;}
.y76{bottom:976.555650px;}
.y171{bottom:976.584150px;}
.y1a7{bottom:976.586400px;}
.y200{bottom:976.598400px;}
.y1d2{bottom:976.612650px;}
.y13{bottom:978.290700px;}
.yde{bottom:988.761900px;}
.y10c{bottom:989.076150px;}
.y14a{bottom:994.544400px;}
.y159{bottom:994.548900px;}
.y18a{bottom:994.551150px;}
.y75{bottom:994.553400px;}
.y170{bottom:994.581900px;}
.y1a6{bottom:994.584150px;}
.y1ff{bottom:994.596150px;}
.y1d1{bottom:994.610400px;}
.y5a{bottom:1002.284100px;}
.ydd{bottom:1004.961900px;}
.y10b{bottom:1005.276150px;}
.y12{bottom:1010.690700px;}
.y149{bottom:1012.542150px;}
.y158{bottom:1012.546650px;}
.y189{bottom:1012.548900px;}
.y74{bottom:1012.551150px;}
.y16f{bottom:1012.579650px;}
.y1a5{bottom:1012.581900px;}
.y1fe{bottom:1012.593900px;}
.y1d0{bottom:1012.608150px;}
.ydc{bottom:1021.161900px;}
.y59{bottom:1023.641100px;}
.y157{bottom:1030.544400px;}
.y188{bottom:1030.546650px;}
.y73{bottom:1030.548900px;}
.y16e{bottom:1030.577400px;}
.y1a4{bottom:1030.579650px;}
.y1fd{bottom:1030.591650px;}
.y1cf{bottom:1030.605900px;}
.y58{bottom:1044.998100px;}
.y148{bottom:1048.537650px;}
.y156{bottom:1048.542150px;}
.y72{bottom:1048.546650px;}
.y16d{bottom:1048.575150px;}
.y1fc{bottom:1048.589400px;}
.y1ce{bottom:1048.603650px;}
.ye9{bottom:1060.557900px;}
.y57{bottom:1066.355100px;}
.y147{bottom:1066.535400px;}
.y155{bottom:1066.539900px;}
.y187{bottom:1066.542150px;}
.y71{bottom:1066.544400px;}
.y16c{bottom:1066.572900px;}
.y1a3{bottom:1066.575150px;}
.y1fb{bottom:1066.587150px;}
.y1cd{bottom:1066.601400px;}
.ye8{bottom:1079.975250px;}
.y146{bottom:1084.537650px;}
.y186{bottom:1084.539900px;}
.y70{bottom:1084.542150px;}
.y16b{bottom:1084.570650px;}
.y1a2{bottom:1084.572900px;}
.y1fa{bottom:1084.584900px;}
.y1cc{bottom:1084.599150px;}
.y56{bottom:1087.712100px;}
.y34{bottom:1098.190200px;}
.y123{bottom:1098.561900px;}
.y145{bottom:1102.535400px;}
.y185{bottom:1102.537650px;}
.y6f{bottom:1102.539900px;}
.y16a{bottom:1102.568400px;}
.y1a1{bottom:1102.570650px;}
.y154{bottom:1102.573650px;}
.y1f9{bottom:1102.582650px;}
.y1cb{bottom:1102.596900px;}
.ye7{bottom:1106.219250px;}
.y55{bottom:1109.069100px;}
.y122{bottom:1114.761900px;}
.y6e{bottom:1120.537650px;}
.y169{bottom:1120.566150px;}
.y1a0{bottom:1120.568400px;}
.y153{bottom:1120.571400px;}
.y1f8{bottom:1120.580400px;}
.y1ca{bottom:1120.594650px;}
.y33{bottom:1129.690200px;}
.ye6{bottom:1130.957400px;}
.y54{bottom:1130.961900px;}
.y6d{bottom:1138.535400px;}
.y168{bottom:1138.563900px;}
.y19f{bottom:1138.566150px;}
.y152{bottom:1138.569150px;}
.y1f7{bottom:1138.578150px;}
.y1c9{bottom:1138.592400px;}
.ye5{bottom:1147.157400px;}
.y53{bottom:1147.161900px;}
.y32{bottom:1149.190200px;}
.y4a{bottom:1181.618550px;}
.y49{bottom:1195.118550px;}
.h11{height:19.788574px;}
.h18{height:23.329687px;}
.h12{height:25.646825px;}
.h2{height:33.328125px;}
.hc{height:37.494141px;}
.h3{height:38.519531px;}
.h13{height:39.577148px;}
.hb{height:41.660156px;}
.h4{height:44.749512px;}
.h5{height:45.446777px;}
.hd{height:47.381836px;}
.hf{height:48.120117px;}
.ha{height:50.014160px;}
.h17{height:50.035760px;}
.h9{height:50.793457px;}
.he{height:52.646484px;}
.h19{height:53.837912px;}
.h15{height:54.150000px;}
.h8{height:57.911133px;}
.h10{height:64.125000px;}
.h14{height:64.500000px;}
.h7{height:73.705078px;}
.h16{height:81.225000px;}
.h6{height:96.240234px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:246.001500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:43.969200px;}
.x3{left:63.779550px;}
.x57{left:68.639550px;}
.x20{left:72.892350px;}
.x5{left:76.533300px;}
.x4c{left:82.102650px;}
.x38{left:85.012050px;}
.x58{left:86.041050px;}
.x55{left:88.463700px;}
.x54{left:89.881200px;}
.x4b{left:92.287350px;}
.x2d{left:94.642200px;}
.x43{left:99.649050px;}
.x42{left:106.939050px;}
.x48{left:121.937550px;}
.x2b{left:123.958500px;}
.x29{left:127.146450px;}
.x47{left:130.064550px;}
.x17{left:132.062550px;}
.x18{left:133.250550px;}
.x2e{left:154.849500px;}
.x1f{left:164.489550px;}
.x37{left:165.910500px;}
.x36{left:167.129400px;}
.x1e{left:168.256050px;}
.x24{left:174.021450px;}
.x26{left:183.680340px;}
.x10{left:194.725350px;}
.x22{left:199.994850px;}
.x51{left:203.497650px;}
.x4a{left:206.731950px;}
.x50{left:207.898650px;}
.x4f{left:209.278650px;}
.x13{left:210.992250px;}
.x49{left:213.238950px;}
.x21{left:223.619850px;}
.x2a{left:227.238450px;}
.x14{left:230.342850px;}
.x27{left:231.449370px;}
.x1{left:235.274400px;}
.x4e{left:237.529350px;}
.x28{left:240.021450px;}
.x4d{left:246.344850px;}
.x12{left:248.630250px;}
.x3c{left:251.438100px;}
.x35{left:254.021550px;}
.xd{left:256.353150px;}
.x34{left:257.518050px;}
.x15{left:264.611100px;}
.x2f{left:267.490200px;}
.x16{left:269.673600px;}
.xe{left:272.344200px;}
.xc{left:275.590650px;}
.x11{left:276.602100px;}
.xf{left:298.831200px;}
.x25{left:321.068250px;}
.x9{left:330.983100px;}
.xa{left:335.843100px;}
.x8{left:351.638100px;}
.x56{left:372.522600px;}
.x4{left:457.086600px;}
.x3b{left:458.265000px;}
.x59{left:460.301550px;}
.x32{left:461.597550px;}
.x45{left:464.743050px;}
.x7{left:469.804800px;}
.x5b{left:470.845050px;}
.x30{left:474.544050px;}
.x39{left:475.666500px;}
.x5a{left:478.783050px;}
.x41{left:480.351450px;}
.x6{left:482.017050px;}
.x52{left:485.594550px;}
.x53{left:499.606350px;}
.x3f{left:508.110150px;}
.x1a{left:519.572100px;}
.x40{left:523.108650px;}
.x19{left:527.078100px;}
.x3e{left:530.798250px;}
.x5c{left:542.489550px;}
.x5d{left:548.740050px;}
.x3d{left:554.139750px;}
.x44{left:581.747550px;}
.x31{left:586.459050px;}
.x46{left:592.426050px;}
.x33{left:595.828050px;}
.x3a{left:613.002000px;}
.x2{left:614.750400px;}
.x23{left:616.368150px;}
.x1c{left:698.246250px;}
.x1b{left:731.282250px;}
.x1d{left:814.690500px;}
.xb{left:821.633850px;}
@media print{
.v9{vertical-align:-43.208533pt;}
.v4{vertical-align:-40.020000pt;}
.v5{vertical-align:-32.325333pt;}
.v7{vertical-align:-16.852800pt;}
.v8{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:7.354133pt;}
.v3{vertical-align:15.984000pt;}
.v6{vertical-align:18.213867pt;}
.v1{vertical-align:19.536533pt;}
.ls4f{letter-spacing:-2.016000pt;}
.ls1d{letter-spacing:-1.973333pt;}
.ls4e{letter-spacing:-1.488000pt;}
.ls57{letter-spacing:-1.418667pt;}
.ls46{letter-spacing:-1.165333pt;}
.ls16{letter-spacing:-1.114667pt;}
.ls37{letter-spacing:-1.064000pt;}
.ls41{letter-spacing:-1.013333pt;}
.ls4d{letter-spacing:-1.008000pt;}
.ls51{letter-spacing:-0.962667pt;}
.ls38{letter-spacing:-0.912000pt;}
.ls48{letter-spacing:-0.861333pt;}
.ls42{letter-spacing:-0.810667pt;}
.ls15{letter-spacing:-0.760000pt;}
.ls44{letter-spacing:-0.658667pt;}
.ls4b{letter-spacing:-0.638400pt;}
.ls10{letter-spacing:-0.557333pt;}
.ls21{letter-spacing:-0.506667pt;}
.lsc{letter-spacing:-0.498667pt;}
.ls50{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.456000pt;}
.ls43{letter-spacing:-0.405333pt;}
.ls1f{letter-spacing:-0.354667pt;}
.lsd{letter-spacing:-0.317333pt;}
.ls13{letter-spacing:-0.304000pt;}
.ls22{letter-spacing:-0.253333pt;}
.lsf{letter-spacing:-0.226667pt;}
.ls30{letter-spacing:-0.202667pt;}
.ls17{letter-spacing:-0.152000pt;}
.ls52{letter-spacing:-0.101333pt;}
.ls1e{letter-spacing:-0.050667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.014400pt;}
.ls14{letter-spacing:0.050667pt;}
.ls28{letter-spacing:0.101333pt;}
.ls2a{letter-spacing:0.101867pt;}
.ls45{letter-spacing:0.152000pt;}
.ls3e{letter-spacing:0.202667pt;}
.ls40{letter-spacing:0.253333pt;}
.ls1{letter-spacing:0.272000pt;}
.ls11{letter-spacing:0.304000pt;}
.ls2{letter-spacing:0.317333pt;}
.ls1c{letter-spacing:0.354667pt;}
.ls39{letter-spacing:0.456000pt;}
.ls3{letter-spacing:0.498667pt;}
.ls47{letter-spacing:0.506667pt;}
.ls3f{letter-spacing:0.557333pt;}
.ls3c{letter-spacing:0.608000pt;}
.ls55{letter-spacing:0.709333pt;}
.ls1a{letter-spacing:0.714400pt;}
.ls4c{letter-spacing:0.760000pt;}
.lse{letter-spacing:0.770667pt;}
.ls19{letter-spacing:0.810667pt;}
.ls23{letter-spacing:0.861333pt;}
.ls4{letter-spacing:0.912000pt;}
.ls24{letter-spacing:0.919326pt;}
.ls2c{letter-spacing:0.962667pt;}
.ls7{letter-spacing:1.013333pt;}
.ls4a{letter-spacing:1.064000pt;}
.ls31{letter-spacing:1.114667pt;}
.ls58{letter-spacing:1.165333pt;}
.ls3a{letter-spacing:1.216000pt;}
.ls6{letter-spacing:1.266667pt;}
.ls49{letter-spacing:1.317333pt;}
.ls2e{letter-spacing:1.368000pt;}
.ls9{letter-spacing:1.469333pt;}
.ls3d{letter-spacing:1.520000pt;}
.lsb{letter-spacing:1.632000pt;}
.ls1b{letter-spacing:1.722667pt;}
.ls5{letter-spacing:1.773333pt;}
.ls56{letter-spacing:1.824000pt;}
.ls53{letter-spacing:1.874667pt;}
.ls3b{letter-spacing:2.026667pt;}
.ls8{letter-spacing:2.229333pt;}
.ls2d{letter-spacing:2.280000pt;}
.ls54{letter-spacing:2.432000pt;}
.ls59{letter-spacing:2.482667pt;}
.ls0{letter-spacing:2.946667pt;}
.ls12{letter-spacing:3.293333pt;}
.ls2b{letter-spacing:3.800000pt;}
.ls29{letter-spacing:6.434667pt;}
.ls20{letter-spacing:7.144000pt;}
.ls2f{letter-spacing:63.990400pt;}
.ls32{letter-spacing:66.585459pt;}
.ls33{letter-spacing:72.402667pt;}
.ls36{letter-spacing:90.085333pt;}
.ls25{letter-spacing:206.821333pt;}
.ls26{letter-spacing:332.261333pt;}
.ls35{letter-spacing:342.304000pt;}
.ls34{letter-spacing:565.186667pt;}
.ws38{word-spacing:-565.186667pt;}
.ws39{word-spacing:-342.304000pt;}
.ws3a{word-spacing:-90.085333pt;}
.ws37{word-spacing:-72.402667pt;}
.ws36{word-spacing:-66.585459pt;}
.ws57{word-spacing:-14.440000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1f{word-spacing:-12.666667pt;}
.ws42{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws30{word-spacing:-8.866667pt;}
.ws58{word-spacing:-8.228267pt;}
.ws32{word-spacing:-7.466667pt;}
.ws24{word-spacing:-7.144000pt;}
.ws3c{word-spacing:-3.800000pt;}
.ws13{word-spacing:-3.293333pt;}
.ws4{word-spacing:-2.946667pt;}
.ws6a{word-spacing:-2.482667pt;}
.ws65{word-spacing:-2.432000pt;}
.ws3e{word-spacing:-2.280000pt;}
.ws14{word-spacing:-2.229333pt;}
.ws46{word-spacing:-2.026667pt;}
.ws64{word-spacing:-1.874667pt;}
.ws67{word-spacing:-1.824000pt;}
.ws10{word-spacing:-1.773333pt;}
.ws27{word-spacing:-1.722667pt;}
.ws5{word-spacing:-1.632000pt;}
.ws48{word-spacing:-1.520000pt;}
.ws15{word-spacing:-1.469333pt;}
.ws41{word-spacing:-1.368000pt;}
.ws59{word-spacing:-1.317333pt;}
.ws11{word-spacing:-1.266667pt;}
.ws45{word-spacing:-1.216000pt;}
.ws69{word-spacing:-1.165333pt;}
.ws34{word-spacing:-1.114667pt;}
.ws5a{word-spacing:-1.064000pt;}
.ws12{word-spacing:-1.013333pt;}
.ws3d{word-spacing:-0.962667pt;}
.ws2c{word-spacing:-0.952159pt;}
.wsd{word-spacing:-0.912000pt;}
.ws35{word-spacing:-0.861333pt;}
.ws23{word-spacing:-0.810667pt;}
.ws9{word-spacing:-0.770667pt;}
.ws5b{word-spacing:-0.760000pt;}
.ws66{word-spacing:-0.709333pt;}
.ws47{word-spacing:-0.608000pt;}
.ws4b{word-spacing:-0.557333pt;}
.ws50{word-spacing:-0.506667pt;}
.wsc{word-spacing:-0.498667pt;}
.ws43{word-spacing:-0.456000pt;}
.ws28{word-spacing:-0.354667pt;}
.wsb{word-spacing:-0.317333pt;}
.wsf{word-spacing:-0.304000pt;}
.ws6{word-spacing:-0.272000pt;}
.ws44{word-spacing:-0.253333pt;}
.ws49{word-spacing:-0.202667pt;}
.ws63{word-spacing:-0.152000pt;}
.ws3b{word-spacing:-0.101333pt;}
.ws1{word-spacing:-0.053333pt;}
.ws1a{word-spacing:-0.050667pt;}
.ws16{word-spacing:-0.042667pt;}
.ws2f{word-spacing:-0.035467pt;}
.ws18{word-spacing:-0.033600pt;}
.ws3{word-spacing:0.000000pt;}
.ws21{word-spacing:0.050667pt;}
.ws62{word-spacing:0.101333pt;}
.ws1d{word-spacing:0.152000pt;}
.ws33{word-spacing:0.202667pt;}
.wsa{word-spacing:0.226667pt;}
.ws26{word-spacing:0.253333pt;}
.ws19{word-spacing:0.304000pt;}
.ws8{word-spacing:0.317333pt;}
.ws22{word-spacing:0.354667pt;}
.ws4d{word-spacing:0.405333pt;}
.ws1e{word-spacing:0.456000pt;}
.ws5f{word-spacing:0.480000pt;}
.ws7{word-spacing:0.498667pt;}
.ws25{word-spacing:0.506667pt;}
.wse{word-spacing:0.557333pt;}
.ws4e{word-spacing:0.658667pt;}
.ws1b{word-spacing:0.760000pt;}
.ws4c{word-spacing:0.810667pt;}
.ws56{word-spacing:0.861333pt;}
.ws40{word-spacing:0.912000pt;}
.ws61{word-spacing:0.962667pt;}
.ws5c{word-spacing:1.008000pt;}
.ws4a{word-spacing:1.013333pt;}
.ws3f{word-spacing:1.064000pt;}
.ws1c{word-spacing:1.114667pt;}
.ws4f{word-spacing:1.165333pt;}
.ws68{word-spacing:1.418667pt;}
.ws5d{word-spacing:1.488000pt;}
.ws20{word-spacing:1.973333pt;}
.ws5e{word-spacing:2.016000pt;}
.ws29{word-spacing:16.739973pt;}
.ws2b{word-spacing:20.699971pt;}
.ws2e{word-spacing:22.490933pt;}
.ws2a{word-spacing:99.434367pt;}
.ws2d{word-spacing:106.800267pt;}
.ws31{word-spacing:170.976000pt;}
.ws54{word-spacing:464.208000pt;}
.ws55{word-spacing:474.960000pt;}
.ws52{word-spacing:481.584000pt;}
.ws53{word-spacing:518.928000pt;}
.ws17{word-spacing:543.092800pt;}
.ws60{word-spacing:556.372800pt;}
.ws51{word-spacing:573.600000pt;}
._3b{margin-left:-36.437333pt;}
._e{margin-left:-12.666667pt;}
._b{margin-left:-8.188800pt;}
._d{margin-left:-6.850133pt;}
._0{margin-left:-5.516800pt;}
._9{margin-left:-4.197867pt;}
._3{margin-left:-3.028267pt;}
._1{margin-left:-1.659733pt;}
._a{width:0.928267pt;}
._6{width:1.864267pt;}
._4{width:2.946667pt;}
._c{width:4.030667pt;}
._8{width:5.013867pt;}
._7{width:5.956800pt;}
._5{width:7.253333pt;}
._2{width:8.753867pt;}
._f{width:9.926933pt;}
._33{width:24.928000pt;}
._12{width:35.280000pt;}
._45{width:38.736000pt;}
._3c{width:47.733867pt;}
._2a{width:50.104267pt;}
._3d{width:52.923733pt;}
._1c{width:60.795733pt;}
._43{width:69.456000pt;}
._28{width:72.767467pt;}
._25{width:78.384000pt;}
._24{width:80.400000pt;}
._2d{width:84.417067pt;}
._2c{width:87.045867pt;}
._39{width:88.416000pt;}
._21{width:90.384000pt;}
._23{width:91.296000pt;}
._20{width:92.400000pt;}
._1d{width:96.258667pt;}
._27{width:99.833600pt;}
._2f{width:109.728000pt;}
._2e{width:113.088000pt;}
._37{width:126.912000pt;}
._44{width:131.739733pt;}
._26{width:139.020011pt;}
._30{width:144.612800pt;}
._2b{width:146.021333pt;}
._3e{width:171.984000pt;}
._31{width:209.712000pt;}
._34{width:214.896000pt;}
._32{width:236.400000pt;}
._16{width:241.872000pt;}
._42{width:256.080000pt;}
._29{width:261.612267pt;}
._35{width:262.896000pt;}
._3f{width:268.210133pt;}
._40{width:270.850133pt;}
._15{width:279.312000pt;}
._38{width:281.616000pt;}
._36{width:292.224000pt;}
._41{width:302.866133pt;}
._1f{width:342.192000pt;}
._10{width:374.133867pt;}
._14{width:397.824000pt;}
._3a{width:414.288000pt;}
._1e{width:433.008000pt;}
._22{width:451.008000pt;}
._17{width:496.368000pt;}
._13{width:640.560000pt;}
._11{width:663.168000pt;}
._1b{width:799.152000pt;}
._1a{width:817.824000pt;}
._18{width:825.840000pt;}
._19{width:839.136000pt;}
.fsb{font-size:25.333333pt;}
.fsf{font-size:29.866667pt;}
.fsc{font-size:32.833067pt;}
.fs9{font-size:33.600000pt;}
.fse{font-size:35.466667pt;}
.fs6{font-size:41.066667pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fsa{font-size:60.000000pt;}
.fs4{font-size:74.666667pt;}
.fsd{font-size:76.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ybc{bottom:2.692133pt;}
.ybb{bottom:2.983467pt;}
.yba{bottom:6.530133pt;}
.yb9{bottom:6.656800pt;}
.yb8{bottom:11.786800pt;}
.yb7{bottom:14.332800pt;}
.yb5{bottom:17.034533pt;}
.yb4{bottom:23.165200pt;}
.yb3{bottom:23.874533pt;}
.yb2{bottom:30.110533pt;}
.yb1{bottom:32.023200pt;}
.yb0{bottom:32.225867pt;}
.yaf{bottom:37.469867pt;}
.yae{bottom:40.839200pt;}
.yad{bottom:42.713867pt;}
.y2{bottom:43.646800pt;}
.y36{bottom:44.045733pt;}
.yac{bottom:44.791200pt;}
.y31{bottom:55.007200pt;}
.y1{bottom:56.446800pt;}
.y35{bottom:56.845733pt;}
.y1c0{bottom:98.729333pt;}
.y125{bottom:99.787600pt;}
.y141{bottom:99.913600pt;}
.y230{bottom:100.035467pt;}
.y52{bottom:100.045467pt;}
.yca{bottom:100.049467pt;}
.y121{bottom:100.065467pt;}
.ydb{bottom:100.087467pt;}
.y11{bottom:100.839467pt;}
.y163{bottom:100.858533pt;}
.y10f{bottom:100.942533pt;}
.y48{bottom:101.047467pt;}
.y184{bottom:101.357200pt;}
.y1c8{bottom:101.574933pt;}
.y17d{bottom:102.219200pt;}
.y167{bottom:103.672133pt;}
.y1bf{bottom:113.129333pt;}
.y124{bottom:114.187600pt;}
.y140{bottom:114.313600pt;}
.y162{bottom:115.258533pt;}
.y10e{bottom:115.342533pt;}
.y47{bottom:115.447467pt;}
.y183{bottom:115.757200pt;}
.y1c7{bottom:115.974933pt;}
.y22f{bottom:116.033467pt;}
.y51{bottom:116.043467pt;}
.yc9{bottom:116.047467pt;}
.y120{bottom:116.063467pt;}
.yda{bottom:116.085467pt;}
.y17c{bottom:116.619200pt;}
.y166{bottom:118.072133pt;}
.y10{bottom:126.439467pt;}
.y1be{bottom:127.529333pt;}
.y1c6{bottom:130.374933pt;}
.y17b{bottom:131.019200pt;}
.y22e{bottom:132.031467pt;}
.y50{bottom:132.041467pt;}
.yc8{bottom:132.045467pt;}
.y11f{bottom:132.061467pt;}
.yd9{bottom:132.083467pt;}
.yf{bottom:139.239467pt;}
.y1bd{bottom:141.929333pt;}
.y17a{bottom:145.419200pt;}
.y4f{bottom:148.039467pt;}
.yc7{bottom:148.043467pt;}
.y11e{bottom:148.059467pt;}
.yd8{bottom:148.081467pt;}
.y1bc{bottom:156.329333pt;}
.y179{bottom:159.819200pt;}
.y4e{bottom:164.037467pt;}
.yc6{bottom:164.041467pt;}
.y11d{bottom:164.057467pt;}
.yd7{bottom:164.079467pt;}
.y178{bottom:174.219200pt;}
.y62{bottom:179.997600pt;}
.y4d{bottom:180.035467pt;}
.yc5{bottom:180.039467pt;}
.y11c{bottom:180.055467pt;}
.yd6{bottom:180.077467pt;}
.y61{bottom:194.397600pt;}
.y4c{bottom:196.033467pt;}
.yc4{bottom:196.037467pt;}
.y11b{bottom:196.053467pt;}
.y22d{bottom:196.066133pt;}
.yd5{bottom:196.075467pt;}
.y4b{bottom:212.031467pt;}
.yc3{bottom:212.035467pt;}
.y11a{bottom:212.051467pt;}
.y22c{bottom:212.064133pt;}
.yd4{bottom:212.073467pt;}
.y23{bottom:226.671733pt;}
.y30{bottom:226.697067pt;}
.yc2{bottom:228.033467pt;}
.y119{bottom:228.049467pt;}
.y22b{bottom:228.062133pt;}
.yd3{bottom:228.071467pt;}
.y22{bottom:242.669733pt;}
.y2f{bottom:242.695067pt;}
.yc1{bottom:244.037467pt;}
.y118{bottom:244.047467pt;}
.y22a{bottom:244.060133pt;}
.yd2{bottom:244.069467pt;}
.y60{bottom:249.241467pt;}
.y1e8{bottom:256.165600pt;}
.y21{bottom:258.667733pt;}
.y2e{bottom:258.693067pt;}
.yc0{bottom:260.035467pt;}
.y117{bottom:260.045467pt;}
.y229{bottom:260.058133pt;}
.yd1{bottom:260.067467pt;}
.y5f{bottom:263.641467pt;}
.y1e7{bottom:270.565600pt;}
.y20{bottom:274.665733pt;}
.y2d{bottom:274.691067pt;}
.ybf{bottom:276.033467pt;}
.y116{bottom:276.043467pt;}
.y228{bottom:276.056133pt;}
.yd0{bottom:276.065467pt;}
.y1f6{bottom:282.419467pt;}
.y1e6{bottom:284.965600pt;}
.y1f{bottom:290.663733pt;}
.y2c{bottom:290.689067pt;}
.ybe{bottom:292.026667pt;}
.y115{bottom:292.041467pt;}
.y227{bottom:292.054133pt;}
.ycf{bottom:292.063467pt;}
.y1f5{bottom:296.819467pt;}
.y1e5{bottom:299.365600pt;}
.y1e{bottom:306.661733pt;}
.y2b{bottom:306.687067pt;}
.y114{bottom:308.039467pt;}
.y226{bottom:308.052133pt;}
.yce{bottom:308.061467pt;}
.y1f4{bottom:311.219467pt;}
.y1e4{bottom:313.765600pt;}
.yab{bottom:317.498667pt;}
.y1d{bottom:322.659733pt;}
.y2a{bottom:322.685067pt;}
.y113{bottom:324.037467pt;}
.y225{bottom:324.050133pt;}
.ycd{bottom:324.059467pt;}
.ya2{bottom:325.163867pt;}
.y1f3{bottom:325.619467pt;}
.ya8{bottom:327.291400pt;}
.y1e3{bottom:328.165600pt;}
.ya5{bottom:329.539813pt;}
.yb6{bottom:332.831467pt;}
.yaa{bottom:332.837467pt;}
.ybd{bottom:338.456533pt;}
.y1c{bottom:338.657733pt;}
.y29{bottom:338.683067pt;}
.ya4{bottom:339.537480pt;}
.y1f2{bottom:340.019467pt;}
.y112{bottom:340.035467pt;}
.y224{bottom:340.048133pt;}
.ycc{bottom:340.057467pt;}
.ya0{bottom:342.331467pt;}
.y1e2{bottom:342.565600pt;}
.ya9{bottom:342.831467pt;}
.y9f{bottom:343.050133pt;}
.ya6{bottom:350.914800pt;}
.y1f1{bottom:354.419467pt;}
.y1b{bottom:354.655733pt;}
.y28{bottom:354.681067pt;}
.y111{bottom:356.033467pt;}
.ycb{bottom:356.055467pt;}
.ya1{bottom:357.539867pt;}
.ya7{bottom:359.664800pt;}
.ya3{bottom:364.539867pt;}
.y1f0{bottom:368.819467pt;}
.y1a{bottom:370.653733pt;}
.y27{bottom:370.679067pt;}
.y110{bottom:372.031467pt;}
.y223{bottom:379.683200pt;}
.y19{bottom:386.651733pt;}
.y26{bottom:386.677067pt;}
.y9e{bottom:388.067467pt;}
.y222{bottom:398.667200pt;}
.y18{bottom:402.649733pt;}
.y25{bottom:402.675067pt;}
.y9d{bottom:404.065467pt;}
.yf1{bottom:404.107467pt;}
.y10a{bottom:404.158133pt;}
.ye4{bottom:405.223467pt;}
.y216{bottom:406.956133pt;}
.y6c{bottom:413.664800pt;}
.y221{bottom:417.651200pt;}
.ye3{bottom:419.623467pt;}
.y9c{bottom:420.063467pt;}
.yf0{bottom:420.105467pt;}
.y109{bottom:420.156133pt;}
.y215{bottom:421.356133pt;}
.y6b{bottom:428.064800pt;}
.ye2{bottom:434.023467pt;}
.y17{bottom:434.645733pt;}
.y24{bottom:434.671067pt;}
.y214{bottom:435.756133pt;}
.y9b{bottom:436.061467pt;}
.yef{bottom:436.103467pt;}
.y108{bottom:436.154133pt;}
.y220{bottom:436.635200pt;}
.y6a{bottom:442.464800pt;}
.ye1{bottom:448.423467pt;}
.y213{bottom:450.156133pt;}
.y9a{bottom:452.059467pt;}
.yee{bottom:452.101467pt;}
.y107{bottom:452.152133pt;}
.y21f{bottom:455.619200pt;}
.y69{bottom:456.864800pt;}
.y46{bottom:465.262800pt;}
.y99{bottom:468.057467pt;}
.yed{bottom:468.099467pt;}
.y106{bottom:468.150133pt;}
.y1e1{bottom:474.099467pt;}
.y21e{bottom:474.603200pt;}
.y98{bottom:484.055467pt;}
.yec{bottom:484.097467pt;}
.y105{bottom:484.148133pt;}
.y45{bottom:484.246800pt;}
.y1e0{bottom:488.499467pt;}
.y21d{bottom:493.587200pt;}
.ye{bottom:497.327067pt;}
.y97{bottom:500.053467pt;}
.y8b{bottom:500.095467pt;}
.y104{bottom:500.146133pt;}
.y68{bottom:501.223867pt;}
.y1df{bottom:502.899467pt;}
.y44{bottom:503.230800pt;}
.y12c{bottom:505.203200pt;}
.y13b{bottom:505.612667pt;}
.y165{bottom:511.205200pt;}
.yd{bottom:511.992400pt;}
.y21c{bottom:513.048133pt;}
.y67{bottom:515.623867pt;}
.y96{bottom:516.051467pt;}
.y8a{bottom:516.093467pt;}
.y103{bottom:516.144133pt;}
.y1de{bottom:517.299467pt;}
.y43{bottom:522.214800pt;}
.y12b{bottom:524.187200pt;}
.y13a{bottom:524.596667pt;}
.y164{bottom:525.605200pt;}
.y21b{bottom:527.448133pt;}
.y66{bottom:530.023867pt;}
.y1dd{bottom:531.699467pt;}
.y95{bottom:532.049467pt;}
.y89{bottom:532.091467pt;}
.y102{bottom:532.142133pt;}
.y42{bottom:541.198800pt;}
.yc{bottom:541.323067pt;}
.y12a{bottom:543.171200pt;}
.y139{bottom:543.580667pt;}
.y65{bottom:544.423867pt;}
.y1dc{bottom:546.099467pt;}
.y94{bottom:548.047467pt;}
.y212{bottom:548.051467pt;}
.y19e{bottom:548.053467pt;}
.y88{bottom:548.089467pt;}
.y1bb{bottom:548.116800pt;}
.y101{bottom:548.140133pt;}
.yb{bottom:555.988400pt;}
.y41{bottom:560.182800pt;}
.y1db{bottom:560.499467pt;}
.y129{bottom:562.155200pt;}
.y138{bottom:562.564667pt;}
.y93{bottom:564.045467pt;}
.y211{bottom:564.049467pt;}
.y19d{bottom:564.051467pt;}
.y87{bottom:564.087467pt;}
.y1ba{bottom:564.114800pt;}
.ya{bottom:570.653733pt;}
.y1da{bottom:574.899467pt;}
.y40{bottom:579.166800pt;}
.y92{bottom:580.043467pt;}
.y210{bottom:580.047467pt;}
.y19c{bottom:580.049467pt;}
.y86{bottom:580.085467pt;}
.y1b9{bottom:580.112800pt;}
.y100{bottom:580.136133pt;}
.y128{bottom:581.139200pt;}
.y137{bottom:581.548667pt;}
.y9{bottom:585.319067pt;}
.y1d9{bottom:589.299467pt;}
.y91{bottom:596.041467pt;}
.y20f{bottom:596.045467pt;}
.y19b{bottom:596.047467pt;}
.y85{bottom:596.083467pt;}
.y1b8{bottom:596.110800pt;}
.yff{bottom:596.134133pt;}
.y3f{bottom:598.150800pt;}
.y8{bottom:599.984400pt;}
.y136{bottom:600.532667pt;}
.y127{bottom:600.792933pt;}
.y1d8{bottom:603.699467pt;}
.y90{bottom:612.039467pt;}
.y20e{bottom:612.043467pt;}
.y19a{bottom:612.045467pt;}
.y84{bottom:612.081467pt;}
.y1b7{bottom:612.108800pt;}
.yfe{bottom:612.132133pt;}
.y1c5{bottom:614.634933pt;}
.y7{bottom:614.649733pt;}
.y126{bottom:615.192933pt;}
.y3e{bottom:617.134800pt;}
.y1ef{bottom:617.779467pt;}
.y135{bottom:619.516667pt;}
.y8f{bottom:628.037467pt;}
.y20d{bottom:628.041467pt;}
.y199{bottom:628.043467pt;}
.yeb{bottom:628.079467pt;}
.y1b6{bottom:628.106800pt;}
.yfd{bottom:628.130133pt;}
.y1c4{bottom:629.034933pt;}
.y6{bottom:629.315067pt;}
.y1ee{bottom:632.179467pt;}
.y3d{bottom:636.118800pt;}
.y134{bottom:638.500667pt;}
.y1c3{bottom:643.434933pt;}
.y5{bottom:643.980400pt;}
.y1d7{bottom:644.033467pt;}
.y8e{bottom:644.035467pt;}
.y20c{bottom:644.039467pt;}
.y198{bottom:644.041467pt;}
.y83{bottom:644.077467pt;}
.y1b5{bottom:644.104800pt;}
.yfc{bottom:644.128133pt;}
.y1ed{bottom:646.579467pt;}
.y3c{bottom:655.102800pt;}
.y1c2{bottom:657.834933pt;}
.y133{bottom:657.963067pt;}
.y4{bottom:658.645733pt;}
.y1d6{bottom:660.031467pt;}
.y8d{bottom:660.033467pt;}
.y144{bottom:660.035467pt;}
.y20b{bottom:660.037467pt;}
.y82{bottom:660.075467pt;}
.y1b4{bottom:660.102800pt;}
.yfb{bottom:660.126133pt;}
.y1ec{bottom:660.979467pt;}
.y1c1{bottom:672.234933pt;}
.y132{bottom:672.363067pt;}
.y3b{bottom:674.086800pt;}
.y1eb{bottom:675.379467pt;}
.y8c{bottom:676.031467pt;}
.y143{bottom:676.033467pt;}
.y20a{bottom:676.035467pt;}
.y197{bottom:676.037467pt;}
.y81{bottom:676.073467pt;}
.y1b3{bottom:676.100800pt;}
.yfa{bottom:676.124133pt;}
.y1ea{bottom:689.779467pt;}
.y3{bottom:690.645733pt;}
.y142{bottom:692.031467pt;}
.y209{bottom:692.033467pt;}
.y196{bottom:692.035467pt;}
.y80{bottom:692.071467pt;}
.y1b2{bottom:692.098800pt;}
.y3a{bottom:693.740400pt;}
.y1e9{bottom:704.179467pt;}
.y208{bottom:708.031467pt;}
.y195{bottom:708.033467pt;}
.y13f{bottom:708.037467pt;}
.y7f{bottom:708.069467pt;}
.y1b1{bottom:708.096800pt;}
.yf9{bottom:708.120133pt;}
.y39{bottom:708.140400pt;}
.y5e{bottom:720.121467pt;}
.y1d5{bottom:724.031467pt;}
.y13e{bottom:724.035467pt;}
.y194{bottom:724.065467pt;}
.yea{bottom:724.067467pt;}
.y1b0{bottom:724.094800pt;}
.yf8{bottom:724.118133pt;}
.y5d{bottom:734.521467pt;}
.y13d{bottom:740.033467pt;}
.y193{bottom:740.063467pt;}
.y7e{bottom:740.065467pt;}
.y1af{bottom:740.092800pt;}
.yf7{bottom:740.116133pt;}
.y131{bottom:743.859067pt;}
.y38{bottom:748.417600pt;}
.y5c{bottom:748.921467pt;}
.y13c{bottom:756.031467pt;}
.y151{bottom:756.055467pt;}
.y161{bottom:756.059467pt;}
.y192{bottom:756.061467pt;}
.y7d{bottom:756.063467pt;}
.y1ae{bottom:756.090800pt;}
.y207{bottom:756.101467pt;}
.yf6{bottom:756.114133pt;}
.y130{bottom:758.259067pt;}
.y21a{bottom:758.664133pt;}
.y37{bottom:762.817600pt;}
.y5b{bottom:763.321467pt;}
.y177{bottom:772.033467pt;}
.y150{bottom:772.053467pt;}
.y160{bottom:772.057467pt;}
.y191{bottom:772.059467pt;}
.y7c{bottom:772.061467pt;}
.y1ad{bottom:772.088800pt;}
.y206{bottom:772.099467pt;}
.yf5{bottom:772.112133pt;}
.y12f{bottom:772.659067pt;}
.y219{bottom:773.064133pt;}
.y16{bottom:774.125067pt;}
.y218{bottom:787.464133pt;}
.y176{bottom:788.031467pt;}
.y14f{bottom:788.051467pt;}
.y15f{bottom:788.055467pt;}
.y190{bottom:788.057467pt;}
.y7b{bottom:788.059467pt;}
.y182{bottom:788.084800pt;}
.y1ac{bottom:788.086800pt;}
.y205{bottom:788.097467pt;}
.yf4{bottom:788.110133pt;}
.y12e{bottom:797.861200pt;}
.y64{bottom:798.365200pt;}
.y217{bottom:801.864133pt;}
.y175{bottom:804.033467pt;}
.y14e{bottom:804.049467pt;}
.y15e{bottom:804.053467pt;}
.y18f{bottom:804.055467pt;}
.y7a{bottom:804.057467pt;}
.y181{bottom:804.082800pt;}
.y1ab{bottom:804.084800pt;}
.y204{bottom:804.095467pt;}
.yf3{bottom:804.108133pt;}
.y15{bottom:805.591733pt;}
.y12d{bottom:812.261200pt;}
.y63{bottom:812.765200pt;}
.y174{bottom:820.031467pt;}
.y14d{bottom:820.047467pt;}
.y15d{bottom:820.051467pt;}
.y18e{bottom:820.053467pt;}
.y79{bottom:820.055467pt;}
.y180{bottom:820.080800pt;}
.y1aa{bottom:820.082800pt;}
.y203{bottom:820.093467pt;}
.yf2{bottom:820.106133pt;}
.y173{bottom:836.033467pt;}
.y14c{bottom:836.045467pt;}
.y15c{bottom:836.049467pt;}
.y18d{bottom:836.051467pt;}
.y78{bottom:836.053467pt;}
.y17f{bottom:836.078800pt;}
.y1a9{bottom:836.080800pt;}
.y202{bottom:836.091467pt;}
.y1d4{bottom:836.104133pt;}
.y14{bottom:839.191733pt;}
.ye0{bottom:850.099467pt;}
.y172{bottom:852.031467pt;}
.y14b{bottom:852.043467pt;}
.y15b{bottom:852.047467pt;}
.y18c{bottom:852.049467pt;}
.y77{bottom:852.051467pt;}
.y17e{bottom:852.076800pt;}
.y1a8{bottom:852.078800pt;}
.y201{bottom:852.089467pt;}
.y1d3{bottom:852.102133pt;}
.ydf{bottom:864.499467pt;}
.y10d{bottom:864.778800pt;}
.y15a{bottom:868.045467pt;}
.y18b{bottom:868.047467pt;}
.y76{bottom:868.049467pt;}
.y171{bottom:868.074800pt;}
.y1a7{bottom:868.076800pt;}
.y200{bottom:868.087467pt;}
.y1d2{bottom:868.100133pt;}
.y13{bottom:869.591733pt;}
.yde{bottom:878.899467pt;}
.y10c{bottom:879.178800pt;}
.y14a{bottom:884.039467pt;}
.y159{bottom:884.043467pt;}
.y18a{bottom:884.045467pt;}
.y75{bottom:884.047467pt;}
.y170{bottom:884.072800pt;}
.y1a6{bottom:884.074800pt;}
.y1ff{bottom:884.085467pt;}
.y1d1{bottom:884.098133pt;}
.y5a{bottom:890.919200pt;}
.ydd{bottom:893.299467pt;}
.y10b{bottom:893.578800pt;}
.y12{bottom:898.391733pt;}
.y149{bottom:900.037467pt;}
.y158{bottom:900.041467pt;}
.y189{bottom:900.043467pt;}
.y74{bottom:900.045467pt;}
.y16f{bottom:900.070800pt;}
.y1a5{bottom:900.072800pt;}
.y1fe{bottom:900.083467pt;}
.y1d0{bottom:900.096133pt;}
.ydc{bottom:907.699467pt;}
.y59{bottom:909.903200pt;}
.y157{bottom:916.039467pt;}
.y188{bottom:916.041467pt;}
.y73{bottom:916.043467pt;}
.y16e{bottom:916.068800pt;}
.y1a4{bottom:916.070800pt;}
.y1fd{bottom:916.081467pt;}
.y1cf{bottom:916.094133pt;}
.y58{bottom:928.887200pt;}
.y148{bottom:932.033467pt;}
.y156{bottom:932.037467pt;}
.y72{bottom:932.041467pt;}
.y16d{bottom:932.066800pt;}
.y1fc{bottom:932.079467pt;}
.y1ce{bottom:932.092133pt;}
.ye9{bottom:942.718133pt;}
.y57{bottom:947.871200pt;}
.y147{bottom:948.031467pt;}
.y155{bottom:948.035467pt;}
.y187{bottom:948.037467pt;}
.y71{bottom:948.039467pt;}
.y16c{bottom:948.064800pt;}
.y1a3{bottom:948.066800pt;}
.y1fb{bottom:948.077467pt;}
.y1cd{bottom:948.090133pt;}
.ye8{bottom:959.978000pt;}
.y146{bottom:964.033467pt;}
.y186{bottom:964.035467pt;}
.y70{bottom:964.037467pt;}
.y16b{bottom:964.062800pt;}
.y1a2{bottom:964.064800pt;}
.y1fa{bottom:964.075467pt;}
.y1cc{bottom:964.088133pt;}
.y56{bottom:966.855200pt;}
.y34{bottom:976.169067pt;}
.y123{bottom:976.499467pt;}
.y145{bottom:980.031467pt;}
.y185{bottom:980.033467pt;}
.y6f{bottom:980.035467pt;}
.y16a{bottom:980.060800pt;}
.y1a1{bottom:980.062800pt;}
.y154{bottom:980.065467pt;}
.y1f9{bottom:980.073467pt;}
.y1cb{bottom:980.086133pt;}
.ye7{bottom:983.306000pt;}
.y55{bottom:985.839200pt;}
.y122{bottom:990.899467pt;}
.y6e{bottom:996.033467pt;}
.y169{bottom:996.058800pt;}
.y1a0{bottom:996.060800pt;}
.y153{bottom:996.063467pt;}
.y1f8{bottom:996.071467pt;}
.y1ca{bottom:996.084133pt;}
.y33{bottom:1004.169067pt;}
.ye6{bottom:1005.295467pt;}
.y54{bottom:1005.299467pt;}
.y6d{bottom:1012.031467pt;}
.y168{bottom:1012.056800pt;}
.y19f{bottom:1012.058800pt;}
.y152{bottom:1012.061467pt;}
.y1f7{bottom:1012.069467pt;}
.y1c9{bottom:1012.082133pt;}
.ye5{bottom:1019.695467pt;}
.y53{bottom:1019.699467pt;}
.y32{bottom:1021.502400pt;}
.y4a{bottom:1050.327600pt;}
.y49{bottom:1062.327600pt;}
.h11{height:17.589844pt;}
.h18{height:20.737500pt;}
.h12{height:22.797178pt;}
.h2{height:29.625000pt;}
.hc{height:33.328125pt;}
.h3{height:34.239583pt;}
.h13{height:35.179688pt;}
.hb{height:37.031250pt;}
.h4{height:39.777344pt;}
.h5{height:40.397135pt;}
.hd{height:42.117188pt;}
.hf{height:42.773438pt;}
.ha{height:44.457031pt;}
.h17{height:44.476231pt;}
.h9{height:45.149740pt;}
.he{height:46.796875pt;}
.h19{height:47.855922pt;}
.h15{height:48.133333pt;}
.h8{height:51.476562pt;}
.h10{height:57.000000pt;}
.h14{height:57.333333pt;}
.h7{height:65.515625pt;}
.h16{height:72.200000pt;}
.h6{height:85.546875pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:218.668000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:39.083733pt;}
.x3{left:56.692933pt;}
.x57{left:61.012933pt;}
.x20{left:64.793200pt;}
.x5{left:68.029600pt;}
.x4c{left:72.980133pt;}
.x38{left:75.566267pt;}
.x58{left:76.480933pt;}
.x55{left:78.634400pt;}
.x54{left:79.894400pt;}
.x4b{left:82.033200pt;}
.x2d{left:84.126400pt;}
.x43{left:88.576933pt;}
.x42{left:95.056933pt;}
.x48{left:108.388933pt;}
.x2b{left:110.185333pt;}
.x29{left:113.019067pt;}
.x47{left:115.612933pt;}
.x17{left:117.388933pt;}
.x18{left:118.444933pt;}
.x2e{left:137.644000pt;}
.x1f{left:146.212933pt;}
.x37{left:147.476000pt;}
.x36{left:148.559467pt;}
.x1e{left:149.560933pt;}
.x24{left:154.685733pt;}
.x26{left:163.271413pt;}
.x10{left:173.089200pt;}
.x22{left:177.773200pt;}
.x51{left:180.886800pt;}
.x4a{left:183.761733pt;}
.x50{left:184.798800pt;}
.x4f{left:186.025467pt;}
.x13{left:187.548667pt;}
.x49{left:189.545733pt;}
.x21{left:198.773200pt;}
.x2a{left:201.989733pt;}
.x14{left:204.749200pt;}
.x27{left:205.732773pt;}
.x1{left:209.132800pt;}
.x4e{left:211.137200pt;}
.x28{left:213.352400pt;}
.x4d{left:218.973200pt;}
.x12{left:221.004667pt;}
.x3c{left:223.500533pt;}
.x35{left:225.796933pt;}
.xd{left:227.869467pt;}
.x34{left:228.904933pt;}
.x15{left:235.209867pt;}
.x2f{left:237.769067pt;}
.x16{left:239.709867pt;}
.xe{left:242.083733pt;}
.xc{left:244.969467pt;}
.x11{left:245.868533pt;}
.xf{left:265.627733pt;}
.x25{left:285.394000pt;}
.x9{left:294.207200pt;}
.xa{left:298.527200pt;}
.x8{left:312.567200pt;}
.x56{left:331.131200pt;}
.x4{left:406.299200pt;}
.x3b{left:407.346667pt;}
.x59{left:409.156933pt;}
.x32{left:410.308933pt;}
.x45{left:413.104933pt;}
.x7{left:417.604267pt;}
.x5b{left:418.528933pt;}
.x30{left:421.816933pt;}
.x39{left:422.814667pt;}
.x5a{left:425.584933pt;}
.x41{left:426.979067pt;}
.x6{left:428.459600pt;}
.x52{left:431.639600pt;}
.x53{left:444.094533pt;}
.x3f{left:451.653467pt;}
.x1a{left:461.841867pt;}
.x40{left:464.985467pt;}
.x19{left:468.513867pt;}
.x3e{left:471.820667pt;}
.x5c{left:482.212933pt;}
.x5d{left:487.768933pt;}
.x3d{left:492.568667pt;}
.x44{left:517.108933pt;}
.x31{left:521.296933pt;}
.x46{left:526.600933pt;}
.x33{left:529.624933pt;}
.x3a{left:544.890667pt;}
.x2{left:546.444800pt;}
.x23{left:547.882800pt;}
.x1c{left:620.663333pt;}
.x1b{left:650.028667pt;}
.x1d{left:724.169333pt;}
.xb{left:730.341200pt;}
}




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