
    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_d5631510374149f3354c33ee.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191895;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_4d0cc23fb477353fc5d29a34.woff')format("woff");}.ff2{font-family:ff2;line-height:1.182129;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_9ffea1bedd51b8a1cba07398.woff')format("woff");}.ff3{font-family:ff3;line-height:1.024414;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_5b68eb8f0b436a7f06dc56cd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.060547;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_fc1a979d29d7d0948dbc11be.woff')format("woff");}.ff5{font-family:ff5;line-height:1.024414;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_c0e34cc1a4c7893275da4586.woff')format("woff");}.ff6{font-family:ff6;line-height:1.060547;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_0cb64e7d6276e080cb9ddc81.woff')format("woff");}.ff7{font-family:ff7;line-height:1.191895;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_97416c049fe48b1b1da938e0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.087402;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_554b582e095606182c356061.woff')format("woff");}.ff9{font-family:ff9;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fc1a979d29d7d0948dbc11be.woff')format("woff");}.ffa{font-family:ffa;line-height:1.024414;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_1b0e2d97d54008588baed23d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.060547;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_e317d070b2065481442a3e47.woff')format("woff");}.ffc{font-family:ffc;line-height:1.191895;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_c834139fab98f31bc0dce0b0.woff')format("woff");}.ffd{font-family:ffd;line-height:1.137695;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_b3e0b1053952287eac59e8e3.woff')format("woff");}.ffe{font-family:ffe;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-16.977000px;}
.v3{vertical-align:-11.982000px;}
.v4{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.757800px;}
.v1{vertical-align:16.977000px;}
.v5{vertical-align:36.000000px;}
.ls2f{letter-spacing:-7.371000px;}
.ls6{letter-spacing:-6.264000px;}
.ls28{letter-spacing:-6.156000px;}
.ls20{letter-spacing:-5.796000px;}
.ls2d{letter-spacing:-3.726000px;}
.ls5a{letter-spacing:-3.174000px;}
.ls12{letter-spacing:-3.105000px;}
.ls1d{letter-spacing:-3.102000px;}
.ls13{letter-spacing:-2.760000px;}
.ls3f{letter-spacing:-2.640000px;}
.ls53{letter-spacing:-2.574000px;}
.lsa{letter-spacing:-2.520000px;}
.lsc{letter-spacing:-2.400000px;}
.ls3d{letter-spacing:-2.178000px;}
.ls8{letter-spacing:-2.160000px;}
.ls4c{letter-spacing:-1.725000px;}
.ls26{letter-spacing:-1.518000px;}
.ls3e{letter-spacing:-1.452000px;}
.ls54{letter-spacing:-1.386000px;}
.ls1a{letter-spacing:-1.320000px;}
.ls40{letter-spacing:-1.188000px;}
.ls22{letter-spacing:-1.173000px;}
.ls34{letter-spacing:-1.056000px;}
.ls9{letter-spacing:-1.008000px;}
.ls11{letter-spacing:-0.855000px;}
.ls18{letter-spacing:-0.840000px;}
.ls23{letter-spacing:-0.759000px;}
.ls2c{letter-spacing:-0.627000px;}
.ls1e{letter-spacing:-0.594000px;}
.ls55{letter-spacing:-0.552000px;}
.ls59{letter-spacing:-0.414000px;}
.ls48{letter-spacing:-0.396000px;}
.ls27{letter-spacing:-0.345000px;}
.ls56{letter-spacing:-0.330000px;}
.ls19{letter-spacing:-0.300000px;}
.ls1b{letter-spacing:-0.270000px;}
.ls2{letter-spacing:-0.252000px;}
.ls5b{letter-spacing:-0.241362px;}
.ls5{letter-spacing:-0.240000px;}
.ls57{letter-spacing:-0.171000px;}
.ls3c{letter-spacing:-0.132000px;}
.ls1{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000300px;}
.ls5d{letter-spacing:0.024600px;}
.ls33{letter-spacing:0.132000px;}
.ls2e{letter-spacing:0.162000px;}
.ls4a{letter-spacing:0.211200px;}
.ls45{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.690000px;}
.ls2b{letter-spacing:0.726000px;}
.ls2a{letter-spacing:0.732600px;}
.ls4b{letter-spacing:1.148400px;}
.ls31{letter-spacing:1.350000px;}
.ls49{letter-spacing:1.491600px;}
.ls3b{letter-spacing:1.729200px;}
.ls30{letter-spacing:2.019600px;}
.ls60{letter-spacing:2.205000px;}
.ls7{letter-spacing:2.268000px;}
.lse{letter-spacing:2.400000px;}
.ls4f{letter-spacing:2.626800px;}
.ls52{letter-spacing:2.904000px;}
.ls51{letter-spacing:2.910600px;}
.ls21{letter-spacing:3.412200px;}
.ls3a{letter-spacing:3.471600px;}
.ls4e{letter-spacing:3.656400px;}
.ls38{letter-spacing:3.993000px;}
.ls37{letter-spacing:4.019400px;}
.ls39{letter-spacing:4.026000px;}
.ls0{letter-spacing:4.200000px;}
.ls41{letter-spacing:5.121600px;}
.ls35{letter-spacing:5.161200px;}
.lsf{letter-spacing:5.325000px;}
.lsb{letter-spacing:5.760000px;}
.lsd{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.ls4d{letter-spacing:6.270000px;}
.ls10{letter-spacing:6.300000px;}
.ls1c{letter-spacing:6.375000px;}
.ls29{letter-spacing:6.825000px;}
.ls50{letter-spacing:7.213800px;}
.ls62{letter-spacing:7.275000px;}
.ls47{letter-spacing:8.100000px;}
.ls24{letter-spacing:8.160156px;}
.ls46{letter-spacing:8.160756px;}
.ls5c{letter-spacing:8.316000px;}
.ls4{letter-spacing:8.400000px;}
.ls32{letter-spacing:8.475000px;}
.ls36{letter-spacing:8.514000px;}
.ls42{letter-spacing:8.553600px;}
.ls61{letter-spacing:8.820000px;}
.ls25{letter-spacing:8.925000px;}
.ls15{letter-spacing:9.081600px;}
.ls58{letter-spacing:9.150000px;}
.ls44{letter-spacing:9.827400px;}
.ls43{letter-spacing:9.834000px;}
.ls17{letter-spacing:10.018800px;}
.ls14{letter-spacing:11.964600px;}
.ls5e{letter-spacing:13.104000px;}
.ls5f{letter-spacing:27.020700px;}
.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;}
}
.ws39{word-spacing:-43.080000px;}
.ws67{word-spacing:-30.225000px;}
.ws30{word-spacing:-30.000000px;}
.ws4c{word-spacing:-29.550000px;}
.ws58{word-spacing:-29.175000px;}
.ws72{word-spacing:-28.350000px;}
.ws1{word-spacing:-28.188000px;}
.ws3c{word-spacing:-27.900000px;}
.ws24{word-spacing:-27.450000px;}
.ws6f{word-spacing:-26.523000px;}
.ws11{word-spacing:-26.400000px;}
.ws6b{word-spacing:-26.019000px;}
.ws74{word-spacing:-22.860000px;}
.ws45{word-spacing:-22.761000px;}
.ws7{word-spacing:-22.740000px;}
.ws4{word-spacing:-22.620000px;}
.ws3{word-spacing:-21.084000px;}
.ws0{word-spacing:-20.412000px;}
.ws46{word-spacing:-20.169000px;}
.ws2{word-spacing:-19.740000px;}
.ws14{word-spacing:-19.389000px;}
.ws4d{word-spacing:-18.678000px;}
.ws1b{word-spacing:-18.546000px;}
.ws51{word-spacing:-18.414000px;}
.ws73{word-spacing:-18.228000px;}
.ws5e{word-spacing:-18.216000px;}
.ws59{word-spacing:-18.150000px;}
.ws12{word-spacing:-18.102000px;}
.ws26{word-spacing:-17.952000px;}
.ws6c{word-spacing:-17.703000px;}
.ws1c{word-spacing:-17.226000px;}
.ws13{word-spacing:-17.043000px;}
.ws38{word-spacing:-16.860000px;}
.ws32{word-spacing:-16.698000px;}
.ws68{word-spacing:-16.629000px;}
.ws25{word-spacing:-16.302000px;}
.ws2d{word-spacing:-16.284000px;}
.ws42{word-spacing:-16.200000px;}
.ws2c{word-spacing:-15.870000px;}
.ws70{word-spacing:-15.561000px;}
.ws3a{word-spacing:-15.540000px;}
.ws31{word-spacing:-15.525000px;}
.ws47{word-spacing:-15.390000px;}
.ws4f{word-spacing:-15.246000px;}
.ws33{word-spacing:-15.174000px;}
.ws5d{word-spacing:-14.916000px;}
.ws53{word-spacing:-14.850000px;}
.ws5{word-spacing:-14.820000px;}
.ws15{word-spacing:-14.283000px;}
.ws52{word-spacing:-14.124000px;}
.ws1a{word-spacing:-13.980000px;}
.ws69{word-spacing:-13.869000px;}
.ws54{word-spacing:-13.662000px;}
.ws1e{word-spacing:-13.338000px;}
.ws20{word-spacing:-13.068000px;}
.ws6{word-spacing:-12.420000px;}
.ws1d{word-spacing:-11.303787px;}
.ws1f{word-spacing:-11.178000px;}
.ws6a{word-spacing:-11.062425px;}
.ws4e{word-spacing:-10.812318px;}
.ws34{word-spacing:-8.846442px;}
.wsb{word-spacing:-8.400000px;}
.ws71{word-spacing:-6.300000px;}
.wsa{word-spacing:-6.000000px;}
.wse{word-spacing:-4.200000px;}
.ws16{word-spacing:-2.400000px;}
.wsd{word-spacing:-2.268000px;}
.ws2f{word-spacing:-2.001000px;}
.ws5a{word-spacing:-1.914000px;}
.ws50{word-spacing:-1.350000px;}
.ws62{word-spacing:-1.188000px;}
.ws29{word-spacing:-0.990000px;}
.ws2a{word-spacing:-0.690000px;}
.ws8{word-spacing:0.000000px;}
.ws64{word-spacing:0.171000px;}
.wsc{word-spacing:0.240000px;}
.ws9{word-spacing:0.252000px;}
.ws21{word-spacing:0.300000px;}
.ws6e{word-spacing:0.414000px;}
.ws61{word-spacing:0.552000px;}
.ws49{word-spacing:0.627000px;}
.ws17{word-spacing:0.855000px;}
.ws63{word-spacing:1.056000px;}
.ws6d{word-spacing:1.104000px;}
.ws57{word-spacing:1.188000px;}
.ws5f{word-spacing:1.452000px;}
.ws5c{word-spacing:1.725000px;}
.ws66{word-spacing:1.782000px;}
.ws60{word-spacing:2.574000px;}
.ws27{word-spacing:2.622000px;}
.ws28{word-spacing:3.102000px;}
.ws18{word-spacing:3.105000px;}
.ws4a{word-spacing:3.726000px;}
.wsf{word-spacing:3.780000px;}
.ws3b{word-spacing:3.933000px;}
.ws65{word-spacing:4.968000px;}
.ws2b{word-spacing:5.796000px;}
.ws10{word-spacing:5.820000px;}
.ws22{word-spacing:5.886000px;}
.ws4b{word-spacing:6.072000px;}
.ws36{word-spacing:6.156000px;}
.ws35{word-spacing:7.590000px;}
.ws55{word-spacing:8.556000px;}
.ws5b{word-spacing:8.580000px;}
.ws48{word-spacing:8.694000px;}
.ws2e{word-spacing:8.763000px;}
.ws56{word-spacing:10.143000px;}
.ws23{word-spacing:16.902000px;}
.ws19{word-spacing:21.528000px;}
.ws37{word-spacing:81.090000px;}
.ws41{word-spacing:97.890000px;}
.ws3d{word-spacing:409.662000px;}
.ws40{word-spacing:473.340000px;}
.ws3e{word-spacing:530.640000px;}
.ws44{word-spacing:533.460000px;}
.ws3f{word-spacing:1008.462000px;}
.ws43{word-spacing:1009.482000px;}
._20{margin-left:-18.517800px;}
._2a{margin-left:-14.191800px;}
._c{margin-left:-13.002000px;}
._d{margin-left:-10.141200px;}
._29{margin-left:-7.754100px;}
._b{margin-left:-6.366300px;}
._4{margin-left:-4.668300px;}
._8{margin-left:-2.846700px;}
._3{margin-left:-1.839300px;}
._5{width:1.304400px;}
._1{width:2.400000px;}
._e{width:3.812700px;}
._7{width:5.107500px;}
._6{width:6.262800px;}
._9{width:7.871700px;}
._a{width:9.168600px;}
._11{width:10.467000px;}
._16{width:11.854500px;}
._2b{width:12.870000px;}
._18{width:14.039400px;}
._19{width:15.774000px;}
._1b{width:16.803414px;}
._10{width:18.558600px;}
._2c{width:19.944900px;}
._15{width:21.216900px;}
._1e{width:22.645800px;}
._14{width:24.723000px;}
._2f{width:26.404140px;}
._24{width:27.704160px;}
._30{width:31.517820px;}
._22{width:32.543100px;}
._21{width:33.557400px;}
._2e{width:36.817200px;}
._23{width:38.772300px;}
._2d{width:42.008400px;}
._1a{width:43.445160px;}
._f{width:85.554000px;}
._26{width:172.380900px;}
._12{width:260.610000px;}
._28{width:272.251200px;}
._1f{width:488.199300px;}
._27{width:490.567200px;}
._31{width:491.617200px;}
._1c{width:496.170600px;}
._13{width:498.232800px;}
._0{width:578.400000px;}
._1d{width:993.211200px;}
._2{width:996.331200px;}
._17{width:1000.381200px;}
._25{width:1002.361200px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fse{font-size:38.478000px;}
.fsb{font-size:40.227000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y22f{bottom:105.653550px;}
.y24e{bottom:106.255350px;}
.y1f6{bottom:106.264950px;}
.y1af{bottom:106.293300px;}
.y146{bottom:106.293450px;}
.y8e{bottom:106.296300px;}
.y69{bottom:106.296450px;}
.y1e{bottom:106.299150px;}
.yfd{bottom:106.366350px;}
.y46{bottom:106.603650px;}
.yd1{bottom:109.294800px;}
.y127{bottom:118.918200px;}
.y1ae{bottom:123.546300px;}
.y145{bottom:123.546450px;}
.y8d{bottom:126.544800px;}
.y68{bottom:126.544950px;}
.y45{bottom:126.941400px;}
.y1d3{bottom:127.078650px;}
.y1d{bottom:127.593450px;}
.y24d{bottom:127.706850px;}
.yd0{bottom:127.798200px;}
.y1f5{bottom:128.671950px;}
.y126{bottom:136.918200px;}
.y1ad{bottom:143.794800px;}
.y144{bottom:143.794950px;}
.y8c{bottom:145.045200px;}
.y67{bottom:145.045500px;}
.y16a{bottom:145.048200px;}
.y44{bottom:147.279150px;}
.y1c{bottom:147.348450px;}
.y1d2{bottom:147.933900px;}
.ycf{bottom:148.046700px;}
.y24c{bottom:149.158350px;}
.y22e{bottom:149.609100px;}
.y1f4{bottom:151.078950px;}
.y18d{bottom:153.340650px;}
.y123{bottom:154.918200px;}
.yfc{bottom:156.782100px;}
.y8b{bottom:162.298200px;}
.y66{bottom:162.298500px;}
.y128{bottom:163.918200px;}
.y169{bottom:165.296700px;}
.y143{bottom:165.297000px;}
.y1b{bottom:167.103450px;}
.y43{bottom:167.616900px;}
.y1d1{bottom:168.789150px;}
.y22d{bottom:169.863600px;}
.yb0{bottom:170.528700px;}
.y122{bottom:172.918200px;}
.y1f3{bottom:173.485950px;}
.y18c{bottom:174.394650px;}
.yfb{bottom:174.782100px;}
.y24b{bottom:179.114850px;}
.y8a{bottom:182.546700px;}
.y65{bottom:182.547000px;}
.y168{bottom:183.800250px;}
.y1a{bottom:186.858450px;}
.y42{bottom:187.954650px;}
.y1d0{bottom:189.644400px;}
.y22c{bottom:190.118100px;}
.y125{bottom:190.918200px;}
.yaf{bottom:191.318700px;}
.yce{bottom:192.074850px;}
.yfa{bottom:192.782100px;}
.y18b{bottom:195.448650px;}
.y1f2{bottom:195.892950px;}
.y24a{bottom:200.566350px;}
.y89{bottom:201.047250px;}
.y64{bottom:201.050700px;}
.yf6{bottom:201.782100px;}
.y167{bottom:204.048750px;}
.y19{bottom:206.613450px;}
.y41{bottom:208.292400px;}
.y124{bottom:208.918200px;}
.y142{bottom:209.311500px;}
.y22b{bottom:210.372600px;}
.y1cf{bottom:210.499650px;}
.yf9{bottom:210.782100px;}
.y26d{bottom:211.434750px;}
.yae{bottom:212.108700px;}
.ycd{bottom:213.223350px;}
.y18a{bottom:216.502650px;}
.y1f1{bottom:218.299950px;}
.y88{bottom:218.300250px;}
.y63{bottom:221.299200px;}
.y166{bottom:222.552150px;}
.y18{bottom:226.368450px;}
.y212{bottom:226.572450px;}
.y40{bottom:228.630150px;}
.yf8{bottom:228.782100px;}
.y249{bottom:230.522850px;}
.y1ce{bottom:231.354900px;}
.y120{bottom:231.643200px;}
.y26c{bottom:231.684750px;}
.y141{bottom:232.477500px;}
.yad{bottom:232.898700px;}
.ycc{bottom:234.371850px;}
.y189{bottom:237.611700px;}
.y87{bottom:238.548750px;}
.y22a{bottom:239.132100px;}
.y1f0{bottom:240.706950px;}
.y165{bottom:242.800650px;}
.yf7{bottom:246.782100px;}
.y211{bottom:247.565700px;}
.y1ac{bottom:248.045400px;}
.y3f{bottom:248.967900px;}
.y11e{bottom:249.643200px;}
.y26b{bottom:251.934750px;}
.y248{bottom:251.974350px;}
.y1cd{bottom:252.210150px;}
.yac{bottom:253.688700px;}
.y140{bottom:255.643500px;}
.y86{bottom:257.049150px;}
.y121{bottom:258.643200px;}
.y188{bottom:258.665700px;}
.y17{bottom:258.888450px;}
.y229{bottom:259.386600px;}
.y1ef{bottom:263.113950px;}
.y62{bottom:265.299150px;}
.y11d{bottom:267.643200px;}
.y210{bottom:268.558950px;}
.y1ab{bottom:268.769400px;}
.y3e{bottom:269.305650px;}
.yf5{bottom:269.507100px;}
.y26a{bottom:272.184750px;}
.y1cc{bottom:273.065400px;}
.y85{bottom:274.302150px;}
.yab{bottom:274.478700px;}
.ycb{bottom:276.785100px;}
.y13f{bottom:278.794650px;}
.y228{bottom:279.641100px;}
.y187{bottom:279.719700px;}
.y247{bottom:281.930850px;}
.y1ee{bottom:285.520950px;}
.y11f{bottom:285.643200px;}
.y164{bottom:286.805550px;}
.yf4{bottom:287.507100px;}
.y61{bottom:287.965650px;}
.y1aa{bottom:289.493400px;}
.y20f{bottom:289.552200px;}
.y3d{bottom:289.643400px;}
.y1cb{bottom:293.920650px;}
.y84{bottom:294.550650px;}
.yaa{bottom:295.246200px;}
.yf0{bottom:296.507100px;}
.y186{bottom:300.773700px;}
.y13e{bottom:301.961400px;}
.y246{bottom:303.382350px;}
.y269{bottom:305.184750px;}
.yf3{bottom:305.507100px;}
.y163{bottom:307.183050px;}
.y1ed{bottom:307.927950px;}
.y11b{bottom:308.368200px;}
.y227{bottom:308.400600px;}
.y16{bottom:308.418450px;}
.y3c{bottom:309.981150px;}
.y1a9{bottom:310.217400px;}
.y20e{bottom:310.545450px;}
.y60{bottom:310.632150px;}
.yef{bottom:314.507100px;}
.y1ca{bottom:314.775900px;}
.ya9{bottom:316.032450px;}
.y11a{bottom:317.368200px;}
.y185{bottom:321.827700px;}
.yf2{bottom:323.507100px;}
.y13d{bottom:325.128150px;}
.y11c{bottom:326.368200px;}
.y162{bottom:327.560550px;}
.y226{bottom:328.655100px;}
.y15{bottom:329.673450px;}
.y3b{bottom:330.318900px;}
.y1ec{bottom:330.334950px;}
.y1a8{bottom:330.941400px;}
.y20d{bottom:331.538700px;}
.y5f{bottom:333.298650px;}
.y245{bottom:333.322500px;}
.y1c9{bottom:335.631150px;}
.ya8{bottom:336.818700px;}
.y83{bottom:338.627850px;}
.yca{bottom:339.971100px;}
.yf1{bottom:341.507100px;}
.y184{bottom:342.881700px;}
.y268{bottom:346.689750px;}
.y161{bottom:347.938050px;}
.y13c{bottom:348.294900px;}
.y3a{bottom:350.656650px;}
.y14{bottom:350.958900px;}
.y1a7{bottom:351.665400px;}
.y20c{bottom:352.531950px;}
.y1eb{bottom:352.741950px;}
.y244{bottom:354.774000px;}
.y119{bottom:355.852650px;}
.y5e{bottom:355.960650px;}
.y225{bottom:357.414600px;}
.ya7{bottom:357.604950px;}
.y82{bottom:359.828100px;}
.yc9{bottom:361.119600px;}
.y183{bottom:363.935700px;}
.yed{bottom:364.232100px;}
.y267{bottom:366.189750px;}
.y160{bottom:368.315550px;}
.y1c8{bottom:369.143700px;}
.y13{bottom:370.713900px;}
.y39{bottom:370.994400px;}
.y13b{bottom:371.461650px;}
.y1a6{bottom:372.389400px;}
.y1ea{bottom:375.148950px;}
.y243{bottom:376.192800px;}
.y224{bottom:377.669100px;}
.ya6{bottom:378.391200px;}
.y5d{bottom:378.622500px;}
.y81{bottom:381.028350px;}
.yec{bottom:382.232100px;}
.yc8{bottom:382.268100px;}
.y182{bottom:384.989700px;}
.y266{bottom:385.689750px;}
.y15f{bottom:388.693050px;}
.y1c7{bottom:389.999700px;}
.y12{bottom:390.468900px;}
.y38{bottom:391.332150px;}
.y1a5{bottom:393.113400px;}
.y13a{bottom:394.628400px;}
.y20b{bottom:394.786350px;}
.y118{bottom:396.606450px;}
.y1e9{bottom:397.538700px;}
.y223{bottom:397.923600px;}
.ya5{bottom:399.177450px;}
.yeb{bottom:400.232100px;}
.y5c{bottom:401.289000px;}
.y80{bottom:402.228600px;}
.yc7{bottom:403.421550px;}
.y265{bottom:405.189750px;}
.y181{bottom:406.043700px;}
.y242{bottom:406.149300px;}
.y15e{bottom:409.078050px;}
.y11{bottom:410.223900px;}
.y1c6{bottom:410.855700px;}
.y37{bottom:411.669900px;}
.y1a4{bottom:413.837400px;}
.y117{bottom:416.857950px;}
.y222{bottom:418.178100px;}
.yea{bottom:418.232100px;}
.y1e8{bottom:419.946450px;}
.y7f{bottom:423.428850px;}
.yc6{bottom:424.570050px;}
.y264{bottom:424.689750px;}
.y180{bottom:427.091100px;}
.y241{bottom:427.600800px;}
.y15d{bottom:429.450300px;}
.y10{bottom:429.978900px;}
.y1c5{bottom:431.711700px;}
.y36{bottom:432.007650px;}
.ya4{bottom:432.709650px;}
.y1a3{bottom:434.561400px;}
.ye9{bottom:436.232100px;}
.y5b{bottom:436.721700px;}
.y116{bottom:437.109450px;}
.y139{bottom:439.054200px;}
.y1e7{bottom:442.354200px;}
.y263{bottom:444.189750px;}
.y7e{bottom:444.629100px;}
.y221{bottom:446.937600px;}
.y17f{bottom:448.153350px;}
.y240{bottom:449.052300px;}
.y15c{bottom:449.822550px;}
.y35{bottom:452.345400px;}
.y1c4{bottom:452.567700px;}
.ya3{bottom:453.499650px;}
.ye8{bottom:454.232100px;}
.y1a2{bottom:455.285400px;}
.y115{bottom:457.360950px;}
.yc5{bottom:458.480550px;}
.y5a{bottom:459.376200px;}
.yf{bottom:462.498900px;}
.y262{bottom:463.689750px;}
.y1e6{bottom:464.761950px;}
.y7d{bottom:465.829350px;}
.y138{bottom:465.966450px;}
.y17e{bottom:469.215600px;}
.y15b{bottom:470.194800px;}
.y20a{bottom:470.638800px;}
.ye7{bottom:472.232100px;}
.y34{bottom:472.683150px;}
.y1c3{bottom:473.423700px;}
.ya2{bottom:474.279600px;}
.y1a1{bottom:476.016450px;}
.y114{bottom:477.612450px;}
.y23f{bottom:479.008800px;}
.yc4{bottom:479.633550px;}
.y59{bottom:482.030700px;}
.y261{bottom:483.189750px;}
.y7c{bottom:487.029600px;}
.y1e5{bottom:487.169700px;}
.ye6{bottom:490.232100px;}
.y17d{bottom:490.277850px;}
.y15a{bottom:490.567050px;}
.y209{bottom:491.626800px;}
.y33{bottom:493.020900px;}
.y1c2{bottom:494.279700px;}
.ya1{bottom:495.065850px;}
.y1a0{bottom:496.733700px;}
.y220{bottom:497.689350px;}
.y23e{bottom:500.460300px;}
.yc3{bottom:500.786550px;}
.y260{bottom:502.689750px;}
.y58{bottom:504.683550px;}
.y7b{bottom:508.229850px;}
.ydd{bottom:508.232100px;}
.y17c{bottom:511.340100px;}
.y208{bottom:512.614800px;}
.y32{bottom:513.358650px;}
.y1c1{bottom:515.135700px;}
.yee{bottom:517.232100px;}
.y19f{bottom:517.478550px;}
.y21f{bottom:517.940850px;}
.ye{bottom:520.535400px;}
.y23d{bottom:521.900550px;}
.yc2{bottom:521.939550px;}
.y25f{bottom:522.189750px;}
.y1e4{bottom:522.281100px;}
.y159{bottom:523.676100px;}
.ydc{bottom:526.232100px;}
.y57{bottom:527.350050px;}
.ya0{bottom:528.556950px;}
.y7a{bottom:529.436550px;}
.y137{bottom:531.140400px;}
.y17b{bottom:532.402350px;}
.y207{bottom:533.602800px;}
.y31{bottom:533.696400px;}
.y1c0{bottom:535.991700px;}
.y21e{bottom:538.192350px;}
.y19e{bottom:538.195800px;}
.y113{bottom:540.894750px;}
.y25e{bottom:541.689750px;}
.yc1{bottom:543.171900px;}
.y158{bottom:544.053600px;}
.ye5{bottom:544.232100px;}
.y1e3{bottom:544.688100px;}
.yd{bottom:547.793400px;}
.y9f{bottom:549.346950px;}
.y56{bottom:550.016550px;}
.y79{bottom:550.636800px;}
.y23c{bottom:551.857050px;}
.y17a{bottom:553.464600px;}
.y30{bottom:554.034150px;}
.y136{bottom:554.307150px;}
.y206{bottom:554.590800px;}
.y1bf{bottom:556.847700px;}
.y21d{bottom:558.443850px;}
.y19d{bottom:558.913050px;}
.y25d{bottom:561.189750px;}
.ye4{bottom:562.232100px;}
.y112{bottom:563.619750px;}
.yc0{bottom:564.320400px;}
.y157{bottom:564.431100px;}
.y1e2{bottom:567.095100px;}
.y9e{bottom:570.136950px;}
.y23b{bottom:573.308550px;}
.y2f{bottom:574.371900px;}
.y179{bottom:574.526850px;}
.yc{bottom:575.051400px;}
.y205{bottom:575.578800px;}
.y135{bottom:577.473900px;}
.y1be{bottom:577.703700px;}
.y21c{bottom:578.695350px;}
.y19c{bottom:579.630300px;}
.ye3{bottom:580.232100px;}
.y25c{bottom:580.689750px;}
.y78{bottom:584.625300px;}
.y156{bottom:584.808600px;}
.ybf{bottom:585.468900px;}
.y55{bottom:585.478950px;}
.y111{bottom:586.344750px;}
.y1e1{bottom:589.502100px;}
.y9d{bottom:590.926950px;}
.y2e{bottom:594.709650px;}
.y178{bottom:595.589100px;}
.y204{bottom:596.566800px;}
.ye2{bottom:598.232100px;}
.y1bd{bottom:598.559700px;}
.y21b{bottom:598.946850px;}
.y25b{bottom:600.189750px;}
.y19b{bottom:600.347550px;}
.y134{bottom:600.638100px;}
.y23a{bottom:603.250650px;}
.y110{bottom:604.344750px;}
.y155{bottom:605.186100px;}
.y77{bottom:605.827800px;}
.ybe{bottom:606.617400px;}
.y54{bottom:608.133450px;}
.y9c{bottom:611.716950px;}
.y1e0{bottom:611.909100px;}
.y2d{bottom:615.047400px;}
.ye1{bottom:616.232100px;}
.y177{bottom:616.651350px;}
.y203{bottom:617.554800px;}
.y21a{bottom:619.198350px;}
.y1bc{bottom:619.415700px;}
.y25a{bottom:619.689750px;}
.y19a{bottom:621.064800px;}
.y10f{bottom:622.344750px;}
.yb{bottom:623.601600px;}
.y133{bottom:623.804850px;}
.y239{bottom:624.700650px;}
.y154{bottom:625.563600px;}
.y76{bottom:627.030300px;}
.ybd{bottom:627.765900px;}
.y53{bottom:630.787950px;}
.y9b{bottom:632.506950px;}
.ye0{bottom:634.232100px;}
.y1df{bottom:634.316100px;}
.y2c{bottom:635.385150px;}
.y176{bottom:637.713600px;}
.y202{bottom:638.542800px;}
.y259{bottom:639.189750px;}
.y219{bottom:639.449850px;}
.y1bb{bottom:640.208850px;}
.y10e{bottom:640.344750px;}
.y199{bottom:641.782050px;}
.y153{bottom:645.941100px;}
.y75{bottom:648.232800px;}
.ybc{bottom:648.914400px;}
.ydf{bottom:652.232100px;}
.y9a{bottom:653.296950px;}
.y52{bottom:653.442450px;}
.y238{bottom:654.655650px;}
.ya{bottom:655.353600px;}
.y2b{bottom:655.722900px;}
.y1de{bottom:656.723100px;}
.y10d{bottom:658.344750px;}
.y258{bottom:658.689750px;}
.y201{bottom:659.530800px;}
.y218{bottom:659.683350px;}
.y1ba{bottom:661.064100px;}
.y152{bottom:666.318600px;}
.y74{bottom:669.435300px;}
.ybb{bottom:670.062900px;}
.yde{bottom:670.232100px;}
.y175{bottom:671.606100px;}
.y99{bottom:674.086950px;}
.y198{bottom:675.244800px;}
.y2a{bottom:676.060650px;}
.y51{bottom:676.096950px;}
.y10c{bottom:676.344750px;}
.y257{bottom:678.189750px;}
.y1dd{bottom:679.130100px;}
.y217{bottom:679.934850px;}
.y200{bottom:680.518800px;}
.y1b9{bottom:681.919350px;}
.y237{bottom:684.569100px;}
.y151{bottom:686.696100px;}
.y9{bottom:687.105600px;}
.y132{bottom:689.994750px;}
.y73{bottom:690.637800px;}
.yba{bottom:691.211400px;}
.y174{bottom:692.660100px;}
.yda{bottom:692.957100px;}
.y10b{bottom:694.344750px;}
.y98{bottom:694.857600px;}
.y197{bottom:695.968800px;}
.y29{bottom:696.398400px;}
.y256{bottom:697.689750px;}
.y50{bottom:698.751450px;}
.y216{bottom:700.186350px;}
.y1ff{bottom:701.506800px;}
.y1dc{bottom:701.537100px;}
.yd9{bottom:701.957100px;}
.y1b8{bottom:702.774600px;}
.y150{bottom:707.081100px;}
.ydb{bottom:710.957100px;}
.y72{bottom:711.840300px;}
.y10a{bottom:712.344750px;}
.yb9{bottom:712.359900px;}
.y131{bottom:712.719750px;}
.y173{bottom:713.714100px;}
.y97{bottom:715.643850px;}
.y196{bottom:716.692800px;}
.y28{bottom:716.736150px;}
.y255{bottom:717.189750px;}
.y8{bottom:718.857600px;}
.y215{bottom:720.437850px;}
.y101{bottom:721.344750px;}
.y4f{bottom:721.405950px;}
.y1fe{bottom:722.494800px;}
.y1b7{bottom:723.629850px;}
.y1db{bottom:723.944100px;}
.y14f{bottom:727.453350px;}
.y109{bottom:730.344750px;}
.y130{bottom:730.719750px;}
.y71{bottom:733.086300px;}
.yb8{bottom:733.508400px;}
.y172{bottom:734.768100px;}
.y96{bottom:736.430100px;}
.y236{bottom:736.528350px;}
.y254{bottom:736.689750px;}
.y27{bottom:737.073900px;}
.y195{bottom:737.416800px;}
.yd8{bottom:740.441550px;}
.y214{bottom:740.689350px;}
.y1fd{bottom:743.482800px;}
.y4e{bottom:744.035850px;}
.y1b6{bottom:744.485100px;}
.y1da{bottom:746.351100px;}
.y14e{bottom:747.825600px;}
.y108{bottom:748.344750px;}
.y12f{bottom:748.719750px;}
.y70{bottom:754.286550px;}
.yb7{bottom:754.656900px;}
.y171{bottom:755.822100px;}
.y253{bottom:756.189750px;}
.y95{bottom:757.216350px;}
.y26{bottom:757.411650px;}
.y235{bottom:757.979850px;}
.y194{bottom:758.140800px;}
.y213{bottom:760.940850px;}
.y1fc{bottom:764.478450px;}
.y1b5{bottom:765.340350px;}
.y107{bottom:766.344750px;}
.y4d{bottom:766.702350px;}
.y12e{bottom:766.719750px;}
.y14d{bottom:768.197850px;}
.y1d9{bottom:768.758100px;}
.y6f{bottom:775.486800px;}
.yb6{bottom:775.805400px;}
.y170{bottom:776.876100px;}
.y25{bottom:777.749400px;}
.y94{bottom:777.983850px;}
.y193{bottom:778.864800px;}
.y234{bottom:779.431350px;}
.y7{bottom:780.407400px;}
.yd7{bottom:781.192350px;}
.y106{bottom:784.344750px;}
.y129{bottom:784.719750px;}
.y1fb{bottom:785.474250px;}
.y1b4{bottom:786.195600px;}
.y252{bottom:788.439750px;}
.y14c{bottom:788.570100px;}
.y4c{bottom:789.368850px;}
.y1d8{bottom:791.165100px;}
.y6e{bottom:796.687050px;}
.yb5{bottom:796.953900px;}
.y16f{bottom:797.930100px;}
.y24{bottom:798.087150px;}
.y93{bottom:798.770100px;}
.y192{bottom:799.588800px;}
.yd6{bottom:801.443850px;}
.y105{bottom:802.344750px;}
.y12d{bottom:802.719750px;}
.y1fa{bottom:806.467500px;}
.y1b3{bottom:807.050850px;}
.y233{bottom:809.387850px;}
.y6{bottom:810.167400px;}
.y4b{bottom:812.035350px;}
.y1d7{bottom:813.572100px;}
.y6d{bottom:817.887300px;}
.yb4{bottom:818.102400px;}
.y23{bottom:818.424900px;}
.y16e{bottom:818.984100px;}
.y92{bottom:819.556350px;}
.y191{bottom:820.304100px;}
.y104{bottom:820.344750px;}
.y12c{bottom:820.719750px;}
.yd5{bottom:821.695350px;}
.y14b{bottom:821.698200px;}
.y1f9{bottom:827.460750px;}
.y232{bottom:830.839350px;}
.y5{bottom:831.422400px;}
.y4a{bottom:834.701850px;}
.y1d6{bottom:835.979100px;}
.y103{bottom:838.344750px;}
.y12b{bottom:838.719750px;}
.y22{bottom:838.762650px;}
.y6c{bottom:839.087550px;}
.yb3{bottom:839.250900px;}
.y16d{bottom:840.038100px;}
.y91{bottom:840.342600px;}
.y1b2{bottom:840.632100px;}
.y190{bottom:841.028100px;}
.yd4{bottom:841.946850px;}
.y14a{bottom:842.070300px;}
.y251{bottom:846.195450px;}
.y231{bottom:852.290850px;}
.y102{bottom:856.344750px;}
.y12a{bottom:856.719750px;}
.y49{bottom:857.368350px;}
.y1d5{bottom:858.386100px;}
.y21{bottom:859.100400px;}
.y6b{bottom:860.294250px;}
.yb2{bottom:860.399400px;}
.y16c{bottom:861.092100px;}
.y90{bottom:861.128850px;}
.y4{bottom:861.182400px;}
.y1f8{bottom:861.224100px;}
.y1b1{bottom:861.488100px;}
.y18f{bottom:861.752100px;}
.yd3{bottom:862.198350px;}
.y149{bottom:862.447800px;}
.y250{bottom:873.201450px;}
.yff{bottom:879.444750px;}
.y48{bottom:880.034850px;}
.y1d4{bottom:880.793100px;}
.y6a{bottom:881.501100px;}
.yb1{bottom:881.552850px;}
.y8f{bottom:881.915100px;}
.y16b{bottom:882.146100px;}
.y1f7{bottom:882.212100px;}
.y230{bottom:882.247350px;}
.y1b0{bottom:882.344100px;}
.y3{bottom:882.437400px;}
.yd2{bottom:882.449850px;}
.y18e{bottom:882.476100px;}
.y148{bottom:882.822600px;}
.yfe{bottom:888.444750px;}
.y100{bottom:897.444750px;}
.y24f{bottom:900.207450px;}
.y20{bottom:900.706200px;}
.y47{bottom:902.701350px;}
.y147{bottom:903.200100px;}
.y2{bottom:903.698850px;}
.y1f{bottom:948.189000px;}
.hd{height:37.983820px;}
.h7{height:44.414062px;}
.h19{height:46.116211px;}
.h15{height:49.189453px;}
.h13{height:49.658203px;}
.h1a{height:49.939453px;}
.he{height:49.965820px;}
.h12{height:53.173828px;}
.h20{height:55.488281px;}
.h4{height:55.517578px;}
.h18{height:56.364258px;}
.h1c{height:58.262695px;}
.h3{height:58.293457px;}
.h1d{height:58.295695px;}
.h1e{height:58.338457px;}
.h1f{height:58.393495px;}
.h17{height:61.037109px;}
.ha{height:61.069336px;}
.h10{height:63.825415px;}
.h9{height:63.845215px;}
.h16{height:63.855415px;}
.hc{height:63.863215px;}
.hb{height:63.863815px;}
.h1b{height:63.917215px;}
.hf{height:63.920215px;}
.h2{height:69.396973px;}
.h8{height:74.948730px;}
.h6{height:77.724609px;}
.h14{height:87.240234px;}
.h11{height:89.173828px;}
.h5{height:99.931641px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xe{left:82.482150px;}
.x7{left:83.775600px;}
.x1{left:85.039350px;}
.x13{left:93.697200px;}
.xf{left:95.512200px;}
.xd{left:97.129800px;}
.x8{left:105.029250px;}
.x6{left:106.050600px;}
.x2c{left:107.271300px;}
.xa{left:125.130150px;}
.xc{left:126.631800px;}
.xb{left:127.654650px;}
.x9{left:212.664000px;}
.x28{left:227.988150px;}
.x4{left:230.002050px;}
.x3{left:231.892050px;}
.x2{left:233.415450px;}
.x5{left:234.469800px;}
.x14{left:235.537200px;}
.x27{left:237.198150px;}
.x1a{left:238.567200px;}
.x16{left:240.277200px;}
.x1b{left:242.872200px;}
.x17{left:244.057200px;}
.x18{left:246.112200px;}
.x15{left:249.487200px;}
.x19{left:251.452200px;}
.x23{left:366.243150px;}
.x24{left:380.418150px;}
.x10{left:383.602200px;}
.x22{left:397.087200px;}
.x1d{left:401.602200px;}
.x21{left:402.727200px;}
.x1c{left:406.297200px;}
.x11{left:484.477200px;}
.x25{left:489.273150px;}
.x12{left:527.977200px;}
.x26{left:532.773150px;}
.x20{left:543.952200px;}
.x1f{left:545.977200px;}
.x1e{left:547.747200px;}
.x2a{left:550.983150px;}
.x2b{left:552.513150px;}
.x29{left:556.008150px;}
@media print{
.v2{vertical-align:-15.090667pt;}
.v3{vertical-align:-10.650667pt;}
.v4{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.006933pt;}
.v1{vertical-align:15.090667pt;}
.v5{vertical-align:32.000000pt;}
.ls2f{letter-spacing:-6.552000pt;}
.ls6{letter-spacing:-5.568000pt;}
.ls28{letter-spacing:-5.472000pt;}
.ls20{letter-spacing:-5.152000pt;}
.ls2d{letter-spacing:-3.312000pt;}
.ls5a{letter-spacing:-2.821333pt;}
.ls12{letter-spacing:-2.760000pt;}
.ls1d{letter-spacing:-2.757333pt;}
.ls13{letter-spacing:-2.453333pt;}
.ls3f{letter-spacing:-2.346667pt;}
.ls53{letter-spacing:-2.288000pt;}
.lsa{letter-spacing:-2.240000pt;}
.lsc{letter-spacing:-2.133333pt;}
.ls3d{letter-spacing:-1.936000pt;}
.ls8{letter-spacing:-1.920000pt;}
.ls4c{letter-spacing:-1.533333pt;}
.ls26{letter-spacing:-1.349333pt;}
.ls3e{letter-spacing:-1.290667pt;}
.ls54{letter-spacing:-1.232000pt;}
.ls1a{letter-spacing:-1.173333pt;}
.ls40{letter-spacing:-1.056000pt;}
.ls22{letter-spacing:-1.042667pt;}
.ls34{letter-spacing:-0.938667pt;}
.ls9{letter-spacing:-0.896000pt;}
.ls11{letter-spacing:-0.760000pt;}
.ls18{letter-spacing:-0.746667pt;}
.ls23{letter-spacing:-0.674667pt;}
.ls2c{letter-spacing:-0.557333pt;}
.ls1e{letter-spacing:-0.528000pt;}
.ls55{letter-spacing:-0.490667pt;}
.ls59{letter-spacing:-0.368000pt;}
.ls48{letter-spacing:-0.352000pt;}
.ls27{letter-spacing:-0.306667pt;}
.ls56{letter-spacing:-0.293333pt;}
.ls19{letter-spacing:-0.266667pt;}
.ls1b{letter-spacing:-0.240000pt;}
.ls2{letter-spacing:-0.224000pt;}
.ls5b{letter-spacing:-0.214544pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls57{letter-spacing:-0.152000pt;}
.ls3c{letter-spacing:-0.117333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000267pt;}
.ls5d{letter-spacing:0.021867pt;}
.ls33{letter-spacing:0.117333pt;}
.ls2e{letter-spacing:0.144000pt;}
.ls4a{letter-spacing:0.187733pt;}
.ls45{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.613333pt;}
.ls2b{letter-spacing:0.645333pt;}
.ls2a{letter-spacing:0.651200pt;}
.ls4b{letter-spacing:1.020800pt;}
.ls31{letter-spacing:1.200000pt;}
.ls49{letter-spacing:1.325867pt;}
.ls3b{letter-spacing:1.537067pt;}
.ls30{letter-spacing:1.795200pt;}
.ls60{letter-spacing:1.960000pt;}
.ls7{letter-spacing:2.016000pt;}
.lse{letter-spacing:2.133333pt;}
.ls4f{letter-spacing:2.334933pt;}
.ls52{letter-spacing:2.581333pt;}
.ls51{letter-spacing:2.587200pt;}
.ls21{letter-spacing:3.033067pt;}
.ls3a{letter-spacing:3.085867pt;}
.ls4e{letter-spacing:3.250133pt;}
.ls38{letter-spacing:3.549333pt;}
.ls37{letter-spacing:3.572800pt;}
.ls39{letter-spacing:3.578667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls41{letter-spacing:4.552533pt;}
.ls35{letter-spacing:4.587733pt;}
.lsf{letter-spacing:4.733333pt;}
.lsb{letter-spacing:5.120000pt;}
.lsd{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.ls4d{letter-spacing:5.573333pt;}
.ls10{letter-spacing:5.600000pt;}
.ls1c{letter-spacing:5.666667pt;}
.ls29{letter-spacing:6.066667pt;}
.ls50{letter-spacing:6.412267pt;}
.ls62{letter-spacing:6.466667pt;}
.ls47{letter-spacing:7.200000pt;}
.ls24{letter-spacing:7.253472pt;}
.ls46{letter-spacing:7.254005pt;}
.ls5c{letter-spacing:7.392000pt;}
.ls4{letter-spacing:7.466667pt;}
.ls32{letter-spacing:7.533333pt;}
.ls36{letter-spacing:7.568000pt;}
.ls42{letter-spacing:7.603200pt;}
.ls61{letter-spacing:7.840000pt;}
.ls25{letter-spacing:7.933333pt;}
.ls15{letter-spacing:8.072533pt;}
.ls58{letter-spacing:8.133333pt;}
.ls44{letter-spacing:8.735467pt;}
.ls43{letter-spacing:8.741333pt;}
.ls17{letter-spacing:8.905600pt;}
.ls14{letter-spacing:10.635200pt;}
.ls5e{letter-spacing:11.648000pt;}
.ls5f{letter-spacing:24.018400pt;}
.ws39{word-spacing:-38.293333pt;}
.ws67{word-spacing:-26.866667pt;}
.ws30{word-spacing:-26.666667pt;}
.ws4c{word-spacing:-26.266667pt;}
.ws58{word-spacing:-25.933333pt;}
.ws72{word-spacing:-25.200000pt;}
.ws1{word-spacing:-25.056000pt;}
.ws3c{word-spacing:-24.800000pt;}
.ws24{word-spacing:-24.400000pt;}
.ws6f{word-spacing:-23.576000pt;}
.ws11{word-spacing:-23.466667pt;}
.ws6b{word-spacing:-23.128000pt;}
.ws74{word-spacing:-20.320000pt;}
.ws45{word-spacing:-20.232000pt;}
.ws7{word-spacing:-20.213333pt;}
.ws4{word-spacing:-20.106667pt;}
.ws3{word-spacing:-18.741333pt;}
.ws0{word-spacing:-18.144000pt;}
.ws46{word-spacing:-17.928000pt;}
.ws2{word-spacing:-17.546667pt;}
.ws14{word-spacing:-17.234667pt;}
.ws4d{word-spacing:-16.602667pt;}
.ws1b{word-spacing:-16.485333pt;}
.ws51{word-spacing:-16.368000pt;}
.ws73{word-spacing:-16.202667pt;}
.ws5e{word-spacing:-16.192000pt;}
.ws59{word-spacing:-16.133333pt;}
.ws12{word-spacing:-16.090667pt;}
.ws26{word-spacing:-15.957333pt;}
.ws6c{word-spacing:-15.736000pt;}
.ws1c{word-spacing:-15.312000pt;}
.ws13{word-spacing:-15.149333pt;}
.ws38{word-spacing:-14.986667pt;}
.ws32{word-spacing:-14.842667pt;}
.ws68{word-spacing:-14.781333pt;}
.ws25{word-spacing:-14.490667pt;}
.ws2d{word-spacing:-14.474667pt;}
.ws42{word-spacing:-14.400000pt;}
.ws2c{word-spacing:-14.106667pt;}
.ws70{word-spacing:-13.832000pt;}
.ws3a{word-spacing:-13.813333pt;}
.ws31{word-spacing:-13.800000pt;}
.ws47{word-spacing:-13.680000pt;}
.ws4f{word-spacing:-13.552000pt;}
.ws33{word-spacing:-13.488000pt;}
.ws5d{word-spacing:-13.258667pt;}
.ws53{word-spacing:-13.200000pt;}
.ws5{word-spacing:-13.173333pt;}
.ws15{word-spacing:-12.696000pt;}
.ws52{word-spacing:-12.554667pt;}
.ws1a{word-spacing:-12.426667pt;}
.ws69{word-spacing:-12.328000pt;}
.ws54{word-spacing:-12.144000pt;}
.ws1e{word-spacing:-11.856000pt;}
.ws20{word-spacing:-11.616000pt;}
.ws6{word-spacing:-11.040000pt;}
.ws1d{word-spacing:-10.047811pt;}
.ws1f{word-spacing:-9.936000pt;}
.ws6a{word-spacing:-9.833267pt;}
.ws4e{word-spacing:-9.610949pt;}
.ws34{word-spacing:-7.863504pt;}
.wsb{word-spacing:-7.466667pt;}
.ws71{word-spacing:-5.600000pt;}
.wsa{word-spacing:-5.333333pt;}
.wse{word-spacing:-3.733333pt;}
.ws16{word-spacing:-2.133333pt;}
.wsd{word-spacing:-2.016000pt;}
.ws2f{word-spacing:-1.778667pt;}
.ws5a{word-spacing:-1.701333pt;}
.ws50{word-spacing:-1.200000pt;}
.ws62{word-spacing:-1.056000pt;}
.ws29{word-spacing:-0.880000pt;}
.ws2a{word-spacing:-0.613333pt;}
.ws8{word-spacing:0.000000pt;}
.ws64{word-spacing:0.152000pt;}
.wsc{word-spacing:0.213333pt;}
.ws9{word-spacing:0.224000pt;}
.ws21{word-spacing:0.266667pt;}
.ws6e{word-spacing:0.368000pt;}
.ws61{word-spacing:0.490667pt;}
.ws49{word-spacing:0.557333pt;}
.ws17{word-spacing:0.760000pt;}
.ws63{word-spacing:0.938667pt;}
.ws6d{word-spacing:0.981333pt;}
.ws57{word-spacing:1.056000pt;}
.ws5f{word-spacing:1.290667pt;}
.ws5c{word-spacing:1.533333pt;}
.ws66{word-spacing:1.584000pt;}
.ws60{word-spacing:2.288000pt;}
.ws27{word-spacing:2.330667pt;}
.ws28{word-spacing:2.757333pt;}
.ws18{word-spacing:2.760000pt;}
.ws4a{word-spacing:3.312000pt;}
.wsf{word-spacing:3.360000pt;}
.ws3b{word-spacing:3.496000pt;}
.ws65{word-spacing:4.416000pt;}
.ws2b{word-spacing:5.152000pt;}
.ws10{word-spacing:5.173333pt;}
.ws22{word-spacing:5.232000pt;}
.ws4b{word-spacing:5.397333pt;}
.ws36{word-spacing:5.472000pt;}
.ws35{word-spacing:6.746667pt;}
.ws55{word-spacing:7.605333pt;}
.ws5b{word-spacing:7.626667pt;}
.ws48{word-spacing:7.728000pt;}
.ws2e{word-spacing:7.789333pt;}
.ws56{word-spacing:9.016000pt;}
.ws23{word-spacing:15.024000pt;}
.ws19{word-spacing:19.136000pt;}
.ws37{word-spacing:72.080000pt;}
.ws41{word-spacing:87.013333pt;}
.ws3d{word-spacing:364.144000pt;}
.ws40{word-spacing:420.746667pt;}
.ws3e{word-spacing:471.680000pt;}
.ws44{word-spacing:474.186667pt;}
.ws3f{word-spacing:896.410667pt;}
.ws43{word-spacing:897.317333pt;}
._20{margin-left:-16.460267pt;}
._2a{margin-left:-12.614933pt;}
._c{margin-left:-11.557333pt;}
._d{margin-left:-9.014400pt;}
._29{margin-left:-6.892533pt;}
._b{margin-left:-5.658933pt;}
._4{margin-left:-4.149600pt;}
._8{margin-left:-2.530400pt;}
._3{margin-left:-1.634933pt;}
._5{width:1.159467pt;}
._1{width:2.133333pt;}
._e{width:3.389067pt;}
._7{width:4.540000pt;}
._6{width:5.566933pt;}
._9{width:6.997067pt;}
._a{width:8.149867pt;}
._11{width:9.304000pt;}
._16{width:10.537333pt;}
._2b{width:11.440000pt;}
._18{width:12.479467pt;}
._19{width:14.021333pt;}
._1b{width:14.936368pt;}
._10{width:16.496533pt;}
._2c{width:17.728800pt;}
._15{width:18.859467pt;}
._1e{width:20.129600pt;}
._14{width:21.976000pt;}
._2f{width:23.470347pt;}
._24{width:24.625920pt;}
._30{width:28.015840pt;}
._22{width:28.927200pt;}
._21{width:29.828800pt;}
._2e{width:32.726400pt;}
._23{width:34.464267pt;}
._2d{width:37.340800pt;}
._1a{width:38.617920pt;}
._f{width:76.048000pt;}
._26{width:153.227467pt;}
._12{width:231.653333pt;}
._28{width:242.001067pt;}
._1f{width:433.954933pt;}
._27{width:436.059733pt;}
._31{width:436.993067pt;}
._1c{width:441.040533pt;}
._13{width:442.873600pt;}
._0{width:514.133333pt;}
._1d{width:882.854400pt;}
._2{width:885.627733pt;}
._17{width:889.227733pt;}
._25{width:890.987733pt;}
.fsc{font-size:27.984000pt;}
.fse{font-size:34.202667pt;}
.fsb{font-size:35.757333pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y22f{bottom:93.914267pt;}
.y24e{bottom:94.449200pt;}
.y1f6{bottom:94.457733pt;}
.y1af{bottom:94.482933pt;}
.y146{bottom:94.483067pt;}
.y8e{bottom:94.485600pt;}
.y69{bottom:94.485733pt;}
.y1e{bottom:94.488133pt;}
.yfd{bottom:94.547867pt;}
.y46{bottom:94.758800pt;}
.yd1{bottom:97.150933pt;}
.y127{bottom:105.705067pt;}
.y1ae{bottom:109.818933pt;}
.y145{bottom:109.819067pt;}
.y8d{bottom:112.484267pt;}
.y68{bottom:112.484400pt;}
.y45{bottom:112.836800pt;}
.y1d3{bottom:112.958800pt;}
.y1d{bottom:113.416400pt;}
.y24d{bottom:113.517200pt;}
.yd0{bottom:113.598400pt;}
.y1f5{bottom:114.375067pt;}
.y126{bottom:121.705067pt;}
.y1ad{bottom:127.817600pt;}
.y144{bottom:127.817733pt;}
.y8c{bottom:128.929067pt;}
.y67{bottom:128.929333pt;}
.y16a{bottom:128.931733pt;}
.y44{bottom:130.914800pt;}
.y1c{bottom:130.976400pt;}
.y1d2{bottom:131.496800pt;}
.ycf{bottom:131.597067pt;}
.y24c{bottom:132.585200pt;}
.y22e{bottom:132.985867pt;}
.y1f4{bottom:134.292400pt;}
.y18d{bottom:136.302800pt;}
.y123{bottom:137.705067pt;}
.yfc{bottom:139.361867pt;}
.y8b{bottom:144.265067pt;}
.y66{bottom:144.265333pt;}
.y128{bottom:145.705067pt;}
.y169{bottom:146.930400pt;}
.y143{bottom:146.930667pt;}
.y1b{bottom:148.536400pt;}
.y43{bottom:148.992800pt;}
.y1d1{bottom:150.034800pt;}
.y22d{bottom:150.989867pt;}
.yb0{bottom:151.581067pt;}
.y122{bottom:153.705067pt;}
.y1f3{bottom:154.209733pt;}
.y18c{bottom:155.017467pt;}
.yfb{bottom:155.361867pt;}
.y24b{bottom:159.213200pt;}
.y8a{bottom:162.263733pt;}
.y65{bottom:162.264000pt;}
.y168{bottom:163.378000pt;}
.y1a{bottom:166.096400pt;}
.y42{bottom:167.070800pt;}
.y1d0{bottom:168.572800pt;}
.y22c{bottom:168.993867pt;}
.y125{bottom:169.705067pt;}
.yaf{bottom:170.061067pt;}
.yce{bottom:170.733200pt;}
.yfa{bottom:171.361867pt;}
.y18b{bottom:173.732133pt;}
.y1f2{bottom:174.127067pt;}
.y24a{bottom:178.281200pt;}
.y89{bottom:178.708667pt;}
.y64{bottom:178.711733pt;}
.yf6{bottom:179.361867pt;}
.y167{bottom:181.376667pt;}
.y19{bottom:183.656400pt;}
.y41{bottom:185.148800pt;}
.y124{bottom:185.705067pt;}
.y142{bottom:186.054667pt;}
.y22b{bottom:186.997867pt;}
.y1cf{bottom:187.110800pt;}
.yf9{bottom:187.361867pt;}
.y26d{bottom:187.942000pt;}
.yae{bottom:188.541067pt;}
.ycd{bottom:189.531867pt;}
.y18a{bottom:192.446800pt;}
.y1f1{bottom:194.044400pt;}
.y88{bottom:194.044667pt;}
.y63{bottom:196.710400pt;}
.y166{bottom:197.824133pt;}
.y18{bottom:201.216400pt;}
.y212{bottom:201.397733pt;}
.y40{bottom:203.226800pt;}
.yf8{bottom:203.361867pt;}
.y249{bottom:204.909200pt;}
.y1ce{bottom:205.648800pt;}
.y120{bottom:205.905067pt;}
.y26c{bottom:205.942000pt;}
.y141{bottom:206.646667pt;}
.yad{bottom:207.021067pt;}
.ycc{bottom:208.330533pt;}
.y189{bottom:211.210400pt;}
.y87{bottom:212.043333pt;}
.y22a{bottom:212.561867pt;}
.y1f0{bottom:213.961733pt;}
.y165{bottom:215.822800pt;}
.yf7{bottom:219.361867pt;}
.y211{bottom:220.058400pt;}
.y1ac{bottom:220.484800pt;}
.y3f{bottom:221.304800pt;}
.y11e{bottom:221.905067pt;}
.y26b{bottom:223.942000pt;}
.y248{bottom:223.977200pt;}
.y1cd{bottom:224.186800pt;}
.yac{bottom:225.501067pt;}
.y140{bottom:227.238667pt;}
.y86{bottom:228.488133pt;}
.y121{bottom:229.905067pt;}
.y188{bottom:229.925067pt;}
.y17{bottom:230.123067pt;}
.y229{bottom:230.565867pt;}
.y1ef{bottom:233.879067pt;}
.y62{bottom:235.821467pt;}
.y11d{bottom:237.905067pt;}
.y210{bottom:238.719067pt;}
.y1ab{bottom:238.906133pt;}
.y3e{bottom:239.382800pt;}
.yf5{bottom:239.561867pt;}
.y26a{bottom:241.942000pt;}
.y1cc{bottom:242.724800pt;}
.y85{bottom:243.824133pt;}
.yab{bottom:243.981067pt;}
.ycb{bottom:246.031200pt;}
.y13f{bottom:247.817467pt;}
.y228{bottom:248.569867pt;}
.y187{bottom:248.639733pt;}
.y247{bottom:250.605200pt;}
.y1ee{bottom:253.796400pt;}
.y11f{bottom:253.905067pt;}
.y164{bottom:254.938267pt;}
.yf4{bottom:255.561867pt;}
.y61{bottom:255.969467pt;}
.y1aa{bottom:257.327467pt;}
.y20f{bottom:257.379733pt;}
.y3d{bottom:257.460800pt;}
.y1cb{bottom:261.262800pt;}
.y84{bottom:261.822800pt;}
.yaa{bottom:262.441067pt;}
.yf0{bottom:263.561867pt;}
.y186{bottom:267.354400pt;}
.y13e{bottom:268.410133pt;}
.y246{bottom:269.673200pt;}
.y269{bottom:271.275333pt;}
.yf3{bottom:271.561867pt;}
.y163{bottom:273.051600pt;}
.y1ed{bottom:273.713733pt;}
.y11b{bottom:274.105067pt;}
.y227{bottom:274.133867pt;}
.y16{bottom:274.149733pt;}
.y3c{bottom:275.538800pt;}
.y1a9{bottom:275.748800pt;}
.y20e{bottom:276.040400pt;}
.y60{bottom:276.117467pt;}
.yef{bottom:279.561867pt;}
.y1ca{bottom:279.800800pt;}
.ya9{bottom:280.917733pt;}
.y11a{bottom:282.105067pt;}
.y185{bottom:286.069067pt;}
.yf2{bottom:287.561867pt;}
.y13d{bottom:289.002800pt;}
.y11c{bottom:290.105067pt;}
.y162{bottom:291.164933pt;}
.y226{bottom:292.137867pt;}
.y15{bottom:293.043067pt;}
.y3b{bottom:293.616800pt;}
.y1ec{bottom:293.631067pt;}
.y1a8{bottom:294.170133pt;}
.y20d{bottom:294.701067pt;}
.y5f{bottom:296.265467pt;}
.y245{bottom:296.286667pt;}
.y1c9{bottom:298.338800pt;}
.ya8{bottom:299.394400pt;}
.y83{bottom:301.002533pt;}
.yca{bottom:302.196533pt;}
.yf1{bottom:303.561867pt;}
.y184{bottom:304.783733pt;}
.y268{bottom:308.168667pt;}
.y161{bottom:309.278267pt;}
.y13c{bottom:309.595467pt;}
.y3a{bottom:311.694800pt;}
.y14{bottom:311.963467pt;}
.y1a7{bottom:312.591467pt;}
.y20c{bottom:313.361733pt;}
.y1eb{bottom:313.548400pt;}
.y244{bottom:315.354667pt;}
.y119{bottom:316.313467pt;}
.y5e{bottom:316.409467pt;}
.y225{bottom:317.701867pt;}
.ya7{bottom:317.871067pt;}
.y82{bottom:319.847200pt;}
.yc9{bottom:320.995200pt;}
.y183{bottom:323.498400pt;}
.yed{bottom:323.761867pt;}
.y267{bottom:325.502000pt;}
.y160{bottom:327.391600pt;}
.y1c8{bottom:328.127733pt;}
.y13{bottom:329.523467pt;}
.y39{bottom:329.772800pt;}
.y13b{bottom:330.188133pt;}
.y1a6{bottom:331.012800pt;}
.y1ea{bottom:333.465733pt;}
.y243{bottom:334.393600pt;}
.y224{bottom:335.705867pt;}
.ya6{bottom:336.347733pt;}
.y5d{bottom:336.553333pt;}
.y81{bottom:338.691867pt;}
.yec{bottom:339.761867pt;}
.yc8{bottom:339.793867pt;}
.y182{bottom:342.213067pt;}
.y266{bottom:342.835333pt;}
.y15f{bottom:345.504933pt;}
.y1c7{bottom:346.666400pt;}
.y12{bottom:347.083467pt;}
.y38{bottom:347.850800pt;}
.y1a5{bottom:349.434133pt;}
.y13a{bottom:350.780800pt;}
.y20b{bottom:350.921200pt;}
.y118{bottom:352.539067pt;}
.y1e9{bottom:353.367733pt;}
.y223{bottom:353.709867pt;}
.ya5{bottom:354.824400pt;}
.yeb{bottom:355.761867pt;}
.y5c{bottom:356.701333pt;}
.y80{bottom:357.536533pt;}
.yc7{bottom:358.596933pt;}
.y265{bottom:360.168667pt;}
.y181{bottom:360.927733pt;}
.y242{bottom:361.021600pt;}
.y15e{bottom:363.624933pt;}
.y11{bottom:364.643467pt;}
.y1c6{bottom:365.205067pt;}
.y37{bottom:365.928800pt;}
.y1a4{bottom:367.855467pt;}
.y117{bottom:370.540400pt;}
.y222{bottom:371.713867pt;}
.yea{bottom:371.761867pt;}
.y1e8{bottom:373.285733pt;}
.y7f{bottom:376.381200pt;}
.yc6{bottom:377.395600pt;}
.y264{bottom:377.502000pt;}
.y180{bottom:379.636533pt;}
.y241{bottom:380.089600pt;}
.y15d{bottom:381.733600pt;}
.y10{bottom:382.203467pt;}
.y1c5{bottom:383.743733pt;}
.y36{bottom:384.006800pt;}
.ya4{bottom:384.630800pt;}
.y1a3{bottom:386.276800pt;}
.ye9{bottom:387.761867pt;}
.y5b{bottom:388.197067pt;}
.y116{bottom:388.541733pt;}
.y139{bottom:390.270400pt;}
.y1e7{bottom:393.203733pt;}
.y263{bottom:394.835333pt;}
.y7e{bottom:395.225867pt;}
.y221{bottom:397.277867pt;}
.y17f{bottom:398.358533pt;}
.y240{bottom:399.157600pt;}
.y15c{bottom:399.842267pt;}
.y35{bottom:402.084800pt;}
.y1c4{bottom:402.282400pt;}
.ya3{bottom:403.110800pt;}
.ye8{bottom:403.761867pt;}
.y1a2{bottom:404.698133pt;}
.y115{bottom:406.543067pt;}
.yc5{bottom:407.538267pt;}
.y5a{bottom:408.334400pt;}
.yf{bottom:411.110133pt;}
.y262{bottom:412.168667pt;}
.y1e6{bottom:413.121733pt;}
.y7d{bottom:414.070533pt;}
.y138{bottom:414.192400pt;}
.y17e{bottom:417.080533pt;}
.y15b{bottom:417.950933pt;}
.y20a{bottom:418.345600pt;}
.ye7{bottom:419.761867pt;}
.y34{bottom:420.162800pt;}
.y1c3{bottom:420.821067pt;}
.ya2{bottom:421.581867pt;}
.y1a1{bottom:423.125733pt;}
.y114{bottom:424.544400pt;}
.y23f{bottom:425.785600pt;}
.yc4{bottom:426.340933pt;}
.y59{bottom:428.471733pt;}
.y261{bottom:429.502000pt;}
.y7c{bottom:432.915200pt;}
.y1e5{bottom:433.039733pt;}
.ye6{bottom:435.761867pt;}
.y17d{bottom:435.802533pt;}
.y15a{bottom:436.059600pt;}
.y209{bottom:437.001600pt;}
.y33{bottom:438.240800pt;}
.y1c2{bottom:439.359733pt;}
.ya1{bottom:440.058533pt;}
.y1a0{bottom:441.541067pt;}
.y220{bottom:442.390533pt;}
.y23e{bottom:444.853600pt;}
.yc3{bottom:445.143600pt;}
.y260{bottom:446.835333pt;}
.y58{bottom:448.607600pt;}
.y7b{bottom:451.759867pt;}
.ydd{bottom:451.761867pt;}
.y17c{bottom:454.524533pt;}
.y208{bottom:455.657600pt;}
.y32{bottom:456.318800pt;}
.y1c1{bottom:457.898400pt;}
.yee{bottom:459.761867pt;}
.y19f{bottom:459.980933pt;}
.y21f{bottom:460.391867pt;}
.ye{bottom:462.698133pt;}
.y23d{bottom:463.911600pt;}
.yc2{bottom:463.946267pt;}
.y25f{bottom:464.168667pt;}
.y1e4{bottom:464.249867pt;}
.y159{bottom:465.489867pt;}
.ydc{bottom:467.761867pt;}
.y57{bottom:468.755600pt;}
.ya0{bottom:469.828400pt;}
.y7a{bottom:470.610267pt;}
.y137{bottom:472.124800pt;}
.y17b{bottom:473.246533pt;}
.y207{bottom:474.313600pt;}
.y31{bottom:474.396800pt;}
.y1c0{bottom:476.437067pt;}
.y21e{bottom:478.393200pt;}
.y19e{bottom:478.396267pt;}
.y113{bottom:480.795333pt;}
.y25e{bottom:481.502000pt;}
.yc1{bottom:482.819467pt;}
.y158{bottom:483.603200pt;}
.ye5{bottom:483.761867pt;}
.y1e3{bottom:484.167200pt;}
.yd{bottom:486.927467pt;}
.y9f{bottom:488.308400pt;}
.y56{bottom:488.903600pt;}
.y79{bottom:489.454933pt;}
.y23c{bottom:490.539600pt;}
.y17a{bottom:491.968533pt;}
.y30{bottom:492.474800pt;}
.y136{bottom:492.717467pt;}
.y206{bottom:492.969600pt;}
.y1bf{bottom:494.975733pt;}
.y21d{bottom:496.394533pt;}
.y19d{bottom:496.811600pt;}
.y25d{bottom:498.835333pt;}
.ye4{bottom:499.761867pt;}
.y112{bottom:500.995333pt;}
.yc0{bottom:501.618133pt;}
.y157{bottom:501.716533pt;}
.y1e2{bottom:504.084533pt;}
.y9e{bottom:506.788400pt;}
.y23b{bottom:509.607600pt;}
.y2f{bottom:510.552800pt;}
.y179{bottom:510.690533pt;}
.yc{bottom:511.156800pt;}
.y205{bottom:511.625600pt;}
.y135{bottom:513.310133pt;}
.y1be{bottom:513.514400pt;}
.y21c{bottom:514.395867pt;}
.y19c{bottom:515.226933pt;}
.ye3{bottom:515.761867pt;}
.y25c{bottom:516.168667pt;}
.y78{bottom:519.666933pt;}
.y156{bottom:519.829867pt;}
.ybf{bottom:520.416800pt;}
.y55{bottom:520.425733pt;}
.y111{bottom:521.195333pt;}
.y1e1{bottom:524.001867pt;}
.y9d{bottom:525.268400pt;}
.y2e{bottom:528.630800pt;}
.y178{bottom:529.412533pt;}
.y204{bottom:530.281600pt;}
.ye2{bottom:531.761867pt;}
.y1bd{bottom:532.053067pt;}
.y21b{bottom:532.397200pt;}
.y25b{bottom:533.502000pt;}
.y19b{bottom:533.642267pt;}
.y134{bottom:533.900533pt;}
.y23a{bottom:536.222800pt;}
.y110{bottom:537.195333pt;}
.y155{bottom:537.943200pt;}
.y77{bottom:538.513600pt;}
.ybe{bottom:539.215467pt;}
.y54{bottom:540.563067pt;}
.y9c{bottom:543.748400pt;}
.y1e0{bottom:543.919200pt;}
.y2d{bottom:546.708800pt;}
.ye1{bottom:547.761867pt;}
.y177{bottom:548.134533pt;}
.y203{bottom:548.937600pt;}
.y21a{bottom:550.398533pt;}
.y1bc{bottom:550.591733pt;}
.y25a{bottom:550.835333pt;}
.y19a{bottom:552.057600pt;}
.y10f{bottom:553.195333pt;}
.yb{bottom:554.312533pt;}
.y133{bottom:554.493200pt;}
.y239{bottom:555.289467pt;}
.y154{bottom:556.056533pt;}
.y76{bottom:557.360267pt;}
.ybd{bottom:558.014133pt;}
.y53{bottom:560.700400pt;}
.y9b{bottom:562.228400pt;}
.ye0{bottom:563.761867pt;}
.y1df{bottom:563.836533pt;}
.y2c{bottom:564.786800pt;}
.y176{bottom:566.856533pt;}
.y202{bottom:567.593600pt;}
.y259{bottom:568.168667pt;}
.y219{bottom:568.399867pt;}
.y1bb{bottom:569.074533pt;}
.y10e{bottom:569.195333pt;}
.y199{bottom:570.472933pt;}
.y153{bottom:574.169867pt;}
.y75{bottom:576.206933pt;}
.ybc{bottom:576.812800pt;}
.ydf{bottom:579.761867pt;}
.y9a{bottom:580.708400pt;}
.y52{bottom:580.837733pt;}
.y238{bottom:581.916133pt;}
.ya{bottom:582.536533pt;}
.y2b{bottom:582.864800pt;}
.y1de{bottom:583.753867pt;}
.y10d{bottom:585.195333pt;}
.y258{bottom:585.502000pt;}
.y201{bottom:586.249600pt;}
.y218{bottom:586.385200pt;}
.y1ba{bottom:587.612533pt;}
.y152{bottom:592.283200pt;}
.y74{bottom:595.053600pt;}
.ybb{bottom:595.611467pt;}
.yde{bottom:595.761867pt;}
.y175{bottom:596.983200pt;}
.y99{bottom:599.188400pt;}
.y198{bottom:600.217600pt;}
.y2a{bottom:600.942800pt;}
.y51{bottom:600.975067pt;}
.y10c{bottom:601.195333pt;}
.y257{bottom:602.835333pt;}
.y1dd{bottom:603.671200pt;}
.y217{bottom:604.386533pt;}
.y200{bottom:604.905600pt;}
.y1b9{bottom:606.150533pt;}
.y237{bottom:608.505867pt;}
.y151{bottom:610.396533pt;}
.y9{bottom:610.760533pt;}
.y132{bottom:613.328667pt;}
.y73{bottom:613.900267pt;}
.yba{bottom:614.410133pt;}
.y174{bottom:615.697867pt;}
.yda{bottom:615.961867pt;}
.y10b{bottom:617.195333pt;}
.y98{bottom:617.651200pt;}
.y197{bottom:618.638933pt;}
.y29{bottom:619.020800pt;}
.y256{bottom:620.168667pt;}
.y50{bottom:621.112400pt;}
.y216{bottom:622.387867pt;}
.y1ff{bottom:623.561600pt;}
.y1dc{bottom:623.588533pt;}
.yd9{bottom:623.961867pt;}
.y1b8{bottom:624.688533pt;}
.y150{bottom:628.516533pt;}
.ydb{bottom:631.961867pt;}
.y72{bottom:632.746933pt;}
.y10a{bottom:633.195333pt;}
.yb9{bottom:633.208800pt;}
.y131{bottom:633.528667pt;}
.y173{bottom:634.412533pt;}
.y97{bottom:636.127867pt;}
.y196{bottom:637.060267pt;}
.y28{bottom:637.098800pt;}
.y255{bottom:637.502000pt;}
.y8{bottom:638.984533pt;}
.y215{bottom:640.389200pt;}
.y101{bottom:641.195333pt;}
.y4f{bottom:641.249733pt;}
.y1fe{bottom:642.217600pt;}
.y1b7{bottom:643.226533pt;}
.y1db{bottom:643.505867pt;}
.y14f{bottom:646.625200pt;}
.y109{bottom:649.195333pt;}
.y130{bottom:649.528667pt;}
.y71{bottom:651.632267pt;}
.yb8{bottom:652.007467pt;}
.y172{bottom:653.127200pt;}
.y96{bottom:654.604533pt;}
.y236{bottom:654.691867pt;}
.y254{bottom:654.835333pt;}
.y27{bottom:655.176800pt;}
.y195{bottom:655.481600pt;}
.yd8{bottom:658.170267pt;}
.y214{bottom:658.390533pt;}
.y1fd{bottom:660.873600pt;}
.y4e{bottom:661.365200pt;}
.y1b6{bottom:661.764533pt;}
.y1da{bottom:663.423200pt;}
.y14e{bottom:664.733867pt;}
.y108{bottom:665.195333pt;}
.y12f{bottom:665.528667pt;}
.y70{bottom:670.476933pt;}
.yb7{bottom:670.806133pt;}
.y171{bottom:671.841867pt;}
.y253{bottom:672.168667pt;}
.y95{bottom:673.081200pt;}
.y26{bottom:673.254800pt;}
.y235{bottom:673.759867pt;}
.y194{bottom:673.902933pt;}
.y213{bottom:676.391867pt;}
.y1fc{bottom:679.536400pt;}
.y1b5{bottom:680.302533pt;}
.y107{bottom:681.195333pt;}
.y4d{bottom:681.513200pt;}
.y12e{bottom:681.528667pt;}
.y14d{bottom:682.842533pt;}
.y1d9{bottom:683.340533pt;}
.y6f{bottom:689.321600pt;}
.yb6{bottom:689.604800pt;}
.y170{bottom:690.556533pt;}
.y25{bottom:691.332800pt;}
.y94{bottom:691.541200pt;}
.y193{bottom:692.324267pt;}
.y234{bottom:692.827867pt;}
.y7{bottom:693.695467pt;}
.yd7{bottom:694.393200pt;}
.y106{bottom:697.195333pt;}
.y129{bottom:697.528667pt;}
.y1fb{bottom:698.199333pt;}
.y1b4{bottom:698.840533pt;}
.y252{bottom:700.835333pt;}
.y14c{bottom:700.951200pt;}
.y4c{bottom:701.661200pt;}
.y1d8{bottom:703.257867pt;}
.y6e{bottom:708.166267pt;}
.yb5{bottom:708.403467pt;}
.y16f{bottom:709.271200pt;}
.y24{bottom:709.410800pt;}
.y93{bottom:710.017867pt;}
.y192{bottom:710.745600pt;}
.yd6{bottom:712.394533pt;}
.y105{bottom:713.195333pt;}
.y12d{bottom:713.528667pt;}
.y1fa{bottom:716.860000pt;}
.y1b3{bottom:717.378533pt;}
.y233{bottom:719.455867pt;}
.y6{bottom:720.148800pt;}
.y4b{bottom:721.809200pt;}
.y1d7{bottom:723.175200pt;}
.y6d{bottom:727.010933pt;}
.yb4{bottom:727.202133pt;}
.y23{bottom:727.488800pt;}
.y16e{bottom:727.985867pt;}
.y92{bottom:728.494533pt;}
.y191{bottom:729.159200pt;}
.y104{bottom:729.195333pt;}
.y12c{bottom:729.528667pt;}
.yd5{bottom:730.395867pt;}
.y14b{bottom:730.398400pt;}
.y1f9{bottom:735.520667pt;}
.y232{bottom:738.523867pt;}
.y5{bottom:739.042133pt;}
.y4a{bottom:741.957200pt;}
.y1d6{bottom:743.092533pt;}
.y103{bottom:745.195333pt;}
.y12b{bottom:745.528667pt;}
.y22{bottom:745.566800pt;}
.y6c{bottom:745.855600pt;}
.yb3{bottom:746.000800pt;}
.y16d{bottom:746.700533pt;}
.y91{bottom:746.971200pt;}
.y1b2{bottom:747.228533pt;}
.y190{bottom:747.580533pt;}
.yd4{bottom:748.397200pt;}
.y14a{bottom:748.506933pt;}
.y251{bottom:752.173733pt;}
.y231{bottom:757.591867pt;}
.y102{bottom:761.195333pt;}
.y12a{bottom:761.528667pt;}
.y49{bottom:762.105200pt;}
.y1d5{bottom:763.009867pt;}
.y21{bottom:763.644800pt;}
.y6b{bottom:764.706000pt;}
.yb2{bottom:764.799467pt;}
.y16c{bottom:765.415200pt;}
.y90{bottom:765.447867pt;}
.y4{bottom:765.495467pt;}
.y1f8{bottom:765.532533pt;}
.y1b1{bottom:765.767200pt;}
.y18f{bottom:766.001867pt;}
.yd3{bottom:766.398533pt;}
.y149{bottom:766.620267pt;}
.y250{bottom:776.179067pt;}
.yff{bottom:781.728667pt;}
.y48{bottom:782.253200pt;}
.y1d4{bottom:782.927200pt;}
.y6a{bottom:783.556533pt;}
.yb1{bottom:783.602533pt;}
.y8f{bottom:783.924533pt;}
.y16b{bottom:784.129867pt;}
.y1f7{bottom:784.188533pt;}
.y230{bottom:784.219867pt;}
.y1b0{bottom:784.305867pt;}
.y3{bottom:784.388800pt;}
.yd2{bottom:784.399867pt;}
.y18e{bottom:784.423200pt;}
.y148{bottom:784.731200pt;}
.yfe{bottom:789.728667pt;}
.y100{bottom:797.728667pt;}
.y24f{bottom:800.184400pt;}
.y20{bottom:800.627733pt;}
.y47{bottom:802.401200pt;}
.y147{bottom:802.844533pt;}
.y2{bottom:803.287867pt;}
.y1f{bottom:842.834667pt;}
.hd{height:33.763396pt;}
.h7{height:39.479167pt;}
.h19{height:40.992188pt;}
.h15{height:43.723958pt;}
.h13{height:44.140625pt;}
.h1a{height:44.390625pt;}
.he{height:44.414062pt;}
.h12{height:47.265625pt;}
.h20{height:49.322917pt;}
.h4{height:49.348958pt;}
.h18{height:50.101562pt;}
.h1c{height:51.789062pt;}
.h3{height:51.816406pt;}
.h1d{height:51.818396pt;}
.h1e{height:51.856406pt;}
.h1f{height:51.905329pt;}
.h17{height:54.255208pt;}
.ha{height:54.283854pt;}
.h10{height:56.733702pt;}
.h9{height:56.751302pt;}
.h16{height:56.760369pt;}
.hc{height:56.767302pt;}
.hb{height:56.767835pt;}
.h1b{height:56.815302pt;}
.hf{height:56.817969pt;}
.h2{height:61.686198pt;}
.h8{height:66.621094pt;}
.h6{height:69.088542pt;}
.h14{height:77.546875pt;}
.h11{height:79.265625pt;}
.h5{height:88.828125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xe{left:73.317467pt;}
.x7{left:74.467200pt;}
.x1{left:75.590533pt;}
.x13{left:83.286400pt;}
.xf{left:84.899733pt;}
.xd{left:86.337600pt;}
.x8{left:93.359333pt;}
.x6{left:94.267200pt;}
.x2c{left:95.352267pt;}
.xa{left:111.226800pt;}
.xc{left:112.561600pt;}
.xb{left:113.470800pt;}
.x9{left:189.034667pt;}
.x28{left:202.656133pt;}
.x4{left:204.446267pt;}
.x3{left:206.126267pt;}
.x2{left:207.480400pt;}
.x5{left:208.417600pt;}
.x14{left:209.366400pt;}
.x27{left:210.842800pt;}
.x1a{left:212.059733pt;}
.x16{left:213.579733pt;}
.x1b{left:215.886400pt;}
.x17{left:216.939733pt;}
.x18{left:218.766400pt;}
.x15{left:221.766400pt;}
.x19{left:223.513067pt;}
.x23{left:325.549467pt;}
.x24{left:338.149467pt;}
.x10{left:340.979733pt;}
.x22{left:352.966400pt;}
.x1d{left:356.979733pt;}
.x21{left:357.979733pt;}
.x1c{left:361.153067pt;}
.x11{left:430.646400pt;}
.x25{left:434.909467pt;}
.x12{left:469.313067pt;}
.x26{left:473.576133pt;}
.x20{left:483.513067pt;}
.x1f{left:485.313067pt;}
.x1e{left:486.886400pt;}
.x2a{left:489.762800pt;}
.x2b{left:491.122800pt;}
.x29{left:494.229467pt;}
}




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