
    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_a56098690e0b5083fe9a685c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.101562;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_0c36c9905aff87a625a800fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7816ee34be6ade16554bd88a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fc77f3194eb55359f6541669.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9fe7b28a52aa2b23312e08d8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_344e1c37722fd521f2f92b34.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_31971a867c8e8139141297e7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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_0e321b24cc7c2e8110ab4683.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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_4a4ab8978f1fcb1b8b786387.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8151bbb5968ce69ce42b7df8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.931641;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_e7aa1db572198539b6d92b0f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.929199;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_4f0195ea73583a148fb5e2b8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.102539;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_787aaeb084ee468a3d89f35b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_dec01e997d3afd5ae1616d9d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v5{vertical-align:2.880000px;}
.v6{vertical-align:21.600000px;}
.v7{vertical-align:27.360000px;}
.v4{vertical-align:35.989200px;}
.v3{vertical-align:42.480000px;}
.v2{vertical-align:48.240000px;}
.v1{vertical-align:54.720000px;}
.ls2b{letter-spacing:-2.160000px;}
.ls51{letter-spacing:-0.936000px;}
.ls4a{letter-spacing:-0.728640px;}
.ls2a{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.576000px;}
.ls3b{letter-spacing:-0.562320px;}
.ls2e{letter-spacing:-0.432000px;}
.ls48{letter-spacing:-0.397440px;}
.ls23{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.331200px;}
.ls6{letter-spacing:-0.288000px;}
.ls3a{letter-spacing:-0.255600px;}
.ls12{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.132480px;}
.ls5{letter-spacing:0.144000px;}
.ls39{letter-spacing:0.153360px;}
.ls22{letter-spacing:0.216000px;}
.ls37{letter-spacing:0.255600px;}
.ls38{letter-spacing:0.255840px;}
.ls46{letter-spacing:0.264960px;}
.lsd{letter-spacing:0.288000px;}
.ls49{letter-spacing:0.331200px;}
.ls7{letter-spacing:0.336960px;}
.ls42{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls2d{letter-spacing:0.504000px;}
.ls41{letter-spacing:0.648000px;}
.lse{letter-spacing:0.720000px;}
.ls43{letter-spacing:1.296000px;}
.lsb{letter-spacing:1.440000px;}
.ls11{letter-spacing:2.160000px;}
.lsa{letter-spacing:2.880000px;}
.ls1{letter-spacing:3.600000px;}
.ls2{letter-spacing:4.320000px;}
.ls8{letter-spacing:5.040000px;}
.ls10{letter-spacing:5.760000px;}
.ls31{letter-spacing:7.200000px;}
.ls34{letter-spacing:7.920000px;}
.ls20{letter-spacing:8.640000px;}
.ls4b{letter-spacing:9.360000px;}
.ls4e{letter-spacing:10.080000px;}
.ls30{letter-spacing:11.520000px;}
.ls50{letter-spacing:11.592000px;}
.ls1a{letter-spacing:11.880000px;}
.ls32{letter-spacing:12.240000px;}
.ls40{letter-spacing:13.680000px;}
.ls1f{letter-spacing:14.400000px;}
.ls26{letter-spacing:15.120000px;}
.ls19{letter-spacing:16.056000px;}
.ls29{letter-spacing:16.560000px;}
.ls47{letter-spacing:17.280000px;}
.ls33{letter-spacing:18.000000px;}
.ls15{letter-spacing:18.720000px;}
.ls28{letter-spacing:19.440000px;}
.ls17{letter-spacing:19.656000px;}
.ls9{letter-spacing:20.160000px;}
.ls1b{letter-spacing:20.376000px;}
.lsc{letter-spacing:20.880000px;}
.ls3f{letter-spacing:21.600000px;}
.ls2c{letter-spacing:23.040000px;}
.ls3e{letter-spacing:25.200000px;}
.ls4c{letter-spacing:26.640000px;}
.ls35{letter-spacing:28.080000px;}
.ls1d{letter-spacing:31.680000px;}
.ls25{letter-spacing:33.984000px;}
.lsf{letter-spacing:37.440000px;}
.ls1e{letter-spacing:38.160000px;}
.ls45{letter-spacing:48.161520px;}
.ls4f{letter-spacing:48.240000px;}
.ls2f{letter-spacing:54.864000px;}
.ls4d{letter-spacing:56.880000px;}
.ls0{letter-spacing:64.016640px;}
.ls44{letter-spacing:119.441520px;}
.ls36{letter-spacing:194.400000px;}
.ls3c{letter-spacing:407.520000px;}
.ls3d{letter-spacing:411.840000px;}
.ls1c{letter-spacing:620.064000px;}
.ls18{letter-spacing:627.984000px;}
.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;}
}
.ws2f{word-spacing:-72.216000px;}
.ws33{word-spacing:-72.072000px;}
.ws2e{word-spacing:-72.000000px;}
.ws2d{word-spacing:-71.928000px;}
.ws31{word-spacing:-71.856000px;}
.ws35{word-spacing:-71.784000px;}
.ws34{word-spacing:-71.712000px;}
.ws1{word-spacing:-59.760000px;}
.ws37{word-spacing:-54.864000px;}
.ws36{word-spacing:-51.624000px;}
.ws56{word-spacing:-51.273360px;}
.ws57{word-spacing:-50.557680px;}
.ws32{word-spacing:-50.400000px;}
.ws2b{word-spacing:-18.720000px;}
.ws4d{word-spacing:-18.432000px;}
.ws55{word-spacing:-18.288000px;}
.ws50{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.144000px;}
.ws75{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws2c{word-spacing:-17.856000px;}
.ws1e{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws48{word-spacing:-17.568000px;}
.ws61{word-spacing:-16.891200px;}
.ws5e{word-spacing:-16.692480px;}
.ws0{word-spacing:-16.560000px;}
.ws5f{word-spacing:-16.228800px;}
.ws60{word-spacing:-16.162560px;}
.ws5c{word-spacing:-15.840000px;}
.ws62{word-spacing:-15.831360px;}
.ws30{word-spacing:-15.552000px;}
.ws40{word-spacing:-4.320000px;}
.ws3f{word-spacing:-4.032000px;}
.ws59{word-spacing:-3.888000px;}
.ws1b{word-spacing:-3.600000px;}
.ws14{word-spacing:-2.880000px;}
.ws44{word-spacing:-2.592000px;}
.ws27{word-spacing:-2.160000px;}
.ws64{word-spacing:-1.872000px;}
.ws21{word-spacing:-1.440000px;}
.wsd{word-spacing:-1.263600px;}
.ws3c{word-spacing:-0.728640px;}
.ws11{word-spacing:-0.720000px;}
.ws26{word-spacing:-0.432000px;}
.ws8{word-spacing:-0.336960px;}
.wsf{word-spacing:-0.288000px;}
.ws6{word-spacing:-0.144000px;}
.ws24{word-spacing:-0.132480px;}
.ws4{word-spacing:0.000000px;}
.ws4a{word-spacing:0.144000px;}
.ws4e{word-spacing:0.216000px;}
.ws5a{word-spacing:0.255600px;}
.ws9{word-spacing:0.288000px;}
.ws5{word-spacing:0.331200px;}
.ws3d{word-spacing:0.576000px;}
.wsb{word-spacing:0.720000px;}
.ws73{word-spacing:0.936000px;}
.ws19{word-spacing:1.440000px;}
.ws1a{word-spacing:1.728000px;}
.ws23{word-spacing:2.160000px;}
.ws54{word-spacing:2.448000px;}
.ws43{word-spacing:2.880000px;}
.ws76{word-spacing:3.024000px;}
.ws42{word-spacing:3.168000px;}
.wsc{word-spacing:3.600000px;}
.ws5d{word-spacing:4.176000px;}
.ws4c{word-spacing:4.320000px;}
.ws15{word-spacing:5.040000px;}
.ws7{word-spacing:5.328000px;}
.ws20{word-spacing:5.760000px;}
.ws1c{word-spacing:6.480000px;}
.ws3e{word-spacing:6.768000px;}
.ws51{word-spacing:7.200000px;}
.ws25{word-spacing:7.920000px;}
.ws1d{word-spacing:8.640000px;}
.ws65{word-spacing:8.928000px;}
.ws6c{word-spacing:9.360000px;}
.ws38{word-spacing:9.648000px;}
.ws49{word-spacing:9.792000px;}
.ws45{word-spacing:10.080000px;}
.ws74{word-spacing:10.224000px;}
.ws6e{word-spacing:10.368000px;}
.ws6b{word-spacing:10.656000px;}
.ws47{word-spacing:10.800000px;}
.ws4f{word-spacing:11.088000px;}
.ws71{word-spacing:11.520000px;}
.ws17{word-spacing:12.960000px;}
.ws16{word-spacing:13.248000px;}
.ws3b{word-spacing:13.968000px;}
.ws22{word-spacing:14.400000px;}
.ws68{word-spacing:14.688000px;}
.ws53{word-spacing:15.120000px;}
.ws28{word-spacing:15.840000px;}
.ws18{word-spacing:16.560000px;}
.ws4b{word-spacing:16.992000px;}
.ws70{word-spacing:17.136000px;}
.ws6f{word-spacing:17.280000px;}
.ws63{word-spacing:17.568000px;}
.ws1f{word-spacing:18.000000px;}
.ws2a{word-spacing:18.576000px;}
.ws29{word-spacing:18.720000px;}
.ws41{word-spacing:19.440000px;}
.wse{word-spacing:20.160000px;}
.ws6a{word-spacing:20.448000px;}
.ws10{word-spacing:20.880000px;}
.ws69{word-spacing:23.040000px;}
.ws67{word-spacing:25.200000px;}
.ws58{word-spacing:28.080000px;}
.ws52{word-spacing:28.800000px;}
.ws5b{word-spacing:30.960000px;}
.ws39{word-spacing:31.680000px;}
.ws72{word-spacing:33.840000px;}
.ws3a{word-spacing:37.152000px;}
.ws13{word-spacing:37.440000px;}
.ws12{word-spacing:37.728000px;}
.ws46{word-spacing:45.360000px;}
.ws6d{word-spacing:48.528000px;}
.ws66{word-spacing:56.592000px;}
._28{margin-left:-194.400000px;}
._39{margin-left:-47.649600px;}
._1a{margin-left:-37.152000px;}
._16{margin-left:-20.646432px;}
._15{margin-left:-19.631520px;}
._29{margin-left:-18.000000px;}
._37{margin-left:-8.543520px;}
._3a{margin-left:-6.221664px;}
._1b{margin-left:-4.992480px;}
._12{margin-left:-3.719520px;}
._10{margin-left:-2.109600px;}
._1{margin-left:-1.092960px;}
._0{width:1.139328px;}
._d{width:2.198016px;}
._9{width:3.384000px;}
._a{width:4.392000px;}
._b{width:5.412672px;}
._e{width:6.539328px;}
._4{width:8.208000px;}
._5{width:9.216000px;}
._c{width:10.440000px;}
._1c{width:11.579904px;}
._2{width:12.672000px;}
._3{width:13.752000px;}
._7{width:14.832000px;}
._6{width:16.776000px;}
._13{width:19.872000px;}
._14{width:20.964672px;}
._1f{width:22.392000px;}
._20{width:23.497344px;}
._18{width:24.552000px;}
._31{width:25.632000px;}
._17{width:26.687232px;}
._8{width:27.792000px;}
._11{width:28.837440px;}
._23{width:30.168000px;}
._1d{width:31.536000px;}
._1e{width:33.048000px;}
._f{width:34.416000px;}
._27{width:36.072000px;}
._19{width:37.104480px;}
._24{width:38.410272px;}
._25{width:40.176000px;}
._3b{width:41.184000px;}
._38{width:48.984480px;}
._26{width:50.400000px;}
._33{width:56.592000px;}
._34{width:57.643200px;}
._35{width:60.360480px;}
._36{width:61.462944px;}
._3c{width:126.936000px;}
._3d{width:127.944000px;}
._2a{width:195.120000px;}
._2f{width:246.240000px;}
._2d{width:252.601344px;}
._2e{width:257.412672px;}
._2b{width:271.800000px;}
._2c{width:292.680000px;}
._30{width:300.240000px;}
._21{width:372.240000px;}
._22{width:460.831680px;}
._32{width:722.880000px;}
.fc4{color:rgb(77,178,236);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:12.960000px;}
.yd3{bottom:14.220000px;}
.yd1{bottom:14.400000px;}
.y2{bottom:57.060000px;}
.y1{bottom:77.760000px;}
.y212{bottom:110.880000px;}
.ya4{bottom:115.183440px;}
.y21b{bottom:115.200000px;}
.y24f{bottom:116.100000px;}
.ycf{bottom:118.080000px;}
.y8d{bottom:118.980000px;}
.y22b{bottom:119.880000px;}
.y165{bottom:120.060000px;}
.y279{bottom:121.312800px;}
.y95{bottom:121.680000px;}
.y1a0{bottom:124.560000px;}
.y1c5{bottom:125.282700px;}
.y26e{bottom:125.820000px;}
.y1ad{bottom:126.360000px;}
.yde{bottom:127.080000px;}
.y17a{bottom:127.620000px;}
.y223{bottom:128.520000px;}
.y23{bottom:129.960000px;}
.y5a{bottom:130.500000px;}
.yeb{bottom:131.220000px;}
.y207{bottom:133.020000px;}
.yf9{bottom:133.200000px;}
.y1c4{bottom:134.280000px;}
.y6b{bottom:135.180000px;}
.ye4{bottom:135.720000px;}
.y149{bottom:136.800000px;}
.y24e{bottom:139.500000px;}
.y9c{bottom:142.740000px;}
.y211{bottom:145.260000px;}
.y44{bottom:146.160000px;}
.y172{bottom:147.060000px;}
.ya3{bottom:147.756960px;}
.yce{bottom:149.220000px;}
.yf0{bottom:149.940000px;}
.y118{bottom:150.660000px;}
.y21a{bottom:150.840000px;}
.y164{bottom:151.200000px;}
.y8c{bottom:153.360000px;}
.y278{bottom:154.979280px;}
.y19f{bottom:155.700000px;}
.y26d{bottom:156.780000px;}
.y1ac{bottom:157.500000px;}
.ydd{bottom:158.040000px;}
.y179{bottom:158.580000px;}
.y222{bottom:159.660000px;}
.y22{bottom:160.920000px;}
.y59{bottom:161.460000px;}
.yea{bottom:162.180000px;}
.y206{bottom:163.980000px;}
.yf8{bottom:164.160000px;}
.y94{bottom:164.700000px;}
.y6a{bottom:166.140000px;}
.y148{bottom:167.760000px;}
.yab{bottom:168.300000px;}
.yc3{bottom:168.480000px;}
.y232{bottom:169.740000px;}
.y199{bottom:170.460000px;}
.y1c3{bottom:170.820000px;}
.y1f3{bottom:174.600000px;}
.y171{bottom:178.200000px;}
.ye3{bottom:178.740000px;}
.y210{bottom:179.640000px;}
.ya2{bottom:180.164880px;}
.ycd{bottom:180.180000px;}
.y117{bottom:181.620000px;}
.y22a{bottom:181.980000px;}
.y163{bottom:182.160000px;}
.y9b{bottom:185.760000px;}
.y219{bottom:186.480000px;}
.y19e{bottom:186.660000px;}
.y8b{bottom:187.740000px;}
.y26c{bottom:187.920000px;}
.y1ab{bottom:188.460000px;}
.y277{bottom:188.811360px;}
.y43{bottom:189.180000px;}
.y221{bottom:190.620000px;}
.y21{bottom:192.060000px;}
.y58{bottom:192.600000px;}
.yef{bottom:192.960000px;}
.ye9{bottom:193.320000px;}
.y205{bottom:195.120000px;}
.yf7{bottom:195.300000px;}
.y69{bottom:197.280000px;}
.y147{bottom:198.900000px;}
.yc2{bottom:199.440000px;}
.y178{bottom:200.340000px;}
.y125{bottom:200.700000px;}
.y231{bottom:200.880000px;}
.y198{bottom:201.420000px;}
.y24d{bottom:201.600000px;}
.y1c2{bottom:201.780000px;}
.y1f2{bottom:205.560000px;}
.y93{bottom:207.720000px;}
.y170{bottom:209.160000px;}
.yaa{bottom:211.320000px;}
.ya1{bottom:212.572800px;}
.y116{bottom:212.760000px;}
.y229{bottom:212.940000px;}
.y162{bottom:213.300000px;}
.y20f{bottom:213.840000px;}
.y19d{bottom:217.800000px;}
.y26b{bottom:218.880000px;}
.y1aa{bottom:219.600000px;}
.y42{bottom:220.140000px;}
.ye2{bottom:221.760000px;}
.y8a{bottom:222.120000px;}
.y218{bottom:222.300000px;}
.y276{bottom:222.477840px;}
.y20{bottom:223.020000px;}
.y57{bottom:223.560000px;}
.y204{bottom:226.080000px;}
.yf6{bottom:226.260000px;}
.y68{bottom:228.240000px;}
.y9a{bottom:228.780000px;}
.y146{bottom:229.860000px;}
.yc1{bottom:230.580000px;}
.y124{bottom:231.660000px;}
.y230{bottom:231.840000px;}
.y197{bottom:232.560000px;}
.y1c1{bottom:232.920000px;}
.yee{bottom:234.720000px;}
.y1f1{bottom:236.700000px;}
.y16f{bottom:240.300000px;}
.ycc{bottom:242.280000px;}
.y115{bottom:243.720000px;}
.y228{bottom:244.080000px;}
.y161{bottom:244.260000px;}
.ya0{bottom:245.146320px;}
.y20e{bottom:248.220000px;}
.y19c{bottom:248.760000px;}
.y26a{bottom:250.020000px;}
.y1a9{bottom:250.560000px;}
.y92{bottom:250.740000px;}
.y41{bottom:251.280000px;}
.y220{bottom:252.720000px;}
.y1f{bottom:254.160000px;}
.ya9{bottom:254.520000px;}
.y56{bottom:254.700000px;}
.y275{bottom:256.309920px;}
.y89{bottom:256.320000px;}
.y203{bottom:257.220000px;}
.ye8{bottom:257.400000px;}
.y217{bottom:257.940000px;}
.y67{bottom:259.380000px;}
.y145{bottom:261.000000px;}
.yc0{bottom:261.540000px;}
.y177{bottom:261.900000px;}
.y123{bottom:262.800000px;}
.y22f{bottom:262.980000px;}
.ye1{bottom:263.520000px;}
.y24c{bottom:263.700000px;}
.y1c0{bottom:263.880000px;}
.y1f0{bottom:267.660000px;}
.yed{bottom:269.100000px;}
.y16e{bottom:271.260000px;}
.y99{bottom:271.800000px;}
.ycb{bottom:273.420000px;}
.y114{bottom:274.860000px;}
.y227{bottom:275.040000px;}
.y160{bottom:275.400000px;}
.y9f{bottom:277.554240px;}
.y19b{bottom:279.900000px;}
.y269{bottom:280.980000px;}
.y1a8{bottom:281.700000px;}
.y40{bottom:282.240000px;}
.y20d{bottom:282.600000px;}
.y21f{bottom:283.860000px;}
.y1e{bottom:285.120000px;}
.y55{bottom:285.660000px;}
.y202{bottom:288.180000px;}
.yf5{bottom:288.360000px;}
.y274{bottom:289.976400px;}
.y66{bottom:290.340000px;}
.y88{bottom:290.700000px;}
.y144{bottom:291.960000px;}
.y91{bottom:292.500000px;}
.ybf{bottom:292.680000px;}
.y216{bottom:293.580000px;}
.y122{bottom:293.760000px;}
.y196{bottom:294.660000px;}
.y1bf{bottom:295.020000px;}
.ya8{bottom:296.100000px;}
.ye7{bottom:296.460000px;}
.ye0{bottom:297.900000px;}
.y22e{bottom:298.260000px;}
.y1ef{bottom:298.800000px;}
.y16d{bottom:302.400000px;}
.yca{bottom:304.380000px;}
.y113{bottom:305.820000px;}
.y15f{bottom:306.360000px;}
.yec{bottom:308.160000px;}
.y226{bottom:310.320000px;}
.y19a{bottom:310.860000px;}
.y268{bottom:312.120000px;}
.y1a7{bottom:312.660000px;}
.y3f{bottom:313.200000px;}
.ydc{bottom:313.380000px;}
.y98{bottom:313.560000px;}
.y1d{bottom:316.260000px;}
.y54{bottom:316.800000px;}
.y20c{bottom:316.980000px;}
.y9e{bottom:318.060000px;}
.yf4{bottom:319.320000px;}
.y21e{bottom:319.500000px;}
.y65{bottom:321.300000px;}
.y87{bottom:321.840000px;}
.y143{bottom:323.100000px;}
.ybe{bottom:323.640000px;}
.y273{bottom:323.642880px;}
.y121{bottom:324.900000px;}
.y195{bottom:325.620000px;}
.y24b{bottom:325.800000px;}
.y1be{bottom:325.980000px;}
.y90{bottom:326.880000px;}
.y215{bottom:328.860000px;}
.y1ee{bottom:329.940000px;}
.ya7{bottom:330.660000px;}
.y22d{bottom:332.640000px;}
.y16c{bottom:333.360000px;}
.yc9{bottom:335.520000px;}
.ydf{bottom:336.960000px;}
.y15e{bottom:337.500000px;}
.y139{bottom:342.000000px;}
.y267{bottom:343.080000px;}
.y3e{bottom:344.340000px;}
.y225{bottom:344.700000px;}
.y1c{bottom:347.220000px;}
.y53{bottom:347.760000px;}
.y97{bottom:347.940000px;}
.y112{bottom:348.840000px;}
.y201{bottom:350.280000px;}
.y20b{bottom:351.360000px;}
.y64{bottom:352.440000px;}
.y86{bottom:352.800000px;}
.y142{bottom:354.060000px;}
.y1a6{bottom:354.420000px;}
.ybd{bottom:354.780000px;}
.y120{bottom:355.860000px;}
.y194{bottom:356.760000px;}
.y1bd{bottom:357.120000px;}
.y272{bottom:357.474960px;}
.y1dc{bottom:357.480000px;}
.y1a3{bottom:358.920000px;}
.y22c{bottom:359.640000px;}
.yf3{bottom:361.080000px;}
.y214{bottom:363.240000px;}
.y16b{bottom:364.500000px;}
.y8f{bottom:365.940000px;}
.yc8{bottom:366.480000px;}
.y15d{bottom:368.460000px;}
.ya6{bottom:369.540000px;}
.y224{bottom:371.700000px;}
.y138{bottom:372.960000px;}
.y266{bottom:374.220000px;}
.y3d{bottom:375.300000px;}
.ydb{bottom:375.480000px;}
.y1b{bottom:378.360000px;}
.y52{bottom:378.900000px;}
.y111{bottom:379.980000px;}
.y200{bottom:381.420000px;}
.y63{bottom:383.400000px;}
.y85{bottom:383.940000px;}
.y20a{bottom:385.560000px;}
.ybc{bottom:385.740000px;}
.y96{bottom:387.000000px;}
.y193{bottom:387.720000px;}
.y24a{bottom:387.900000px;}
.y1bc{bottom:388.080000px;}
.y1db{bottom:388.440000px;}
.y1a5{bottom:388.800000px;}
.y21d{bottom:389.160000px;}
.y213{bottom:390.240000px;}
.y271{bottom:391.141440px;}
.y9d{bottom:391.500000px;}
.y1a2{bottom:393.300000px;}
.y16a{bottom:395.460000px;}
.yf2{bottom:395.640000px;}
.y141{bottom:395.820000px;}
.y1ed{bottom:397.260000px;}
.yc7{bottom:397.620000px;}
.y15c{bottom:399.600000px;}
.y137{bottom:404.100000px;}
.y265{bottom:405.180000px;}
.y3c{bottom:406.440000px;}
.y1a{bottom:409.320000px;}
.y51{bottom:409.860000px;}
.y110{bottom:410.940000px;}
.y1ff{bottom:412.380000px;}
.y62{bottom:414.540000px;}
.y84{bottom:414.900000px;}
.ybb{bottom:416.880000px;}
.y11f{bottom:417.960000px;}
.y192{bottom:418.860000px;}
.y1da{bottom:419.580000px;}
.y209{bottom:419.940000px;}
.y21c{bottom:420.840000px;}
.y1bb{bottom:423.720000px;}
.y270{bottom:424.973520px;}
.y169{bottom:426.600000px;}
.y1a4{bottom:427.860000px;}
.y1ec{bottom:428.220000px;}
.y140{bottom:430.200000px;}
.y15b{bottom:430.560000px;}
.y1a1{bottom:432.360000px;}
.yf1{bottom:434.520000px;}
.y136{bottom:435.060000px;}
.y264{bottom:436.320000px;}
.y3b{bottom:437.400000px;}
.y19{bottom:440.460000px;}
.y50{bottom:441.000000px;}
.y10f{bottom:442.080000px;}
.y1fe{bottom:443.520000px;}
.yc6{bottom:445.320000px;}
.y61{bottom:445.500000px;}
.y83{bottom:445.860000px;}
.y11e{bottom:449.100000px;}
.yda{bottom:449.460000px;}
.y191{bottom:449.820000px;}
.y249{bottom:450.000000px;}
.y1d9{bottom:450.540000px;}
.y208{bottom:454.320000px;}
.y13f{bottom:457.200000px;}
.y168{bottom:457.560000px;}
.yba{bottom:458.460000px;}
.y26f{bottom:458.640000px;}
.y1eb{bottom:459.360000px;}
.y15a{bottom:461.700000px;}
.y135{bottom:466.200000px;}
.y263{bottom:467.280000px;}
.y3a{bottom:468.540000px;}
.y18{bottom:471.420000px;}
.y4f{bottom:471.960000px;}
.y1ba{bottom:472.680000px;}
.y10e{bottom:473.040000px;}
.y1fd{bottom:474.480000px;}
.y60{bottom:476.640000px;}
.y82{bottom:477.000000px;}
.yd9{bottom:479.160000px;}
.yc5{bottom:479.700000px;}
.y11d{bottom:480.060000px;}
.y190{bottom:480.780000px;}
.y248{bottom:480.960000px;}
.y1d8{bottom:481.680000px;}
.y167{bottom:488.700000px;}
.y1ea{bottom:490.320000px;}
.y159{bottom:492.660000px;}
.yb9{bottom:493.020000px;}
.yd8{bottom:495.540000px;}
.y134{bottom:497.160000px;}
.y262{bottom:498.420000px;}
.y17{bottom:502.560000px;}
.y4e{bottom:503.100000px;}
.y1b9{bottom:503.820000px;}
.y1fc{bottom:505.620000px;}
.yc4{bottom:506.700000px;}
.y5f{bottom:507.600000px;}
.y39{bottom:507.780000px;}
.y81{bottom:507.960000px;}
.y11c{bottom:511.020000px;}
.y247{bottom:512.100000px;}
.y1d7{bottom:512.640000px;}
.y18f{bottom:513.180000px;}
.y10d{bottom:516.240000px;}
.y166{bottom:519.660000px;}
.y1e9{bottom:521.460000px;}
.y158{bottom:523.800000px;}
.yd7{bottom:527.220000px;}
.y133{bottom:528.300000px;}
.y261{bottom:529.380000px;}
.yb8{bottom:531.900000px;}
.y4d{bottom:534.060000px;}
.y1b8{bottom:534.780000px;}
.y1fb{bottom:536.580000px;}
.y5e{bottom:538.740000px;}
.y80{bottom:539.100000px;}
.y16{bottom:541.800000px;}
.y246{bottom:543.060000px;}
.y1d6{bottom:543.780000px;}
.y18e{bottom:544.140000px;}
.y10c{bottom:547.200000px;}
.y38{bottom:550.800000px;}
.y1e8{bottom:552.420000px;}
.y157{bottom:554.760000px;}
.y176{bottom:557.100000px;}
.y11b{bottom:558.900000px;}
.yd6{bottom:559.080000px;}
.y132{bottom:559.260000px;}
.y260{bottom:560.520000px;}
.y4c{bottom:565.200000px;}
.y1b7{bottom:565.920000px;}
.y1fa{bottom:567.720000px;}
.y5d{bottom:569.700000px;}
.y7f{bottom:570.060000px;}
.y245{bottom:574.200000px;}
.y1d5{bottom:574.740000px;}
.y18d{bottom:576.540000px;}
.y37{bottom:581.760000px;}
.y1e7{bottom:583.560000px;}
.y15{bottom:584.640000px;}
.y156{bottom:585.900000px;}
.y10b{bottom:590.220000px;}
.y131{bottom:590.400000px;}
.yd5{bottom:590.940000px;}
.y175{bottom:591.480000px;}
.y11a{bottom:593.280000px;}
.y4b{bottom:596.160000px;}
.y1b6{bottom:596.880000px;}
.y1f9{bottom:598.680000px;}
.y5c{bottom:600.840000px;}
.y7e{bottom:601.200000px;}
.y244{bottom:605.160000px;}
.y1d4{bottom:605.700000px;}
.y18c{bottom:607.680000px;}
.y174{bottom:612.180000px;}
.y36{bottom:612.900000px;}
.y1e6{bottom:614.520000px;}
.y14{bottom:615.780000px;}
.y155{bottom:616.860000px;}
.y10a{bottom:621.360000px;}
.yd4{bottom:622.620000px;}
.y4a{bottom:627.120000px;}
.y1b5{bottom:628.020000px;}
.y1f8{bottom:629.820000px;}
.y5b{bottom:631.800000px;}
.y7d{bottom:632.160000px;}
.y119{bottom:632.340000px;}
.y243{bottom:636.120000px;}
.y1d3{bottom:636.840000px;}
.y18b{bottom:638.640000px;}
.y173{bottom:639.180000px;}
.y35{bottom:643.860000px;}
.y1e5{bottom:645.660000px;}
.y13{bottom:646.740000px;}
.y154{bottom:647.820000px;}
.y130{bottom:652.320000px;}
.y25f{bottom:653.580000px;}
.yd2{bottom:654.480000px;}
.y49{bottom:658.260000px;}
.y1b4{bottom:658.980000px;}
.y1f7{bottom:660.780000px;}
.y7c{bottom:663.300000px;}
.y109{bottom:664.380000px;}
.y242{bottom:667.260000px;}
.y1d2{bottom:667.800000px;}
.y18a{bottom:669.780000px;}
.y34{bottom:674.820000px;}
.y1e4{bottom:676.800000px;}
.y12{bottom:677.880000px;}
.y153{bottom:678.960000px;}
.y12f{bottom:683.460000px;}
.y25e{bottom:684.720000px;}
.yd0{bottom:686.160000px;}
.y48{bottom:689.220000px;}
.y1b3{bottom:690.120000px;}
.y1f6{bottom:691.920000px;}
.y7b{bottom:694.260000px;}
.y108{bottom:695.340000px;}
.y241{bottom:698.220000px;}
.y1d1{bottom:698.940000px;}
.y189{bottom:700.740000px;}
.y1e3{bottom:702.540000px;}
.y33{bottom:705.960000px;}
.y11{bottom:708.840000px;}
.y152{bottom:709.920000px;}
.y12e{bottom:714.420000px;}
.y25d{bottom:715.680000px;}
.y47{bottom:720.360000px;}
.y1b2{bottom:721.080000px;}
.y1f5{bottom:722.880000px;}
.y7a{bottom:725.400000px;}
.y107{bottom:726.480000px;}
.y240{bottom:729.360000px;}
.y1d0{bottom:729.900000px;}
.y188{bottom:731.880000px;}
.y1e2{bottom:732.780000px;}
.y32{bottom:736.920000px;}
.y10{bottom:739.980000px;}
.y151{bottom:741.060000px;}
.y12d{bottom:745.560000px;}
.y25c{bottom:746.820000px;}
.y46{bottom:751.320000px;}
.y1b1{bottom:752.220000px;}
.y79{bottom:756.360000px;}
.y106{bottom:757.440000px;}
.y250{bottom:759.060000px;}
.y23f{bottom:760.320000px;}
.y1cf{bottom:761.040000px;}
.y187{bottom:762.840000px;}
.y1e1{bottom:763.920000px;}
.y13e{bottom:764.640000px;}
.y31{bottom:768.060000px;}
.yf{bottom:770.940000px;}
.y150{bottom:772.020000px;}
.y12c{bottom:776.520000px;}
.y25b{bottom:777.780000px;}
.y78{bottom:787.500000px;}
.y105{bottom:788.580000px;}
.y45{bottom:790.020000px;}
.y23e{bottom:791.460000px;}
.y1ce{bottom:792.000000px;}
.y1b0{bottom:793.800000px;}
.y186{bottom:793.980000px;}
.yb7{bottom:794.520000px;}
.y1e0{bottom:794.880000px;}
.y13d{bottom:795.600000px;}
.y30{bottom:799.020000px;}
.ye{bottom:802.080000px;}
.y14f{bottom:803.160000px;}
.y12b{bottom:807.660000px;}
.y25a{bottom:808.920000px;}
.y77{bottom:818.460000px;}
.y104{bottom:819.540000px;}
.y23d{bottom:822.420000px;}
.y1cd{bottom:823.140000px;}
.y185{bottom:824.940000px;}
.y13c{bottom:825.300000px;}
.yb6{bottom:825.660000px;}
.y1f4{bottom:826.020000px;}
.y1af{bottom:828.360000px;}
.y2f{bottom:830.160000px;}
.yd{bottom:833.040000px;}
.y14e{bottom:834.120000px;}
.y1df{bottom:836.640000px;}
.y12a{bottom:838.620000px;}
.y259{bottom:839.880000px;}
.y76{bottom:849.600000px;}
.y103{bottom:850.680000px;}
.y23c{bottom:853.560000px;}
.y1cc{bottom:854.100000px;}
.y1ae{bottom:855.360000px;}
.y184{bottom:855.900000px;}
.yb5{bottom:856.620000px;}
.y13b{bottom:859.860000px;}
.y2e{bottom:861.120000px;}
.yc{bottom:864.180000px;}
.y14d{bottom:865.260000px;}
.y129{bottom:869.760000px;}
.y1de{bottom:871.020000px;}
.y75{bottom:880.560000px;}
.y102{bottom:881.640000px;}
.y23b{bottom:884.520000px;}
.y1cb{bottom:885.240000px;}
.y13a{bottom:886.860000px;}
.yb4{bottom:887.760000px;}
.y183{bottom:888.300000px;}
.y2d{bottom:892.260000px;}
.yb{bottom:895.140000px;}
.y14c{bottom:896.220000px;}
.y1dd{bottom:898.020000px;}
.y128{bottom:900.720000px;}
.y258{bottom:901.980000px;}
.y74{bottom:911.700000px;}
.y101{bottom:912.780000px;}
.y23a{bottom:915.660000px;}
.yb3{bottom:918.720000px;}
.y182{bottom:919.440000px;}
.y2c{bottom:923.220000px;}
.ya{bottom:926.280000px;}
.y1ca{bottom:927.000000px;}
.y14b{bottom:927.360000px;}
.y127{bottom:931.860000px;}
.y257{bottom:933.120000px;}
.y73{bottom:942.660000px;}
.y100{bottom:943.740000px;}
.y239{bottom:946.620000px;}
.yb2{bottom:949.860000px;}
.y181{bottom:950.220000px;}
.y1c9{bottom:953.820000px;}
.y2b{bottom:954.360000px;}
.y9{bottom:957.240000px;}
.y14a{bottom:962.820000px;}
.y256{bottom:964.080000px;}
.y126{bottom:967.320000px;}
.yff{bottom:971.100000px;}
.y238{bottom:977.760000px;}
.yb1{bottom:980.820000px;}
.y180{bottom:982.800000px;}
.yfe{bottom:983.160000px;}
.y2a{bottom:985.320000px;}
.y8{bottom:988.380000px;}
.y1c8{bottom:988.560000px;}
.y72{bottom:990.360000px;}
.y255{bottom:995.220000px;}
.y71{bottom:1006.740000px;}
.y237{bottom:1008.720000px;}
.yb0{bottom:1011.960000px;}
.y17f{bottom:1013.760000px;}
.y29{bottom:1016.460000px;}
.y7{bottom:1019.340000px;}
.y1c7{bottom:1023.480000px;}
.y254{bottom:1026.180000px;}
.yfd{bottom:1026.540000px;}
.y70{bottom:1035.900000px;}
.y236{bottom:1039.860000px;}
.yaf{bottom:1042.920000px;}
.y17e{bottom:1044.900000px;}
.y28{bottom:1047.420000px;}
.y6{bottom:1050.480000px;}
.yfc{bottom:1053.900000px;}
.y6f{bottom:1065.060000px;}
.yfb{bottom:1065.960000px;}
.y1c6{bottom:1066.500000px;}
.y253{bottom:1069.200000px;}
.y235{bottom:1070.820000px;}
.yae{bottom:1074.060000px;}
.y17d{bottom:1075.860000px;}
.y27{bottom:1078.560000px;}
.ye6{bottom:1085.580000px;}
.y5{bottom:1089.180000px;}
.y6e{bottom:1094.220000px;}
.y252{bottom:1100.340000px;}
.y234{bottom:1101.960000px;}
.yad{bottom:1105.020000px;}
.y17c{bottom:1108.260000px;}
.yfa{bottom:1108.800000px;}
.y26{bottom:1109.520000px;}
.y6c{bottom:1123.560000px;}
.ye5{bottom:1128.600000px;}
.y4{bottom:1129.140000px;}
.y251{bottom:1131.300000px;}
.y233{bottom:1132.920000px;}
.yac{bottom:1136.160000px;}
.y8e{bottom:1137.240000px;}
.y17b{bottom:1139.220000px;}
.ya5{bottom:1140.472080px;}
.y25{bottom:1140.660000px;}
.y24{bottom:1171.620000px;}
.y3{bottom:1172.880000px;}
.h8{height:28.438500px;}
.ha{height:28.440000px;}
.he{height:30.960000px;}
.h10{height:30.961500px;}
.hd{height:31.138500px;}
.hf{height:31.140000px;}
.h11{height:51.840000px;}
.h17{height:54.067500px;}
.h1a{height:54.628594px;}
.hc{height:58.121719px;}
.hb{height:58.283437px;}
.h4{height:58.671562px;}
.h14{height:58.736250px;}
.h9{height:59.027344px;}
.h3{height:63.175781px;}
.h2{height:63.773438px;}
.h6{height:64.160156px;}
.h19{height:69.687773px;}
.h7{height:75.067383px;}
.h15{height:78.823125px;}
.h5{height:85.333008px;}
.h16{height:99.164981px;}
.h12{height:105.907500px;}
.h18{height:111.415781px;}
.h13{height:112.400156px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:137.340000px;}
.w2{width:196.560000px;}
.w6{width:217.080000px;}
.w4{width:322.920000px;}
.w3{width:482.220000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x11{left:19.260000px;}
.x1a{left:25.200000px;}
.x14{left:35.820000px;}
.x13{left:43.200000px;}
.xf{left:44.640000px;}
.x15{left:46.080000px;}
.x18{left:49.140000px;}
.x17{left:53.460000px;}
.x16{left:69.660000px;}
.x1b{left:77.940000px;}
.x19{left:81.180000px;}
.x12{left:82.980000px;}
.x2{left:106.200000px;}
.x2a{left:114.840000px;}
.x5{left:133.200000px;}
.x1f{left:145.080000px;}
.x4{left:159.300000px;}
.x3{left:295.380000px;}
.x7{left:303.660000px;}
.x2e{left:362.340000px;}
.x2c{left:368.280000px;}
.x29{left:379.801440px;}
.x2d{left:397.620000px;}
.x2f{left:428.760000px;}
.xe{left:430.740000px;}
.x1{left:432.900000px;}
.x9{left:446.400000px;}
.x23{left:500.580000px;}
.x20{left:507.420000px;}
.x1e{left:516.420000px;}
.x25{left:552.600000px;}
.x28{left:558.900000px;}
.x10{left:568.800000px;}
.xd{left:585.900000px;}
.xc{left:633.060000px;}
.x2b{left:651.060000px;}
.x1d{left:689.400000px;}
.xb{left:690.480000px;}
.x1c{left:691.560000px;}
.x30{left:694.440000px;}
.x27{left:697.140000px;}
.x26{left:698.400000px;}
.x22{left:703.080000px;}
.x32{left:714.240000px;}
.xa{left:718.200000px;}
.x8{left:720.360000px;}
.x21{left:721.800000px;}
.x34{left:723.060000px;}
.x31{left:724.320000px;}
.x33{left:726.840000px;}
.x24{left:786.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v6{vertical-align:19.200000pt;}
.v7{vertical-align:24.320000pt;}
.v4{vertical-align:31.990400pt;}
.v3{vertical-align:37.760000pt;}
.v2{vertical-align:42.880000pt;}
.v1{vertical-align:48.640000pt;}
.ls2b{letter-spacing:-1.920000pt;}
.ls51{letter-spacing:-0.832000pt;}
.ls4a{letter-spacing:-0.647680pt;}
.ls2a{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.512000pt;}
.ls3b{letter-spacing:-0.499840pt;}
.ls2e{letter-spacing:-0.384000pt;}
.ls48{letter-spacing:-0.353280pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.294400pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls3a{letter-spacing:-0.227200pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.117760pt;}
.ls5{letter-spacing:0.128000pt;}
.ls39{letter-spacing:0.136320pt;}
.ls22{letter-spacing:0.192000pt;}
.ls37{letter-spacing:0.227200pt;}
.ls38{letter-spacing:0.227413pt;}
.ls46{letter-spacing:0.235520pt;}
.lsd{letter-spacing:0.256000pt;}
.ls49{letter-spacing:0.294400pt;}
.ls7{letter-spacing:0.299520pt;}
.ls42{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls2d{letter-spacing:0.448000pt;}
.ls41{letter-spacing:0.576000pt;}
.lse{letter-spacing:0.640000pt;}
.ls43{letter-spacing:1.152000pt;}
.lsb{letter-spacing:1.280000pt;}
.ls11{letter-spacing:1.920000pt;}
.lsa{letter-spacing:2.560000pt;}
.ls1{letter-spacing:3.200000pt;}
.ls2{letter-spacing:3.840000pt;}
.ls8{letter-spacing:4.480000pt;}
.ls10{letter-spacing:5.120000pt;}
.ls31{letter-spacing:6.400000pt;}
.ls34{letter-spacing:7.040000pt;}
.ls20{letter-spacing:7.680000pt;}
.ls4b{letter-spacing:8.320000pt;}
.ls4e{letter-spacing:8.960000pt;}
.ls30{letter-spacing:10.240000pt;}
.ls50{letter-spacing:10.304000pt;}
.ls1a{letter-spacing:10.560000pt;}
.ls32{letter-spacing:10.880000pt;}
.ls40{letter-spacing:12.160000pt;}
.ls1f{letter-spacing:12.800000pt;}
.ls26{letter-spacing:13.440000pt;}
.ls19{letter-spacing:14.272000pt;}
.ls29{letter-spacing:14.720000pt;}
.ls47{letter-spacing:15.360000pt;}
.ls33{letter-spacing:16.000000pt;}
.ls15{letter-spacing:16.640000pt;}
.ls28{letter-spacing:17.280000pt;}
.ls17{letter-spacing:17.472000pt;}
.ls9{letter-spacing:17.920000pt;}
.ls1b{letter-spacing:18.112000pt;}
.lsc{letter-spacing:18.560000pt;}
.ls3f{letter-spacing:19.200000pt;}
.ls2c{letter-spacing:20.480000pt;}
.ls3e{letter-spacing:22.400000pt;}
.ls4c{letter-spacing:23.680000pt;}
.ls35{letter-spacing:24.960000pt;}
.ls1d{letter-spacing:28.160000pt;}
.ls25{letter-spacing:30.208000pt;}
.lsf{letter-spacing:33.280000pt;}
.ls1e{letter-spacing:33.920000pt;}
.ls45{letter-spacing:42.810240pt;}
.ls4f{letter-spacing:42.880000pt;}
.ls2f{letter-spacing:48.768000pt;}
.ls4d{letter-spacing:50.560000pt;}
.ls0{letter-spacing:56.903680pt;}
.ls44{letter-spacing:106.170240pt;}
.ls36{letter-spacing:172.800000pt;}
.ls3c{letter-spacing:362.240000pt;}
.ls3d{letter-spacing:366.080000pt;}
.ls1c{letter-spacing:551.168000pt;}
.ls18{letter-spacing:558.208000pt;}
.ws2f{word-spacing:-64.192000pt;}
.ws33{word-spacing:-64.064000pt;}
.ws2e{word-spacing:-64.000000pt;}
.ws2d{word-spacing:-63.936000pt;}
.ws31{word-spacing:-63.872000pt;}
.ws35{word-spacing:-63.808000pt;}
.ws34{word-spacing:-63.744000pt;}
.ws1{word-spacing:-53.120000pt;}
.ws37{word-spacing:-48.768000pt;}
.ws36{word-spacing:-45.888000pt;}
.ws56{word-spacing:-45.576320pt;}
.ws57{word-spacing:-44.940160pt;}
.ws32{word-spacing:-44.800000pt;}
.ws2b{word-spacing:-16.640000pt;}
.ws4d{word-spacing:-16.384000pt;}
.ws55{word-spacing:-16.256000pt;}
.ws50{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws75{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2c{word-spacing:-15.872000pt;}
.ws1e{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws48{word-spacing:-15.616000pt;}
.ws61{word-spacing:-15.014400pt;}
.ws5e{word-spacing:-14.837760pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5f{word-spacing:-14.425600pt;}
.ws60{word-spacing:-14.366720pt;}
.ws5c{word-spacing:-14.080000pt;}
.ws62{word-spacing:-14.072320pt;}
.ws30{word-spacing:-13.824000pt;}
.ws40{word-spacing:-3.840000pt;}
.ws3f{word-spacing:-3.584000pt;}
.ws59{word-spacing:-3.456000pt;}
.ws1b{word-spacing:-3.200000pt;}
.ws14{word-spacing:-2.560000pt;}
.ws44{word-spacing:-2.304000pt;}
.ws27{word-spacing:-1.920000pt;}
.ws64{word-spacing:-1.664000pt;}
.ws21{word-spacing:-1.280000pt;}
.wsd{word-spacing:-1.123200pt;}
.ws3c{word-spacing:-0.647680pt;}
.ws11{word-spacing:-0.640000pt;}
.ws26{word-spacing:-0.384000pt;}
.ws8{word-spacing:-0.299520pt;}
.wsf{word-spacing:-0.256000pt;}
.ws6{word-spacing:-0.128000pt;}
.ws24{word-spacing:-0.117760pt;}
.ws4{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.128000pt;}
.ws4e{word-spacing:0.192000pt;}
.ws5a{word-spacing:0.227200pt;}
.ws9{word-spacing:0.256000pt;}
.ws5{word-spacing:0.294400pt;}
.ws3d{word-spacing:0.512000pt;}
.wsb{word-spacing:0.640000pt;}
.ws73{word-spacing:0.832000pt;}
.ws19{word-spacing:1.280000pt;}
.ws1a{word-spacing:1.536000pt;}
.ws23{word-spacing:1.920000pt;}
.ws54{word-spacing:2.176000pt;}
.ws43{word-spacing:2.560000pt;}
.ws76{word-spacing:2.688000pt;}
.ws42{word-spacing:2.816000pt;}
.wsc{word-spacing:3.200000pt;}
.ws5d{word-spacing:3.712000pt;}
.ws4c{word-spacing:3.840000pt;}
.ws15{word-spacing:4.480000pt;}
.ws7{word-spacing:4.736000pt;}
.ws20{word-spacing:5.120000pt;}
.ws1c{word-spacing:5.760000pt;}
.ws3e{word-spacing:6.016000pt;}
.ws51{word-spacing:6.400000pt;}
.ws25{word-spacing:7.040000pt;}
.ws1d{word-spacing:7.680000pt;}
.ws65{word-spacing:7.936000pt;}
.ws6c{word-spacing:8.320000pt;}
.ws38{word-spacing:8.576000pt;}
.ws49{word-spacing:8.704000pt;}
.ws45{word-spacing:8.960000pt;}
.ws74{word-spacing:9.088000pt;}
.ws6e{word-spacing:9.216000pt;}
.ws6b{word-spacing:9.472000pt;}
.ws47{word-spacing:9.600000pt;}
.ws4f{word-spacing:9.856000pt;}
.ws71{word-spacing:10.240000pt;}
.ws17{word-spacing:11.520000pt;}
.ws16{word-spacing:11.776000pt;}
.ws3b{word-spacing:12.416000pt;}
.ws22{word-spacing:12.800000pt;}
.ws68{word-spacing:13.056000pt;}
.ws53{word-spacing:13.440000pt;}
.ws28{word-spacing:14.080000pt;}
.ws18{word-spacing:14.720000pt;}
.ws4b{word-spacing:15.104000pt;}
.ws70{word-spacing:15.232000pt;}
.ws6f{word-spacing:15.360000pt;}
.ws63{word-spacing:15.616000pt;}
.ws1f{word-spacing:16.000000pt;}
.ws2a{word-spacing:16.512000pt;}
.ws29{word-spacing:16.640000pt;}
.ws41{word-spacing:17.280000pt;}
.wse{word-spacing:17.920000pt;}
.ws6a{word-spacing:18.176000pt;}
.ws10{word-spacing:18.560000pt;}
.ws69{word-spacing:20.480000pt;}
.ws67{word-spacing:22.400000pt;}
.ws58{word-spacing:24.960000pt;}
.ws52{word-spacing:25.600000pt;}
.ws5b{word-spacing:27.520000pt;}
.ws39{word-spacing:28.160000pt;}
.ws72{word-spacing:30.080000pt;}
.ws3a{word-spacing:33.024000pt;}
.ws13{word-spacing:33.280000pt;}
.ws12{word-spacing:33.536000pt;}
.ws46{word-spacing:40.320000pt;}
.ws6d{word-spacing:43.136000pt;}
.ws66{word-spacing:50.304000pt;}
._28{margin-left:-172.800000pt;}
._39{margin-left:-42.355200pt;}
._1a{margin-left:-33.024000pt;}
._16{margin-left:-18.352384pt;}
._15{margin-left:-17.450240pt;}
._29{margin-left:-16.000000pt;}
._37{margin-left:-7.594240pt;}
._3a{margin-left:-5.530368pt;}
._1b{margin-left:-4.437760pt;}
._12{margin-left:-3.306240pt;}
._10{margin-left:-1.875200pt;}
._1{margin-left:-0.971520pt;}
._0{width:1.012736pt;}
._d{width:1.953792pt;}
._9{width:3.008000pt;}
._a{width:3.904000pt;}
._b{width:4.811264pt;}
._e{width:5.812736pt;}
._4{width:7.296000pt;}
._5{width:8.192000pt;}
._c{width:9.280000pt;}
._1c{width:10.293248pt;}
._2{width:11.264000pt;}
._3{width:12.224000pt;}
._7{width:13.184000pt;}
._6{width:14.912000pt;}
._13{width:17.664000pt;}
._14{width:18.635264pt;}
._1f{width:19.904000pt;}
._20{width:20.886528pt;}
._18{width:21.824000pt;}
._31{width:22.784000pt;}
._17{width:23.721984pt;}
._8{width:24.704000pt;}
._11{width:25.633280pt;}
._23{width:26.816000pt;}
._1d{width:28.032000pt;}
._1e{width:29.376000pt;}
._f{width:30.592000pt;}
._27{width:32.064000pt;}
._19{width:32.981760pt;}
._24{width:34.142464pt;}
._25{width:35.712000pt;}
._3b{width:36.608000pt;}
._38{width:43.541760pt;}
._26{width:44.800000pt;}
._33{width:50.304000pt;}
._34{width:51.238400pt;}
._35{width:53.653760pt;}
._36{width:54.633728pt;}
._3c{width:112.832000pt;}
._3d{width:113.728000pt;}
._2a{width:173.440000pt;}
._2f{width:218.880000pt;}
._2d{width:224.534528pt;}
._2e{width:228.811264pt;}
._2b{width:241.600000pt;}
._2c{width:260.160000pt;}
._30{width:266.880000pt;}
._21{width:330.880000pt;}
._22{width:409.628160pt;}
._32{width:642.560000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:11.520000pt;}
.yd3{bottom:12.640000pt;}
.yd1{bottom:12.800000pt;}
.y2{bottom:50.720000pt;}
.y1{bottom:69.120000pt;}
.y212{bottom:98.560000pt;}
.ya4{bottom:102.385280pt;}
.y21b{bottom:102.400000pt;}
.y24f{bottom:103.200000pt;}
.ycf{bottom:104.960000pt;}
.y8d{bottom:105.760000pt;}
.y22b{bottom:106.560000pt;}
.y165{bottom:106.720000pt;}
.y279{bottom:107.833600pt;}
.y95{bottom:108.160000pt;}
.y1a0{bottom:110.720000pt;}
.y1c5{bottom:111.362400pt;}
.y26e{bottom:111.840000pt;}
.y1ad{bottom:112.320000pt;}
.yde{bottom:112.960000pt;}
.y17a{bottom:113.440000pt;}
.y223{bottom:114.240000pt;}
.y23{bottom:115.520000pt;}
.y5a{bottom:116.000000pt;}
.yeb{bottom:116.640000pt;}
.y207{bottom:118.240000pt;}
.yf9{bottom:118.400000pt;}
.y1c4{bottom:119.360000pt;}
.y6b{bottom:120.160000pt;}
.ye4{bottom:120.640000pt;}
.y149{bottom:121.600000pt;}
.y24e{bottom:124.000000pt;}
.y9c{bottom:126.880000pt;}
.y211{bottom:129.120000pt;}
.y44{bottom:129.920000pt;}
.y172{bottom:130.720000pt;}
.ya3{bottom:131.339520pt;}
.yce{bottom:132.640000pt;}
.yf0{bottom:133.280000pt;}
.y118{bottom:133.920000pt;}
.y21a{bottom:134.080000pt;}
.y164{bottom:134.400000pt;}
.y8c{bottom:136.320000pt;}
.y278{bottom:137.759360pt;}
.y19f{bottom:138.400000pt;}
.y26d{bottom:139.360000pt;}
.y1ac{bottom:140.000000pt;}
.ydd{bottom:140.480000pt;}
.y179{bottom:140.960000pt;}
.y222{bottom:141.920000pt;}
.y22{bottom:143.040000pt;}
.y59{bottom:143.520000pt;}
.yea{bottom:144.160000pt;}
.y206{bottom:145.760000pt;}
.yf8{bottom:145.920000pt;}
.y94{bottom:146.400000pt;}
.y6a{bottom:147.680000pt;}
.y148{bottom:149.120000pt;}
.yab{bottom:149.600000pt;}
.yc3{bottom:149.760000pt;}
.y232{bottom:150.880000pt;}
.y199{bottom:151.520000pt;}
.y1c3{bottom:151.840000pt;}
.y1f3{bottom:155.200000pt;}
.y171{bottom:158.400000pt;}
.ye3{bottom:158.880000pt;}
.y210{bottom:159.680000pt;}
.ya2{bottom:160.146560pt;}
.ycd{bottom:160.160000pt;}
.y117{bottom:161.440000pt;}
.y22a{bottom:161.760000pt;}
.y163{bottom:161.920000pt;}
.y9b{bottom:165.120000pt;}
.y219{bottom:165.760000pt;}
.y19e{bottom:165.920000pt;}
.y8b{bottom:166.880000pt;}
.y26c{bottom:167.040000pt;}
.y1ab{bottom:167.520000pt;}
.y277{bottom:167.832320pt;}
.y43{bottom:168.160000pt;}
.y221{bottom:169.440000pt;}
.y21{bottom:170.720000pt;}
.y58{bottom:171.200000pt;}
.yef{bottom:171.520000pt;}
.ye9{bottom:171.840000pt;}
.y205{bottom:173.440000pt;}
.yf7{bottom:173.600000pt;}
.y69{bottom:175.360000pt;}
.y147{bottom:176.800000pt;}
.yc2{bottom:177.280000pt;}
.y178{bottom:178.080000pt;}
.y125{bottom:178.400000pt;}
.y231{bottom:178.560000pt;}
.y198{bottom:179.040000pt;}
.y24d{bottom:179.200000pt;}
.y1c2{bottom:179.360000pt;}
.y1f2{bottom:182.720000pt;}
.y93{bottom:184.640000pt;}
.y170{bottom:185.920000pt;}
.yaa{bottom:187.840000pt;}
.ya1{bottom:188.953600pt;}
.y116{bottom:189.120000pt;}
.y229{bottom:189.280000pt;}
.y162{bottom:189.600000pt;}
.y20f{bottom:190.080000pt;}
.y19d{bottom:193.600000pt;}
.y26b{bottom:194.560000pt;}
.y1aa{bottom:195.200000pt;}
.y42{bottom:195.680000pt;}
.ye2{bottom:197.120000pt;}
.y8a{bottom:197.440000pt;}
.y218{bottom:197.600000pt;}
.y276{bottom:197.758080pt;}
.y20{bottom:198.240000pt;}
.y57{bottom:198.720000pt;}
.y204{bottom:200.960000pt;}
.yf6{bottom:201.120000pt;}
.y68{bottom:202.880000pt;}
.y9a{bottom:203.360000pt;}
.y146{bottom:204.320000pt;}
.yc1{bottom:204.960000pt;}
.y124{bottom:205.920000pt;}
.y230{bottom:206.080000pt;}
.y197{bottom:206.720000pt;}
.y1c1{bottom:207.040000pt;}
.yee{bottom:208.640000pt;}
.y1f1{bottom:210.400000pt;}
.y16f{bottom:213.600000pt;}
.ycc{bottom:215.360000pt;}
.y115{bottom:216.640000pt;}
.y228{bottom:216.960000pt;}
.y161{bottom:217.120000pt;}
.ya0{bottom:217.907840pt;}
.y20e{bottom:220.640000pt;}
.y19c{bottom:221.120000pt;}
.y26a{bottom:222.240000pt;}
.y1a9{bottom:222.720000pt;}
.y92{bottom:222.880000pt;}
.y41{bottom:223.360000pt;}
.y220{bottom:224.640000pt;}
.y1f{bottom:225.920000pt;}
.ya9{bottom:226.240000pt;}
.y56{bottom:226.400000pt;}
.y275{bottom:227.831040pt;}
.y89{bottom:227.840000pt;}
.y203{bottom:228.640000pt;}
.ye8{bottom:228.800000pt;}
.y217{bottom:229.280000pt;}
.y67{bottom:230.560000pt;}
.y145{bottom:232.000000pt;}
.yc0{bottom:232.480000pt;}
.y177{bottom:232.800000pt;}
.y123{bottom:233.600000pt;}
.y22f{bottom:233.760000pt;}
.ye1{bottom:234.240000pt;}
.y24c{bottom:234.400000pt;}
.y1c0{bottom:234.560000pt;}
.y1f0{bottom:237.920000pt;}
.yed{bottom:239.200000pt;}
.y16e{bottom:241.120000pt;}
.y99{bottom:241.600000pt;}
.ycb{bottom:243.040000pt;}
.y114{bottom:244.320000pt;}
.y227{bottom:244.480000pt;}
.y160{bottom:244.800000pt;}
.y9f{bottom:246.714880pt;}
.y19b{bottom:248.800000pt;}
.y269{bottom:249.760000pt;}
.y1a8{bottom:250.400000pt;}
.y40{bottom:250.880000pt;}
.y20d{bottom:251.200000pt;}
.y21f{bottom:252.320000pt;}
.y1e{bottom:253.440000pt;}
.y55{bottom:253.920000pt;}
.y202{bottom:256.160000pt;}
.yf5{bottom:256.320000pt;}
.y274{bottom:257.756800pt;}
.y66{bottom:258.080000pt;}
.y88{bottom:258.400000pt;}
.y144{bottom:259.520000pt;}
.y91{bottom:260.000000pt;}
.ybf{bottom:260.160000pt;}
.y216{bottom:260.960000pt;}
.y122{bottom:261.120000pt;}
.y196{bottom:261.920000pt;}
.y1bf{bottom:262.240000pt;}
.ya8{bottom:263.200000pt;}
.ye7{bottom:263.520000pt;}
.ye0{bottom:264.800000pt;}
.y22e{bottom:265.120000pt;}
.y1ef{bottom:265.600000pt;}
.y16d{bottom:268.800000pt;}
.yca{bottom:270.560000pt;}
.y113{bottom:271.840000pt;}
.y15f{bottom:272.320000pt;}
.yec{bottom:273.920000pt;}
.y226{bottom:275.840000pt;}
.y19a{bottom:276.320000pt;}
.y268{bottom:277.440000pt;}
.y1a7{bottom:277.920000pt;}
.y3f{bottom:278.400000pt;}
.ydc{bottom:278.560000pt;}
.y98{bottom:278.720000pt;}
.y1d{bottom:281.120000pt;}
.y54{bottom:281.600000pt;}
.y20c{bottom:281.760000pt;}
.y9e{bottom:282.720000pt;}
.yf4{bottom:283.840000pt;}
.y21e{bottom:284.000000pt;}
.y65{bottom:285.600000pt;}
.y87{bottom:286.080000pt;}
.y143{bottom:287.200000pt;}
.ybe{bottom:287.680000pt;}
.y273{bottom:287.682560pt;}
.y121{bottom:288.800000pt;}
.y195{bottom:289.440000pt;}
.y24b{bottom:289.600000pt;}
.y1be{bottom:289.760000pt;}
.y90{bottom:290.560000pt;}
.y215{bottom:292.320000pt;}
.y1ee{bottom:293.280000pt;}
.ya7{bottom:293.920000pt;}
.y22d{bottom:295.680000pt;}
.y16c{bottom:296.320000pt;}
.yc9{bottom:298.240000pt;}
.ydf{bottom:299.520000pt;}
.y15e{bottom:300.000000pt;}
.y139{bottom:304.000000pt;}
.y267{bottom:304.960000pt;}
.y3e{bottom:306.080000pt;}
.y225{bottom:306.400000pt;}
.y1c{bottom:308.640000pt;}
.y53{bottom:309.120000pt;}
.y97{bottom:309.280000pt;}
.y112{bottom:310.080000pt;}
.y201{bottom:311.360000pt;}
.y20b{bottom:312.320000pt;}
.y64{bottom:313.280000pt;}
.y86{bottom:313.600000pt;}
.y142{bottom:314.720000pt;}
.y1a6{bottom:315.040000pt;}
.ybd{bottom:315.360000pt;}
.y120{bottom:316.320000pt;}
.y194{bottom:317.120000pt;}
.y1bd{bottom:317.440000pt;}
.y272{bottom:317.755520pt;}
.y1dc{bottom:317.760000pt;}
.y1a3{bottom:319.040000pt;}
.y22c{bottom:319.680000pt;}
.yf3{bottom:320.960000pt;}
.y214{bottom:322.880000pt;}
.y16b{bottom:324.000000pt;}
.y8f{bottom:325.280000pt;}
.yc8{bottom:325.760000pt;}
.y15d{bottom:327.520000pt;}
.ya6{bottom:328.480000pt;}
.y224{bottom:330.400000pt;}
.y138{bottom:331.520000pt;}
.y266{bottom:332.640000pt;}
.y3d{bottom:333.600000pt;}
.ydb{bottom:333.760000pt;}
.y1b{bottom:336.320000pt;}
.y52{bottom:336.800000pt;}
.y111{bottom:337.760000pt;}
.y200{bottom:339.040000pt;}
.y63{bottom:340.800000pt;}
.y85{bottom:341.280000pt;}
.y20a{bottom:342.720000pt;}
.ybc{bottom:342.880000pt;}
.y96{bottom:344.000000pt;}
.y193{bottom:344.640000pt;}
.y24a{bottom:344.800000pt;}
.y1bc{bottom:344.960000pt;}
.y1db{bottom:345.280000pt;}
.y1a5{bottom:345.600000pt;}
.y21d{bottom:345.920000pt;}
.y213{bottom:346.880000pt;}
.y271{bottom:347.681280pt;}
.y9d{bottom:348.000000pt;}
.y1a2{bottom:349.600000pt;}
.y16a{bottom:351.520000pt;}
.yf2{bottom:351.680000pt;}
.y141{bottom:351.840000pt;}
.y1ed{bottom:353.120000pt;}
.yc7{bottom:353.440000pt;}
.y15c{bottom:355.200000pt;}
.y137{bottom:359.200000pt;}
.y265{bottom:360.160000pt;}
.y3c{bottom:361.280000pt;}
.y1a{bottom:363.840000pt;}
.y51{bottom:364.320000pt;}
.y110{bottom:365.280000pt;}
.y1ff{bottom:366.560000pt;}
.y62{bottom:368.480000pt;}
.y84{bottom:368.800000pt;}
.ybb{bottom:370.560000pt;}
.y11f{bottom:371.520000pt;}
.y192{bottom:372.320000pt;}
.y1da{bottom:372.960000pt;}
.y209{bottom:373.280000pt;}
.y21c{bottom:374.080000pt;}
.y1bb{bottom:376.640000pt;}
.y270{bottom:377.754240pt;}
.y169{bottom:379.200000pt;}
.y1a4{bottom:380.320000pt;}
.y1ec{bottom:380.640000pt;}
.y140{bottom:382.400000pt;}
.y15b{bottom:382.720000pt;}
.y1a1{bottom:384.320000pt;}
.yf1{bottom:386.240000pt;}
.y136{bottom:386.720000pt;}
.y264{bottom:387.840000pt;}
.y3b{bottom:388.800000pt;}
.y19{bottom:391.520000pt;}
.y50{bottom:392.000000pt;}
.y10f{bottom:392.960000pt;}
.y1fe{bottom:394.240000pt;}
.yc6{bottom:395.840000pt;}
.y61{bottom:396.000000pt;}
.y83{bottom:396.320000pt;}
.y11e{bottom:399.200000pt;}
.yda{bottom:399.520000pt;}
.y191{bottom:399.840000pt;}
.y249{bottom:400.000000pt;}
.y1d9{bottom:400.480000pt;}
.y208{bottom:403.840000pt;}
.y13f{bottom:406.400000pt;}
.y168{bottom:406.720000pt;}
.yba{bottom:407.520000pt;}
.y26f{bottom:407.680000pt;}
.y1eb{bottom:408.320000pt;}
.y15a{bottom:410.400000pt;}
.y135{bottom:414.400000pt;}
.y263{bottom:415.360000pt;}
.y3a{bottom:416.480000pt;}
.y18{bottom:419.040000pt;}
.y4f{bottom:419.520000pt;}
.y1ba{bottom:420.160000pt;}
.y10e{bottom:420.480000pt;}
.y1fd{bottom:421.760000pt;}
.y60{bottom:423.680000pt;}
.y82{bottom:424.000000pt;}
.yd9{bottom:425.920000pt;}
.yc5{bottom:426.400000pt;}
.y11d{bottom:426.720000pt;}
.y190{bottom:427.360000pt;}
.y248{bottom:427.520000pt;}
.y1d8{bottom:428.160000pt;}
.y167{bottom:434.400000pt;}
.y1ea{bottom:435.840000pt;}
.y159{bottom:437.920000pt;}
.yb9{bottom:438.240000pt;}
.yd8{bottom:440.480000pt;}
.y134{bottom:441.920000pt;}
.y262{bottom:443.040000pt;}
.y17{bottom:446.720000pt;}
.y4e{bottom:447.200000pt;}
.y1b9{bottom:447.840000pt;}
.y1fc{bottom:449.440000pt;}
.yc4{bottom:450.400000pt;}
.y5f{bottom:451.200000pt;}
.y39{bottom:451.360000pt;}
.y81{bottom:451.520000pt;}
.y11c{bottom:454.240000pt;}
.y247{bottom:455.200000pt;}
.y1d7{bottom:455.680000pt;}
.y18f{bottom:456.160000pt;}
.y10d{bottom:458.880000pt;}
.y166{bottom:461.920000pt;}
.y1e9{bottom:463.520000pt;}
.y158{bottom:465.600000pt;}
.yd7{bottom:468.640000pt;}
.y133{bottom:469.600000pt;}
.y261{bottom:470.560000pt;}
.yb8{bottom:472.800000pt;}
.y4d{bottom:474.720000pt;}
.y1b8{bottom:475.360000pt;}
.y1fb{bottom:476.960000pt;}
.y5e{bottom:478.880000pt;}
.y80{bottom:479.200000pt;}
.y16{bottom:481.600000pt;}
.y246{bottom:482.720000pt;}
.y1d6{bottom:483.360000pt;}
.y18e{bottom:483.680000pt;}
.y10c{bottom:486.400000pt;}
.y38{bottom:489.600000pt;}
.y1e8{bottom:491.040000pt;}
.y157{bottom:493.120000pt;}
.y176{bottom:495.200000pt;}
.y11b{bottom:496.800000pt;}
.yd6{bottom:496.960000pt;}
.y132{bottom:497.120000pt;}
.y260{bottom:498.240000pt;}
.y4c{bottom:502.400000pt;}
.y1b7{bottom:503.040000pt;}
.y1fa{bottom:504.640000pt;}
.y5d{bottom:506.400000pt;}
.y7f{bottom:506.720000pt;}
.y245{bottom:510.400000pt;}
.y1d5{bottom:510.880000pt;}
.y18d{bottom:512.480000pt;}
.y37{bottom:517.120000pt;}
.y1e7{bottom:518.720000pt;}
.y15{bottom:519.680000pt;}
.y156{bottom:520.800000pt;}
.y10b{bottom:524.640000pt;}
.y131{bottom:524.800000pt;}
.yd5{bottom:525.280000pt;}
.y175{bottom:525.760000pt;}
.y11a{bottom:527.360000pt;}
.y4b{bottom:529.920000pt;}
.y1b6{bottom:530.560000pt;}
.y1f9{bottom:532.160000pt;}
.y5c{bottom:534.080000pt;}
.y7e{bottom:534.400000pt;}
.y244{bottom:537.920000pt;}
.y1d4{bottom:538.400000pt;}
.y18c{bottom:540.160000pt;}
.y174{bottom:544.160000pt;}
.y36{bottom:544.800000pt;}
.y1e6{bottom:546.240000pt;}
.y14{bottom:547.360000pt;}
.y155{bottom:548.320000pt;}
.y10a{bottom:552.320000pt;}
.yd4{bottom:553.440000pt;}
.y4a{bottom:557.440000pt;}
.y1b5{bottom:558.240000pt;}
.y1f8{bottom:559.840000pt;}
.y5b{bottom:561.600000pt;}
.y7d{bottom:561.920000pt;}
.y119{bottom:562.080000pt;}
.y243{bottom:565.440000pt;}
.y1d3{bottom:566.080000pt;}
.y18b{bottom:567.680000pt;}
.y173{bottom:568.160000pt;}
.y35{bottom:572.320000pt;}
.y1e5{bottom:573.920000pt;}
.y13{bottom:574.880000pt;}
.y154{bottom:575.840000pt;}
.y130{bottom:579.840000pt;}
.y25f{bottom:580.960000pt;}
.yd2{bottom:581.760000pt;}
.y49{bottom:585.120000pt;}
.y1b4{bottom:585.760000pt;}
.y1f7{bottom:587.360000pt;}
.y7c{bottom:589.600000pt;}
.y109{bottom:590.560000pt;}
.y242{bottom:593.120000pt;}
.y1d2{bottom:593.600000pt;}
.y18a{bottom:595.360000pt;}
.y34{bottom:599.840000pt;}
.y1e4{bottom:601.600000pt;}
.y12{bottom:602.560000pt;}
.y153{bottom:603.520000pt;}
.y12f{bottom:607.520000pt;}
.y25e{bottom:608.640000pt;}
.yd0{bottom:609.920000pt;}
.y48{bottom:612.640000pt;}
.y1b3{bottom:613.440000pt;}
.y1f6{bottom:615.040000pt;}
.y7b{bottom:617.120000pt;}
.y108{bottom:618.080000pt;}
.y241{bottom:620.640000pt;}
.y1d1{bottom:621.280000pt;}
.y189{bottom:622.880000pt;}
.y1e3{bottom:624.480000pt;}
.y33{bottom:627.520000pt;}
.y11{bottom:630.080000pt;}
.y152{bottom:631.040000pt;}
.y12e{bottom:635.040000pt;}
.y25d{bottom:636.160000pt;}
.y47{bottom:640.320000pt;}
.y1b2{bottom:640.960000pt;}
.y1f5{bottom:642.560000pt;}
.y7a{bottom:644.800000pt;}
.y107{bottom:645.760000pt;}
.y240{bottom:648.320000pt;}
.y1d0{bottom:648.800000pt;}
.y188{bottom:650.560000pt;}
.y1e2{bottom:651.360000pt;}
.y32{bottom:655.040000pt;}
.y10{bottom:657.760000pt;}
.y151{bottom:658.720000pt;}
.y12d{bottom:662.720000pt;}
.y25c{bottom:663.840000pt;}
.y46{bottom:667.840000pt;}
.y1b1{bottom:668.640000pt;}
.y79{bottom:672.320000pt;}
.y106{bottom:673.280000pt;}
.y250{bottom:674.720000pt;}
.y23f{bottom:675.840000pt;}
.y1cf{bottom:676.480000pt;}
.y187{bottom:678.080000pt;}
.y1e1{bottom:679.040000pt;}
.y13e{bottom:679.680000pt;}
.y31{bottom:682.720000pt;}
.yf{bottom:685.280000pt;}
.y150{bottom:686.240000pt;}
.y12c{bottom:690.240000pt;}
.y25b{bottom:691.360000pt;}
.y78{bottom:700.000000pt;}
.y105{bottom:700.960000pt;}
.y45{bottom:702.240000pt;}
.y23e{bottom:703.520000pt;}
.y1ce{bottom:704.000000pt;}
.y1b0{bottom:705.600000pt;}
.y186{bottom:705.760000pt;}
.yb7{bottom:706.240000pt;}
.y1e0{bottom:706.560000pt;}
.y13d{bottom:707.200000pt;}
.y30{bottom:710.240000pt;}
.ye{bottom:712.960000pt;}
.y14f{bottom:713.920000pt;}
.y12b{bottom:717.920000pt;}
.y25a{bottom:719.040000pt;}
.y77{bottom:727.520000pt;}
.y104{bottom:728.480000pt;}
.y23d{bottom:731.040000pt;}
.y1cd{bottom:731.680000pt;}
.y185{bottom:733.280000pt;}
.y13c{bottom:733.600000pt;}
.yb6{bottom:733.920000pt;}
.y1f4{bottom:734.240000pt;}
.y1af{bottom:736.320000pt;}
.y2f{bottom:737.920000pt;}
.yd{bottom:740.480000pt;}
.y14e{bottom:741.440000pt;}
.y1df{bottom:743.680000pt;}
.y12a{bottom:745.440000pt;}
.y259{bottom:746.560000pt;}
.y76{bottom:755.200000pt;}
.y103{bottom:756.160000pt;}
.y23c{bottom:758.720000pt;}
.y1cc{bottom:759.200000pt;}
.y1ae{bottom:760.320000pt;}
.y184{bottom:760.800000pt;}
.yb5{bottom:761.440000pt;}
.y13b{bottom:764.320000pt;}
.y2e{bottom:765.440000pt;}
.yc{bottom:768.160000pt;}
.y14d{bottom:769.120000pt;}
.y129{bottom:773.120000pt;}
.y1de{bottom:774.240000pt;}
.y75{bottom:782.720000pt;}
.y102{bottom:783.680000pt;}
.y23b{bottom:786.240000pt;}
.y1cb{bottom:786.880000pt;}
.y13a{bottom:788.320000pt;}
.yb4{bottom:789.120000pt;}
.y183{bottom:789.600000pt;}
.y2d{bottom:793.120000pt;}
.yb{bottom:795.680000pt;}
.y14c{bottom:796.640000pt;}
.y1dd{bottom:798.240000pt;}
.y128{bottom:800.640000pt;}
.y258{bottom:801.760000pt;}
.y74{bottom:810.400000pt;}
.y101{bottom:811.360000pt;}
.y23a{bottom:813.920000pt;}
.yb3{bottom:816.640000pt;}
.y182{bottom:817.280000pt;}
.y2c{bottom:820.640000pt;}
.ya{bottom:823.360000pt;}
.y1ca{bottom:824.000000pt;}
.y14b{bottom:824.320000pt;}
.y127{bottom:828.320000pt;}
.y257{bottom:829.440000pt;}
.y73{bottom:837.920000pt;}
.y100{bottom:838.880000pt;}
.y239{bottom:841.440000pt;}
.yb2{bottom:844.320000pt;}
.y181{bottom:844.640000pt;}
.y1c9{bottom:847.840000pt;}
.y2b{bottom:848.320000pt;}
.y9{bottom:850.880000pt;}
.y14a{bottom:855.840000pt;}
.y256{bottom:856.960000pt;}
.y126{bottom:859.840000pt;}
.yff{bottom:863.200000pt;}
.y238{bottom:869.120000pt;}
.yb1{bottom:871.840000pt;}
.y180{bottom:873.600000pt;}
.yfe{bottom:873.920000pt;}
.y2a{bottom:875.840000pt;}
.y8{bottom:878.560000pt;}
.y1c8{bottom:878.720000pt;}
.y72{bottom:880.320000pt;}
.y255{bottom:884.640000pt;}
.y71{bottom:894.880000pt;}
.y237{bottom:896.640000pt;}
.yb0{bottom:899.520000pt;}
.y17f{bottom:901.120000pt;}
.y29{bottom:903.520000pt;}
.y7{bottom:906.080000pt;}
.y1c7{bottom:909.760000pt;}
.y254{bottom:912.160000pt;}
.yfd{bottom:912.480000pt;}
.y70{bottom:920.800000pt;}
.y236{bottom:924.320000pt;}
.yaf{bottom:927.040000pt;}
.y17e{bottom:928.800000pt;}
.y28{bottom:931.040000pt;}
.y6{bottom:933.760000pt;}
.yfc{bottom:936.800000pt;}
.y6f{bottom:946.720000pt;}
.yfb{bottom:947.520000pt;}
.y1c6{bottom:948.000000pt;}
.y253{bottom:950.400000pt;}
.y235{bottom:951.840000pt;}
.yae{bottom:954.720000pt;}
.y17d{bottom:956.320000pt;}
.y27{bottom:958.720000pt;}
.ye6{bottom:964.960000pt;}
.y5{bottom:968.160000pt;}
.y6e{bottom:972.640000pt;}
.y252{bottom:978.080000pt;}
.y234{bottom:979.520000pt;}
.yad{bottom:982.240000pt;}
.y17c{bottom:985.120000pt;}
.yfa{bottom:985.600000pt;}
.y26{bottom:986.240000pt;}
.y6c{bottom:998.720000pt;}
.ye5{bottom:1003.200000pt;}
.y4{bottom:1003.680000pt;}
.y251{bottom:1005.600000pt;}
.y233{bottom:1007.040000pt;}
.yac{bottom:1009.920000pt;}
.y8e{bottom:1010.880000pt;}
.y17b{bottom:1012.640000pt;}
.ya5{bottom:1013.752960pt;}
.y25{bottom:1013.920000pt;}
.y24{bottom:1041.440000pt;}
.y3{bottom:1042.560000pt;}
.h8{height:25.278667pt;}
.ha{height:25.280000pt;}
.he{height:27.520000pt;}
.h10{height:27.521333pt;}
.hd{height:27.678667pt;}
.hf{height:27.680000pt;}
.h11{height:46.080000pt;}
.h17{height:48.060000pt;}
.h1a{height:48.558750pt;}
.hc{height:51.663750pt;}
.hb{height:51.807500pt;}
.h4{height:52.152500pt;}
.h14{height:52.210000pt;}
.h9{height:52.468750pt;}
.h3{height:56.156250pt;}
.h2{height:56.687500pt;}
.h6{height:57.031250pt;}
.h19{height:61.944687pt;}
.h7{height:66.726562pt;}
.h15{height:70.065000pt;}
.h5{height:75.851562pt;}
.h16{height:88.146650pt;}
.h12{height:94.140000pt;}
.h18{height:99.036250pt;}
.h13{height:99.911250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:122.080000pt;}
.w2{width:174.720000pt;}
.w6{width:192.960000pt;}
.w4{width:287.040000pt;}
.w3{width:428.640000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x11{left:17.120000pt;}
.x1a{left:22.400000pt;}
.x14{left:31.840000pt;}
.x13{left:38.400000pt;}
.xf{left:39.680000pt;}
.x15{left:40.960000pt;}
.x18{left:43.680000pt;}
.x17{left:47.520000pt;}
.x16{left:61.920000pt;}
.x1b{left:69.280000pt;}
.x19{left:72.160000pt;}
.x12{left:73.760000pt;}
.x2{left:94.400000pt;}
.x2a{left:102.080000pt;}
.x5{left:118.400000pt;}
.x1f{left:128.960000pt;}
.x4{left:141.600000pt;}
.x3{left:262.560000pt;}
.x7{left:269.920000pt;}
.x2e{left:322.080000pt;}
.x2c{left:327.360000pt;}
.x29{left:337.601280pt;}
.x2d{left:353.440000pt;}
.x2f{left:381.120000pt;}
.xe{left:382.880000pt;}
.x1{left:384.800000pt;}
.x9{left:396.800000pt;}
.x23{left:444.960000pt;}
.x20{left:451.040000pt;}
.x1e{left:459.040000pt;}
.x25{left:491.200000pt;}
.x28{left:496.800000pt;}
.x10{left:505.600000pt;}
.xd{left:520.800000pt;}
.xc{left:562.720000pt;}
.x2b{left:578.720000pt;}
.x1d{left:612.800000pt;}
.xb{left:613.760000pt;}
.x1c{left:614.720000pt;}
.x30{left:617.280000pt;}
.x27{left:619.680000pt;}
.x26{left:620.800000pt;}
.x22{left:624.960000pt;}
.x32{left:634.880000pt;}
.xa{left:638.400000pt;}
.x8{left:640.320000pt;}
.x21{left:641.600000pt;}
.x34{left:642.720000pt;}
.x31{left:643.840000pt;}
.x33{left:646.080000pt;}
.x24{left:699.200000pt;}
}




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