
    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_3133171dd8785de701a32dc8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_ba4b9b0366c7222f8ff29fdb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734000;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_2f876f0d94d0540eccfb891d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_256af2b8a35e89a35f771d62.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_f6a6059a9c1fafab83dd9018.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_77cbcc36bd6fc4b4ec0907ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_e46dfdeabc7d93399bb1bc34.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.057000;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_14ef351e85014086f0dc6da2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984000;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_6730b9da12b483c422b7dbde.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011000;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_b1489a7bf84124c0d0ab9756.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.161000;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_b6e12063c4d0fca5e55b283d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.744000;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_5b252b112e6bb669d9e3b2c0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.888672;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m3{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);}
.v2{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.853400px;}
.lsb{letter-spacing:-1.530000px;}
.ls6d{letter-spacing:-1.320000px;}
.ls6a{letter-spacing:-0.990000px;}
.ls69{letter-spacing:-0.660000px;}
.lsa{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.510000px;}
.ls10{letter-spacing:-0.459000px;}
.lse{letter-spacing:-0.357000px;}
.ls28{letter-spacing:-0.330000px;}
.lsf{letter-spacing:-0.204000px;}
.ls11{letter-spacing:-0.153000px;}
.ls29{letter-spacing:-0.132000px;}
.ls49{letter-spacing:-0.066000px;}
.lsd{letter-spacing:-0.051000px;}
.ls9{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.033000px;}
.ls2{letter-spacing:0.051000px;}
.ls4b{letter-spacing:0.060000px;}
.ls1e{letter-spacing:0.066000px;}
.ls26{letter-spacing:0.081000px;}
.ls43{letter-spacing:0.090000px;}
.ls18{letter-spacing:0.099000px;}
.ls5{letter-spacing:0.102000px;}
.ls52{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.132000px;}
.ls8{letter-spacing:0.153000px;}
.ls68{letter-spacing:0.165000px;}
.ls17{letter-spacing:0.198000px;}
.ls6c{letter-spacing:0.231000px;}
.ls20{letter-spacing:0.264000px;}
.ls4a{letter-spacing:0.270000px;}
.ls2a{letter-spacing:0.330000px;}
.ls5a{letter-spacing:0.360000px;}
.ls42{letter-spacing:0.363000px;}
.ls1d{letter-spacing:0.396000px;}
.ls1{letter-spacing:0.408000px;}
.ls44{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.462000px;}
.ls39{letter-spacing:0.495000px;}
.ls1f{letter-spacing:0.528000px;}
.ls51{letter-spacing:0.540000px;}
.ls53{letter-spacing:0.594000px;}
.ls37{letter-spacing:0.627000px;}
.ls3d{letter-spacing:0.660000px;}
.ls6f{letter-spacing:0.693000px;}
.ls25{letter-spacing:0.726000px;}
.ls3c{letter-spacing:0.792000px;}
.ls5b{letter-spacing:0.858000px;}
.ls3f{letter-spacing:0.924000px;}
.ls59{letter-spacing:0.990000px;}
.ls21{letter-spacing:1.056000px;}
.ls5c{letter-spacing:1.089000px;}
.ls67{letter-spacing:1.188000px;}
.ls6b{letter-spacing:1.214400px;}
.ls65{letter-spacing:1.221000px;}
.ls4f{letter-spacing:1.254000px;}
.ls2d{letter-spacing:1.320000px;}
.ls41{letter-spacing:1.386000px;}
.ls30{letter-spacing:1.452000px;}
.ls2c{letter-spacing:1.465200px;}
.ls4{letter-spacing:1.479000px;}
.ls2e{letter-spacing:1.518000px;}
.ls3{letter-spacing:1.530000px;}
.ls31{letter-spacing:1.584000px;}
.ls2f{letter-spacing:1.716000px;}
.ls57{letter-spacing:1.782000px;}
.ls6{letter-spacing:1.887000px;}
.ls33{letter-spacing:1.914000px;}
.ls66{letter-spacing:1.980000px;}
.ls34{letter-spacing:2.046000px;}
.ls32{letter-spacing:2.112000px;}
.ls61{letter-spacing:2.178000px;}
.ls6e{letter-spacing:2.244000px;}
.ls4d{letter-spacing:2.310000px;}
.ls23{letter-spacing:2.376000px;}
.ls62{letter-spacing:2.442000px;}
.ls70{letter-spacing:2.508000px;}
.ls60{letter-spacing:2.574000px;}
.ls4e{letter-spacing:2.600400px;}
.ls5f{letter-spacing:2.706000px;}
.ls1a{letter-spacing:3.036000px;}
.ls48{letter-spacing:3.042600px;}
.ls19{letter-spacing:3.102000px;}
.ls24{letter-spacing:3.135000px;}
.ls55{letter-spacing:3.432000px;}
.ls15{letter-spacing:3.696000px;}
.ls63{letter-spacing:3.828000px;}
.ls35{letter-spacing:4.224000px;}
.ls36{letter-spacing:5.016000px;}
.ls16{letter-spacing:5.082000px;}
.ls50{letter-spacing:5.253600px;}
.ls27{letter-spacing:5.724000px;}
.ls2b{letter-spacing:5.874000px;}
.ls4c{letter-spacing:5.940000px;}
.ls45{letter-spacing:6.072000px;}
.ls7{letter-spacing:6.120000px;}
.ls3e{letter-spacing:6.138000px;}
.ls46{letter-spacing:6.204000px;}
.ls1b{letter-spacing:6.336000px;}
.ls1c{letter-spacing:6.798000px;}
.ls64{letter-spacing:7.062000px;}
.ls3b{letter-spacing:7.326000px;}
.ls3a{letter-spacing:7.458000px;}
.ls38{letter-spacing:7.524000px;}
.ls5d{letter-spacing:7.590000px;}
.ls40{letter-spacing:7.656000px;}
.ls5e{letter-spacing:7.788000px;}
.ls58{letter-spacing:7.854000px;}
.ls0{letter-spacing:24.000000px;}
.ls56{letter-spacing:2038.568400px;}
.ls22{letter-spacing:2071.568400px;}
.ls54{letter-spacing:2134.018800px;}
.ls12{letter-spacing:2167.018800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-22.680000px;}
.ws1{word-spacing:-17.010000px;}
.ws1d{word-spacing:-16.500000px;}
.ws6a{word-spacing:-14.487000px;}
.ws26{word-spacing:-13.860000px;}
.ws38{word-spacing:-12.750000px;}
.ws2{word-spacing:-10.098000px;}
.ws39{word-spacing:-9.009000px;}
.ws3a{word-spacing:-7.371000px;}
.wsc1{word-spacing:-2.508000px;}
.wsbf{word-spacing:-2.244000px;}
.wsbd{word-spacing:-1.782000px;}
.wsb5{word-spacing:-1.716000px;}
.wsb7{word-spacing:-1.650000px;}
.wsb0{word-spacing:-1.188000px;}
.ws87{word-spacing:-0.924000px;}
.wsa8{word-spacing:-0.858000px;}
.ws96{word-spacing:-0.792000px;}
.wsaf{word-spacing:-0.660000px;}
.ws9d{word-spacing:-0.594000px;}
.ws4b{word-spacing:-0.528000px;}
.wsa4{word-spacing:-0.462000px;}
.wsbc{word-spacing:-0.396000px;}
.wsb2{word-spacing:-0.330000px;}
.wsa3{word-spacing:-0.264000px;}
.ws8a{word-spacing:-0.198000px;}
.ws99{word-spacing:-0.180000px;}
.wsb1{word-spacing:-0.132000px;}
.ws54{word-spacing:-0.108000px;}
.ws69{word-spacing:-0.066000px;}
.ws4{word-spacing:0.000000px;}
.wsa2{word-spacing:0.066000px;}
.ws23{word-spacing:0.132000px;}
.ws78{word-spacing:0.198000px;}
.ws1c{word-spacing:0.255000px;}
.ws7f{word-spacing:0.264000px;}
.ws42{word-spacing:0.330000px;}
.ws1b{word-spacing:0.357000px;}
.wsae{word-spacing:0.360000px;}
.ws43{word-spacing:0.396000px;}
.ws5c{word-spacing:0.462000px;}
.ws17{word-spacing:0.510000px;}
.ws5a{word-spacing:0.528000px;}
.ws77{word-spacing:0.594000px;}
.ws4e{word-spacing:0.660000px;}
.ws74{word-spacing:0.726000px;}
.ws81{word-spacing:0.792000px;}
.ws5f{word-spacing:0.858000px;}
.ws73{word-spacing:0.924000px;}
.ws5{word-spacing:0.960000px;}
.ws8e{word-spacing:0.990000px;}
.ws58{word-spacing:1.026000px;}
.ws70{word-spacing:1.056000px;}
.ws8f{word-spacing:1.122000px;}
.wsa1{word-spacing:1.140000px;}
.ws63{word-spacing:1.188000px;}
.ws55{word-spacing:1.242000px;}
.ws66{word-spacing:1.254000px;}
.wsa{word-spacing:1.275000px;}
.ws71{word-spacing:1.320000px;}
.wsb8{word-spacing:1.386000px;}
.ws91{word-spacing:1.404000px;}
.ws20{word-spacing:1.440000px;}
.ws2c{word-spacing:1.452000px;}
.ws3{word-spacing:1.479000px;}
.ws44{word-spacing:1.518000px;}
.wse{word-spacing:1.530000px;}
.wsa0{word-spacing:1.560000px;}
.wsbb{word-spacing:1.584000px;}
.ws95{word-spacing:1.620000px;}
.wsb3{word-spacing:1.650000px;}
.ws64{word-spacing:1.716000px;}
.ws80{word-spacing:1.782000px;}
.ws67{word-spacing:1.848000px;}
.ws50{word-spacing:1.890000px;}
.ws6c{word-spacing:1.914000px;}
.ws12{word-spacing:1.938000px;}
.ws22{word-spacing:1.980000px;}
.ws5d{word-spacing:2.046000px;}
.ws59{word-spacing:2.052000px;}
.ws79{word-spacing:2.112000px;}
.ws72{word-spacing:2.178000px;}
.wsb{word-spacing:2.244000px;}
.ws24{word-spacing:2.310000px;}
.ws3f{word-spacing:2.376000px;}
.ws90{word-spacing:2.430000px;}
.ws6f{word-spacing:2.442000px;}
.wsd{word-spacing:2.448000px;}
.ws56{word-spacing:2.484000px;}
.ws3e{word-spacing:2.508000px;}
.ws8c{word-spacing:2.520000px;}
.wsc{word-spacing:2.550000px;}
.ws76{word-spacing:2.574000px;}
.ws9f{word-spacing:2.580000px;}
.ws60{word-spacing:2.640000px;}
.ws18{word-spacing:2.703000px;}
.ws40{word-spacing:2.706000px;}
.ws7d{word-spacing:2.772000px;}
.ws75{word-spacing:2.838000px;}
.ws9e{word-spacing:2.880000px;}
.ws88{word-spacing:2.904000px;}
.ws5b{word-spacing:2.970000px;}
.ws28{word-spacing:3.036000px;}
.ws1a{word-spacing:3.060000px;}
.ws32{word-spacing:3.102000px;}
.ws6{word-spacing:3.168000px;}
.ws51{word-spacing:3.186000px;}
.ws15{word-spacing:3.213000px;}
.ws2f{word-spacing:3.234000px;}
.ws98{word-spacing:3.300000px;}
.ws92{word-spacing:3.348000px;}
.ws61{word-spacing:3.366000px;}
.ws49{word-spacing:3.432000px;}
.wsb9{word-spacing:3.498000px;}
.ws65{word-spacing:3.564000px;}
.ws9c{word-spacing:3.630000px;}
.ws13{word-spacing:3.672000px;}
.ws41{word-spacing:3.696000px;}
.wsa6{word-spacing:3.720000px;}
.ws2b{word-spacing:3.762000px;}
.ws5e{word-spacing:3.828000px;}
.ws57{word-spacing:3.888000px;}
.ws9b{word-spacing:3.894000px;}
.wsa7{word-spacing:3.900000px;}
.ws68{word-spacing:3.960000px;}
.ws46{word-spacing:4.026000px;}
.ws89{word-spacing:4.092000px;}
.ws52{word-spacing:4.104000px;}
.ws35{word-spacing:4.158000px;}
.wsf{word-spacing:4.182000px;}
.ws93{word-spacing:4.212000px;}
.ws9a{word-spacing:4.224000px;}
.ws7a{word-spacing:4.290000px;}
.ws62{word-spacing:4.356000px;}
.ws47{word-spacing:4.422000px;}
.ws94{word-spacing:4.428000px;}
.ws19{word-spacing:4.437000px;}
.ws2e{word-spacing:4.488000px;}
.wsaa{word-spacing:4.500000px;}
.ws3d{word-spacing:4.554000px;}
.ws33{word-spacing:4.620000px;}
.ws30{word-spacing:4.686000px;}
.ws4f{word-spacing:4.698000px;}
.ws6e{word-spacing:4.752000px;}
.ws14{word-spacing:4.794000px;}
.ws37{word-spacing:4.818000px;}
.ws3b{word-spacing:4.884000px;}
.ws21{word-spacing:4.920000px;}
.ws6b{word-spacing:4.950000px;}
.ws31{word-spacing:5.016000px;}
.ws16{word-spacing:5.049000px;}
.ws2a{word-spacing:5.082000px;}
.ws45{word-spacing:5.148000px;}
.ws10{word-spacing:5.151000px;}
.ws7b{word-spacing:5.214000px;}
.ws7c{word-spacing:5.280000px;}
.ws11{word-spacing:5.304000px;}
.ws85{word-spacing:5.340000px;}
.ws4a{word-spacing:5.346000px;}
.ws9{word-spacing:5.355000px;}
.ws48{word-spacing:5.412000px;}
.ws84{word-spacing:5.460000px;}
.ws2d{word-spacing:5.478000px;}
.ws4d{word-spacing:5.544000px;}
.wsa5{word-spacing:5.580000px;}
.ws7e{word-spacing:5.610000px;}
.ws53{word-spacing:5.670000px;}
.wsad{word-spacing:5.676000px;}
.ws6d{word-spacing:5.808000px;}
.ws97{word-spacing:5.874000px;}
.ws8d{word-spacing:5.940000px;}
.ws83{word-spacing:6.006000px;}
.ws82{word-spacing:6.072000px;}
.wsac{word-spacing:6.138000px;}
.ws29{word-spacing:6.204000px;}
.ws4c{word-spacing:6.270000px;}
.ws86{word-spacing:6.300000px;}
.ws34{word-spacing:6.336000px;}
.ws8b{word-spacing:6.402000px;}
.wsba{word-spacing:6.468000px;}
.wsb6{word-spacing:6.534000px;}
.ws27{word-spacing:6.600000px;}
.ws3c{word-spacing:6.666000px;}
.ws36{word-spacing:6.732000px;}
.wsab{word-spacing:6.864000px;}
.ws25{word-spacing:6.930000px;}
.wsb4{word-spacing:6.996000px;}
.wsbe{word-spacing:7.524000px;}
.wsa9{word-spacing:7.788000px;}
.wsc0{word-spacing:8.448000px;}
.ws7{word-spacing:10.656000px;}
.ws1e{word-spacing:12.750000px;}
.ws8{word-spacing:13.344000px;}
.ws1f{word-spacing:84.708000px;}
._2{margin-left:-24.000000px;}
._4{margin-left:-22.642200px;}
._e{margin-left:-21.120000px;}
._d{margin-left:-19.140000px;}
._15{margin-left:-13.860000px;}
._b{margin-left:-3.696000px;}
._c{margin-left:-2.112000px;}
._3{margin-left:-1.083900px;}
._10{width:1.023000px;}
._6{width:2.257200px;}
._13{width:3.348000px;}
._17{width:4.620000px;}
._8{width:5.778000px;}
._14{width:7.458000px;}
._16{width:8.976000px;}
._0{width:10.224000px;}
._18{width:11.286000px;}
._1{width:13.344000px;}
._5{width:16.130400px;}
._11{width:27.504000px;}
._7{width:49.085400px;}
._12{width:51.408000px;}
._9{width:52.596000px;}
._f{width:57.802200px;}
._a{width:84.708000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(96,138,150);}
.fc1{color:rgb(157,194,227);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.100000px;}
.fs9{font-size:42.900000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fsb{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fsc{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs3{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y242{bottom:137.936850px;}
.y6d{bottom:138.182550px;}
.y9d{bottom:138.212700px;}
.y269{bottom:138.284850px;}
.y1ae{bottom:138.548400px;}
.y1f8{bottom:138.637200px;}
.y21d{bottom:138.664350px;}
.y192{bottom:138.728250px;}
.y138{bottom:138.773400px;}
.y158{bottom:138.827850px;}
.y1ec{bottom:138.857400px;}
.y115{bottom:139.204950px;}
.yc7{bottom:139.337550px;}
.y1d6{bottom:139.373250px;}
.y9{bottom:140.316450px;}
.yee{bottom:142.238550px;}
.y8{bottom:153.108450px;}
.y9c{bottom:154.196700px;}
.y6c{bottom:158.972550px;}
.y241{bottom:159.023850px;}
.y1ad{bottom:159.338400px;}
.y268{bottom:159.355350px;}
.y1f7{bottom:159.427200px;}
.y21c{bottom:159.454350px;}
.y191{bottom:159.518250px;}
.y137{bottom:159.563400px;}
.y157{bottom:159.617850px;}
.y1eb{bottom:159.647400px;}
.y114{bottom:159.994950px;}
.yc6{bottom:160.127550px;}
.y1d5{bottom:160.163250px;}
.y9b{bottom:170.180700px;}
.y7{bottom:172.269300px;}
.y6b{bottom:179.762550px;}
.y21b{bottom:180.244350px;}
.y190{bottom:180.308250px;}
.y136{bottom:180.353400px;}
.y277{bottom:180.407850px;}
.y267{bottom:180.425850px;}
.y1ea{bottom:180.437400px;}
.y113{bottom:180.784950px;}
.yc5{bottom:180.917550px;}
.y1d4{bottom:180.953250px;}
.y9a{bottom:186.164700px;}
.y240{bottom:190.505850px;}
.y1ac{bottom:190.523400px;}
.y1f6{bottom:190.612200px;}
.y156{bottom:190.802850px;}
.yed{bottom:190.862550px;}
.y6{bottom:191.445300px;}
.y18f{bottom:201.098250px;}
.y135{bottom:201.143400px;}
.y1e9{bottom:201.227400px;}
.y112{bottom:201.574950px;}
.yc4{bottom:201.707550px;}
.y1d3{bottom:201.743250px;}
.y99{bottom:202.148700px;}
.y5{bottom:210.621300px;}
.y6a{bottom:210.947550px;}
.y1ab{bottom:211.313400px;}
.y155{bottom:211.592850px;}
.yec{bottom:211.652550px;}
.y266{bottom:211.891350px;}
.y21a{bottom:212.089350px;}
.y98{bottom:218.132700px;}
.y1f5{bottom:221.797200px;}
.y18e{bottom:221.888250px;}
.y1e8{bottom:222.017400px;}
.y111{bottom:222.364950px;}
.yc3{bottom:222.497550px;}
.y1d2{bottom:222.533250px;}
.y4{bottom:223.413300px;}
.y69{bottom:231.737550px;}
.y1aa{bottom:232.103400px;}
.y154{bottom:232.382850px;}
.yeb{bottom:232.442550px;}
.y23f{bottom:232.679850px;}
.y265{bottom:232.961850px;}
.y97{bottom:234.116700px;}
.y1f4{bottom:242.587200px;}
.y3{bottom:242.589300px;}
.y18d{bottom:242.678250px;}
.y1e7{bottom:242.807400px;}
.y110{bottom:243.154950px;}
.yc2{bottom:243.287550px;}
.y1d1{bottom:243.323250px;}
.y219{bottom:243.934350px;}
.y134{bottom:247.200300px;}
.y96{bottom:250.100700px;}
.y68{bottom:252.527550px;}
.y1a9{bottom:252.893400px;}
.y153{bottom:253.172850px;}
.yea{bottom:253.232550px;}
.y2{bottom:255.381300px;}
.y1e6{bottom:263.597400px;}
.y10f{bottom:263.944950px;}
.yc1{bottom:264.077550px;}
.y23e{bottom:264.161850px;}
.y264{bottom:264.427350px;}
.y218{bottom:264.724350px;}
.y133{bottom:265.596300px;}
.y95{bottom:270.134700px;}
.y67{bottom:273.317550px;}
.y1a8{bottom:273.683400px;}
.y152{bottom:273.962850px;}
.ye9{bottom:274.022550px;}
.y1d0{bottom:274.508250px;}
.y94{bottom:282.086700px;}
.y276{bottom:284.357850px;}
.yc0{bottom:284.867550px;}
.y263{bottom:285.497850px;}
.y1f3{bottom:288.650100px;}
.y18c{bottom:288.735000px;}
.y66{bottom:294.107550px;}
.y1a7{bottom:294.473400px;}
.y151{bottom:294.752850px;}
.y1e5{bottom:294.782400px;}
.ye8{bottom:294.812550px;}
.y10e{bottom:295.129950px;}
.y1cf{bottom:295.298250px;}
.y23d{bottom:295.643850px;}
.y217{bottom:296.569350px;}
.y93{bottom:298.070700px;}
.y275{bottom:305.147850px;}
.ybf{bottom:305.657550px;}
.y32{bottom:307.053300px;}
.y41{bottom:307.092900px;}
.y18b{bottom:307.131000px;}
.y92{bottom:314.054700px;}
.y65{bottom:314.897550px;}
.y150{bottom:315.542850px;}
.y1e4{bottom:315.572400px;}
.ye7{bottom:315.602550px;}
.y10d{bottom:315.919950px;}
.y1ce{bottom:316.088250px;}
.y23c{bottom:316.730850px;}
.y262{bottom:316.963350px;}
.y216{bottom:317.359350px;}
.y31{bottom:322.251300px;}
.y40{bottom:322.290900px;}
.y274{bottom:325.937850px;}
.ybe{bottom:326.447550px;}
.y91{bottom:330.038700px;}
.y132{bottom:331.614300px;}
.y64{bottom:335.687550px;}
.y177{bottom:336.203400px;}
.y14f{bottom:336.332850px;}
.y1e3{bottom:336.362400px;}
.ye6{bottom:336.392550px;}
.y10c{bottom:336.709950px;}
.y1cd{bottom:336.878250px;}
.y30{bottom:337.449300px;}
.y3f{bottom:337.488900px;}
.y23b{bottom:337.817850px;}
.y261{bottom:338.033850px;}
.y215{bottom:338.149350px;}
.y1a6{bottom:340.530150px;}
.y90{bottom:346.022700px;}
.y273{bottom:346.727850px;}
.ybd{bottom:347.237550px;}
.y131{bottom:349.209300px;}
.y2f{bottom:352.647300px;}
.y3e{bottom:352.686900px;}
.y63{bottom:356.477550px;}
.y176{bottom:356.993400px;}
.y14e{bottom:357.122850px;}
.y1e2{bottom:357.152400px;}
.ye5{bottom:357.182550px;}
.y10b{bottom:357.499950px;}
.y1cc{bottom:357.668250px;}
.y1a5{bottom:358.926150px;}
.y8f{bottom:366.056700px;}
.y130{bottom:366.804300px;}
.y2e{bottom:367.845300px;}
.y3d{bottom:367.884900px;}
.ybc{bottom:368.027550px;}
.y23a{bottom:369.299850px;}
.y260{bottom:369.499350px;}
.y214{bottom:369.994350px;}
.y18a{bottom:373.125150px;}
.y62{bottom:377.267550px;}
.y175{bottom:377.783400px;}
.y14d{bottom:377.912850px;}
.y1e1{bottom:377.942400px;}
.ye4{bottom:377.972550px;}
.y10a{bottom:378.289950px;}
.y1cb{bottom:378.458250px;}
.y3c{bottom:383.082900px;}
.y12f{bottom:384.399300px;}
.ybb{bottom:388.817550px;}
.y239{bottom:390.386850px;}
.y25f{bottom:390.569850px;}
.y213{bottom:390.784350px;}
.y2d{bottom:391.024800px;}
.y189{bottom:393.915150px;}
.y61{bottom:398.057550px;}
.y3b{bottom:398.280900px;}
.y174{bottom:398.573400px;}
.y14c{bottom:398.702850px;}
.ye3{bottom:398.762550px;}
.y109{bottom:399.079950px;}
.y1ca{bottom:399.248250px;}
.y12e{bottom:401.994300px;}
.yba{bottom:409.607550px;}
.y212{bottom:411.574350px;}
.y25e{bottom:411.640350px;}
.y3a{bottom:413.478900px;}
.y188{bottom:414.705150px;}
.y60{bottom:418.847550px;}
.y173{bottom:419.363400px;}
.y14b{bottom:419.492850px;}
.y8e{bottom:419.507700px;}
.y108{bottom:419.869950px;}
.y1c9{bottom:420.038250px;}
.y238{bottom:421.868850px;}
.y1e0{bottom:424.005300px;}
.y1a4{bottom:428.309850px;}
.y39{bottom:428.676900px;}
.y272{bottom:429.887850px;}
.ye2{bottom:429.947550px;}
.yb9{bottom:430.397550px;}
.y211{bottom:432.364350px;}
.y187{bottom:435.495150px;}
.y5f{bottom:439.637550px;}
.y172{bottom:440.153400px;}
.y14a{bottom:440.282850px;}
.y12d{bottom:440.284350px;}
.y8d{bottom:440.297700px;}
.y107{bottom:440.659950px;}
.y1c8{bottom:440.828250px;}
.y237{bottom:442.955850px;}
.y25d{bottom:443.105850px;}
.y38{bottom:443.874900px;}
.y1a3{bottom:449.099850px;}
.y271{bottom:450.677850px;}
.ye1{bottom:450.737550px;}
.yb8{bottom:451.187550px;}
.y186{bottom:456.285150px;}
.y37{bottom:459.072900px;}
.y5e{bottom:460.427550px;}
.y171{bottom:460.943400px;}
.y149{bottom:461.072850px;}
.y12c{bottom:461.074350px;}
.y8c{bottom:461.087700px;}
.y106{bottom:461.449950px;}
.y1c7{bottom:461.618250px;}
.y25c{bottom:464.176350px;}
.y210{bottom:464.209350px;}
.y1a2{bottom:469.889850px;}
.ye0{bottom:471.527550px;}
.yb7{bottom:471.977550px;}
.y36{bottom:474.270900px;}
.y236{bottom:474.437850px;}
.y185{bottom:477.075150px;}
.y5d{bottom:481.217550px;}
.y170{bottom:481.733400px;}
.y148{bottom:481.862850px;}
.y12b{bottom:481.864350px;}
.y8b{bottom:481.877700px;}
.y105{bottom:482.239950px;}
.y1c6{bottom:482.408250px;}
.y20f{bottom:484.999350px;}
.y25b{bottom:485.246850px;}
.y35{bottom:489.468900px;}
.y1a1{bottom:490.679850px;}
.y27b{bottom:492.259350px;}
.ydf{bottom:492.317550px;}
.yb6{bottom:492.767550px;}
.y235{bottom:495.524850px;}
.y184{bottom:497.865150px;}
.y5c{bottom:502.007550px;}
.y16f{bottom:502.523400px;}
.y147{bottom:502.652850px;}
.y12a{bottom:502.654350px;}
.y8a{bottom:502.667700px;}
.y104{bottom:503.029950px;}
.y1c5{bottom:503.198250px;}
.y34{bottom:504.666900px;}
.y25a{bottom:506.317350px;}
.y1df{bottom:509.121300px;}
.y1a0{bottom:511.469850px;}
.y1f2{bottom:513.047850px;}
.y27a{bottom:513.049350px;}
.yde{bottom:513.107550px;}
.yb5{bottom:513.557550px;}
.y20e{bottom:516.844350px;}
.y33{bottom:519.864900px;}
.y5b{bottom:522.797550px;}
.y16e{bottom:523.313400px;}
.y146{bottom:523.442850px;}
.y129{bottom:523.444350px;}
.y89{bottom:523.457700px;}
.y103{bottom:523.819950px;}
.y1c4{bottom:523.988250px;}
.y1de{bottom:526.716300px;}
.y234{bottom:527.006850px;}
.y259{bottom:527.387850px;}
.y19f{bottom:532.259850px;}
.y1f1{bottom:533.837850px;}
.ydd{bottom:533.897550px;}
.yb4{bottom:534.347550px;}
.y5a{bottom:543.587550px;}
.y183{bottom:543.930900px;}
.y16d{bottom:544.103400px;}
.y145{bottom:544.232850px;}
.y128{bottom:544.234350px;}
.y88{bottom:544.247700px;}
.y102{bottom:544.609950px;}
.y1c3{bottom:544.778250px;}
.y233{bottom:548.093850px;}
.y20d{bottom:548.689350px;}
.y19e{bottom:553.049850px;}
.y1f0{bottom:554.627850px;}
.ydc{bottom:554.687550px;}
.yb3{bottom:555.137550px;}
.y258{bottom:558.853350px;}
.y2c{bottom:563.596050px;}
.y1a{bottom:563.674500px;}
.y59{bottom:564.377550px;}
.y144{bottom:565.022850px;}
.y127{bottom:565.024350px;}
.y87{bottom:565.037700px;}
.y101{bottom:565.399950px;}
.y1c2{bottom:565.568250px;}
.y232{bottom:569.180850px;}
.y20c{bottom:569.479350px;}
.y182{bottom:569.514900px;}
.y19d{bottom:573.839850px;}
.y16c{bottom:575.288400px;}
.y1ef{bottom:575.417850px;}
.y279{bottom:575.419350px;}
.ydb{bottom:575.477550px;}
.yb2{bottom:575.927550px;}
.y2b{bottom:578.794050px;}
.y19{bottom:578.872500px;}
.y257{bottom:579.923850px;}
.y58{bottom:585.167550px;}
.y143{bottom:585.812850px;}
.y126{bottom:585.814350px;}
.y86{bottom:585.827700px;}
.y1c1{bottom:586.358250px;}
.y20b{bottom:590.269350px;}
.y2a{bottom:593.992050px;}
.y18{bottom:594.070500px;}
.y19c{bottom:594.629850px;}
.y16b{bottom:596.078400px;}
.y1ee{bottom:596.207850px;}
.y278{bottom:596.209350px;}
.yda{bottom:596.267550px;}
.yb1{bottom:596.717550px;}
.y231{bottom:600.662850px;}
.y256{bottom:600.994350px;}
.y57{bottom:605.957550px;}
.y142{bottom:606.602850px;}
.y125{bottom:606.604350px;}
.y85{bottom:606.617700px;}
.y1c0{bottom:607.148250px;}
.y29{bottom:609.190050px;}
.y17{bottom:609.268500px;}
.y100{bottom:613.588650px;}
.y19b{bottom:615.419850px;}
.y16a{bottom:616.868400px;}
.y1ed{bottom:616.997850px;}
.yd9{bottom:617.057550px;}
.yb0{bottom:617.507550px;}
.y230{bottom:621.749850px;}
.y255{bottom:622.064850px;}
.y20a{bottom:622.114350px;}
.y28{bottom:624.388050px;}
.y16{bottom:624.466500px;}
.y270{bottom:627.392850px;}
.y124{bottom:627.394350px;}
.y84{bottom:627.407700px;}
.y1bf{bottom:627.938250px;}
.y19a{bottom:636.209850px;}
.y56{bottom:637.142550px;}
.y169{bottom:637.658400px;}
.y141{bottom:637.787850px;}
.yd8{bottom:637.847550px;}
.yaf{bottom:638.297550px;}
.y27{bottom:639.586050px;}
.y15{bottom:639.664500px;}
.y22f{bottom:642.836850px;}
.y209{bottom:642.904350px;}
.y26f{bottom:648.182850px;}
.y1dd{bottom:648.184350px;}
.y83{bottom:648.197700px;}
.y1be{bottom:648.728250px;}
.y254{bottom:653.530350px;}
.y181{bottom:654.630900px;}
.y26{bottom:654.784050px;}
.y55{bottom:657.932550px;}
.y168{bottom:658.448400px;}
.y140{bottom:658.577850px;}
.y123{bottom:658.579350px;}
.yd7{bottom:658.637550px;}
.yae{bottom:659.087550px;}
.y14{bottom:662.844000px;}
.y208{bottom:663.694350px;}
.y26e{bottom:668.972850px;}
.y1dc{bottom:668.974350px;}
.y82{bottom:668.987700px;}
.y25{bottom:669.982050px;}
.y180{bottom:672.225900px;}
.y22e{bottom:674.318850px;}
.y253{bottom:674.600850px;}
.y199{bottom:677.792250px;}
.y54{bottom:678.722550px;}
.y167{bottom:679.238400px;}
.y13f{bottom:679.367850px;}
.y122{bottom:679.369350px;}
.y24{bottom:685.180050px;}
.yd6{bottom:689.764350px;}
.yad{bottom:690.272550px;}
.y1bd{bottom:690.304500px;}
.y198{bottom:695.387250px;}
.y22d{bottom:695.405850px;}
.y207{bottom:695.539350px;}
.y252{bottom:695.671350px;}
.y53{bottom:699.512550px;}
.y166{bottom:700.028400px;}
.y13e{bottom:700.157850px;}
.y121{bottom:700.159350px;}
.y81{bottom:700.172700px;}
.y23{bottom:700.378050px;}
.y1bc{bottom:707.899500px;}
.yff{bottom:710.552850px;}
.yd5{bottom:710.554350px;}
.yac{bottom:711.062550px;}
.y197{bottom:712.982250px;}
.y22{bottom:715.576050px;}
.y206{bottom:716.329350px;}
.y22c{bottom:716.492850px;}
.y52{bottom:720.302550px;}
.y165{bottom:720.818400px;}
.y13d{bottom:720.947850px;}
.y120{bottom:720.949350px;}
.y80{bottom:720.962700px;}
.y251{bottom:727.136850px;}
.y196{bottom:730.577250px;}
.y21{bottom:730.774050px;}
.yfe{bottom:731.342850px;}
.yd4{bottom:731.344350px;}
.yab{bottom:731.852550px;}
.y205{bottom:737.119350px;}
.y51{bottom:741.092550px;}
.y13c{bottom:741.737850px;}
.y11f{bottom:741.739350px;}
.y7f{bottom:741.752700px;}
.y20{bottom:745.972050px;}
.y1bb{bottom:746.259150px;}
.y22b{bottom:747.974850px;}
.y195{bottom:748.172250px;}
.y250{bottom:748.207350px;}
.yfd{bottom:752.132850px;}
.yd3{bottom:752.134350px;}
.yaa{bottom:752.642550px;}
.y1f{bottom:761.170050px;}
.y50{bottom:761.882550px;}
.y13b{bottom:762.527850px;}
.y11e{bottom:762.529350px;}
.y7e{bottom:762.542700px;}
.y194{bottom:765.767250px;}
.y164{bottom:766.875300px;}
.y1ba{bottom:767.049150px;}
.y204{bottom:768.964350px;}
.y22a{bottom:769.061850px;}
.y17f{bottom:772.922850px;}
.yd2{bottom:772.924350px;}
.ya9{bottom:773.432550px;}
.y1e{bottom:776.368050px;}
.y24f{bottom:779.672850px;}
.y4f{bottom:782.672550px;}
.yfc{bottom:783.317850px;}
.y11d{bottom:783.319350px;}
.y7d{bottom:783.332700px;}
.y163{bottom:785.271300px;}
.y1b9{bottom:787.839150px;}
.y1d{bottom:791.566050px;}
.y17e{bottom:793.712850px;}
.yd1{bottom:793.714350px;}
.ya8{bottom:794.222550px;}
.y229{bottom:800.543850px;}
.y24e{bottom:800.743350px;}
.y203{bottom:800.809350px;}
.y4e{bottom:803.462550px;}
.yfb{bottom:804.107850px;}
.y11c{bottom:804.109350px;}
.y7c{bottom:804.122700px;}
.y1c{bottom:806.764050px;}
.y1b8{bottom:808.629150px;}
.y17d{bottom:814.502850px;}
.yd0{bottom:814.504350px;}
.ya7{bottom:815.012550px;}
.y202{bottom:821.599350px;}
.y228{bottom:821.630850px;}
.y24d{bottom:821.813850px;}
.y1b{bottom:821.962050px;}
.y4d{bottom:824.252550px;}
.yfa{bottom:824.897850px;}
.y11b{bottom:824.899350px;}
.y7b{bottom:824.912700px;}
.y1b7{bottom:829.419150px;}
.y17c{bottom:835.292850px;}
.ycf{bottom:835.294350px;}
.ya6{bottom:835.802550px;}
.y201{bottom:842.389350px;}
.y4c{bottom:845.042550px;}
.yf9{bottom:845.687850px;}
.y11a{bottom:845.689350px;}
.y7a{bottom:845.702700px;}
.y1b6{bottom:850.209150px;}
.y162{bottom:851.271450px;}
.y227{bottom:853.112850px;}
.y24c{bottom:853.279350px;}
.y17b{bottom:856.082850px;}
.yce{bottom:856.084350px;}
.ya5{bottom:856.592550px;}
.y4b{bottom:865.832550px;}
.yf8{bottom:866.477850px;}
.y119{bottom:866.479350px;}
.y79{bottom:866.492700px;}
.y1b5{bottom:870.999150px;}
.y161{bottom:872.061450px;}
.y226{bottom:874.199850px;}
.y200{bottom:874.234350px;}
.y24b{bottom:874.349850px;}
.y17a{bottom:876.872850px;}
.ycd{bottom:876.874350px;}
.ya4{bottom:877.382550px;}
.y4a{bottom:886.622550px;}
.yf7{bottom:887.267850px;}
.y118{bottom:887.269350px;}
.y78{bottom:887.282700px;}
.y1b4{bottom:891.789150px;}
.y160{bottom:892.851450px;}
.y179{bottom:897.662850px;}
.ycc{bottom:897.664350px;}
.y13{bottom:897.921450px;}
.ya3{bottom:898.172550px;}
.y225{bottom:905.681850px;}
.y24a{bottom:905.815350px;}
.y1ff{bottom:906.079350px;}
.y49{bottom:907.412550px;}
.yf6{bottom:908.057850px;}
.y117{bottom:908.059350px;}
.y1b3{bottom:912.579150px;}
.y15f{bottom:913.641450px;}
.y178{bottom:918.452850px;}
.ycb{bottom:918.454350px;}
.y77{bottom:918.467700px;}
.y12{bottom:918.699150px;}
.y224{bottom:926.768850px;}
.y1fe{bottom:926.869350px;}
.y249{bottom:926.885850px;}
.yf5{bottom:928.847850px;}
.y116{bottom:928.849350px;}
.y15e{bottom:934.431450px;}
.y13a{bottom:939.242850px;}
.yca{bottom:939.244350px;}
.y76{bottom:939.257700px;}
.ya2{bottom:944.241450px;}
.y223{bottom:947.855850px;}
.yf4{bottom:949.637850px;}
.y193{bottom:949.639350px;}
.y1b2{bottom:954.158550px;}
.y248{bottom:958.351350px;}
.y1fd{bottom:958.714350px;}
.y139{bottom:960.032850px;}
.yc9{bottom:960.034350px;}
.y75{bottom:960.047700px;}
.y11{bottom:963.093150px;}
.y48{bottom:969.212550px;}
.ya1{bottom:969.825450px;}
.y26d{bottom:970.427850px;}
.y1db{bottom:970.429350px;}
.y1b1{bottom:971.753550px;}
.y15d{bottom:976.012500px;}
.y222{bottom:979.337850px;}
.y247{bottom:979.421850px;}
.y1fc{bottom:979.504350px;}
.yf3{bottom:980.822850px;}
.yc8{bottom:980.824350px;}
.y74{bottom:980.837700px;}
.y10{bottom:988.293150px;}
.y1b0{bottom:989.348550px;}
.y26c{bottom:991.217850px;}
.y1da{bottom:991.219350px;}
.y15c{bottom:993.607500px;}
.ya0{bottom:995.409450px;}
.y47{bottom:997.202550px;}
.y1fb{bottom:1000.294350px;}
.y221{bottom:1000.424850px;}
.yf2{bottom:1001.612850px;}
.y73{bottom:1001.614350px;}
.y1af{bottom:1006.943550px;}
.y246{bottom:1010.887350px;}
.y15b{bottom:1011.202500px;}
.y26b{bottom:1012.007850px;}
.y1d9{bottom:1012.009350px;}
.y46{bottom:1014.797550px;}
.yf1{bottom:1022.402850px;}
.y72{bottom:1022.404350px;}
.y15a{bottom:1028.797500px;}
.y220{bottom:1031.906850px;}
.y245{bottom:1031.957850px;}
.y1fa{bottom:1032.139350px;}
.y45{bottom:1032.392550px;}
.yf{bottom:1032.678000px;}
.y26a{bottom:1032.797850px;}
.y1d8{bottom:1032.799350px;}
.yf0{bottom:1043.192850px;}
.y71{bottom:1043.194350px;}
.y159{bottom:1046.392500px;}
.y44{bottom:1049.987550px;}
.y1f9{bottom:1052.929350px;}
.y21f{bottom:1052.993850px;}
.y1d7{bottom:1053.589350px;}
.y244{bottom:1063.423350px;}
.yef{bottom:1063.982850px;}
.y70{bottom:1063.984350px;}
.ye{bottom:1065.078000px;}
.y21e{bottom:1084.475850px;}
.y243{bottom:1084.493850px;}
.y9f{bottom:1084.772850px;}
.y6f{bottom:1084.774350px;}
.yd{bottom:1097.478000px;}
.y43{bottom:1103.253000px;}
.y9e{bottom:1105.562850px;}
.y6e{bottom:1105.564350px;}
.yc{bottom:1162.740450px;}
.y42{bottom:1172.229900px;}
.yb{bottom:1193.880450px;}
.ya{bottom:1207.380450px;}
.hf{height:27.904500px;}
.h4{height:35.328000px;}
.h3{height:35.664000px;}
.ha{height:40.545000px;}
.h11{height:41.472000px;}
.h10{height:42.930000px;}
.h2{height:45.342773px;}
.h8{height:47.700000px;}
.h9{height:48.144000px;}
.hc{height:52.470000px;}
.hd{height:53.958900px;}
.h14{height:54.125700px;}
.h12{height:54.137700px;}
.he{height:54.237300px;}
.h6{height:64.512000px;}
.h7{height:66.780000px;}
.h13{height:67.968000px;}
.hb{height:73.632000px;}
.h5{height:101.952000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x15{left:86.972550px;}
.x9{left:89.386350px;}
.xe{left:93.730500px;}
.x16{left:108.245550px;}
.x3{left:110.539350px;}
.xa{left:124.543500px;}
.x17{left:127.568850px;}
.x19{left:129.496500px;}
.x1a{left:136.057350px;}
.x1b{left:137.990550px;}
.x4{left:145.195650px;}
.x5{left:151.195650px;}
.x13{left:153.070800px;}
.x18{left:155.011950px;}
.x8{left:194.653500px;}
.xf{left:255.305550px;}
.x11{left:323.914800px;}
.x10{left:327.482550px;}
.xb{left:386.287500px;}
.x7{left:405.728550px;}
.x14{left:448.060800px;}
.xc{left:534.862500px;}
.xd{left:547.012350px;}
.x12{left:646.958550px;}
.x6{left:733.915650px;}
.x1{left:799.624050px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.647467pt;}
.lsb{letter-spacing:-1.360000pt;}
.ls6d{letter-spacing:-1.173333pt;}
.ls6a{letter-spacing:-0.880000pt;}
.ls69{letter-spacing:-0.586667pt;}
.lsa{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.453333pt;}
.ls10{letter-spacing:-0.408000pt;}
.lse{letter-spacing:-0.317333pt;}
.ls28{letter-spacing:-0.293333pt;}
.lsf{letter-spacing:-0.181333pt;}
.ls11{letter-spacing:-0.136000pt;}
.ls29{letter-spacing:-0.117333pt;}
.ls49{letter-spacing:-0.058667pt;}
.lsd{letter-spacing:-0.045333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.029333pt;}
.ls2{letter-spacing:0.045333pt;}
.ls4b{letter-spacing:0.053333pt;}
.ls1e{letter-spacing:0.058667pt;}
.ls26{letter-spacing:0.072000pt;}
.ls43{letter-spacing:0.080000pt;}
.ls18{letter-spacing:0.088000pt;}
.ls5{letter-spacing:0.090667pt;}
.ls52{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.117333pt;}
.ls8{letter-spacing:0.136000pt;}
.ls68{letter-spacing:0.146667pt;}
.ls17{letter-spacing:0.176000pt;}
.ls6c{letter-spacing:0.205333pt;}
.ls20{letter-spacing:0.234667pt;}
.ls4a{letter-spacing:0.240000pt;}
.ls2a{letter-spacing:0.293333pt;}
.ls5a{letter-spacing:0.320000pt;}
.ls42{letter-spacing:0.322667pt;}
.ls1d{letter-spacing:0.352000pt;}
.ls1{letter-spacing:0.362667pt;}
.ls44{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.410667pt;}
.ls39{letter-spacing:0.440000pt;}
.ls1f{letter-spacing:0.469333pt;}
.ls51{letter-spacing:0.480000pt;}
.ls53{letter-spacing:0.528000pt;}
.ls37{letter-spacing:0.557333pt;}
.ls3d{letter-spacing:0.586667pt;}
.ls6f{letter-spacing:0.616000pt;}
.ls25{letter-spacing:0.645333pt;}
.ls3c{letter-spacing:0.704000pt;}
.ls5b{letter-spacing:0.762667pt;}
.ls3f{letter-spacing:0.821333pt;}
.ls59{letter-spacing:0.880000pt;}
.ls21{letter-spacing:0.938667pt;}
.ls5c{letter-spacing:0.968000pt;}
.ls67{letter-spacing:1.056000pt;}
.ls6b{letter-spacing:1.079467pt;}
.ls65{letter-spacing:1.085333pt;}
.ls4f{letter-spacing:1.114667pt;}
.ls2d{letter-spacing:1.173333pt;}
.ls41{letter-spacing:1.232000pt;}
.ls30{letter-spacing:1.290667pt;}
.ls2c{letter-spacing:1.302400pt;}
.ls4{letter-spacing:1.314667pt;}
.ls2e{letter-spacing:1.349333pt;}
.ls3{letter-spacing:1.360000pt;}
.ls31{letter-spacing:1.408000pt;}
.ls2f{letter-spacing:1.525333pt;}
.ls57{letter-spacing:1.584000pt;}
.ls6{letter-spacing:1.677333pt;}
.ls33{letter-spacing:1.701333pt;}
.ls66{letter-spacing:1.760000pt;}
.ls34{letter-spacing:1.818667pt;}
.ls32{letter-spacing:1.877333pt;}
.ls61{letter-spacing:1.936000pt;}
.ls6e{letter-spacing:1.994667pt;}
.ls4d{letter-spacing:2.053333pt;}
.ls23{letter-spacing:2.112000pt;}
.ls62{letter-spacing:2.170667pt;}
.ls70{letter-spacing:2.229333pt;}
.ls60{letter-spacing:2.288000pt;}
.ls4e{letter-spacing:2.311467pt;}
.ls5f{letter-spacing:2.405333pt;}
.ls1a{letter-spacing:2.698667pt;}
.ls48{letter-spacing:2.704533pt;}
.ls19{letter-spacing:2.757333pt;}
.ls24{letter-spacing:2.786667pt;}
.ls55{letter-spacing:3.050667pt;}
.ls15{letter-spacing:3.285333pt;}
.ls63{letter-spacing:3.402667pt;}
.ls35{letter-spacing:3.754667pt;}
.ls36{letter-spacing:4.458667pt;}
.ls16{letter-spacing:4.517333pt;}
.ls50{letter-spacing:4.669867pt;}
.ls27{letter-spacing:5.088000pt;}
.ls2b{letter-spacing:5.221333pt;}
.ls4c{letter-spacing:5.280000pt;}
.ls45{letter-spacing:5.397333pt;}
.ls7{letter-spacing:5.440000pt;}
.ls3e{letter-spacing:5.456000pt;}
.ls46{letter-spacing:5.514667pt;}
.ls1b{letter-spacing:5.632000pt;}
.ls1c{letter-spacing:6.042667pt;}
.ls64{letter-spacing:6.277333pt;}
.ls3b{letter-spacing:6.512000pt;}
.ls3a{letter-spacing:6.629333pt;}
.ls38{letter-spacing:6.688000pt;}
.ls5d{letter-spacing:6.746667pt;}
.ls40{letter-spacing:6.805333pt;}
.ls5e{letter-spacing:6.922667pt;}
.ls58{letter-spacing:6.981333pt;}
.ls0{letter-spacing:21.333333pt;}
.ls56{letter-spacing:1812.060800pt;}
.ls22{letter-spacing:1841.394133pt;}
.ls54{letter-spacing:1896.905600pt;}
.ls12{letter-spacing:1926.238933pt;}
.ws0{word-spacing:-20.160000pt;}
.ws1{word-spacing:-15.120000pt;}
.ws1d{word-spacing:-14.666667pt;}
.ws6a{word-spacing:-12.877333pt;}
.ws26{word-spacing:-12.320000pt;}
.ws38{word-spacing:-11.333333pt;}
.ws2{word-spacing:-8.976000pt;}
.ws39{word-spacing:-8.008000pt;}
.ws3a{word-spacing:-6.552000pt;}
.wsc1{word-spacing:-2.229333pt;}
.wsbf{word-spacing:-1.994667pt;}
.wsbd{word-spacing:-1.584000pt;}
.wsb5{word-spacing:-1.525333pt;}
.wsb7{word-spacing:-1.466667pt;}
.wsb0{word-spacing:-1.056000pt;}
.ws87{word-spacing:-0.821333pt;}
.wsa8{word-spacing:-0.762667pt;}
.ws96{word-spacing:-0.704000pt;}
.wsaf{word-spacing:-0.586667pt;}
.ws9d{word-spacing:-0.528000pt;}
.ws4b{word-spacing:-0.469333pt;}
.wsa4{word-spacing:-0.410667pt;}
.wsbc{word-spacing:-0.352000pt;}
.wsb2{word-spacing:-0.293333pt;}
.wsa3{word-spacing:-0.234667pt;}
.ws8a{word-spacing:-0.176000pt;}
.ws99{word-spacing:-0.160000pt;}
.wsb1{word-spacing:-0.117333pt;}
.ws54{word-spacing:-0.096000pt;}
.ws69{word-spacing:-0.058667pt;}
.ws4{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.058667pt;}
.ws23{word-spacing:0.117333pt;}
.ws78{word-spacing:0.176000pt;}
.ws1c{word-spacing:0.226667pt;}
.ws7f{word-spacing:0.234667pt;}
.ws42{word-spacing:0.293333pt;}
.ws1b{word-spacing:0.317333pt;}
.wsae{word-spacing:0.320000pt;}
.ws43{word-spacing:0.352000pt;}
.ws5c{word-spacing:0.410667pt;}
.ws17{word-spacing:0.453333pt;}
.ws5a{word-spacing:0.469333pt;}
.ws77{word-spacing:0.528000pt;}
.ws4e{word-spacing:0.586667pt;}
.ws74{word-spacing:0.645333pt;}
.ws81{word-spacing:0.704000pt;}
.ws5f{word-spacing:0.762667pt;}
.ws73{word-spacing:0.821333pt;}
.ws5{word-spacing:0.853333pt;}
.ws8e{word-spacing:0.880000pt;}
.ws58{word-spacing:0.912000pt;}
.ws70{word-spacing:0.938667pt;}
.ws8f{word-spacing:0.997333pt;}
.wsa1{word-spacing:1.013333pt;}
.ws63{word-spacing:1.056000pt;}
.ws55{word-spacing:1.104000pt;}
.ws66{word-spacing:1.114667pt;}
.wsa{word-spacing:1.133333pt;}
.ws71{word-spacing:1.173333pt;}
.wsb8{word-spacing:1.232000pt;}
.ws91{word-spacing:1.248000pt;}
.ws20{word-spacing:1.280000pt;}
.ws2c{word-spacing:1.290667pt;}
.ws3{word-spacing:1.314667pt;}
.ws44{word-spacing:1.349333pt;}
.wse{word-spacing:1.360000pt;}
.wsa0{word-spacing:1.386667pt;}
.wsbb{word-spacing:1.408000pt;}
.ws95{word-spacing:1.440000pt;}
.wsb3{word-spacing:1.466667pt;}
.ws64{word-spacing:1.525333pt;}
.ws80{word-spacing:1.584000pt;}
.ws67{word-spacing:1.642667pt;}
.ws50{word-spacing:1.680000pt;}
.ws6c{word-spacing:1.701333pt;}
.ws12{word-spacing:1.722667pt;}
.ws22{word-spacing:1.760000pt;}
.ws5d{word-spacing:1.818667pt;}
.ws59{word-spacing:1.824000pt;}
.ws79{word-spacing:1.877333pt;}
.ws72{word-spacing:1.936000pt;}
.wsb{word-spacing:1.994667pt;}
.ws24{word-spacing:2.053333pt;}
.ws3f{word-spacing:2.112000pt;}
.ws90{word-spacing:2.160000pt;}
.ws6f{word-spacing:2.170667pt;}
.wsd{word-spacing:2.176000pt;}
.ws56{word-spacing:2.208000pt;}
.ws3e{word-spacing:2.229333pt;}
.ws8c{word-spacing:2.240000pt;}
.wsc{word-spacing:2.266667pt;}
.ws76{word-spacing:2.288000pt;}
.ws9f{word-spacing:2.293333pt;}
.ws60{word-spacing:2.346667pt;}
.ws18{word-spacing:2.402667pt;}
.ws40{word-spacing:2.405333pt;}
.ws7d{word-spacing:2.464000pt;}
.ws75{word-spacing:2.522667pt;}
.ws9e{word-spacing:2.560000pt;}
.ws88{word-spacing:2.581333pt;}
.ws5b{word-spacing:2.640000pt;}
.ws28{word-spacing:2.698667pt;}
.ws1a{word-spacing:2.720000pt;}
.ws32{word-spacing:2.757333pt;}
.ws6{word-spacing:2.816000pt;}
.ws51{word-spacing:2.832000pt;}
.ws15{word-spacing:2.856000pt;}
.ws2f{word-spacing:2.874667pt;}
.ws98{word-spacing:2.933333pt;}
.ws92{word-spacing:2.976000pt;}
.ws61{word-spacing:2.992000pt;}
.ws49{word-spacing:3.050667pt;}
.wsb9{word-spacing:3.109333pt;}
.ws65{word-spacing:3.168000pt;}
.ws9c{word-spacing:3.226667pt;}
.ws13{word-spacing:3.264000pt;}
.ws41{word-spacing:3.285333pt;}
.wsa6{word-spacing:3.306667pt;}
.ws2b{word-spacing:3.344000pt;}
.ws5e{word-spacing:3.402667pt;}
.ws57{word-spacing:3.456000pt;}
.ws9b{word-spacing:3.461333pt;}
.wsa7{word-spacing:3.466667pt;}
.ws68{word-spacing:3.520000pt;}
.ws46{word-spacing:3.578667pt;}
.ws89{word-spacing:3.637333pt;}
.ws52{word-spacing:3.648000pt;}
.ws35{word-spacing:3.696000pt;}
.wsf{word-spacing:3.717333pt;}
.ws93{word-spacing:3.744000pt;}
.ws9a{word-spacing:3.754667pt;}
.ws7a{word-spacing:3.813333pt;}
.ws62{word-spacing:3.872000pt;}
.ws47{word-spacing:3.930667pt;}
.ws94{word-spacing:3.936000pt;}
.ws19{word-spacing:3.944000pt;}
.ws2e{word-spacing:3.989333pt;}
.wsaa{word-spacing:4.000000pt;}
.ws3d{word-spacing:4.048000pt;}
.ws33{word-spacing:4.106667pt;}
.ws30{word-spacing:4.165333pt;}
.ws4f{word-spacing:4.176000pt;}
.ws6e{word-spacing:4.224000pt;}
.ws14{word-spacing:4.261333pt;}
.ws37{word-spacing:4.282667pt;}
.ws3b{word-spacing:4.341333pt;}
.ws21{word-spacing:4.373333pt;}
.ws6b{word-spacing:4.400000pt;}
.ws31{word-spacing:4.458667pt;}
.ws16{word-spacing:4.488000pt;}
.ws2a{word-spacing:4.517333pt;}
.ws45{word-spacing:4.576000pt;}
.ws10{word-spacing:4.578667pt;}
.ws7b{word-spacing:4.634667pt;}
.ws7c{word-spacing:4.693333pt;}
.ws11{word-spacing:4.714667pt;}
.ws85{word-spacing:4.746667pt;}
.ws4a{word-spacing:4.752000pt;}
.ws9{word-spacing:4.760000pt;}
.ws48{word-spacing:4.810667pt;}
.ws84{word-spacing:4.853333pt;}
.ws2d{word-spacing:4.869333pt;}
.ws4d{word-spacing:4.928000pt;}
.wsa5{word-spacing:4.960000pt;}
.ws7e{word-spacing:4.986667pt;}
.ws53{word-spacing:5.040000pt;}
.wsad{word-spacing:5.045333pt;}
.ws6d{word-spacing:5.162667pt;}
.ws97{word-spacing:5.221333pt;}
.ws8d{word-spacing:5.280000pt;}
.ws83{word-spacing:5.338667pt;}
.ws82{word-spacing:5.397333pt;}
.wsac{word-spacing:5.456000pt;}
.ws29{word-spacing:5.514667pt;}
.ws4c{word-spacing:5.573333pt;}
.ws86{word-spacing:5.600000pt;}
.ws34{word-spacing:5.632000pt;}
.ws8b{word-spacing:5.690667pt;}
.wsba{word-spacing:5.749333pt;}
.wsb6{word-spacing:5.808000pt;}
.ws27{word-spacing:5.866667pt;}
.ws3c{word-spacing:5.925333pt;}
.ws36{word-spacing:5.984000pt;}
.wsab{word-spacing:6.101333pt;}
.ws25{word-spacing:6.160000pt;}
.wsb4{word-spacing:6.218667pt;}
.wsbe{word-spacing:6.688000pt;}
.wsa9{word-spacing:6.922667pt;}
.wsc0{word-spacing:7.509333pt;}
.ws7{word-spacing:9.472000pt;}
.ws1e{word-spacing:11.333333pt;}
.ws8{word-spacing:11.861333pt;}
.ws1f{word-spacing:75.296000pt;}
._2{margin-left:-21.333333pt;}
._4{margin-left:-20.126400pt;}
._e{margin-left:-18.773333pt;}
._d{margin-left:-17.013333pt;}
._15{margin-left:-12.320000pt;}
._b{margin-left:-3.285333pt;}
._c{margin-left:-1.877333pt;}
._3{margin-left:-0.963467pt;}
._10{width:0.909333pt;}
._6{width:2.006400pt;}
._13{width:2.976000pt;}
._17{width:4.106667pt;}
._8{width:5.136000pt;}
._14{width:6.629333pt;}
._16{width:7.978667pt;}
._0{width:9.088000pt;}
._18{width:10.032000pt;}
._1{width:11.861333pt;}
._5{width:14.338133pt;}
._11{width:24.448000pt;}
._7{width:43.631467pt;}
._12{width:45.696000pt;}
._9{width:46.752000pt;}
._f{width:51.379733pt;}
._a{width:75.296000pt;}
.fsa{font-size:31.200000pt;}
.fs9{font-size:38.133333pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fsb{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fsc{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs3{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y242{bottom:122.610533pt;}
.y6d{bottom:122.828933pt;}
.y9d{bottom:122.855733pt;}
.y269{bottom:122.919867pt;}
.y1ae{bottom:123.154133pt;}
.y1f8{bottom:123.233067pt;}
.y21d{bottom:123.257200pt;}
.y192{bottom:123.314000pt;}
.y138{bottom:123.354133pt;}
.y158{bottom:123.402533pt;}
.y1ec{bottom:123.428800pt;}
.y115{bottom:123.737733pt;}
.yc7{bottom:123.855600pt;}
.y1d6{bottom:123.887333pt;}
.y9{bottom:124.725733pt;}
.yee{bottom:126.434267pt;}
.y8{bottom:136.096400pt;}
.y9c{bottom:137.063733pt;}
.y6c{bottom:141.308933pt;}
.y241{bottom:141.354533pt;}
.y1ad{bottom:141.634133pt;}
.y268{bottom:141.649200pt;}
.y1f7{bottom:141.713067pt;}
.y21c{bottom:141.737200pt;}
.y191{bottom:141.794000pt;}
.y137{bottom:141.834133pt;}
.y157{bottom:141.882533pt;}
.y1eb{bottom:141.908800pt;}
.y114{bottom:142.217733pt;}
.yc6{bottom:142.335600pt;}
.y1d5{bottom:142.367333pt;}
.y9b{bottom:151.271733pt;}
.y7{bottom:153.128267pt;}
.y6b{bottom:159.788933pt;}
.y21b{bottom:160.217200pt;}
.y190{bottom:160.274000pt;}
.y136{bottom:160.314133pt;}
.y277{bottom:160.362533pt;}
.y267{bottom:160.378533pt;}
.y1ea{bottom:160.388800pt;}
.y113{bottom:160.697733pt;}
.yc5{bottom:160.815600pt;}
.y1d4{bottom:160.847333pt;}
.y9a{bottom:165.479733pt;}
.y240{bottom:169.338533pt;}
.y1ac{bottom:169.354133pt;}
.y1f6{bottom:169.433067pt;}
.y156{bottom:169.602533pt;}
.yed{bottom:169.655600pt;}
.y6{bottom:170.173600pt;}
.y18f{bottom:178.754000pt;}
.y135{bottom:178.794133pt;}
.y1e9{bottom:178.868800pt;}
.y112{bottom:179.177733pt;}
.yc4{bottom:179.295600pt;}
.y1d3{bottom:179.327333pt;}
.y99{bottom:179.687733pt;}
.y5{bottom:187.218933pt;}
.y6a{bottom:187.508933pt;}
.y1ab{bottom:187.834133pt;}
.y155{bottom:188.082533pt;}
.yec{bottom:188.135600pt;}
.y266{bottom:188.347867pt;}
.y21a{bottom:188.523867pt;}
.y98{bottom:193.895733pt;}
.y1f5{bottom:197.153067pt;}
.y18e{bottom:197.234000pt;}
.y1e8{bottom:197.348800pt;}
.y111{bottom:197.657733pt;}
.yc3{bottom:197.775600pt;}
.y1d2{bottom:197.807333pt;}
.y4{bottom:198.589600pt;}
.y69{bottom:205.988933pt;}
.y1aa{bottom:206.314133pt;}
.y154{bottom:206.562533pt;}
.yeb{bottom:206.615600pt;}
.y23f{bottom:206.826533pt;}
.y265{bottom:207.077200pt;}
.y97{bottom:208.103733pt;}
.y1f4{bottom:215.633067pt;}
.y3{bottom:215.634933pt;}
.y18d{bottom:215.714000pt;}
.y1e7{bottom:215.828800pt;}
.y110{bottom:216.137733pt;}
.yc2{bottom:216.255600pt;}
.y1d1{bottom:216.287333pt;}
.y219{bottom:216.830533pt;}
.y134{bottom:219.733600pt;}
.y96{bottom:222.311733pt;}
.y68{bottom:224.468933pt;}
.y1a9{bottom:224.794133pt;}
.y153{bottom:225.042533pt;}
.yea{bottom:225.095600pt;}
.y2{bottom:227.005600pt;}
.y1e6{bottom:234.308800pt;}
.y10f{bottom:234.617733pt;}
.yc1{bottom:234.735600pt;}
.y23e{bottom:234.810533pt;}
.y264{bottom:235.046533pt;}
.y218{bottom:235.310533pt;}
.y133{bottom:236.085600pt;}
.y95{bottom:240.119733pt;}
.y67{bottom:242.948933pt;}
.y1a8{bottom:243.274133pt;}
.y152{bottom:243.522533pt;}
.ye9{bottom:243.575600pt;}
.y1d0{bottom:244.007333pt;}
.y94{bottom:250.743733pt;}
.y276{bottom:252.762533pt;}
.yc0{bottom:253.215600pt;}
.y263{bottom:253.775867pt;}
.y1f3{bottom:256.577867pt;}
.y18c{bottom:256.653333pt;}
.y66{bottom:261.428933pt;}
.y1a7{bottom:261.754133pt;}
.y151{bottom:262.002533pt;}
.y1e5{bottom:262.028800pt;}
.ye8{bottom:262.055600pt;}
.y10e{bottom:262.337733pt;}
.y1cf{bottom:262.487333pt;}
.y23d{bottom:262.794533pt;}
.y217{bottom:263.617200pt;}
.y93{bottom:264.951733pt;}
.y275{bottom:271.242533pt;}
.ybf{bottom:271.695600pt;}
.y32{bottom:272.936267pt;}
.y41{bottom:272.971467pt;}
.y18b{bottom:273.005333pt;}
.y92{bottom:279.159733pt;}
.y65{bottom:279.908933pt;}
.y150{bottom:280.482533pt;}
.y1e4{bottom:280.508800pt;}
.ye7{bottom:280.535600pt;}
.y10d{bottom:280.817733pt;}
.y1ce{bottom:280.967333pt;}
.y23c{bottom:281.538533pt;}
.y262{bottom:281.745200pt;}
.y216{bottom:282.097200pt;}
.y31{bottom:286.445600pt;}
.y40{bottom:286.480800pt;}
.y274{bottom:289.722533pt;}
.ybe{bottom:290.175600pt;}
.y91{bottom:293.367733pt;}
.y132{bottom:294.768267pt;}
.y64{bottom:298.388933pt;}
.y177{bottom:298.847467pt;}
.y14f{bottom:298.962533pt;}
.y1e3{bottom:298.988800pt;}
.ye6{bottom:299.015600pt;}
.y10c{bottom:299.297733pt;}
.y1cd{bottom:299.447333pt;}
.y30{bottom:299.954933pt;}
.y3f{bottom:299.990133pt;}
.y23b{bottom:300.282533pt;}
.y261{bottom:300.474533pt;}
.y215{bottom:300.577200pt;}
.y1a6{bottom:302.693467pt;}
.y90{bottom:307.575733pt;}
.y273{bottom:308.202533pt;}
.ybd{bottom:308.655600pt;}
.y131{bottom:310.408267pt;}
.y2f{bottom:313.464267pt;}
.y3e{bottom:313.499467pt;}
.y63{bottom:316.868933pt;}
.y176{bottom:317.327467pt;}
.y14e{bottom:317.442533pt;}
.y1e2{bottom:317.468800pt;}
.ye5{bottom:317.495600pt;}
.y10b{bottom:317.777733pt;}
.y1cc{bottom:317.927333pt;}
.y1a5{bottom:319.045467pt;}
.y8f{bottom:325.383733pt;}
.y130{bottom:326.048267pt;}
.y2e{bottom:326.973600pt;}
.y3d{bottom:327.008800pt;}
.ybc{bottom:327.135600pt;}
.y23a{bottom:328.266533pt;}
.y260{bottom:328.443867pt;}
.y214{bottom:328.883867pt;}
.y18a{bottom:331.666800pt;}
.y62{bottom:335.348933pt;}
.y175{bottom:335.807467pt;}
.y14d{bottom:335.922533pt;}
.y1e1{bottom:335.948800pt;}
.ye4{bottom:335.975600pt;}
.y10a{bottom:336.257733pt;}
.y1cb{bottom:336.407333pt;}
.y3c{bottom:340.518133pt;}
.y12f{bottom:341.688267pt;}
.ybb{bottom:345.615600pt;}
.y239{bottom:347.010533pt;}
.y25f{bottom:347.173200pt;}
.y213{bottom:347.363867pt;}
.y2d{bottom:347.577600pt;}
.y189{bottom:350.146800pt;}
.y61{bottom:353.828933pt;}
.y3b{bottom:354.027467pt;}
.y174{bottom:354.287467pt;}
.y14c{bottom:354.402533pt;}
.ye3{bottom:354.455600pt;}
.y109{bottom:354.737733pt;}
.y1ca{bottom:354.887333pt;}
.y12e{bottom:357.328267pt;}
.yba{bottom:364.095600pt;}
.y212{bottom:365.843867pt;}
.y25e{bottom:365.902533pt;}
.y3a{bottom:367.536800pt;}
.y188{bottom:368.626800pt;}
.y60{bottom:372.308933pt;}
.y173{bottom:372.767467pt;}
.y14b{bottom:372.882533pt;}
.y8e{bottom:372.895733pt;}
.y108{bottom:373.217733pt;}
.y1c9{bottom:373.367333pt;}
.y238{bottom:374.994533pt;}
.y1e0{bottom:376.893600pt;}
.y1a4{bottom:380.719867pt;}
.y39{bottom:381.046133pt;}
.y272{bottom:382.122533pt;}
.ye2{bottom:382.175600pt;}
.yb9{bottom:382.575600pt;}
.y211{bottom:384.323867pt;}
.y187{bottom:387.106800pt;}
.y5f{bottom:390.788933pt;}
.y172{bottom:391.247467pt;}
.y14a{bottom:391.362533pt;}
.y12d{bottom:391.363867pt;}
.y8d{bottom:391.375733pt;}
.y107{bottom:391.697733pt;}
.y1c8{bottom:391.847333pt;}
.y237{bottom:393.738533pt;}
.y25d{bottom:393.871867pt;}
.y38{bottom:394.555467pt;}
.y1a3{bottom:399.199867pt;}
.y271{bottom:400.602533pt;}
.ye1{bottom:400.655600pt;}
.yb8{bottom:401.055600pt;}
.y186{bottom:405.586800pt;}
.y37{bottom:408.064800pt;}
.y5e{bottom:409.268933pt;}
.y171{bottom:409.727467pt;}
.y149{bottom:409.842533pt;}
.y12c{bottom:409.843867pt;}
.y8c{bottom:409.855733pt;}
.y106{bottom:410.177733pt;}
.y1c7{bottom:410.327333pt;}
.y25c{bottom:412.601200pt;}
.y210{bottom:412.630533pt;}
.y1a2{bottom:417.679867pt;}
.ye0{bottom:419.135600pt;}
.yb7{bottom:419.535600pt;}
.y36{bottom:421.574133pt;}
.y236{bottom:421.722533pt;}
.y185{bottom:424.066800pt;}
.y5d{bottom:427.748933pt;}
.y170{bottom:428.207467pt;}
.y148{bottom:428.322533pt;}
.y12b{bottom:428.323867pt;}
.y8b{bottom:428.335733pt;}
.y105{bottom:428.657733pt;}
.y1c6{bottom:428.807333pt;}
.y20f{bottom:431.110533pt;}
.y25b{bottom:431.330533pt;}
.y35{bottom:435.083467pt;}
.y1a1{bottom:436.159867pt;}
.y27b{bottom:437.563867pt;}
.ydf{bottom:437.615600pt;}
.yb6{bottom:438.015600pt;}
.y235{bottom:440.466533pt;}
.y184{bottom:442.546800pt;}
.y5c{bottom:446.228933pt;}
.y16f{bottom:446.687467pt;}
.y147{bottom:446.802533pt;}
.y12a{bottom:446.803867pt;}
.y8a{bottom:446.815733pt;}
.y104{bottom:447.137733pt;}
.y1c5{bottom:447.287333pt;}
.y34{bottom:448.592800pt;}
.y25a{bottom:450.059867pt;}
.y1df{bottom:452.552267pt;}
.y1a0{bottom:454.639867pt;}
.y1f2{bottom:456.042533pt;}
.y27a{bottom:456.043867pt;}
.yde{bottom:456.095600pt;}
.yb5{bottom:456.495600pt;}
.y20e{bottom:459.417200pt;}
.y33{bottom:462.102133pt;}
.y5b{bottom:464.708933pt;}
.y16e{bottom:465.167467pt;}
.y146{bottom:465.282533pt;}
.y129{bottom:465.283867pt;}
.y89{bottom:465.295733pt;}
.y103{bottom:465.617733pt;}
.y1c4{bottom:465.767333pt;}
.y1de{bottom:468.192267pt;}
.y234{bottom:468.450533pt;}
.y259{bottom:468.789200pt;}
.y19f{bottom:473.119867pt;}
.y1f1{bottom:474.522533pt;}
.ydd{bottom:474.575600pt;}
.yb4{bottom:474.975600pt;}
.y5a{bottom:483.188933pt;}
.y183{bottom:483.494133pt;}
.y16d{bottom:483.647467pt;}
.y145{bottom:483.762533pt;}
.y128{bottom:483.763867pt;}
.y88{bottom:483.775733pt;}
.y102{bottom:484.097733pt;}
.y1c3{bottom:484.247333pt;}
.y233{bottom:487.194533pt;}
.y20d{bottom:487.723867pt;}
.y19e{bottom:491.599867pt;}
.y1f0{bottom:493.002533pt;}
.ydc{bottom:493.055600pt;}
.yb3{bottom:493.455600pt;}
.y258{bottom:496.758533pt;}
.y2c{bottom:500.974267pt;}
.y1a{bottom:501.044000pt;}
.y59{bottom:501.668933pt;}
.y144{bottom:502.242533pt;}
.y127{bottom:502.243867pt;}
.y87{bottom:502.255733pt;}
.y101{bottom:502.577733pt;}
.y1c2{bottom:502.727333pt;}
.y232{bottom:505.938533pt;}
.y20c{bottom:506.203867pt;}
.y182{bottom:506.235467pt;}
.y19d{bottom:510.079867pt;}
.y16c{bottom:511.367467pt;}
.y1ef{bottom:511.482533pt;}
.y279{bottom:511.483867pt;}
.ydb{bottom:511.535600pt;}
.yb2{bottom:511.935600pt;}
.y2b{bottom:514.483600pt;}
.y19{bottom:514.553333pt;}
.y257{bottom:515.487867pt;}
.y58{bottom:520.148933pt;}
.y143{bottom:520.722533pt;}
.y126{bottom:520.723867pt;}
.y86{bottom:520.735733pt;}
.y1c1{bottom:521.207333pt;}
.y20b{bottom:524.683867pt;}
.y2a{bottom:527.992933pt;}
.y18{bottom:528.062667pt;}
.y19c{bottom:528.559867pt;}
.y16b{bottom:529.847467pt;}
.y1ee{bottom:529.962533pt;}
.y278{bottom:529.963867pt;}
.yda{bottom:530.015600pt;}
.yb1{bottom:530.415600pt;}
.y231{bottom:533.922533pt;}
.y256{bottom:534.217200pt;}
.y57{bottom:538.628933pt;}
.y142{bottom:539.202533pt;}
.y125{bottom:539.203867pt;}
.y85{bottom:539.215733pt;}
.y1c0{bottom:539.687333pt;}
.y29{bottom:541.502267pt;}
.y17{bottom:541.572000pt;}
.y100{bottom:545.412133pt;}
.y19b{bottom:547.039867pt;}
.y16a{bottom:548.327467pt;}
.y1ed{bottom:548.442533pt;}
.yd9{bottom:548.495600pt;}
.yb0{bottom:548.895600pt;}
.y230{bottom:552.666533pt;}
.y255{bottom:552.946533pt;}
.y20a{bottom:552.990533pt;}
.y28{bottom:555.011600pt;}
.y16{bottom:555.081333pt;}
.y270{bottom:557.682533pt;}
.y124{bottom:557.683867pt;}
.y84{bottom:557.695733pt;}
.y1bf{bottom:558.167333pt;}
.y19a{bottom:565.519867pt;}
.y56{bottom:566.348933pt;}
.y169{bottom:566.807467pt;}
.y141{bottom:566.922533pt;}
.yd8{bottom:566.975600pt;}
.yaf{bottom:567.375600pt;}
.y27{bottom:568.520933pt;}
.y15{bottom:568.590667pt;}
.y22f{bottom:571.410533pt;}
.y209{bottom:571.470533pt;}
.y26f{bottom:576.162533pt;}
.y1dd{bottom:576.163867pt;}
.y83{bottom:576.175733pt;}
.y1be{bottom:576.647333pt;}
.y254{bottom:580.915867pt;}
.y181{bottom:581.894133pt;}
.y26{bottom:582.030267pt;}
.y55{bottom:584.828933pt;}
.y168{bottom:585.287467pt;}
.y140{bottom:585.402533pt;}
.y123{bottom:585.403867pt;}
.yd7{bottom:585.455600pt;}
.yae{bottom:585.855600pt;}
.y14{bottom:589.194667pt;}
.y208{bottom:589.950533pt;}
.y26e{bottom:594.642533pt;}
.y1dc{bottom:594.643867pt;}
.y82{bottom:594.655733pt;}
.y25{bottom:595.539600pt;}
.y180{bottom:597.534133pt;}
.y22e{bottom:599.394533pt;}
.y253{bottom:599.645200pt;}
.y199{bottom:602.482000pt;}
.y54{bottom:603.308933pt;}
.y167{bottom:603.767467pt;}
.y13f{bottom:603.882533pt;}
.y122{bottom:603.883867pt;}
.y24{bottom:609.048933pt;}
.yd6{bottom:613.123867pt;}
.yad{bottom:613.575600pt;}
.y1bd{bottom:613.604000pt;}
.y198{bottom:618.122000pt;}
.y22d{bottom:618.138533pt;}
.y207{bottom:618.257200pt;}
.y252{bottom:618.374533pt;}
.y53{bottom:621.788933pt;}
.y166{bottom:622.247467pt;}
.y13e{bottom:622.362533pt;}
.y121{bottom:622.363867pt;}
.y81{bottom:622.375733pt;}
.y23{bottom:622.558267pt;}
.y1bc{bottom:629.244000pt;}
.yff{bottom:631.602533pt;}
.yd5{bottom:631.603867pt;}
.yac{bottom:632.055600pt;}
.y197{bottom:633.762000pt;}
.y22{bottom:636.067600pt;}
.y206{bottom:636.737200pt;}
.y22c{bottom:636.882533pt;}
.y52{bottom:640.268933pt;}
.y165{bottom:640.727467pt;}
.y13d{bottom:640.842533pt;}
.y120{bottom:640.843867pt;}
.y80{bottom:640.855733pt;}
.y251{bottom:646.343867pt;}
.y196{bottom:649.402000pt;}
.y21{bottom:649.576933pt;}
.yfe{bottom:650.082533pt;}
.yd4{bottom:650.083867pt;}
.yab{bottom:650.535600pt;}
.y205{bottom:655.217200pt;}
.y51{bottom:658.748933pt;}
.y13c{bottom:659.322533pt;}
.y11f{bottom:659.323867pt;}
.y7f{bottom:659.335733pt;}
.y20{bottom:663.086267pt;}
.y1bb{bottom:663.341467pt;}
.y22b{bottom:664.866533pt;}
.y195{bottom:665.042000pt;}
.y250{bottom:665.073200pt;}
.yfd{bottom:668.562533pt;}
.yd3{bottom:668.563867pt;}
.yaa{bottom:669.015600pt;}
.y1f{bottom:676.595600pt;}
.y50{bottom:677.228933pt;}
.y13b{bottom:677.802533pt;}
.y11e{bottom:677.803867pt;}
.y7e{bottom:677.815733pt;}
.y194{bottom:680.682000pt;}
.y164{bottom:681.666933pt;}
.y1ba{bottom:681.821467pt;}
.y204{bottom:683.523867pt;}
.y22a{bottom:683.610533pt;}
.y17f{bottom:687.042533pt;}
.yd2{bottom:687.043867pt;}
.ya9{bottom:687.495600pt;}
.y1e{bottom:690.104933pt;}
.y24f{bottom:693.042533pt;}
.y4f{bottom:695.708933pt;}
.yfc{bottom:696.282533pt;}
.y11d{bottom:696.283867pt;}
.y7d{bottom:696.295733pt;}
.y163{bottom:698.018933pt;}
.y1b9{bottom:700.301467pt;}
.y1d{bottom:703.614267pt;}
.y17e{bottom:705.522533pt;}
.yd1{bottom:705.523867pt;}
.ya8{bottom:705.975600pt;}
.y229{bottom:711.594533pt;}
.y24e{bottom:711.771867pt;}
.y203{bottom:711.830533pt;}
.y4e{bottom:714.188933pt;}
.yfb{bottom:714.762533pt;}
.y11c{bottom:714.763867pt;}
.y7c{bottom:714.775733pt;}
.y1c{bottom:717.123600pt;}
.y1b8{bottom:718.781467pt;}
.y17d{bottom:724.002533pt;}
.yd0{bottom:724.003867pt;}
.ya7{bottom:724.455600pt;}
.y202{bottom:730.310533pt;}
.y228{bottom:730.338533pt;}
.y24d{bottom:730.501200pt;}
.y1b{bottom:730.632933pt;}
.y4d{bottom:732.668933pt;}
.yfa{bottom:733.242533pt;}
.y11b{bottom:733.243867pt;}
.y7b{bottom:733.255733pt;}
.y1b7{bottom:737.261467pt;}
.y17c{bottom:742.482533pt;}
.ycf{bottom:742.483867pt;}
.ya6{bottom:742.935600pt;}
.y201{bottom:748.790533pt;}
.y4c{bottom:751.148933pt;}
.yf9{bottom:751.722533pt;}
.y11a{bottom:751.723867pt;}
.y7a{bottom:751.735733pt;}
.y1b6{bottom:755.741467pt;}
.y162{bottom:756.685733pt;}
.y227{bottom:758.322533pt;}
.y24c{bottom:758.470533pt;}
.y17b{bottom:760.962533pt;}
.yce{bottom:760.963867pt;}
.ya5{bottom:761.415600pt;}
.y4b{bottom:769.628933pt;}
.yf8{bottom:770.202533pt;}
.y119{bottom:770.203867pt;}
.y79{bottom:770.215733pt;}
.y1b5{bottom:774.221467pt;}
.y161{bottom:775.165733pt;}
.y226{bottom:777.066533pt;}
.y200{bottom:777.097200pt;}
.y24b{bottom:777.199867pt;}
.y17a{bottom:779.442533pt;}
.ycd{bottom:779.443867pt;}
.ya4{bottom:779.895600pt;}
.y4a{bottom:788.108933pt;}
.yf7{bottom:788.682533pt;}
.y118{bottom:788.683867pt;}
.y78{bottom:788.695733pt;}
.y1b4{bottom:792.701467pt;}
.y160{bottom:793.645733pt;}
.y179{bottom:797.922533pt;}
.ycc{bottom:797.923867pt;}
.y13{bottom:798.152400pt;}
.ya3{bottom:798.375600pt;}
.y225{bottom:805.050533pt;}
.y24a{bottom:805.169200pt;}
.y1ff{bottom:805.403867pt;}
.y49{bottom:806.588933pt;}
.yf6{bottom:807.162533pt;}
.y117{bottom:807.163867pt;}
.y1b3{bottom:811.181467pt;}
.y15f{bottom:812.125733pt;}
.y178{bottom:816.402533pt;}
.ycb{bottom:816.403867pt;}
.y77{bottom:816.415733pt;}
.y12{bottom:816.621467pt;}
.y224{bottom:823.794533pt;}
.y1fe{bottom:823.883867pt;}
.y249{bottom:823.898533pt;}
.yf5{bottom:825.642533pt;}
.y116{bottom:825.643867pt;}
.y15e{bottom:830.605733pt;}
.y13a{bottom:834.882533pt;}
.yca{bottom:834.883867pt;}
.y76{bottom:834.895733pt;}
.ya2{bottom:839.325733pt;}
.y223{bottom:842.538533pt;}
.yf4{bottom:844.122533pt;}
.y193{bottom:844.123867pt;}
.y1b2{bottom:848.140933pt;}
.y248{bottom:851.867867pt;}
.y1fd{bottom:852.190533pt;}
.y139{bottom:853.362533pt;}
.yc9{bottom:853.363867pt;}
.y75{bottom:853.375733pt;}
.y11{bottom:856.082800pt;}
.y48{bottom:861.522267pt;}
.ya1{bottom:862.067067pt;}
.y26d{bottom:862.602533pt;}
.y1db{bottom:862.603867pt;}
.y1b1{bottom:863.780933pt;}
.y15d{bottom:867.566667pt;}
.y222{bottom:870.522533pt;}
.y247{bottom:870.597200pt;}
.y1fc{bottom:870.670533pt;}
.yf3{bottom:871.842533pt;}
.yc8{bottom:871.843867pt;}
.y74{bottom:871.855733pt;}
.y10{bottom:878.482800pt;}
.y1b0{bottom:879.420933pt;}
.y26c{bottom:881.082533pt;}
.y1da{bottom:881.083867pt;}
.y15c{bottom:883.206667pt;}
.ya0{bottom:884.808400pt;}
.y47{bottom:886.402267pt;}
.y1fb{bottom:889.150533pt;}
.y221{bottom:889.266533pt;}
.yf2{bottom:890.322533pt;}
.y73{bottom:890.323867pt;}
.y1af{bottom:895.060933pt;}
.y246{bottom:898.566533pt;}
.y15b{bottom:898.846667pt;}
.y26b{bottom:899.562533pt;}
.y1d9{bottom:899.563867pt;}
.y46{bottom:902.042267pt;}
.yf1{bottom:908.802533pt;}
.y72{bottom:908.803867pt;}
.y15a{bottom:914.486667pt;}
.y220{bottom:917.250533pt;}
.y245{bottom:917.295867pt;}
.y1fa{bottom:917.457200pt;}
.y45{bottom:917.682267pt;}
.yf{bottom:917.936000pt;}
.y26a{bottom:918.042533pt;}
.y1d8{bottom:918.043867pt;}
.yf0{bottom:927.282533pt;}
.y71{bottom:927.283867pt;}
.y159{bottom:930.126667pt;}
.y44{bottom:933.322267pt;}
.y1f9{bottom:935.937200pt;}
.y21f{bottom:935.994533pt;}
.y1d7{bottom:936.523867pt;}
.y244{bottom:945.265200pt;}
.yef{bottom:945.762533pt;}
.y70{bottom:945.763867pt;}
.ye{bottom:946.736000pt;}
.y21e{bottom:963.978533pt;}
.y243{bottom:963.994533pt;}
.y9f{bottom:964.242533pt;}
.y6f{bottom:964.243867pt;}
.yd{bottom:975.536000pt;}
.y43{bottom:980.669333pt;}
.y9e{bottom:982.722533pt;}
.y6e{bottom:982.723867pt;}
.yc{bottom:1033.547067pt;}
.y42{bottom:1041.982133pt;}
.yb{bottom:1061.227067pt;}
.ya{bottom:1073.227067pt;}
.hf{height:24.804000pt;}
.h4{height:31.402667pt;}
.h3{height:31.701333pt;}
.ha{height:36.040000pt;}
.h11{height:36.864000pt;}
.h10{height:38.160000pt;}
.h2{height:40.304688pt;}
.h8{height:42.400000pt;}
.h9{height:42.794667pt;}
.hc{height:46.640000pt;}
.hd{height:47.963467pt;}
.h14{height:48.111733pt;}
.h12{height:48.122400pt;}
.he{height:48.210933pt;}
.h6{height:57.344000pt;}
.h7{height:59.360000pt;}
.h13{height:60.416000pt;}
.hb{height:65.450667pt;}
.h5{height:90.624000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x15{left:77.308933pt;}
.x9{left:79.454533pt;}
.xe{left:83.316000pt;}
.x16{left:96.218267pt;}
.x3{left:98.257200pt;}
.xa{left:110.705333pt;}
.x17{left:113.394533pt;}
.x19{left:115.108000pt;}
.x1a{left:120.939867pt;}
.x1b{left:122.658267pt;}
.x4{left:129.062800pt;}
.x5{left:134.396133pt;}
.x13{left:136.062933pt;}
.x18{left:137.788400pt;}
.x8{left:173.025333pt;}
.xf{left:226.938267pt;}
.x11{left:287.924267pt;}
.x10{left:291.095600pt;}
.xb{left:343.366667pt;}
.x7{left:360.647600pt;}
.x14{left:398.276267pt;}
.xc{left:475.433333pt;}
.xd{left:486.233200pt;}
.x12{left:575.074267pt;}
.x6{left:652.369467pt;}
.x1{left:710.776933pt;}
}




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