
    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_75094c8394fa3ef61f8a1b33.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.140137;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_8b4ec050f4f2ee0145b8d652.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.164062;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_3be4bb3e03a911397acf44b2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.175293;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_338bcd39071cdce61f35f104.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.140137;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_4a25e03daac71c800c2915d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.124023;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_5873d2d0d66e6a9c1cda3270.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.961914;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_289a63db0c6415cb7a642e73.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.175293;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_c062126d494f0ecfb2900289.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.140137;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_05648fd9d8e647948c19a81e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_149e1826b7a66a18dacb3449.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923828;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_c9ca232ba4967b3bfa560760.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b4f18716d5015fee3f127a2a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_74a2991868396064c7cf85f6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.164062;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_98f896433a7cd6a464b358f3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.124023;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_afc1ccfff422a979cc3bf7bb.woff2')format("woff");}.fff{font-family:fff;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_029661e5fb1481affb306218.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.961914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e75f464e060635a210071382.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m1{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-23.976000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:4.252200px;}
.v1{vertical-align:9.000000px;}
.v5{vertical-align:20.133600px;}
.v6{vertical-align:21.978000px;}
.v4{vertical-align:45.000000px;}
.ls8{letter-spacing:-4.440000px;}
.ls3{letter-spacing:-3.960000px;}
.ls2e{letter-spacing:-0.207900px;}
.ls25{letter-spacing:-0.102204px;}
.ls1c{letter-spacing:-0.098820px;}
.ls26{letter-spacing:-0.060120px;}
.ls2a{letter-spacing:-0.048096px;}
.ls2b{letter-spacing:-0.042084px;}
.ls29{letter-spacing:-0.036072px;}
.ls1d{letter-spacing:-0.032940px;}
.ls22{letter-spacing:-0.026352px;}
.ls2c{letter-spacing:-0.024048px;}
.ls1f{letter-spacing:-0.019764px;}
.ls27{letter-spacing:-0.018036px;}
.ls1e{letter-spacing:-0.013176px;}
.ls28{letter-spacing:-0.012024px;}
.ls21{letter-spacing:-0.006588px;}
.ls2d{letter-spacing:-0.006300px;}
.ls24{letter-spacing:-0.006012px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.005520px;}
.ls30{letter-spacing:0.006300px;}
.lsf{letter-spacing:0.006588px;}
.ls17{letter-spacing:0.012024px;}
.ls2f{letter-spacing:0.012600px;}
.ls19{letter-spacing:0.018900px;}
.lsd{letter-spacing:0.019764px;}
.lsb{letter-spacing:0.026352px;}
.ls15{letter-spacing:0.030060px;}
.ls1b{letter-spacing:0.031500px;}
.ls13{letter-spacing:0.032940px;}
.lsa{letter-spacing:0.039528px;}
.ls9{letter-spacing:0.046116px;}
.ls18{letter-spacing:0.048096px;}
.ls10{letter-spacing:0.052704px;}
.lse{letter-spacing:0.059292px;}
.ls14{letter-spacing:0.065880px;}
.ls16{letter-spacing:0.066132px;}
.ls12{letter-spacing:0.072468px;}
.ls1a{letter-spacing:0.075600px;}
.ls11{letter-spacing:0.079056px;}
.ls23{letter-spacing:0.092232px;}
.ls20{letter-spacing:0.191052px;}
.ls1{letter-spacing:0.202872px;}
.ls4{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.454982px;}
.ls0{letter-spacing:0.660000px;}
.ls5{letter-spacing:0.720000px;}
.ls6{letter-spacing:225.540000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-20.016000px;}
.wsa4{word-spacing:-16.779492px;}
.ws99{word-spacing:-16.680000px;}
.ws0{word-spacing:-16.056000px;}
.wsd2{word-spacing:-15.912000px;}
.ws67{word-spacing:-13.464000px;}
.wsa3{word-spacing:-12.240000px;}
.ws35{word-spacing:-11.448000px;}
.ws48{word-spacing:-10.872000px;}
.ws57{word-spacing:-10.008000px;}
.ws70{word-spacing:-9.360000px;}
.wsc1{word-spacing:-9.000000px;}
.ws56{word-spacing:-8.568000px;}
.ws4d{word-spacing:-8.280000px;}
.wscf{word-spacing:-7.992000px;}
.wscd{word-spacing:-7.920000px;}
.ws3c{word-spacing:-7.848000px;}
.ws58{word-spacing:-7.344000px;}
.ws72{word-spacing:-7.200000px;}
.ws9{word-spacing:-5.832000px;}
.ws44{word-spacing:-5.400000px;}
.ws6d{word-spacing:-5.256000px;}
.ws64{word-spacing:-5.184000px;}
.ws4f{word-spacing:-4.896000px;}
.wsd0{word-spacing:-4.032000px;}
.ws3b{word-spacing:-3.960000px;}
.wsc6{word-spacing:-3.816000px;}
.ws15{word-spacing:-3.672000px;}
.ws1c{word-spacing:-3.600000px;}
.ws84{word-spacing:-3.312000px;}
.wsa2{word-spacing:-3.300000px;}
.ws43{word-spacing:-3.096000px;}
.ws26{word-spacing:-2.736000px;}
.wsd1{word-spacing:-2.664000px;}
.ws80{word-spacing:-2.592000px;}
.ws59{word-spacing:-2.520000px;}
.ws85{word-spacing:-2.016000px;}
.ws90{word-spacing:-1.872000px;}
.ws7b{word-spacing:-1.512000px;}
.ws6f{word-spacing:-1.440000px;}
.ws37{word-spacing:-1.080000px;}
.ws1a{word-spacing:-0.936000px;}
.ws5f{word-spacing:-0.720000px;}
.ws3{word-spacing:-0.660000px;}
.wsc2{word-spacing:-0.648000px;}
.ws94{word-spacing:-0.360000px;}
.ws50{word-spacing:-0.216000px;}
.ws2{word-spacing:0.000000px;}
.wsb9{word-spacing:0.006588px;}
.wsbc{word-spacing:0.018900px;}
.wsb8{word-spacing:0.019764px;}
.wsaf{word-spacing:0.026352px;}
.wsb5{word-spacing:0.032940px;}
.wsae{word-spacing:0.039528px;}
.wsb3{word-spacing:0.046116px;}
.wsa6{word-spacing:0.052704px;}
.wsa8{word-spacing:0.059292px;}
.wsbe{word-spacing:0.063000px;}
.wsb7{word-spacing:0.065880px;}
.wsa9{word-spacing:0.072468px;}
.wsbb{word-spacing:0.075600px;}
.wsac{word-spacing:0.079056px;}
.wsbf{word-spacing:0.081900px;}
.wsb0{word-spacing:0.092232px;}
.wsa7{word-spacing:0.098820px;}
.wsbd{word-spacing:0.100800px;}
.wsb2{word-spacing:0.105408px;}
.wsaa{word-spacing:0.111996px;}
.wsab{word-spacing:0.118584px;}
.wsb6{word-spacing:0.125172px;}
.ws8a{word-spacing:0.144000px;}
.ws2b{word-spacing:0.360000px;}
.wsb4{word-spacing:0.375516px;}
.wsb1{word-spacing:0.401868px;}
.wsba{word-spacing:0.447984px;}
.wsad{word-spacing:0.467748px;}
.wsa5{word-spacing:0.487512px;}
.ws55{word-spacing:0.504000px;}
.ws46{word-spacing:0.576000px;}
.ws6c{word-spacing:0.720000px;}
.ws32{word-spacing:0.864000px;}
.ws3d{word-spacing:0.936000px;}
.ws51{word-spacing:1.224000px;}
.ws93{word-spacing:1.440000px;}
.ws4a{word-spacing:1.512000px;}
.ws74{word-spacing:1.584000px;}
.ws96{word-spacing:1.656000px;}
.ws65{word-spacing:1.728000px;}
.wsa0{word-spacing:1.800000px;}
.ws83{word-spacing:1.872000px;}
.ws36{word-spacing:1.944000px;}
.ws97{word-spacing:2.088000px;}
.wsc0{word-spacing:2.160000px;}
.ws76{word-spacing:2.232000px;}
.wsc3{word-spacing:2.304000px;}
.wsc7{word-spacing:2.448000px;}
.ws77{word-spacing:2.880000px;}
.wsc5{word-spacing:3.384000px;}
.wscb{word-spacing:3.456000px;}
.ws42{word-spacing:3.528000px;}
.ws30{word-spacing:3.744000px;}
.ws8b{word-spacing:3.816000px;}
.wsce{word-spacing:3.960000px;}
.ws45{word-spacing:4.176000px;}
.ws66{word-spacing:4.248000px;}
.ws5d{word-spacing:4.320000px;}
.ws7e{word-spacing:4.536000px;}
.ws88{word-spacing:4.608000px;}
.ws38{word-spacing:4.680000px;}
.ws95{word-spacing:4.752000px;}
.ws8{word-spacing:4.896000px;}
.ws41{word-spacing:5.040000px;}
.ws27{word-spacing:5.112000px;}
.ws3e{word-spacing:5.328000px;}
.ws71{word-spacing:5.400000px;}
.ws7c{word-spacing:5.472000px;}
.ws75{word-spacing:5.544000px;}
.ws69{word-spacing:5.616000px;}
.ws91{word-spacing:5.688000px;}
.wsc4{word-spacing:5.832000px;}
.ws8f{word-spacing:5.976000px;}
.ws54{word-spacing:6.336000px;}
.wsc8{word-spacing:6.480000px;}
.wsa{word-spacing:6.552000px;}
.ws2e{word-spacing:6.624000px;}
.ws5{word-spacing:6.840000px;}
.ws24{word-spacing:7.056000px;}
.ws4b{word-spacing:7.272000px;}
.ws7d{word-spacing:7.416000px;}
.ws19{word-spacing:7.704000px;}
.wsa1{word-spacing:7.776000px;}
.ws47{word-spacing:7.848000px;}
.ws92{word-spacing:8.136000px;}
.ws2c{word-spacing:8.208000px;}
.ws17{word-spacing:8.280000px;}
.ws7a{word-spacing:8.424000px;}
.wsc{word-spacing:8.496000px;}
.ws14{word-spacing:8.568000px;}
.ws2f{word-spacing:8.640000px;}
.ws4{word-spacing:8.712000px;}
.ws73{word-spacing:8.856000px;}
.ws31{word-spacing:9.144000px;}
.ws3f{word-spacing:9.288000px;}
.ws2a{word-spacing:9.432000px;}
.ws4e{word-spacing:9.504000px;}
.ws5a{word-spacing:9.648000px;}
.ws28{word-spacing:10.008000px;}
.ws87{word-spacing:10.152000px;}
.ws16{word-spacing:10.296000px;}
.ws98{word-spacing:10.368000px;}
.ws62{word-spacing:10.512000px;}
.ws79{word-spacing:11.016000px;}
.ws12{word-spacing:11.160000px;}
.ws81{word-spacing:11.448000px;}
.ws6b{word-spacing:11.736000px;}
.ws68{word-spacing:11.880000px;}
.ws1e{word-spacing:12.024000px;}
.ws11{word-spacing:12.744000px;}
.ws29{word-spacing:12.816000px;}
.ws7{word-spacing:13.104000px;}
.ws7f{word-spacing:13.176000px;}
.ws9f{word-spacing:13.464000px;}
.ws78{word-spacing:14.040000px;}
.ws49{word-spacing:14.184000px;}
.ws86{word-spacing:14.256000px;}
.ws4c{word-spacing:14.760000px;}
.ws25{word-spacing:15.048000px;}
.ws89{word-spacing:15.120000px;}
.ws53{word-spacing:15.192000px;}
.ws52{word-spacing:15.984000px;}
.ws5c{word-spacing:16.200000px;}
.ws1d{word-spacing:16.344000px;}
.ws9c{word-spacing:18.216000px;}
.ws33{word-spacing:18.432000px;}
.ws1b{word-spacing:18.936000px;}
.ws9b{word-spacing:19.440000px;}
.ws5e{word-spacing:19.944000px;}
.ws82{word-spacing:20.016000px;}
.ws6a{word-spacing:20.232000px;}
.ws5b{word-spacing:20.376000px;}
.wsd{word-spacing:20.448000px;}
.ws34{word-spacing:20.736000px;}
.ws9e{word-spacing:21.456000px;}
.ws40{word-spacing:21.744000px;}
.ws6e{word-spacing:21.816000px;}
.ws2d{word-spacing:22.248000px;}
.ws60{word-spacing:22.680000px;}
.ws39{word-spacing:22.896000px;}
.ws22{word-spacing:23.760000px;}
.wsca{word-spacing:24.264000px;}
.ws20{word-spacing:24.552000px;}
.wse{word-spacing:25.056000px;}
.wscc{word-spacing:25.776000px;}
.ws13{word-spacing:26.568000px;}
.ws61{word-spacing:27.864000px;}
.wsc9{word-spacing:28.008000px;}
.ws18{word-spacing:28.512000px;}
.ws3a{word-spacing:30.024000px;}
.ws63{word-spacing:30.600000px;}
.ws1f{word-spacing:32.472000px;}
.ws21{word-spacing:35.712000px;}
.wsf{word-spacing:36.576000px;}
.ws10{word-spacing:37.584000px;}
.ws9d{word-spacing:40.536000px;}
.ws6{word-spacing:45.648000px;}
.ws23{word-spacing:56.016000px;}
.wsb{word-spacing:95.544000px;}
.ws8c{word-spacing:175.560000px;}
.ws8d{word-spacing:265.620000px;}
.ws8e{word-spacing:328.902000px;}
.ws9a{word-spacing:677.700000px;}
._34{margin-left:-10.814400px;}
._1b{margin-left:-9.367200px;}
._4{margin-left:-8.013000px;}
._22{margin-left:-7.012800px;}
._3{margin-left:-5.918400px;}
._c{margin-left:-4.687200px;}
._16{margin-left:-3.225600px;}
._15{margin-left:-1.418400px;}
._5{width:1.485600px;}
._9{width:2.757600px;}
._2{width:3.967200px;}
._1a{width:5.076000px;}
._8{width:6.580800px;}
._1e{width:7.617000px;}
._6{width:8.668800px;}
._17{width:9.684000px;}
._19{width:10.965600px;}
._d{width:11.988000px;}
._18{width:13.168800px;}
._b{width:14.652000px;}
._a{width:15.732000px;}
._12{width:17.330400px;}
._7{width:18.662400px;}
._3a{width:19.734000px;}
._20{width:21.398400px;}
._33{width:22.492800px;}
._e{width:23.515200px;}
._11{width:24.667200px;}
._21{width:27.756600px;}
._37{width:29.200800px;}
._1d{width:30.844200px;}
._1c{width:31.910400px;}
._3b{width:38.406000px;}
._13{width:53.568000px;}
._f{width:54.805800px;}
._10{width:56.029800px;}
._1f{width:62.784000px;}
._35{width:72.388845px;}
._36{width:76.677178px;}
._31{width:88.747800px;}
._2b{width:111.285600px;}
._39{width:115.854000px;}
._38{width:122.418000px;}
._32{width:136.267200px;}
._2f{width:155.700000px;}
._30{width:184.140600px;}
._2c{width:230.467200px;}
._26{width:253.920000px;}
._23{width:307.860000px;}
._24{width:323.640000px;}
._25{width:325.860000px;}
._28{width:345.525600px;}
._2a{width:417.660000px;}
._2e{width:437.580000px;}
._14{width:445.469400px;}
._1{width:447.438000px;}
._2d{width:454.260000px;}
._29{width:504.300000px;}
._27{width:520.980000px;}
._0{width:1397.721000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(33,33,33);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(29,115,155);}
.fc0{color:rgb(63,66,70);}
.fs6{font-size:34.980000px;}
.fsc{font-size:38.478000px;}
.fs5{font-size:41.976000px;}
.fs1{font-size:60.000000px;}
.fsa{font-size:60.120000px;}
.fsb{font-size:63.000000px;}
.fs9{font-size:65.880000px;}
.fs4{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.fs7{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:19.978350px;}
.y8f{bottom:55.575150px;}
.y2d4{bottom:56.053350px;}
.y257{bottom:56.950500px;}
.y1bf{bottom:58.859550px;}
.y22{bottom:59.161350px;}
.y194{bottom:62.654250px;}
.y2a5{bottom:64.240200px;}
.y67{bottom:64.430550px;}
.yd3{bottom:64.736850px;}
.y40{bottom:66.433350px;}
.y103{bottom:69.579150px;}
.y16f{bottom:71.404800px;}
.yfa{bottom:75.555150px;}
.y2d3{bottom:75.853350px;}
.y1be{bottom:76.859550px;}
.y1cc{bottom:77.886000px;}
.y193{bottom:80.654250px;}
.y2a4{bottom:84.040200px;}
.y8e{bottom:84.069150px;}
.y301{bottom:84.555600px;}
.y120{bottom:85.832850px;}
.y21{bottom:86.161350px;}
.yae{bottom:86.733000px;}
.y256{bottom:87.054300px;}
.y66{bottom:92.924550px;}
.yd2{bottom:93.230850px;}
.y3f{bottom:93.433350px;}
.y20a{bottom:94.533600px;}
.y2d2{bottom:95.653350px;}
.y192{bottom:98.654250px;}
.y13c{bottom:98.896650px;}
.y16e{bottom:99.898800px;}
.y32f{bottom:100.347900px;}
.y2a3{bottom:103.840200px;}
.yf9{bottom:104.049150px;}
.y102{bottom:105.075150px;}
.y255{bottom:106.854300px;}
.y1cb{bottom:110.286000px;}
.y300{bottom:111.057450px;}
.y209{bottom:112.353150px;}
.y8d{bottom:112.563150px;}
.y11f{bottom:112.832850px;}
.y20{bottom:113.161350px;}
.y283{bottom:113.337000px;}
.yad{bottom:113.733000px;}
.y2d1{bottom:115.453350px;}
.y191{bottom:116.654250px;}
.y1bd{bottom:120.374550px;}
.y3e{bottom:120.433350px;}
.y65{bottom:121.418550px;}
.yd1{bottom:121.724850px;}
.y13b{bottom:122.146650px;}
.y138{bottom:122.896650px;}
.y2a2{bottom:123.640200px;}
.y254{bottom:126.654300px;}
.y16d{bottom:128.392800px;}
.y208{bottom:130.172700px;}
.yf8{bottom:132.543150px;}
.y101{bottom:133.569150px;}
.y2d0{bottom:135.253350px;}
.y1bc{bottom:138.374550px;}
.y32e{bottom:138.958500px;}
.y1f{bottom:140.161350px;}
.yac{bottom:140.733000px;}
.y8c{bottom:141.057150px;}
.y282{bottom:143.440200px;}
.y136{bottom:145.396650px;}
.y253{bottom:146.454300px;}
.y3d{bottom:147.433350px;}
.y2a1{bottom:147.692100px;}
.y207{bottom:148.082100px;}
.y2ff{bottom:149.667000px;}
.y64{bottom:149.912550px;}
.yd0{bottom:150.218850px;}
.y11e{bottom:152.594850px;}
.y2cf{bottom:155.053350px;}
.y1bb{bottom:156.374550px;}
.y16c{bottom:156.886800px;}
.y190{bottom:160.130850px;}
.yf7{bottom:161.037150px;}
.y100{bottom:162.063150px;}
.y281{bottom:163.240200px;}
.y2a0{bottom:165.692100px;}
.y206{bottom:165.901650px;}
.y252{bottom:166.254300px;}
.y1e{bottom:167.161350px;}
.y137{bottom:167.896650px;}
.y13a{bottom:168.646650px;}
.y32d{bottom:169.061850px;}
.y8b{bottom:169.551150px;}
.y3c{bottom:174.433350px;}
.y18f{bottom:178.130850px;}
.y63{bottom:178.406550px;}
.ycf{bottom:178.712850px;}
.y2ce{bottom:179.105400px;}
.y11d{bottom:179.594850px;}
.y2fe{bottom:179.771400px;}
.yab{bottom:180.495000px;}
.y205{bottom:183.810900px;}
.y16b{bottom:185.380800px;}
.y251{bottom:186.054300px;}
.y280{bottom:187.292250px;}
.y32c{bottom:188.861850px;}
.yf6{bottom:189.531150px;}
.yff{bottom:190.557150px;}
.y139{bottom:191.896650px;}
.y29f{bottom:192.193950px;}
.y1d{bottom:194.161350px;}
.y2cd{bottom:197.105400px;}
.y8a{bottom:198.045150px;}
.y2fd{bottom:199.571400px;}
.y1ba{bottom:199.889550px;}
.y3b{bottom:201.433350px;}
.y204{bottom:201.630450px;}
.y27f{bottom:205.292250px;}
.y250{bottom:205.854300px;}
.y62{bottom:206.900550px;}
.y32b{bottom:208.661850px;}
.y16a{bottom:213.874800px;}
.y11c{bottom:215.090850px;}
.y135{bottom:215.146650px;}
.yce{bottom:215.720850px;}
.yaa{bottom:215.991000px;}
.y1b9{bottom:217.889550px;}
.yf5{bottom:218.025150px;}
.yfe{bottom:219.051150px;}
.y2fc{bottom:219.371400px;}
.y203{bottom:220.620600px;}
.y1c{bottom:221.161350px;}
.y18e{bottom:221.645850px;}
.y2cc{bottom:223.607100px;}
.y24f{bottom:225.654300px;}
.y89{bottom:226.539150px;}
.y32a{bottom:228.461850px;}
.y29e{bottom:230.803500px;}
.y27e{bottom:231.793950px;}
.y61{bottom:235.394550px;}
.y1b8{bottom:235.889550px;}
.ycd{bottom:237.320850px;}
.y18d{bottom:239.645850px;}
.y202{bottom:240.690450px;}
.y169{bottom:242.368800px;}
.y2fb{bottom:243.423300px;}
.ya9{bottom:244.485000px;}
.y24e{bottom:245.454300px;}
.yf4{bottom:246.519150px;}
.yfd{bottom:247.545150px;}
.y11b{bottom:247.850850px;}
.y1b{bottom:248.161350px;}
.y329{bottom:248.261850px;}
.y88{bottom:255.033150px;}
.y3a{bottom:255.433350px;}
.y18c{bottom:257.645850px;}
.y201{bottom:257.970450px;}
.y29d{bottom:260.907900px;}
.y2fa{bottom:261.423300px;}
.y2cb{bottom:262.216500px;}
.y60{bottom:263.888700px;}
.y24d{bottom:265.254300px;}
.y328{bottom:268.061850px;}
.y27d{bottom:270.403500px;}
.y168{bottom:270.862800px;}
.ya8{bottom:272.979000px;}
.yf3{bottom:275.013150px;}
.y1a{bottom:275.161350px;}
.y200{bottom:275.250450px;}
.y1b7{bottom:279.404550px;}
.y29c{bottom:280.707900px;}
.y39{bottom:282.433350px;}
.y11a{bottom:283.346850px;}
.y87{bottom:283.527150px;}
.yfc{bottom:284.553150px;}
.y24c{bottom:285.054300px;}
.y327{bottom:287.861850px;}
.y2f9{bottom:287.925150px;}
.y2ca{bottom:292.321050px;}
.y5f{bottom:292.382700px;}
.y1ff{bottom:292.440450px;}
.ycc{bottom:294.182850px;}
.y1b6{bottom:297.404550px;}
.y167{bottom:299.356800px;}
.y27c{bottom:300.507900px;}
.y18b{bottom:301.160850px;}
.ya7{bottom:301.473000px;}
.y19{bottom:302.161350px;}
.yf2{bottom:303.507150px;}
.y29b{bottom:304.759800px;}
.yfb{bottom:306.153150px;}
.y326{bottom:307.661850px;}
.y24b{bottom:309.106350px;}
.y38{bottom:309.433350px;}
.y1fe{bottom:309.720600px;}
.y86{bottom:312.021150px;}
.y2c9{bottom:312.121050px;}
.y1b5{bottom:315.404550px;}
.y18a{bottom:319.160850px;}
.y27b{bottom:320.307900px;}
.y5e{bottom:320.876700px;}
.ycb{bottom:322.676850px;}
.y29a{bottom:322.759800px;}
.y2f8{bottom:326.535000px;}
.y1fd{bottom:326.910450px;}
.y24a{bottom:327.106350px;}
.y325{bottom:327.461850px;}
.y166{bottom:327.850800px;}
.y227{bottom:328.585500px;}
.y18{bottom:329.161350px;}
.ya6{bottom:329.967000px;}
.y2c8{bottom:331.921050px;}
.yf1{bottom:332.001150px;}
.y37{bottom:336.433350px;}
.y85{bottom:340.515150px;}
.y119{bottom:343.106850px;}
.y1fc{bottom:344.190600px;}
.y27a{bottom:344.359800px;}
.y299{bottom:349.261650px;}
.y5d{bottom:349.370700px;}
.yca{bottom:351.170850px;}
.y324{bottom:351.513750px;}
.y2c7{bottom:351.721050px;}
.y249{bottom:353.604000px;}
.y17{bottom:356.161350px;}
.y165{bottom:356.344800px;}
.y2f7{bottom:356.639100px;}
.ya5{bottom:358.461000px;}
.y1b4{bottom:358.919550px;}
.yf0{bottom:360.495150px;}
.y1fb{bottom:361.470600px;}
.y279{bottom:362.359800px;}
.y189{bottom:362.675850px;}
.y36{bottom:363.433350px;}
.y84{bottom:369.009150px;}
.y323{bottom:369.513750px;}
.y2c6{bottom:375.773100px;}
.y2f6{bottom:376.439100px;}
.y1b3{bottom:376.919550px;}
.y5c{bottom:377.864700px;}
.y1fa{bottom:378.660450px;}
.yc9{bottom:379.664850px;}
.y278{bottom:380.359800px;}
.y188{bottom:380.675850px;}
.y118{bottom:382.868700px;}
.y16{bottom:383.161350px;}
.y164{bottom:384.838800px;}
.ya4{bottom:386.955000px;}
.y298{bottom:387.871500px;}
.y248{bottom:387.966000px;}
.yef{bottom:388.989150px;}
.y35{bottom:390.433350px;}
.y2c5{bottom:393.773100px;}
.y1b2{bottom:394.919550px;}
.y1f9{bottom:395.940450px;}
.y322{bottom:396.015600px;}
.y2f5{bottom:396.239100px;}
.y83{bottom:397.503150px;}
.y134{bottom:398.222700px;}
.y187{bottom:398.675850px;}
.y5b{bottom:406.358700px;}
.y277{bottom:406.861650px;}
.yc8{bottom:408.158850px;}
.y15{bottom:410.161350px;}
.y1b1{bottom:412.919550px;}
.y1f8{bottom:413.220450px;}
.y163{bottom:413.332800px;}
.y226{bottom:414.085500px;}
.ya3{bottom:415.449000px;}
.y2f4{bottom:416.039100px;}
.y34{bottom:417.433350px;}
.yee{bottom:417.483150px;}
.y297{bottom:417.975450px;}
.y247{bottom:418.069950px;}
.y2c4{bottom:420.274800px;}
.y117{bottom:422.630700px;}
.y82{bottom:425.997150px;}
.y133{bottom:426.716700px;}
.y1f7{bottom:430.410450px;}
.y321{bottom:434.625000px;}
.y5a{bottom:434.852700px;}
.yc7{bottom:436.652850px;}
.y14{bottom:437.161350px;}
.y296{bottom:437.775450px;}
.y246{bottom:437.870100px;}
.y2f3{bottom:440.091000px;}
.y186{bottom:442.190850px;}
.y225{bottom:442.579500px;}
.ya2{bottom:443.943000px;}
.y33{bottom:444.433350px;}
.y276{bottom:445.471500px;}
.yed{bottom:445.977150px;}
.y1f6{bottom:447.690450px;}
.y81{bottom:454.491150px;}
.y162{bottom:454.588800px;}
.y1b0{bottom:456.434550px;}
.y295{bottom:457.575450px;}
.y245{bottom:457.670100px;}
.y2c3{bottom:458.884500px;}
.y132{bottom:459.476700px;}
.y185{bottom:460.190850px;}
.y116{bottom:462.392700px;}
.y59{bottom:463.346700px;}
.y13{bottom:464.161350px;}
.y320{bottom:464.729550px;}
.y1f5{bottom:464.970450px;}
.yc6{bottom:465.146850px;}
.y2f2{bottom:466.592850px;}
.y224{bottom:471.073500px;}
.y32{bottom:471.433350px;}
.ya1{bottom:472.437000px;}
.y1af{bottom:474.434550px;}
.yec{bottom:474.471150px;}
.y275{bottom:475.575600px;}
.y294{bottom:477.375450px;}
.y244{bottom:477.470100px;}
.y184{bottom:478.190850px;}
.y80{bottom:482.985150px;}
.y131{bottom:486.476700px;}
.y1f4{bottom:486.840750px;}
.y31f{bottom:488.781450px;}
.y2c2{bottom:488.988750px;}
.y12{bottom:491.161350px;}
.y58{bottom:491.840700px;}
.y1ae{bottom:492.434550px;}
.yc5{bottom:493.640850px;}
.y274{bottom:495.375600px;}
.y293{bottom:497.175450px;}
.y243{bottom:497.270100px;}
.y31{bottom:498.433350px;}
.y223{bottom:499.567500px;}
.ya0{bottom:500.931000px;}
.y115{bottom:502.154700px;}
.yeb{bottom:502.965150px;}
.y1f3{bottom:504.120750px;}
.y2f1{bottom:505.203000px;}
.y31e{bottom:506.781450px;}
.y2c1{bottom:508.788750px;}
.y7f{bottom:511.479150px;}
.y273{bottom:515.175600px;}
.y292{bottom:516.975600px;}
.y11{bottom:518.161350px;}
.y57{bottom:520.334700px;}
.y242{bottom:521.322000px;}
.y183{bottom:521.706000px;}
.yc4{bottom:522.134850px;}
.y30{bottom:525.433350px;}
.y130{bottom:526.238700px;}
.y1f2{bottom:527.970450px;}
.y222{bottom:528.061500px;}
.y9f{bottom:529.425000px;}
.yea{bottom:531.459150px;}
.y2c0{bottom:532.840800px;}
.y31d{bottom:533.283300px;}
.y272{bottom:534.975600px;}
.y1ad{bottom:535.949550px;}
.y291{bottom:536.775600px;}
.y2f0{bottom:537.691800px;}
.y161{bottom:537.856800px;}
.y241{bottom:539.322000px;}
.y182{bottom:539.706000px;}
.y7e{bottom:539.973150px;}
.y114{bottom:541.916700px;}
.y1f1{bottom:546.690450px;}
.y56{bottom:548.828700px;}
.yc3{bottom:550.628850px;}
.y2bf{bottom:550.840800px;}
.y2f{bottom:552.433350px;}
.y12f{bottom:553.238700px;}
.y1ac{bottom:553.949550px;}
.y271{bottom:554.775600px;}
.y221{bottom:556.555500px;}
.y290{bottom:556.575600px;}
.y240{bottom:557.322000px;}
.y2ef{bottom:557.491800px;}
.y181{bottom:557.706000px;}
.y9e{bottom:557.919000px;}
.ye9{bottom:559.953150px;}
.y1f0{bottom:565.320450px;}
.y160{bottom:566.350800px;}
.y7d{bottom:568.467150px;}
.y31c{bottom:571.893000px;}
.y1ab{bottom:571.949550px;}
.y28f{bottom:576.375600px;}
.y55{bottom:577.322700px;}
.y2be{bottom:577.342500px;}
.y270{bottom:578.827500px;}
.yc2{bottom:579.122850px;}
.y2e{bottom:579.433350px;}
.y2ee{bottom:581.499300px;}
.y113{bottom:581.678700px;}
.y23f{bottom:583.819800px;}
.y1ef{bottom:584.040450px;}
.y220{bottom:585.049650px;}
.y9d{bottom:586.413000px;}
.ye8{bottom:588.447150px;}
.y12e{bottom:593.000700px;}
.y15f{bottom:594.844800px;}
.y7c{bottom:596.961300px;}
.y1c9{bottom:597.464550px;}
.y28e{bottom:600.427500px;}
.y180{bottom:601.221000px;}
.y31b{bottom:601.997250px;}
.y1ee{bottom:602.760450px;}
.y26f{bottom:605.329350px;}
.y2ed{bottom:605.506800px;}
.y54{bottom:605.816700px;}
.y2d{bottom:606.433350px;}
.yc1{bottom:607.616850px;}
.y10{bottom:609.517200px;}
.y21f{bottom:613.543650px;}
.y9c{bottom:614.907000px;}
.y1aa{bottom:615.464550px;}
.y2bd{bottom:615.952500px;}
.ye7{bottom:616.941150px;}
.y23e{bottom:618.181500px;}
.y28d{bottom:618.427500px;}
.y17f{bottom:619.221000px;}
.y12d{bottom:620.000700px;}
.y112{bottom:621.440700px;}
.y1ed{bottom:621.480450px;}
.y31a{bottom:621.797250px;}
.y15e{bottom:623.338800px;}
.y2ec{bottom:625.306800px;}
.y7b{bottom:625.455300px;}
.yf{bottom:631.769250px;}
.y2c{bottom:633.433350px;}
.y1c8{bottom:633.464550px;}
.yc0{bottom:636.110850px;}
.y1ec{bottom:640.200450px;}
.y319{bottom:641.597250px;}
.y21e{bottom:642.037650px;}
.y9b{bottom:643.401000px;}
.y26e{bottom:643.939500px;}
.y28c{bottom:644.929350px;}
.ye6{bottom:645.435150px;}
.y2bc{bottom:646.056450px;}
.y53{bottom:647.072700px;}
.y23d{bottom:648.285750px;}
.y2eb{bottom:649.358850px;}
.y15d{bottom:651.832800px;}
.y7a{bottom:653.949300px;}
.y1ca{bottom:655.254900px;}
.y1eb{bottom:658.920450px;}
.y1a9{bottom:658.979550px;}
.y12c{bottom:659.762700px;}
.y2b{bottom:660.433350px;}
.y111{bottom:661.202700px;}
.y318{bottom:661.397250px;}
.y17e{bottom:662.736000px;}
.ye{bottom:663.621300px;}
.ybf{bottom:664.604850px;}
.y2bb{bottom:665.856450px;}
.y2ea{bottom:667.358850px;}
.y23c{bottom:668.085750px;}
.y21d{bottom:670.531650px;}
.y9a{bottom:671.895000px;}
.ye5{bottom:673.929150px;}
.y26d{bottom:674.038200px;}
.y1a8{bottom:676.979550px;}
.y1ea{bottom:677.640450px;}
.y15c{bottom:680.326800px;}
.y17d{bottom:680.736000px;}
.y317{bottom:681.197250px;}
.y79{bottom:682.443300px;}
.y28b{bottom:683.539500px;}
.y12b{bottom:686.762700px;}
.y2a{bottom:687.433350px;}
.y23b{bottom:687.885750px;}
.y2ba{bottom:689.908500px;}
.yd{bottom:691.867200px;}
.ybe{bottom:693.098850px;}
.y26c{bottom:693.838200px;}
.y2e9{bottom:693.860700px;}
.y1a7{bottom:694.979550px;}
.y1e9{bottom:696.270450px;}
.y21c{bottom:699.025650px;}
.y99{bottom:700.389000px;}
.y110{bottom:700.964700px;}
.ye4{bottom:702.423150px;}
.y316{bottom:705.249150px;}
.y23a{bottom:707.685750px;}
.y2b9{bottom:707.908500px;}
.y78{bottom:710.937300px;}
.y26b{bottom:713.638200px;}
.y28a{bottom:713.643300px;}
.y29{bottom:714.433350px;}
.y1e8{bottom:714.990450px;}
.yc{bottom:717.725250px;}
.ybd{bottom:721.592850px;}
.y315{bottom:723.249150px;}
.y17c{bottom:724.251000px;}
.y12a{bottom:726.524700px;}
.y21b{bottom:727.519650px;}
.y98{bottom:728.883000px;}
.ye3{bottom:730.917150px;}
.y239{bottom:731.737800px;}
.y2e8{bottom:732.471000px;}
.y289{bottom:733.443300px;}
.y1e7{bottom:733.710450px;}
.y2b8{bottom:734.410350px;}
.y15b{bottom:735.824700px;}
.y52{bottom:736.334700px;}
.y26a{bottom:737.695200px;}
.y1a6{bottom:738.494550px;}
.y77{bottom:739.431300px;}
.yb{bottom:739.977150px;}
.y10f{bottom:740.726700px;}
.y28{bottom:741.433350px;}
.y17b{bottom:742.251000px;}
.y314{bottom:749.751000px;}
.ybc{bottom:750.086850px;}
.y1e6{bottom:752.430450px;}
.y129{bottom:753.524700px;}
.y15a{bottom:753.824700px;}
.y21a{bottom:756.013650px;}
.y1a5{bottom:756.494550px;}
.y97{bottom:757.377000px;}
.y269{bottom:757.495200px;}
.y238{bottom:758.235600px;}
.ye2{bottom:759.411150px;}
.y2e7{bottom:762.574350px;}
.y51{bottom:763.334700px;}
.y76{bottom:767.925300px;}
.y27{bottom:768.433350px;}
.y1e5{bottom:771.150450px;}
.ya{bottom:771.829050px;}
.y2b7{bottom:773.020500px;}
.y1c7{bottom:774.494550px;}
.y268{bottom:775.495200px;}
.ybb{bottom:778.580850px;}
.y10e{bottom:780.488700px;}
.y128{bottom:780.524700px;}
.y2e6{bottom:782.374350px;}
.y219{bottom:784.507650px;}
.y17a{bottom:785.766000px;}
.y96{bottom:785.871000px;}
.ye1{bottom:787.905150px;}
.y313{bottom:788.361000px;}
.y159{bottom:789.209700px;}
.y1e4{bottom:789.870450px;}
.y50{bottom:790.334700px;}
.y237{bottom:792.597000px;}
.y9{bottom:794.081100px;}
.y26{bottom:795.433350px;}
.y75{bottom:796.419300px;}
.y1a4{bottom:800.009550px;}
.y267{bottom:801.997050px;}
.y2e5{bottom:802.174500px;}
.y2b6{bottom:803.124150px;}
.y179{bottom:803.766000px;}
.yba{bottom:807.074850px;}
.y1e3{bottom:808.590450px;}
.y158{bottom:811.709700px;}
.y218{bottom:813.001500px;}
.y95{bottom:814.365000px;}
.ye0{bottom:816.399150px;}
.y4f{bottom:817.334700px;}
.y1a3{bottom:818.009550px;}
.y312{bottom:818.464800px;}
.y10d{bottom:820.250700px;}
.y127{bottom:820.286700px;}
.y2e4{bottom:821.974500px;}
.y25{bottom:822.433350px;}
.y236{bottom:822.693900px;}
.y74{bottom:824.913150px;}
.y8{bottom:825.937200px;}
.y2b5{bottom:827.176200px;}
.y1e2{bottom:827.220450px;}
.yb9{bottom:835.568700px;}
.y1a2{bottom:836.009550px;}
.y311{bottom:838.264950px;}
.y157{bottom:838.334700px;}
.y266{bottom:840.607500px;}
.y217{bottom:841.495500px;}
.y153{bottom:841.709700px;}
.y2e3{bottom:841.774500px;}
.y235{bottom:842.494050px;}
.y94{bottom:842.858850px;}
.y4e{bottom:844.334700px;}
.ydf{bottom:844.893150px;}
.y2b4{bottom:845.176200px;}
.y1e1{bottom:845.940450px;}
.y178{bottom:847.281000px;}
.y126{bottom:847.286700px;}
.y24{bottom:849.433350px;}
.y152{bottom:852.959700px;}
.y73{bottom:853.407150px;}
.y1c6{bottom:854.009550px;}
.y7{bottom:854.185050px;}
.y10c{bottom:855.746700px;}
.y310{bottom:858.064950px;}
.y156{bottom:860.834700px;}
.y234{bottom:862.294050px;}
.yb8{bottom:864.062700px;}
.y1e0{bottom:864.660450px;}
.y177{bottom:865.281000px;}
.y2e2{bottom:865.826550px;}
.y216{bottom:869.989500px;}
.y265{bottom:870.711000px;}
.y4d{bottom:871.334700px;}
.y93{bottom:871.352850px;}
.y2b3{bottom:871.677900px;}
.yde{bottom:873.387150px;}
.y125{bottom:874.286700px;}
.y23{bottom:876.433350px;}
.y6{bottom:876.436950px;}
.y30f{bottom:877.864950px;}
.y1a1{bottom:879.524550px;}
.y72{bottom:881.901150px;}
.y1df{bottom:883.380450px;}
.y2e1{bottom:883.826550px;}
.y10b{bottom:884.240700px;}
.y233{bottom:886.301550px;}
.y264{bottom:890.511000px;}
.y155{bottom:890.834700px;}
.yb7{bottom:892.556700px;}
.y1a0{bottom:897.524550px;}
.y30e{bottom:897.664950px;}
.y4c{bottom:898.334700px;}
.y215{bottom:898.483500px;}
.y92{bottom:899.846850px;}
.ydd{bottom:901.881000px;}
.y1de{bottom:902.100450px;}
.y232{bottom:906.101550px;}
.y176{bottom:908.796000px;}
.y2b2{bottom:910.288500px;}
.y263{bottom:910.311000px;}
.y2e0{bottom:910.328250px;}
.y71{bottom:910.395150px;}
.y154{bottom:913.334700px;}
.y124{bottom:914.048700px;}
.y288{bottom:914.563050px;}
.y19f{bottom:915.524550px;}
.y10a{bottom:917.000700px;}
.y30d{bottom:917.464950px;}
.y1dd{bottom:920.820450px;}
.yb6{bottom:921.050700px;}
.y4b{bottom:925.334700px;}
.y175{bottom:926.796000px;}
.y214{bottom:926.977350px;}
.y91{bottom:928.340850px;}
.y231{bottom:930.153600px;}
.ydc{bottom:930.375000px;}
.y287{bottom:932.563050px;}
.y1c5{bottom:933.524550px;}
.y262{bottom:934.363050px;}
.y30c{bottom:937.264950px;}
.y70{bottom:938.889000px;}
.y1dc{bottom:939.540600px;}
.y14c{bottom:939.959700px;}
.y2b1{bottom:940.392000px;}
.y123{bottom:941.048700px;}
.y174{bottom:944.796000px;}
.y2df{bottom:948.937500px;}
.y151{bottom:949.709700px;}
.y4a{bottom:952.334700px;}
.y261{bottom:952.363050px;}
.yb5{bottom:953.810700px;}
.y213{bottom:955.471350px;}
.y230{bottom:956.651250px;}
.y109{bottom:956.762700px;}
.y1db{bottom:958.260450px;}
.ydb{bottom:958.869000px;}
.y19e{bottom:959.039550px;}
.y286{bottom:959.064900px;}
.y2b0{bottom:960.192000px;}
.y30b{bottom:961.316850px;}
.y14b{bottom:962.459700px;}
.y6f{bottom:967.383000px;}
.y122{bottom:968.048700px;}
.y90{bottom:969.596850px;}
.y1da{bottom:976.890450px;}
.y19d{bottom:977.039550px;}
.y260{bottom:978.864750px;}
.y2de{bottom:979.042200px;}
.y30a{bottom:979.316850px;}
.y49{bottom:979.334700px;}
.y2af{bottom:979.992000px;}
.yb4{bottom:980.810700px;}
.y150{bottom:982.709700px;}
.y212{bottom:983.965350px;}
.y14a{bottom:984.959700px;}
.yda{bottom:987.362850px;}
.y173{bottom:988.311000px;}
.y22f{bottom:991.014000px;}
.y1c4{bottom:995.039550px;}
.y1d9{bottom:995.610450px;}
.y6e{bottom:995.877000px;}
.y108{bottom:996.524700px;}
.y285{bottom:997.675500px;}
.y2dd{bottom:998.842200px;}
.y2ae{bottom:999.792000px;}
.y309{bottom:1005.818700px;}
.y14f{bottom:1005.959700px;}
.y172{bottom:1006.311000px;}
.y48{bottom:1006.334700px;}
.y146{bottom:1007.459700px;}
.yb3{bottom:1007.810700px;}
.y211{bottom:1012.459200px;}
.y1c3{bottom:1013.039550px;}
.y1d8{bottom:1014.330450px;}
.yd9{bottom:1015.856850px;}
.y25f{bottom:1017.475500px;}
.y2dc{bottom:1018.642200px;}
.y2ad{bottom:1019.592000px;}
.y19c{bottom:1020.554700px;}
.y22e{bottom:1021.117200px;}
.y171{bottom:1024.311000px;}
.y6d{bottom:1024.370850px;}
.y284{bottom:1027.778850px;}
.y14e{bottom:1029.209700px;}
.y149{bottom:1029.959700px;}
.y1d7{bottom:1033.050450px;}
.y47{bottom:1033.334700px;}
.yb2{bottom:1034.810700px;}
.y107{bottom:1036.286700px;}
.y2db{bottom:1038.442350px;}
.y4{bottom:1038.532800px;}
.y19b{bottom:1038.554700px;}
.y22d{bottom:1040.917200px;}
.y210{bottom:1040.953200px;}
.y2ac{bottom:1043.643900px;}
.yd8{bottom:1044.350850px;}
.y308{bottom:1044.429000px;}
.y25e{bottom:1047.578850px;}
.y1d6{bottom:1051.770450px;}
.y148{bottom:1052.459700px;}
.y6c{bottom:1052.864850px;}
.y170{bottom:1055.078700px;}
.y19a{bottom:1056.554700px;}
.y2da{bottom:1058.242350px;}
.y46{bottom:1060.334700px;}
.y22c{bottom:1060.717200px;}
.y2ab{bottom:1061.643900px;}
.y121{bottom:1061.810700px;}
.y14d{bottom:1063.709700px;}
.y25d{bottom:1067.378850px;}
.y20f{bottom:1069.447200px;}
.y1d5{bottom:1070.492100px;}
.y3{bottom:1070.932650px;}
.yd7{bottom:1072.844850px;}
.y307{bottom:1074.532500px;}
.y1c2{bottom:1074.554700px;}
.yb1{bottom:1074.572700px;}
.y147{bottom:1074.959700px;}
.y106{bottom:1076.048700px;}
.y22b{bottom:1080.517200px;}
.y6b{bottom:1081.358850px;}
.y2d9{bottom:1082.294250px;}
.y25c{bottom:1087.178850px;}
.y45{bottom:1087.334700px;}
.y2aa{bottom:1088.145750px;}
.y1d4{bottom:1089.211800px;}
.y1c1{bottom:1092.554700px;}
.y306{bottom:1094.332650px;}
.y20e{bottom:1097.941200px;}
.y145{bottom:1098.209700px;}
.y199{bottom:1100.069700px;}
.yd6{bottom:1101.338700px;}
.yb0{bottom:1101.572700px;}
.y2{bottom:1103.332650px;}
.y22a{bottom:1104.569250px;}
.y25b{bottom:1106.978850px;}
.y1d3{bottom:1107.841050px;}
.y2d8{bottom:1108.796100px;}
.y6a{bottom:1109.852850px;}
.y141{bottom:1110.959700px;}
.y305{bottom:1114.132650px;}
.y44{bottom:1114.334700px;}
.y105{bottom:1115.810700px;}
.y198{bottom:1118.069700px;}
.y144{bottom:1121.459700px;}
.y229{bottom:1122.569250px;}
.y20d{bottom:1126.435050px;}
.y1d2{bottom:1126.560900px;}
.y2a9{bottom:1126.755000px;}
.y25a{bottom:1126.778850px;}
.yaf{bottom:1128.572700px;}
.yd5{bottom:1129.832700px;}
.y140{bottom:1133.459700px;}
.y304{bottom:1133.932650px;}
.y197{bottom:1136.069700px;}
.y69{bottom:1138.346700px;}
.y43{bottom:1141.334700px;}
.y13d{bottom:1144.709700px;}
.y1d1{bottom:1145.280600px;}
.y2d7{bottom:1148.775000px;}
.y228{bottom:1149.079050px;}
.y259{bottom:1150.830750px;}
.y303{bottom:1153.732650px;}
.y1c0{bottom:1154.069700px;}
.y20c{bottom:1154.929050px;}
.y104{bottom:1155.572700px;}
.y1ce{bottom:1155.912000px;}
.y13f{bottom:1155.959700px;}
.y2a8{bottom:1156.859550px;}
.yd4{bottom:1158.326700px;}
.y1d0{bottom:1164.000450px;}
.y68{bottom:1166.840700px;}
.y143{bottom:1167.959700px;}
.y42{bottom:1168.334700px;}
.y258{bottom:1168.830750px;}
.y302{bottom:1173.532650px;}
.y2d6{bottom:1173.955500px;}
.y2a7{bottom:1176.659700px;}
.y13e{bottom:1178.459700px;}
.y196{bottom:1179.584700px;}
.y1cd{bottom:1181.763900px;}
.y5{bottom:1181.834550px;}
.y1cf{bottom:1185.600450px;}
.y142{bottom:1191.209700px;}
.y41{bottom:1195.334700px;}
.y20b{bottom:1196.185050px;}
.y2a6{bottom:1196.459700px;}
.y195{bottom:1197.584700px;}
.y2d5{bottom:1197.600000px;}
.h14{height:43.769004px;}
.h15{height:43.798359px;}
.h8{height:44.086500px;}
.h18{height:48.629883px;}
.hc{height:54.902344px;}
.h16{height:55.278809px;}
.hb{height:56.337891px;}
.hf{height:56.491491px;}
.he{height:56.718750px;}
.h13{height:57.805840px;}
.h17{height:59.329102px;}
.h6{height:60.392578px;}
.h7{height:61.971680px;}
.h9{height:65.882812px;}
.ha{height:67.605469px;}
.h5{height:68.062500px;}
.h2{height:72.314700px;}
.h12{height:90.750000px;}
.h11{height:98.824219px;}
.hd{height:99.902344px;}
.h3{height:101.408203px;}
.h4{height:136.125000px;}
.h10{height:153.140625px;}
.h0{height:1262.835022px;}
.h1{height:1263.000000px;}
.w3{width:892.500000px;}
.w2{width:892.829956px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:53.574750px;}
.x1{left:56.338500px;}
.x48{left:118.980600px;}
.x47{left:135.450000px;}
.x32{left:139.320000px;}
.x3b{left:148.230000px;}
.x11{left:156.047250px;}
.x3a{left:162.540000px;}
.x44{left:163.710000px;}
.x35{left:166.770000px;}
.x1b{left:167.809350px;}
.x25{left:170.728500px;}
.x30{left:172.440000px;}
.x13{left:176.139450px;}
.x23{left:177.289200px;}
.x8{left:181.505100px;}
.x3{left:183.073050px;}
.x14{left:184.464450px;}
.x38{left:185.940000px;}
.x34{left:188.640000px;}
.x36{left:191.700000px;}
.xa{left:196.098600px;}
.xc{left:198.195600px;}
.x37{left:202.140000px;}
.x3c{left:205.740000px;}
.x7{left:209.720100px;}
.x3d{left:213.210000px;}
.x39{left:216.090000px;}
.x33{left:221.220000px;}
.xe{left:228.113100px;}
.xd{left:230.371350px;}
.x12{left:236.129250px;}
.x3e{left:240.931050px;}
.x41{left:243.990000px;}
.x9{left:245.600400px;}
.x43{left:250.560000px;}
.x31{left:256.500000px;}
.x2c{left:259.020150px;}
.x17{left:270.064350px;}
.x40{left:271.170000px;}
.x19{left:275.899350px;}
.x1c{left:280.489350px;}
.xb{left:282.015750px;}
.x1d{left:285.904350px;}
.x15{left:288.804450px;}
.x18{left:292.999350px;}
.x1e{left:295.489350px;}
.x1a{left:296.749350px;}
.x6{left:304.229400px;}
.x45{left:313.830900px;}
.x24{left:316.939200px;}
.x3f{left:319.410450px;}
.x2{left:328.117050px;}
.x28{left:332.421450px;}
.x2b{left:342.990000px;}
.x49{left:361.350150px;}
.x26{left:364.645500px;}
.x2a{left:367.650000px;}
.x2d{left:377.280000px;}
.x2f{left:383.490000px;}
.x29{left:385.930800px;}
.x16{left:397.269450px;}
.x27{left:416.418000px;}
.x46{left:428.040450px;}
.x2e{left:446.490450px;}
.x4{left:458.662050px;}
.x10{left:461.130750px;}
.x5{left:583.193250px;}
.x22{left:587.539200px;}
.x42{left:600.120000px;}
.x1f{left:610.069350px;}
.x4a{left:667.980900px;}
.x20{left:712.714350px;}
.x21{left:744.394200px;}
@media print{
.v3{vertical-align:-21.312000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.779733pt;}
.v1{vertical-align:8.000000pt;}
.v5{vertical-align:17.896533pt;}
.v6{vertical-align:19.536000pt;}
.v4{vertical-align:40.000000pt;}
.ls8{letter-spacing:-3.946667pt;}
.ls3{letter-spacing:-3.520000pt;}
.ls2e{letter-spacing:-0.184800pt;}
.ls25{letter-spacing:-0.090848pt;}
.ls1c{letter-spacing:-0.087840pt;}
.ls26{letter-spacing:-0.053440pt;}
.ls2a{letter-spacing:-0.042752pt;}
.ls2b{letter-spacing:-0.037408pt;}
.ls29{letter-spacing:-0.032064pt;}
.ls1d{letter-spacing:-0.029280pt;}
.ls22{letter-spacing:-0.023424pt;}
.ls2c{letter-spacing:-0.021376pt;}
.ls1f{letter-spacing:-0.017568pt;}
.ls27{letter-spacing:-0.016032pt;}
.ls1e{letter-spacing:-0.011712pt;}
.ls28{letter-spacing:-0.010688pt;}
.ls21{letter-spacing:-0.005856pt;}
.ls2d{letter-spacing:-0.005600pt;}
.ls24{letter-spacing:-0.005344pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.004907pt;}
.ls30{letter-spacing:0.005600pt;}
.lsf{letter-spacing:0.005856pt;}
.ls17{letter-spacing:0.010688pt;}
.ls2f{letter-spacing:0.011200pt;}
.ls19{letter-spacing:0.016800pt;}
.lsd{letter-spacing:0.017568pt;}
.lsb{letter-spacing:0.023424pt;}
.ls15{letter-spacing:0.026720pt;}
.ls1b{letter-spacing:0.028000pt;}
.ls13{letter-spacing:0.029280pt;}
.lsa{letter-spacing:0.035136pt;}
.ls9{letter-spacing:0.040992pt;}
.ls18{letter-spacing:0.042752pt;}
.ls10{letter-spacing:0.046848pt;}
.lse{letter-spacing:0.052704pt;}
.ls14{letter-spacing:0.058560pt;}
.ls16{letter-spacing:0.058784pt;}
.ls12{letter-spacing:0.064416pt;}
.ls1a{letter-spacing:0.067200pt;}
.ls11{letter-spacing:0.070272pt;}
.ls23{letter-spacing:0.081984pt;}
.ls20{letter-spacing:0.169824pt;}
.ls1{letter-spacing:0.180331pt;}
.ls4{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.404429pt;}
.ls0{letter-spacing:0.586667pt;}
.ls5{letter-spacing:0.640000pt;}
.ls6{letter-spacing:200.480000pt;}
.ws1{word-spacing:-17.792000pt;}
.wsa4{word-spacing:-14.915104pt;}
.ws99{word-spacing:-14.826667pt;}
.ws0{word-spacing:-14.272000pt;}
.wsd2{word-spacing:-14.144000pt;}
.ws67{word-spacing:-11.968000pt;}
.wsa3{word-spacing:-10.880000pt;}
.ws35{word-spacing:-10.176000pt;}
.ws48{word-spacing:-9.664000pt;}
.ws57{word-spacing:-8.896000pt;}
.ws70{word-spacing:-8.320000pt;}
.wsc1{word-spacing:-8.000000pt;}
.ws56{word-spacing:-7.616000pt;}
.ws4d{word-spacing:-7.360000pt;}
.wscf{word-spacing:-7.104000pt;}
.wscd{word-spacing:-7.040000pt;}
.ws3c{word-spacing:-6.976000pt;}
.ws58{word-spacing:-6.528000pt;}
.ws72{word-spacing:-6.400000pt;}
.ws9{word-spacing:-5.184000pt;}
.ws44{word-spacing:-4.800000pt;}
.ws6d{word-spacing:-4.672000pt;}
.ws64{word-spacing:-4.608000pt;}
.ws4f{word-spacing:-4.352000pt;}
.wsd0{word-spacing:-3.584000pt;}
.ws3b{word-spacing:-3.520000pt;}
.wsc6{word-spacing:-3.392000pt;}
.ws15{word-spacing:-3.264000pt;}
.ws1c{word-spacing:-3.200000pt;}
.ws84{word-spacing:-2.944000pt;}
.wsa2{word-spacing:-2.933333pt;}
.ws43{word-spacing:-2.752000pt;}
.ws26{word-spacing:-2.432000pt;}
.wsd1{word-spacing:-2.368000pt;}
.ws80{word-spacing:-2.304000pt;}
.ws59{word-spacing:-2.240000pt;}
.ws85{word-spacing:-1.792000pt;}
.ws90{word-spacing:-1.664000pt;}
.ws7b{word-spacing:-1.344000pt;}
.ws6f{word-spacing:-1.280000pt;}
.ws37{word-spacing:-0.960000pt;}
.ws1a{word-spacing:-0.832000pt;}
.ws5f{word-spacing:-0.640000pt;}
.ws3{word-spacing:-0.586667pt;}
.wsc2{word-spacing:-0.576000pt;}
.ws94{word-spacing:-0.320000pt;}
.ws50{word-spacing:-0.192000pt;}
.ws2{word-spacing:0.000000pt;}
.wsb9{word-spacing:0.005856pt;}
.wsbc{word-spacing:0.016800pt;}
.wsb8{word-spacing:0.017568pt;}
.wsaf{word-spacing:0.023424pt;}
.wsb5{word-spacing:0.029280pt;}
.wsae{word-spacing:0.035136pt;}
.wsb3{word-spacing:0.040992pt;}
.wsa6{word-spacing:0.046848pt;}
.wsa8{word-spacing:0.052704pt;}
.wsbe{word-spacing:0.056000pt;}
.wsb7{word-spacing:0.058560pt;}
.wsa9{word-spacing:0.064416pt;}
.wsbb{word-spacing:0.067200pt;}
.wsac{word-spacing:0.070272pt;}
.wsbf{word-spacing:0.072800pt;}
.wsb0{word-spacing:0.081984pt;}
.wsa7{word-spacing:0.087840pt;}
.wsbd{word-spacing:0.089600pt;}
.wsb2{word-spacing:0.093696pt;}
.wsaa{word-spacing:0.099552pt;}
.wsab{word-spacing:0.105408pt;}
.wsb6{word-spacing:0.111264pt;}
.ws8a{word-spacing:0.128000pt;}
.ws2b{word-spacing:0.320000pt;}
.wsb4{word-spacing:0.333792pt;}
.wsb1{word-spacing:0.357216pt;}
.wsba{word-spacing:0.398208pt;}
.wsad{word-spacing:0.415776pt;}
.wsa5{word-spacing:0.433344pt;}
.ws55{word-spacing:0.448000pt;}
.ws46{word-spacing:0.512000pt;}
.ws6c{word-spacing:0.640000pt;}
.ws32{word-spacing:0.768000pt;}
.ws3d{word-spacing:0.832000pt;}
.ws51{word-spacing:1.088000pt;}
.ws93{word-spacing:1.280000pt;}
.ws4a{word-spacing:1.344000pt;}
.ws74{word-spacing:1.408000pt;}
.ws96{word-spacing:1.472000pt;}
.ws65{word-spacing:1.536000pt;}
.wsa0{word-spacing:1.600000pt;}
.ws83{word-spacing:1.664000pt;}
.ws36{word-spacing:1.728000pt;}
.ws97{word-spacing:1.856000pt;}
.wsc0{word-spacing:1.920000pt;}
.ws76{word-spacing:1.984000pt;}
.wsc3{word-spacing:2.048000pt;}
.wsc7{word-spacing:2.176000pt;}
.ws77{word-spacing:2.560000pt;}
.wsc5{word-spacing:3.008000pt;}
.wscb{word-spacing:3.072000pt;}
.ws42{word-spacing:3.136000pt;}
.ws30{word-spacing:3.328000pt;}
.ws8b{word-spacing:3.392000pt;}
.wsce{word-spacing:3.520000pt;}
.ws45{word-spacing:3.712000pt;}
.ws66{word-spacing:3.776000pt;}
.ws5d{word-spacing:3.840000pt;}
.ws7e{word-spacing:4.032000pt;}
.ws88{word-spacing:4.096000pt;}
.ws38{word-spacing:4.160000pt;}
.ws95{word-spacing:4.224000pt;}
.ws8{word-spacing:4.352000pt;}
.ws41{word-spacing:4.480000pt;}
.ws27{word-spacing:4.544000pt;}
.ws3e{word-spacing:4.736000pt;}
.ws71{word-spacing:4.800000pt;}
.ws7c{word-spacing:4.864000pt;}
.ws75{word-spacing:4.928000pt;}
.ws69{word-spacing:4.992000pt;}
.ws91{word-spacing:5.056000pt;}
.wsc4{word-spacing:5.184000pt;}
.ws8f{word-spacing:5.312000pt;}
.ws54{word-spacing:5.632000pt;}
.wsc8{word-spacing:5.760000pt;}
.wsa{word-spacing:5.824000pt;}
.ws2e{word-spacing:5.888000pt;}
.ws5{word-spacing:6.080000pt;}
.ws24{word-spacing:6.272000pt;}
.ws4b{word-spacing:6.464000pt;}
.ws7d{word-spacing:6.592000pt;}
.ws19{word-spacing:6.848000pt;}
.wsa1{word-spacing:6.912000pt;}
.ws47{word-spacing:6.976000pt;}
.ws92{word-spacing:7.232000pt;}
.ws2c{word-spacing:7.296000pt;}
.ws17{word-spacing:7.360000pt;}
.ws7a{word-spacing:7.488000pt;}
.wsc{word-spacing:7.552000pt;}
.ws14{word-spacing:7.616000pt;}
.ws2f{word-spacing:7.680000pt;}
.ws4{word-spacing:7.744000pt;}
.ws73{word-spacing:7.872000pt;}
.ws31{word-spacing:8.128000pt;}
.ws3f{word-spacing:8.256000pt;}
.ws2a{word-spacing:8.384000pt;}
.ws4e{word-spacing:8.448000pt;}
.ws5a{word-spacing:8.576000pt;}
.ws28{word-spacing:8.896000pt;}
.ws87{word-spacing:9.024000pt;}
.ws16{word-spacing:9.152000pt;}
.ws98{word-spacing:9.216000pt;}
.ws62{word-spacing:9.344000pt;}
.ws79{word-spacing:9.792000pt;}
.ws12{word-spacing:9.920000pt;}
.ws81{word-spacing:10.176000pt;}
.ws6b{word-spacing:10.432000pt;}
.ws68{word-spacing:10.560000pt;}
.ws1e{word-spacing:10.688000pt;}
.ws11{word-spacing:11.328000pt;}
.ws29{word-spacing:11.392000pt;}
.ws7{word-spacing:11.648000pt;}
.ws7f{word-spacing:11.712000pt;}
.ws9f{word-spacing:11.968000pt;}
.ws78{word-spacing:12.480000pt;}
.ws49{word-spacing:12.608000pt;}
.ws86{word-spacing:12.672000pt;}
.ws4c{word-spacing:13.120000pt;}
.ws25{word-spacing:13.376000pt;}
.ws89{word-spacing:13.440000pt;}
.ws53{word-spacing:13.504000pt;}
.ws52{word-spacing:14.208000pt;}
.ws5c{word-spacing:14.400000pt;}
.ws1d{word-spacing:14.528000pt;}
.ws9c{word-spacing:16.192000pt;}
.ws33{word-spacing:16.384000pt;}
.ws1b{word-spacing:16.832000pt;}
.ws9b{word-spacing:17.280000pt;}
.ws5e{word-spacing:17.728000pt;}
.ws82{word-spacing:17.792000pt;}
.ws6a{word-spacing:17.984000pt;}
.ws5b{word-spacing:18.112000pt;}
.wsd{word-spacing:18.176000pt;}
.ws34{word-spacing:18.432000pt;}
.ws9e{word-spacing:19.072000pt;}
.ws40{word-spacing:19.328000pt;}
.ws6e{word-spacing:19.392000pt;}
.ws2d{word-spacing:19.776000pt;}
.ws60{word-spacing:20.160000pt;}
.ws39{word-spacing:20.352000pt;}
.ws22{word-spacing:21.120000pt;}
.wsca{word-spacing:21.568000pt;}
.ws20{word-spacing:21.824000pt;}
.wse{word-spacing:22.272000pt;}
.wscc{word-spacing:22.912000pt;}
.ws13{word-spacing:23.616000pt;}
.ws61{word-spacing:24.768000pt;}
.wsc9{word-spacing:24.896000pt;}
.ws18{word-spacing:25.344000pt;}
.ws3a{word-spacing:26.688000pt;}
.ws63{word-spacing:27.200000pt;}
.ws1f{word-spacing:28.864000pt;}
.ws21{word-spacing:31.744000pt;}
.wsf{word-spacing:32.512000pt;}
.ws10{word-spacing:33.408000pt;}
.ws9d{word-spacing:36.032000pt;}
.ws6{word-spacing:40.576000pt;}
.ws23{word-spacing:49.792000pt;}
.wsb{word-spacing:84.928000pt;}
.ws8c{word-spacing:156.053333pt;}
.ws8d{word-spacing:236.106667pt;}
.ws8e{word-spacing:292.357333pt;}
.ws9a{word-spacing:602.400000pt;}
._34{margin-left:-9.612800pt;}
._1b{margin-left:-8.326400pt;}
._4{margin-left:-7.122667pt;}
._22{margin-left:-6.233600pt;}
._3{margin-left:-5.260800pt;}
._c{margin-left:-4.166400pt;}
._16{margin-left:-2.867200pt;}
._15{margin-left:-1.260800pt;}
._5{width:1.320533pt;}
._9{width:2.451200pt;}
._2{width:3.526400pt;}
._1a{width:4.512000pt;}
._8{width:5.849600pt;}
._1e{width:6.770667pt;}
._6{width:7.705600pt;}
._17{width:8.608000pt;}
._19{width:9.747200pt;}
._d{width:10.656000pt;}
._18{width:11.705600pt;}
._b{width:13.024000pt;}
._a{width:13.984000pt;}
._12{width:15.404800pt;}
._7{width:16.588800pt;}
._3a{width:17.541333pt;}
._20{width:19.020800pt;}
._33{width:19.993600pt;}
._e{width:20.902400pt;}
._11{width:21.926400pt;}
._21{width:24.672533pt;}
._37{width:25.956267pt;}
._1d{width:27.417067pt;}
._1c{width:28.364800pt;}
._3b{width:34.138667pt;}
._13{width:47.616000pt;}
._f{width:48.716267pt;}
._10{width:49.804267pt;}
._1f{width:55.808000pt;}
._35{width:64.345640pt;}
._36{width:68.157491pt;}
._31{width:78.886933pt;}
._2b{width:98.920533pt;}
._39{width:102.981333pt;}
._38{width:108.816000pt;}
._32{width:121.126400pt;}
._2f{width:138.400000pt;}
._30{width:163.680533pt;}
._2c{width:204.859733pt;}
._26{width:225.706667pt;}
._23{width:273.653333pt;}
._24{width:287.680000pt;}
._25{width:289.653333pt;}
._28{width:307.133867pt;}
._2a{width:371.253333pt;}
._2e{width:388.960000pt;}
._14{width:395.972800pt;}
._1{width:397.722667pt;}
._2d{width:403.786667pt;}
._29{width:448.266667pt;}
._27{width:463.093333pt;}
._0{width:1242.418667pt;}
.fs6{font-size:31.093333pt;}
.fsc{font-size:34.202667pt;}
.fs5{font-size:37.312000pt;}
.fs1{font-size:53.333333pt;}
.fsa{font-size:53.440000pt;}
.fsb{font-size:56.000000pt;}
.fs9{font-size:58.560000pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.fs7{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:17.758533pt;}
.y8f{bottom:49.400133pt;}
.y2d4{bottom:49.825200pt;}
.y257{bottom:50.622667pt;}
.y1bf{bottom:52.319600pt;}
.y22{bottom:52.587867pt;}
.y194{bottom:55.692667pt;}
.y2a5{bottom:57.102400pt;}
.y67{bottom:57.271600pt;}
.yd3{bottom:57.543867pt;}
.y40{bottom:59.051867pt;}
.y103{bottom:61.848133pt;}
.y16f{bottom:63.470933pt;}
.yfa{bottom:67.160133pt;}
.y2d3{bottom:67.425200pt;}
.y1be{bottom:68.319600pt;}
.y1cc{bottom:69.232000pt;}
.y193{bottom:71.692667pt;}
.y2a4{bottom:74.702400pt;}
.y8e{bottom:74.728133pt;}
.y301{bottom:75.160533pt;}
.y120{bottom:76.295867pt;}
.y21{bottom:76.587867pt;}
.yae{bottom:77.096000pt;}
.y256{bottom:77.381600pt;}
.y66{bottom:82.599600pt;}
.yd2{bottom:82.871867pt;}
.y3f{bottom:83.051867pt;}
.y20a{bottom:84.029867pt;}
.y2d2{bottom:85.025200pt;}
.y192{bottom:87.692667pt;}
.y13c{bottom:87.908133pt;}
.y16e{bottom:88.798933pt;}
.y32f{bottom:89.198133pt;}
.y2a3{bottom:92.302400pt;}
.yf9{bottom:92.488133pt;}
.y102{bottom:93.400133pt;}
.y255{bottom:94.981600pt;}
.y1cb{bottom:98.032000pt;}
.y300{bottom:98.717733pt;}
.y209{bottom:99.869467pt;}
.y8d{bottom:100.056133pt;}
.y11f{bottom:100.295867pt;}
.y20{bottom:100.587867pt;}
.y283{bottom:100.744000pt;}
.yad{bottom:101.096000pt;}
.y2d1{bottom:102.625200pt;}
.y191{bottom:103.692667pt;}
.y1bd{bottom:106.999600pt;}
.y3e{bottom:107.051867pt;}
.y65{bottom:107.927600pt;}
.yd1{bottom:108.199867pt;}
.y13b{bottom:108.574800pt;}
.y138{bottom:109.241467pt;}
.y2a2{bottom:109.902400pt;}
.y254{bottom:112.581600pt;}
.y16d{bottom:114.126933pt;}
.y208{bottom:115.709067pt;}
.yf8{bottom:117.816133pt;}
.y101{bottom:118.728133pt;}
.y2d0{bottom:120.225200pt;}
.y1bc{bottom:122.999600pt;}
.y32e{bottom:123.518667pt;}
.y1f{bottom:124.587867pt;}
.yac{bottom:125.096000pt;}
.y8c{bottom:125.384133pt;}
.y282{bottom:127.502400pt;}
.y136{bottom:129.241467pt;}
.y253{bottom:130.181600pt;}
.y3d{bottom:131.051867pt;}
.y2a1{bottom:131.281867pt;}
.y207{bottom:131.628533pt;}
.y2ff{bottom:133.037333pt;}
.y64{bottom:133.255600pt;}
.yd0{bottom:133.527867pt;}
.y11e{bottom:135.639867pt;}
.y2cf{bottom:137.825200pt;}
.y1bb{bottom:138.999600pt;}
.y16c{bottom:139.454933pt;}
.y190{bottom:142.338533pt;}
.yf7{bottom:143.144133pt;}
.y100{bottom:144.056133pt;}
.y281{bottom:145.102400pt;}
.y2a0{bottom:147.281867pt;}
.y206{bottom:147.468133pt;}
.y252{bottom:147.781600pt;}
.y1e{bottom:148.587867pt;}
.y137{bottom:149.241467pt;}
.y13a{bottom:149.908133pt;}
.y32d{bottom:150.277200pt;}
.y8b{bottom:150.712133pt;}
.y3c{bottom:155.051867pt;}
.y18f{bottom:158.338533pt;}
.y63{bottom:158.583600pt;}
.ycf{bottom:158.855867pt;}
.y2ce{bottom:159.204800pt;}
.y11d{bottom:159.639867pt;}
.y2fe{bottom:159.796800pt;}
.yab{bottom:160.440000pt;}
.y205{bottom:163.387467pt;}
.y16b{bottom:164.782933pt;}
.y251{bottom:165.381600pt;}
.y280{bottom:166.482000pt;}
.y32c{bottom:167.877200pt;}
.yf6{bottom:168.472133pt;}
.yff{bottom:169.384133pt;}
.y139{bottom:170.574800pt;}
.y29f{bottom:170.839067pt;}
.y1d{bottom:172.587867pt;}
.y2cd{bottom:175.204800pt;}
.y8a{bottom:176.040133pt;}
.y2fd{bottom:177.396800pt;}
.y1ba{bottom:177.679600pt;}
.y3b{bottom:179.051867pt;}
.y204{bottom:179.227067pt;}
.y27f{bottom:182.482000pt;}
.y250{bottom:182.981600pt;}
.y62{bottom:183.911600pt;}
.y32b{bottom:185.477200pt;}
.y16a{bottom:190.110933pt;}
.y11c{bottom:191.191867pt;}
.y135{bottom:191.241467pt;}
.yce{bottom:191.751867pt;}
.yaa{bottom:191.992000pt;}
.y1b9{bottom:193.679600pt;}
.yf5{bottom:193.800133pt;}
.yfe{bottom:194.712133pt;}
.y2fc{bottom:194.996800pt;}
.y203{bottom:196.107200pt;}
.y1c{bottom:196.587867pt;}
.y18e{bottom:197.018533pt;}
.y2cc{bottom:198.761867pt;}
.y24f{bottom:200.581600pt;}
.y89{bottom:201.368133pt;}
.y32a{bottom:203.077200pt;}
.y29e{bottom:205.158667pt;}
.y27e{bottom:206.039067pt;}
.y61{bottom:209.239600pt;}
.y1b8{bottom:209.679600pt;}
.ycd{bottom:210.951867pt;}
.y18d{bottom:213.018533pt;}
.y202{bottom:213.947067pt;}
.y169{bottom:215.438933pt;}
.y2fb{bottom:216.376267pt;}
.ya9{bottom:217.320000pt;}
.y24e{bottom:218.181600pt;}
.yf4{bottom:219.128133pt;}
.yfd{bottom:220.040133pt;}
.y11b{bottom:220.311867pt;}
.y1b{bottom:220.587867pt;}
.y329{bottom:220.677200pt;}
.y88{bottom:226.696133pt;}
.y3a{bottom:227.051867pt;}
.y18c{bottom:229.018533pt;}
.y201{bottom:229.307067pt;}
.y29d{bottom:231.918133pt;}
.y2fa{bottom:232.376267pt;}
.y2cb{bottom:233.081333pt;}
.y60{bottom:234.567733pt;}
.y24d{bottom:235.781600pt;}
.y328{bottom:238.277200pt;}
.y27d{bottom:240.358667pt;}
.y168{bottom:240.766933pt;}
.ya8{bottom:242.648000pt;}
.yf3{bottom:244.456133pt;}
.y1a{bottom:244.587867pt;}
.y200{bottom:244.667067pt;}
.y1b7{bottom:248.359600pt;}
.y29c{bottom:249.518133pt;}
.y39{bottom:251.051867pt;}
.y11a{bottom:251.863867pt;}
.y87{bottom:252.024133pt;}
.yfc{bottom:252.936133pt;}
.y24c{bottom:253.381600pt;}
.y327{bottom:255.877200pt;}
.y2f9{bottom:255.933467pt;}
.y2ca{bottom:259.840933pt;}
.y5f{bottom:259.895733pt;}
.y1ff{bottom:259.947067pt;}
.ycc{bottom:261.495867pt;}
.y1b6{bottom:264.359600pt;}
.y167{bottom:266.094933pt;}
.y27c{bottom:267.118133pt;}
.y18b{bottom:267.698533pt;}
.ya7{bottom:267.976000pt;}
.y19{bottom:268.587867pt;}
.yf2{bottom:269.784133pt;}
.y29b{bottom:270.897600pt;}
.yfb{bottom:272.136133pt;}
.y326{bottom:273.477200pt;}
.y24b{bottom:274.761200pt;}
.y38{bottom:275.051867pt;}
.y1fe{bottom:275.307200pt;}
.y86{bottom:277.352133pt;}
.y2c9{bottom:277.440933pt;}
.y1b5{bottom:280.359600pt;}
.y18a{bottom:283.698533pt;}
.y27b{bottom:284.718133pt;}
.y5e{bottom:285.223733pt;}
.ycb{bottom:286.823867pt;}
.y29a{bottom:286.897600pt;}
.y2f8{bottom:290.253333pt;}
.y1fd{bottom:290.587067pt;}
.y24a{bottom:290.761200pt;}
.y325{bottom:291.077200pt;}
.y166{bottom:291.422933pt;}
.y227{bottom:292.076000pt;}
.y18{bottom:292.587867pt;}
.ya6{bottom:293.304000pt;}
.y2c8{bottom:295.040933pt;}
.yf1{bottom:295.112133pt;}
.y37{bottom:299.051867pt;}
.y85{bottom:302.680133pt;}
.y119{bottom:304.983867pt;}
.y1fc{bottom:305.947200pt;}
.y27a{bottom:306.097600pt;}
.y299{bottom:310.454800pt;}
.y5d{bottom:310.551733pt;}
.yca{bottom:312.151867pt;}
.y324{bottom:312.456667pt;}
.y2c7{bottom:312.640933pt;}
.y249{bottom:314.314667pt;}
.y17{bottom:316.587867pt;}
.y165{bottom:316.750933pt;}
.y2f7{bottom:317.012533pt;}
.ya5{bottom:318.632000pt;}
.y1b4{bottom:319.039600pt;}
.yf0{bottom:320.440133pt;}
.y1fb{bottom:321.307200pt;}
.y279{bottom:322.097600pt;}
.y189{bottom:322.378533pt;}
.y36{bottom:323.051867pt;}
.y84{bottom:328.008133pt;}
.y323{bottom:328.456667pt;}
.y2c6{bottom:334.020533pt;}
.y2f6{bottom:334.612533pt;}
.y1b3{bottom:335.039600pt;}
.y5c{bottom:335.879733pt;}
.y1fa{bottom:336.587067pt;}
.yc9{bottom:337.479867pt;}
.y278{bottom:338.097600pt;}
.y188{bottom:338.378533pt;}
.y118{bottom:340.327733pt;}
.y16{bottom:340.587867pt;}
.y164{bottom:342.078933pt;}
.ya4{bottom:343.960000pt;}
.y298{bottom:344.774667pt;}
.y248{bottom:344.858667pt;}
.yef{bottom:345.768133pt;}
.y35{bottom:347.051867pt;}
.y2c5{bottom:350.020533pt;}
.y1b2{bottom:351.039600pt;}
.y1f9{bottom:351.947067pt;}
.y322{bottom:352.013867pt;}
.y2f5{bottom:352.212533pt;}
.y83{bottom:353.336133pt;}
.y134{bottom:353.975733pt;}
.y187{bottom:354.378533pt;}
.y5b{bottom:361.207733pt;}
.y277{bottom:361.654800pt;}
.yc8{bottom:362.807867pt;}
.y15{bottom:364.587867pt;}
.y1b1{bottom:367.039600pt;}
.y1f8{bottom:367.307067pt;}
.y163{bottom:367.406933pt;}
.y226{bottom:368.076000pt;}
.ya3{bottom:369.288000pt;}
.y2f4{bottom:369.812533pt;}
.y34{bottom:371.051867pt;}
.yee{bottom:371.096133pt;}
.y297{bottom:371.533733pt;}
.y247{bottom:371.617733pt;}
.y2c4{bottom:373.577600pt;}
.y117{bottom:375.671733pt;}
.y82{bottom:378.664133pt;}
.y133{bottom:379.303733pt;}
.y1f7{bottom:382.587067pt;}
.y321{bottom:386.333333pt;}
.y5a{bottom:386.535733pt;}
.yc7{bottom:388.135867pt;}
.y14{bottom:388.587867pt;}
.y296{bottom:389.133733pt;}
.y246{bottom:389.217867pt;}
.y2f3{bottom:391.192000pt;}
.y186{bottom:393.058533pt;}
.y225{bottom:393.404000pt;}
.ya2{bottom:394.616000pt;}
.y33{bottom:395.051867pt;}
.y276{bottom:395.974667pt;}
.yed{bottom:396.424133pt;}
.y1f6{bottom:397.947067pt;}
.y81{bottom:403.992133pt;}
.y162{bottom:404.078933pt;}
.y1b0{bottom:405.719600pt;}
.y295{bottom:406.733733pt;}
.y245{bottom:406.817867pt;}
.y2c3{bottom:407.897333pt;}
.y132{bottom:408.423733pt;}
.y185{bottom:409.058533pt;}
.y116{bottom:411.015733pt;}
.y59{bottom:411.863733pt;}
.y13{bottom:412.587867pt;}
.y320{bottom:413.092933pt;}
.y1f5{bottom:413.307067pt;}
.yc6{bottom:413.463867pt;}
.y2f2{bottom:414.749200pt;}
.y224{bottom:418.732000pt;}
.y32{bottom:419.051867pt;}
.ya1{bottom:419.944000pt;}
.y1af{bottom:421.719600pt;}
.yec{bottom:421.752133pt;}
.y275{bottom:422.733867pt;}
.y294{bottom:424.333733pt;}
.y244{bottom:424.417867pt;}
.y184{bottom:425.058533pt;}
.y80{bottom:429.320133pt;}
.y131{bottom:432.423733pt;}
.y1f4{bottom:432.747333pt;}
.y31f{bottom:434.472400pt;}
.y2c2{bottom:434.656667pt;}
.y12{bottom:436.587867pt;}
.y58{bottom:437.191733pt;}
.y1ae{bottom:437.719600pt;}
.yc5{bottom:438.791867pt;}
.y274{bottom:440.333867pt;}
.y293{bottom:441.933733pt;}
.y243{bottom:442.017867pt;}
.y31{bottom:443.051867pt;}
.y223{bottom:444.060000pt;}
.ya0{bottom:445.272000pt;}
.y115{bottom:446.359733pt;}
.yeb{bottom:447.080133pt;}
.y1f3{bottom:448.107333pt;}
.y2f1{bottom:449.069333pt;}
.y31e{bottom:450.472400pt;}
.y2c1{bottom:452.256667pt;}
.y7f{bottom:454.648133pt;}
.y273{bottom:457.933867pt;}
.y292{bottom:459.533867pt;}
.y11{bottom:460.587867pt;}
.y57{bottom:462.519733pt;}
.y242{bottom:463.397333pt;}
.y183{bottom:463.738667pt;}
.yc4{bottom:464.119867pt;}
.y30{bottom:467.051867pt;}
.y130{bottom:467.767733pt;}
.y1f2{bottom:469.307067pt;}
.y222{bottom:469.388000pt;}
.y9f{bottom:470.600000pt;}
.yea{bottom:472.408133pt;}
.y2c0{bottom:473.636267pt;}
.y31d{bottom:474.029600pt;}
.y272{bottom:475.533867pt;}
.y1ad{bottom:476.399600pt;}
.y291{bottom:477.133867pt;}
.y2f0{bottom:477.948267pt;}
.y161{bottom:478.094933pt;}
.y241{bottom:479.397333pt;}
.y182{bottom:479.738667pt;}
.y7e{bottom:479.976133pt;}
.y114{bottom:481.703733pt;}
.y1f1{bottom:485.947067pt;}
.y56{bottom:487.847733pt;}
.yc3{bottom:489.447867pt;}
.y2bf{bottom:489.636267pt;}
.y2f{bottom:491.051867pt;}
.y12f{bottom:491.767733pt;}
.y1ac{bottom:492.399600pt;}
.y271{bottom:493.133867pt;}
.y221{bottom:494.716000pt;}
.y290{bottom:494.733867pt;}
.y240{bottom:495.397333pt;}
.y2ef{bottom:495.548267pt;}
.y181{bottom:495.738667pt;}
.y9e{bottom:495.928000pt;}
.ye9{bottom:497.736133pt;}
.y1f0{bottom:502.507067pt;}
.y160{bottom:503.422933pt;}
.y7d{bottom:505.304133pt;}
.y31c{bottom:508.349333pt;}
.y1ab{bottom:508.399600pt;}
.y28f{bottom:512.333867pt;}
.y55{bottom:513.175733pt;}
.y2be{bottom:513.193333pt;}
.y270{bottom:514.513333pt;}
.yc2{bottom:514.775867pt;}
.y2e{bottom:515.051867pt;}
.y2ee{bottom:516.888267pt;}
.y113{bottom:517.047733pt;}
.y23f{bottom:518.950933pt;}
.y1ef{bottom:519.147067pt;}
.y220{bottom:520.044133pt;}
.y9d{bottom:521.256000pt;}
.ye8{bottom:523.064133pt;}
.y12e{bottom:527.111733pt;}
.y15f{bottom:528.750933pt;}
.y7c{bottom:530.632267pt;}
.y1c9{bottom:531.079600pt;}
.y28e{bottom:533.713333pt;}
.y180{bottom:534.418667pt;}
.y31b{bottom:535.108667pt;}
.y1ee{bottom:535.787067pt;}
.y26f{bottom:538.070533pt;}
.y2ed{bottom:538.228267pt;}
.y54{bottom:538.503733pt;}
.y2d{bottom:539.051867pt;}
.yc1{bottom:540.103867pt;}
.y10{bottom:541.793067pt;}
.y21f{bottom:545.372133pt;}
.y9c{bottom:546.584000pt;}
.y1aa{bottom:547.079600pt;}
.y2bd{bottom:547.513333pt;}
.ye7{bottom:548.392133pt;}
.y23e{bottom:549.494667pt;}
.y28d{bottom:549.713333pt;}
.y17f{bottom:550.418667pt;}
.y12d{bottom:551.111733pt;}
.y112{bottom:552.391733pt;}
.y1ed{bottom:552.427067pt;}
.y31a{bottom:552.708667pt;}
.y15e{bottom:554.078933pt;}
.y2ec{bottom:555.828267pt;}
.y7b{bottom:555.960267pt;}
.yf{bottom:561.572667pt;}
.y2c{bottom:563.051867pt;}
.y1c8{bottom:563.079600pt;}
.yc0{bottom:565.431867pt;}
.y1ec{bottom:569.067067pt;}
.y319{bottom:570.308667pt;}
.y21e{bottom:570.700133pt;}
.y9b{bottom:571.912000pt;}
.y26e{bottom:572.390667pt;}
.y28c{bottom:573.270533pt;}
.ye6{bottom:573.720133pt;}
.y2bc{bottom:574.272400pt;}
.y53{bottom:575.175733pt;}
.y23d{bottom:576.254000pt;}
.y2eb{bottom:577.207867pt;}
.y15d{bottom:579.406933pt;}
.y7a{bottom:581.288267pt;}
.y1ca{bottom:582.448800pt;}
.y1eb{bottom:585.707067pt;}
.y1a9{bottom:585.759600pt;}
.y12c{bottom:586.455733pt;}
.y2b{bottom:587.051867pt;}
.y111{bottom:587.735733pt;}
.y318{bottom:587.908667pt;}
.y17e{bottom:589.098667pt;}
.ye{bottom:589.885600pt;}
.ybf{bottom:590.759867pt;}
.y2bb{bottom:591.872400pt;}
.y2ea{bottom:593.207867pt;}
.y23c{bottom:593.854000pt;}
.y21d{bottom:596.028133pt;}
.y9a{bottom:597.240000pt;}
.ye5{bottom:599.048133pt;}
.y26d{bottom:599.145067pt;}
.y1a8{bottom:601.759600pt;}
.y1ea{bottom:602.347067pt;}
.y15c{bottom:604.734933pt;}
.y17d{bottom:605.098667pt;}
.y317{bottom:605.508667pt;}
.y79{bottom:606.616267pt;}
.y28b{bottom:607.590667pt;}
.y12b{bottom:610.455733pt;}
.y2a{bottom:611.051867pt;}
.y23b{bottom:611.454000pt;}
.y2ba{bottom:613.252000pt;}
.yd{bottom:614.993067pt;}
.ybe{bottom:616.087867pt;}
.y26c{bottom:616.745067pt;}
.y2e9{bottom:616.765067pt;}
.y1a7{bottom:617.759600pt;}
.y1e9{bottom:618.907067pt;}
.y21c{bottom:621.356133pt;}
.y99{bottom:622.568000pt;}
.y110{bottom:623.079733pt;}
.ye4{bottom:624.376133pt;}
.y316{bottom:626.888133pt;}
.y23a{bottom:629.054000pt;}
.y2b9{bottom:629.252000pt;}
.y78{bottom:631.944267pt;}
.y26b{bottom:634.345067pt;}
.y28a{bottom:634.349600pt;}
.y29{bottom:635.051867pt;}
.y1e8{bottom:635.547067pt;}
.yc{bottom:637.978000pt;}
.ybd{bottom:641.415867pt;}
.y315{bottom:642.888133pt;}
.y17c{bottom:643.778667pt;}
.y12a{bottom:645.799733pt;}
.y21b{bottom:646.684133pt;}
.y98{bottom:647.896000pt;}
.ye3{bottom:649.704133pt;}
.y239{bottom:650.433600pt;}
.y2e8{bottom:651.085333pt;}
.y289{bottom:651.949600pt;}
.y1e7{bottom:652.187067pt;}
.y2b8{bottom:652.809200pt;}
.y15b{bottom:654.066400pt;}
.y52{bottom:654.519733pt;}
.y26a{bottom:655.729067pt;}
.y1a6{bottom:656.439600pt;}
.y77{bottom:657.272267pt;}
.yb{bottom:657.757467pt;}
.y10f{bottom:658.423733pt;}
.y28{bottom:659.051867pt;}
.y17b{bottom:659.778667pt;}
.y314{bottom:666.445333pt;}
.ybc{bottom:666.743867pt;}
.y1e6{bottom:668.827067pt;}
.y129{bottom:669.799733pt;}
.y15a{bottom:670.066400pt;}
.y21a{bottom:672.012133pt;}
.y1a5{bottom:672.439600pt;}
.y97{bottom:673.224000pt;}
.y269{bottom:673.329067pt;}
.y238{bottom:673.987200pt;}
.ye2{bottom:675.032133pt;}
.y2e7{bottom:677.843867pt;}
.y51{bottom:678.519733pt;}
.y76{bottom:682.600267pt;}
.y27{bottom:683.051867pt;}
.y1e5{bottom:685.467067pt;}
.ya{bottom:686.070267pt;}
.y2b7{bottom:687.129333pt;}
.y1c7{bottom:688.439600pt;}
.y268{bottom:689.329067pt;}
.ybb{bottom:692.071867pt;}
.y10e{bottom:693.767733pt;}
.y128{bottom:693.799733pt;}
.y2e6{bottom:695.443867pt;}
.y219{bottom:697.340133pt;}
.y17a{bottom:698.458667pt;}
.y96{bottom:698.552000pt;}
.ye1{bottom:700.360133pt;}
.y313{bottom:700.765333pt;}
.y159{bottom:701.519733pt;}
.y1e4{bottom:702.107067pt;}
.y50{bottom:702.519733pt;}
.y237{bottom:704.530667pt;}
.y9{bottom:705.849867pt;}
.y26{bottom:707.051867pt;}
.y75{bottom:707.928267pt;}
.y1a4{bottom:711.119600pt;}
.y267{bottom:712.886267pt;}
.y2e5{bottom:713.044000pt;}
.y2b6{bottom:713.888133pt;}
.y179{bottom:714.458667pt;}
.yba{bottom:717.399867pt;}
.y1e3{bottom:718.747067pt;}
.y158{bottom:721.519733pt;}
.y218{bottom:722.668000pt;}
.y95{bottom:723.880000pt;}
.ye0{bottom:725.688133pt;}
.y4f{bottom:726.519733pt;}
.y1a3{bottom:727.119600pt;}
.y312{bottom:727.524267pt;}
.y10d{bottom:729.111733pt;}
.y127{bottom:729.143733pt;}
.y2e4{bottom:730.644000pt;}
.y25{bottom:731.051867pt;}
.y236{bottom:731.283467pt;}
.y74{bottom:733.256133pt;}
.y8{bottom:734.166400pt;}
.y2b5{bottom:735.267733pt;}
.y1e2{bottom:735.307067pt;}
.yb9{bottom:742.727733pt;}
.y1a2{bottom:743.119600pt;}
.y311{bottom:745.124400pt;}
.y157{bottom:745.186400pt;}
.y266{bottom:747.206667pt;}
.y217{bottom:747.996000pt;}
.y153{bottom:748.186400pt;}
.y2e3{bottom:748.244000pt;}
.y235{bottom:748.883600pt;}
.y94{bottom:749.207867pt;}
.y4e{bottom:750.519733pt;}
.ydf{bottom:751.016133pt;}
.y2b4{bottom:751.267733pt;}
.y1e1{bottom:751.947067pt;}
.y178{bottom:753.138667pt;}
.y126{bottom:753.143733pt;}
.y24{bottom:755.051867pt;}
.y152{bottom:758.186400pt;}
.y73{bottom:758.584133pt;}
.y1c6{bottom:759.119600pt;}
.y7{bottom:759.275600pt;}
.y10c{bottom:760.663733pt;}
.y310{bottom:762.724400pt;}
.y156{bottom:765.186400pt;}
.y234{bottom:766.483600pt;}
.yb8{bottom:768.055733pt;}
.y1e0{bottom:768.587067pt;}
.y177{bottom:769.138667pt;}
.y2e2{bottom:769.623600pt;}
.y216{bottom:773.324000pt;}
.y265{bottom:773.965333pt;}
.y4d{bottom:774.519733pt;}
.y93{bottom:774.535867pt;}
.y2b3{bottom:774.824800pt;}
.yde{bottom:776.344133pt;}
.y125{bottom:777.143733pt;}
.y23{bottom:779.051867pt;}
.y6{bottom:779.055067pt;}
.y30f{bottom:780.324400pt;}
.y1a1{bottom:781.799600pt;}
.y72{bottom:783.912133pt;}
.y1df{bottom:785.227067pt;}
.y2e1{bottom:785.623600pt;}
.y10b{bottom:785.991733pt;}
.y233{bottom:787.823600pt;}
.y264{bottom:791.565333pt;}
.y155{bottom:791.853067pt;}
.yb7{bottom:793.383733pt;}
.y1a0{bottom:797.799600pt;}
.y30e{bottom:797.924400pt;}
.y4c{bottom:798.519733pt;}
.y215{bottom:798.652000pt;}
.y92{bottom:799.863867pt;}
.ydd{bottom:801.672000pt;}
.y1de{bottom:801.867067pt;}
.y232{bottom:805.423600pt;}
.y176{bottom:807.818667pt;}
.y2b2{bottom:809.145333pt;}
.y263{bottom:809.165333pt;}
.y2e0{bottom:809.180667pt;}
.y71{bottom:809.240133pt;}
.y154{bottom:811.853067pt;}
.y124{bottom:812.487733pt;}
.y288{bottom:812.944933pt;}
.y19f{bottom:813.799600pt;}
.y10a{bottom:815.111733pt;}
.y30d{bottom:815.524400pt;}
.y1dd{bottom:818.507067pt;}
.yb6{bottom:818.711733pt;}
.y4b{bottom:822.519733pt;}
.y175{bottom:823.818667pt;}
.y214{bottom:823.979867pt;}
.y91{bottom:825.191867pt;}
.y231{bottom:826.803200pt;}
.ydc{bottom:827.000000pt;}
.y287{bottom:828.944933pt;}
.y1c5{bottom:829.799600pt;}
.y262{bottom:830.544933pt;}
.y30c{bottom:833.124400pt;}
.y70{bottom:834.568000pt;}
.y1dc{bottom:835.147200pt;}
.y14c{bottom:835.519733pt;}
.y2b1{bottom:835.904000pt;}
.y123{bottom:836.487733pt;}
.y174{bottom:839.818667pt;}
.y2df{bottom:843.500000pt;}
.y151{bottom:844.186400pt;}
.y4a{bottom:846.519733pt;}
.y261{bottom:846.544933pt;}
.yb5{bottom:847.831733pt;}
.y213{bottom:849.307867pt;}
.y230{bottom:850.356667pt;}
.y109{bottom:850.455733pt;}
.y1db{bottom:851.787067pt;}
.ydb{bottom:852.328000pt;}
.y19e{bottom:852.479600pt;}
.y286{bottom:852.502133pt;}
.y2b0{bottom:853.504000pt;}
.y30b{bottom:854.503867pt;}
.y14b{bottom:855.519733pt;}
.y6f{bottom:859.896000pt;}
.y122{bottom:860.487733pt;}
.y90{bottom:861.863867pt;}
.y1da{bottom:868.347067pt;}
.y19d{bottom:868.479600pt;}
.y260{bottom:870.102000pt;}
.y2de{bottom:870.259733pt;}
.y30a{bottom:870.503867pt;}
.y49{bottom:870.519733pt;}
.y2af{bottom:871.104000pt;}
.yb4{bottom:871.831733pt;}
.y150{bottom:873.519733pt;}
.y212{bottom:874.635867pt;}
.y14a{bottom:875.519733pt;}
.yda{bottom:877.655867pt;}
.y173{bottom:878.498667pt;}
.y22f{bottom:880.901333pt;}
.y1c4{bottom:884.479600pt;}
.y1d9{bottom:884.987067pt;}
.y6e{bottom:885.224000pt;}
.y108{bottom:885.799733pt;}
.y285{bottom:886.822667pt;}
.y2dd{bottom:887.859733pt;}
.y2ae{bottom:888.704000pt;}
.y309{bottom:894.061067pt;}
.y14f{bottom:894.186400pt;}
.y172{bottom:894.498667pt;}
.y48{bottom:894.519733pt;}
.y146{bottom:895.519733pt;}
.yb3{bottom:895.831733pt;}
.y211{bottom:899.963733pt;}
.y1c3{bottom:900.479600pt;}
.y1d8{bottom:901.627067pt;}
.yd9{bottom:902.983867pt;}
.y25f{bottom:904.422667pt;}
.y2dc{bottom:905.459733pt;}
.y2ad{bottom:906.304000pt;}
.y19c{bottom:907.159733pt;}
.y22e{bottom:907.659733pt;}
.y171{bottom:910.498667pt;}
.y6d{bottom:910.551867pt;}
.y284{bottom:913.581200pt;}
.y14e{bottom:914.853067pt;}
.y149{bottom:915.519733pt;}
.y1d7{bottom:918.267067pt;}
.y47{bottom:918.519733pt;}
.yb2{bottom:919.831733pt;}
.y107{bottom:921.143733pt;}
.y2db{bottom:923.059867pt;}
.y4{bottom:923.140267pt;}
.y19b{bottom:923.159733pt;}
.y22d{bottom:925.259733pt;}
.y210{bottom:925.291733pt;}
.y2ac{bottom:927.683467pt;}
.yd8{bottom:928.311867pt;}
.y308{bottom:928.381333pt;}
.y25e{bottom:931.181200pt;}
.y1d6{bottom:934.907067pt;}
.y148{bottom:935.519733pt;}
.y6c{bottom:935.879867pt;}
.y170{bottom:937.847733pt;}
.y19a{bottom:939.159733pt;}
.y2da{bottom:940.659867pt;}
.y46{bottom:942.519733pt;}
.y22c{bottom:942.859733pt;}
.y2ab{bottom:943.683467pt;}
.y121{bottom:943.831733pt;}
.y14d{bottom:945.519733pt;}
.y25d{bottom:948.781200pt;}
.y20f{bottom:950.619733pt;}
.y1d5{bottom:951.548533pt;}
.y3{bottom:951.940133pt;}
.yd7{bottom:953.639867pt;}
.y307{bottom:955.140000pt;}
.y1c2{bottom:955.159733pt;}
.yb1{bottom:955.175733pt;}
.y147{bottom:955.519733pt;}
.y106{bottom:956.487733pt;}
.y22b{bottom:960.459733pt;}
.y6b{bottom:961.207867pt;}
.y2d9{bottom:962.039333pt;}
.y25c{bottom:966.381200pt;}
.y45{bottom:966.519733pt;}
.y2aa{bottom:967.240667pt;}
.y1d4{bottom:968.188267pt;}
.y1c1{bottom:971.159733pt;}
.y306{bottom:972.740133pt;}
.y20e{bottom:975.947733pt;}
.y145{bottom:976.186400pt;}
.y199{bottom:977.839733pt;}
.yd6{bottom:978.967733pt;}
.yb0{bottom:979.175733pt;}
.y2{bottom:980.740133pt;}
.y22a{bottom:981.839333pt;}
.y25b{bottom:983.981200pt;}
.y1d3{bottom:984.747600pt;}
.y2d8{bottom:985.596533pt;}
.y6a{bottom:986.535867pt;}
.y141{bottom:987.519733pt;}
.y305{bottom:990.340133pt;}
.y44{bottom:990.519733pt;}
.y105{bottom:991.831733pt;}
.y198{bottom:993.839733pt;}
.y144{bottom:996.853067pt;}
.y229{bottom:997.839333pt;}
.y20d{bottom:1001.275600pt;}
.y1d2{bottom:1001.387467pt;}
.y2a9{bottom:1001.560000pt;}
.y25a{bottom:1001.581200pt;}
.yaf{bottom:1003.175733pt;}
.yd5{bottom:1004.295733pt;}
.y140{bottom:1007.519733pt;}
.y304{bottom:1007.940133pt;}
.y197{bottom:1009.839733pt;}
.y69{bottom:1011.863733pt;}
.y43{bottom:1014.519733pt;}
.y13d{bottom:1017.519733pt;}
.y1d1{bottom:1018.027200pt;}
.y2d7{bottom:1021.133333pt;}
.y228{bottom:1021.403600pt;}
.y259{bottom:1022.960667pt;}
.y303{bottom:1025.540133pt;}
.y1c0{bottom:1025.839733pt;}
.y20c{bottom:1026.603600pt;}
.y104{bottom:1027.175733pt;}
.y1ce{bottom:1027.477333pt;}
.y13f{bottom:1027.519733pt;}
.y2a8{bottom:1028.319600pt;}
.yd4{bottom:1029.623733pt;}
.y1d0{bottom:1034.667067pt;}
.y68{bottom:1037.191733pt;}
.y143{bottom:1038.186400pt;}
.y42{bottom:1038.519733pt;}
.y258{bottom:1038.960667pt;}
.y302{bottom:1043.140133pt;}
.y2d6{bottom:1043.516000pt;}
.y2a7{bottom:1045.919733pt;}
.y13e{bottom:1047.519733pt;}
.y196{bottom:1048.519733pt;}
.y1cd{bottom:1050.456800pt;}
.y5{bottom:1050.519600pt;}
.y1cf{bottom:1053.867067pt;}
.y142{bottom:1058.853067pt;}
.y41{bottom:1062.519733pt;}
.y20b{bottom:1063.275600pt;}
.y2a6{bottom:1063.519733pt;}
.y195{bottom:1064.519733pt;}
.y2d5{bottom:1064.533333pt;}
.h14{height:38.905781pt;}
.h15{height:38.931875pt;}
.h8{height:39.188000pt;}
.h18{height:43.226562pt;}
.hc{height:48.802083pt;}
.h16{height:49.136719pt;}
.hb{height:50.078125pt;}
.hf{height:50.214658pt;}
.he{height:50.416667pt;}
.h13{height:51.382969pt;}
.h17{height:52.736979pt;}
.h6{height:53.682292pt;}
.h7{height:55.085938pt;}
.h9{height:58.562500pt;}
.ha{height:60.093750pt;}
.h5{height:60.500000pt;}
.h2{height:64.279733pt;}
.h12{height:80.666667pt;}
.h11{height:87.843750pt;}
.hd{height:88.802083pt;}
.h3{height:90.140625pt;}
.h4{height:121.000000pt;}
.h10{height:136.125000pt;}
.h0{height:1122.520020pt;}
.h1{height:1122.666667pt;}
.w3{width:793.333333pt;}
.w2{width:793.626628pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:47.622000pt;}
.x1{left:50.078667pt;}
.x48{left:105.760533pt;}
.x47{left:120.400000pt;}
.x32{left:123.840000pt;}
.x3b{left:131.760000pt;}
.x11{left:138.708667pt;}
.x3a{left:144.480000pt;}
.x44{left:145.520000pt;}
.x35{left:148.240000pt;}
.x1b{left:149.163867pt;}
.x25{left:151.758667pt;}
.x30{left:153.280000pt;}
.x13{left:156.568400pt;}
.x23{left:157.590400pt;}
.x8{left:161.337867pt;}
.x3{left:162.731600pt;}
.x14{left:163.968400pt;}
.x38{left:165.280000pt;}
.x34{left:167.680000pt;}
.x36{left:170.400000pt;}
.xa{left:174.309867pt;}
.xc{left:176.173867pt;}
.x37{left:179.680000pt;}
.x3c{left:182.880000pt;}
.x7{left:186.417867pt;}
.x3d{left:189.520000pt;}
.x39{left:192.080000pt;}
.x33{left:196.640000pt;}
.xe{left:202.767200pt;}
.xd{left:204.774533pt;}
.x12{left:209.892667pt;}
.x3e{left:214.160933pt;}
.x41{left:216.880000pt;}
.x9{left:218.311467pt;}
.x43{left:222.720000pt;}
.x31{left:228.000000pt;}
.x2c{left:230.240133pt;}
.x17{left:240.057200pt;}
.x40{left:241.040000pt;}
.x19{left:245.243867pt;}
.x1c{left:249.323867pt;}
.xb{left:250.680667pt;}
.x1d{left:254.137200pt;}
.x15{left:256.715067pt;}
.x18{left:260.443867pt;}
.x1e{left:262.657200pt;}
.x1a{left:263.777200pt;}
.x6{left:270.426133pt;}
.x45{left:278.960800pt;}
.x24{left:281.723733pt;}
.x3f{left:283.920400pt;}
.x2{left:291.659600pt;}
.x28{left:295.485733pt;}
.x2b{left:304.880000pt;}
.x49{left:321.200133pt;}
.x26{left:324.129333pt;}
.x2a{left:326.800000pt;}
.x2d{left:335.360000pt;}
.x2f{left:340.880000pt;}
.x29{left:343.049600pt;}
.x16{left:353.128400pt;}
.x27{left:370.149333pt;}
.x46{left:380.480400pt;}
.x2e{left:396.880400pt;}
.x4{left:407.699600pt;}
.x10{left:409.894000pt;}
.x5{left:518.394000pt;}
.x22{left:522.257067pt;}
.x42{left:533.440000pt;}
.x1f{left:542.283867pt;}
.x4a{left:593.760800pt;}
.x20{left:633.523867pt;}
.x21{left:661.683733pt;}
}




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