
    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_d2b3afe9d477d7b46baeaab5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_43931472ef6d60d44f09a00e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.196289;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_77330007f2c3ee3840ad5449.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_1f6ddeb0986331c839443c90.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937500;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_fb388fb558559af26a2de582.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b8eff50f09e996540efa7cfe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.115234;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_24049fad58069d2986e8c134.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2cc7fbf8b274cb1560da7800.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740234;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_ff67e7da60cf2f5ebd806390.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_dc70afe3ab782b93e9e65a42.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.420000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:42.767578px;}
.ls2{letter-spacing:53.639648px;}
.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;}
}
.wsf{word-spacing:-38.340819px;}
.ws4{word-spacing:-36.673829px;}
.ws38{word-spacing:-33.339843px;}
.wsc0{word-spacing:-30.005859px;}
.ws47{word-spacing:-26.671876px;}
.ws88{word-spacing:-22.500000px;}
.wsc3{word-spacing:-21.670899px;}
.ws33{word-spacing:-20.003906px;}
.ws3{word-spacing:-18.336914px;}
.ws1{word-spacing:-13.560000px;}
.ws0{word-spacing:-13.140000px;}
.ws7c{word-spacing:-0.138000px;}
.ws3d{word-spacing:-0.072000px;}
.ws59{word-spacing:-0.066000px;}
.wsce{word-spacing:-0.029989px;}
.wsc6{word-spacing:-0.023381px;}
.wsc8{word-spacing:-0.019551px;}
.ws89{word-spacing:-0.000034px;}
.ws40{word-spacing:-0.000033px;}
.ws9{word-spacing:-0.000022px;}
.ws85{word-spacing:-0.000020px;}
.ws99{word-spacing:-0.000014px;}
.ws12{word-spacing:-0.000010px;}
.ws81{word-spacing:-0.000003px;}
.ws2{word-spacing:0.000000px;}
.ws60{word-spacing:0.000001px;}
.ws71{word-spacing:0.000003px;}
.wse{word-spacing:0.000004px;}
.ws32{word-spacing:0.000012px;}
.ws4e{word-spacing:0.000013px;}
.ws8d{word-spacing:0.000016px;}
.ws21{word-spacing:0.000024px;}
.wsa1{word-spacing:4.464754px;}
.wsa8{word-spacing:4.464800px;}
.ws9e{word-spacing:4.464866px;}
.wscf{word-spacing:4.473991px;}
.ws41{word-spacing:4.499967px;}
.ws4b{word-spacing:4.499968px;}
.ws66{word-spacing:4.499978px;}
.ws6b{word-spacing:4.499979px;}
.ws96{word-spacing:4.499986px;}
.ws18{word-spacing:4.499989px;}
.ws1d{word-spacing:4.499990px;}
.ws55{word-spacing:4.499998px;}
.ws5{word-spacing:4.500000px;}
.ws1f{word-spacing:4.500002px;}
.wsb{word-spacing:4.500012px;}
.ws3e{word-spacing:4.500023px;}
.wsaa{word-spacing:8.964820px;}
.wsc4{word-spacing:8.974039px;}
.wscb{word-spacing:8.974046px;}
.wsa4{word-spacing:8.975128px;}
.ws11{word-spacing:8.999967px;}
.ws8e{word-spacing:8.999977px;}
.ws64{word-spacing:8.999978px;}
.ws87{word-spacing:8.999980px;}
.ws9d{word-spacing:8.999983px;}
.ws9b{word-spacing:8.999986px;}
.wsc{word-spacing:8.999989px;}
.ws76{word-spacing:8.999990px;}
.ws3b{word-spacing:8.999999px;}
.ws7{word-spacing:9.000000px;}
.ws16{word-spacing:9.000002px;}
.ws74{word-spacing:9.000003px;}
.ws35{word-spacing:9.000012px;}
.wsc2{word-spacing:9.000013px;}
.wsb4{word-spacing:9.000023px;}
.ws9f{word-spacing:13.472541px;}
.ws4c{word-spacing:13.499967px;}
.ws53{word-spacing:13.499978px;}
.wsd{word-spacing:13.499979px;}
.ws7e{word-spacing:13.499983px;}
.ws94{word-spacing:13.499986px;}
.ws1b{word-spacing:13.499990px;}
.ws93{word-spacing:13.499996px;}
.ws62{word-spacing:13.499998px;}
.ws8f{word-spacing:13.499999px;}
.wsa{word-spacing:13.500000px;}
.ws1e{word-spacing:13.500002px;}
.ws80{word-spacing:13.500009px;}
.wsb2{word-spacing:13.500012px;}
.ws36{word-spacing:13.500013px;}
.ws82{word-spacing:13.500017px;}
.ws3c{word-spacing:13.500024px;}
.wsb6{word-spacing:17.999967px;}
.ws97{word-spacing:17.999974px;}
.wsb9{word-spacing:17.999978px;}
.ws86{word-spacing:17.999983px;}
.ws92{word-spacing:17.999987px;}
.ws56{word-spacing:17.999990px;}
.ws6c{word-spacing:17.999998px;}
.ws6{word-spacing:18.000000px;}
.ws52{word-spacing:18.000001px;}
.ws68{word-spacing:18.000003px;}
.ws37{word-spacing:18.000012px;}
.ws6e{word-spacing:19.931873px;}
.ws54{word-spacing:19.931885px;}
.ws5a{word-spacing:19.931894px;}
.ws20{word-spacing:19.931896px;}
.ws6f{word-spacing:19.931904px;}
.wsba{word-spacing:19.931918px;}
.ws10{word-spacing:19.931919px;}
.ws70{word-spacing:19.931927px;}
.ws58{word-spacing:19.931930px;}
.wsa7{word-spacing:22.464820px;}
.wsa6{word-spacing:22.464866px;}
.wsc7{word-spacing:22.480449px;}
.wsca{word-spacing:22.481800px;}
.ws45{word-spacing:22.499967px;}
.ws5e{word-spacing:22.499978px;}
.ws46{word-spacing:22.499979px;}
.ws5c{word-spacing:22.499987px;}
.ws7d{word-spacing:22.499997px;}
.wsb0{word-spacing:22.500000px;}
.ws13{word-spacing:22.500001px;}
.ws39{word-spacing:22.500012px;}
.ws8a{word-spacing:22.500016px;}
.ws1c{word-spacing:22.500035px;}
.wsa2{word-spacing:24.023439px;}
.ws17{word-spacing:24.431896px;}
.ws42{word-spacing:24.431905px;}
.ws50{word-spacing:24.431907px;}
.ws3a{word-spacing:24.431909px;}
.ws77{word-spacing:24.431918px;}
.ws78{word-spacing:24.431927px;}
.ws49{word-spacing:24.431930px;}
.wsbb{word-spacing:24.431931px;}
.ws23{word-spacing:24.431941px;}
.wsb8{word-spacing:24.431942px;}
.wsa0{word-spacing:26.964820px;}
.ws61{word-spacing:26.999967px;}
.wsb3{word-spacing:26.999978px;}
.ws9c{word-spacing:26.999986px;}
.ws7a{word-spacing:26.999990px;}
.ws8b{word-spacing:26.999999px;}
.ws8{word-spacing:27.000000px;}
.ws4f{word-spacing:27.000002px;}
.ws69{word-spacing:27.000012px;}
.ws84{word-spacing:27.000016px;}
.ws6a{word-spacing:27.000023px;}
.ws5b{word-spacing:27.949219px;}
.wsac{word-spacing:28.634765px;}
.wsa5{word-spacing:28.737604px;}
.ws3f{word-spacing:28.931874px;}
.ws4a{word-spacing:28.931885px;}
.ws15{word-spacing:28.931896px;}
.ws43{word-spacing:28.931907px;}
.ws48{word-spacing:28.931909px;}
.ws75{word-spacing:28.931927px;}
.wsab{word-spacing:29.897860px;}
.wscc{word-spacing:31.480518px;}
.wsbc{word-spacing:31.499978px;}
.ws83{word-spacing:31.499996px;}
.ws22{word-spacing:31.500001px;}
.ws5f{word-spacing:31.500012px;}
.ws72{word-spacing:33.431873px;}
.ws4d{word-spacing:33.431885px;}
.wsc1{word-spacing:33.431896px;}
.ws34{word-spacing:33.431906px;}
.ws51{word-spacing:33.431907px;}
.ws57{word-spacing:33.431916px;}
.ws63{word-spacing:33.431918px;}
.wsa9{word-spacing:35.967337px;}
.wsc5{word-spacing:35.980606px;}
.ws65{word-spacing:35.999979px;}
.ws90{word-spacing:36.000001px;}
.wsae{word-spacing:36.000012px;}
.ws73{word-spacing:37.931873px;}
.wsad{word-spacing:37.931897px;}
.ws6d{word-spacing:37.931909px;}
.wsbf{word-spacing:37.931918px;}
.ws95{word-spacing:40.499984px;}
.wsbe{word-spacing:40.499990px;}
.ws7f{word-spacing:40.500000px;}
.ws67{word-spacing:40.500012px;}
.ws5d{word-spacing:42.431885px;}
.ws44{word-spacing:42.431896px;}
.ws79{word-spacing:42.431918px;}
.wsc9{word-spacing:44.980449px;}
.wsb1{word-spacing:44.999990px;}
.ws14{word-spacing:45.000002px;}
.ws9a{word-spacing:49.499989px;}
.ws98{word-spacing:49.499997px;}
.ws8c{word-spacing:49.500000px;}
.ws7b{word-spacing:49.829740px;}
.wsb7{word-spacing:51.431908px;}
.wsa3{word-spacing:58.467337px;}
.wscd{word-spacing:62.973942px;}
.wsbd{word-spacing:63.000003px;}
.ws91{word-spacing:67.499986px;}
.wsaf{word-spacing:80.999979px;}
.wsb5{word-spacing:81.000001px;}
.ws19{word-spacing:94.500000px;}
.ws1a{word-spacing:109.931895px;}
.ws2c{word-spacing:1963.501279px;}
.ws2a{word-spacing:1966.067698px;}
.ws2b{word-spacing:1983.470029px;}
.ws28{word-spacing:2004.845041px;}
.ws26{word-spacing:2087.638009px;}
.ws2d{word-spacing:2107.501280px;}
.ws31{word-spacing:2135.485656px;}
.ws27{word-spacing:2135.520821px;}
.ws29{word-spacing:2171.415353px;}
.ws2e{word-spacing:2174.268265px;}
.ws30{word-spacing:2182.067687px;}
.ws24{word-spacing:2251.641915px;}
.ws2f{word-spacing:2284.303024px;}
.ws25{word-spacing:2403.587227px;}
._35{margin-left:-16.031247px;}
._33{margin-left:-10.341197px;}
._55{margin-left:-9.253831px;}
._b{margin-left:-7.980482px;}
._8{margin-left:-5.343749px;}
._6{margin-left:-3.972630px;}
._7{margin-left:-2.671897px;}
._1{margin-left:-1.260000px;}
._0{width:1.140000px;}
._38{width:17.929688px;}
._4{width:20.003935px;}
._3d{width:21.263926px;}
._3a{width:22.687498px;}
._9{width:24.503918px;}
._41{width:26.062501px;}
._39{width:27.937498px;}
._a{width:29.003908px;}
._52{width:30.163395px;}
._3f{width:31.500008px;}
._5{width:33.503915px;}
._4a{width:35.446083px;}
._49{width:36.553933px;}
._c{width:38.003909px;}
._4c{width:39.067918px;}
._3e{width:40.500001px;}
._34{width:42.503910px;}
._47{width:44.999890px;}
._f{width:47.003911px;}
._51{width:48.005483px;}
._43{width:49.500031px;}
._37{width:51.503907px;}
._4d{width:52.663395px;}
._46{width:53.999996px;}
._10{width:56.003909px;}
._40{width:58.500019px;}
._36{width:60.503910px;}
._50{width:61.533972px;}
._48{width:62.999998px;}
._3b{width:65.865235px;}
._e{width:67.007814px;}
._42{width:68.053711px;}
._d{width:69.503908px;}
._3c{width:71.208984px;}
._45{width:72.791033px;}
._4e{width:74.923191px;}
._44{width:76.500000px;}
._54{width:78.503896px;}
._4f{width:83.780092px;}
._56{width:89.105911px;}
._4b{width:94.499996px;}
._53{width:105.503909px;}
._3{width:850.590000px;}
._31{width:1173.013018px;}
._30{width:1249.372400px;}
._2f{width:1281.575525px;}
._19{width:1452.780810px;}
._14{width:1518.915358px;}
._20{width:1542.997376px;}
._2d{width:1582.970032px;}
._11{width:1600.677562px;}
._2c{width:1624.946591px;}
._2{width:1633.890000px;}
._21{width:1659.083313px;}
._24{width:1663.126282px;}
._16{width:1667.098950px;}
._13{width:1686.329438px;}
._25{width:1691.180969px;}
._2a{width:1739.128492px;}
._2e{width:1841.825522px;}
._18{width:1883.309875px;}
._32{width:1895.438782px;}
._17{width:1911.329417px;}
._27{width:1923.282531px;}
._15{width:1928.271399px;}
._12{width:1943.567717px;}
._26{width:1963.360656px;}
._2b{width:2123.321593px;}
._23{width:2127.259093px;}
._1d{width:2131.407530px;}
._1e{width:2143.360655px;}
._1b{width:2171.450499px;}
._22{width:2175.387999px;}
._1a{width:2179.360655px;}
._1c{width:2183.368467px;}
._29{width:2203.372373px;}
._1f{width:2207.450499px;}
._28{width:2243.450498px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(69,70,69);}
.fs0{font-size:42.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000002px;}
.fs9{font-size:72.000000px;}
.fs12{font-size:78.000003px;}
.fs11{font-size:83.999997px;}
.fs10{font-size:90.000000px;}
.fse{font-size:96.000003px;}
.fs3{font-size:108.000000px;}
.fsc{font-size:119.999997px;}
.fs6{font-size:132.000000px;}
.fs8{font-size:132.000003px;}
.fsa{font-size:137.999997px;}
.fs4{font-size:168.000000px;}
.fsf{font-size:180.000000px;}
.fsd{font-size:216.000000px;}
.fsb{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y88{bottom:11.689453px;}
.y6{bottom:13.125000px;}
.y90{bottom:14.794189px;}
.y4{bottom:15.000000px;}
.y1d{bottom:38.523194px;}
.y8{bottom:43.860000px;}
.ya9{bottom:59.967044px;}
.y2e{bottom:59.967584px;}
.y4d{bottom:59.967779px;}
.y16d{bottom:59.968499px;}
.y2{bottom:89.287500px;}
.y6e{bottom:124.553461px;}
.y5{bottom:125.662500px;}
.yc9{bottom:126.569821px;}
.ye0{bottom:129.445306px;}
.y16c{bottom:135.846676px;}
.y6d{bottom:149.751706px;}
.y2f1{bottom:150.067381px;}
.yc8{bottom:150.372076px;}
.ydf{bottom:153.249016px;}
.y344{bottom:157.736569px;}
.y16b{bottom:159.653326px;}
.yfb{bottom:170.153326px;}
.y2f0{bottom:173.868166px;}
.yc7{bottom:174.175786px;}
.y6c{bottom:174.949951px;}
.yde{bottom:177.052741px;}
.y16a{bottom:183.454096px;}
.y343{bottom:183.529534px;}
.y18b{bottom:185.534176px;}
.y1a4{bottom:187.127926px;}
.y1cb{bottom:188.449216px;}
.y2d5{bottom:190.069336px;}
.y1f4{bottom:193.775390px;}
.yfa{bottom:193.957036px;}
.y2ef{bottom:197.674801px;}
.yc6{bottom:197.979496px;}
.y278{bottom:199.637701px;}
.y6b{bottom:200.148196px;}
.y169{bottom:207.257806px;}
.y342{bottom:209.310784px;}
.y18a{bottom:209.337886px;}
.y259{bottom:210.805666px;}
.y1a3{bottom:210.928711px;}
.y1ca{bottom:212.252926px;}
.y2d4{bottom:213.870121px;}
.yf9{bottom:217.759276px;}
.y3{bottom:218.325000px;}
.y115{bottom:221.455081px;}
.y2ee{bottom:221.475586px;}
.yc5{bottom:221.781736px;}
.y277{bottom:223.438471px;}
.y1f3{bottom:223.529300px;}
.ydd{bottom:224.657221px;}
.y6a{bottom:225.346441px;}
.y168{bottom:231.058591px;}
.y189{bottom:233.141596px;}
.y258{bottom:234.609376px;}
.y1a2{bottom:234.732421px;}
.y341{bottom:235.097899px;}
.y1c9{bottom:236.053711px;}
.y2d3{bottom:237.670891px;}
.yf8{bottom:241.562986px;}
.y114{bottom:245.257321px;}
.y2ed{bottom:245.276371px;}
.y276{bottom:247.245121px;}
.ydc{bottom:248.460931px;}
.y219{bottom:248.730461px;}
.y69{bottom:250.544671px;}
.y188{bottom:256.945306px;}
.y257{bottom:258.410161px;}
.y1c8{bottom:259.857421px;}
.y340{bottom:260.885014px;}
.y2d2{bottom:261.471676px;}
.yf7{bottom:265.365241px;}
.y167{bottom:267.320806px;}
.y113{bottom:269.059576px;}
.y2ec{bottom:269.077141px;}
.yc4{bottom:269.387701px;}
.y1a1{bottom:270.994621px;}
.y275{bottom:271.045891px;}
.ydb{bottom:272.264641px;}
.y68{bottom:275.742916px;}
.y2bb{bottom:276.278326px;}
.y218{bottom:276.503906px;}
.y256{bottom:282.213871px;}
.y1f2{bottom:283.037105px;}
.y1c7{bottom:283.661131px;}
.y2d1{bottom:285.278326px;}
.yd6{bottom:285.306151px;}
.y33f{bottom:286.672114px;}
.yf6{bottom:289.168951px;}
.y23d{bottom:289.913086px;}
.y112{bottom:292.863286px;}
.yc3{bottom:293.191411px;}
.y187{bottom:293.207521px;}
.y274{bottom:294.849616px;}
.yda{bottom:296.066896px;}
.y2ba{bottom:300.079096px;}
.y67{bottom:300.941161px;}
.y13e{bottom:301.470706px;}
.y255{bottom:306.014641px;}
.yd5{bottom:309.108391px;}
.y33e{bottom:312.459229px;}
.y1f1{bottom:312.791015px;}
.yf5{bottom:312.971191px;}
.y23c{bottom:313.713871px;}
.y111{bottom:316.666996px;}
.y2eb{bottom:316.690426px;}
.yc2{bottom:316.993651px;}
.y273{bottom:318.650386px;}
.yd9{bottom:319.869136px;}
.y2b9{bottom:323.885746px;}
.y7{bottom:324.120000px;}
.y13d{bottom:325.272946px;}
.y30d{bottom:325.766596px;}
.y66{bottom:326.139406px;}
.y166{bottom:326.566411px;}
.y254{bottom:329.821291px;}
.y1a0{bottom:330.237301px;}
.y217{bottom:332.044916px;}
.y2d0{bottom:332.885746px;}
.yd4{bottom:332.912116px;}
.yf4{bottom:336.774901px;}
.y23b{bottom:337.520506px;}
.y33d{bottom:338.246344px;}
.y110{bottom:340.469236px;}
.y2ea{bottom:340.491211px;}
.yc1{bottom:340.795891px;}
.y272{bottom:342.454096px;}
.y1f0{bottom:342.544925px;}
.y2b8{bottom:347.686516px;}
.y13c{bottom:349.075201px;}
.y30c{bottom:349.573246px;}
.y165{bottom:350.370121px;}
.y65{bottom:351.337651px;}
.y186{bottom:352.453126px;}
.y253{bottom:353.622076px;}
.y19f{bottom:354.041011px;}
.y2cf{bottom:356.686516px;}
.yd3{bottom:356.714356px;}
.y1b{bottom:357.120000px;}
.y216{bottom:359.812496px;}
.yf3{bottom:360.577141px;}
.y33c{bottom:364.033444px;}
.y10f{bottom:364.271491px;}
.y2e9{bottom:364.291996px;}
.yc0{bottom:364.599616px;}
.y1c6{bottom:365.824220px;}
.y271{bottom:366.254881px;}
.y31f{bottom:367.948246px;}
.y2b7{bottom:371.487301px;}
.y1ef{bottom:372.298820px;}
.y13b{bottom:372.878911px;}
.y30b{bottom:373.374016px;}
.y185{bottom:376.256836px;}
.y64{bottom:376.535896px;}
.y19e{bottom:377.844721px;}
.y2ce{bottom:380.487301px;}
.yd2{bottom:380.518066px;}
.yf2{bottom:384.380866px;}
.y23a{bottom:385.127926px;}
.y164{bottom:386.635246px;}
.y1a{bottom:387.120000px;}
.y215{bottom:387.585941px;}
.y2e8{bottom:388.098631px;}
.y33b{bottom:389.814694px;}
.y270{bottom:390.061516px;}
.yd8{bottom:391.278811px;}
.y31e{bottom:391.754881px;}
.y2b6{bottom:395.288086px;}
.y1c5{bottom:395.578130px;}
.y13a{bottom:396.682621px;}
.y184{bottom:400.057621px;}
.y19d{bottom:401.648431px;}
.y63{bottom:401.734126px;}
.ybf{bottom:402.015382px;}
.y204{bottom:402.052730px;}
.yd1{bottom:404.320306px;}
.yf1{bottom:408.183106px;}
.y239{bottom:408.928711px;}
.y10e{bottom:411.878911px;}
.y214{bottom:415.353521px;}
.y31d{bottom:415.555666px;}
.y33a{bottom:415.601809px;}
.y19{bottom:415.995000px;}
.y30a{bottom:420.975586px;}
.y183{bottom:423.861331px;}
.y121{bottom:424.026856px;}
.y252{bottom:425.033206px;}
.y1c4{bottom:425.332025px;}
.y62{bottom:426.932371px;}
.y2cd{bottom:428.094721px;}
.y2a3{bottom:428.780266px;}
.y1ee{bottom:431.806640px;}
.yf0{bottom:431.986816px;}
.y238{bottom:432.732421px;}
.y10d{bottom:435.681151px;}
.y2e7{bottom:435.706051px;}
.y26f{bottom:437.668951px;}
.y1df{bottom:437.756840px;}
.y19c{bottom:437.910646px;}
.y31c{bottom:439.362301px;}
.y339{bottom:441.388909px;}
.y2b5{bottom:442.895506px;}
.y139{bottom:444.287116px;}
.y309{bottom:444.782221px;}
.y18{bottom:445.275000px;}
.y163{bottom:445.877926px;}
.y120{bottom:447.829096px;}
.y251{bottom:448.833991px;}
.y2cc{bottom:451.895506px;}
.y61{bottom:452.130616px;}
.y2a2{bottom:452.581051px;}
.y1c3{bottom:455.085935px;}
.y22e{bottom:455.223631px;}
.yef{bottom:455.789056px;}
.y237{bottom:456.533206px;}
.yd0{bottom:458.249996px;}
.y10c{bottom:459.483391px;}
.y2e6{bottom:459.506836px;}
.y182{bottom:460.123531px;}
.y26e{bottom:461.469721px;}
.y1ed{bottom:461.560550px;}
.y31b{bottom:463.163086px;}
.y2b4{bottom:466.702141px;}
.y338{bottom:467.176024px;}
.y1de{bottom:467.510735px;}
.y4c{bottom:467.665651px;}
.y138{bottom:468.090826px;}
.y308{bottom:468.583006px;}
.y213{bottom:470.894531px;}
.y11f{bottom:471.632806px;}
.y250{bottom:472.637701px;}
.y17{bottom:474.525000px;}
.y2cb{bottom:475.702141px;}
.y2a1{bottom:476.381836px;}
.y60{bottom:477.328860px;}
.y22d{bottom:479.024416px;}
.yee{bottom:479.592766px;}
.y236{bottom:480.336916px;}
.y245{bottom:481.239256px;}
.y162{bottom:482.140141px;}
.y10b{bottom:483.287116px;}
.y2e5{bottom:483.307621px;}
.y1c2{bottom:484.852298px;}
.y26d{bottom:485.273431px;}
.ybe{bottom:485.894536px;}
.y31a{bottom:486.963871px;}
.y2b3{bottom:490.502926px;}
.y1ec{bottom:491.314445px;}
.y137{bottom:491.894536px;}
.y307{bottom:492.389641px;}
.y337{bottom:492.963139px;}
.y11e{bottom:495.436516px;}
.y24f{bottom:496.438471px;}
.y19b{bottom:497.156251px;}
.y212{bottom:498.667961px;}
.y2ca{bottom:499.502926px;}
.y2a0{bottom:500.188471px;}
.y22c{bottom:502.831051px;}
.yed{bottom:503.395021px;}
.y16{bottom:503.775000px;}
.y244{bottom:505.040041px;}
.y10a{bottom:507.090826px;}
.y2e4{bottom:507.114256px;}
.y26c{bottom:509.074216px;}
.ybd{bottom:509.696776px;}
.y319{bottom:510.764641px;}
.y5f{bottom:513.027106px;}
.y2b2{bottom:514.309576px;}
.y320{bottom:515.176760px;}
.y136{bottom:515.696776px;}
.y306{bottom:516.190426px;}
.y336{bottom:518.750239px;}
.y181{bottom:519.369136px;}
.y24e{bottom:520.245121px;}
.y19a{bottom:520.957036px;}
.y1fc{bottom:521.068355px;}
.y211{bottom:526.435541px;}
.y22b{bottom:526.631836px;}
.y235{bottom:527.944336px;}
.y243{bottom:528.846676px;}
.y2e3{bottom:530.915041px;}
.y26b{bottom:532.877926px;}
.ybc{bottom:533.500486px;}
.y1c1{bottom:534.700201px;}
.y15{bottom:537.150000px;}
.y5e{bottom:538.225336px;}
.y135{bottom:539.499016px;}
.y305{bottom:539.991211px;}
.y85{bottom:540.704595px;}
.y161{bottom:541.385746px;}
.y11d{bottom:543.041011px;}
.y282{bottom:543.043951px;}
.y180{bottom:543.172846px;}
.y24d{bottom:544.045891px;}
.y335{bottom:544.537354px;}
.y1ad{bottom:545.056636px;}
.y2c9{bottom:547.110346px;}
.y29f{bottom:547.795891px;}
.y1fb{bottom:550.822265px;}
.yec{bottom:551.000971px;}
.y234{bottom:551.745121px;}
.y242{bottom:552.647461px;}
.y109{bottom:554.695306px;}
.y2e2{bottom:554.715826px;}
.ya8{bottom:555.478272px;}
.y26a{bottom:556.678711px;}
.y1dd{bottom:556.772465px;}
.y199{bottom:557.219236px;}
.ybb{bottom:557.302741px;}
.y1af{bottom:557.386232px;}
.y318{bottom:558.372076px;}
.ya7{bottom:558.583008px;}
.y22a{bottom:559.896978px;}
.y2b1{bottom:561.916996px;}
.y134{bottom:563.302741px;}
.y5d{bottom:563.423581px;}
.y11c{bottom:566.844721px;}
.y17f{bottom:566.973631px;}
.y14{bottom:567.195000px;}
.y24c{bottom:567.852541px;}
.y1ac{bottom:568.860346px;}
.y334{bottom:570.324469px;}
.y2c8{bottom:570.916996px;}
.y29e{bottom:571.596676px;}
.yeb{bottom:574.804681px;}
.y233{bottom:575.551756px;}
.y84{bottom:576.402825px;}
.y241{bottom:576.451171px;}
.y160{bottom:577.645021px;}
.y108{bottom:578.499016px;}
.y2e1{bottom:578.522461px;}
.y269{bottom:580.485346px;}
.y203{bottom:580.573235px;}
.y1fa{bottom:580.576175px;}
.yba{bottom:581.106451px;}
.y317{bottom:582.178711px;}
.y2b0{bottom:585.717766px;}
.y1dc{bottom:586.526360px;}
.y133{bottom:587.106451px;}
.y304{bottom:587.598631px;}
.y5c{bottom:588.303958px;}
.y281{bottom:590.645506px;}
.y11b{bottom:590.648431px;}
.y17e{bottom:590.777341px;}
.y2d{bottom:591.319336px;}
.y24b{bottom:591.653326px;}
.y1ab{bottom:592.661131px;}
.y2c7{bottom:594.717766px;}
.y333{bottom:596.111569px;}
.ya6{bottom:596.156247px;}
.ya5{bottom:599.260983px;}
.y232{bottom:599.352541px;}
.y240{bottom:600.251956px;}
.y107{bottom:602.302741px;}
.y3d{bottom:602.549191px;}
.y13{bottom:603.945000px;}
.ycf{bottom:604.908691px;}
.y2af{bottom:609.518551px;}
.y210{bottom:609.747071px;}
.y1eb{bottom:610.330070px;}
.y4b{bottom:610.483516px;}
.y303{bottom:611.399416px;}
.y5b{bottom:612.095221px;}
.y83{bottom:612.101071px;}
.y1c0{bottom:613.886720px;}
.y11a{bottom:614.450686px;}
.y280{bottom:614.452141px;}
.y24a{bottom:615.457036px;}
.y229{bottom:616.139641px;}
.y1db{bottom:616.277345px;}
.y198{bottom:616.464841px;}
.y1ae{bottom:616.894037px;}
.y2c6{bottom:618.518551px;}
.yb9{bottom:618.521482px;}
.y29d{bottom:619.198246px;}
.y132{bottom:619.214351px;}
.y332{bottom:621.892819px;}
.yaa{bottom:621.996095px;}
.y231{bottom:623.156251px;}
.y106{bottom:626.104981px;}
.y2e0{bottom:626.124016px;}
.y17d{bottom:627.039556px;}
.y316{bottom:629.780266px;}
.y23f{bottom:631.787842px;}
.y2ae{bottom:633.319336px;}
.y2f2{bottom:634.198235px;}
.y4a{bottom:634.286506px;}
.y302{bottom:635.206051px;}
.ya4{bottom:636.834222px;}
.y15f{bottom:636.893551px;}
.y5a{bottom:637.293451px;}
.y82{bottom:637.299316px;}
.y20f{bottom:637.517576px;}
.y119{bottom:638.252926px;}
.y27f{bottom:638.255866px;}
.y249{bottom:639.257806px;}
.ya3{bottom:639.938958px;}
.y228{bottom:639.943366px;}
.y1ea{bottom:640.081055px;}
.y202{bottom:640.083980px;}
.y197{bottom:640.268551px;}
.y2c5{bottom:642.319336px;}
.y29c{bottom:643.004881px;}
.y1bf{bottom:643.640630px;}
.y1da{bottom:646.034180px;}
.y331{bottom:647.679934px;}
.y12{bottom:648.195000px;}
.y268{bottom:649.910161px;}
.y2df{bottom:649.924801px;}
.yce{bottom:652.514641px;}
.y1aa{bottom:652.727056px;}
.y315{bottom:653.581051px;}
.y230{bottom:654.686272px;}
.y2ad{bottom:657.125971px;}
.y49{bottom:658.089481px;}
.y301{bottom:659.006836px;}
.y15e{bottom:660.694336px;}
.y118{bottom:662.056636px;}
.y81{bottom:662.179693px;}
.y59{bottom:662.491696px;}
.y248{bottom:663.061516px;}
.y227{bottom:663.744136px;}
.yea{bottom:665.473394px;}
.y2c4{bottom:666.125971px;}
.y29b{bottom:666.805666px;}
.y131{bottom:672.644536px;}
.y1be{bottom:673.394525px;}
.y330{bottom:673.467034px;}
.y267{bottom:673.710931px;}
.y2de{bottom:673.731451px;}
.y3c{bottom:673.958131px;}
.y1d9{bottom:675.788090px;}
.ycd{bottom:676.318366px;}
.y150{bottom:676.401857px;}
.y283{bottom:676.404782px;}
.y196{bottom:676.533691px;}
.y314{bottom:677.387701px;}
.ya2{bottom:677.512212px;}
.y4e{bottom:677.831915px;}
.y105{bottom:680.034671px;}
.y28f{bottom:680.581051px;}
.ya1{bottom:680.616948px;}
.y2ac{bottom:680.926756px;}
.y48{bottom:681.892456px;}
.y300{bottom:682.813471px;}
.y80{bottom:685.653073px;}
.y27e{bottom:685.857421px;}
.y117{bottom:685.860346px;}
.y226{bottom:687.547846px;}
.y58{bottom:687.689580px;}
.y2c3{bottom:689.926756px;}
.y29a{bottom:690.612301px;}
.y11{bottom:692.475000px;}
.y20e{bottom:693.052736px;}
.y247{bottom:694.594477px;}
.y130{bottom:696.448246px;}
.y15d{bottom:696.959476px;}
.y266{bottom:697.514641px;}
.y14f{bottom:697.710931px;}
.y3b{bottom:697.761106px;}
.y32f{bottom:699.254149px;}
.y1e9{bottom:699.591800px;}
.ycc{bottom:700.120606px;}
.y313{bottom:701.188471px;}
.y8f{bottom:701.228757px;}
.yb8{bottom:702.399901px;}
.y1bd{bottom:703.148435px;}
.y91{bottom:704.333493px;}
.y28e{bottom:704.384761px;}
.y2ab{bottom:704.733391px;}
.y47{bottom:705.695431px;}
.y2ff{bottom:706.614256px;}
.y17c{bottom:708.105466px;}
.y7f{bottom:709.444335px;}
.y27d{bottom:709.661131px;}
.y116{bottom:709.662601px;}
.y225{bottom:711.348631px;}
.yca{bottom:711.599118px;}
.y1a9{bottom:711.975586px;}
.y299{bottom:714.413086px;}
.ya0{bottom:718.190187px;}
.y12f{bottom:720.251956px;}
.y20d{bottom:720.826166px;}
.y9f{bottom:721.294923px;}
.y265{bottom:721.315426px;}
.y2dd{bottom:721.338871px;}
.y14e{bottom:721.514641px;}
.y3a{bottom:721.564081px;}
.y57{bottom:723.387811px;}
.y2c{bottom:724.219306px;}
.y22f{bottom:724.954829px;}
.y32e{bottom:725.041264px;}
.yb7{bottom:726.202141px;}
.y28d{bottom:728.185546px;}
.y1e8{bottom:729.342770px;}
.y201{bottom:729.345695px;}
.y46{bottom:729.498406px;}
.y17b{bottom:731.909176px;}
.y1bc{bottom:732.914798px;}
.y104{bottom:733.464841px;}
.y224{bottom:735.155266px;}
.y1d6{bottom:735.292970px;}
.y195{bottom:735.776371px;}
.y2c2{bottom:737.534176px;}
.y298{bottom:738.219721px;}
.y8e{bottom:741.906738px;}
.y12e{bottom:744.054196px;}
.y264{bottom:745.122076px;}
.y2dc{bottom:745.139641px;}
.y7e{bottom:745.142581px;}
.y14d{bottom:745.318366px;}
.y39{bottom:745.367071px;}
.y10{bottom:746.100000px;}
.y2b{bottom:748.022281px;}
.y56{bottom:748.586056px;}
.y20c{bottom:748.596686px;}
.y312{bottom:748.795891px;}
.yb6{bottom:750.005866px;}
.y32d{bottom:750.828364px;}
.y23e{bottom:751.644284px;}
.y28c{bottom:751.989256px;}
.y2aa{bottom:752.334961px;}
.y45{bottom:753.301396px;}
.y2fe{bottom:754.221676px;}
.y17a{bottom:755.709961px;}
.y15c{bottom:756.202141px;}
.y103{bottom:757.268551px;}
.y9e{bottom:758.868162px;}
.y223{bottom:758.956051px;}
.y1e7{bottom:759.096680px;}
.ycb{bottom:759.355958px;}
.y194{bottom:759.580081px;}
.y2c1{bottom:761.334961px;}
.y9d{bottom:761.972898px;}
.y297{bottom:762.020506px;}
.y1d5{bottom:765.046880px;}
.y12d{bottom:767.856451px;}
.y263{bottom:768.922846px;}
.y2db{bottom:768.946291px;}
.y14c{bottom:769.120606px;}
.y38{bottom:769.170046px;}
.y7d{bottom:770.340826px;}
.y2a{bottom:771.825256px;}
.y311{bottom:772.602541px;}
.y55{bottom:773.784660px;}
.yb5{bottom:773.808106px;}
.y2a9{bottom:776.135746px;}
.y20b{bottom:776.367191px;}
.y32c{bottom:776.615479px;}
.y44{bottom:777.104371px;}
.y2fd{bottom:778.022461px;}
.y8d{bottom:779.479983px;}
.y179{bottom:779.513671px;}
.y15b{bottom:780.005866px;}
.y27c{bottom:781.069336px;}
.y102{bottom:781.072261px;}
.y1bb{bottom:782.759761px;}
.y193{bottom:783.380866px;}
.y2c0{bottom:785.135746px;}
.y296{bottom:785.827141px;}
.y246{bottom:786.683354px;}
.y1f9{bottom:788.853515px;}
.y262{bottom:792.729496px;}
.y2da{bottom:792.752926px;}
.y37{bottom:792.973021px;}
.y1d4{bottom:794.800775px;}
.y222{bottom:795.221191px;}
.y7c{bottom:795.539056px;}
.yf{bottom:795.600000px;}
.y29{bottom:795.628231px;}
.y310{bottom:796.403326px;}
.yb4{bottom:797.611816px;}
.yd7{bottom:797.930414px;}
.y9c{bottom:799.546137px;}
.y28b{bottom:799.596676px;}
.y2a8{bottom:799.942381px;}
.y43{bottom:800.907346px;}
.y352{bottom:801.482659px;}
.y2fc{bottom:801.823246px;}
.y32b{bottom:802.396729px;}
.y9b{bottom:802.650873px;}
.y101{bottom:804.874516px;}
.y27b{bottom:804.875971px;}
.y1ba{bottom:806.563471px;}
.y1a8{bottom:807.184576px;}
.y2bf{bottom:808.942381px;}
.y54{bottom:809.482905px;}
.y178{bottom:811.623041px;}
.y14b{bottom:814.743166px;}
.y12c{bottom:815.463871px;}
.y261{bottom:816.530266px;}
.y36{bottom:816.775996px;}
.y8c{bottom:817.053228px;}
.y200{bottom:818.601560px;}
.y1e6{bottom:818.604485px;}
.y28{bottom:819.431206px;}
.y192{bottom:819.643066px;}
.y30f{bottom:820.209961px;}
.y7b{bottom:820.737301px;}
.yb3{bottom:821.414056px;}
.y28a{bottom:823.397461px;}
.y2a7{bottom:823.743166px;}
.y1d8{bottom:824.554685px;}
.y42{bottom:824.710321px;}
.y351{bottom:827.275639px;}
.y15a{bottom:827.610346px;}
.y32a{bottom:828.189694px;}
.y100{bottom:828.676756px;}
.y27a{bottom:828.679681px;}
.ye{bottom:830.880000px;}
.y20a{bottom:831.908201px;}
.y2be{bottom:832.743166px;}
.y295{bottom:833.428711px;}
.y14a{bottom:838.545406px;}
.y12b{bottom:839.266111px;}
.y9a{bottom:840.224127px;}
.y35{bottom:840.578986px;}
.y27{bottom:843.234196px;}
.y99{bottom:843.328863px;}
.y1a7{bottom:843.446776px;}
.y53{bottom:845.180790px;}
.yb2{bottom:845.217766px;}
.y7a{bottom:845.935546px;}
.y289{bottom:847.204096px;}
.y2a6{bottom:847.549801px;}
.y1e5{bottom:848.358395px;}
.y41{bottom:848.513311px;}
.y2fb{bottom:849.430666px;}
.y159{bottom:851.414056px;}
.yff{bottom:852.480466px;}
.y2d9{bottom:852.812986px;}
.y350{bottom:853.056889px;}
.y329{bottom:853.970944px;}
.y1b9{bottom:854.167966px;}
.y1d3{bottom:854.308595px;}
.y8b{bottom:854.626458px;}
.y294{bottom:857.229496px;}
.y209{bottom:859.675781px;}
.y149{bottom:862.347661px;}
.y12a{bottom:863.068366px;}
.y260{bottom:864.134761px;}
.y34{bottom:864.381961px;}
.y177{bottom:865.051756px;}
.y26{bottom:867.037171px;}
.y2bd{bottom:869.008306px;}
.yb1{bottom:869.020021px;}
.y288{bottom:871.004881px;}
.y79{bottom:871.133791px;}
.y40{bottom:872.316286px;}
.y2fa{bottom:873.237301px;}
.y221{bottom:876.281251px;}
.yfe{bottom:876.284176px;}
.y1b8{bottom:877.971676px;}
.y1e4{bottom:878.112305px;}
.y1ff{bottom:878.115230px;}
.y34f{bottom:878.843989px;}
.y191{bottom:878.888671px;}
.y328{bottom:879.763909px;}
.y52{bottom:880.879395px;}
.y98{bottom:880.902102px;}
.y293{bottom:881.036131px;}
.y2a5{bottom:883.809076px;}
.y97{bottom:884.006838px;}
.y1d2{bottom:884.062505px;}
.y148{bottom:886.151371px;}
.y129{bottom:886.872076px;}
.yd{bottom:887.130000px;}
.y208{bottom:887.446286px;}
.y30e{bottom:887.651371px;}
.y25f{bottom:887.938471px;}
.y33{bottom:888.184936px;}
.y176{bottom:888.855466px;}
.y25{bottom:890.840146px;}
.y8a{bottom:892.199703px;}
.yb0{bottom:892.823731px;}
.y3f{bottom:896.119261px;}
.y78{bottom:896.332036px;}
.y2f9{bottom:897.038086px;}
.y158{bottom:899.021491px;}
.y220{bottom:900.084961px;}
.yfd{bottom:900.086431px;}
.y1b7{bottom:901.772461px;}
.y190{bottom:902.692381px;}
.y34e{bottom:904.631104px;}
.y292{bottom:904.836916px;}
.y327{bottom:905.545159px;}
.y1f8{bottom:907.863275px;}
.y147{bottom:909.955081px;}
.y128{bottom:910.675786px;}
.y25e{bottom:911.739256px;}
.y32{bottom:911.987911px;}
.y175{bottom:912.659176px;}
.y1d1{bottom:913.816400px;}
.y24{bottom:914.643121px;}
.y51{bottom:916.577640px;}
.yaf{bottom:916.625971px;}
.y287{bottom:918.609376px;}
.y2f8{bottom:920.838871px;}
.y77{bottom:921.530265px;}
.y96{bottom:921.580077px;}
.y157{bottom:922.823731px;}
.ye9{bottom:923.888671px;}
.y21f{bottom:923.891596px;}
.y95{bottom:924.684813px;}
.y1b6{bottom:925.576171px;}
.y1a6{bottom:926.496091px;}
.yc{bottom:927.255000px;}
.y89{bottom:929.772948px;}
.y34d{bottom:930.418219px;}
.y326{bottom:931.338139px;}
.y146{bottom:933.757321px;}
.y127{bottom:934.478026px;}
.y25d{bottom:935.545891px;}
.y31{bottom:935.790901px;}
.y174{bottom:936.462886px;}
.y1e3{bottom:937.620110px;}
.y23{bottom:938.446111px;}
.y18f{bottom:938.957521px;}
.yae{bottom:940.429681px;}
.y291{bottom:941.102056px;}
.y286{bottom:942.413086px;}
.y2a4{bottom:942.484124px;}
.y207{bottom:942.990236px;}
.y1d0{bottom:943.570310px;}
.y2f7{bottom:944.639641px;}
.y156{bottom:946.625971px;}
.ye8{bottom:947.692381px;}
.y3e{bottom:948.084223px;}
.y1b5{bottom:949.379881px;}
.y2bc{bottom:951.484124px;}
.yb{bottom:956.175000px;}
.y34c{bottom:956.205319px;}
.y2d8{bottom:957.109124px;}
.y325{bottom:957.119389px;}
.y76{bottom:957.228511px;}
.y145{bottom:957.559576px;}
.y126{bottom:958.280266px;}
.y25c{bottom:959.346676px;}
.y30{bottom:959.593876px;}
.y173{bottom:960.266596px;}
.y22{bottom:962.249086px;}
.y94{bottom:962.258052px;}
.y1a5{bottom:962.758300px;}
.yad{bottom:964.231936px;}
.y93{bottom:965.362788px;}
.y87{bottom:967.346193px;}
.y1fe{bottom:967.371095px;}
.y1e2{bottom:967.374020px;}
.y50{bottom:967.623419px;}
.y2f6{bottom:968.446291px;}
.y1f7{bottom:969.123048px;}
.y155{bottom:970.429681px;}
.y206{bottom:970.757816px;}
.y279{bottom:971.493166px;}
.ye7{bottom:971.496091px;}
.y1b4{bottom:973.183591px;}
.y1cf{bottom:973.324220px;}
.y34b{bottom:981.992434px;}
.y75{bottom:982.426756px;}
.y324{bottom:982.912354px;}
.y25b{bottom:983.153326px;}
.y172{bottom:984.067381px;}
.ya{bottom:985.050000px;}
.y21{bottom:986.052061px;}
.yac{bottom:988.035646px;}
.y125{bottom:990.392578px;}
.y2f5{bottom:992.247076px;}
.y154{bottom:994.233391px;}
.ye6{bottom:995.298340px;}
.y21e{bottom:995.299804px;}
.y1b3{bottom:996.987304px;}
.y1e1{bottom:997.124999px;}
.y18e{bottom:998.200195px;}
.y205{bottom:998.525390px;}
.y290{bottom:999.765381px;}
.y1d7{bottom:1003.078124px;}
.y1f6{bottom:1004.827148px;}
.y144{bottom:1005.166991px;}
.y74{bottom:1007.624999px;}
.y34a{bottom:1007.779542px;}
.y323{bottom:1008.693604px;}
.y20{bottom:1009.855042px;}
.y92{bottom:1009.855225px;}
.y9{bottom:1013.925000px;}
.y2f4{bottom:1016.053711px;}
.y171{bottom:1016.176757px;}
.y153{bottom:1018.035644px;}
.ye5{bottom:1019.100586px;}
.y21d{bottom:1019.103515px;}
.y1b2{bottom:1020.788086px;}
.y18d{bottom:1022.003906px;}
.y285{bottom:1025.197996px;}
.y4f{bottom:1027.181396px;}
.y143{bottom:1028.969239px;}
.y73{bottom:1032.823241px;}
.y1ce{bottom:1032.832031px;}
.y349{bottom:1033.560792px;}
.y1f{bottom:1033.658020px;}
.y322{bottom:1034.480713px;}
.y2f{bottom:1035.361815px;}
.y2f3{bottom:1039.854491px;}
.y25a{bottom:1040.219239px;}
.y1f5{bottom:1040.531249px;}
.y152{bottom:1041.837890px;}
.y2d7{bottom:1042.901366px;}
.ye4{bottom:1042.904297px;}
.y124{bottom:1043.822753px;}
.y18c{bottom:1045.804687px;}
.y142{bottom:1052.771485px;}
.y1b1{bottom:1057.053222px;}
.y72{bottom:1058.021485px;}
.y1fd{bottom:1058.381835px;}
.y1e0{bottom:1058.384765px;}
.y348{bottom:1059.347901px;}
.y321{bottom:1060.267822px;}
.y2d6{bottom:1066.702148px;}
.y21c{bottom:1066.705078px;}
.ye3{bottom:1066.708007px;}
.y123{bottom:1067.624999px;}
.y170{bottom:1069.608398px;}
.y284{bottom:1070.819091px;}
.yab{bottom:1070.820557px;}
.y141{bottom:1076.575195px;}
.y71{bottom:1083.219727px;}
.y347{bottom:1085.135010px;}
.y21b{bottom:1090.508789px;}
.yfc{bottom:1090.510253px;}
.y86{bottom:1092.639404px;}
.y16f{bottom:1093.409179px;}
.y1e{bottom:1094.046387px;}
.y1cd{bottom:1094.085936px;}
.y140{bottom:1100.378906px;}
.y70{bottom:1108.417969px;}
.y346{bottom:1110.922120px;}
.ye2{bottom:1114.312499px;}
.y21a{bottom:1114.315429px;}
.y1b0{bottom:1122.639403px;}
.y151{bottom:1124.046387px;}
.y122{bottom:1126.860351px;}
.y16e{bottom:1129.674316px;}
.y1cc{bottom:1129.792968px;}
.y13f{bottom:1132.488282px;}
.y6f{bottom:1133.616211px;}
.y345{bottom:1136.709229px;}
.ye1{bottom:1138.116211px;}
.y1c{bottom:1155.000000px;}
.y1{bottom:1252.875000px;}
.h5{height:27.375000px;}
.h3{height:29.250000px;}
.h17{height:36.448242px;}
.h18{height:39.552978px;}
.h1{height:41.774414px;}
.h1b{height:52.417969px;}
.h8{height:53.094727px;}
.h7{height:58.125000px;}
.he{height:59.167970px;}
.h16{height:59.715822px;}
.h4{height:61.435547px;}
.h2{height:62.661621px;}
.hb{height:64.507324px;}
.h10{height:64.546875px;}
.h6{height:64.754072px;}
.h11{height:65.144531px;}
.h24{height:69.925784px;}
.h21{height:74.988281px;}
.h22{height:75.304685px;}
.h20{height:80.683594px;}
.h23{height:81.430664px;}
.h1d{height:86.859378px;}
.h1f{height:97.716797px;}
.h9{height:107.419922px;}
.h19{height:107.578122px;}
.h12{height:107.625000px;}
.hd{height:108.000000px;}
.h1c{height:108.574216px;}
.hc{height:108.861328px;}
.hf{height:119.431643px;}
.h15{height:123.714841px;}
.h13{height:124.860349px;}
.h1e{height:162.861328px;}
.ha{height:172.019531px;}
.h1a{height:195.433594px;}
.h14{height:325.722656px;}
.h0{height:1263.000000px;}
.wb{width:51.750000px;}
.w9{width:84.375000px;}
.w7{width:142.875000px;}
.w3{width:337.275000px;}
.w8{width:529.875000px;}
.wa{width:536.625000px;}
.w4{width:567.255000px;}
.w2{width:567.600000px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.w6{width:893.250000px;}
.w5{width:894.000000px;}
.x0{left:0.000000px;}
.x1d{left:6.750000px;}
.x7{left:10.537500px;}
.x25{left:15.301758px;}
.x24{left:20.307129px;}
.x22{left:29.113769px;}
.x3{left:64.162500px;}
.x2{left:73.912500px;}
.x10{left:108.000000px;}
.x1c{left:109.125000px;}
.x5{left:110.700000px;}
.x39{left:116.385648px;}
.x6{left:127.537500px;}
.x18{left:135.000000px;}
.x3f{left:142.383694px;}
.x40{left:151.783599px;}
.x37{left:155.250000px;}
.x19{left:162.000000px;}
.x32{left:167.305964px;}
.xc{left:168.824987px;}
.x3c{left:174.762603px;}
.x33{left:177.291827px;}
.xb{left:180.824987px;}
.x38{left:182.250000px;}
.x9{left:184.574987px;}
.x1a{left:189.000000px;}
.x1b{left:194.429538px;}
.x48{left:196.122832px;}
.x2a{left:200.801085px;}
.x2b{left:210.797999px;}
.x4d{left:214.810850px;}
.x2f{left:216.000000px;}
.x45{left:224.742491px;}
.xa{left:233.744987px;}
.x3d{left:236.877104px;}
.x27{left:239.947569px;}
.x2d{left:250.341948px;}
.x1e{left:253.125000px;}
.x20{left:275.253456px;}
.xd{left:277.619987px;}
.x4f{left:298.110386px;}
.x2c{left:308.979203px;}
.x28{left:312.343076px;}
.x4a{left:317.690966px;}
.x41{left:319.062983px;}
.x42{left:321.812370px;}
.x2e{left:326.852235px;}
.x43{left:333.264803px;}
.x13{left:338.200875px;}
.x46{left:339.703425px;}
.x44{left:346.556869px;}
.x49{left:352.573796px;}
.xf{left:355.730828px;}
.x12{left:360.227576px;}
.x4c{left:369.465750px;}
.x34{left:372.682103px;}
.x35{left:377.320613px;}
.x1f{left:379.086604px;}
.x3e{left:385.337543px;}
.x16{left:388.013535px;}
.x3b{left:390.202290px;}
.x3a{left:392.845601px;}
.x4b{left:396.963675px;}
.x4{left:398.025000px;}
.x31{left:399.250136px;}
.x26{left:401.544630px;}
.x29{left:406.588556px;}
.xe{left:416.217454px;}
.x14{left:424.457539px;}
.x30{left:437.286690px;}
.x11{left:441.871695px;}
.x8{left:446.444987px;}
.x4e{left:464.859664px;}
.x36{left:504.827921px;}
.x47{left:522.318161px;}
.x15{left:524.845013px;}
.x21{left:725.894854px;}
.x17{left:730.851469px;}
.x23{left:732.375000px;}
.x1{left:765.329987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.373333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:38.015625pt;}
.ls2{letter-spacing:47.679687pt;}
.wsf{word-spacing:-34.080728pt;}
.ws4{word-spacing:-32.598959pt;}
.ws38{word-spacing:-29.635416pt;}
.wsc0{word-spacing:-26.671875pt;}
.ws47{word-spacing:-23.708334pt;}
.ws88{word-spacing:-20.000000pt;}
.wsc3{word-spacing:-19.263021pt;}
.ws33{word-spacing:-17.781250pt;}
.ws3{word-spacing:-16.299479pt;}
.ws1{word-spacing:-12.053333pt;}
.ws0{word-spacing:-11.680000pt;}
.ws7c{word-spacing:-0.122667pt;}
.ws3d{word-spacing:-0.064000pt;}
.ws59{word-spacing:-0.058667pt;}
.wsce{word-spacing:-0.026657pt;}
.wsc6{word-spacing:-0.020783pt;}
.wsc8{word-spacing:-0.017379pt;}
.ws89{word-spacing:-0.000030pt;}
.ws40{word-spacing:-0.000029pt;}
.ws9{word-spacing:-0.000020pt;}
.ws85{word-spacing:-0.000018pt;}
.ws99{word-spacing:-0.000013pt;}
.ws12{word-spacing:-0.000009pt;}
.ws81{word-spacing:-0.000002pt;}
.ws2{word-spacing:0.000000pt;}
.ws60{word-spacing:0.000000pt;}
.ws71{word-spacing:0.000002pt;}
.wse{word-spacing:0.000003pt;}
.ws32{word-spacing:0.000010pt;}
.ws4e{word-spacing:0.000011pt;}
.ws8d{word-spacing:0.000014pt;}
.ws21{word-spacing:0.000021pt;}
.wsa1{word-spacing:3.968670pt;}
.wsa8{word-spacing:3.968711pt;}
.ws9e{word-spacing:3.968770pt;}
.wscf{word-spacing:3.976881pt;}
.ws41{word-spacing:3.999970pt;}
.ws4b{word-spacing:3.999971pt;}
.ws66{word-spacing:3.999981pt;}
.ws6b{word-spacing:3.999982pt;}
.ws96{word-spacing:3.999987pt;}
.ws18{word-spacing:3.999990pt;}
.ws1d{word-spacing:3.999991pt;}
.ws55{word-spacing:3.999999pt;}
.ws5{word-spacing:4.000000pt;}
.ws1f{word-spacing:4.000002pt;}
.wsb{word-spacing:4.000011pt;}
.ws3e{word-spacing:4.000020pt;}
.wsaa{word-spacing:7.968729pt;}
.wsc4{word-spacing:7.976924pt;}
.wscb{word-spacing:7.976930pt;}
.wsa4{word-spacing:7.977892pt;}
.ws11{word-spacing:7.999971pt;}
.ws8e{word-spacing:7.999979pt;}
.ws64{word-spacing:7.999981pt;}
.ws87{word-spacing:7.999982pt;}
.ws9d{word-spacing:7.999985pt;}
.ws9b{word-spacing:7.999987pt;}
.wsc{word-spacing:7.999990pt;}
.ws76{word-spacing:7.999991pt;}
.ws3b{word-spacing:7.999999pt;}
.ws7{word-spacing:8.000000pt;}
.ws16{word-spacing:8.000002pt;}
.ws74{word-spacing:8.000003pt;}
.ws35{word-spacing:8.000011pt;}
.wsc2{word-spacing:8.000012pt;}
.wsb4{word-spacing:8.000021pt;}
.ws9f{word-spacing:11.975592pt;}
.ws4c{word-spacing:11.999970pt;}
.ws53{word-spacing:11.999980pt;}
.wsd{word-spacing:11.999981pt;}
.ws7e{word-spacing:11.999985pt;}
.ws94{word-spacing:11.999987pt;}
.ws1b{word-spacing:11.999991pt;}
.ws93{word-spacing:11.999997pt;}
.ws62{word-spacing:11.999998pt;}
.ws8f{word-spacing:11.999999pt;}
.wsa{word-spacing:12.000000pt;}
.ws1e{word-spacing:12.000002pt;}
.ws80{word-spacing:12.000008pt;}
.wsb2{word-spacing:12.000010pt;}
.ws36{word-spacing:12.000011pt;}
.ws82{word-spacing:12.000015pt;}
.ws3c{word-spacing:12.000021pt;}
.wsb6{word-spacing:15.999971pt;}
.ws97{word-spacing:15.999977pt;}
.wsb9{word-spacing:15.999980pt;}
.ws86{word-spacing:15.999985pt;}
.ws92{word-spacing:15.999989pt;}
.ws56{word-spacing:15.999991pt;}
.ws6c{word-spacing:15.999998pt;}
.ws6{word-spacing:16.000000pt;}
.ws52{word-spacing:16.000001pt;}
.ws68{word-spacing:16.000003pt;}
.ws37{word-spacing:16.000011pt;}
.ws6e{word-spacing:17.717220pt;}
.ws54{word-spacing:17.717231pt;}
.ws5a{word-spacing:17.717239pt;}
.ws20{word-spacing:17.717241pt;}
.ws6f{word-spacing:17.717248pt;}
.wsba{word-spacing:17.717260pt;}
.ws10{word-spacing:17.717261pt;}
.ws70{word-spacing:17.717268pt;}
.ws58{word-spacing:17.717271pt;}
.wsa7{word-spacing:19.968729pt;}
.wsa6{word-spacing:19.968770pt;}
.wsc7{word-spacing:19.982621pt;}
.wsca{word-spacing:19.983823pt;}
.ws45{word-spacing:19.999971pt;}
.ws5e{word-spacing:19.999980pt;}
.ws46{word-spacing:19.999981pt;}
.ws5c{word-spacing:19.999988pt;}
.ws7d{word-spacing:19.999998pt;}
.wsb0{word-spacing:20.000000pt;}
.ws13{word-spacing:20.000001pt;}
.ws39{word-spacing:20.000011pt;}
.ws8a{word-spacing:20.000014pt;}
.ws1c{word-spacing:20.000031pt;}
.wsa2{word-spacing:21.354168pt;}
.ws17{word-spacing:21.717241pt;}
.ws42{word-spacing:21.717249pt;}
.ws50{word-spacing:21.717251pt;}
.ws3a{word-spacing:21.717253pt;}
.ws77{word-spacing:21.717260pt;}
.ws78{word-spacing:21.717268pt;}
.ws49{word-spacing:21.717271pt;}
.wsbb{word-spacing:21.717272pt;}
.ws23{word-spacing:21.717281pt;}
.wsb8{word-spacing:21.717282pt;}
.wsa0{word-spacing:23.968729pt;}
.ws61{word-spacing:23.999970pt;}
.wsb3{word-spacing:23.999981pt;}
.ws9c{word-spacing:23.999987pt;}
.ws7a{word-spacing:23.999991pt;}
.ws8b{word-spacing:23.999999pt;}
.ws8{word-spacing:24.000000pt;}
.ws4f{word-spacing:24.000001pt;}
.ws69{word-spacing:24.000011pt;}
.ws84{word-spacing:24.000014pt;}
.ws6a{word-spacing:24.000021pt;}
.ws5b{word-spacing:24.843750pt;}
.wsac{word-spacing:25.453125pt;}
.wsa5{word-spacing:25.544537pt;}
.ws3f{word-spacing:25.717221pt;}
.ws4a{word-spacing:25.717231pt;}
.ws15{word-spacing:25.717241pt;}
.ws43{word-spacing:25.717250pt;}
.ws48{word-spacing:25.717252pt;}
.ws75{word-spacing:25.717268pt;}
.wsab{word-spacing:26.575875pt;}
.wscc{word-spacing:27.982682pt;}
.wsbc{word-spacing:27.999980pt;}
.ws83{word-spacing:27.999997pt;}
.ws22{word-spacing:28.000001pt;}
.ws5f{word-spacing:28.000011pt;}
.ws72{word-spacing:29.717220pt;}
.ws4d{word-spacing:29.717231pt;}
.wsc1{word-spacing:29.717241pt;}
.ws34{word-spacing:29.717250pt;}
.ws51{word-spacing:29.717251pt;}
.ws57{word-spacing:29.717259pt;}
.ws63{word-spacing:29.717261pt;}
.wsa9{word-spacing:31.970966pt;}
.wsc5{word-spacing:31.982761pt;}
.ws65{word-spacing:31.999982pt;}
.ws90{word-spacing:32.000001pt;}
.wsae{word-spacing:32.000011pt;}
.ws73{word-spacing:33.717220pt;}
.wsad{word-spacing:33.717242pt;}
.ws6d{word-spacing:33.717252pt;}
.wsbf{word-spacing:33.717260pt;}
.ws95{word-spacing:35.999986pt;}
.wsbe{word-spacing:35.999991pt;}
.ws7f{word-spacing:36.000000pt;}
.ws67{word-spacing:36.000011pt;}
.ws5d{word-spacing:37.717231pt;}
.ws44{word-spacing:37.717241pt;}
.ws79{word-spacing:37.717260pt;}
.wsc9{word-spacing:39.982621pt;}
.wsb1{word-spacing:39.999991pt;}
.ws14{word-spacing:40.000002pt;}
.ws9a{word-spacing:43.999990pt;}
.ws98{word-spacing:43.999998pt;}
.ws8c{word-spacing:44.000000pt;}
.ws7b{word-spacing:44.293102pt;}
.wsb7{word-spacing:45.717251pt;}
.wsa3{word-spacing:51.970966pt;}
.wscd{word-spacing:55.976837pt;}
.wsbd{word-spacing:56.000003pt;}
.ws91{word-spacing:59.999987pt;}
.wsaf{word-spacing:71.999982pt;}
.wsb5{word-spacing:72.000001pt;}
.ws19{word-spacing:84.000000pt;}
.ws1a{word-spacing:97.717240pt;}
.ws2c{word-spacing:1745.334470pt;}
.ws2a{word-spacing:1747.615732pt;}
.ws2b{word-spacing:1763.084470pt;}
.ws28{word-spacing:1782.084480pt;}
.ws26{word-spacing:1855.678230pt;}
.ws2d{word-spacing:1873.334471pt;}
.ws31{word-spacing:1898.209472pt;}
.ws27{word-spacing:1898.240730pt;}
.ws29{word-spacing:1930.146981pt;}
.ws2e{word-spacing:1932.682903pt;}
.ws30{word-spacing:1939.615721pt;}
.ws24{word-spacing:2001.459480pt;}
.ws2f{word-spacing:2030.491577pt;}
.ws25{word-spacing:2136.521980pt;}
._35{margin-left:-14.249997pt;}
._33{margin-left:-9.192175pt;}
._55{margin-left:-8.225628pt;}
._b{margin-left:-7.093762pt;}
._8{margin-left:-4.749999pt;}
._6{margin-left:-3.531227pt;}
._7{margin-left:-2.375020pt;}
._1{margin-left:-1.120000pt;}
._0{width:1.013333pt;}
._38{width:15.937500pt;}
._4{width:17.781276pt;}
._3d{width:18.901267pt;}
._3a{width:20.166665pt;}
._9{width:21.781260pt;}
._41{width:23.166668pt;}
._39{width:24.833332pt;}
._a{width:25.781252pt;}
._52{width:26.811907pt;}
._3f{width:28.000007pt;}
._5{width:29.781258pt;}
._4a{width:31.507630pt;}
._49{width:32.492385pt;}
._c{width:33.781253pt;}
._4c{width:34.727038pt;}
._3e{width:36.000001pt;}
._34{width:37.781253pt;}
._47{width:39.999902pt;}
._f{width:41.781254pt;}
._51{width:42.671540pt;}
._43{width:44.000027pt;}
._37{width:45.781251pt;}
._4d{width:46.811907pt;}
._46{width:47.999997pt;}
._10{width:49.781252pt;}
._40{width:52.000017pt;}
._36{width:53.781253pt;}
._50{width:54.696864pt;}
._48{width:55.999998pt;}
._3b{width:58.546876pt;}
._e{width:59.562501pt;}
._42{width:60.492187pt;}
._d{width:61.781251pt;}
._3c{width:63.296875pt;}
._45{width:64.703140pt;}
._4e{width:66.598392pt;}
._44{width:68.000000pt;}
._54{width:69.781241pt;}
._4f{width:74.471193pt;}
._56{width:79.205255pt;}
._4b{width:83.999997pt;}
._53{width:93.781252pt;}
._3{width:756.080000pt;}
._31{width:1042.678238pt;}
._30{width:1110.553245pt;}
._2f{width:1139.178245pt;}
._19{width:1291.360720pt;}
._14{width:1350.146985pt;}
._20{width:1371.553223pt;}
._2d{width:1407.084473pt;}
._11{width:1422.824499pt;}
._2c{width:1444.396970pt;}
._2{width:1452.346667pt;}
._21{width:1474.740723pt;}
._24{width:1478.334473pt;}
._16{width:1481.865733pt;}
._13{width:1498.959500pt;}
._25{width:1503.271973pt;}
._2a{width:1545.891993pt;}
._2e{width:1637.178242pt;}
._18{width:1674.053222pt;}
._32{width:1684.834473pt;}
._17{width:1698.959482pt;}
._27{width:1709.584472pt;}
._15{width:1714.019021pt;}
._12{width:1727.615749pt;}
._26{width:1745.209472pt;}
._2b{width:1887.396972pt;}
._23{width:1890.896971pt;}
._1d{width:1894.584471pt;}
._1e{width:1905.209471pt;}
._1b{width:1930.178221pt;}
._22{width:1933.678221pt;}
._1a{width:1937.209471pt;}
._1c{width:1940.771971pt;}
._29{width:1958.553221pt;}
._1f{width:1962.178221pt;}
._28{width:1994.178220pt;}
.fs0{font-size:37.333333pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.666668pt;}
.fs9{font-size:64.000000pt;}
.fs12{font-size:69.333336pt;}
.fs11{font-size:74.666664pt;}
.fs10{font-size:80.000000pt;}
.fse{font-size:85.333336pt;}
.fs3{font-size:96.000000pt;}
.fsc{font-size:106.666664pt;}
.fs6{font-size:117.333333pt;}
.fs8{font-size:117.333336pt;}
.fsa{font-size:122.666664pt;}
.fs4{font-size:149.333333pt;}
.fsf{font-size:160.000000pt;}
.fsd{font-size:192.000000pt;}
.fsb{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:10.390625pt;}
.y6{bottom:11.666667pt;}
.y90{bottom:13.150390pt;}
.y4{bottom:13.333333pt;}
.y1d{bottom:34.242839pt;}
.y8{bottom:38.986667pt;}
.ya9{bottom:53.304039pt;}
.y2e{bottom:53.304519pt;}
.y4d{bottom:53.304692pt;}
.y16d{bottom:53.305332pt;}
.y2{bottom:79.366667pt;}
.y6e{bottom:110.714187pt;}
.y5{bottom:111.700000pt;}
.yc9{bottom:112.506508pt;}
.ye0{bottom:115.062494pt;}
.y16c{bottom:120.752601pt;}
.y6d{bottom:133.112627pt;}
.y2f1{bottom:133.393228pt;}
.yc8{bottom:133.664068pt;}
.ydf{bottom:136.221347pt;}
.y344{bottom:140.210284pt;}
.y16b{bottom:141.914068pt;}
.yfb{bottom:151.247401pt;}
.y2f0{bottom:154.549481pt;}
.yc7{bottom:154.822921pt;}
.y6c{bottom:155.511068pt;}
.yde{bottom:157.380214pt;}
.y16a{bottom:163.070308pt;}
.y343{bottom:163.137364pt;}
.y18b{bottom:164.919268pt;}
.y1a4{bottom:166.335934pt;}
.y1cb{bottom:167.510414pt;}
.y2d5{bottom:168.950521pt;}
.y1f4{bottom:172.244791pt;}
.yfa{bottom:172.406254pt;}
.y2ef{bottom:175.710934pt;}
.yc6{bottom:175.981774pt;}
.y278{bottom:177.455734pt;}
.y6b{bottom:177.909508pt;}
.y169{bottom:184.229161pt;}
.y342{bottom:186.054030pt;}
.y18a{bottom:186.078121pt;}
.y259{bottom:187.382814pt;}
.y1a3{bottom:187.492188pt;}
.y1ca{bottom:188.669268pt;}
.y2d4{bottom:190.106774pt;}
.yf9{bottom:193.563801pt;}
.y3{bottom:194.066667pt;}
.y115{bottom:196.848961pt;}
.y2ee{bottom:196.867187pt;}
.yc5{bottom:197.139321pt;}
.y277{bottom:198.611974pt;}
.y1f3{bottom:198.692711pt;}
.ydd{bottom:199.695308pt;}
.y6a{bottom:200.307947pt;}
.y168{bottom:205.385414pt;}
.y189{bottom:207.236974pt;}
.y258{bottom:208.541668pt;}
.y1a2{bottom:208.651041pt;}
.y341{bottom:208.975910pt;}
.y1c9{bottom:209.825521pt;}
.y2d3{bottom:211.263014pt;}
.yf8{bottom:214.722654pt;}
.y114{bottom:218.006507pt;}
.y2ed{bottom:218.023441pt;}
.y276{bottom:219.773441pt;}
.ydc{bottom:220.854161pt;}
.y219{bottom:221.093743pt;}
.y69{bottom:222.706374pt;}
.y188{bottom:228.395828pt;}
.y257{bottom:229.697921pt;}
.y1c8{bottom:230.984374pt;}
.y340{bottom:231.897790pt;}
.y2d2{bottom:232.419268pt;}
.yf7{bottom:235.880214pt;}
.y167{bottom:237.618494pt;}
.y113{bottom:239.164068pt;}
.y2ec{bottom:239.179681pt;}
.yc4{bottom:239.455734pt;}
.y1a1{bottom:240.884108pt;}
.y275{bottom:240.929681pt;}
.ydb{bottom:242.013014pt;}
.y68{bottom:245.104814pt;}
.y2bb{bottom:245.580734pt;}
.y218{bottom:245.781249pt;}
.y256{bottom:250.856774pt;}
.y1f2{bottom:251.588538pt;}
.y1c7{bottom:252.143228pt;}
.y2d1{bottom:253.580734pt;}
.yd6{bottom:253.605467pt;}
.y33f{bottom:254.819657pt;}
.yf6{bottom:257.039068pt;}
.y23d{bottom:257.700521pt;}
.y112{bottom:260.322921pt;}
.yc3{bottom:260.614587pt;}
.y187{bottom:260.628908pt;}
.y274{bottom:262.088547pt;}
.yda{bottom:263.170574pt;}
.y2ba{bottom:266.736974pt;}
.y67{bottom:267.503254pt;}
.y13e{bottom:267.973961pt;}
.y255{bottom:272.013014pt;}
.yd5{bottom:274.763014pt;}
.y33e{bottom:277.741537pt;}
.y1f1{bottom:278.036458pt;}
.yf5{bottom:278.196614pt;}
.y23c{bottom:278.856774pt;}
.y111{bottom:281.481774pt;}
.y2eb{bottom:281.502601pt;}
.yc2{bottom:281.772134pt;}
.y273{bottom:283.244788pt;}
.yd9{bottom:284.328121pt;}
.y2b9{bottom:287.898441pt;}
.y7{bottom:288.106667pt;}
.y13d{bottom:289.131507pt;}
.y30d{bottom:289.570308pt;}
.y66{bottom:289.901694pt;}
.y166{bottom:290.281254pt;}
.y254{bottom:293.174481pt;}
.y1a0{bottom:293.544267pt;}
.y217{bottom:295.151036pt;}
.y2d0{bottom:295.898441pt;}
.yd4{bottom:295.921881pt;}
.yf4{bottom:299.355467pt;}
.y23b{bottom:300.018227pt;}
.y33d{bottom:300.663417pt;}
.y110{bottom:302.639321pt;}
.y2ea{bottom:302.658854pt;}
.yc1{bottom:302.929681pt;}
.y272{bottom:304.403641pt;}
.y1f0{bottom:304.484378pt;}
.y2b8{bottom:309.054681pt;}
.y13c{bottom:310.289068pt;}
.y30c{bottom:310.731774pt;}
.y165{bottom:311.440108pt;}
.y65{bottom:312.300134pt;}
.y186{bottom:313.291667pt;}
.y253{bottom:314.330734pt;}
.y19f{bottom:314.703121pt;}
.y2cf{bottom:317.054681pt;}
.yd3{bottom:317.079427pt;}
.y1b{bottom:317.440000pt;}
.y216{bottom:319.833329pt;}
.yf3{bottom:320.513014pt;}
.y33c{bottom:323.585284pt;}
.y10f{bottom:323.796881pt;}
.y2e9{bottom:323.815108pt;}
.yc0{bottom:324.088547pt;}
.y1c6{bottom:325.177085pt;}
.y271{bottom:325.559894pt;}
.y31f{bottom:327.065108pt;}
.y2b7{bottom:330.210934pt;}
.y1ef{bottom:330.932285pt;}
.y13b{bottom:331.447921pt;}
.y30b{bottom:331.888014pt;}
.y185{bottom:334.450521pt;}
.y64{bottom:334.698574pt;}
.y19e{bottom:335.861974pt;}
.y2ce{bottom:338.210934pt;}
.yd2{bottom:338.238281pt;}
.yf2{bottom:341.671881pt;}
.y23a{bottom:342.335934pt;}
.y164{bottom:343.675774pt;}
.y1a{bottom:344.106667pt;}
.y215{bottom:344.520836pt;}
.y2e8{bottom:344.976561pt;}
.y33b{bottom:346.501950pt;}
.y270{bottom:346.721347pt;}
.yd8{bottom:347.803388pt;}
.y31e{bottom:348.226561pt;}
.y2b6{bottom:351.367187pt;}
.y1c5{bottom:351.625005pt;}
.y13a{bottom:352.606774pt;}
.y184{bottom:355.606774pt;}
.y19d{bottom:357.020828pt;}
.y63{bottom:357.097001pt;}
.ybf{bottom:357.347007pt;}
.y204{bottom:357.380205pt;}
.yd1{bottom:359.395828pt;}
.yf1{bottom:362.829427pt;}
.y239{bottom:363.492188pt;}
.y10e{bottom:366.114587pt;}
.y214{bottom:369.203129pt;}
.y31d{bottom:369.382814pt;}
.y33a{bottom:369.423830pt;}
.y19{bottom:369.773333pt;}
.y30a{bottom:374.200521pt;}
.y183{bottom:376.765627pt;}
.y121{bottom:376.912761pt;}
.y252{bottom:377.807294pt;}
.y1c4{bottom:378.072911pt;}
.y62{bottom:379.495441pt;}
.y2cd{bottom:380.528641pt;}
.y2a3{bottom:381.138014pt;}
.y1ee{bottom:383.828125pt;}
.yf0{bottom:383.988281pt;}
.y238{bottom:384.651041pt;}
.y10d{bottom:387.272134pt;}
.y2e7{bottom:387.294267pt;}
.y26f{bottom:389.039068pt;}
.y1df{bottom:389.117191pt;}
.y19c{bottom:389.253908pt;}
.y31c{bottom:390.544268pt;}
.y339{bottom:392.345697pt;}
.y2b5{bottom:393.684894pt;}
.y139{bottom:394.921881pt;}
.y309{bottom:395.361974pt;}
.y18{bottom:395.800000pt;}
.y163{bottom:396.335934pt;}
.y120{bottom:398.070307pt;}
.y251{bottom:398.963547pt;}
.y2cc{bottom:401.684894pt;}
.y61{bottom:401.893881pt;}
.y2a2{bottom:402.294267pt;}
.y1c3{bottom:404.520831pt;}
.y22e{bottom:404.643228pt;}
.yef{bottom:405.145827pt;}
.y237{bottom:405.807294pt;}
.yd0{bottom:407.333330pt;}
.y10c{bottom:408.429681pt;}
.y2e6{bottom:408.450521pt;}
.y182{bottom:408.998694pt;}
.y26e{bottom:410.195308pt;}
.y1ed{bottom:410.276045pt;}
.y31b{bottom:411.700521pt;}
.y2b4{bottom:414.846347pt;}
.y338{bottom:415.267577pt;}
.y1de{bottom:415.565098pt;}
.y4c{bottom:415.702801pt;}
.y138{bottom:416.080734pt;}
.y308{bottom:416.518228pt;}
.y213{bottom:418.572916pt;}
.y11f{bottom:419.229161pt;}
.y250{bottom:420.122401pt;}
.y17{bottom:421.800000pt;}
.y2cb{bottom:422.846347pt;}
.y2a1{bottom:423.450521pt;}
.y60{bottom:424.292320pt;}
.y22d{bottom:425.799481pt;}
.yee{bottom:426.304681pt;}
.y236{bottom:426.966148pt;}
.y245{bottom:427.768228pt;}
.y162{bottom:428.569014pt;}
.y10b{bottom:429.588547pt;}
.y2e5{bottom:429.606774pt;}
.y1c2{bottom:430.979821pt;}
.y26d{bottom:431.354161pt;}
.ybe{bottom:431.906254pt;}
.y31a{bottom:432.856774pt;}
.y2b3{bottom:436.002601pt;}
.y1ec{bottom:436.723951pt;}
.y137{bottom:437.239587pt;}
.y307{bottom:437.679681pt;}
.y337{bottom:438.189457pt;}
.y11e{bottom:440.388014pt;}
.y24f{bottom:441.278641pt;}
.y19b{bottom:441.916667pt;}
.y212{bottom:443.260409pt;}
.y2ca{bottom:444.002601pt;}
.y2a0{bottom:444.611974pt;}
.y22c{bottom:446.960934pt;}
.yed{bottom:447.462241pt;}
.y16{bottom:447.800000pt;}
.y244{bottom:448.924481pt;}
.y10a{bottom:450.747401pt;}
.y2e4{bottom:450.768227pt;}
.y26c{bottom:452.510414pt;}
.ybd{bottom:453.063801pt;}
.y319{bottom:454.013014pt;}
.y5f{bottom:456.024094pt;}
.y2b2{bottom:457.164068pt;}
.y320{bottom:457.934898pt;}
.y136{bottom:458.397134pt;}
.y306{bottom:458.835934pt;}
.y336{bottom:461.111324pt;}
.y181{bottom:461.661454pt;}
.y24e{bottom:462.440108pt;}
.y19a{bottom:463.072921pt;}
.y1fc{bottom:463.171871pt;}
.y211{bottom:467.942703pt;}
.y22b{bottom:468.117188pt;}
.y235{bottom:469.283854pt;}
.y243{bottom:470.085934pt;}
.y2e3{bottom:471.924481pt;}
.y26b{bottom:473.669268pt;}
.ybc{bottom:474.222654pt;}
.y1c1{bottom:475.289068pt;}
.y15{bottom:477.466667pt;}
.y5e{bottom:478.422521pt;}
.y135{bottom:479.554681pt;}
.y305{bottom:479.992188pt;}
.y85{bottom:480.626307pt;}
.y161{bottom:481.231774pt;}
.y11d{bottom:482.703121pt;}
.y282{bottom:482.705734pt;}
.y180{bottom:482.820308pt;}
.y24d{bottom:483.596347pt;}
.y335{bottom:484.033204pt;}
.y1ad{bottom:484.494787pt;}
.y2c9{bottom:486.320308pt;}
.y29f{bottom:486.929681pt;}
.y1fb{bottom:489.619791pt;}
.yec{bottom:489.778641pt;}
.y234{bottom:490.440108pt;}
.y242{bottom:491.242188pt;}
.y109{bottom:493.062494pt;}
.y2e2{bottom:493.080734pt;}
.ya8{bottom:493.758464pt;}
.y26a{bottom:494.825521pt;}
.y1dd{bottom:494.908858pt;}
.y199{bottom:495.305988pt;}
.ybb{bottom:495.380214pt;}
.y1af{bottom:495.454428pt;}
.y318{bottom:496.330734pt;}
.ya7{bottom:496.518229pt;}
.y22a{bottom:497.686202pt;}
.y2b1{bottom:499.481774pt;}
.y134{bottom:500.713547pt;}
.y5d{bottom:500.820961pt;}
.y11c{bottom:503.861974pt;}
.y17f{bottom:503.976561pt;}
.y14{bottom:504.173333pt;}
.y24c{bottom:504.757814pt;}
.y1ac{bottom:505.653641pt;}
.y334{bottom:506.955084pt;}
.y2c8{bottom:507.481774pt;}
.y29e{bottom:508.085934pt;}
.yeb{bottom:510.937494pt;}
.y233{bottom:511.601561pt;}
.y84{bottom:512.358067pt;}
.y241{bottom:512.401041pt;}
.y160{bottom:513.462241pt;}
.y108{bottom:514.221348pt;}
.y2e1{bottom:514.242188pt;}
.y269{bottom:515.986974pt;}
.y203{bottom:516.065098pt;}
.y1fa{bottom:516.067711pt;}
.yba{bottom:516.539067pt;}
.y317{bottom:517.492188pt;}
.y2b0{bottom:520.638014pt;}
.y1dc{bottom:521.356765pt;}
.y133{bottom:521.872401pt;}
.y304{bottom:522.309894pt;}
.y5c{bottom:522.936851pt;}
.y281{bottom:525.018227pt;}
.y11b{bottom:525.020827pt;}
.y17e{bottom:525.135414pt;}
.y2d{bottom:525.617188pt;}
.y24b{bottom:525.914068pt;}
.y1ab{bottom:526.809894pt;}
.y2c7{bottom:528.638014pt;}
.y333{bottom:529.876950pt;}
.ya6{bottom:529.916664pt;}
.ya5{bottom:532.676429pt;}
.y232{bottom:532.757814pt;}
.y240{bottom:533.557294pt;}
.y107{bottom:535.380214pt;}
.y3d{bottom:535.599281pt;}
.y13{bottom:536.840000pt;}
.ycf{bottom:537.696614pt;}
.y2af{bottom:541.794267pt;}
.y210{bottom:541.997396pt;}
.y1eb{bottom:542.515618pt;}
.y4b{bottom:542.652014pt;}
.y303{bottom:543.466147pt;}
.y5b{bottom:544.084641pt;}
.y83{bottom:544.089841pt;}
.y1c0{bottom:545.677085pt;}
.y11a{bottom:546.178387pt;}
.y280{bottom:546.179681pt;}
.y24a{bottom:547.072921pt;}
.y229{bottom:547.679681pt;}
.y1db{bottom:547.802085pt;}
.y198{bottom:547.968747pt;}
.y1ae{bottom:548.350255pt;}
.y2c6{bottom:549.794267pt;}
.yb9{bottom:549.796873pt;}
.y29d{bottom:550.398441pt;}
.y132{bottom:550.412757pt;}
.y332{bottom:552.793617pt;}
.yaa{bottom:552.885417pt;}
.y231{bottom:553.916667pt;}
.y106{bottom:556.537761pt;}
.y2e0{bottom:556.554681pt;}
.y17d{bottom:557.368494pt;}
.y316{bottom:559.804681pt;}
.y23f{bottom:561.589193pt;}
.y2ae{bottom:562.950521pt;}
.y2f2{bottom:563.731764pt;}
.y4a{bottom:563.810227pt;}
.y302{bottom:564.627601pt;}
.ya4{bottom:566.074864pt;}
.y15f{bottom:566.127601pt;}
.y5a{bottom:566.483067pt;}
.y82{bottom:566.488281pt;}
.y20f{bottom:566.682289pt;}
.y119{bottom:567.335934pt;}
.y27f{bottom:567.338547pt;}
.y249{bottom:568.229161pt;}
.ya3{bottom:568.834629pt;}
.y228{bottom:568.838547pt;}
.y1ea{bottom:568.960938pt;}
.y202{bottom:568.963538pt;}
.y197{bottom:569.127601pt;}
.y2c5{bottom:570.950521pt;}
.y29c{bottom:571.559894pt;}
.y1bf{bottom:572.125005pt;}
.y1da{bottom:574.252605pt;}
.y331{bottom:575.715497pt;}
.y12{bottom:576.173333pt;}
.y268{bottom:577.697921pt;}
.y2df{bottom:577.710934pt;}
.yce{bottom:580.013014pt;}
.y1aa{bottom:580.201828pt;}
.y315{bottom:580.960934pt;}
.y230{bottom:581.943353pt;}
.y2ad{bottom:584.111974pt;}
.y49{bottom:584.968427pt;}
.y301{bottom:585.783854pt;}
.y15e{bottom:587.283854pt;}
.y118{bottom:588.494787pt;}
.y81{bottom:588.604171pt;}
.y59{bottom:588.881507pt;}
.y248{bottom:589.388014pt;}
.y227{bottom:589.994787pt;}
.yea{bottom:591.531905pt;}
.y2c4{bottom:592.111974pt;}
.y29b{bottom:592.716148pt;}
.y131{bottom:597.906254pt;}
.y1be{bottom:598.572911pt;}
.y330{bottom:598.637364pt;}
.y267{bottom:598.854161pt;}
.y2de{bottom:598.872401pt;}
.y3c{bottom:599.073894pt;}
.y1d9{bottom:600.700525pt;}
.ycd{bottom:601.171881pt;}
.y150{bottom:601.246095pt;}
.y283{bottom:601.248695pt;}
.y196{bottom:601.363281pt;}
.y314{bottom:602.122401pt;}
.ya2{bottom:602.233077pt;}
.y4e{bottom:602.517257pt;}
.y105{bottom:604.475263pt;}
.y28f{bottom:604.960934pt;}
.ya1{bottom:604.992843pt;}
.y2ac{bottom:605.268227pt;}
.y48{bottom:606.126627pt;}
.y300{bottom:606.945308pt;}
.y80{bottom:609.469398pt;}
.y27e{bottom:609.651041pt;}
.y117{bottom:609.653641pt;}
.y226{bottom:611.153641pt;}
.y58{bottom:611.279627pt;}
.y2c3{bottom:613.268227pt;}
.y29a{bottom:613.877601pt;}
.y11{bottom:615.533333pt;}
.y20e{bottom:616.046876pt;}
.y247{bottom:617.417313pt;}
.y130{bottom:619.065108pt;}
.y15d{bottom:619.519534pt;}
.y266{bottom:620.013014pt;}
.y14f{bottom:620.187494pt;}
.y3b{bottom:620.232094pt;}
.y32f{bottom:621.559244pt;}
.y1e9{bottom:621.859378pt;}
.ycc{bottom:622.329427pt;}
.y313{bottom:623.278641pt;}
.y8f{bottom:623.314451pt;}
.yb8{bottom:624.355467pt;}
.y1bd{bottom:625.020831pt;}
.y91{bottom:626.074216pt;}
.y28e{bottom:626.119787pt;}
.y2ab{bottom:626.429681pt;}
.y47{bottom:627.284828pt;}
.y2ff{bottom:628.101561pt;}
.y17c{bottom:629.427081pt;}
.y7f{bottom:630.617187pt;}
.y27d{bottom:630.809894pt;}
.y116{bottom:630.811201pt;}
.y225{bottom:632.309894pt;}
.yca{bottom:632.532549pt;}
.y1a9{bottom:632.867188pt;}
.y299{bottom:635.033854pt;}
.ya0{bottom:638.391277pt;}
.y12f{bottom:640.223961pt;}
.y20d{bottom:640.734369pt;}
.y9f{bottom:641.151043pt;}
.y265{bottom:641.169267pt;}
.y2dd{bottom:641.190107pt;}
.y14e{bottom:641.346347pt;}
.y3a{bottom:641.390294pt;}
.y57{bottom:643.011387pt;}
.y2c{bottom:643.750494pt;}
.y22f{bottom:644.404292pt;}
.y32e{bottom:644.481124pt;}
.yb7{bottom:645.513014pt;}
.y28d{bottom:647.276041pt;}
.y1e8{bottom:648.304685pt;}
.y201{bottom:648.307285pt;}
.y46{bottom:648.443027pt;}
.y17b{bottom:650.585934pt;}
.y1bc{bottom:651.479821pt;}
.y104{bottom:651.968747pt;}
.y224{bottom:653.471347pt;}
.y1d6{bottom:653.593751pt;}
.y195{bottom:654.023441pt;}
.y2c2{bottom:655.585934pt;}
.y298{bottom:656.195307pt;}
.y8e{bottom:659.472656pt;}
.y12e{bottom:661.381507pt;}
.y264{bottom:662.330734pt;}
.y2dc{bottom:662.346347pt;}
.y7e{bottom:662.348961pt;}
.y14d{bottom:662.505214pt;}
.y39{bottom:662.548507pt;}
.y10{bottom:663.200000pt;}
.y2b{bottom:664.908694pt;}
.y56{bottom:665.409828pt;}
.y20c{bottom:665.419276pt;}
.y312{bottom:665.596347pt;}
.yb6{bottom:666.671881pt;}
.y32d{bottom:667.402990pt;}
.y23e{bottom:668.128252pt;}
.y28c{bottom:668.434894pt;}
.y2aa{bottom:668.742188pt;}
.y45{bottom:669.601241pt;}
.y2fe{bottom:670.419267pt;}
.y17a{bottom:671.742188pt;}
.y15c{bottom:672.179681pt;}
.y103{bottom:673.127601pt;}
.y9e{bottom:674.549477pt;}
.y223{bottom:674.627601pt;}
.y1e7{bottom:674.752605pt;}
.ycb{bottom:674.983073pt;}
.y194{bottom:675.182294pt;}
.y2c1{bottom:676.742188pt;}
.y9d{bottom:677.309243pt;}
.y297{bottom:677.351561pt;}
.y1d5{bottom:680.041671pt;}
.y12d{bottom:682.539067pt;}
.y263{bottom:683.486974pt;}
.y2db{bottom:683.507814pt;}
.y14c{bottom:683.662761pt;}
.y38{bottom:683.706707pt;}
.y7d{bottom:684.747401pt;}
.y2a{bottom:686.066894pt;}
.y311{bottom:686.757814pt;}
.y55{bottom:687.808587pt;}
.yb5{bottom:687.829427pt;}
.y2a9{bottom:689.898441pt;}
.y20b{bottom:690.104169pt;}
.y32c{bottom:690.324870pt;}
.y44{bottom:690.759441pt;}
.y2fd{bottom:691.575521pt;}
.y8d{bottom:692.871096pt;}
.y179{bottom:692.901041pt;}
.y15b{bottom:693.338547pt;}
.y27c{bottom:694.283854pt;}
.y102{bottom:694.286454pt;}
.y1bb{bottom:695.786454pt;}
.y193{bottom:696.338548pt;}
.y2c0{bottom:697.898441pt;}
.y296{bottom:698.513014pt;}
.y246{bottom:699.274092pt;}
.y1f9{bottom:701.203125pt;}
.y262{bottom:704.648441pt;}
.y2da{bottom:704.669267pt;}
.y37{bottom:704.864907pt;}
.y1d4{bottom:706.489578pt;}
.y222{bottom:706.863281pt;}
.y7c{bottom:707.145827pt;}
.yf{bottom:707.200000pt;}
.y29{bottom:707.225094pt;}
.y310{bottom:707.914067pt;}
.yb4{bottom:708.988281pt;}
.yd7{bottom:709.271479pt;}
.y9c{bottom:710.707677pt;}
.y28b{bottom:710.752601pt;}
.y2a8{bottom:711.059894pt;}
.y43{bottom:711.917641pt;}
.y352{bottom:712.429030pt;}
.y2fc{bottom:712.731774pt;}
.y32b{bottom:713.241537pt;}
.y9b{bottom:713.467443pt;}
.y101{bottom:715.444014pt;}
.y27b{bottom:715.445307pt;}
.y1ba{bottom:716.945308pt;}
.y1a8{bottom:717.497401pt;}
.y2bf{bottom:719.059894pt;}
.y54{bottom:719.540360pt;}
.y178{bottom:721.442703pt;}
.y14b{bottom:724.216148pt;}
.y12c{bottom:724.856774pt;}
.y261{bottom:725.804681pt;}
.y36{bottom:726.023108pt;}
.y8c{bottom:726.269536pt;}
.y200{bottom:727.645831pt;}
.y1e6{bottom:727.648431pt;}
.y28{bottom:728.383294pt;}
.y192{bottom:728.571614pt;}
.y30f{bottom:729.075521pt;}
.y7b{bottom:729.544267pt;}
.yb3{bottom:730.145827pt;}
.y28a{bottom:731.908854pt;}
.y2a7{bottom:732.216148pt;}
.y1d8{bottom:732.937498pt;}
.y42{bottom:733.075841pt;}
.y351{bottom:735.356124pt;}
.y15a{bottom:735.653641pt;}
.y32a{bottom:736.168617pt;}
.y100{bottom:736.601561pt;}
.y27a{bottom:736.604161pt;}
.ye{bottom:738.560000pt;}
.y20a{bottom:739.473956pt;}
.y2be{bottom:740.216148pt;}
.y295{bottom:740.825521pt;}
.y14a{bottom:745.373694pt;}
.y12b{bottom:746.014321pt;}
.y9a{bottom:746.865891pt;}
.y35{bottom:747.181321pt;}
.y27{bottom:749.541508pt;}
.y99{bottom:749.625656pt;}
.y1a7{bottom:749.730468pt;}
.y53{bottom:751.271813pt;}
.yb2{bottom:751.304681pt;}
.y7a{bottom:751.942708pt;}
.y289{bottom:753.070308pt;}
.y2a6{bottom:753.377601pt;}
.y1e5{bottom:754.096351pt;}
.y41{bottom:754.234054pt;}
.y2fb{bottom:755.049481pt;}
.y159{bottom:756.812494pt;}
.yff{bottom:757.760414pt;}
.y2d9{bottom:758.055988pt;}
.y350{bottom:758.272790pt;}
.y329{bottom:759.085284pt;}
.y1b9{bottom:759.260414pt;}
.y1d3{bottom:759.385418pt;}
.y8b{bottom:759.667963pt;}
.y294{bottom:761.981774pt;}
.y209{bottom:764.156249pt;}
.y149{bottom:766.531254pt;}
.y12a{bottom:767.171881pt;}
.y260{bottom:768.119787pt;}
.y34{bottom:768.339521pt;}
.y177{bottom:768.934894pt;}
.y26{bottom:770.699708pt;}
.y2bd{bottom:772.451828pt;}
.yb1{bottom:772.462241pt;}
.y288{bottom:774.226561pt;}
.y79{bottom:774.341147pt;}
.y40{bottom:775.392254pt;}
.y2fa{bottom:776.210934pt;}
.y221{bottom:778.916667pt;}
.yfe{bottom:778.919267pt;}
.y1b8{bottom:780.419267pt;}
.y1e4{bottom:780.544271pt;}
.y1ff{bottom:780.546871pt;}
.y34f{bottom:781.194657pt;}
.y191{bottom:781.234374pt;}
.y328{bottom:782.012364pt;}
.y52{bottom:783.003907pt;}
.y98{bottom:783.024091pt;}
.y293{bottom:783.143227pt;}
.y2a5{bottom:785.608068pt;}
.y97{bottom:785.783856pt;}
.y1d2{bottom:785.833338pt;}
.y148{bottom:787.690107pt;}
.y129{bottom:788.330734pt;}
.yd{bottom:788.560000pt;}
.y208{bottom:788.841143pt;}
.y30e{bottom:789.023441pt;}
.y25f{bottom:789.278641pt;}
.y33{bottom:789.497721pt;}
.y176{bottom:790.093747pt;}
.y25{bottom:791.857907pt;}
.y8a{bottom:793.066403pt;}
.yb0{bottom:793.621094pt;}
.y3f{bottom:796.550454pt;}
.y78{bottom:796.739587pt;}
.y2f9{bottom:797.367188pt;}
.y158{bottom:799.130214pt;}
.y220{bottom:800.075521pt;}
.yfd{bottom:800.076827pt;}
.y1b7{bottom:801.575521pt;}
.y190{bottom:802.393227pt;}
.y34e{bottom:804.116537pt;}
.y292{bottom:804.299481pt;}
.y327{bottom:804.929030pt;}
.y1f8{bottom:806.989578pt;}
.y147{bottom:808.848961pt;}
.y128{bottom:809.489587pt;}
.y25e{bottom:810.434894pt;}
.y32{bottom:810.655921pt;}
.y175{bottom:811.252601pt;}
.y1d1{bottom:812.281245pt;}
.y24{bottom:813.016107pt;}
.y51{bottom:814.735680pt;}
.yaf{bottom:814.778641pt;}
.y287{bottom:816.541667pt;}
.y2f8{bottom:818.523441pt;}
.y77{bottom:819.138013pt;}
.y96{bottom:819.182291pt;}
.y157{bottom:820.287761pt;}
.ye9{bottom:821.234374pt;}
.y21f{bottom:821.236974pt;}
.y95{bottom:821.942056pt;}
.y1b6{bottom:822.734374pt;}
.y1a6{bottom:823.552081pt;}
.yc{bottom:824.226667pt;}
.y89{bottom:826.464843pt;}
.y34d{bottom:827.038417pt;}
.y326{bottom:827.856124pt;}
.y146{bottom:830.006507pt;}
.y127{bottom:830.647134pt;}
.y25d{bottom:831.596347pt;}
.y31{bottom:831.814134pt;}
.y174{bottom:832.411454pt;}
.y1e3{bottom:833.440098pt;}
.y23{bottom:834.174321pt;}
.y18f{bottom:834.628908pt;}
.yae{bottom:835.937494pt;}
.y291{bottom:836.535161pt;}
.y286{bottom:837.700521pt;}
.y2a4{bottom:837.763665pt;}
.y207{bottom:838.213543pt;}
.y1d0{bottom:838.729165pt;}
.y2f7{bottom:839.679681pt;}
.y156{bottom:841.445308pt;}
.ye8{bottom:842.393227pt;}
.y3e{bottom:842.741532pt;}
.y1b5{bottom:843.893227pt;}
.y2bc{bottom:845.763665pt;}
.yb{bottom:849.933333pt;}
.y34c{bottom:849.960284pt;}
.y2d8{bottom:850.763665pt;}
.y325{bottom:850.772790pt;}
.y76{bottom:850.869787pt;}
.y145{bottom:851.164067pt;}
.y126{bottom:851.804681pt;}
.y25c{bottom:852.752601pt;}
.y30{bottom:852.972334pt;}
.y173{bottom:853.570307pt;}
.y22{bottom:855.332521pt;}
.y94{bottom:855.340491pt;}
.y1a5{bottom:855.785156pt;}
.yad{bottom:857.095054pt;}
.y93{bottom:858.100256pt;}
.y87{bottom:859.863283pt;}
.y1fe{bottom:859.885418pt;}
.y1e2{bottom:859.888018pt;}
.y50{bottom:860.109705pt;}
.y2f6{bottom:860.841148pt;}
.y1f7{bottom:861.442710pt;}
.y155{bottom:862.604161pt;}
.y206{bottom:862.895836pt;}
.y279{bottom:863.549481pt;}
.ye7{bottom:863.552081pt;}
.y1b4{bottom:865.052081pt;}
.y1cf{bottom:865.177085pt;}
.y34b{bottom:872.882164pt;}
.y75{bottom:873.268227pt;}
.y324{bottom:873.699870pt;}
.y25b{bottom:873.914067pt;}
.y172{bottom:874.726561pt;}
.ya{bottom:875.600000pt;}
.y21{bottom:876.490721pt;}
.yac{bottom:878.253907pt;}
.y125{bottom:880.348958pt;}
.y2f5{bottom:881.997401pt;}
.y154{bottom:883.763014pt;}
.ye6{bottom:884.709635pt;}
.y21e{bottom:884.710937pt;}
.y1b3{bottom:886.210937pt;}
.y1e1{bottom:886.333333pt;}
.y18e{bottom:887.289062pt;}
.y205{bottom:887.578124pt;}
.y290{bottom:888.680339pt;}
.y1d7{bottom:891.624999pt;}
.y1f6{bottom:893.179687pt;}
.y144{bottom:893.481770pt;}
.y74{bottom:895.666666pt;}
.y34a{bottom:895.804037pt;}
.y323{bottom:896.616537pt;}
.y20{bottom:897.648926pt;}
.y92{bottom:897.649089pt;}
.y9{bottom:901.266667pt;}
.y2f4{bottom:903.158854pt;}
.y171{bottom:903.268229pt;}
.y153{bottom:904.920573pt;}
.ye5{bottom:905.867188pt;}
.y21d{bottom:905.869791pt;}
.y1b2{bottom:907.367188pt;}
.y18d{bottom:908.447917pt;}
.y285{bottom:911.287108pt;}
.y4f{bottom:913.050130pt;}
.y143{bottom:914.639323pt;}
.y73{bottom:918.065103pt;}
.y1ce{bottom:918.072917pt;}
.y349{bottom:918.720704pt;}
.y1f{bottom:918.807129pt;}
.y322{bottom:919.538412pt;}
.y2f{bottom:920.321613pt;}
.y2f3{bottom:924.315103pt;}
.y25a{bottom:924.639324pt;}
.y1f5{bottom:924.916666pt;}
.y152{bottom:926.078125pt;}
.y2d7{bottom:927.023437pt;}
.ye4{bottom:927.026042pt;}
.y124{bottom:927.842448pt;}
.y18c{bottom:929.604166pt;}
.y142{bottom:935.796875pt;}
.y1b1{bottom:939.602864pt;}
.y72{bottom:940.463542pt;}
.y1fd{bottom:940.783854pt;}
.y1e0{bottom:940.786458pt;}
.y348{bottom:941.642578pt;}
.y321{bottom:942.460286pt;}
.y2d6{bottom:948.179688pt;}
.y21c{bottom:948.182291pt;}
.ye3{bottom:948.184895pt;}
.y123{bottom:948.999999pt;}
.y170{bottom:950.763021pt;}
.y284{bottom:951.839192pt;}
.yab{bottom:951.840495pt;}
.y141{bottom:956.955729pt;}
.y71{bottom:962.861979pt;}
.y347{bottom:964.564453pt;}
.y21b{bottom:969.341146pt;}
.yfc{bottom:969.342448pt;}
.y86{bottom:971.235026pt;}
.y16f{bottom:971.919270pt;}
.y1e{bottom:972.485678pt;}
.y1cd{bottom:972.520832pt;}
.y140{bottom:978.114583pt;}
.y70{bottom:985.260417pt;}
.y346{bottom:987.486329pt;}
.ye2{bottom:990.499999pt;}
.y21a{bottom:990.502603pt;}
.y1b0{bottom:997.901692pt;}
.y151{bottom:999.152344pt;}
.y122{bottom:1001.653645pt;}
.y16e{bottom:1004.154947pt;}
.y1cc{bottom:1004.260416pt;}
.y13f{bottom:1006.656251pt;}
.y6f{bottom:1007.658854pt;}
.y345{bottom:1010.408204pt;}
.ye1{bottom:1011.658854pt;}
.y1c{bottom:1026.666667pt;}
.y1{bottom:1113.666667pt;}
.h5{height:24.333333pt;}
.h3{height:26.000000pt;}
.h17{height:32.398437pt;}
.h18{height:35.158203pt;}
.h1{height:37.132812pt;}
.h1b{height:46.593750pt;}
.h8{height:47.195312pt;}
.h7{height:51.666667pt;}
.he{height:52.593751pt;}
.h16{height:53.080730pt;}
.h4{height:54.609375pt;}
.h2{height:55.699219pt;}
.hb{height:57.339844pt;}
.h10{height:57.375000pt;}
.h6{height:57.559176pt;}
.h11{height:57.906250pt;}
.h24{height:62.156252pt;}
.h21{height:66.656250pt;}
.h22{height:66.937498pt;}
.h20{height:71.718750pt;}
.h23{height:72.382813pt;}
.h1d{height:77.208336pt;}
.h1f{height:86.859375pt;}
.h9{height:95.484375pt;}
.h19{height:95.624998pt;}
.h12{height:95.666667pt;}
.hd{height:96.000000pt;}
.h1c{height:96.510414pt;}
.hc{height:96.765625pt;}
.hf{height:106.161461pt;}
.h15{height:109.968748pt;}
.h13{height:110.986977pt;}
.h1e{height:144.765625pt;}
.ha{height:152.906250pt;}
.h1a{height:173.718750pt;}
.h14{height:289.531250pt;}
.h0{height:1122.666667pt;}
.wb{width:46.000000pt;}
.w9{width:75.000000pt;}
.w7{width:127.000000pt;}
.w3{width:299.800000pt;}
.w8{width:471.000000pt;}
.wa{width:477.000000pt;}
.w4{width:504.226667pt;}
.w2{width:504.533333pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.w6{width:794.000000pt;}
.w5{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:6.000000pt;}
.x7{left:9.366667pt;}
.x25{left:13.601562pt;}
.x24{left:18.050781pt;}
.x22{left:25.878906pt;}
.x3{left:57.033333pt;}
.x2{left:65.700000pt;}
.x10{left:96.000000pt;}
.x1c{left:97.000000pt;}
.x5{left:98.400000pt;}
.x39{left:103.453909pt;}
.x6{left:113.366667pt;}
.x18{left:120.000000pt;}
.x3f{left:126.563284pt;}
.x40{left:134.918755pt;}
.x37{left:138.000000pt;}
.x19{left:144.000000pt;}
.x32{left:148.716412pt;}
.xc{left:150.066655pt;}
.x3c{left:155.344536pt;}
.x33{left:157.592735pt;}
.xb{left:160.733322pt;}
.x38{left:162.000000pt;}
.x9{left:164.066655pt;}
.x1a{left:168.000000pt;}
.x1b{left:172.826256pt;}
.x48{left:174.331406pt;}
.x2a{left:178.489853pt;}
.x2b{left:187.375999pt;}
.x4d{left:190.942978pt;}
.x2f{left:192.000000pt;}
.x45{left:199.771103pt;}
.xa{left:207.773322pt;}
.x3d{left:210.557426pt;}
.x27{left:213.286728pt;}
.x2d{left:222.526176pt;}
.x1e{left:225.000000pt;}
.x20{left:244.669739pt;}
.xd{left:246.773322pt;}
.x4f{left:264.987010pt;}
.x2c{left:274.648180pt;}
.x28{left:277.638290pt;}
.x4a{left:282.391970pt;}
.x41{left:283.611540pt;}
.x42{left:286.055440pt;}
.x2e{left:290.535320pt;}
.x43{left:296.235380pt;}
.x13{left:300.623000pt;}
.x46{left:301.958600pt;}
.x44{left:308.050550pt;}
.x49{left:313.398930pt;}
.xf{left:316.205180pt;}
.x12{left:320.202290pt;}
.x4c{left:328.414000pt;}
.x34{left:331.272980pt;}
.x35{left:335.396100pt;}
.x1f{left:336.965870pt;}
.x3e{left:342.522260pt;}
.x16{left:344.900920pt;}
.x3b{left:346.846480pt;}
.x3a{left:349.196090pt;}
.x4b{left:352.856600pt;}
.x4{left:353.800000pt;}
.x31{left:354.889010pt;}
.x26{left:356.928560pt;}
.x29{left:361.412050pt;}
.xe{left:369.971070pt;}
.x14{left:377.295590pt;}
.x30{left:388.699280pt;}
.x11{left:392.774840pt;}
.x8{left:396.839988pt;}
.x4e{left:413.208590pt;}
.x36{left:448.735930pt;}
.x47{left:464.282810pt;}
.x15{left:466.528900pt;}
.x21{left:645.239870pt;}
.x17{left:649.645750pt;}
.x23{left:651.000000pt;}
.x1{left:680.293322pt;}
}




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