
    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_2b2ad153c3c36bb0046a816c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.022000;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_a873cf73a00c1f5aa4662171.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_5415b8f2f209310fcc12bd89.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.711000;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_3cbb59db5517313f9cccbf71.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.956000;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_7e379b36d1c0f6f3ad4785f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.905000;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_3d78ac0c0e75c30d1c6d3801.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.814000;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_fd97ad7be88332f135f230dd.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_e46d4377cadb5cf74f84ac1e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.514000;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_131693ab1e274ce719652ad1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.354000;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;}
.m5{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v1{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.ls28{letter-spacing:-0.819000px;}
.ls7{letter-spacing:-0.126060px;}
.ls9{letter-spacing:-0.086400px;}
.lsa{letter-spacing:-0.009600px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.ls1{letter-spacing:0.001200px;}
.ls25{letter-spacing:0.001800px;}
.ls4{letter-spacing:0.002400px;}
.ls3{letter-spacing:0.002700px;}
.ls1b{letter-spacing:0.002970px;}
.ls1f{letter-spacing:0.003960px;}
.ls27{letter-spacing:0.835800px;}
.ls17{letter-spacing:1.074600px;}
.lsb{letter-spacing:9.374820px;}
.lsd{letter-spacing:9.954000px;}
.ls5{letter-spacing:11.268600px;}
.ls24{letter-spacing:11.880000px;}
.ls10{letter-spacing:11.999400px;}
.ls20{letter-spacing:12.047400px;}
.ls1c{letter-spacing:12.085200px;}
.ls14{letter-spacing:12.154800px;}
.ls8{letter-spacing:12.252600px;}
.ls15{letter-spacing:13.977600px;}
.lsc{letter-spacing:14.590800px;}
.lsf{letter-spacing:15.103200px;}
.lse{letter-spacing:15.254400px;}
.ls1a{letter-spacing:15.409800px;}
.ls1d{letter-spacing:15.969600px;}
.ls18{letter-spacing:16.210800px;}
.ls23{letter-spacing:16.449600px;}
.ls11{letter-spacing:16.619400px;}
.ls12{letter-spacing:16.636200px;}
.ls21{letter-spacing:17.555400px;}
.ls26{letter-spacing:17.899200px;}
.ls13{letter-spacing:18.102000px;}
.ls22{letter-spacing:18.716400px;}
.ls1e{letter-spacing:19.670400px;}
.ls19{letter-spacing:20.077200px;}
.ls2{letter-spacing:21.428400px;}
.ls16{letter-spacing:29.489400px;}
.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;}
}
.wsb0{word-spacing:-28.602000px;}
.ws121{word-spacing:-27.969600px;}
.ws91{word-spacing:-25.909800px;}
.ws40{word-spacing:-25.752600px;}
.ws78{word-spacing:-25.090800px;}
.ws57{word-spacing:-21.768600px;}
.ws7b{word-spacing:-20.454000px;}
.ws76{word-spacing:-19.874820px;}
.ws16{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.000000px;}
.ws123{word-spacing:-9.003960px;}
.ws3{word-spacing:-9.000000px;}
.ws12c{word-spacing:-1.636200px;}
.ws135{word-spacing:-1.452600px;}
.ws134{word-spacing:-1.447200px;}
.ws102{word-spacing:-1.414800px;}
.ws20{word-spacing:-1.366200px;}
.ws3f{word-spacing:-1.247400px;}
.ws110{word-spacing:-1.228800px;}
.wsf8{word-spacing:-1.177200px;}
.ws75{word-spacing:-1.125600px;}
.ws199{word-spacing:-1.108800px;}
.ws45{word-spacing:-1.092000px;}
.ws176{word-spacing:-1.058400px;}
.ws1a6{word-spacing:-1.020600px;}
.wse4{word-spacing:-0.988200px;}
.wsdd{word-spacing:-0.907200px;}
.ws18{word-spacing:-0.837000px;}
.wsb1{word-spacing:-0.768600px;}
.ws129{word-spacing:-0.766800px;}
.ws92{word-spacing:-0.663600px;}
.ws105{word-spacing:-0.658800px;}
.ws106{word-spacing:-0.648000px;}
.ws160{word-spacing:-0.631800px;}
.ws4a{word-spacing:-0.630000px;}
.ws158{word-spacing:-0.628800px;}
.ws1da{word-spacing:-0.596400px;}
.ws7a{word-spacing:-0.546000px;}
.ws49{word-spacing:-0.529200px;}
.ws12d{word-spacing:-0.496800px;}
.ws9a{word-spacing:-0.424200px;}
.ws82{word-spacing:-0.390600px;}
.ws109{word-spacing:-0.356400px;}
.ws156{word-spacing:-0.225600px;}
.ws157{word-spacing:-0.220800px;}
.ws1d{word-spacing:-0.205200px;}
.ws1c7{word-spacing:-0.189000px;}
.ws115{word-spacing:-0.187200px;}
.ws79{word-spacing:-0.151200px;}
.ws152{word-spacing:-0.120000px;}
.ws1d1{word-spacing:-0.067200px;}
.wsb{word-spacing:-0.054000px;}
.ws1a{word-spacing:-0.016200px;}
.ws60{word-spacing:0.000000px;}
.wscb{word-spacing:0.091800px;}
.ws14c{word-spacing:0.100800px;}
.wscc{word-spacing:0.102600px;}
.ws19{word-spacing:0.167400px;}
.ws97{word-spacing:0.172200px;}
.ws53{word-spacing:0.222600px;}
.ws29{word-spacing:0.356400px;}
.ws83{word-spacing:0.357000px;}
.ws37{word-spacing:0.372600px;}
.wsa3{word-spacing:0.373800px;}
.wsa9{word-spacing:0.390600px;}
.wsfb{word-spacing:0.426600px;}
.ws1b2{word-spacing:0.428400px;}
.ws44{word-spacing:0.445200px;}
.ws184{word-spacing:0.475200px;}
.wscd{word-spacing:0.545400px;}
.wsd6{word-spacing:0.561600px;}
.ws150{word-spacing:0.643200px;}
.ws14f{word-spacing:0.648000px;}
.ws5a{word-spacing:0.662400px;}
.wsfe{word-spacing:0.712800px;}
.ws187{word-spacing:0.766800px;}
.ws56{word-spacing:0.768600px;}
.ws191{word-spacing:0.785400px;}
.ws62{word-spacing:0.852600px;}
.ws4d{word-spacing:0.903000px;}
.ws43{word-spacing:0.936600px;}
.ws125{word-spacing:0.955800px;}
.ws1be{word-spacing:1.003800px;}
.ws3c{word-spacing:1.004400px;}
.ws9c{word-spacing:1.024800px;}
.wse1{word-spacing:1.036800px;}
.ws3d{word-spacing:1.107000px;}
.ws50{word-spacing:1.159200px;}
.ws3e{word-spacing:1.161000px;}
.wsf1{word-spacing:1.225800px;}
.ws8a{word-spacing:1.226400px;}
.ws3a{word-spacing:1.258200px;}
.ws69{word-spacing:1.260000px;}
.ws14b{word-spacing:1.276800px;}
.ws33{word-spacing:1.382400px;}
.ws95{word-spacing:1.449000px;}
.ws166{word-spacing:1.463400px;}
.ws7c{word-spacing:1.465800px;}
.ws9d{word-spacing:1.499400px;}
.ws10f{word-spacing:1.501200px;}
.ws8b{word-spacing:1.516200px;}
.ws146{word-spacing:1.582200px;}
.wsb7{word-spacing:1.583400px;}
.ws64{word-spacing:1.654800px;}
.wsf4{word-spacing:1.668600px;}
.ws89{word-spacing:1.671600px;}
.ws117{word-spacing:1.804800px;}
.wsf6{word-spacing:1.841400px;}
.ws1b{word-spacing:1.873800px;}
.ws61{word-spacing:1.911000px;}
.wsae{word-spacing:2.011800px;}
.ws67{word-spacing:2.028600px;}
.ws17a{word-spacing:2.079000px;}
.wsd1{word-spacing:2.111400px;}
.ws12e{word-spacing:2.127600px;}
.ws159{word-spacing:2.198400px;}
.ws1ae{word-spacing:2.200800px;}
.ws7e{word-spacing:2.234400px;}
.ws73{word-spacing:2.301600px;}
.ws1b5{word-spacing:2.318400px;}
.ws175{word-spacing:2.332800px;}
.wsde{word-spacing:2.349000px;}
.ws194{word-spacing:2.368800px;}
.ws114{word-spacing:2.371200px;}
.ws46{word-spacing:2.385600px;}
.ws47{word-spacing:2.389800px;}
.ws7f{word-spacing:2.402400px;}
.ws31{word-spacing:2.403000px;}
.ws148{word-spacing:2.435400px;}
.ws84{word-spacing:2.436000px;}
.ws1a4{word-spacing:2.452800px;}
.ws17b{word-spacing:2.473200px;}
.wsc6{word-spacing:2.489400px;}
.ws30{word-spacing:2.640600px;}
.ws27{word-spacing:2.656800px;}
.wsf7{word-spacing:2.673000px;}
.ws7d{word-spacing:2.675400px;}
.ws1dc{word-spacing:2.709000px;}
.ws23{word-spacing:2.727000px;}
.ws6d{word-spacing:2.814000px;}
.ws15c{word-spacing:2.827200px;}
.wsc4{word-spacing:2.829600px;}
.ws186{word-spacing:2.862000px;}
.ws17{word-spacing:2.878200px;}
.ws10a{word-spacing:2.948400px;}
.ws144{word-spacing:2.980800px;}
.ws6c{word-spacing:2.998800px;}
.ws173{word-spacing:3.067200px;}
.ws137{word-spacing:3.083400px;}
.ws6a{word-spacing:3.137400px;}
.wsba{word-spacing:3.187800px;}
.ws172{word-spacing:3.202200px;}
.ws1d7{word-spacing:3.238200px;}
.ws162{word-spacing:3.240000px;}
.ws1d4{word-spacing:3.255000px;}
.ws10e{word-spacing:3.256200px;}
.ws112{word-spacing:3.288000px;}
.ws161{word-spacing:3.342600px;}
.wsc8{word-spacing:3.348000px;}
.wsc9{word-spacing:3.358800px;}
.ws124{word-spacing:3.375000px;}
.wsac{word-spacing:3.376800px;}
.ws26{word-spacing:3.407400px;}
.wsfd{word-spacing:3.423600px;}
.ws1bc{word-spacing:3.473400px;}
.ws4b{word-spacing:3.477600px;}
.ws138{word-spacing:3.510000px;}
.ws188{word-spacing:3.526200px;}
.ws15{word-spacing:3.542400px;}
.ws19a{word-spacing:3.612000px;}
.ws119{word-spacing:3.648000px;}
.ws12a{word-spacing:3.682800px;}
.ws22{word-spacing:3.699000px;}
.ws19b{word-spacing:3.717000px;}
.ws55{word-spacing:3.750600px;}
.ws65{word-spacing:3.817800px;}
.ws5d{word-spacing:3.835200px;}
.wse8{word-spacing:3.850200px;}
.ws5e{word-spacing:3.854400px;}
.ws4e{word-spacing:3.901800px;}
.ws15f{word-spacing:3.920400px;}
.ws1cd{word-spacing:3.939600px;}
.ws4{word-spacing:3.969600px;}
.ws126{word-spacing:3.985200px;}
.ws13e{word-spacing:4.039200px;}
.ws136{word-spacing:4.055400px;}
.ws1ca{word-spacing:4.074000px;}
.ws111{word-spacing:4.089600px;}
.ws77{word-spacing:4.090800px;}
.ws155{word-spacing:4.123200px;}
.wse9{word-spacing:4.125600px;}
.ws17c{word-spacing:4.174200px;}
.ws13d{word-spacing:4.206600px;}
.ws87{word-spacing:4.296600px;}
.wse7{word-spacing:4.309200px;}
.wsa8{word-spacing:4.363800px;}
.ws151{word-spacing:4.449600px;}
.ws16f{word-spacing:4.455000px;}
.ws9{word-spacing:4.465800px;}
.ws72{word-spacing:4.481400px;}
.ws8c{word-spacing:4.519200px;}
.ws12f{word-spacing:4.552200px;}
.ws1c1{word-spacing:4.552800px;}
.ws1e{word-spacing:4.568400px;}
.ws1b3{word-spacing:4.569600px;}
.wsce{word-spacing:4.584600px;}
.ws93{word-spacing:4.586400px;}
.ws9b{word-spacing:4.603200px;}
.wsa0{word-spacing:4.653600px;}
.wsb4{word-spacing:4.704000px;}
.ws2c{word-spacing:4.735800px;}
.ws130{word-spacing:4.752000px;}
.ws85{word-spacing:4.754400px;}
.wsb9{word-spacing:4.758600px;}
.ws17d{word-spacing:4.822200px;}
.ws1a0{word-spacing:4.893000px;}
.ws90{word-spacing:4.909800px;}
.wsf2{word-spacing:4.957200px;}
.ws96{word-spacing:4.993800px;}
.ws15d{word-spacing:5.011200px;}
.wsbf{word-spacing:5.027400px;}
.wsb3{word-spacing:5.044200px;}
.ws34{word-spacing:5.146200px;}
.ws1ad{word-spacing:5.166000px;}
.ws1c{word-spacing:5.178600px;}
.ws139{word-spacing:5.216400px;}
.ws1ba{word-spacing:5.233200px;}
.ws6e{word-spacing:5.334000px;}
.ws9f{word-spacing:5.350800px;}
.ws108{word-spacing:5.383800px;}
.ws94{word-spacing:5.439000px;}
.ws8{word-spacing:5.464800px;}
.ws7{word-spacing:5.471400px;}
.ws16a{word-spacing:5.508000px;}
.ws169{word-spacing:5.513400px;}
.ws16b{word-spacing:5.524200px;}
.ws8e{word-spacing:5.539800px;}
.wsd5{word-spacing:5.572800px;}
.ws11c{word-spacing:5.592000px;}
.ws2a{word-spacing:5.605200px;}
.ws100{word-spacing:5.616000px;}
.wsff{word-spacing:5.621400px;}
.ws2d{word-spacing:5.643000px;}
.ws17f{word-spacing:5.659200px;}
.wsfa{word-spacing:5.691600px;}
.wsdb{word-spacing:5.745600px;}
.ws1d2{word-spacing:5.762400px;}
.ws1a8{word-spacing:5.812800px;}
.ws8f{word-spacing:5.863200px;}
.ws48{word-spacing:5.880000px;}
.ws15a{word-spacing:5.899200px;}
.ws1f{word-spacing:5.913000px;}
.ws179{word-spacing:5.929200px;}
.ws32{word-spacing:6.031800px;}
.ws116{word-spacing:6.067200px;}
.wse5{word-spacing:6.102000px;}
.wsa1{word-spacing:6.119400px;}
.ws183{word-spacing:6.134400px;}
.wsa4{word-spacing:6.136200px;}
.ws145{word-spacing:6.204600px;}
.ws14e{word-spacing:6.240000px;}
.ws1c2{word-spacing:6.274800px;}
.ws140{word-spacing:6.339600px;}
.ws14a{word-spacing:6.374400px;}
.ws143{word-spacing:6.447600px;}
.ws142{word-spacing:6.458400px;}
.ws8d{word-spacing:6.476400px;}
.wsa5{word-spacing:6.510000px;}
.ws197{word-spacing:6.564600px;}
.wse2{word-spacing:6.577200px;}
.ws19f{word-spacing:6.581400px;}
.ws1bf{word-spacing:6.682200px;}
.ws133{word-spacing:6.696000px;}
.wsfc{word-spacing:6.733800px;}
.ws68{word-spacing:6.816600px;}
.ws170{word-spacing:6.868800px;}
.ws1{word-spacing:6.973200px;}
.ws122{word-spacing:6.980400px;}
.ws2{word-spacing:6.981000px;}
.ws15b{word-spacing:6.988800px;}
.wsc5{word-spacing:7.041600px;}
.wsb8{word-spacing:7.056000px;}
.ws185{word-spacing:7.057800px;}
.ws174{word-spacing:7.074000px;}
.ws189{word-spacing:7.106400px;}
.ws171{word-spacing:7.138800px;}
.wsbe{word-spacing:7.241400px;}
.ws98{word-spacing:7.295400px;}
.ws2f{word-spacing:7.327800px;}
.wsa7{word-spacing:7.362600px;}
.ws63{word-spacing:7.396200px;}
.wsc3{word-spacing:7.500600px;}
.ws71{word-spacing:7.534800px;}
.ws39{word-spacing:7.565400px;}
.ws11e{word-spacing:7.569600px;}
.wsaf{word-spacing:7.602000px;}
.ws131{word-spacing:7.608600px;}
.ws132{word-spacing:7.619400px;}
.wscf{word-spacing:7.651800px;}
.ws120{word-spacing:7.670400px;}
.ws1ab{word-spacing:7.686000px;}
.ws11d{word-spacing:7.804800px;}
.ws66{word-spacing:7.858200px;}
.ws127{word-spacing:7.889400px;}
.ws6{word-spacing:7.958400px;}
.ws13b{word-spacing:7.992000px;}
.ws5f{word-spacing:8.030400px;}
.ws178{word-spacing:8.062200px;}
.wse0{word-spacing:8.078400px;}
.ws6b{word-spacing:8.114400px;}
.ws16d{word-spacing:8.127000px;}
.ws5c{word-spacing:8.164800px;}
.ws80{word-spacing:8.198400px;}
.wse6{word-spacing:8.213400px;}
.wsf9{word-spacing:8.229600px;}
.ws3b{word-spacing:8.251200px;}
.ws149{word-spacing:8.299200px;}
.wsca{word-spacing:8.353800px;}
.ws13f{word-spacing:8.370000px;}
.ws9e{word-spacing:8.404200px;}
.wsea{word-spacing:8.418600px;}
.wsad{word-spacing:8.421000px;}
.wsec{word-spacing:8.521200px;}
.ws4f{word-spacing:8.555400px;}
.ws1b9{word-spacing:8.572200px;}
.ws36{word-spacing:8.656200px;}
.ws28{word-spacing:8.694000px;}
.ws107{word-spacing:8.710200px;}
.ws1b6{word-spacing:8.845200px;}
.ws35{word-spacing:9.050400px;}
.ws74{word-spacing:9.051000px;}
.ws24{word-spacing:9.066600px;}
.wsa6{word-spacing:9.135000px;}
.ws167{word-spacing:9.136800px;}
.ws70{word-spacing:9.151800px;}
.ws195{word-spacing:9.172800px;}
.ws1b1{word-spacing:9.273600px;}
.ws198{word-spacing:9.349200px;}
.ws21{word-spacing:9.406800px;}
.ws1a5{word-spacing:9.437400px;}
.ws1a9{word-spacing:9.454200px;}
.wsb2{word-spacing:9.462600px;}
.ws15e{word-spacing:9.509400px;}
.ws86{word-spacing:9.563400px;}
.ws118{word-spacing:9.580800px;}
.ws1bb{word-spacing:9.714600px;}
.ws18e{word-spacing:9.819600px;}
.ws38{word-spacing:9.833400px;}
.ws104{word-spacing:9.849600px;}
.ws1d9{word-spacing:9.861600px;}
.ws19c{word-spacing:9.895200px;}
.wsdf{word-spacing:9.903600px;}
.ws99{word-spacing:10.033800px;}
.ws1c3{word-spacing:10.038000px;}
.ws12b{word-spacing:10.038600px;}
.ws1d3{word-spacing:10.050600px;}
.ws1c6{word-spacing:10.269000px;}
.wsd8{word-spacing:10.324800px;}
.ws58{word-spacing:10.344000px;}
.ws19d{word-spacing:10.357200px;}
.ws1d0{word-spacing:10.390800px;}
.ws18c{word-spacing:10.500000px;}
.wsdc{word-spacing:10.584000px;}
.ws1ce{word-spacing:10.617600px;}
.wsb5{word-spacing:10.705800px;}
.ws1c5{word-spacing:10.789800px;}
.wsa2{word-spacing:10.831800px;}
.ws1a7{word-spacing:10.857000px;}
.ws154{word-spacing:10.857600px;}
.ws52{word-spacing:10.924200px;}
.ws51{word-spacing:10.928400px;}
.wsd0{word-spacing:10.945800px;}
.wsc0{word-spacing:10.956600px;}
.wsc1{word-spacing:10.962000px;}
.ws81{word-spacing:11.130000px;}
.ws190{word-spacing:11.243400px;}
.ws4c{word-spacing:11.361000px;}
.ws181{word-spacing:11.367000px;}
.ws42{word-spacing:11.394600px;}
.ws164{word-spacing:11.437200px;}
.ws1bd{word-spacing:11.461800px;}
.ws18f{word-spacing:11.508000px;}
.ws1cb{word-spacing:11.575200px;}
.ws11a{word-spacing:11.740800px;}
.ws177{word-spacing:11.745000px;}
.ws11b{word-spacing:11.745600px;}
.ws18a{word-spacing:11.761200px;}
.ws18b{word-spacing:11.812800px;}
.wse3{word-spacing:11.947200px;}
.ws14d{word-spacing:12.000000px;}
.wsb6{word-spacing:12.045600px;}
.ws88{word-spacing:12.129600px;}
.ws168{word-spacing:12.171600px;}
.ws128{word-spacing:12.187800px;}
.ws10d{word-spacing:12.252600px;}
.wsf5{word-spacing:12.457800px;}
.ws101{word-spacing:12.614400px;}
.wsd4{word-spacing:12.711600px;}
.ws11f{word-spacing:12.715200px;}
.ws1b4{word-spacing:12.776400px;}
.ws193{word-spacing:12.826800px;}
.ws103{word-spacing:12.884400px;}
.ws1a3{word-spacing:12.910800px;}
.ws1db{word-spacing:13.167000px;}
.wsc7{word-spacing:13.192200px;}
.ws1b7{word-spacing:13.221600px;}
.ws141{word-spacing:13.278600px;}
.ws1cf{word-spacing:13.423200px;}
.wsab{word-spacing:13.532400px;}
.ws1d6{word-spacing:13.700400px;}
.ws180{word-spacing:13.786200px;}
.ws41{word-spacing:13.935600px;}
.ws13c{word-spacing:14.164200px;}
.ws113{word-spacing:14.198400px;}
.ws54{word-spacing:14.208600px;}
.ws192{word-spacing:14.326200px;}
.ws1cc{word-spacing:14.397600px;}
.ws1c9{word-spacing:14.532000px;}
.wsef{word-spacing:14.574600px;}
.wsf0{word-spacing:14.655600px;}
.wseb{word-spacing:14.677200px;}
.ws1d8{word-spacing:14.821800px;}
.wsd{word-spacing:14.828400px;}
.ws1c0{word-spacing:15.010800px;}
.wsd9{word-spacing:15.049800px;}
.wsf3{word-spacing:15.201000px;}
.ws1a2{word-spacing:15.351000px;}
.ws17e{word-spacing:15.357600px;}
.wsd7{word-spacing:15.438600px;}
.wsa{word-spacing:15.595200px;}
.wsc{word-spacing:15.611400px;}
.ws1ac{word-spacing:15.624000px;}
.wsbc{word-spacing:15.865200px;}
.ws1a1{word-spacing:15.964200px;}
.wsd2{word-spacing:15.973200px;}
.wsd3{word-spacing:15.989400px;}
.ws12{word-spacing:16.102800px;}
.ws16c{word-spacing:16.124400px;}
.wsda{word-spacing:16.140600px;}
.ws13a{word-spacing:16.243200px;}
.ws1c8{word-spacing:16.321200px;}
.ws59{word-spacing:16.617600px;}
.wsf{word-spacing:16.788600px;}
.ws196{word-spacing:17.022600px;}
.ws147{word-spacing:17.026200px;}
.ws19e{word-spacing:17.039400px;}
.ws13{word-spacing:17.128800px;}
.ws14{word-spacing:17.911800px;}
.ws1aa{word-spacing:18.144000px;}
.wsbb{word-spacing:18.219600px;}
.ws182{word-spacing:18.527400px;}
.ws2b{word-spacing:18.678600px;}
.ws1b8{word-spacing:19.030200px;}
.ws165{word-spacing:19.245600px;}
.ws6f{word-spacing:19.609800px;}
.ws1b0{word-spacing:19.731600px;}
.ws163{word-spacing:19.909800px;}
.wsed{word-spacing:20.125800px;}
.ws18d{word-spacing:20.277600px;}
.ws153{word-spacing:20.332800px;}
.ws1af{word-spacing:20.361600px;}
.ws11{word-spacing:20.503800px;}
.wsc2{word-spacing:20.590200px;}
.wsbd{word-spacing:20.687400px;}
.ws2e{word-spacing:20.779200px;}
.ws10{word-spacing:21.216600px;}
.ws1c4{word-spacing:21.247800px;}
.ws1d5{word-spacing:22.033200px;}
.wse{word-spacing:22.069800px;}
.ws5b{word-spacing:22.209600px;}
.ws16e{word-spacing:22.977000px;}
.wsaa{word-spacing:23.990400px;}
.ws10c{word-spacing:25.698600px;}
.wsee{word-spacing:28.020600px;}
.ws10b{word-spacing:28.582200px;}
.ws25{word-spacing:30.969000px;}
.ws5{word-spacing:36.000000px;}
._10{margin-left:-2384.116680px;}
._11{margin-left:-1056.395340px;}
._2{margin-left:-34.485000px;}
._4{margin-left:-32.795400px;}
._8{margin-left:-28.139400px;}
._9{margin-left:-25.392600px;}
._e{margin-left:-23.827200px;}
._6{margin-left:-20.649600px;}
._f{margin-left:-18.566400px;}
._15{margin-left:-16.233000px;}
._13{margin-left:-14.578200px;}
._b{margin-left:-12.274200px;}
._c{margin-left:-11.272800px;}
._14{margin-left:-9.945600px;}
._1{margin-left:-8.620800px;}
._7{margin-left:-6.377400px;}
._5{margin-left:-4.860000px;}
._12{margin-left:-3.767400px;}
._a{margin-left:-1.960200px;}
._3{width:1.465200px;}
._d{width:12.000000px;}
._16{width:15.972600px;}
._19{width:24.000000px;}
._18{width:84.000000px;}
._1a{width:108.000000px;}
._0{width:1427.809800px;}
._17{width:1869.875400px;}
._1b{width:1877.150400px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:27.000000px;}
.fsa{font-size:30.000000px;}
.fs7{font-size:33.000000px;}
.fs1{font-size:36.000000px;}
.fs8{font-size:39.000000px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:57.575250px;}
.y215{bottom:87.550950px;}
.y1c8{bottom:87.568650px;}
.yc7{bottom:87.571050px;}
.yc5{bottom:87.574050px;}
.y6c{bottom:87.575250px;}
.y65{bottom:87.575550px;}
.y14b{bottom:87.575850px;}
.y110{bottom:87.586350px;}
.yc6{bottom:91.700250px;}
.y6b{bottom:92.450250px;}
.y214{bottom:99.551400px;}
.y17e{bottom:101.071050px;}
.y6a{bottom:101.075250px;}
.y64{bottom:101.075400px;}
.y14a{bottom:101.075850px;}
.yc4{bottom:101.108550px;}
.y10f{bottom:104.086050px;}
.y1c7{bottom:104.631300px;}
.y17d{bottom:105.950250px;}
.y213{bottom:111.551850px;}
.y62{bottom:112.325250px;}
.y63{bottom:114.575250px;}
.y61{bottom:114.575400px;}
.y149{bottom:114.575850px;}
.yc3{bottom:114.643050px;}
.y10e{bottom:120.585750px;}
.y1c6{bottom:121.693950px;}
.y212{bottom:123.552300px;}
.y148{bottom:128.071050px;}
.y69{bottom:128.075250px;}
.y60{bottom:128.075400px;}
.yc2{bottom:128.173350px;}
.yc0{bottom:128.176800px;}
.yc1{bottom:132.302700px;}
.y147{bottom:132.950250px;}
.y211{bottom:136.012650px;}
.y10d{bottom:137.085450px;}
.y1c5{bottom:138.774150px;}
.y5f{bottom:141.575250px;}
.y5d{bottom:141.575850px;}
.ybf{bottom:141.711300px;}
.y5e{bottom:145.700250px;}
.y146{bottom:146.450250px;}
.y210{bottom:148.013100px;}
.y10c{bottom:153.585150px;}
.y68{bottom:155.075250px;}
.y5c{bottom:155.075700px;}
.ybe{bottom:155.241600px;}
.ybc{bottom:155.242500px;}
.y1c4{bottom:155.854350px;}
.ybd{bottom:159.370800px;}
.y20f{bottom:160.013550px;}
.y67{bottom:168.575250px;}
.y5b{bottom:168.575550px;}
.ybb{bottom:168.777000px;}
.y10b{bottom:170.084850px;}
.y20e{bottom:172.473900px;}
.y1c3{bottom:172.934550px;}
.y66{bottom:182.075250px;}
.y5a{bottom:182.075400px;}
.yba{bottom:182.311500px;}
.y20d{bottom:184.474350px;}
.y10a{bottom:186.584550px;}
.y1c2{bottom:190.014750px;}
.y59{bottom:195.575250px;}
.y57{bottom:195.575850px;}
.yb9{bottom:195.846000px;}
.y20c{bottom:196.474800px;}
.y58{bottom:199.700250px;}
.y109{bottom:203.084250px;}
.y1c1{bottom:207.093600px;}
.y20b{bottom:208.935150px;}
.y56{bottom:209.075700px;}
.yb8{bottom:209.380500px;}
.y108{bottom:219.583950px;}
.y20a{bottom:220.935600px;}
.y55{bottom:222.575550px;}
.yb7{bottom:222.915000px;}
.y1c0{bottom:224.173800px;}
.y209{bottom:233.395950px;}
.y54{bottom:236.075400px;}
.y107{bottom:236.083650px;}
.yb6{bottom:236.449500px;}
.y1bf{bottom:241.254000px;}
.y208{bottom:245.396400px;}
.y53{bottom:249.575250px;}
.y51{bottom:249.575400px;}
.yb5{bottom:249.984000px;}
.y106{bottom:252.583350px;}
.y52{bottom:253.700250px;}
.y207{bottom:257.856750px;}
.y1be{bottom:258.332850px;}
.y50{bottom:263.075250px;}
.y4e{bottom:263.076300px;}
.yb4{bottom:263.514300px;}
.yb2{bottom:263.515200px;}
.y33{bottom:264.582900px;}
.y4f{bottom:267.200250px;}
.yb3{bottom:267.643500px;}
.y105{bottom:269.083050px;}
.y206{bottom:269.857200px;}
.y1bd{bottom:275.411700px;}
.y4d{bottom:276.576150px;}
.yb1{bottom:277.049700px;}
.y32{bottom:281.082600px;}
.y205{bottom:282.317550px;}
.y104{bottom:285.582750px;}
.y4c{bottom:290.076000px;}
.yb0{bottom:290.584200px;}
.y1bc{bottom:292.490550px;}
.y204{bottom:294.318000px;}
.y31{bottom:297.582300px;}
.y103{bottom:302.082450px;}
.y4b{bottom:303.575850px;}
.yaf{bottom:304.118700px;}
.y203{bottom:306.318450px;}
.y1bb{bottom:309.569400px;}
.y30{bottom:314.082000px;}
.yae{bottom:317.653200px;}
.y202{bottom:318.318900px;}
.y102{bottom:318.582150px;}
.y4a{bottom:323.075400px;}
.y1ba{bottom:326.648250px;}
.y2f{bottom:330.581700px;}
.y201{bottom:330.779250px;}
.yad{bottom:331.187700px;}
.y101{bottom:335.081850px;}
.y200{bottom:342.779700px;}
.y1b9{bottom:343.727100px;}
.yac{bottom:344.722200px;}
.y2e{bottom:347.081400px;}
.y100{bottom:351.581550px;}
.y1ff{bottom:354.780150px;}
.yab{bottom:358.256700px;}
.y1b8{bottom:360.805950px;}
.y49{bottom:363.575550px;}
.y2d{bottom:363.581100px;}
.y1fe{bottom:367.240500px;}
.yff{bottom:368.081250px;}
.ya9{bottom:369.541200px;}
.ya8{bottom:371.784300px;}
.yaa{bottom:371.787000px;}
.y1b7{bottom:377.884800px;}
.y1fd{bottom:379.240950px;}
.y48{bottom:380.075250px;}
.y2c{bottom:380.080800px;}
.y46{bottom:380.088900px;}
.y165{bottom:383.828400px;}
.y173{bottom:383.840550px;}
.yfe{bottom:384.580950px;}
.ya7{bottom:385.318800px;}
.y47{bottom:385.700250px;}
.y1fc{bottom:391.241400px;}
.y1b6{bottom:394.963650px;}
.y2b{bottom:396.580500px;}
.y45{bottom:396.588600px;}
.ya6{bottom:398.853300px;}
.y164{bottom:400.328100px;}
.y172{bottom:400.340250px;}
.yfd{bottom:401.080650px;}
.y141{bottom:402.620700px;}
.y1fb{bottom:403.241850px;}
.y1b5{bottom:412.042500px;}
.ya5{bottom:412.387800px;}
.y2a{bottom:413.080200px;}
.y44{bottom:413.088300px;}
.y1fa{bottom:415.242300px;}
.y163{bottom:416.827800px;}
.y171{bottom:416.839950px;}
.yfc{bottom:417.580350px;}
.y129{bottom:419.113650px;}
.y140{bottom:419.120400px;}
.ya4{bottom:425.922300px;}
.y1f9{bottom:427.702650px;}
.y1b4{bottom:429.121350px;}
.y29{bottom:429.579900px;}
.y43{bottom:429.588000px;}
.y162{bottom:433.327500px;}
.y170{bottom:433.339650px;}
.yfb{bottom:434.080050px;}
.y128{bottom:435.613350px;}
.y13f{bottom:435.620100px;}
.ya3{bottom:439.456800px;}
.y1f8{bottom:439.703100px;}
.y28{bottom:446.079600px;}
.y42{bottom:446.087700px;}
.y1b3{bottom:446.200200px;}
.y161{bottom:449.827200px;}
.y16f{bottom:449.839350px;}
.yfa{bottom:450.579750px;}
.y1f7{bottom:451.703550px;}
.y127{bottom:452.113050px;}
.y13e{bottom:452.119800px;}
.ya2{bottom:452.991300px;}
.y27{bottom:462.579300px;}
.y41{bottom:462.587400px;}
.y1b2{bottom:463.279050px;}
.y1f6{bottom:464.163900px;}
.y160{bottom:466.326900px;}
.y16e{bottom:466.339050px;}
.ya1{bottom:466.525800px;}
.yf9{bottom:467.079450px;}
.y126{bottom:468.612750px;}
.y13d{bottom:468.619500px;}
.y1f5{bottom:476.164350px;}
.y26{bottom:479.079000px;}
.y40{bottom:479.087100px;}
.ya0{bottom:480.060300px;}
.y1b1{bottom:480.357900px;}
.y15f{bottom:482.826600px;}
.y16d{bottom:482.838750px;}
.yf8{bottom:483.579150px;}
.y125{bottom:485.112450px;}
.y13c{bottom:485.119200px;}
.y1f4{bottom:488.164800px;}
.y9f{bottom:493.594800px;}
.y25{bottom:495.578700px;}
.y3f{bottom:495.586800px;}
.y1b0{bottom:497.436750px;}
.y15e{bottom:499.326300px;}
.y16c{bottom:499.338450px;}
.yf7{bottom:500.078850px;}
.y1f3{bottom:500.165250px;}
.y124{bottom:501.612150px;}
.y13b{bottom:501.618900px;}
.y9e{bottom:507.129300px;}
.y24{bottom:512.078400px;}
.y3e{bottom:512.086500px;}
.y1f2{bottom:512.165700px;}
.y1af{bottom:514.516950px;}
.y15d{bottom:515.826000px;}
.y16b{bottom:515.838150px;}
.yf6{bottom:516.578550px;}
.y123{bottom:518.111850px;}
.y13a{bottom:518.118600px;}
.y9d{bottom:520.663800px;}
.y1f1{bottom:524.626050px;}
.y23{bottom:528.578100px;}
.y3d{bottom:528.586200px;}
.y1ae{bottom:531.597150px;}
.y15c{bottom:532.325700px;}
.y16a{bottom:532.337850px;}
.yf5{bottom:533.078250px;}
.y9c{bottom:534.198300px;}
.y122{bottom:534.611550px;}
.y139{bottom:534.618300px;}
.y1f0{bottom:536.626500px;}
.y22{bottom:545.077800px;}
.y3c{bottom:545.085900px;}
.y9b{bottom:547.732800px;}
.y1ef{bottom:548.626950px;}
.y1ad{bottom:548.677350px;}
.y15b{bottom:548.825400px;}
.yf4{bottom:549.577950px;}
.y121{bottom:551.111250px;}
.y138{bottom:551.118000px;}
.y169{bottom:558.383400px;}
.y1ee{bottom:560.627400px;}
.y9a{bottom:561.267300px;}
.y21{bottom:561.577500px;}
.y3b{bottom:561.585600px;}
.y15a{bottom:565.321050px;}
.y158{bottom:565.326300px;}
.y1ac{bottom:565.757550px;}
.yf3{bottom:566.077650px;}
.y120{bottom:567.610950px;}
.y137{bottom:567.617700px;}
.y159{bottom:570.950250px;}
.y1ed{bottom:573.087750px;}
.y99{bottom:574.801800px;}
.y20{bottom:578.077200px;}
.y3a{bottom:578.085300px;}
.y157{bottom:581.826000px;}
.yf2{bottom:582.577350px;}
.y1ab{bottom:582.837750px;}
.y11f{bottom:584.110650px;}
.y136{bottom:584.117400px;}
.y1ec{bottom:585.088200px;}
.y98{bottom:588.336300px;}
.y1f{bottom:594.576900px;}
.y39{bottom:594.585000px;}
.y1eb{bottom:597.088650px;}
.y168{bottom:597.519900px;}
.y156{bottom:598.325700px;}
.yf1{bottom:599.077050px;}
.y96{bottom:599.620800px;}
.y1aa{bottom:599.917950px;}
.y11e{bottom:600.610350px;}
.y135{bottom:600.617100px;}
.y97{bottom:601.866600px;}
.y95{bottom:601.869300px;}
.y1ea{bottom:609.549000px;}
.y1e{bottom:611.076600px;}
.y38{bottom:611.084700px;}
.y167{bottom:614.019600px;}
.y155{bottom:614.825400px;}
.y94{bottom:615.403800px;}
.yf0{bottom:615.576750px;}
.y1a9{bottom:616.998150px;}
.y11d{bottom:617.110050px;}
.y134{bottom:617.116800px;}
.y1e9{bottom:621.549450px;}
.y1d{bottom:627.576300px;}
.y37{bottom:627.584400px;}
.y93{bottom:628.938300px;}
.y166{bottom:630.519300px;}
.y154{bottom:631.321050px;}
.y152{bottom:631.327200px;}
.yef{bottom:632.076450px;}
.y1e8{bottom:633.549900px;}
.y11c{bottom:633.609750px;}
.y133{bottom:633.616500px;}
.y1a8{bottom:634.078350px;}
.y153{bottom:636.950400px;}
.y92{bottom:642.489600px;}
.y1c{bottom:644.076000px;}
.y36{bottom:644.084100px;}
.y1e7{bottom:645.550350px;}
.y151{bottom:647.826900px;}
.yee{bottom:648.576150px;}
.y11b{bottom:650.109450px;}
.y132{bottom:650.116200px;}
.y1a7{bottom:651.158550px;}
.y91{bottom:656.040900px;}
.y1e6{bottom:657.550800px;}
.y1b{bottom:660.575700px;}
.y35{bottom:660.583800px;}
.y150{bottom:664.326600px;}
.yed{bottom:665.075850px;}
.y11a{bottom:666.605100px;}
.y118{bottom:666.611550px;}
.y131{bottom:666.615900px;}
.y1a6{bottom:668.238750px;}
.y90{bottom:669.592200px;}
.y1e5{bottom:670.011150px;}
.y119{bottom:672.234450px;}
.y1a{bottom:677.075400px;}
.y34{bottom:677.083500px;}
.y18d{bottom:680.305950px;}
.y14f{bottom:680.826300px;}
.y8e{bottom:680.893500px;}
.yec{bottom:681.575550px;}
.y1e4{bottom:682.011600px;}
.y117{bottom:683.111250px;}
.y130{bottom:683.115600px;}
.y8f{bottom:683.139300px;}
.y8d{bottom:683.139750px;}
.y1a5{bottom:685.318950px;}
.y6e{bottom:688.106415px;}
.y18c{bottom:693.805950px;}
.y1e3{bottom:694.012050px;}
.y8c{bottom:696.691050px;}
.y14e{bottom:697.326000px;}
.yeb{bottom:698.075250px;}
.y116{bottom:699.610950px;}
.y12f{bottom:699.615300px;}
.y1a4{bottom:702.399150px;}
.y1e2{bottom:706.012500px;}
.y18b{bottom:707.301150px;}
.y189{bottom:707.305950px;}
.y8b{bottom:710.242350px;}
.y18a{bottom:712.180500px;}
.y14d{bottom:713.825700px;}
.y115{bottom:716.110650px;}
.y12e{bottom:716.115000px;}
.y1e1{bottom:718.472850px;}
.y19{bottom:719.075700px;}
.y1a3{bottom:719.479350px;}
.y188{bottom:720.805950px;}
.yea{bottom:723.575400px;}
.y8a{bottom:723.793650px;}
.y14c{bottom:730.325400px;}
.y1e0{bottom:730.473300px;}
.y114{bottom:732.610350px;}
.y12d{bottom:732.614700px;}
.y18{bottom:734.075550px;}
.y187{bottom:734.301150px;}
.y185{bottom:734.305500px;}
.y1a2{bottom:736.559550px;}
.y89{bottom:737.344950px;}
.y186{bottom:739.180500px;}
.y1df{bottom:742.473750px;}
.y184{bottom:747.805500px;}
.y17{bottom:749.075400px;}
.y113{bottom:749.110050px;}
.y12c{bottom:749.114400px;}
.y88{bottom:750.896250px;}
.y1a1{bottom:753.639750px;}
.y1de{bottom:754.474200px;}
.y183{bottom:761.305500px;}
.y16{bottom:764.075250px;}
.y14{bottom:764.076000px;}
.y87{bottom:764.447550px;}
.ye9{bottom:765.576000px;}
.y112{bottom:765.609750px;}
.y12b{bottom:765.614100px;}
.y1dd{bottom:766.474650px;}
.y15{bottom:769.700250px;}
.y1a0{bottom:770.718600px;}
.y182{bottom:774.805500px;}
.y17c{bottom:777.899850px;}
.y86{bottom:777.998850px;}
.y1dc{bottom:778.935000px;}
.y13{bottom:779.075850px;}
.y111{bottom:782.109450px;}
.y12a{bottom:782.113800px;}
.y19f{bottom:787.797450px;}
.y181{bottom:788.305500px;}
.y1db{bottom:790.935450px;}
.y17b{bottom:791.399850px;}
.y85{bottom:791.550150px;}
.ye8{bottom:792.575700px;}
.y12{bottom:794.075700px;}
.y180{bottom:801.805500px;}
.y1da{bottom:802.935900px;}
.y19e{bottom:804.876300px;}
.y17a{bottom:804.899850px;}
.y84{bottom:805.101450px;}
.ye7{bottom:806.075550px;}
.y11{bottom:809.075550px;}
.y1d9{bottom:814.936350px;}
.y17f{bottom:815.305500px;}
.y179{bottom:818.395050px;}
.y177{bottom:818.399250px;}
.y83{bottom:818.652750px;}
.ye6{bottom:819.575400px;}
.y19d{bottom:821.955150px;}
.y178{bottom:823.274250px;}
.y10{bottom:824.075400px;}
.y1d8{bottom:826.936800px;}
.y176{bottom:831.899250px;}
.y82{bottom:832.204050px;}
.ye5{bottom:833.071050px;}
.ye3{bottom:833.075400px;}
.y145{bottom:833.433300px;}
.ye4{bottom:837.200250px;}
.y19c{bottom:839.034000px;}
.yf{bottom:839.075250px;}
.y1d7{bottom:839.397150px;}
.y175{bottom:845.399250px;}
.y81{bottom:845.755350px;}
.ye2{bottom:846.571050px;}
.ye0{bottom:846.575550px;}
.y144{bottom:846.933300px;}
.ye1{bottom:850.700250px;}
.y1d6{bottom:851.397600px;}
.y19b{bottom:856.114200px;}
.y174{bottom:858.899250px;}
.y80{bottom:859.306650px;}
.ydf{bottom:860.075400px;}
.y143{bottom:860.433300px;}
.y1d5{bottom:863.857950px;}
.ye{bottom:871.325250px;}
.y7f{bottom:872.857950px;}
.y19a{bottom:873.194400px;}
.yde{bottom:873.571050px;}
.ydc{bottom:873.575850px;}
.y142{bottom:873.933300px;}
.y1d4{bottom:875.858400px;}
.ydd{bottom:877.700250px;}
.y7e{bottom:886.409250px;}
.ydb{bottom:887.075700px;}
.y1d3{bottom:887.858850px;}
.y199{bottom:890.274600px;}
.yc{bottom:897.575250px;}
.y1d2{bottom:899.859300px;}
.y7d{bottom:899.960550px;}
.yda{bottom:900.575550px;}
.yd{bottom:903.200250px;}
.y198{bottom:907.354800px;}
.y1d1{bottom:912.319650px;}
.ya{bottom:912.575250px;}
.y7c{bottom:913.511850px;}
.yd9{bottom:914.075400px;}
.yb{bottom:918.200250px;}
.y1d0{bottom:924.320100px;}
.y197{bottom:924.435000px;}
.y7b{bottom:927.063150px;}
.yd8{bottom:927.571050px;}
.yd6{bottom:927.575550px;}
.yd7{bottom:931.700250px;}
.y8{bottom:935.075250px;}
.y1cf{bottom:936.320550px;}
.y7a{bottom:940.614450px;}
.yd5{bottom:941.075400px;}
.y196{bottom:941.515200px;}
.y9{bottom:942.200250px;}
.y1ce{bottom:948.764100px;}
.y79{bottom:954.165750px;}
.yd4{bottom:954.571050px;}
.yd2{bottom:954.575700px;}
.y195{bottom:958.595400px;}
.yd3{bottom:958.700250px;}
.y1cd{bottom:960.763500px;}
.y6{bottom:963.575250px;}
.y78{bottom:967.717050px;}
.yd1{bottom:968.075550px;}
.y1cc{bottom:972.762900px;}
.y7{bottom:973.700400px;}
.y194{bottom:975.675600px;}
.y77{bottom:981.268350px;}
.yd0{bottom:981.575400px;}
.y5{bottom:990.575250px;}
.y1cb{bottom:991.206150px;}
.y75{bottom:992.569650px;}
.y193{bottom:992.755800px;}
.y76{bottom:994.815450px;}
.y74{bottom:994.818750px;}
.ycf{bottom:995.071050px;}
.ycd{bottom:995.076600px;}
.yce{bottom:999.200250px;}
.y220{bottom:1002.570900px;}
.y21a{bottom:1002.573000px;}
.y73{bottom:1008.370050px;}
.ycc{bottom:1008.576450px;}
.y192{bottom:1009.834650px;}
.y21f{bottom:1014.571350px;}
.y219{bottom:1014.573450px;}
.y4{bottom:1017.575250px;}
.y72{bottom:1021.921350px;}
.ycb{bottom:1022.076300px;}
.y21e{bottom:1026.571800px;}
.y218{bottom:1026.573900px;}
.y1ca{bottom:1026.575250px;}
.y191{bottom:1026.914850px;}
.y71{bottom:1035.472650px;}
.yca{bottom:1035.576150px;}
.y21d{bottom:1038.572250px;}
.y217{bottom:1038.574350px;}
.y1c9{bottom:1040.075250px;}
.y190{bottom:1043.995050px;}
.y70{bottom:1049.023950px;}
.yc9{bottom:1049.076000px;}
.y21c{bottom:1050.572700px;}
.y216{bottom:1050.574800px;}
.y18f{bottom:1061.075250px;}
.y21b{bottom:1062.573150px;}
.y6f{bottom:1062.575250px;}
.yc8{bottom:1062.575850px;}
.y3{bottom:1070.825250px;}
.y2{bottom:1084.325250px;}
.y1{bottom:1097.825250px;}
.y18e{bottom:1097.825550px;}
.he{height:19.656000px;}
.h9{height:20.097000px;}
.hd{height:20.682000px;}
.hf{height:20.970000px;}
.h12{height:22.980000px;}
.hb{height:23.496000px;}
.h7{height:25.278000px;}
.hc{height:29.232000px;}
.h5{height:32.172000px;}
.h15{height:33.408000px;}
.h1{height:36.768000px;}
.h13{height:36.784800px;}
.h14{height:36.787200px;}
.h8{height:37.584000px;}
.h6{height:39.312000px;}
.ha{height:41.364000px;}
.h11{height:41.380200px;}
.h3{height:41.940000px;}
.h4{height:50.556000px;}
.h10{height:68.835938px;}
.h2{height:73.536000px;}
.h0{height:1174.500000px;}
.w0{width:877.500000px;}
.x0{left:0.000000px;}
.x1{left:64.747050px;}
.x2f{left:75.247500px;}
.x29{left:76.747050px;}
.x18{left:78.247050px;}
.x2{left:83.096550px;}
.x2a{left:84.247350px;}
.xf{left:91.657650px;}
.x5d{left:113.046450px;}
.x15{left:118.747200px;}
.x5e{left:120.516900px;}
.x11{left:122.706000px;}
.x14{left:132.247050px;}
.x5a{left:137.661600px;}
.x6{left:149.718750px;}
.x3{left:161.199750px;}
.x58{left:178.822950px;}
.x13{left:183.605100px;}
.x3e{left:190.788000px;}
.x3f{left:194.913450px;}
.x2d{left:196.024950px;}
.x2e{left:204.739800px;}
.x16{left:227.018100px;}
.x17{left:240.903900px;}
.x40{left:262.490100px;}
.x41{left:266.615550px;}
.x7{left:272.318400px;}
.x56{left:283.761900px;}
.x8{left:293.748300px;}
.x57{left:296.803950px;}
.x30{left:313.975500px;}
.x31{left:318.100800px;}
.x3a{left:320.081100px;}
.x32{left:326.605950px;}
.x33{left:330.731250px;}
.x4{left:335.550150px;}
.x36{left:351.447000px;}
.x37{left:355.572450px;}
.x38{left:364.077600px;}
.x39{left:372.076500px;}
.x34{left:374.999550px;}
.x3b{left:377.377650px;}
.x3d{left:380.476650px;}
.x52{left:382.705950px;}
.x3c{left:384.502950px;}
.x35{left:390.610050px;}
.x9{left:407.521650px;}
.xa{left:419.389350px;}
.x2b{left:429.247350px;}
.x19{left:451.747800px;}
.x65{left:456.997650px;}
.x1e{left:462.246600px;}
.x53{left:463.747200px;}
.x1a{left:465.247800px;}
.x66{left:470.122650px;}
.x47{left:478.753650px;}
.x48{left:489.422100px;}
.x21{left:513.414900px;}
.x22{left:517.796100px;}
.x4e{left:520.195650px;}
.x4b{left:530.686050px;}
.x5{left:531.981600px;}
.x46{left:539.189400px;}
.x4c{left:542.769300px;}
.xb{left:557.563200px;}
.x1d{left:559.627800px;}
.xc{left:563.937900px;}
.x64{left:566.544000px;}
.x61{left:569.626200px;}
.x5f{left:583.772100px;}
.x59{left:589.886550px;}
.x60{left:592.746900px;}
.x44{left:597.468600px;}
.x51{left:601.231500px;}
.x45{left:604.209450px;}
.x62{left:623.252850px;}
.x63{left:634.313700px;}
.x42{left:645.906600px;}
.x1f{left:651.093750px;}
.x43{left:652.688850px;}
.x20{left:655.606950px;}
.x4f{left:666.778650px;}
.x50{left:677.013900px;}
.x23{left:679.895250px;}
.x24{left:684.251550px;}
.x27{left:695.268150px;}
.x28{left:702.887850px;}
.x49{left:705.649650px;}
.xd{left:712.208400px;}
.x4d{left:714.451650px;}
.x4a{left:716.276850px;}
.xe{left:718.583250px;}
.x5b{left:721.130700px;}
.x5c{left:726.054000px;}
.x12{left:748.701900px;}
.x1b{left:762.986850px;}
.x1c{left:774.797400px;}
.x10{left:779.787000px;}
.x25{left:785.544300px;}
.x55{left:789.571350px;}
.x26{left:801.899100px;}
.x54{left:807.335850px;}
.x2c{left:849.000000px;}
@media print{
.v1{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls28{letter-spacing:-0.728000pt;}
.ls7{letter-spacing:-0.112053pt;}
.ls9{letter-spacing:-0.076800pt;}
.lsa{letter-spacing:-0.008533pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.ls1{letter-spacing:0.001067pt;}
.ls25{letter-spacing:0.001600pt;}
.ls4{letter-spacing:0.002133pt;}
.ls3{letter-spacing:0.002400pt;}
.ls1b{letter-spacing:0.002640pt;}
.ls1f{letter-spacing:0.003520pt;}
.ls27{letter-spacing:0.742933pt;}
.ls17{letter-spacing:0.955200pt;}
.lsb{letter-spacing:8.333173pt;}
.lsd{letter-spacing:8.848000pt;}
.ls5{letter-spacing:10.016533pt;}
.ls24{letter-spacing:10.560000pt;}
.ls10{letter-spacing:10.666133pt;}
.ls20{letter-spacing:10.708800pt;}
.ls1c{letter-spacing:10.742400pt;}
.ls14{letter-spacing:10.804267pt;}
.ls8{letter-spacing:10.891200pt;}
.ls15{letter-spacing:12.424533pt;}
.lsc{letter-spacing:12.969600pt;}
.lsf{letter-spacing:13.425067pt;}
.lse{letter-spacing:13.559467pt;}
.ls1a{letter-spacing:13.697600pt;}
.ls1d{letter-spacing:14.195200pt;}
.ls18{letter-spacing:14.409600pt;}
.ls23{letter-spacing:14.621867pt;}
.ls11{letter-spacing:14.772800pt;}
.ls12{letter-spacing:14.787733pt;}
.ls21{letter-spacing:15.604800pt;}
.ls26{letter-spacing:15.910400pt;}
.ls13{letter-spacing:16.090667pt;}
.ls22{letter-spacing:16.636800pt;}
.ls1e{letter-spacing:17.484800pt;}
.ls19{letter-spacing:17.846400pt;}
.ls2{letter-spacing:19.047467pt;}
.ls16{letter-spacing:26.212800pt;}
.wsb0{word-spacing:-25.424000pt;}
.ws121{word-spacing:-24.861867pt;}
.ws91{word-spacing:-23.030933pt;}
.ws40{word-spacing:-22.891200pt;}
.ws78{word-spacing:-22.302933pt;}
.ws57{word-spacing:-19.349867pt;}
.ws7b{word-spacing:-18.181333pt;}
.ws76{word-spacing:-17.666507pt;}
.ws16{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws123{word-spacing:-8.003520pt;}
.ws3{word-spacing:-8.000000pt;}
.ws12c{word-spacing:-1.454400pt;}
.ws135{word-spacing:-1.291200pt;}
.ws134{word-spacing:-1.286400pt;}
.ws102{word-spacing:-1.257600pt;}
.ws20{word-spacing:-1.214400pt;}
.ws3f{word-spacing:-1.108800pt;}
.ws110{word-spacing:-1.092267pt;}
.wsf8{word-spacing:-1.046400pt;}
.ws75{word-spacing:-1.000533pt;}
.ws199{word-spacing:-0.985600pt;}
.ws45{word-spacing:-0.970667pt;}
.ws176{word-spacing:-0.940800pt;}
.ws1a6{word-spacing:-0.907200pt;}
.wse4{word-spacing:-0.878400pt;}
.wsdd{word-spacing:-0.806400pt;}
.ws18{word-spacing:-0.744000pt;}
.wsb1{word-spacing:-0.683200pt;}
.ws129{word-spacing:-0.681600pt;}
.ws92{word-spacing:-0.589867pt;}
.ws105{word-spacing:-0.585600pt;}
.ws106{word-spacing:-0.576000pt;}
.ws160{word-spacing:-0.561600pt;}
.ws4a{word-spacing:-0.560000pt;}
.ws158{word-spacing:-0.558933pt;}
.ws1da{word-spacing:-0.530133pt;}
.ws7a{word-spacing:-0.485333pt;}
.ws49{word-spacing:-0.470400pt;}
.ws12d{word-spacing:-0.441600pt;}
.ws9a{word-spacing:-0.377067pt;}
.ws82{word-spacing:-0.347200pt;}
.ws109{word-spacing:-0.316800pt;}
.ws156{word-spacing:-0.200533pt;}
.ws157{word-spacing:-0.196267pt;}
.ws1d{word-spacing:-0.182400pt;}
.ws1c7{word-spacing:-0.168000pt;}
.ws115{word-spacing:-0.166400pt;}
.ws79{word-spacing:-0.134400pt;}
.ws152{word-spacing:-0.106667pt;}
.ws1d1{word-spacing:-0.059733pt;}
.wsb{word-spacing:-0.048000pt;}
.ws1a{word-spacing:-0.014400pt;}
.ws60{word-spacing:0.000000pt;}
.wscb{word-spacing:0.081600pt;}
.ws14c{word-spacing:0.089600pt;}
.wscc{word-spacing:0.091200pt;}
.ws19{word-spacing:0.148800pt;}
.ws97{word-spacing:0.153067pt;}
.ws53{word-spacing:0.197867pt;}
.ws29{word-spacing:0.316800pt;}
.ws83{word-spacing:0.317333pt;}
.ws37{word-spacing:0.331200pt;}
.wsa3{word-spacing:0.332267pt;}
.wsa9{word-spacing:0.347200pt;}
.wsfb{word-spacing:0.379200pt;}
.ws1b2{word-spacing:0.380800pt;}
.ws44{word-spacing:0.395733pt;}
.ws184{word-spacing:0.422400pt;}
.wscd{word-spacing:0.484800pt;}
.wsd6{word-spacing:0.499200pt;}
.ws150{word-spacing:0.571733pt;}
.ws14f{word-spacing:0.576000pt;}
.ws5a{word-spacing:0.588800pt;}
.wsfe{word-spacing:0.633600pt;}
.ws187{word-spacing:0.681600pt;}
.ws56{word-spacing:0.683200pt;}
.ws191{word-spacing:0.698133pt;}
.ws62{word-spacing:0.757867pt;}
.ws4d{word-spacing:0.802667pt;}
.ws43{word-spacing:0.832533pt;}
.ws125{word-spacing:0.849600pt;}
.ws1be{word-spacing:0.892267pt;}
.ws3c{word-spacing:0.892800pt;}
.ws9c{word-spacing:0.910933pt;}
.wse1{word-spacing:0.921600pt;}
.ws3d{word-spacing:0.984000pt;}
.ws50{word-spacing:1.030400pt;}
.ws3e{word-spacing:1.032000pt;}
.wsf1{word-spacing:1.089600pt;}
.ws8a{word-spacing:1.090133pt;}
.ws3a{word-spacing:1.118400pt;}
.ws69{word-spacing:1.120000pt;}
.ws14b{word-spacing:1.134933pt;}
.ws33{word-spacing:1.228800pt;}
.ws95{word-spacing:1.288000pt;}
.ws166{word-spacing:1.300800pt;}
.ws7c{word-spacing:1.302933pt;}
.ws9d{word-spacing:1.332800pt;}
.ws10f{word-spacing:1.334400pt;}
.ws8b{word-spacing:1.347733pt;}
.ws146{word-spacing:1.406400pt;}
.wsb7{word-spacing:1.407467pt;}
.ws64{word-spacing:1.470933pt;}
.wsf4{word-spacing:1.483200pt;}
.ws89{word-spacing:1.485867pt;}
.ws117{word-spacing:1.604267pt;}
.wsf6{word-spacing:1.636800pt;}
.ws1b{word-spacing:1.665600pt;}
.ws61{word-spacing:1.698667pt;}
.wsae{word-spacing:1.788267pt;}
.ws67{word-spacing:1.803200pt;}
.ws17a{word-spacing:1.848000pt;}
.wsd1{word-spacing:1.876800pt;}
.ws12e{word-spacing:1.891200pt;}
.ws159{word-spacing:1.954133pt;}
.ws1ae{word-spacing:1.956267pt;}
.ws7e{word-spacing:1.986133pt;}
.ws73{word-spacing:2.045867pt;}
.ws1b5{word-spacing:2.060800pt;}
.ws175{word-spacing:2.073600pt;}
.wsde{word-spacing:2.088000pt;}
.ws194{word-spacing:2.105600pt;}
.ws114{word-spacing:2.107733pt;}
.ws46{word-spacing:2.120533pt;}
.ws47{word-spacing:2.124267pt;}
.ws7f{word-spacing:2.135467pt;}
.ws31{word-spacing:2.136000pt;}
.ws148{word-spacing:2.164800pt;}
.ws84{word-spacing:2.165333pt;}
.ws1a4{word-spacing:2.180267pt;}
.ws17b{word-spacing:2.198400pt;}
.wsc6{word-spacing:2.212800pt;}
.ws30{word-spacing:2.347200pt;}
.ws27{word-spacing:2.361600pt;}
.wsf7{word-spacing:2.376000pt;}
.ws7d{word-spacing:2.378133pt;}
.ws1dc{word-spacing:2.408000pt;}
.ws23{word-spacing:2.424000pt;}
.ws6d{word-spacing:2.501333pt;}
.ws15c{word-spacing:2.513067pt;}
.wsc4{word-spacing:2.515200pt;}
.ws186{word-spacing:2.544000pt;}
.ws17{word-spacing:2.558400pt;}
.ws10a{word-spacing:2.620800pt;}
.ws144{word-spacing:2.649600pt;}
.ws6c{word-spacing:2.665600pt;}
.ws173{word-spacing:2.726400pt;}
.ws137{word-spacing:2.740800pt;}
.ws6a{word-spacing:2.788800pt;}
.wsba{word-spacing:2.833600pt;}
.ws172{word-spacing:2.846400pt;}
.ws1d7{word-spacing:2.878400pt;}
.ws162{word-spacing:2.880000pt;}
.ws1d4{word-spacing:2.893333pt;}
.ws10e{word-spacing:2.894400pt;}
.ws112{word-spacing:2.922667pt;}
.ws161{word-spacing:2.971200pt;}
.wsc8{word-spacing:2.976000pt;}
.wsc9{word-spacing:2.985600pt;}
.ws124{word-spacing:3.000000pt;}
.wsac{word-spacing:3.001600pt;}
.ws26{word-spacing:3.028800pt;}
.wsfd{word-spacing:3.043200pt;}
.ws1bc{word-spacing:3.087467pt;}
.ws4b{word-spacing:3.091200pt;}
.ws138{word-spacing:3.120000pt;}
.ws188{word-spacing:3.134400pt;}
.ws15{word-spacing:3.148800pt;}
.ws19a{word-spacing:3.210667pt;}
.ws119{word-spacing:3.242667pt;}
.ws12a{word-spacing:3.273600pt;}
.ws22{word-spacing:3.288000pt;}
.ws19b{word-spacing:3.304000pt;}
.ws55{word-spacing:3.333867pt;}
.ws65{word-spacing:3.393600pt;}
.ws5d{word-spacing:3.409067pt;}
.wse8{word-spacing:3.422400pt;}
.ws5e{word-spacing:3.426133pt;}
.ws4e{word-spacing:3.468267pt;}
.ws15f{word-spacing:3.484800pt;}
.ws1cd{word-spacing:3.501867pt;}
.ws4{word-spacing:3.528533pt;}
.ws126{word-spacing:3.542400pt;}
.ws13e{word-spacing:3.590400pt;}
.ws136{word-spacing:3.604800pt;}
.ws1ca{word-spacing:3.621333pt;}
.ws111{word-spacing:3.635200pt;}
.ws77{word-spacing:3.636267pt;}
.ws155{word-spacing:3.665067pt;}
.wse9{word-spacing:3.667200pt;}
.ws17c{word-spacing:3.710400pt;}
.ws13d{word-spacing:3.739200pt;}
.ws87{word-spacing:3.819200pt;}
.wse7{word-spacing:3.830400pt;}
.wsa8{word-spacing:3.878933pt;}
.ws151{word-spacing:3.955200pt;}
.ws16f{word-spacing:3.960000pt;}
.ws9{word-spacing:3.969600pt;}
.ws72{word-spacing:3.983467pt;}
.ws8c{word-spacing:4.017067pt;}
.ws12f{word-spacing:4.046400pt;}
.ws1c1{word-spacing:4.046933pt;}
.ws1e{word-spacing:4.060800pt;}
.ws1b3{word-spacing:4.061867pt;}
.wsce{word-spacing:4.075200pt;}
.ws93{word-spacing:4.076800pt;}
.ws9b{word-spacing:4.091733pt;}
.wsa0{word-spacing:4.136533pt;}
.wsb4{word-spacing:4.181333pt;}
.ws2c{word-spacing:4.209600pt;}
.ws130{word-spacing:4.224000pt;}
.ws85{word-spacing:4.226133pt;}
.wsb9{word-spacing:4.229867pt;}
.ws17d{word-spacing:4.286400pt;}
.ws1a0{word-spacing:4.349333pt;}
.ws90{word-spacing:4.364267pt;}
.wsf2{word-spacing:4.406400pt;}
.ws96{word-spacing:4.438933pt;}
.ws15d{word-spacing:4.454400pt;}
.wsbf{word-spacing:4.468800pt;}
.wsb3{word-spacing:4.483733pt;}
.ws34{word-spacing:4.574400pt;}
.ws1ad{word-spacing:4.592000pt;}
.ws1c{word-spacing:4.603200pt;}
.ws139{word-spacing:4.636800pt;}
.ws1ba{word-spacing:4.651733pt;}
.ws6e{word-spacing:4.741333pt;}
.ws9f{word-spacing:4.756267pt;}
.ws108{word-spacing:4.785600pt;}
.ws94{word-spacing:4.834667pt;}
.ws8{word-spacing:4.857600pt;}
.ws7{word-spacing:4.863467pt;}
.ws16a{word-spacing:4.896000pt;}
.ws169{word-spacing:4.900800pt;}
.ws16b{word-spacing:4.910400pt;}
.ws8e{word-spacing:4.924267pt;}
.wsd5{word-spacing:4.953600pt;}
.ws11c{word-spacing:4.970667pt;}
.ws2a{word-spacing:4.982400pt;}
.ws100{word-spacing:4.992000pt;}
.wsff{word-spacing:4.996800pt;}
.ws2d{word-spacing:5.016000pt;}
.ws17f{word-spacing:5.030400pt;}
.wsfa{word-spacing:5.059200pt;}
.wsdb{word-spacing:5.107200pt;}
.ws1d2{word-spacing:5.122133pt;}
.ws1a8{word-spacing:5.166933pt;}
.ws8f{word-spacing:5.211733pt;}
.ws48{word-spacing:5.226667pt;}
.ws15a{word-spacing:5.243733pt;}
.ws1f{word-spacing:5.256000pt;}
.ws179{word-spacing:5.270400pt;}
.ws32{word-spacing:5.361600pt;}
.ws116{word-spacing:5.393067pt;}
.wse5{word-spacing:5.424000pt;}
.wsa1{word-spacing:5.439467pt;}
.ws183{word-spacing:5.452800pt;}
.wsa4{word-spacing:5.454400pt;}
.ws145{word-spacing:5.515200pt;}
.ws14e{word-spacing:5.546667pt;}
.ws1c2{word-spacing:5.577600pt;}
.ws140{word-spacing:5.635200pt;}
.ws14a{word-spacing:5.666133pt;}
.ws143{word-spacing:5.731200pt;}
.ws142{word-spacing:5.740800pt;}
.ws8d{word-spacing:5.756800pt;}
.wsa5{word-spacing:5.786667pt;}
.ws197{word-spacing:5.835200pt;}
.wse2{word-spacing:5.846400pt;}
.ws19f{word-spacing:5.850133pt;}
.ws1bf{word-spacing:5.939733pt;}
.ws133{word-spacing:5.952000pt;}
.wsfc{word-spacing:5.985600pt;}
.ws68{word-spacing:6.059200pt;}
.ws170{word-spacing:6.105600pt;}
.ws1{word-spacing:6.198400pt;}
.ws122{word-spacing:6.204800pt;}
.ws2{word-spacing:6.205333pt;}
.ws15b{word-spacing:6.212267pt;}
.wsc5{word-spacing:6.259200pt;}
.wsb8{word-spacing:6.272000pt;}
.ws185{word-spacing:6.273600pt;}
.ws174{word-spacing:6.288000pt;}
.ws189{word-spacing:6.316800pt;}
.ws171{word-spacing:6.345600pt;}
.wsbe{word-spacing:6.436800pt;}
.ws98{word-spacing:6.484800pt;}
.ws2f{word-spacing:6.513600pt;}
.wsa7{word-spacing:6.544533pt;}
.ws63{word-spacing:6.574400pt;}
.wsc3{word-spacing:6.667200pt;}
.ws71{word-spacing:6.697600pt;}
.ws39{word-spacing:6.724800pt;}
.ws11e{word-spacing:6.728533pt;}
.wsaf{word-spacing:6.757333pt;}
.ws131{word-spacing:6.763200pt;}
.ws132{word-spacing:6.772800pt;}
.wscf{word-spacing:6.801600pt;}
.ws120{word-spacing:6.818133pt;}
.ws1ab{word-spacing:6.832000pt;}
.ws11d{word-spacing:6.937600pt;}
.ws66{word-spacing:6.985067pt;}
.ws127{word-spacing:7.012800pt;}
.ws6{word-spacing:7.074133pt;}
.ws13b{word-spacing:7.104000pt;}
.ws5f{word-spacing:7.138133pt;}
.ws178{word-spacing:7.166400pt;}
.wse0{word-spacing:7.180800pt;}
.ws6b{word-spacing:7.212800pt;}
.ws16d{word-spacing:7.224000pt;}
.ws5c{word-spacing:7.257600pt;}
.ws80{word-spacing:7.287467pt;}
.wse6{word-spacing:7.300800pt;}
.wsf9{word-spacing:7.315200pt;}
.ws3b{word-spacing:7.334400pt;}
.ws149{word-spacing:7.377067pt;}
.wsca{word-spacing:7.425600pt;}
.ws13f{word-spacing:7.440000pt;}
.ws9e{word-spacing:7.470400pt;}
.wsea{word-spacing:7.483200pt;}
.wsad{word-spacing:7.485333pt;}
.wsec{word-spacing:7.574400pt;}
.ws4f{word-spacing:7.604800pt;}
.ws1b9{word-spacing:7.619733pt;}
.ws36{word-spacing:7.694400pt;}
.ws28{word-spacing:7.728000pt;}
.ws107{word-spacing:7.742400pt;}
.ws1b6{word-spacing:7.862400pt;}
.ws35{word-spacing:8.044800pt;}
.ws74{word-spacing:8.045333pt;}
.ws24{word-spacing:8.059200pt;}
.wsa6{word-spacing:8.120000pt;}
.ws167{word-spacing:8.121600pt;}
.ws70{word-spacing:8.134933pt;}
.ws195{word-spacing:8.153600pt;}
.ws1b1{word-spacing:8.243200pt;}
.ws198{word-spacing:8.310400pt;}
.ws21{word-spacing:8.361600pt;}
.ws1a5{word-spacing:8.388800pt;}
.ws1a9{word-spacing:8.403733pt;}
.wsb2{word-spacing:8.411200pt;}
.ws15e{word-spacing:8.452800pt;}
.ws86{word-spacing:8.500800pt;}
.ws118{word-spacing:8.516267pt;}
.ws1bb{word-spacing:8.635200pt;}
.ws18e{word-spacing:8.728533pt;}
.ws38{word-spacing:8.740800pt;}
.ws104{word-spacing:8.755200pt;}
.ws1d9{word-spacing:8.765867pt;}
.ws19c{word-spacing:8.795733pt;}
.wsdf{word-spacing:8.803200pt;}
.ws99{word-spacing:8.918933pt;}
.ws1c3{word-spacing:8.922667pt;}
.ws12b{word-spacing:8.923200pt;}
.ws1d3{word-spacing:8.933867pt;}
.ws1c6{word-spacing:9.128000pt;}
.wsd8{word-spacing:9.177600pt;}
.ws58{word-spacing:9.194667pt;}
.ws19d{word-spacing:9.206400pt;}
.ws1d0{word-spacing:9.236267pt;}
.ws18c{word-spacing:9.333333pt;}
.wsdc{word-spacing:9.408000pt;}
.ws1ce{word-spacing:9.437867pt;}
.wsb5{word-spacing:9.516267pt;}
.ws1c5{word-spacing:9.590933pt;}
.wsa2{word-spacing:9.628267pt;}
.ws1a7{word-spacing:9.650667pt;}
.ws154{word-spacing:9.651200pt;}
.ws52{word-spacing:9.710400pt;}
.ws51{word-spacing:9.714133pt;}
.wsd0{word-spacing:9.729600pt;}
.wsc0{word-spacing:9.739200pt;}
.wsc1{word-spacing:9.744000pt;}
.ws81{word-spacing:9.893333pt;}
.ws190{word-spacing:9.994133pt;}
.ws4c{word-spacing:10.098667pt;}
.ws181{word-spacing:10.104000pt;}
.ws42{word-spacing:10.128533pt;}
.ws164{word-spacing:10.166400pt;}
.ws1bd{word-spacing:10.188267pt;}
.ws18f{word-spacing:10.229333pt;}
.ws1cb{word-spacing:10.289067pt;}
.ws11a{word-spacing:10.436267pt;}
.ws177{word-spacing:10.440000pt;}
.ws11b{word-spacing:10.440533pt;}
.ws18a{word-spacing:10.454400pt;}
.ws18b{word-spacing:10.500267pt;}
.wse3{word-spacing:10.619733pt;}
.ws14d{word-spacing:10.666667pt;}
.wsb6{word-spacing:10.707200pt;}
.ws88{word-spacing:10.781867pt;}
.ws168{word-spacing:10.819200pt;}
.ws128{word-spacing:10.833600pt;}
.ws10d{word-spacing:10.891200pt;}
.wsf5{word-spacing:11.073600pt;}
.ws101{word-spacing:11.212800pt;}
.wsd4{word-spacing:11.299200pt;}
.ws11f{word-spacing:11.302400pt;}
.ws1b4{word-spacing:11.356800pt;}
.ws193{word-spacing:11.401600pt;}
.ws103{word-spacing:11.452800pt;}
.ws1a3{word-spacing:11.476267pt;}
.ws1db{word-spacing:11.704000pt;}
.wsc7{word-spacing:11.726400pt;}
.ws1b7{word-spacing:11.752533pt;}
.ws141{word-spacing:11.803200pt;}
.ws1cf{word-spacing:11.931733pt;}
.wsab{word-spacing:12.028800pt;}
.ws1d6{word-spacing:12.178133pt;}
.ws180{word-spacing:12.254400pt;}
.ws41{word-spacing:12.387200pt;}
.ws13c{word-spacing:12.590400pt;}
.ws113{word-spacing:12.620800pt;}
.ws54{word-spacing:12.629867pt;}
.ws192{word-spacing:12.734400pt;}
.ws1cc{word-spacing:12.797867pt;}
.ws1c9{word-spacing:12.917333pt;}
.wsef{word-spacing:12.955200pt;}
.wsf0{word-spacing:13.027200pt;}
.wseb{word-spacing:13.046400pt;}
.ws1d8{word-spacing:13.174933pt;}
.wsd{word-spacing:13.180800pt;}
.ws1c0{word-spacing:13.342933pt;}
.wsd9{word-spacing:13.377600pt;}
.wsf3{word-spacing:13.512000pt;}
.ws1a2{word-spacing:13.645333pt;}
.ws17e{word-spacing:13.651200pt;}
.wsd7{word-spacing:13.723200pt;}
.wsa{word-spacing:13.862400pt;}
.wsc{word-spacing:13.876800pt;}
.ws1ac{word-spacing:13.888000pt;}
.wsbc{word-spacing:14.102400pt;}
.ws1a1{word-spacing:14.190400pt;}
.wsd2{word-spacing:14.198400pt;}
.wsd3{word-spacing:14.212800pt;}
.ws12{word-spacing:14.313600pt;}
.ws16c{word-spacing:14.332800pt;}
.wsda{word-spacing:14.347200pt;}
.ws13a{word-spacing:14.438400pt;}
.ws1c8{word-spacing:14.507733pt;}
.ws59{word-spacing:14.771200pt;}
.wsf{word-spacing:14.923200pt;}
.ws196{word-spacing:15.131200pt;}
.ws147{word-spacing:15.134400pt;}
.ws19e{word-spacing:15.146133pt;}
.ws13{word-spacing:15.225600pt;}
.ws14{word-spacing:15.921600pt;}
.ws1aa{word-spacing:16.128000pt;}
.wsbb{word-spacing:16.195200pt;}
.ws182{word-spacing:16.468800pt;}
.ws2b{word-spacing:16.603200pt;}
.ws1b8{word-spacing:16.915733pt;}
.ws165{word-spacing:17.107200pt;}
.ws6f{word-spacing:17.430933pt;}
.ws1b0{word-spacing:17.539200pt;}
.ws163{word-spacing:17.697600pt;}
.wsed{word-spacing:17.889600pt;}
.ws18d{word-spacing:18.024533pt;}
.ws153{word-spacing:18.073600pt;}
.ws1af{word-spacing:18.099200pt;}
.ws11{word-spacing:18.225600pt;}
.wsc2{word-spacing:18.302400pt;}
.wsbd{word-spacing:18.388800pt;}
.ws2e{word-spacing:18.470400pt;}
.ws10{word-spacing:18.859200pt;}
.ws1c4{word-spacing:18.886933pt;}
.ws1d5{word-spacing:19.585067pt;}
.wse{word-spacing:19.617600pt;}
.ws5b{word-spacing:19.741867pt;}
.ws16e{word-spacing:20.424000pt;}
.wsaa{word-spacing:21.324800pt;}
.ws10c{word-spacing:22.843200pt;}
.wsee{word-spacing:24.907200pt;}
.ws10b{word-spacing:25.406400pt;}
.ws25{word-spacing:27.528000pt;}
.ws5{word-spacing:32.000000pt;}
._10{margin-left:-2119.214827pt;}
._11{margin-left:-939.018080pt;}
._2{margin-left:-30.653333pt;}
._4{margin-left:-29.151467pt;}
._8{margin-left:-25.012800pt;}
._9{margin-left:-22.571200pt;}
._e{margin-left:-21.179733pt;}
._6{margin-left:-18.355200pt;}
._f{margin-left:-16.503467pt;}
._15{margin-left:-14.429333pt;}
._13{margin-left:-12.958400pt;}
._b{margin-left:-10.910400pt;}
._c{margin-left:-10.020267pt;}
._14{margin-left:-8.840533pt;}
._1{margin-left:-7.662933pt;}
._7{margin-left:-5.668800pt;}
._5{margin-left:-4.320000pt;}
._12{margin-left:-3.348800pt;}
._a{margin-left:-1.742400pt;}
._3{width:1.302400pt;}
._d{width:10.666667pt;}
._16{width:14.197867pt;}
._19{width:21.333333pt;}
._18{width:74.666667pt;}
._1a{width:96.000000pt;}
._0{width:1269.164267pt;}
._17{width:1662.111467pt;}
._1b{width:1668.578133pt;}
.fs9{font-size:24.000000pt;}
.fsa{font-size:26.666667pt;}
.fs7{font-size:29.333333pt;}
.fs1{font-size:32.000000pt;}
.fs8{font-size:34.666667pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:51.178000pt;}
.y215{bottom:77.823067pt;}
.y1c8{bottom:77.838800pt;}
.yc7{bottom:77.840933pt;}
.yc5{bottom:77.843600pt;}
.y6c{bottom:77.844667pt;}
.y65{bottom:77.844933pt;}
.y14b{bottom:77.845200pt;}
.y110{bottom:77.854533pt;}
.yc6{bottom:81.511333pt;}
.y6b{bottom:82.178000pt;}
.y214{bottom:88.490133pt;}
.y17e{bottom:89.840933pt;}
.y6a{bottom:89.844667pt;}
.y64{bottom:89.844800pt;}
.y14a{bottom:89.845200pt;}
.yc4{bottom:89.874267pt;}
.y10f{bottom:92.520933pt;}
.y1c7{bottom:93.005600pt;}
.y17d{bottom:94.178000pt;}
.y213{bottom:99.157200pt;}
.y62{bottom:99.844667pt;}
.y63{bottom:101.844667pt;}
.y61{bottom:101.844800pt;}
.y149{bottom:101.845200pt;}
.yc3{bottom:101.904933pt;}
.y10e{bottom:107.187333pt;}
.y1c6{bottom:108.172400pt;}
.y212{bottom:109.824267pt;}
.y148{bottom:113.840933pt;}
.y69{bottom:113.844667pt;}
.y60{bottom:113.844800pt;}
.yc2{bottom:113.931867pt;}
.yc0{bottom:113.934933pt;}
.yc1{bottom:117.602400pt;}
.y147{bottom:118.178000pt;}
.y211{bottom:120.900133pt;}
.y10d{bottom:121.853733pt;}
.y1c5{bottom:123.354800pt;}
.y5f{bottom:125.844667pt;}
.y5d{bottom:125.845200pt;}
.ybf{bottom:125.965600pt;}
.y5e{bottom:129.511333pt;}
.y146{bottom:130.178000pt;}
.y210{bottom:131.567200pt;}
.y10c{bottom:136.520133pt;}
.y68{bottom:137.844667pt;}
.y5c{bottom:137.845067pt;}
.ybe{bottom:137.992533pt;}
.ybc{bottom:137.993333pt;}
.y1c4{bottom:138.537200pt;}
.ybd{bottom:141.662933pt;}
.y20f{bottom:142.234267pt;}
.y67{bottom:149.844667pt;}
.y5b{bottom:149.844933pt;}
.ybb{bottom:150.024000pt;}
.y10b{bottom:151.186533pt;}
.y20e{bottom:153.310133pt;}
.y1c3{bottom:153.719600pt;}
.y66{bottom:161.844667pt;}
.y5a{bottom:161.844800pt;}
.yba{bottom:162.054667pt;}
.y20d{bottom:163.977200pt;}
.y10a{bottom:165.852933pt;}
.y1c2{bottom:168.902000pt;}
.y59{bottom:173.844667pt;}
.y57{bottom:173.845200pt;}
.yb9{bottom:174.085333pt;}
.y20c{bottom:174.644267pt;}
.y58{bottom:177.511333pt;}
.y109{bottom:180.519333pt;}
.y1c1{bottom:184.083200pt;}
.y20b{bottom:185.720133pt;}
.y56{bottom:185.845067pt;}
.yb8{bottom:186.116000pt;}
.y108{bottom:195.185733pt;}
.y20a{bottom:196.387200pt;}
.y55{bottom:197.844933pt;}
.yb7{bottom:198.146667pt;}
.y1c0{bottom:199.265600pt;}
.y209{bottom:207.463067pt;}
.y54{bottom:209.844800pt;}
.y107{bottom:209.852133pt;}
.yb6{bottom:210.177333pt;}
.y1bf{bottom:214.448000pt;}
.y208{bottom:218.130133pt;}
.y53{bottom:221.844667pt;}
.y51{bottom:221.844800pt;}
.yb5{bottom:222.208000pt;}
.y106{bottom:224.518533pt;}
.y52{bottom:225.511333pt;}
.y207{bottom:229.206000pt;}
.y1be{bottom:229.629200pt;}
.y50{bottom:233.844667pt;}
.y4e{bottom:233.845600pt;}
.yb4{bottom:234.234933pt;}
.yb2{bottom:234.235733pt;}
.y33{bottom:235.184800pt;}
.y4f{bottom:237.511333pt;}
.yb3{bottom:237.905333pt;}
.y105{bottom:239.184933pt;}
.y206{bottom:239.873067pt;}
.y1bd{bottom:244.810400pt;}
.y4d{bottom:245.845467pt;}
.yb1{bottom:246.266400pt;}
.y32{bottom:249.851200pt;}
.y205{bottom:250.948933pt;}
.y104{bottom:253.851333pt;}
.y4c{bottom:257.845333pt;}
.yb0{bottom:258.297067pt;}
.y1bc{bottom:259.991600pt;}
.y204{bottom:261.616000pt;}
.y31{bottom:264.517600pt;}
.y103{bottom:268.517733pt;}
.y4b{bottom:269.845200pt;}
.yaf{bottom:270.327733pt;}
.y203{bottom:272.283067pt;}
.y1bb{bottom:275.172800pt;}
.y30{bottom:279.184000pt;}
.yae{bottom:282.358400pt;}
.y202{bottom:282.950133pt;}
.y102{bottom:283.184133pt;}
.y4a{bottom:287.178133pt;}
.y1ba{bottom:290.354000pt;}
.y2f{bottom:293.850400pt;}
.y201{bottom:294.026000pt;}
.yad{bottom:294.389067pt;}
.y101{bottom:297.850533pt;}
.y200{bottom:304.693067pt;}
.y1b9{bottom:305.535200pt;}
.yac{bottom:306.419733pt;}
.y2e{bottom:308.516800pt;}
.y100{bottom:312.516933pt;}
.y1ff{bottom:315.360133pt;}
.yab{bottom:318.450400pt;}
.y1b8{bottom:320.716400pt;}
.y49{bottom:323.178267pt;}
.y2d{bottom:323.183200pt;}
.y1fe{bottom:326.436000pt;}
.yff{bottom:327.183333pt;}
.ya9{bottom:328.481067pt;}
.ya8{bottom:330.474933pt;}
.yaa{bottom:330.477333pt;}
.y1b7{bottom:335.897600pt;}
.y1fd{bottom:337.103067pt;}
.y48{bottom:337.844667pt;}
.y2c{bottom:337.849600pt;}
.y46{bottom:337.856800pt;}
.y165{bottom:341.180800pt;}
.y173{bottom:341.191600pt;}
.yfe{bottom:341.849733pt;}
.ya7{bottom:342.505600pt;}
.y47{bottom:342.844667pt;}
.y1fc{bottom:347.770133pt;}
.y1b6{bottom:351.078800pt;}
.y2b{bottom:352.516000pt;}
.y45{bottom:352.523200pt;}
.ya6{bottom:354.536267pt;}
.y164{bottom:355.847200pt;}
.y172{bottom:355.858000pt;}
.yfd{bottom:356.516133pt;}
.y141{bottom:357.885067pt;}
.y1fb{bottom:358.437200pt;}
.y1b5{bottom:366.260000pt;}
.ya5{bottom:366.566933pt;}
.y2a{bottom:367.182400pt;}
.y44{bottom:367.189600pt;}
.y1fa{bottom:369.104267pt;}
.y163{bottom:370.513600pt;}
.y171{bottom:370.524400pt;}
.yfc{bottom:371.182533pt;}
.y129{bottom:372.545467pt;}
.y140{bottom:372.551467pt;}
.ya4{bottom:378.597600pt;}
.y1f9{bottom:380.180133pt;}
.y1b4{bottom:381.441200pt;}
.y29{bottom:381.848800pt;}
.y43{bottom:381.856000pt;}
.y162{bottom:385.180000pt;}
.y170{bottom:385.190800pt;}
.yfb{bottom:385.848933pt;}
.y128{bottom:387.211867pt;}
.y13f{bottom:387.217867pt;}
.ya3{bottom:390.628267pt;}
.y1f8{bottom:390.847200pt;}
.y28{bottom:396.515200pt;}
.y42{bottom:396.522400pt;}
.y1b3{bottom:396.622400pt;}
.y161{bottom:399.846400pt;}
.y16f{bottom:399.857200pt;}
.yfa{bottom:400.515333pt;}
.y1f7{bottom:401.514267pt;}
.y127{bottom:401.878267pt;}
.y13e{bottom:401.884267pt;}
.ya2{bottom:402.658933pt;}
.y27{bottom:411.181600pt;}
.y41{bottom:411.188800pt;}
.y1b2{bottom:411.803600pt;}
.y1f6{bottom:412.590133pt;}
.y160{bottom:414.512800pt;}
.y16e{bottom:414.523600pt;}
.ya1{bottom:414.689600pt;}
.yf9{bottom:415.181733pt;}
.y126{bottom:416.544667pt;}
.y13d{bottom:416.550667pt;}
.y1f5{bottom:423.257200pt;}
.y26{bottom:425.848000pt;}
.y40{bottom:425.855200pt;}
.ya0{bottom:426.720267pt;}
.y1b1{bottom:426.984800pt;}
.y15f{bottom:429.179200pt;}
.y16d{bottom:429.190000pt;}
.yf8{bottom:429.848133pt;}
.y125{bottom:431.211067pt;}
.y13c{bottom:431.217067pt;}
.y1f4{bottom:433.924267pt;}
.y9f{bottom:438.750933pt;}
.y25{bottom:440.514400pt;}
.y3f{bottom:440.521600pt;}
.y1b0{bottom:442.166000pt;}
.y15e{bottom:443.845600pt;}
.y16c{bottom:443.856400pt;}
.yf7{bottom:444.514533pt;}
.y1f3{bottom:444.591333pt;}
.y124{bottom:445.877467pt;}
.y13b{bottom:445.883467pt;}
.y9e{bottom:450.781600pt;}
.y24{bottom:455.180800pt;}
.y3e{bottom:455.188000pt;}
.y1f2{bottom:455.258400pt;}
.y1af{bottom:457.348400pt;}
.y15d{bottom:458.512000pt;}
.y16b{bottom:458.522800pt;}
.yf6{bottom:459.180933pt;}
.y123{bottom:460.543867pt;}
.y13a{bottom:460.549867pt;}
.y9d{bottom:462.812267pt;}
.y1f1{bottom:466.334267pt;}
.y23{bottom:469.847200pt;}
.y3d{bottom:469.854400pt;}
.y1ae{bottom:472.530800pt;}
.y15c{bottom:473.178400pt;}
.y16a{bottom:473.189200pt;}
.yf5{bottom:473.847333pt;}
.y9c{bottom:474.842933pt;}
.y122{bottom:475.210267pt;}
.y139{bottom:475.216267pt;}
.y1f0{bottom:477.001333pt;}
.y22{bottom:484.513600pt;}
.y3c{bottom:484.520800pt;}
.y9b{bottom:486.873600pt;}
.y1ef{bottom:487.668400pt;}
.y1ad{bottom:487.713200pt;}
.y15b{bottom:487.844800pt;}
.yf4{bottom:488.513733pt;}
.y121{bottom:489.876667pt;}
.y138{bottom:489.882667pt;}
.y169{bottom:496.340800pt;}
.y1ee{bottom:498.335467pt;}
.y9a{bottom:498.904267pt;}
.y21{bottom:499.180000pt;}
.y3b{bottom:499.187200pt;}
.y15a{bottom:502.507600pt;}
.y158{bottom:502.512267pt;}
.y1ac{bottom:502.895600pt;}
.yf3{bottom:503.180133pt;}
.y120{bottom:504.543067pt;}
.y137{bottom:504.549067pt;}
.y159{bottom:507.511333pt;}
.y1ed{bottom:509.411333pt;}
.y99{bottom:510.934933pt;}
.y20{bottom:513.846400pt;}
.y3a{bottom:513.853600pt;}
.y157{bottom:517.178667pt;}
.yf2{bottom:517.846533pt;}
.y1ab{bottom:518.078000pt;}
.y11f{bottom:519.209467pt;}
.y136{bottom:519.215467pt;}
.y1ec{bottom:520.078400pt;}
.y98{bottom:522.965600pt;}
.y1f{bottom:528.512800pt;}
.y39{bottom:528.520000pt;}
.y1eb{bottom:530.745467pt;}
.y168{bottom:531.128800pt;}
.y156{bottom:531.845067pt;}
.yf1{bottom:532.512933pt;}
.y96{bottom:532.996267pt;}
.y1aa{bottom:533.260400pt;}
.y11e{bottom:533.875867pt;}
.y135{bottom:533.881867pt;}
.y97{bottom:534.992533pt;}
.y95{bottom:534.994933pt;}
.y1ea{bottom:541.821333pt;}
.y1e{bottom:543.179200pt;}
.y38{bottom:543.186400pt;}
.y167{bottom:545.795200pt;}
.y155{bottom:546.511467pt;}
.y94{bottom:547.025600pt;}
.yf0{bottom:547.179333pt;}
.y1a9{bottom:548.442800pt;}
.y11d{bottom:548.542267pt;}
.y134{bottom:548.548267pt;}
.y1e9{bottom:552.488400pt;}
.y1d{bottom:557.845600pt;}
.y37{bottom:557.852800pt;}
.y93{bottom:559.056267pt;}
.y166{bottom:560.461600pt;}
.y154{bottom:561.174267pt;}
.y152{bottom:561.179733pt;}
.yef{bottom:561.845733pt;}
.y1e8{bottom:563.155467pt;}
.y11c{bottom:563.208667pt;}
.y133{bottom:563.214667pt;}
.y1a8{bottom:563.625200pt;}
.y153{bottom:566.178133pt;}
.y92{bottom:571.101867pt;}
.y1c{bottom:572.512000pt;}
.y36{bottom:572.519200pt;}
.y1e7{bottom:573.822533pt;}
.y151{bottom:575.846133pt;}
.yee{bottom:576.512133pt;}
.y11b{bottom:577.875067pt;}
.y132{bottom:577.881067pt;}
.y1a7{bottom:578.807600pt;}
.y91{bottom:583.147467pt;}
.y1e6{bottom:584.489600pt;}
.y1b{bottom:587.178400pt;}
.y35{bottom:587.185600pt;}
.y150{bottom:590.512533pt;}
.yed{bottom:591.178533pt;}
.y11a{bottom:592.537867pt;}
.y118{bottom:592.543600pt;}
.y131{bottom:592.547467pt;}
.y1a6{bottom:593.990000pt;}
.y90{bottom:595.193067pt;}
.y1e5{bottom:595.565467pt;}
.y119{bottom:597.541733pt;}
.y1a{bottom:601.844800pt;}
.y34{bottom:601.852000pt;}
.y18d{bottom:604.716400pt;}
.y14f{bottom:605.178933pt;}
.y8e{bottom:605.238667pt;}
.yec{bottom:605.844933pt;}
.y1e4{bottom:606.232533pt;}
.y117{bottom:607.210000pt;}
.y130{bottom:607.213867pt;}
.y8f{bottom:607.234933pt;}
.y8d{bottom:607.235333pt;}
.y1a5{bottom:609.172400pt;}
.y6e{bottom:611.650147pt;}
.y18c{bottom:616.716400pt;}
.y1e3{bottom:616.899600pt;}
.y8c{bottom:619.280933pt;}
.y14e{bottom:619.845333pt;}
.yeb{bottom:620.511333pt;}
.y116{bottom:621.876400pt;}
.y12f{bottom:621.880267pt;}
.y1a4{bottom:624.354800pt;}
.y1e2{bottom:627.566667pt;}
.y18b{bottom:628.712133pt;}
.y189{bottom:628.716400pt;}
.y8b{bottom:631.326533pt;}
.y18a{bottom:633.049333pt;}
.y14d{bottom:634.511733pt;}
.y115{bottom:636.542800pt;}
.y12e{bottom:636.546667pt;}
.y1e1{bottom:638.642533pt;}
.y19{bottom:639.178400pt;}
.y1a3{bottom:639.537200pt;}
.y188{bottom:640.716400pt;}
.yea{bottom:643.178133pt;}
.y8a{bottom:643.372133pt;}
.y14c{bottom:649.178133pt;}
.y1e0{bottom:649.309600pt;}
.y114{bottom:651.209200pt;}
.y12d{bottom:651.213067pt;}
.y18{bottom:652.511600pt;}
.y187{bottom:652.712133pt;}
.y185{bottom:652.716000pt;}
.y1a2{bottom:654.719600pt;}
.y89{bottom:655.417733pt;}
.y186{bottom:657.049333pt;}
.y1df{bottom:659.976667pt;}
.y184{bottom:664.716000pt;}
.y17{bottom:665.844800pt;}
.y113{bottom:665.875600pt;}
.y12c{bottom:665.879467pt;}
.y88{bottom:667.463333pt;}
.y1a1{bottom:669.902000pt;}
.y1de{bottom:670.643733pt;}
.y183{bottom:676.716000pt;}
.y16{bottom:679.178000pt;}
.y14{bottom:679.178667pt;}
.y87{bottom:679.508933pt;}
.ye9{bottom:680.512000pt;}
.y112{bottom:680.542000pt;}
.y12b{bottom:680.545867pt;}
.y1dd{bottom:681.310800pt;}
.y15{bottom:684.178000pt;}
.y1a0{bottom:685.083200pt;}
.y182{bottom:688.716000pt;}
.y17c{bottom:691.466533pt;}
.y86{bottom:691.554533pt;}
.y1dc{bottom:692.386667pt;}
.y13{bottom:692.511867pt;}
.y111{bottom:695.208400pt;}
.y12a{bottom:695.212267pt;}
.y19f{bottom:700.264400pt;}
.y181{bottom:700.716000pt;}
.y1db{bottom:703.053733pt;}
.y17b{bottom:703.466533pt;}
.y85{bottom:703.600133pt;}
.ye8{bottom:704.511733pt;}
.y12{bottom:705.845067pt;}
.y180{bottom:712.716000pt;}
.y1da{bottom:713.720800pt;}
.y19e{bottom:715.445600pt;}
.y17a{bottom:715.466533pt;}
.y84{bottom:715.645733pt;}
.ye7{bottom:716.511600pt;}
.y11{bottom:719.178267pt;}
.y1d9{bottom:724.387867pt;}
.y17f{bottom:724.716000pt;}
.y179{bottom:727.462267pt;}
.y177{bottom:727.466000pt;}
.y83{bottom:727.691333pt;}
.ye6{bottom:728.511467pt;}
.y19d{bottom:730.626800pt;}
.y178{bottom:731.799333pt;}
.y10{bottom:732.511467pt;}
.y1d8{bottom:735.054933pt;}
.y176{bottom:739.466000pt;}
.y82{bottom:739.736933pt;}
.ye5{bottom:740.507600pt;}
.ye3{bottom:740.511467pt;}
.y145{bottom:740.829600pt;}
.ye4{bottom:744.178000pt;}
.y19c{bottom:745.808000pt;}
.yf{bottom:745.844667pt;}
.y1d7{bottom:746.130800pt;}
.y175{bottom:751.466000pt;}
.y81{bottom:751.782533pt;}
.ye2{bottom:752.507600pt;}
.ye0{bottom:752.511600pt;}
.y144{bottom:752.829600pt;}
.ye1{bottom:756.178000pt;}
.y1d6{bottom:756.797867pt;}
.y19b{bottom:760.990400pt;}
.y174{bottom:763.466000pt;}
.y80{bottom:763.828133pt;}
.ydf{bottom:764.511467pt;}
.y143{bottom:764.829600pt;}
.y1d5{bottom:767.873733pt;}
.ye{bottom:774.511333pt;}
.y7f{bottom:775.873733pt;}
.y19a{bottom:776.172800pt;}
.yde{bottom:776.507600pt;}
.ydc{bottom:776.511867pt;}
.y142{bottom:776.829600pt;}
.y1d4{bottom:778.540800pt;}
.ydd{bottom:780.178000pt;}
.y7e{bottom:787.919333pt;}
.ydb{bottom:788.511733pt;}
.y1d3{bottom:789.207867pt;}
.y199{bottom:791.355200pt;}
.yc{bottom:797.844667pt;}
.y1d2{bottom:799.874933pt;}
.y7d{bottom:799.964933pt;}
.yda{bottom:800.511600pt;}
.yd{bottom:802.844667pt;}
.y198{bottom:806.537600pt;}
.y1d1{bottom:810.950800pt;}
.ya{bottom:811.178000pt;}
.y7c{bottom:812.010533pt;}
.yd9{bottom:812.511467pt;}
.yb{bottom:816.178000pt;}
.y1d0{bottom:821.617867pt;}
.y197{bottom:821.720000pt;}
.y7b{bottom:824.056133pt;}
.yd8{bottom:824.507600pt;}
.yd6{bottom:824.511600pt;}
.yd7{bottom:828.178000pt;}
.y8{bottom:831.178000pt;}
.y1cf{bottom:832.284933pt;}
.y7a{bottom:836.101733pt;}
.yd5{bottom:836.511467pt;}
.y196{bottom:836.902400pt;}
.y9{bottom:837.511333pt;}
.y1ce{bottom:843.345867pt;}
.y79{bottom:848.147333pt;}
.yd4{bottom:848.507600pt;}
.yd2{bottom:848.511733pt;}
.y195{bottom:852.084800pt;}
.yd3{bottom:852.178000pt;}
.y1cd{bottom:854.012000pt;}
.y6{bottom:856.511333pt;}
.y78{bottom:860.192933pt;}
.yd1{bottom:860.511600pt;}
.y1cc{bottom:864.678133pt;}
.y7{bottom:865.511467pt;}
.y194{bottom:867.267200pt;}
.y77{bottom:872.238533pt;}
.yd0{bottom:872.511467pt;}
.y5{bottom:880.511333pt;}
.y1cb{bottom:881.072133pt;}
.y75{bottom:882.284133pt;}
.y193{bottom:882.449600pt;}
.y76{bottom:884.280400pt;}
.y74{bottom:884.283333pt;}
.ycf{bottom:884.507600pt;}
.ycd{bottom:884.512533pt;}
.yce{bottom:888.178000pt;}
.y220{bottom:891.174133pt;}
.y21a{bottom:891.176000pt;}
.y73{bottom:896.328933pt;}
.ycc{bottom:896.512400pt;}
.y192{bottom:897.630800pt;}
.y21f{bottom:901.841200pt;}
.y219{bottom:901.843067pt;}
.y4{bottom:904.511333pt;}
.y72{bottom:908.374533pt;}
.ycb{bottom:908.512267pt;}
.y21e{bottom:912.508267pt;}
.y218{bottom:912.510133pt;}
.y1ca{bottom:912.511333pt;}
.y191{bottom:912.813200pt;}
.y71{bottom:920.420133pt;}
.yca{bottom:920.512133pt;}
.y21d{bottom:923.175333pt;}
.y217{bottom:923.177200pt;}
.y1c9{bottom:924.511333pt;}
.y190{bottom:927.995600pt;}
.y70{bottom:932.465733pt;}
.yc9{bottom:932.512000pt;}
.y21c{bottom:933.842400pt;}
.y216{bottom:933.844267pt;}
.y18f{bottom:943.178000pt;}
.y21b{bottom:944.509467pt;}
.y6f{bottom:944.511333pt;}
.yc8{bottom:944.511867pt;}
.y3{bottom:951.844667pt;}
.y2{bottom:963.844667pt;}
.y1{bottom:975.844667pt;}
.y18e{bottom:975.844933pt;}
.he{height:17.472000pt;}
.h9{height:17.864000pt;}
.hd{height:18.384000pt;}
.hf{height:18.640000pt;}
.h12{height:20.426667pt;}
.hb{height:20.885333pt;}
.h7{height:22.469333pt;}
.hc{height:25.984000pt;}
.h5{height:28.597333pt;}
.h15{height:29.696000pt;}
.h1{height:32.682667pt;}
.h13{height:32.697600pt;}
.h14{height:32.699733pt;}
.h8{height:33.408000pt;}
.h6{height:34.944000pt;}
.ha{height:36.768000pt;}
.h11{height:36.782400pt;}
.h3{height:37.280000pt;}
.h4{height:44.938667pt;}
.h10{height:61.187500pt;}
.h2{height:65.365333pt;}
.h0{height:1044.000000pt;}
.w0{width:780.000000pt;}
.x0{left:0.000000pt;}
.x1{left:57.552933pt;}
.x2f{left:66.886667pt;}
.x29{left:68.219600pt;}
.x18{left:69.552933pt;}
.x2{left:73.863600pt;}
.x2a{left:74.886533pt;}
.xf{left:81.473467pt;}
.x5d{left:100.485733pt;}
.x15{left:105.553067pt;}
.x5e{left:107.126133pt;}
.x11{left:109.072000pt;}
.x14{left:117.552933pt;}
.x5a{left:122.365867pt;}
.x6{left:133.083333pt;}
.x3{left:143.288667pt;}
.x58{left:158.953733pt;}
.x13{left:163.204533pt;}
.x3e{left:169.589333pt;}
.x3f{left:173.256400pt;}
.x2d{left:174.244400pt;}
.x2e{left:181.990933pt;}
.x16{left:201.793867pt;}
.x17{left:214.136800pt;}
.x40{left:233.324533pt;}
.x41{left:236.991600pt;}
.x7{left:242.060800pt;}
.x56{left:252.232800pt;}
.x8{left:261.109600pt;}
.x57{left:263.825733pt;}
.x30{left:279.089333pt;}
.x31{left:282.756267pt;}
.x3a{left:284.516533pt;}
.x32{left:290.316400pt;}
.x33{left:293.983333pt;}
.x4{left:298.266800pt;}
.x36{left:312.397333pt;}
.x37{left:316.064400pt;}
.x38{left:323.624533pt;}
.x39{left:330.734667pt;}
.x34{left:333.332933pt;}
.x3b{left:335.446800pt;}
.x3d{left:338.201467pt;}
.x52{left:340.183067pt;}
.x3c{left:341.780400pt;}
.x35{left:347.208933pt;}
.x9{left:362.241467pt;}
.xa{left:372.790533pt;}
.x2b{left:381.553200pt;}
.x19{left:401.553600pt;}
.x65{left:406.220133pt;}
.x1e{left:410.885867pt;}
.x53{left:412.219733pt;}
.x1a{left:413.553600pt;}
.x66{left:417.886800pt;}
.x47{left:425.558800pt;}
.x48{left:435.041867pt;}
.x21{left:456.368800pt;}
.x22{left:460.263200pt;}
.x4e{left:462.396133pt;}
.x4b{left:471.720933pt;}
.x5{left:472.872533pt;}
.x46{left:479.279467pt;}
.x4c{left:482.461600pt;}
.xb{left:495.611733pt;}
.x1d{left:497.446933pt;}
.xc{left:501.278133pt;}
.x64{left:503.594667pt;}
.x61{left:506.334400pt;}
.x5f{left:518.908533pt;}
.x59{left:524.343600pt;}
.x60{left:526.886133pt;}
.x44{left:531.083200pt;}
.x51{left:534.428000pt;}
.x45{left:537.075067pt;}
.x62{left:554.002533pt;}
.x63{left:563.834400pt;}
.x42{left:574.139200pt;}
.x1f{left:578.750000pt;}
.x43{left:580.167867pt;}
.x20{left:582.761733pt;}
.x4f{left:592.692133pt;}
.x50{left:601.790133pt;}
.x23{left:604.351333pt;}
.x24{left:608.223600pt;}
.x27{left:618.016133pt;}
.x28{left:624.789200pt;}
.x49{left:627.244133pt;}
.xd{left:633.074133pt;}
.x4d{left:635.068133pt;}
.x4a{left:636.690533pt;}
.xe{left:638.740667pt;}
.x5b{left:641.005067pt;}
.x5c{left:645.381333pt;}
.x12{left:665.512800pt;}
.x1b{left:678.210533pt;}
.x1c{left:688.708800pt;}
.x10{left:693.144000pt;}
.x25{left:698.261600pt;}
.x55{left:701.841200pt;}
.x26{left:712.799200pt;}
.x54{left:717.631867pt;}
.x2c{left:754.666667pt;}
}




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