
    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_6b5842a679302efba55cbf25.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.886230;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_130f59fc893213460cd3ac3c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_15f68420ed7ddeee1b11bb0f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c6fea7fde37b3986149d1282.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.886230;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_6f5ab5bd7f44d105138694f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9d8031a9683f392e8495040b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4e5b7070f38d0f68621af536.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b96c49c8f38875cf4f399cfe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bb23f15fa0d84887f1a820f7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls39{letter-spacing:-1.192320px;}
.ls49{letter-spacing:-1.152000px;}
.ls38{letter-spacing:-1.126080px;}
.ls28{letter-spacing:-0.936000px;}
.ls27{letter-spacing:-0.864000px;}
.ls3b{letter-spacing:-0.861120px;}
.lse{letter-spacing:-0.720000px;}
.ls2a{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.504000px;}
.ls3a{letter-spacing:-0.463680px;}
.lsc{letter-spacing:-0.432000px;}
.ls53{letter-spacing:-0.358560px;}
.ls3c{letter-spacing:-0.331200px;}
.ls52{letter-spacing:-0.298800px;}
.ls37{letter-spacing:-0.264960px;}
.ls57{letter-spacing:-0.239040px;}
.ls6{letter-spacing:-0.216000px;}
.ls56{letter-spacing:-0.179280px;}
.lsd{letter-spacing:-0.144000px;}
.ls36{letter-spacing:-0.132480px;}
.ls4{letter-spacing:-0.131760px;}
.ls54{letter-spacing:-0.119520px;}
.ls15{letter-spacing:-0.072000px;}
.ls55{letter-spacing:-0.059760px;}
.ls2{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.059760px;}
.ls29{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.131760px;}
.ls2f{letter-spacing:0.136800px;}
.ls1{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.192960px;}
.lsa{letter-spacing:0.216000px;}
.ls35{letter-spacing:0.262080px;}
.ls2e{letter-spacing:0.264960px;}
.ls5{letter-spacing:0.288000px;}
.ls58{letter-spacing:0.298800px;}
.ls5a{letter-spacing:0.358560px;}
.ls24{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.658800px;}
.ls10{letter-spacing:0.864000px;}
.lsb{letter-spacing:1.584000px;}
.ls25{letter-spacing:2.296800px;}
.ls1f{letter-spacing:2.304000px;}
.ls2d{letter-spacing:3.016800px;}
.ls7{letter-spacing:3.024000px;}
.ls1d{letter-spacing:3.729600px;}
.ls11{letter-spacing:3.744000px;}
.ls1b{letter-spacing:3.749760px;}
.ls3e{letter-spacing:4.456800px;}
.ls9{letter-spacing:4.464000px;}
.ls1c{letter-spacing:5.184000px;}
.ls42{letter-spacing:7.344000px;}
.ls4b{letter-spacing:8.784000px;}
.ls19{letter-spacing:9.504000px;}
.ls23{letter-spacing:10.216800px;}
.ls41{letter-spacing:10.936800px;}
.lsf{letter-spacing:10.944000px;}
.ls13{letter-spacing:11.664000px;}
.ls43{letter-spacing:13.104000px;}
.ls31{letter-spacing:14.536800px;}
.ls1a{letter-spacing:14.544000px;}
.ls22{letter-spacing:15.264000px;}
.ls26{letter-spacing:15.976800px;}
.ls14{letter-spacing:16.704000px;}
.ls12{letter-spacing:18.144000px;}
.ls2b{letter-spacing:20.304000px;}
.ls40{letter-spacing:25.344000px;}
.ls3f{letter-spacing:26.064000px;}
.ls44{letter-spacing:26.784000px;}
.ls30{letter-spacing:27.504000px;}
.ls18{letter-spacing:28.224000px;}
.ls32{letter-spacing:29.664000px;}
.ls8{letter-spacing:33.984000px;}
.ls1e{letter-spacing:36.144000px;}
.ls45{letter-spacing:37.584000px;}
.ls21{letter-spacing:65.664000px;}
.ls2c{letter-spacing:75.024000px;}
.ls3d{letter-spacing:75.744000px;}
.ls4a{letter-spacing:95.904000px;}
.ls48{letter-spacing:104.544000px;}
.ls47{letter-spacing:136.224000px;}
.ls46{letter-spacing:141.264000px;}
.ls50{letter-spacing:167.955840px;}
.ls4d{letter-spacing:177.314400px;}
.ls4c{letter-spacing:178.034400px;}
.ls4e{letter-spacing:180.914400px;}
.ls4f{letter-spacing:187.395840px;}
.ls17{letter-spacing:195.984000px;}
.ls59{letter-spacing:199.359360px;}
.ls33{letter-spacing:259.619040px;}
.ls34{letter-spacing:298.479168px;}
.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;}
}
.ws0{word-spacing:-36.497520px;}
.ws87{word-spacing:-20.520000px;}
.wsa{word-spacing:-20.304000px;}
.ws6{word-spacing:-20.232000px;}
.ws39{word-spacing:-20.160000px;}
.ws8{word-spacing:-20.016000px;}
.ws1e{word-spacing:-19.944000px;}
.ws1f{word-spacing:-19.872000px;}
.ws9{word-spacing:-19.800000px;}
.ws7{word-spacing:-19.584000px;}
.ws49{word-spacing:-19.512000px;}
.ws8c{word-spacing:-19.440000px;}
.ws68{word-spacing:-19.152000px;}
.ws94{word-spacing:-19.080000px;}
.ws6c{word-spacing:-18.282240px;}
.ws6d{word-spacing:-18.149760px;}
.ws6e{word-spacing:-18.083520px;}
.ws81{word-spacing:-16.488000px;}
.ws59{word-spacing:-16.272000px;}
.ws5f{word-spacing:-15.235200px;}
.ws9e{word-spacing:-13.804560px;}
.ws9c{word-spacing:-13.505760px;}
.ws9a{word-spacing:-13.446000px;}
.ws78{word-spacing:-13.410720px;}
.ws99{word-spacing:-13.386240px;}
.ws9b{word-spacing:-13.326480px;}
.ws9d{word-spacing:-13.266720px;}
.ws97{word-spacing:-13.206960px;}
.ws98{word-spacing:-13.147200px;}
.ws34{word-spacing:-0.864000px;}
.ws6f{word-spacing:-0.792000px;}
.ws35{word-spacing:-0.720000px;}
.ws37{word-spacing:-0.576000px;}
.ws2{word-spacing:-0.527040px;}
.ws8f{word-spacing:-0.432000px;}
.wsa5{word-spacing:-0.358560px;}
.ws4{word-spacing:-0.288000px;}
.ws71{word-spacing:-0.264960px;}
.ws53{word-spacing:-0.216000px;}
.ws56{word-spacing:-0.192960px;}
.ws3{word-spacing:-0.144000px;}
.ws3a{word-spacing:-0.072000px;}
.ws9f{word-spacing:-0.059760px;}
.ws1{word-spacing:0.000000px;}
.wsa4{word-spacing:0.059760px;}
.ws20{word-spacing:0.072000px;}
.wsa2{word-spacing:0.119520px;}
.ws36{word-spacing:0.144000px;}
.ws5{word-spacing:0.216000px;}
.wsa1{word-spacing:0.239040px;}
.ws75{word-spacing:0.264960px;}
.ws3b{word-spacing:0.288000px;}
.wsa0{word-spacing:0.298800px;}
.ws1d{word-spacing:0.360000px;}
.ws43{word-spacing:0.432000px;}
.ws70{word-spacing:0.463680px;}
.ws2d{word-spacing:0.504000px;}
.ws21{word-spacing:0.576000px;}
.ws5a{word-spacing:0.648000px;}
.ws29{word-spacing:0.720000px;}
.ws74{word-spacing:0.861120px;}
.ws19{word-spacing:0.864000px;}
.ws5c{word-spacing:0.936000px;}
.ws22{word-spacing:1.008000px;}
.ws86{word-spacing:1.152000px;}
.ws18{word-spacing:1.296000px;}
.ws72{word-spacing:1.457280px;}
.ws73{word-spacing:1.523520px;}
.wsc{word-spacing:2.016000px;}
.wse{word-spacing:2.736000px;}
.ws7a{word-spacing:2.880000px;}
.ws7e{word-spacing:3.168000px;}
.ws2b{word-spacing:3.456000px;}
.ws80{word-spacing:3.528000px;}
.ws32{word-spacing:3.888000px;}
.wsb{word-spacing:4.176000px;}
.ws13{word-spacing:4.464000px;}
.ws14{word-spacing:4.608000px;}
.ws15{word-spacing:4.896000px;}
.ws4c{word-spacing:5.040000px;}
.ws2c{word-spacing:5.616000px;}
.ws50{word-spacing:5.688000px;}
.ws24{word-spacing:6.336000px;}
.ws57{word-spacing:6.768000px;}
.ws5e{word-spacing:7.056000px;}
.ws77{word-spacing:7.200000px;}
.ws31{word-spacing:7.776000px;}
.wsf{word-spacing:8.496000px;}
.ws67{word-spacing:8.784000px;}
.ws42{word-spacing:9.000000px;}
.wsd{word-spacing:9.216000px;}
.ws3e{word-spacing:9.936000px;}
.ws66{word-spacing:10.368000px;}
.ws11{word-spacing:10.656000px;}
.ws69{word-spacing:10.800000px;}
.ws10{word-spacing:11.376000px;}
.ws76{word-spacing:11.520000px;}
.ws1a{word-spacing:12.096000px;}
.ws2a{word-spacing:12.816000px;}
.ws45{word-spacing:13.536000px;}
.ws7c{word-spacing:13.824000px;}
.ws25{word-spacing:14.256000px;}
.ws23{word-spacing:14.976000px;}
.ws47{word-spacing:15.696000px;}
.ws96{word-spacing:16.128000px;}
.ws1c{word-spacing:16.416000px;}
.ws51{word-spacing:17.136000px;}
.ws33{word-spacing:17.424000px;}
.ws2f{word-spacing:17.856000px;}
.ws27{word-spacing:18.576000px;}
.ws58{word-spacing:19.008000px;}
.ws3f{word-spacing:19.296000px;}
.ws61{word-spacing:20.016000px;}
.ws60{word-spacing:20.376000px;}
.ws3c{word-spacing:20.736000px;}
.ws41{word-spacing:21.456000px;}
.ws5d{word-spacing:21.888000px;}
.ws4b{word-spacing:22.176000px;}
.wsa3{word-spacing:22.410000px;}
.ws46{word-spacing:22.896000px;}
.ws4d{word-spacing:23.616000px;}
.ws92{word-spacing:23.904000px;}
.ws4a{word-spacing:24.336000px;}
.ws44{word-spacing:25.056000px;}
.ws5b{word-spacing:25.488000px;}
.ws38{word-spacing:25.776000px;}
.ws88{word-spacing:25.920000px;}
.ws7b{word-spacing:26.280000px;}
.ws40{word-spacing:26.496000px;}
.ws2e{word-spacing:27.216000px;}
.ws4e{word-spacing:27.936000px;}
.ws4f{word-spacing:28.656000px;}
.ws30{word-spacing:29.376000px;}
.ws26{word-spacing:30.096000px;}
.ws6a{word-spacing:30.816000px;}
.ws62{word-spacing:31.536000px;}
.ws7f{word-spacing:32.256000px;}
.ws48{word-spacing:32.976000px;}
.ws12{word-spacing:33.696000px;}
.ws89{word-spacing:34.416000px;}
.ws28{word-spacing:35.136000px;}
.ws55{word-spacing:35.856000px;}
.ws54{word-spacing:36.576000px;}
.ws90{word-spacing:38.736000px;}
.ws1b{word-spacing:39.456000px;}
.ws83{word-spacing:40.896000px;}
.ws84{word-spacing:41.184000px;}
.ws6b{word-spacing:41.616000px;}
.ws7d{word-spacing:43.776000px;}
.ws8a{word-spacing:45.936000px;}
.ws8e{word-spacing:46.656000px;}
.ws95{word-spacing:47.376000px;}
.ws52{word-spacing:53.856000px;}
.ws3d{word-spacing:56.736000px;}
.ws91{word-spacing:59.616000px;}
.ws8b{word-spacing:64.656000px;}
.ws85{word-spacing:65.376000px;}
.ws79{word-spacing:66.816000px;}
.ws8d{word-spacing:70.416000px;}
.ws16{word-spacing:71.136000px;}
.ws17{word-spacing:71.856000px;}
.ws63{word-spacing:74.736000px;}
.ws65{word-spacing:74.808000px;}
.ws64{word-spacing:75.456000px;}
.ws93{word-spacing:91.296000px;}
.ws82{word-spacing:108.576000px;}
._13{margin-left:-12.528000px;}
._10{margin-left:-9.950400px;}
._f{margin-left:-3.060000px;}
._0{margin-left:-1.317600px;}
._1{width:1.699704px;}
._2{width:2.851200px;}
._16{width:3.916800px;}
._1a{width:4.917096px;}
._15{width:5.961600px;}
._1b{width:7.128000px;}
._b{width:9.128592px;}
._14{width:11.664000px;}
._7{width:13.629600px;}
._6{width:14.832000px;}
._5{width:17.352000px;}
._e{width:21.600000px;}
._17{width:25.437600px;}
._a{width:27.360000px;}
._12{width:29.736000px;}
._11{width:30.888000px;}
._3{width:33.674400px;}
._18{width:35.733600px;}
._d{width:53.208000px;}
._c{width:64.008000px;}
._4{width:71.920800px;}
._19{width:135.360000px;}
._8{width:168.840000px;}
._9{width:195.984000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs1{font-size:90.000000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y1e9{bottom:21.600000px;}
.y1f7{bottom:21.780000px;}
.y111{bottom:28.080000px;}
.y11e{bottom:28.260000px;}
.y11d{bottom:28.440000px;}
.y122{bottom:48.240000px;}
.y2{bottom:57.786480px;}
.y1e3{bottom:63.900000px;}
.y125{bottom:65.160000px;}
.y1{bottom:77.940000px;}
.y225{bottom:108.900000px;}
.y1f1{bottom:114.840000px;}
.y1de{bottom:115.200000px;}
.y147{bottom:116.820000px;}
.y113{bottom:117.000000px;}
.y1ad{bottom:117.720000px;}
.y1bd{bottom:118.440000px;}
.y193{bottom:118.800000px;}
.y170{bottom:119.340000px;}
.y1c4{bottom:121.500000px;}
.ycd{bottom:121.680000px;}
.y89{bottom:122.580000px;}
.y22e{bottom:125.820000px;}
.y60{bottom:126.900000px;}
.yeb{bottom:129.780000px;}
.y17{bottom:131.400000px;}
.y7c{bottom:132.480000px;}
.y13b{bottom:133.380000px;}
.y157{bottom:135.540000px;}
.ya8{bottom:136.800000px;}
.y1dd{bottom:146.340000px;}
.y146{bottom:147.780000px;}
.y4b{bottom:148.500000px;}
.y1ac{bottom:148.860000px;}
.y1bc{bottom:149.400000px;}
.y192{bottom:149.940000px;}
.yf8{bottom:150.480000px;}
.y10b{bottom:151.560000px;}
.y93{bottom:152.640000px;}
.y181{bottom:154.620000px;}
.yea{bottom:160.740000px;}
.y75{bottom:163.440000px;}
.y13a{bottom:164.340000px;}
.y16f{bottom:165.420000px;}
.y156{bottom:166.500000px;}
.y68{bottom:167.421600px;}
.ycc{bottom:167.580000px;}
.y88{bottom:168.660000px;}
.y22d{bottom:171.900000px;}
.y5f{bottom:172.800000px;}
.y6c{bottom:172.980000px;}
.y1dc{bottom:177.300000px;}
.y16{bottom:177.480000px;}
.y145{bottom:178.920000px;}
.y1bb{bottom:180.180000px;}
.y34{bottom:180.540000px;}
.y191{bottom:180.900000px;}
.y166{bottom:181.440000px;}
.y10a{bottom:182.700000px;}
.ya7{bottom:182.880000px;}
.y4a{bottom:194.580000px;}
.y1ab{bottom:195.120000px;}
.y139{bottom:195.480000px;}
.yf7{bottom:196.560000px;}
.y176{bottom:197.640000px;}
.y92{bottom:198.720000px;}
.y180{bottom:200.700000px;}
.y67{bottom:205.575840px;}
.ye9{bottom:206.820000px;}
.y1db{bottom:208.440000px;}
.y1ba{bottom:211.320000px;}
.y21b{bottom:211.500000px;}
.y155{bottom:212.580000px;}
.ycb{bottom:213.660000px;}
.y87{bottom:214.740000px;}
.y22c{bottom:215.640000px;}
.y5e{bottom:218.880000px;}
.y144{bottom:220.860000px;}
.y15{bottom:223.560000px;}
.y74{bottom:225.540000px;}
.y1aa{bottom:226.080000px;}
.y138{bottom:226.440000px;}
.y33{bottom:226.620000px;}
.y190{bottom:227.340000px;}
.y165{bottom:227.520000px;}
.ya6{bottom:228.780000px;}
.ye8{bottom:237.960000px;}
.y1da{bottom:239.400000px;}
.y49{bottom:240.480000px;}
.y22b{bottom:241.740000px;}
.yf6{bottom:242.640000px;}
.y154{bottom:243.540000px;}
.y66{bottom:243.730080px;}
.y91{bottom:244.800000px;}
.y17f{bottom:246.780000px;}
.y73{bottom:256.500000px;}
.y137{bottom:257.580000px;}
.y18f{bottom:258.300000px;}
.y164{bottom:258.660000px;}
.yca{bottom:259.740000px;}
.y86{bottom:260.820000px;}
.y5d{bottom:264.960000px;}
.ye7{bottom:268.920000px;}
.y14{bottom:269.640000px;}
.y1d9{bottom:270.540000px;}
.y48{bottom:271.620000px;}
.y1a9{bottom:272.520000px;}
.y32{bottom:272.700000px;}
.yf5{bottom:273.600000px;}
.y153{bottom:274.680000px;}
.ya5{bottom:274.860000px;}
.y218{bottom:275.760000px;}
.y22a{bottom:280.620000px;}
.y65{bottom:281.884320px;}
.y72{bottom:287.640000px;}
.y1b9{bottom:288.540000px;}
.y18e{bottom:289.260000px;}
.y163{bottom:289.620000px;}
.y90{bottom:290.700000px;}
.y17e{bottom:292.860000px;}
.y21a{bottom:297.360000px;}
.ye6{bottom:300.060000px;}
.y1d8{bottom:301.500000px;}
.y47{bottom:302.580000px;}
.y31{bottom:303.660000px;}
.yf4{bottom:304.920000px;}
.y152{bottom:305.640000px;}
.yc9{bottom:305.820000px;}
.y85{bottom:306.900000px;}
.y217{bottom:307.980000px;}
.y210{bottom:308.700000px;}
.y5c{bottom:311.040000px;}
.y6b{bottom:311.220000px;}
.y13{bottom:315.720000px;}
.y71{bottom:318.600000px;}
.y143{bottom:319.680000px;}
.y162{bottom:320.760000px;}
.ya4{bottom:320.940000px;}
.y109{bottom:321.840000px;}
.y214{bottom:326.160000px;}
.y64{bottom:327.060000px;}
.ye5{bottom:331.020000px;}
.y1d7{bottom:332.640000px;}
.y46{bottom:333.720000px;}
.y1a8{bottom:334.440000px;}
.y30{bottom:334.800000px;}
.y16e{bottom:335.700000px;}
.y8f{bottom:336.780000px;}
.y17d{bottom:338.760000px;}
.y216{bottom:343.980000px;}
.y20f{bottom:344.700000px;}
.y70{bottom:349.740000px;}
.y142{bottom:350.640000px;}
.yf3{bottom:350.820000px;}
.y161{bottom:351.720000px;}
.yc8{bottom:351.900000px;}
.y84{bottom:352.800000px;}
.y219{bottom:354.600000px;}
.y5b{bottom:357.120000px;}
.y12{bottom:361.620000px;}
.y213{bottom:361.980000px;}
.ye4{bottom:362.160000px;}
.y1d6{bottom:363.600000px;}
.y45{bottom:364.680000px;}
.y2f{bottom:365.760000px;}
.y1b8{bottom:365.940000px;}
.y16d{bottom:366.660000px;}
.ya3{bottom:367.020000px;}
.y151{bottom:367.740000px;}
.y63{bottom:372.060000px;}
.y215{bottom:380.160000px;}
.y6f{bottom:380.700000px;}
.y1a7{bottom:380.880000px;}
.yf2{bottom:381.780000px;}
.y8e{bottom:382.860000px;}
.y212{bottom:383.220000px;}
.y108{bottom:383.940000px;}
.y17c{bottom:384.840000px;}
.ye3{bottom:394.560000px;}
.y1d5{bottom:394.740000px;}
.y44{bottom:395.820000px;}
.y1b7{bottom:396.720000px;}
.y16c{bottom:397.800000px;}
.yc7{bottom:397.980000px;}
.y83{bottom:398.880000px;}
.y5a{bottom:403.020000px;}
.y211{bottom:406.440000px;}
.y11{bottom:407.700000px;}
.y136{bottom:411.660000px;}
.y2e{bottom:411.840000px;}
.y1a6{bottom:412.020000px;}
.y141{bottom:412.740000px;}
.y18d{bottom:412.920000px;}
.ya2{bottom:413.100000px;}
.y107{bottom:414.900000px;}
.y20e{bottom:416.880000px;}
.y62{bottom:418.140000px;}
.y1d4{bottom:425.700000px;}
.y43{bottom:426.780000px;}
.yf1{bottom:427.860000px;}
.y160{bottom:428.760000px;}
.y8d{bottom:428.940000px;}
.y17b{bottom:430.920000px;}
.ye2{bottom:441.720000px;}
.y2d{bottom:442.800000px;}
.y1a5{bottom:442.980000px;}
.yc6{bottom:443.880000px;}
.y1c3{bottom:444.060000px;}
.y82{bottom:444.960000px;}
.y59{bottom:449.100000px;}
.y10{bottom:453.780000px;}
.y128{bottom:456.480000px;}
.y1d3{bottom:456.660000px;}
.y135{bottom:457.740000px;}
.y42{bottom:457.920000px;}
.yf0{bottom:459.000000px;}
.ya1{bottom:459.180000px;}
.y16b{bottom:459.900000px;}
.y106{bottom:460.980000px;}
.y61{bottom:464.220000px;}
.y20d{bottom:465.660000px;}
.ye1{bottom:472.860000px;}
.y207{bottom:473.220000px;}
.y2c{bottom:473.940000px;}
.y1b6{bottom:474.300000px;}
.y15f{bottom:474.840000px;}
.y8c{bottom:475.020000px;}
.y20a{bottom:476.280000px;}
.y17a{bottom:477.000000px;}
.y20c{bottom:486.900000px;}
.y1d2{bottom:487.800000px;}
.y7b{bottom:488.880000px;}
.y127{bottom:488.884320px;}
.y1a4{bottom:489.420000px;}
.yc5{bottom:489.960000px;}
.y150{bottom:490.860000px;}
.y81{bottom:491.040000px;}
.y105{bottom:492.120000px;}
.y206{bottom:494.460000px;}
.y58{bottom:495.180000px;}
.yf{bottom:499.860000px;}
.ye0{bottom:503.820000px;}
.y41{bottom:504.000000px;}
.y2b{bottom:504.900000px;}
.ya0{bottom:505.080000px;}
.y1b5{bottom:505.260000px;}
.y15e{bottom:505.980000px;}
.y209{bottom:512.280000px;}
.y126{bottom:517.500000px;}
.y1d1{bottom:518.760000px;}
.y7a{bottom:520.020000px;}
.y1a3{bottom:520.200000px;}
.y140{bottom:520.920000px;}
.y8b{bottom:521.100000px;}
.yb7{bottom:522.000000px;}
.y20b{bottom:522.900000px;}
.y104{bottom:523.080000px;}
.y205{bottom:530.280000px;}
.y202{bottom:531.000000px;}
.y40{bottom:534.960000px;}
.yc4{bottom:536.040000px;}
.ydf{bottom:536.400000px;}
.y15d{bottom:536.940000px;}
.y80{bottom:537.120000px;}
.y124{bottom:537.660000px;}
.y57{bottom:541.260000px;}
.ye{bottom:545.940000px;}
.y208{bottom:548.280000px;}
.y1d0{bottom:549.900000px;}
.y2a{bottom:550.980000px;}
.y9f{bottom:551.160000px;}
.y1a2{bottom:551.340000px;}
.y204{bottom:551.520000px;}
.y13f{bottom:552.060000px;}
.y18c{bottom:552.240000px;}
.y14f{bottom:552.960000px;}
.yb6{bottom:553.140000px;}
.y103{bottom:554.220000px;}
.y134{bottom:565.920000px;}
.y3f{bottom:566.100000px;}
.y8a{bottom:567.000000px;}
.yde{bottom:567.900000px;}
.y15c{bottom:568.080000px;}
.y179{bottom:569.160000px;}
.y203{bottom:574.740000px;}
.y1cf{bottom:580.860000px;}
.y29{bottom:582.120000px;}
.y1b4{bottom:582.480000px;}
.y7f{bottom:583.020000px;}
.y1c2{bottom:583.200000px;}
.y14e{bottom:584.100000px;}
.y123{bottom:584.280000px;}
.y102{bottom:585.180000px;}
.y56{bottom:587.340000px;}
.yd{bottom:591.840000px;}
.y3e{bottom:597.060000px;}
.y9e{bottom:597.240000px;}
.y1a1{bottom:597.600000px;}
.yef{bottom:598.140000px;}
.ydd{bottom:598.860000px;}
.y15b{bottom:599.040000px;}
.yb5{bottom:599.220000px;}
.y224{bottom:600.120000px;}
.y1ce{bottom:612.000000px;}
.y1ff{bottom:612.360000px;}
.y28{bottom:613.080000px;}
.y6e{bottom:613.260000px;}
.y1b3{bottom:613.800000px;}
.y13e{bottom:614.160000px;}
.y14d{bottom:615.060000px;}
.y121{bottom:618.840000px;}
.y3d{bottom:628.020000px;}
.y1a0{bottom:628.740000px;}
.y7e{bottom:629.100000px;}
.ydc{bottom:630.000000px;}
.yb4{bottom:630.180000px;}
.y101{bottom:631.260000px;}
.y55{bottom:633.420000px;}
.y201{bottom:633.960000px;}
.yc{bottom:637.920000px;}
.y1fb{bottom:641.520000px;}
.y1cd{bottom:642.960000px;}
.y9d{bottom:643.320000px;}
.y27{bottom:644.220000px;}
.y6d{bottom:644.400000px;}
.y1fe{bottom:644.580000px;}
.y1b2{bottom:644.760000px;}
.y16a{bottom:645.120000px;}
.y200{bottom:655.200000px;}
.y120{bottom:657.000000px;}
.y3c{bottom:659.160000px;}
.y19f{bottom:659.700000px;}
.y13d{bottom:660.060000px;}
.yee{bottom:660.240000px;}
.y18b{bottom:660.420000px;}
.ydb{bottom:660.960000px;}
.y14c{bottom:661.140000px;}
.yb3{bottom:661.320000px;}
.y223{bottom:662.220000px;}
.y1fa{bottom:662.760000px;}
.y1cc{bottom:674.100000px;}
.y26{bottom:675.180000px;}
.y79{bottom:675.360000px;}
.yc3{bottom:675.540000px;}
.y169{bottom:676.260000px;}
.y100{bottom:677.340000px;}
.y54{bottom:679.320000px;}
.y1fd{bottom:680.580000px;}
.y11f{bottom:683.100000px;}
.y9c{bottom:689.400000px;}
.y3b{bottom:690.120000px;}
.y19e{bottom:690.840000px;}
.y175{bottom:691.200000px;}
.yda{bottom:692.100000px;}
.yb2{bottom:692.280000px;}
.yb{bottom:695.671020px;}
.y1f9{bottom:698.580000px;}
.y1f5{bottom:699.300000px;}
.y1cb{bottom:705.060000px;}
.y25{bottom:706.320000px;}
.y78{bottom:706.500000px;}
.yc2{bottom:706.680000px;}
.y14b{bottom:707.220000px;}
.yff{bottom:708.300000px;}
.y1fc{bottom:716.580000px;}
.y1f8{bottom:719.820000px;}
.y3a{bottom:721.260000px;}
.y1b1{bottom:721.980000px;}
.y174{bottom:722.160000px;}
.y1c1{bottom:722.340000px;}
.yd9{bottom:723.060000px;}
.y15a{bottom:723.240000px;}
.y53{bottom:725.400000px;}
.y6a{bottom:725.580000px;}
.y11c{bottom:727.200000px;}
.y9b{bottom:735.300000px;}
.y133{bottom:736.200000px;}
.y19d{bottom:737.100000px;}
.y24{bottom:737.280000px;}
.y13c{bottom:737.460000px;}
.yc1{bottom:737.820000px;}
.y14a{bottom:738.180000px;}
.yb1{bottom:738.360000px;}
.y222{bottom:739.260000px;}
.y1f6{bottom:743.040000px;}
.y39{bottom:752.220000px;}
.ya{bottom:752.558400px;}
.y173{bottom:753.300000px;}
.yd8{bottom:754.200000px;}
.yfe{bottom:754.380000px;}
.y132{bottom:767.160000px;}
.y19c{bottom:768.060000px;}
.y18a{bottom:768.240000px;}
.y23{bottom:768.420000px;}
.yc0{bottom:768.960000px;}
.yb0{bottom:769.320000px;}
.y52{bottom:771.480000px;}
.y1f0{bottom:780.660000px;}
.y9a{bottom:781.380000px;}
.y38{bottom:783.360000px;}
.y172{bottom:784.260000px;}
.yd7{bottom:785.160000px;}
.y221{bottom:785.340000px;}
.yfd{bottom:785.520000px;}
.y118{bottom:793.080000px;}
.y131{bottom:798.300000px;}
.y1ca{bottom:798.480000px;}
.y22{bottom:799.380000px;}
.ybf{bottom:799.920000px;}
.y159{bottom:800.280000px;}
.y1f4{bottom:802.260000px;}
.y9{bottom:809.445780px;}
.y1ec{bottom:809.820000px;}
.y11b{bottom:811.440000px;}
.y1ef{bottom:812.880000px;}
.y37{bottom:814.320000px;}
.y19b{bottom:814.500000px;}
.yaf{bottom:815.400000px;}
.yd6{bottom:816.300000px;}
.y220{bottom:816.480000px;}
.y51{bottom:817.560000px;}
.y115{bottom:822.240000px;}
.y1f3{bottom:823.500000px;}
.y99{bottom:827.460000px;}
.y130{bottom:829.260000px;}
.y1c9{bottom:829.440000px;}
.y117{bottom:829.800000px;}
.y1c0{bottom:830.340000px;}
.y7d{bottom:830.520000px;}
.ybe{bottom:831.060000px;}
.yfc{bottom:831.420000px;}
.y11a{bottom:833.220000px;}
.y112{bottom:844.020000px;}
.y178{bottom:845.280000px;}
.y21{bottom:845.460000px;}
.y189{bottom:845.820000px;}
.y149{bottom:846.360000px;}
.yae{bottom:846.540000px;}
.y21f{bottom:847.440000px;}
.y1ee{bottom:848.880000px;}
.y116{bottom:851.580000px;}
.y98{bottom:858.600000px;}
.y114{bottom:859.140000px;}
.y1f2{bottom:859.320000px;}
.y12f{bottom:860.400000px;}
.y1c8{bottom:860.580000px;}
.yed{bottom:861.480000px;}
.y1bf{bottom:861.660000px;}
.yd5{bottom:862.380000px;}
.yfb{bottom:862.560000px;}
.y50{bottom:863.640000px;}
.y1eb{bottom:866.880000px;}
.y1e7{bottom:868.680000px;}
.y119{bottom:870.120000px;}
.y20{bottom:876.420000px;}
.y1b0{bottom:876.780000px;}
.y188{bottom:876.960000px;}
.ybd{bottom:877.320000px;}
.yad{bottom:877.500000px;}
.y21e{bottom:878.580000px;}
.y8{bottom:881.452620px;}
.y1ed{bottom:884.880000px;}
.y1ea{bottom:888.120000px;}
.y97{bottom:889.560000px;}
.y12e{bottom:891.360000px;}
.y19a{bottom:891.900000px;}
.y171{bottom:892.440000px;}
.yec{bottom:892.620000px;}
.y110{bottom:904.500000px;}
.y177{bottom:907.380000px;}
.y1f{bottom:907.560000px;}
.y187{bottom:907.740000px;}
.yd4{bottom:908.280000px;}
.y168{bottom:908.460000px;}
.yfa{bottom:908.640000px;}
.y4f{bottom:909.540000px;}
.y1e8{bottom:913.320000px;}
.y96{bottom:920.700000px;}
.y12d{bottom:922.500000px;}
.y1c7{bottom:922.680000px;}
.y199{bottom:922.860000px;}
.y1af{bottom:923.220000px;}
.ybc{bottom:923.400000px;}
.yac{bottom:923.580000px;}
.y21d{bottom:924.480000px;}
.y7{bottom:938.340000px;}
.y1e{bottom:938.520000px;}
.y1be{bottom:938.700000px;}
.yd3{bottom:939.420000px;}
.yf9{bottom:939.600000px;}
.y1e2{bottom:952.740000px;}
.y95{bottom:953.280000px;}
.y12c{bottom:953.460000px;}
.y1c6{bottom:953.640000px;}
.y1ae{bottom:954.000000px;}
.y186{bottom:954.180000px;}
.ybb{bottom:954.360000px;}
.yab{bottom:954.540000px;}
.y4e{bottom:955.620000px;}
.y21c{bottom:955.800000px;}
.y198{bottom:969.300000px;}
.y158{bottom:969.480000px;}
.y1d{bottom:969.660000px;}
.yd2{bottom:970.380000px;}
.y1e5{bottom:974.340000px;}
.y1e0{bottom:977.400000px;}
.y94{bottom:984.600000px;}
.y1c5{bottom:984.780000px;}
.y185{bottom:985.140000px;}
.yba{bottom:985.500000px;}
.yaa{bottom:985.680000px;}
.y10f{bottom:986.580000px;}
.y1e6{bottom:995.400000px;}
.y1e4{bottom:995.580000px;}
.y197{bottom:1000.080000px;}
.y1c{bottom:1000.620000px;}
.yd1{bottom:1001.520000px;}
.y4d{bottom:1001.700000px;}
.y6{bottom:1002.240000px;}
.y1e1{bottom:1006.020000px;}
.y1df{bottom:1013.400000px;}
.y12b{bottom:1015.560000px;}
.y77{bottom:1015.740000px;}
.y184{bottom:1016.280000px;}
.yb9{bottom:1016.460000px;}
.ya9{bottom:1016.640000px;}
.y196{bottom:1031.220000px;}
.y148{bottom:1031.580000px;}
.y1b{bottom:1031.760000px;}
.yd0{bottom:1032.480000px;}
.y10e{bottom:1041.480000px;}
.y76{bottom:1046.700000px;}
.yb8{bottom:1047.600000px;}
.y4c{bottom:1047.780000px;}
.y69{bottom:1047.960000px;}
.y5{bottom:1056.060000px;}
.y229{bottom:1059.300000px;}
.y183{bottom:1062.540000px;}
.y1a{bottom:1062.720000px;}
.y12a{bottom:1077.660000px;}
.y36{bottom:1077.840000px;}
.ycf{bottom:1078.560000px;}
.y10d{bottom:1087.560000px;}
.y182{bottom:1093.500000px;}
.y167{bottom:1093.680000px;}
.y19{bottom:1093.860000px;}
.y228{bottom:1105.380000px;}
.y195{bottom:1108.440000px;}
.y35{bottom:1108.800000px;}
.y4{bottom:1109.880000px;}
.yce{bottom:1110.060000px;}
.y10c{bottom:1118.520000px;}
.y227{bottom:1125.540000px;}
.y3{bottom:1135.800000px;}
.y194{bottom:1139.580000px;}
.y129{bottom:1139.760000px;}
.y18{bottom:1139.940000px;}
.y226{bottom:1142.820000px;}
.h11{height:36.000000px;}
.h13{height:36.180000px;}
.hf{height:42.894141px;}
.h9{height:43.380000px;}
.hb{height:43.558500px;}
.h2{height:47.545312px;}
.h6{height:51.679688px;}
.h15{height:62.327813px;}
.hc{height:63.540000px;}
.h8{height:69.086250px;}
.h5{height:75.093750px;}
.h10{height:78.120000px;}
.hd{height:80.460000px;}
.h7{height:81.101250px;}
.he{height:83.432812px;}
.h3{height:93.867188px;}
.h12{height:129.240000px;}
.h14{height:129.241500px;}
.ha{height:132.300000px;}
.h4{height:137.421562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:62.281500px;}
.wa{width:62.458500px;}
.wb{width:62.460000px;}
.wc{width:62.640000px;}
.w10{width:62.820000px;}
.w11{width:62.998500px;}
.w8{width:67.140000px;}
.wd{width:71.820000px;}
.we{width:73.081500px;}
.w6{width:86.041500px;}
.w3{width:86.940000px;}
.w9{width:87.480000px;}
.w7{width:88.201500px;}
.w4{width:109.800000px;}
.w5{width:149.220000px;}
.w2{width:243.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.740000px;}
.x45{left:9.180000px;}
.x42{left:11.520000px;}
.x4b{left:13.680000px;}
.x3c{left:16.560000px;}
.x43{left:21.600000px;}
.x22{left:28.260000px;}
.x52{left:31.320000px;}
.x2e{left:33.840000px;}
.x61{left:35.820000px;}
.x2f{left:37.980000px;}
.x26{left:40.140000px;}
.x31{left:43.020000px;}
.x1e{left:44.640000px;}
.x33{left:49.320000px;}
.x20{left:51.480000px;}
.x30{left:54.720000px;}
.x1a{left:59.580000px;}
.x39{left:61.200000px;}
.x2d{left:64.080000px;}
.x34{left:68.940000px;}
.x14{left:73.620000px;}
.x3a{left:75.780000px;}
.x40{left:91.080000px;}
.x19{left:98.640000px;}
.x17{left:106.383600px;}
.x12{left:123.120000px;}
.x2{left:127.617840px;}
.x41{left:129.960000px;}
.x36{left:137.160000px;}
.x6{left:139.865040px;}
.x7{left:144.377820px;}
.x23{left:146.340000px;}
.x4f{left:148.680000px;}
.x4e{left:151.020000px;}
.xf{left:154.620000px;}
.x18{left:159.480000px;}
.x13{left:177.120000px;}
.x32{left:178.380000px;}
.x72{left:180.180000px;}
.x10{left:181.620000px;}
.x37{left:185.763600px;}
.x3b{left:198.360000px;}
.x35{left:202.680000px;}
.x4{left:215.100000px;}
.x3d{left:217.620000px;}
.x3e{left:218.700000px;}
.x8{left:221.424480px;}
.x51{left:229.860000px;}
.x50{left:233.820000px;}
.x3{left:270.540000px;}
.x44{left:287.640000px;}
.x54{left:300.420000px;}
.x69{left:302.220000px;}
.x53{left:306.360000px;}
.x55{left:309.060000px;}
.x3f{left:310.860000px;}
.x5{left:323.274960px;}
.x1b{left:342.360000px;}
.x46{left:351.720000px;}
.x57{left:364.500000px;}
.x6a{left:366.300000px;}
.x56{left:370.440000px;}
.x58{left:373.140000px;}
.xd{left:396.180000px;}
.x47{left:415.800000px;}
.x5a{left:428.400000px;}
.x1d{left:430.200000px;}
.x59{left:434.340000px;}
.x25{left:437.760000px;}
.x24{left:465.300000px;}
.x48{left:479.700000px;}
.x5c{left:492.480000px;}
.x6b{left:494.280000px;}
.x5b{left:498.420000px;}
.x5d{left:501.120000px;}
.x38{left:516.600000px;}
.xa{left:526.140000px;}
.x1f{left:540.900000px;}
.x49{left:543.780000px;}
.x5f{left:556.560000px;}
.x6c{left:558.360000px;}
.x5e{left:562.500000px;}
.x60{left:565.200000px;}
.x9{left:568.260000px;}
.x27{left:569.520000px;}
.x29{left:582.840000px;}
.x28{left:592.020000px;}
.x4a{left:607.860000px;}
.xc{left:614.340000px;}
.x6e{left:615.420000px;}
.x63{left:625.320000px;}
.x62{left:631.080000px;}
.x64{left:633.960000px;}
.x6d{left:643.680000px;}
.x4c{left:681.120000px;}
.x6f{left:689.400000px;}
.x21{left:690.840000px;}
.x66{left:699.120000px;}
.x65{left:705.060000px;}
.x2a{left:706.680000px;}
.xe{left:708.300000px;}
.x2c{left:715.500000px;}
.x2b{left:717.300000px;}
.x15{left:748.620000px;}
.x4d{left:755.640000px;}
.x11{left:757.080000px;}
.x1{left:765.360000px;}
.x16{left:769.860000px;}
.x67{left:774.180000px;}
.x68{left:776.880000px;}
.xb{left:790.380000px;}
.x70{left:804.780000px;}
.x71{left:829.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls39{letter-spacing:-1.059840pt;}
.ls49{letter-spacing:-1.024000pt;}
.ls38{letter-spacing:-1.000960pt;}
.ls28{letter-spacing:-0.832000pt;}
.ls27{letter-spacing:-0.768000pt;}
.ls3b{letter-spacing:-0.765440pt;}
.lse{letter-spacing:-0.640000pt;}
.ls2a{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.448000pt;}
.ls3a{letter-spacing:-0.412160pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls53{letter-spacing:-0.318720pt;}
.ls3c{letter-spacing:-0.294400pt;}
.ls52{letter-spacing:-0.265600pt;}
.ls37{letter-spacing:-0.235520pt;}
.ls57{letter-spacing:-0.212480pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls56{letter-spacing:-0.159360pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls36{letter-spacing:-0.117760pt;}
.ls4{letter-spacing:-0.117120pt;}
.ls54{letter-spacing:-0.106240pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls55{letter-spacing:-0.053120pt;}
.ls2{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.053120pt;}
.ls29{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.117120pt;}
.ls2f{letter-spacing:0.121600pt;}
.ls1{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.171520pt;}
.lsa{letter-spacing:0.192000pt;}
.ls35{letter-spacing:0.232960pt;}
.ls2e{letter-spacing:0.235520pt;}
.ls5{letter-spacing:0.256000pt;}
.ls58{letter-spacing:0.265600pt;}
.ls5a{letter-spacing:0.318720pt;}
.ls24{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.585600pt;}
.ls10{letter-spacing:0.768000pt;}
.lsb{letter-spacing:1.408000pt;}
.ls25{letter-spacing:2.041600pt;}
.ls1f{letter-spacing:2.048000pt;}
.ls2d{letter-spacing:2.681600pt;}
.ls7{letter-spacing:2.688000pt;}
.ls1d{letter-spacing:3.315200pt;}
.ls11{letter-spacing:3.328000pt;}
.ls1b{letter-spacing:3.333120pt;}
.ls3e{letter-spacing:3.961600pt;}
.ls9{letter-spacing:3.968000pt;}
.ls1c{letter-spacing:4.608000pt;}
.ls42{letter-spacing:6.528000pt;}
.ls4b{letter-spacing:7.808000pt;}
.ls19{letter-spacing:8.448000pt;}
.ls23{letter-spacing:9.081600pt;}
.ls41{letter-spacing:9.721600pt;}
.lsf{letter-spacing:9.728000pt;}
.ls13{letter-spacing:10.368000pt;}
.ls43{letter-spacing:11.648000pt;}
.ls31{letter-spacing:12.921600pt;}
.ls1a{letter-spacing:12.928000pt;}
.ls22{letter-spacing:13.568000pt;}
.ls26{letter-spacing:14.201600pt;}
.ls14{letter-spacing:14.848000pt;}
.ls12{letter-spacing:16.128000pt;}
.ls2b{letter-spacing:18.048000pt;}
.ls40{letter-spacing:22.528000pt;}
.ls3f{letter-spacing:23.168000pt;}
.ls44{letter-spacing:23.808000pt;}
.ls30{letter-spacing:24.448000pt;}
.ls18{letter-spacing:25.088000pt;}
.ls32{letter-spacing:26.368000pt;}
.ls8{letter-spacing:30.208000pt;}
.ls1e{letter-spacing:32.128000pt;}
.ls45{letter-spacing:33.408000pt;}
.ls21{letter-spacing:58.368000pt;}
.ls2c{letter-spacing:66.688000pt;}
.ls3d{letter-spacing:67.328000pt;}
.ls4a{letter-spacing:85.248000pt;}
.ls48{letter-spacing:92.928000pt;}
.ls47{letter-spacing:121.088000pt;}
.ls46{letter-spacing:125.568000pt;}
.ls50{letter-spacing:149.294080pt;}
.ls4d{letter-spacing:157.612800pt;}
.ls4c{letter-spacing:158.252800pt;}
.ls4e{letter-spacing:160.812800pt;}
.ls4f{letter-spacing:166.574080pt;}
.ls17{letter-spacing:174.208000pt;}
.ls59{letter-spacing:177.208320pt;}
.ls33{letter-spacing:230.772480pt;}
.ls34{letter-spacing:265.314816pt;}
.ws0{word-spacing:-32.442240pt;}
.ws87{word-spacing:-18.240000pt;}
.wsa{word-spacing:-18.048000pt;}
.ws6{word-spacing:-17.984000pt;}
.ws39{word-spacing:-17.920000pt;}
.ws8{word-spacing:-17.792000pt;}
.ws1e{word-spacing:-17.728000pt;}
.ws1f{word-spacing:-17.664000pt;}
.ws9{word-spacing:-17.600000pt;}
.ws7{word-spacing:-17.408000pt;}
.ws49{word-spacing:-17.344000pt;}
.ws8c{word-spacing:-17.280000pt;}
.ws68{word-spacing:-17.024000pt;}
.ws94{word-spacing:-16.960000pt;}
.ws6c{word-spacing:-16.250880pt;}
.ws6d{word-spacing:-16.133120pt;}
.ws6e{word-spacing:-16.074240pt;}
.ws81{word-spacing:-14.656000pt;}
.ws59{word-spacing:-14.464000pt;}
.ws5f{word-spacing:-13.542400pt;}
.ws9e{word-spacing:-12.270720pt;}
.ws9c{word-spacing:-12.005120pt;}
.ws9a{word-spacing:-11.952000pt;}
.ws78{word-spacing:-11.920640pt;}
.ws99{word-spacing:-11.898880pt;}
.ws9b{word-spacing:-11.845760pt;}
.ws9d{word-spacing:-11.792640pt;}
.ws97{word-spacing:-11.739520pt;}
.ws98{word-spacing:-11.686400pt;}
.ws34{word-spacing:-0.768000pt;}
.ws6f{word-spacing:-0.704000pt;}
.ws35{word-spacing:-0.640000pt;}
.ws37{word-spacing:-0.512000pt;}
.ws2{word-spacing:-0.468480pt;}
.ws8f{word-spacing:-0.384000pt;}
.wsa5{word-spacing:-0.318720pt;}
.ws4{word-spacing:-0.256000pt;}
.ws71{word-spacing:-0.235520pt;}
.ws53{word-spacing:-0.192000pt;}
.ws56{word-spacing:-0.171520pt;}
.ws3{word-spacing:-0.128000pt;}
.ws3a{word-spacing:-0.064000pt;}
.ws9f{word-spacing:-0.053120pt;}
.ws1{word-spacing:0.000000pt;}
.wsa4{word-spacing:0.053120pt;}
.ws20{word-spacing:0.064000pt;}
.wsa2{word-spacing:0.106240pt;}
.ws36{word-spacing:0.128000pt;}
.ws5{word-spacing:0.192000pt;}
.wsa1{word-spacing:0.212480pt;}
.ws75{word-spacing:0.235520pt;}
.ws3b{word-spacing:0.256000pt;}
.wsa0{word-spacing:0.265600pt;}
.ws1d{word-spacing:0.320000pt;}
.ws43{word-spacing:0.384000pt;}
.ws70{word-spacing:0.412160pt;}
.ws2d{word-spacing:0.448000pt;}
.ws21{word-spacing:0.512000pt;}
.ws5a{word-spacing:0.576000pt;}
.ws29{word-spacing:0.640000pt;}
.ws74{word-spacing:0.765440pt;}
.ws19{word-spacing:0.768000pt;}
.ws5c{word-spacing:0.832000pt;}
.ws22{word-spacing:0.896000pt;}
.ws86{word-spacing:1.024000pt;}
.ws18{word-spacing:1.152000pt;}
.ws72{word-spacing:1.295360pt;}
.ws73{word-spacing:1.354240pt;}
.wsc{word-spacing:1.792000pt;}
.wse{word-spacing:2.432000pt;}
.ws7a{word-spacing:2.560000pt;}
.ws7e{word-spacing:2.816000pt;}
.ws2b{word-spacing:3.072000pt;}
.ws80{word-spacing:3.136000pt;}
.ws32{word-spacing:3.456000pt;}
.wsb{word-spacing:3.712000pt;}
.ws13{word-spacing:3.968000pt;}
.ws14{word-spacing:4.096000pt;}
.ws15{word-spacing:4.352000pt;}
.ws4c{word-spacing:4.480000pt;}
.ws2c{word-spacing:4.992000pt;}
.ws50{word-spacing:5.056000pt;}
.ws24{word-spacing:5.632000pt;}
.ws57{word-spacing:6.016000pt;}
.ws5e{word-spacing:6.272000pt;}
.ws77{word-spacing:6.400000pt;}
.ws31{word-spacing:6.912000pt;}
.wsf{word-spacing:7.552000pt;}
.ws67{word-spacing:7.808000pt;}
.ws42{word-spacing:8.000000pt;}
.wsd{word-spacing:8.192000pt;}
.ws3e{word-spacing:8.832000pt;}
.ws66{word-spacing:9.216000pt;}
.ws11{word-spacing:9.472000pt;}
.ws69{word-spacing:9.600000pt;}
.ws10{word-spacing:10.112000pt;}
.ws76{word-spacing:10.240000pt;}
.ws1a{word-spacing:10.752000pt;}
.ws2a{word-spacing:11.392000pt;}
.ws45{word-spacing:12.032000pt;}
.ws7c{word-spacing:12.288000pt;}
.ws25{word-spacing:12.672000pt;}
.ws23{word-spacing:13.312000pt;}
.ws47{word-spacing:13.952000pt;}
.ws96{word-spacing:14.336000pt;}
.ws1c{word-spacing:14.592000pt;}
.ws51{word-spacing:15.232000pt;}
.ws33{word-spacing:15.488000pt;}
.ws2f{word-spacing:15.872000pt;}
.ws27{word-spacing:16.512000pt;}
.ws58{word-spacing:16.896000pt;}
.ws3f{word-spacing:17.152000pt;}
.ws61{word-spacing:17.792000pt;}
.ws60{word-spacing:18.112000pt;}
.ws3c{word-spacing:18.432000pt;}
.ws41{word-spacing:19.072000pt;}
.ws5d{word-spacing:19.456000pt;}
.ws4b{word-spacing:19.712000pt;}
.wsa3{word-spacing:19.920000pt;}
.ws46{word-spacing:20.352000pt;}
.ws4d{word-spacing:20.992000pt;}
.ws92{word-spacing:21.248000pt;}
.ws4a{word-spacing:21.632000pt;}
.ws44{word-spacing:22.272000pt;}
.ws5b{word-spacing:22.656000pt;}
.ws38{word-spacing:22.912000pt;}
.ws88{word-spacing:23.040000pt;}
.ws7b{word-spacing:23.360000pt;}
.ws40{word-spacing:23.552000pt;}
.ws2e{word-spacing:24.192000pt;}
.ws4e{word-spacing:24.832000pt;}
.ws4f{word-spacing:25.472000pt;}
.ws30{word-spacing:26.112000pt;}
.ws26{word-spacing:26.752000pt;}
.ws6a{word-spacing:27.392000pt;}
.ws62{word-spacing:28.032000pt;}
.ws7f{word-spacing:28.672000pt;}
.ws48{word-spacing:29.312000pt;}
.ws12{word-spacing:29.952000pt;}
.ws89{word-spacing:30.592000pt;}
.ws28{word-spacing:31.232000pt;}
.ws55{word-spacing:31.872000pt;}
.ws54{word-spacing:32.512000pt;}
.ws90{word-spacing:34.432000pt;}
.ws1b{word-spacing:35.072000pt;}
.ws83{word-spacing:36.352000pt;}
.ws84{word-spacing:36.608000pt;}
.ws6b{word-spacing:36.992000pt;}
.ws7d{word-spacing:38.912000pt;}
.ws8a{word-spacing:40.832000pt;}
.ws8e{word-spacing:41.472000pt;}
.ws95{word-spacing:42.112000pt;}
.ws52{word-spacing:47.872000pt;}
.ws3d{word-spacing:50.432000pt;}
.ws91{word-spacing:52.992000pt;}
.ws8b{word-spacing:57.472000pt;}
.ws85{word-spacing:58.112000pt;}
.ws79{word-spacing:59.392000pt;}
.ws8d{word-spacing:62.592000pt;}
.ws16{word-spacing:63.232000pt;}
.ws17{word-spacing:63.872000pt;}
.ws63{word-spacing:66.432000pt;}
.ws65{word-spacing:66.496000pt;}
.ws64{word-spacing:67.072000pt;}
.ws93{word-spacing:81.152000pt;}
.ws82{word-spacing:96.512000pt;}
._13{margin-left:-11.136000pt;}
._10{margin-left:-8.844800pt;}
._f{margin-left:-2.720000pt;}
._0{margin-left:-1.171200pt;}
._1{width:1.510848pt;}
._2{width:2.534400pt;}
._16{width:3.481600pt;}
._1a{width:4.370752pt;}
._15{width:5.299200pt;}
._1b{width:6.336000pt;}
._b{width:8.114304pt;}
._14{width:10.368000pt;}
._7{width:12.115200pt;}
._6{width:13.184000pt;}
._5{width:15.424000pt;}
._e{width:19.200000pt;}
._17{width:22.611200pt;}
._a{width:24.320000pt;}
._12{width:26.432000pt;}
._11{width:27.456000pt;}
._3{width:29.932800pt;}
._18{width:31.763200pt;}
._d{width:47.296000pt;}
._c{width:56.896000pt;}
._4{width:63.929600pt;}
._19{width:120.320000pt;}
._8{width:150.080000pt;}
._9{width:174.208000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs1{font-size:80.000000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y1e9{bottom:19.200000pt;}
.y1f7{bottom:19.360000pt;}
.y111{bottom:24.960000pt;}
.y11e{bottom:25.120000pt;}
.y11d{bottom:25.280000pt;}
.y122{bottom:42.880000pt;}
.y2{bottom:51.365760pt;}
.y1e3{bottom:56.800000pt;}
.y125{bottom:57.920000pt;}
.y1{bottom:69.280000pt;}
.y225{bottom:96.800000pt;}
.y1f1{bottom:102.080000pt;}
.y1de{bottom:102.400000pt;}
.y147{bottom:103.840000pt;}
.y113{bottom:104.000000pt;}
.y1ad{bottom:104.640000pt;}
.y1bd{bottom:105.280000pt;}
.y193{bottom:105.600000pt;}
.y170{bottom:106.080000pt;}
.y1c4{bottom:108.000000pt;}
.ycd{bottom:108.160000pt;}
.y89{bottom:108.960000pt;}
.y22e{bottom:111.840000pt;}
.y60{bottom:112.800000pt;}
.yeb{bottom:115.360000pt;}
.y17{bottom:116.800000pt;}
.y7c{bottom:117.760000pt;}
.y13b{bottom:118.560000pt;}
.y157{bottom:120.480000pt;}
.ya8{bottom:121.600000pt;}
.y1dd{bottom:130.080000pt;}
.y146{bottom:131.360000pt;}
.y4b{bottom:132.000000pt;}
.y1ac{bottom:132.320000pt;}
.y1bc{bottom:132.800000pt;}
.y192{bottom:133.280000pt;}
.yf8{bottom:133.760000pt;}
.y10b{bottom:134.720000pt;}
.y93{bottom:135.680000pt;}
.y181{bottom:137.440000pt;}
.yea{bottom:142.880000pt;}
.y75{bottom:145.280000pt;}
.y13a{bottom:146.080000pt;}
.y16f{bottom:147.040000pt;}
.y156{bottom:148.000000pt;}
.y68{bottom:148.819200pt;}
.ycc{bottom:148.960000pt;}
.y88{bottom:149.920000pt;}
.y22d{bottom:152.800000pt;}
.y5f{bottom:153.600000pt;}
.y6c{bottom:153.760000pt;}
.y1dc{bottom:157.600000pt;}
.y16{bottom:157.760000pt;}
.y145{bottom:159.040000pt;}
.y1bb{bottom:160.160000pt;}
.y34{bottom:160.480000pt;}
.y191{bottom:160.800000pt;}
.y166{bottom:161.280000pt;}
.y10a{bottom:162.400000pt;}
.ya7{bottom:162.560000pt;}
.y4a{bottom:172.960000pt;}
.y1ab{bottom:173.440000pt;}
.y139{bottom:173.760000pt;}
.yf7{bottom:174.720000pt;}
.y176{bottom:175.680000pt;}
.y92{bottom:176.640000pt;}
.y180{bottom:178.400000pt;}
.y67{bottom:182.734080pt;}
.ye9{bottom:183.840000pt;}
.y1db{bottom:185.280000pt;}
.y1ba{bottom:187.840000pt;}
.y21b{bottom:188.000000pt;}
.y155{bottom:188.960000pt;}
.ycb{bottom:189.920000pt;}
.y87{bottom:190.880000pt;}
.y22c{bottom:191.680000pt;}
.y5e{bottom:194.560000pt;}
.y144{bottom:196.320000pt;}
.y15{bottom:198.720000pt;}
.y74{bottom:200.480000pt;}
.y1aa{bottom:200.960000pt;}
.y138{bottom:201.280000pt;}
.y33{bottom:201.440000pt;}
.y190{bottom:202.080000pt;}
.y165{bottom:202.240000pt;}
.ya6{bottom:203.360000pt;}
.ye8{bottom:211.520000pt;}
.y1da{bottom:212.800000pt;}
.y49{bottom:213.760000pt;}
.y22b{bottom:214.880000pt;}
.yf6{bottom:215.680000pt;}
.y154{bottom:216.480000pt;}
.y66{bottom:216.648960pt;}
.y91{bottom:217.600000pt;}
.y17f{bottom:219.360000pt;}
.y73{bottom:228.000000pt;}
.y137{bottom:228.960000pt;}
.y18f{bottom:229.600000pt;}
.y164{bottom:229.920000pt;}
.yca{bottom:230.880000pt;}
.y86{bottom:231.840000pt;}
.y5d{bottom:235.520000pt;}
.ye7{bottom:239.040000pt;}
.y14{bottom:239.680000pt;}
.y1d9{bottom:240.480000pt;}
.y48{bottom:241.440000pt;}
.y1a9{bottom:242.240000pt;}
.y32{bottom:242.400000pt;}
.yf5{bottom:243.200000pt;}
.y153{bottom:244.160000pt;}
.ya5{bottom:244.320000pt;}
.y218{bottom:245.120000pt;}
.y22a{bottom:249.440000pt;}
.y65{bottom:250.563840pt;}
.y72{bottom:255.680000pt;}
.y1b9{bottom:256.480000pt;}
.y18e{bottom:257.120000pt;}
.y163{bottom:257.440000pt;}
.y90{bottom:258.400000pt;}
.y17e{bottom:260.320000pt;}
.y21a{bottom:264.320000pt;}
.ye6{bottom:266.720000pt;}
.y1d8{bottom:268.000000pt;}
.y47{bottom:268.960000pt;}
.y31{bottom:269.920000pt;}
.yf4{bottom:271.040000pt;}
.y152{bottom:271.680000pt;}
.yc9{bottom:271.840000pt;}
.y85{bottom:272.800000pt;}
.y217{bottom:273.760000pt;}
.y210{bottom:274.400000pt;}
.y5c{bottom:276.480000pt;}
.y6b{bottom:276.640000pt;}
.y13{bottom:280.640000pt;}
.y71{bottom:283.200000pt;}
.y143{bottom:284.160000pt;}
.y162{bottom:285.120000pt;}
.ya4{bottom:285.280000pt;}
.y109{bottom:286.080000pt;}
.y214{bottom:289.920000pt;}
.y64{bottom:290.720000pt;}
.ye5{bottom:294.240000pt;}
.y1d7{bottom:295.680000pt;}
.y46{bottom:296.640000pt;}
.y1a8{bottom:297.280000pt;}
.y30{bottom:297.600000pt;}
.y16e{bottom:298.400000pt;}
.y8f{bottom:299.360000pt;}
.y17d{bottom:301.120000pt;}
.y216{bottom:305.760000pt;}
.y20f{bottom:306.400000pt;}
.y70{bottom:310.880000pt;}
.y142{bottom:311.680000pt;}
.yf3{bottom:311.840000pt;}
.y161{bottom:312.640000pt;}
.yc8{bottom:312.800000pt;}
.y84{bottom:313.600000pt;}
.y219{bottom:315.200000pt;}
.y5b{bottom:317.440000pt;}
.y12{bottom:321.440000pt;}
.y213{bottom:321.760000pt;}
.ye4{bottom:321.920000pt;}
.y1d6{bottom:323.200000pt;}
.y45{bottom:324.160000pt;}
.y2f{bottom:325.120000pt;}
.y1b8{bottom:325.280000pt;}
.y16d{bottom:325.920000pt;}
.ya3{bottom:326.240000pt;}
.y151{bottom:326.880000pt;}
.y63{bottom:330.720000pt;}
.y215{bottom:337.920000pt;}
.y6f{bottom:338.400000pt;}
.y1a7{bottom:338.560000pt;}
.yf2{bottom:339.360000pt;}
.y8e{bottom:340.320000pt;}
.y212{bottom:340.640000pt;}
.y108{bottom:341.280000pt;}
.y17c{bottom:342.080000pt;}
.ye3{bottom:350.720000pt;}
.y1d5{bottom:350.880000pt;}
.y44{bottom:351.840000pt;}
.y1b7{bottom:352.640000pt;}
.y16c{bottom:353.600000pt;}
.yc7{bottom:353.760000pt;}
.y83{bottom:354.560000pt;}
.y5a{bottom:358.240000pt;}
.y211{bottom:361.280000pt;}
.y11{bottom:362.400000pt;}
.y136{bottom:365.920000pt;}
.y2e{bottom:366.080000pt;}
.y1a6{bottom:366.240000pt;}
.y141{bottom:366.880000pt;}
.y18d{bottom:367.040000pt;}
.ya2{bottom:367.200000pt;}
.y107{bottom:368.800000pt;}
.y20e{bottom:370.560000pt;}
.y62{bottom:371.680000pt;}
.y1d4{bottom:378.400000pt;}
.y43{bottom:379.360000pt;}
.yf1{bottom:380.320000pt;}
.y160{bottom:381.120000pt;}
.y8d{bottom:381.280000pt;}
.y17b{bottom:383.040000pt;}
.ye2{bottom:392.640000pt;}
.y2d{bottom:393.600000pt;}
.y1a5{bottom:393.760000pt;}
.yc6{bottom:394.560000pt;}
.y1c3{bottom:394.720000pt;}
.y82{bottom:395.520000pt;}
.y59{bottom:399.200000pt;}
.y10{bottom:403.360000pt;}
.y128{bottom:405.760000pt;}
.y1d3{bottom:405.920000pt;}
.y135{bottom:406.880000pt;}
.y42{bottom:407.040000pt;}
.yf0{bottom:408.000000pt;}
.ya1{bottom:408.160000pt;}
.y16b{bottom:408.800000pt;}
.y106{bottom:409.760000pt;}
.y61{bottom:412.640000pt;}
.y20d{bottom:413.920000pt;}
.ye1{bottom:420.320000pt;}
.y207{bottom:420.640000pt;}
.y2c{bottom:421.280000pt;}
.y1b6{bottom:421.600000pt;}
.y15f{bottom:422.080000pt;}
.y8c{bottom:422.240000pt;}
.y20a{bottom:423.360000pt;}
.y17a{bottom:424.000000pt;}
.y20c{bottom:432.800000pt;}
.y1d2{bottom:433.600000pt;}
.y7b{bottom:434.560000pt;}
.y127{bottom:434.563840pt;}
.y1a4{bottom:435.040000pt;}
.yc5{bottom:435.520000pt;}
.y150{bottom:436.320000pt;}
.y81{bottom:436.480000pt;}
.y105{bottom:437.440000pt;}
.y206{bottom:439.520000pt;}
.y58{bottom:440.160000pt;}
.yf{bottom:444.320000pt;}
.ye0{bottom:447.840000pt;}
.y41{bottom:448.000000pt;}
.y2b{bottom:448.800000pt;}
.ya0{bottom:448.960000pt;}
.y1b5{bottom:449.120000pt;}
.y15e{bottom:449.760000pt;}
.y209{bottom:455.360000pt;}
.y126{bottom:460.000000pt;}
.y1d1{bottom:461.120000pt;}
.y7a{bottom:462.240000pt;}
.y1a3{bottom:462.400000pt;}
.y140{bottom:463.040000pt;}
.y8b{bottom:463.200000pt;}
.yb7{bottom:464.000000pt;}
.y20b{bottom:464.800000pt;}
.y104{bottom:464.960000pt;}
.y205{bottom:471.360000pt;}
.y202{bottom:472.000000pt;}
.y40{bottom:475.520000pt;}
.yc4{bottom:476.480000pt;}
.ydf{bottom:476.800000pt;}
.y15d{bottom:477.280000pt;}
.y80{bottom:477.440000pt;}
.y124{bottom:477.920000pt;}
.y57{bottom:481.120000pt;}
.ye{bottom:485.280000pt;}
.y208{bottom:487.360000pt;}
.y1d0{bottom:488.800000pt;}
.y2a{bottom:489.760000pt;}
.y9f{bottom:489.920000pt;}
.y1a2{bottom:490.080000pt;}
.y204{bottom:490.240000pt;}
.y13f{bottom:490.720000pt;}
.y18c{bottom:490.880000pt;}
.y14f{bottom:491.520000pt;}
.yb6{bottom:491.680000pt;}
.y103{bottom:492.640000pt;}
.y134{bottom:503.040000pt;}
.y3f{bottom:503.200000pt;}
.y8a{bottom:504.000000pt;}
.yde{bottom:504.800000pt;}
.y15c{bottom:504.960000pt;}
.y179{bottom:505.920000pt;}
.y203{bottom:510.880000pt;}
.y1cf{bottom:516.320000pt;}
.y29{bottom:517.440000pt;}
.y1b4{bottom:517.760000pt;}
.y7f{bottom:518.240000pt;}
.y1c2{bottom:518.400000pt;}
.y14e{bottom:519.200000pt;}
.y123{bottom:519.360000pt;}
.y102{bottom:520.160000pt;}
.y56{bottom:522.080000pt;}
.yd{bottom:526.080000pt;}
.y3e{bottom:530.720000pt;}
.y9e{bottom:530.880000pt;}
.y1a1{bottom:531.200000pt;}
.yef{bottom:531.680000pt;}
.ydd{bottom:532.320000pt;}
.y15b{bottom:532.480000pt;}
.yb5{bottom:532.640000pt;}
.y224{bottom:533.440000pt;}
.y1ce{bottom:544.000000pt;}
.y1ff{bottom:544.320000pt;}
.y28{bottom:544.960000pt;}
.y6e{bottom:545.120000pt;}
.y1b3{bottom:545.600000pt;}
.y13e{bottom:545.920000pt;}
.y14d{bottom:546.720000pt;}
.y121{bottom:550.080000pt;}
.y3d{bottom:558.240000pt;}
.y1a0{bottom:558.880000pt;}
.y7e{bottom:559.200000pt;}
.ydc{bottom:560.000000pt;}
.yb4{bottom:560.160000pt;}
.y101{bottom:561.120000pt;}
.y55{bottom:563.040000pt;}
.y201{bottom:563.520000pt;}
.yc{bottom:567.040000pt;}
.y1fb{bottom:570.240000pt;}
.y1cd{bottom:571.520000pt;}
.y9d{bottom:571.840000pt;}
.y27{bottom:572.640000pt;}
.y6d{bottom:572.800000pt;}
.y1fe{bottom:572.960000pt;}
.y1b2{bottom:573.120000pt;}
.y16a{bottom:573.440000pt;}
.y200{bottom:582.400000pt;}
.y120{bottom:584.000000pt;}
.y3c{bottom:585.920000pt;}
.y19f{bottom:586.400000pt;}
.y13d{bottom:586.720000pt;}
.yee{bottom:586.880000pt;}
.y18b{bottom:587.040000pt;}
.ydb{bottom:587.520000pt;}
.y14c{bottom:587.680000pt;}
.yb3{bottom:587.840000pt;}
.y223{bottom:588.640000pt;}
.y1fa{bottom:589.120000pt;}
.y1cc{bottom:599.200000pt;}
.y26{bottom:600.160000pt;}
.y79{bottom:600.320000pt;}
.yc3{bottom:600.480000pt;}
.y169{bottom:601.120000pt;}
.y100{bottom:602.080000pt;}
.y54{bottom:603.840000pt;}
.y1fd{bottom:604.960000pt;}
.y11f{bottom:607.200000pt;}
.y9c{bottom:612.800000pt;}
.y3b{bottom:613.440000pt;}
.y19e{bottom:614.080000pt;}
.y175{bottom:614.400000pt;}
.yda{bottom:615.200000pt;}
.yb2{bottom:615.360000pt;}
.yb{bottom:618.374240pt;}
.y1f9{bottom:620.960000pt;}
.y1f5{bottom:621.600000pt;}
.y1cb{bottom:626.720000pt;}
.y25{bottom:627.840000pt;}
.y78{bottom:628.000000pt;}
.yc2{bottom:628.160000pt;}
.y14b{bottom:628.640000pt;}
.yff{bottom:629.600000pt;}
.y1fc{bottom:636.960000pt;}
.y1f8{bottom:639.840000pt;}
.y3a{bottom:641.120000pt;}
.y1b1{bottom:641.760000pt;}
.y174{bottom:641.920000pt;}
.y1c1{bottom:642.080000pt;}
.yd9{bottom:642.720000pt;}
.y15a{bottom:642.880000pt;}
.y53{bottom:644.800000pt;}
.y6a{bottom:644.960000pt;}
.y11c{bottom:646.400000pt;}
.y9b{bottom:653.600000pt;}
.y133{bottom:654.400000pt;}
.y19d{bottom:655.200000pt;}
.y24{bottom:655.360000pt;}
.y13c{bottom:655.520000pt;}
.yc1{bottom:655.840000pt;}
.y14a{bottom:656.160000pt;}
.yb1{bottom:656.320000pt;}
.y222{bottom:657.120000pt;}
.y1f6{bottom:660.480000pt;}
.y39{bottom:668.640000pt;}
.ya{bottom:668.940800pt;}
.y173{bottom:669.600000pt;}
.yd8{bottom:670.400000pt;}
.yfe{bottom:670.560000pt;}
.y132{bottom:681.920000pt;}
.y19c{bottom:682.720000pt;}
.y18a{bottom:682.880000pt;}
.y23{bottom:683.040000pt;}
.yc0{bottom:683.520000pt;}
.yb0{bottom:683.840000pt;}
.y52{bottom:685.760000pt;}
.y1f0{bottom:693.920000pt;}
.y9a{bottom:694.560000pt;}
.y38{bottom:696.320000pt;}
.y172{bottom:697.120000pt;}
.yd7{bottom:697.920000pt;}
.y221{bottom:698.080000pt;}
.yfd{bottom:698.240000pt;}
.y118{bottom:704.960000pt;}
.y131{bottom:709.600000pt;}
.y1ca{bottom:709.760000pt;}
.y22{bottom:710.560000pt;}
.ybf{bottom:711.040000pt;}
.y159{bottom:711.360000pt;}
.y1f4{bottom:713.120000pt;}
.y9{bottom:719.507360pt;}
.y1ec{bottom:719.840000pt;}
.y11b{bottom:721.280000pt;}
.y1ef{bottom:722.560000pt;}
.y37{bottom:723.840000pt;}
.y19b{bottom:724.000000pt;}
.yaf{bottom:724.800000pt;}
.yd6{bottom:725.600000pt;}
.y220{bottom:725.760000pt;}
.y51{bottom:726.720000pt;}
.y115{bottom:730.880000pt;}
.y1f3{bottom:732.000000pt;}
.y99{bottom:735.520000pt;}
.y130{bottom:737.120000pt;}
.y1c9{bottom:737.280000pt;}
.y117{bottom:737.600000pt;}
.y1c0{bottom:738.080000pt;}
.y7d{bottom:738.240000pt;}
.ybe{bottom:738.720000pt;}
.yfc{bottom:739.040000pt;}
.y11a{bottom:740.640000pt;}
.y112{bottom:750.240000pt;}
.y178{bottom:751.360000pt;}
.y21{bottom:751.520000pt;}
.y189{bottom:751.840000pt;}
.y149{bottom:752.320000pt;}
.yae{bottom:752.480000pt;}
.y21f{bottom:753.280000pt;}
.y1ee{bottom:754.560000pt;}
.y116{bottom:756.960000pt;}
.y98{bottom:763.200000pt;}
.y114{bottom:763.680000pt;}
.y1f2{bottom:763.840000pt;}
.y12f{bottom:764.800000pt;}
.y1c8{bottom:764.960000pt;}
.yed{bottom:765.760000pt;}
.y1bf{bottom:765.920000pt;}
.yd5{bottom:766.560000pt;}
.yfb{bottom:766.720000pt;}
.y50{bottom:767.680000pt;}
.y1eb{bottom:770.560000pt;}
.y1e7{bottom:772.160000pt;}
.y119{bottom:773.440000pt;}
.y20{bottom:779.040000pt;}
.y1b0{bottom:779.360000pt;}
.y188{bottom:779.520000pt;}
.ybd{bottom:779.840000pt;}
.yad{bottom:780.000000pt;}
.y21e{bottom:780.960000pt;}
.y8{bottom:783.513440pt;}
.y1ed{bottom:786.560000pt;}
.y1ea{bottom:789.440000pt;}
.y97{bottom:790.720000pt;}
.y12e{bottom:792.320000pt;}
.y19a{bottom:792.800000pt;}
.y171{bottom:793.280000pt;}
.yec{bottom:793.440000pt;}
.y110{bottom:804.000000pt;}
.y177{bottom:806.560000pt;}
.y1f{bottom:806.720000pt;}
.y187{bottom:806.880000pt;}
.yd4{bottom:807.360000pt;}
.y168{bottom:807.520000pt;}
.yfa{bottom:807.680000pt;}
.y4f{bottom:808.480000pt;}
.y1e8{bottom:811.840000pt;}
.y96{bottom:818.400000pt;}
.y12d{bottom:820.000000pt;}
.y1c7{bottom:820.160000pt;}
.y199{bottom:820.320000pt;}
.y1af{bottom:820.640000pt;}
.ybc{bottom:820.800000pt;}
.yac{bottom:820.960000pt;}
.y21d{bottom:821.760000pt;}
.y7{bottom:834.080000pt;}
.y1e{bottom:834.240000pt;}
.y1be{bottom:834.400000pt;}
.yd3{bottom:835.040000pt;}
.yf9{bottom:835.200000pt;}
.y1e2{bottom:846.880000pt;}
.y95{bottom:847.360000pt;}
.y12c{bottom:847.520000pt;}
.y1c6{bottom:847.680000pt;}
.y1ae{bottom:848.000000pt;}
.y186{bottom:848.160000pt;}
.ybb{bottom:848.320000pt;}
.yab{bottom:848.480000pt;}
.y4e{bottom:849.440000pt;}
.y21c{bottom:849.600000pt;}
.y198{bottom:861.600000pt;}
.y158{bottom:861.760000pt;}
.y1d{bottom:861.920000pt;}
.yd2{bottom:862.560000pt;}
.y1e5{bottom:866.080000pt;}
.y1e0{bottom:868.800000pt;}
.y94{bottom:875.200000pt;}
.y1c5{bottom:875.360000pt;}
.y185{bottom:875.680000pt;}
.yba{bottom:876.000000pt;}
.yaa{bottom:876.160000pt;}
.y10f{bottom:876.960000pt;}
.y1e6{bottom:884.800000pt;}
.y1e4{bottom:884.960000pt;}
.y197{bottom:888.960000pt;}
.y1c{bottom:889.440000pt;}
.yd1{bottom:890.240000pt;}
.y4d{bottom:890.400000pt;}
.y6{bottom:890.880000pt;}
.y1e1{bottom:894.240000pt;}
.y1df{bottom:900.800000pt;}
.y12b{bottom:902.720000pt;}
.y77{bottom:902.880000pt;}
.y184{bottom:903.360000pt;}
.yb9{bottom:903.520000pt;}
.ya9{bottom:903.680000pt;}
.y196{bottom:916.640000pt;}
.y148{bottom:916.960000pt;}
.y1b{bottom:917.120000pt;}
.yd0{bottom:917.760000pt;}
.y10e{bottom:925.760000pt;}
.y76{bottom:930.400000pt;}
.yb8{bottom:931.200000pt;}
.y4c{bottom:931.360000pt;}
.y69{bottom:931.520000pt;}
.y5{bottom:938.720000pt;}
.y229{bottom:941.600000pt;}
.y183{bottom:944.480000pt;}
.y1a{bottom:944.640000pt;}
.y12a{bottom:957.920000pt;}
.y36{bottom:958.080000pt;}
.ycf{bottom:958.720000pt;}
.y10d{bottom:966.720000pt;}
.y182{bottom:972.000000pt;}
.y167{bottom:972.160000pt;}
.y19{bottom:972.320000pt;}
.y228{bottom:982.560000pt;}
.y195{bottom:985.280000pt;}
.y35{bottom:985.600000pt;}
.y4{bottom:986.560000pt;}
.yce{bottom:986.720000pt;}
.y10c{bottom:994.240000pt;}
.y227{bottom:1000.480000pt;}
.y3{bottom:1009.600000pt;}
.y194{bottom:1012.960000pt;}
.y129{bottom:1013.120000pt;}
.y18{bottom:1013.280000pt;}
.y226{bottom:1015.840000pt;}
.h11{height:32.000000pt;}
.h13{height:32.160000pt;}
.hf{height:38.128125pt;}
.h9{height:38.560000pt;}
.hb{height:38.718667pt;}
.h2{height:42.262500pt;}
.h6{height:45.937500pt;}
.h15{height:55.402500pt;}
.hc{height:56.480000pt;}
.h8{height:61.410000pt;}
.h5{height:66.750000pt;}
.h10{height:69.440000pt;}
.hd{height:71.520000pt;}
.h7{height:72.090000pt;}
.he{height:74.162500pt;}
.h3{height:83.437500pt;}
.h12{height:114.880000pt;}
.h14{height:114.881333pt;}
.ha{height:117.600000pt;}
.h4{height:122.152500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:55.361333pt;}
.wa{width:55.518667pt;}
.wb{width:55.520000pt;}
.wc{width:55.680000pt;}
.w10{width:55.840000pt;}
.w11{width:55.998667pt;}
.w8{width:59.680000pt;}
.wd{width:63.840000pt;}
.we{width:64.961333pt;}
.w6{width:76.481333pt;}
.w3{width:77.280000pt;}
.w9{width:77.760000pt;}
.w7{width:78.401333pt;}
.w4{width:97.600000pt;}
.w5{width:132.640000pt;}
.w2{width:216.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.880000pt;}
.x45{left:8.160000pt;}
.x42{left:10.240000pt;}
.x4b{left:12.160000pt;}
.x3c{left:14.720000pt;}
.x43{left:19.200000pt;}
.x22{left:25.120000pt;}
.x52{left:27.840000pt;}
.x2e{left:30.080000pt;}
.x61{left:31.840000pt;}
.x2f{left:33.760000pt;}
.x26{left:35.680000pt;}
.x31{left:38.240000pt;}
.x1e{left:39.680000pt;}
.x33{left:43.840000pt;}
.x20{left:45.760000pt;}
.x30{left:48.640000pt;}
.x1a{left:52.960000pt;}
.x39{left:54.400000pt;}
.x2d{left:56.960000pt;}
.x34{left:61.280000pt;}
.x14{left:65.440000pt;}
.x3a{left:67.360000pt;}
.x40{left:80.960000pt;}
.x19{left:87.680000pt;}
.x17{left:94.563200pt;}
.x12{left:109.440000pt;}
.x2{left:113.438080pt;}
.x41{left:115.520000pt;}
.x36{left:121.920000pt;}
.x6{left:124.324480pt;}
.x7{left:128.335840pt;}
.x23{left:130.080000pt;}
.x4f{left:132.160000pt;}
.x4e{left:134.240000pt;}
.xf{left:137.440000pt;}
.x18{left:141.760000pt;}
.x13{left:157.440000pt;}
.x32{left:158.560000pt;}
.x72{left:160.160000pt;}
.x10{left:161.440000pt;}
.x37{left:165.123200pt;}
.x3b{left:176.320000pt;}
.x35{left:180.160000pt;}
.x4{left:191.200000pt;}
.x3d{left:193.440000pt;}
.x3e{left:194.400000pt;}
.x8{left:196.821760pt;}
.x51{left:204.320000pt;}
.x50{left:207.840000pt;}
.x3{left:240.480000pt;}
.x44{left:255.680000pt;}
.x54{left:267.040000pt;}
.x69{left:268.640000pt;}
.x53{left:272.320000pt;}
.x55{left:274.720000pt;}
.x3f{left:276.320000pt;}
.x5{left:287.355520pt;}
.x1b{left:304.320000pt;}
.x46{left:312.640000pt;}
.x57{left:324.000000pt;}
.x6a{left:325.600000pt;}
.x56{left:329.280000pt;}
.x58{left:331.680000pt;}
.xd{left:352.160000pt;}
.x47{left:369.600000pt;}
.x5a{left:380.800000pt;}
.x1d{left:382.400000pt;}
.x59{left:386.080000pt;}
.x25{left:389.120000pt;}
.x24{left:413.600000pt;}
.x48{left:426.400000pt;}
.x5c{left:437.760000pt;}
.x6b{left:439.360000pt;}
.x5b{left:443.040000pt;}
.x5d{left:445.440000pt;}
.x38{left:459.200000pt;}
.xa{left:467.680000pt;}
.x1f{left:480.800000pt;}
.x49{left:483.360000pt;}
.x5f{left:494.720000pt;}
.x6c{left:496.320000pt;}
.x5e{left:500.000000pt;}
.x60{left:502.400000pt;}
.x9{left:505.120000pt;}
.x27{left:506.240000pt;}
.x29{left:518.080000pt;}
.x28{left:526.240000pt;}
.x4a{left:540.320000pt;}
.xc{left:546.080000pt;}
.x6e{left:547.040000pt;}
.x63{left:555.840000pt;}
.x62{left:560.960000pt;}
.x64{left:563.520000pt;}
.x6d{left:572.160000pt;}
.x4c{left:605.440000pt;}
.x6f{left:612.800000pt;}
.x21{left:614.080000pt;}
.x66{left:621.440000pt;}
.x65{left:626.720000pt;}
.x2a{left:628.160000pt;}
.xe{left:629.600000pt;}
.x2c{left:636.000000pt;}
.x2b{left:637.600000pt;}
.x15{left:665.440000pt;}
.x4d{left:671.680000pt;}
.x11{left:672.960000pt;}
.x1{left:680.320000pt;}
.x16{left:684.320000pt;}
.x67{left:688.160000pt;}
.x68{left:690.560000pt;}
.xb{left:702.560000pt;}
.x70{left:715.360000pt;}
.x71{left:737.440000pt;}
}




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