
    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_0450d0f1781bbd9938fba7fd.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4043359bc0f8f42a19a58fba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.118000;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_146837198a20dceba0b228ec.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_17cbfef15dd6a61875baa6ad.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_0450d0f1781bbd9938fba7fd.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_029e3aee66728a37a7eaffd8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.748000;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_48c5d6307e0d2e2a6c2234ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_da7b5bfc8519a48cd7d91a01.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927000;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_009fd323ffdb1078dfb40727.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.748000;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_5eb9f93b517cee9bf0dafab3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.728000;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_fb724fed5817a27f20d0797b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.714000;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_7538ea3730f89372edf833cb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.714000;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.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.m1{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,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:18.352200px;}
.ls53{letter-spacing:-1.200000px;}
.ls32{letter-spacing:-1.080000px;}
.ls40{letter-spacing:-1.026000px;}
.ls31{letter-spacing:-0.972000px;}
.ls45{letter-spacing:-0.600000px;}
.ls41{letter-spacing:-0.540000px;}
.ls3f{letter-spacing:-0.300000px;}
.ls4c{letter-spacing:-0.180000px;}
.lsc{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000600px;}
.ls4d{letter-spacing:0.030000px;}
.ls5{letter-spacing:0.048000px;}
.ls17{letter-spacing:0.054000px;}
.lse{letter-spacing:0.060000px;}
.ls47{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.096000px;}
.ls2f{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.120000px;}
.ls52{letter-spacing:0.150000px;}
.ls3e{letter-spacing:0.160800px;}
.ls1f{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.204000px;}
.ls3d{letter-spacing:0.208200px;}
.ls4f{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.240000px;}
.ls39{letter-spacing:0.264000px;}
.ls21{letter-spacing:0.292200px;}
.ls1a{letter-spacing:0.300000px;}
.ls43{letter-spacing:0.312000px;}
.ls30{letter-spacing:0.324000px;}
.ls1e{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.378000px;}
.ls2a{letter-spacing:0.390000px;}
.ls22{letter-spacing:0.420000px;}
.ls20{letter-spacing:0.450000px;}
.ls9{letter-spacing:0.480000px;}
.ls2b{letter-spacing:0.510000px;}
.ls15{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.570000px;}
.ls18{letter-spacing:0.594000px;}
.ls44{letter-spacing:0.600000px;}
.ls4b{letter-spacing:0.660000px;}
.ls10{letter-spacing:0.690000px;}
.ls26{letter-spacing:0.702600px;}
.ls12{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.768000px;}
.ls34{letter-spacing:0.780000px;}
.ls1{letter-spacing:0.840000px;}
.ls4a{letter-spacing:0.864000px;}
.ls27{letter-spacing:0.900000px;}
.ls37{letter-spacing:0.930000px;}
.ls3c{letter-spacing:0.951600px;}
.ls11{letter-spacing:0.960000px;}
.ls36{letter-spacing:1.020000px;}
.ls7{letter-spacing:1.056000px;}
.ls14{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.104000px;}
.ls51{letter-spacing:1.110000px;}
.ls1d{letter-spacing:1.140000px;}
.ls38{letter-spacing:1.170000px;}
.ls23{letter-spacing:1.188000px;}
.ls1c{letter-spacing:1.200000px;}
.ls29{letter-spacing:1.203600px;}
.ls3b{letter-spacing:1.260000px;}
.ls8{letter-spacing:1.272000px;}
.ls2e{letter-spacing:1.320000px;}
.ls35{letter-spacing:1.380000px;}
.ls2d{letter-spacing:1.440000px;}
.ls24{letter-spacing:1.500000px;}
.ls49{letter-spacing:1.530000px;}
.ls3a{letter-spacing:1.560000px;}
.ls4e{letter-spacing:1.620000px;}
.ls33{letter-spacing:1.680000px;}
.ls13{letter-spacing:1.800000px;}
.ls28{letter-spacing:1.860000px;}
.ls54{letter-spacing:1.890000px;}
.ls42{letter-spacing:1.920000px;}
.ls50{letter-spacing:1.980000px;}
.ls46{letter-spacing:2.100000px;}
.ls4{letter-spacing:2.592000px;}
.ls48{letter-spacing:3.540000px;}
.ls2{letter-spacing:12.510000px;}
.lsd{letter-spacing:1916.824200px;}
.ls19{letter-spacing:1928.352000px;}
.ls0{letter-spacing:2765.404800px;}
.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:-30.024000px;}
.ws1{word-spacing:-22.518000px;}
.ws15{word-spacing:-18.348000px;}
.ws84{word-spacing:-16.680000px;}
.ws36{word-spacing:-14.178000px;}
.ws7a{word-spacing:-11.154000px;}
.ws16{word-spacing:-10.842000px;}
.ws37{word-spacing:-9.757800px;}
.wsa8{word-spacing:-1.200000px;}
.ws7{word-spacing:-1.104000px;}
.ws12{word-spacing:-1.056000px;}
.ws6{word-spacing:-0.840000px;}
.ws34{word-spacing:-0.594000px;}
.ws81{word-spacing:-0.540000px;}
.wsd{word-spacing:-0.240000px;}
.ws38{word-spacing:-0.120000px;}
.wsaa{word-spacing:-0.045000px;}
.ws3{word-spacing:0.000000px;}
.ws58{word-spacing:0.054000px;}
.ws65{word-spacing:0.060000px;}
.ws77{word-spacing:0.108000px;}
.wsac{word-spacing:0.120000px;}
.wsad{word-spacing:0.180000px;}
.ws74{word-spacing:0.216000px;}
.ws3a{word-spacing:0.240000px;}
.ws9a{word-spacing:0.300000px;}
.ws53{word-spacing:0.324000px;}
.ws5d{word-spacing:0.360000px;}
.ws2b{word-spacing:0.378000px;}
.ws7f{word-spacing:0.420000px;}
.ws14{word-spacing:0.528000px;}
.ws3b{word-spacing:0.540000px;}
.ws4{word-spacing:0.546000px;}
.ws96{word-spacing:0.600000px;}
.ws9d{word-spacing:0.660000px;}
.ws97{word-spacing:0.720000px;}
.ws99{word-spacing:0.780000px;}
.ws56{word-spacing:0.810000px;}
.ws3e{word-spacing:0.840000px;}
.ws7d{word-spacing:0.900000px;}
.ws6f{word-spacing:1.020000px;}
.wsab{word-spacing:1.080000px;}
.ws47{word-spacing:1.140000px;}
.ws8b{word-spacing:1.200000px;}
.ws54{word-spacing:1.242000px;}
.ws7e{word-spacing:1.260000px;}
.ws70{word-spacing:1.440000px;}
.ws41{word-spacing:1.500000px;}
.ws5a{word-spacing:1.512000px;}
.wsa9{word-spacing:1.620000px;}
.ws5{word-spacing:1.638000px;}
.ws25{word-spacing:1.740000px;}
.ws72{word-spacing:1.782000px;}
.wsa6{word-spacing:1.800000px;}
.ws3c{word-spacing:1.860000px;}
.ws59{word-spacing:1.944000px;}
.ws29{word-spacing:1.980000px;}
.ws83{word-spacing:1.998000px;}
.ws67{word-spacing:2.040000px;}
.ws55{word-spacing:2.052000px;}
.ws9c{word-spacing:2.100000px;}
.ws86{word-spacing:2.160000px;}
.ws5e{word-spacing:2.280000px;}
.ws8e{word-spacing:2.340000px;}
.ws66{word-spacing:2.400000px;}
.ws61{word-spacing:2.460000px;}
.wsae{word-spacing:2.520000px;}
.ws63{word-spacing:2.580000px;}
.ws64{word-spacing:2.640000px;}
.ws8a{word-spacing:2.760000px;}
.ws62{word-spacing:2.820000px;}
.ws5c{word-spacing:2.880000px;}
.ws5b{word-spacing:2.916000px;}
.ws3d{word-spacing:3.000000px;}
.ws80{word-spacing:3.060000px;}
.ws8d{word-spacing:3.120000px;}
.ws8f{word-spacing:3.180000px;}
.ws78{word-spacing:3.186000px;}
.ws6a{word-spacing:3.240000px;}
.ws1f{word-spacing:3.300000px;}
.ws75{word-spacing:3.348000px;}
.ws10{word-spacing:3.360000px;}
.ws19{word-spacing:3.420000px;}
.ws60{word-spacing:3.480000px;}
.ws76{word-spacing:3.510000px;}
.ws27{word-spacing:3.540000px;}
.wsf{word-spacing:3.552000px;}
.ws79{word-spacing:3.564000px;}
.wsa5{word-spacing:3.672000px;}
.ws87{word-spacing:3.720000px;}
.ws2f{word-spacing:3.726000px;}
.ws2e{word-spacing:3.780000px;}
.ws42{word-spacing:3.840000px;}
.wsb{word-spacing:3.888000px;}
.ws71{word-spacing:3.900000px;}
.wsc{word-spacing:3.936000px;}
.ws35{word-spacing:3.942000px;}
.ws1b{word-spacing:3.960000px;}
.ws48{word-spacing:4.020000px;}
.ws57{word-spacing:4.050000px;}
.ws26{word-spacing:4.080000px;}
.ws39{word-spacing:4.140000px;}
.wsa4{word-spacing:4.200000px;}
.ws73{word-spacing:4.212000px;}
.wsa3{word-spacing:4.260000px;}
.ws46{word-spacing:4.320000px;}
.ws95{word-spacing:4.380000px;}
.wsa7{word-spacing:4.440000px;}
.ws9b{word-spacing:4.500000px;}
.ws45{word-spacing:4.620000px;}
.ws44{word-spacing:4.680000px;}
.ws3f{word-spacing:4.740000px;}
.wsa0{word-spacing:4.800000px;}
.wse{word-spacing:4.848000px;}
.ws32{word-spacing:4.860000px;}
.ws9f{word-spacing:4.980000px;}
.ws69{word-spacing:5.040000px;}
.ws91{word-spacing:5.100000px;}
.ws4b{word-spacing:5.130000px;}
.ws4f{word-spacing:5.220000px;}
.ws22{word-spacing:5.280000px;}
.ws88{word-spacing:5.340000px;}
.wsa2{word-spacing:5.400000px;}
.ws94{word-spacing:5.460000px;}
.ws4d{word-spacing:5.520000px;}
.ws40{word-spacing:5.700000px;}
.ws2c{word-spacing:5.724000px;}
.ws85{word-spacing:5.760000px;}
.ws92{word-spacing:5.820000px;}
.ws43{word-spacing:5.880000px;}
.wsa{word-spacing:5.904000px;}
.ws31{word-spacing:5.940000px;}
.ws13{word-spacing:5.952000px;}
.ws11{word-spacing:6.000000px;}
.ws23{word-spacing:6.060000px;}
.ws24{word-spacing:6.120000px;}
.ws52{word-spacing:6.156000px;}
.ws98{word-spacing:6.180000px;}
.ws30{word-spacing:6.210000px;}
.ws7b{word-spacing:6.240000px;}
.ws7c{word-spacing:6.300000px;}
.ws6b{word-spacing:6.420000px;}
.wsa1{word-spacing:6.480000px;}
.ws50{word-spacing:6.540000px;}
.ws6e{word-spacing:6.600000px;}
.ws5f{word-spacing:6.660000px;}
.ws8{word-spacing:6.672000px;}
.ws33{word-spacing:6.696000px;}
.ws68{word-spacing:6.720000px;}
.ws4a{word-spacing:6.780000px;}
.ws20{word-spacing:6.840000px;}
.ws49{word-spacing:6.900000px;}
.ws4e{word-spacing:6.960000px;}
.ws28{word-spacing:7.020000px;}
.ws4c{word-spacing:7.080000px;}
.ws9e{word-spacing:7.140000px;}
.ws1d{word-spacing:7.200000px;}
.ws6c{word-spacing:7.260000px;}
.ws2d{word-spacing:7.506000px;}
.ws21{word-spacing:7.560000px;}
.ws1e{word-spacing:7.620000px;}
.ws82{word-spacing:7.680000px;}
.ws1c{word-spacing:7.740000px;}
.ws51{word-spacing:7.800000px;}
.ws18{word-spacing:7.860000px;}
.ws6d{word-spacing:7.980000px;}
.ws2a{word-spacing:8.100000px;}
.ws93{word-spacing:8.160000px;}
.ws89{word-spacing:8.220000px;}
.ws8c{word-spacing:8.280000px;}
.ws1a{word-spacing:8.340000px;}
.ws9{word-spacing:8.592000px;}
.ws2{word-spacing:10.008000px;}
.ws90{word-spacing:11.880000px;}
.ws17{word-spacing:17.316000px;}
._5{margin-left:-23.352000px;}
._4{margin-left:-9.324000px;}
._16{margin-left:-5.940000px;}
._8{margin-left:-2.592000px;}
._7{margin-left:-1.108800px;}
._2{width:1.558200px;}
._11{width:2.844000px;}
._6{width:4.080000px;}
._a{width:8.520000px;}
._1{width:9.954000px;}
._0{width:11.130000px;}
._3{width:12.222000px;}
._10{width:13.986000px;}
._b{width:17.316000px;}
._15{width:25.272000px;}
._17{width:27.216000px;}
._18{width:30.618000px;}
._9{width:39.636000px;}
._c{width:41.796000px;}
._d{width:42.876000px;}
._f{width:43.956000px;}
._12{width:46.278000px;}
._14{width:47.547000px;}
._e{width:49.680000px;}
._13{width:51.354000px;}
.fc1{color:rgb(180,141,14);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:35.100000px;}
.fs0{font-size:36.000000px;}
.fsc{font-size:39.000000px;}
.fs3{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fsd{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fsf{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fsb{font-size:78.000000px;}
.fs6{font-size:81.000000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:85.039350px;}
.y16e{bottom:138.152850px;}
.y235{bottom:138.181500px;}
.y14a{bottom:138.195000px;}
.y93{bottom:138.201000px;}
.ybe{bottom:138.207000px;}
.y107{bottom:138.213000px;}
.y259{bottom:138.247050px;}
.y6a{bottom:138.267000px;}
.y1fa{bottom:138.650250px;}
.yc9{bottom:139.899000px;}
.ye7{bottom:140.295600px;}
.ya{bottom:140.313450px;}
.y1b1{bottom:140.777850px;}
.y210{bottom:141.106500px;}
.y9{bottom:152.314950px;}
.y92{bottom:155.791500px;}
.ybd{bottom:155.797500px;}
.y106{bottom:155.803500px;}
.y69{bottom:155.857500px;}
.y1b0{bottom:158.372850px;}
.y16d{bottom:158.942850px;}
.y258{bottom:159.397050px;}
.y1f9{bottom:159.440250px;}
.y149{bottom:159.835500px;}
.yc8{bottom:160.689000px;}
.ye6{bottom:161.085600px;}
.y234{bottom:169.441500px;}
.y8{bottom:170.695800px;}
.y20f{bottom:172.291500px;}
.ybc{bottom:173.388000px;}
.y105{bottom:173.394000px;}
.y68{bottom:173.448000px;}
.y1af{bottom:175.967850px;}
.y91{bottom:177.432000px;}
.y16c{bottom:179.732850px;}
.y1f8{bottom:180.230250px;}
.yc7{bottom:181.479000px;}
.ye5{bottom:181.875600px;}
.y7{bottom:188.251800px;}
.y233{bottom:190.183800px;}
.y257{bottom:190.942050px;}
.y104{bottom:190.984500px;}
.y67{bottom:191.038500px;}
.y20e{bottom:193.081500px;}
.ybb{bottom:195.028500px;}
.yc6{bottom:202.269000px;}
.ye4{bottom:202.665600px;}
.y6{bottom:205.809300px;}
.y127{bottom:208.575000px;}
.yba{bottom:208.605000px;}
.y66{bottom:208.629000px;}
.y232{bottom:211.048800px;}
.y103{bottom:212.625000px;}
.y20d{bottom:213.871500px;}
.y1ae{bottom:214.352850px;}
.y5{bottom:216.991800px;}
.y16b{bottom:221.312850px;}
.y148{bottom:221.618100px;}
.y256{bottom:222.487050px;}
.yc5{bottom:223.059000px;}
.ye3{bottom:223.455600px;}
.y90{bottom:225.805200px;}
.y102{bottom:226.189500px;}
.yb9{bottom:226.195500px;}
.y65{bottom:226.219500px;}
.y1f7{bottom:228.419100px;}
.y4{bottom:232.423350px;}
.y20c{bottom:234.661500px;}
.y1ad{bottom:235.142850px;}
.y16a{bottom:242.102850px;}
.y231{bottom:242.308800px;}
.y147{bottom:242.408100px;}
.y3{bottom:243.605850px;}
.y255{bottom:243.637050px;}
.y101{bottom:243.780000px;}
.yb8{bottom:243.786000px;}
.y64{bottom:243.810000px;}
.yc4{bottom:243.849000px;}
.y8f{bottom:246.595200px;}
.ye2{bottom:254.640600px;}
.y187{bottom:255.433650px;}
.y1ac{bottom:255.932850px;}
.y100{bottom:261.370500px;}
.yb7{bottom:261.376500px;}
.y63{bottom:261.400500px;}
.y169{bottom:262.892850px;}
.y230{bottom:263.173800px;}
.y146{bottom:263.198100px;}
.yc3{bottom:264.639000px;}
.y254{bottom:264.787050px;}
.y8e{bottom:267.385200px;}
.y126{bottom:267.967050px;}
.ye1{bottom:275.430600px;}
.y186{bottom:276.223650px;}
.y1ab{bottom:276.722850px;}
.yb6{bottom:278.967000px;}
.y62{bottom:278.991000px;}
.y20b{bottom:280.724400px;}
.yff{bottom:283.011000px;}
.y1d3{bottom:283.183350px;}
.y168{bottom:283.682850px;}
.y145{bottom:283.988100px;}
.yc2{bottom:285.429000px;}
.y125{bottom:285.562050px;}
.y8d{bottom:288.118350px;}
.y22f{bottom:294.433800px;}
.ye0{bottom:296.220600px;}
.y253{bottom:296.332050px;}
.yfe{bottom:296.569500px;}
.y61{bottom:296.581500px;}
.y185{bottom:297.013650px;}
.y1aa{bottom:297.512850px;}
.yb5{bottom:300.607500px;}
.y1f6{bottom:300.707850px;}
.y1d2{bottom:300.778350px;}
.y124{bottom:303.157050px;}
.y167{bottom:304.472850px;}
.y144{bottom:304.778100px;}
.yc1{bottom:306.219000px;}
.y8c{bottom:308.908350px;}
.yfd{bottom:314.160000px;}
.y60{bottom:314.172000px;}
.yb4{bottom:314.190150px;}
.ydf{bottom:317.010600px;}
.y252{bottom:317.482050px;}
.y184{bottom:317.803650px;}
.y1a9{bottom:318.302850px;}
.y1d1{bottom:318.373350px;}
.y123{bottom:320.752050px;}
.y1f5{bottom:321.497850px;}
.y166{bottom:325.262850px;}
.y143{bottom:325.568100px;}
.y22e{bottom:325.693800px;}
.y8b{bottom:329.698350px;}
.y5f{bottom:331.762500px;}
.yb3{bottom:331.780650px;}
.yfc{bottom:335.800500px;}
.y1d0{bottom:335.968350px;}
.yde{bottom:337.800600px;}
.y183{bottom:338.593650px;}
.y1a8{bottom:339.092850px;}
.y1f4{bottom:342.287850px;}
.y165{bottom:346.052850px;}
.y20a{bottom:348.722850px;}
.y251{bottom:349.027050px;}
.y5e{bottom:349.353000px;}
.yb2{bottom:349.371150px;}
.y22d{bottom:356.953800px;}
.ydd{bottom:358.590600px;}
.yc0{bottom:358.659750px;}
.y122{bottom:359.137050px;}
.y182{bottom:359.383650px;}
.y1a7{bottom:359.882850px;}
.y8a{bottom:360.883350px;}
.y1f3{bottom:363.077850px;}
.y164{bottom:366.842850px;}
.y5d{bottom:366.943500px;}
.yb1{bottom:366.961650px;}
.y142{bottom:367.148100px;}
.y39{bottom:369.505500px;}
.y209{bottom:369.512850px;}
.y250{bottom:370.177050px;}
.yfb{bottom:370.993500px;}
.y1cf{bottom:374.339250px;}
.ydc{bottom:379.380600px;}
.y121{bottom:379.927050px;}
.y1a6{bottom:380.672850px;}
.y89{bottom:381.673350px;}
.y1f2{bottom:383.867850px;}
.y38{bottom:383.893500px;}
.yb0{bottom:384.552150px;}
.y141{bottom:384.743100px;}
.y22c{bottom:388.213800px;}
.y208{bottom:390.302850px;}
.y24f{bottom:391.327050px;}
.y1ce{bottom:395.129250px;}
.y163{bottom:398.027850px;}
.y37{bottom:398.281500px;}
.ydb{bottom:400.170600px;}
.y120{bottom:400.717050px;}
.y1a5{bottom:401.462850px;}
.yaf{bottom:402.142650px;}
.y140{bottom:402.338100px;}
.y88{bottom:402.463350px;}
.y1f1{bottom:404.657850px;}
.y181{bottom:405.446400px;}
.y31{bottom:405.457500px;}
.y22b{bottom:409.078800px;}
.y207{bottom:411.092850px;}
.y36{bottom:412.669500px;}
.y1cd{bottom:415.919250px;}
.y162{bottom:418.817850px;}
.y30{bottom:419.845500px;}
.y13f{bottom:419.933100px;}
.y11f{bottom:421.507050px;}
.yfa{bottom:421.735650px;}
.y24e{bottom:422.872050px;}
.y87{bottom:423.253350px;}
.yae{bottom:423.783150px;}
.y5c{bottom:424.275150px;}
.y1f0{bottom:425.447850px;}
.y35{bottom:427.057500px;}
.y22a{bottom:429.943800px;}
.y206{bottom:431.882850px;}
.y1a4{bottom:432.647850px;}
.y2f{bottom:434.233500px;}
.y1cc{bottom:436.709250px;}
.y161{bottom:439.607850px;}
.y34{bottom:441.445500px;}
.yf9{bottom:442.525650px;}
.y24d{bottom:444.022050px;}
.y86{bottom:444.043350px;}
.y5b{bottom:444.977100px;}
.y1ef{bottom:446.237850px;}
.y2e{bottom:448.621500px;}
.yda{bottom:452.611350px;}
.y205{bottom:452.672850px;}
.y11e{bottom:452.692050px;}
.y1a3{bottom:453.437850px;}
.y33{bottom:455.833500px;}
.y13e{bottom:458.318100px;}
.y160{bottom:460.397850px;}
.y229{bottom:461.203800px;}
.yf8{bottom:463.315650px;}
.y85{bottom:464.833350px;}
.y24c{bottom:465.172050px;}
.y5a{bottom:465.767100px;}
.y2d{bottom:470.210400px;}
.y32{bottom:470.221500px;}
.y204{bottom:473.462850px;}
.y11d{bottom:473.482050px;}
.y180{bottom:473.547150px;}
.y1a2{bottom:474.227850px;}
.y1cb{bottom:478.232850px;}
.yad{bottom:479.060850px;}
.y13d{bottom:479.108100px;}
.y15f{bottom:481.187850px;}
.yf7{bottom:484.099650px;}
.y84{bottom:485.623350px;}
.y59{bottom:486.557100px;}
.y1ee{bottom:487.817850px;}
.y228{bottom:492.463800px;}
.y203{bottom:494.252850px;}
.y11c{bottom:494.272050px;}
.y17f{bottom:494.337150px;}
.y1a1{bottom:495.017850px;}
.y1ca{bottom:495.827850px;}
.yac{bottom:496.655850px;}
.y24b{bottom:496.717050px;}
.y15e{bottom:501.977850px;}
.yf6{bottom:504.889650px;}
.y1ed{bottom:505.412850px;}
.y83{bottom:506.413350px;}
.y58{bottom:507.347100px;}
.y2c{bottom:508.580100px;}
.y1c9{bottom:513.422850px;}
.yab{bottom:514.250850px;}
.y17e{bottom:515.042850px;}
.y11b{bottom:515.062050px;}
.y1a0{bottom:515.807850px;}
.y24a{bottom:517.867050px;}
.y13c{bottom:520.688100px;}
.y15d{bottom:522.767850px;}
.y2b{bottom:522.968100px;}
.y1ec{bottom:523.007850px;}
.y227{bottom:523.723800px;}
.yf5{bottom:525.676650px;}
.y82{bottom:527.203350px;}
.y57{bottom:528.137100px;}
.y25{bottom:530.144100px;}
.y1c8{bottom:531.017850px;}
.yaa{bottom:531.845850px;}
.y17d{bottom:535.832850px;}
.y11a{bottom:535.852050px;}
.y19f{bottom:536.597850px;}
.y2a{bottom:537.356100px;}
.y13b{bottom:538.283100px;}
.y1eb{bottom:540.602850px;}
.y15c{bottom:543.557850px;}
.y24{bottom:544.532100px;}
.y226{bottom:544.588800px;}
.yf4{bottom:546.466650px;}
.y81{bottom:547.993350px;}
.y1c7{bottom:548.612850px;}
.y56{bottom:548.927100px;}
.y249{bottom:549.412050px;}
.ya9{bottom:549.440850px;}
.y29{bottom:551.744100px;}
.y13a{bottom:555.878100px;}
.y202{bottom:556.622850px;}
.y119{bottom:556.642050px;}
.y19e{bottom:557.387850px;}
.y23{bottom:558.920100px;}
.y225{bottom:565.453800px;}
.y28{bottom:566.132100px;}
.y1c6{bottom:566.207850px;}
.y17c{bottom:567.017850px;}
.y55{bottom:569.717100px;}
.y248{bottom:570.562050px;}
.y22{bottom:573.308100px;}
.y139{bottom:573.473100px;}
.y15b{bottom:574.742850px;}
.y201{bottom:577.412850px;}
.y19d{bottom:578.177850px;}
.y1ea{bottom:578.987850px;}
.y80{bottom:579.178350px;}
.y27{bottom:580.520100px;}
.y1c5{bottom:583.802850px;}
.y17b{bottom:587.807850px;}
.ya8{bottom:587.825850px;}
.y54{bottom:590.507100px;}
.y138{bottom:591.068100px;}
.yf3{bottom:592.529400px;}
.y21{bottom:594.897150px;}
.y26{bottom:594.908100px;}
.y15a{bottom:595.532850px;}
.y224{bottom:596.713800px;}
.y200{bottom:598.202850px;}
.y118{bottom:598.222050px;}
.y19c{bottom:598.967850px;}
.y1e9{bottom:599.777850px;}
.y7f{bottom:599.968350px;}
.y247{bottom:602.107050px;}
.y17a{bottom:608.597850px;}
.ya7{bottom:608.615850px;}
.y53{bottom:611.297100px;}
.y159{bottom:616.322850px;}
.y223{bottom:617.578800px;}
.y1ff{bottom:618.992850px;}
.y117{bottom:619.012050px;}
.y19b{bottom:619.757850px;}
.y1e8{bottom:620.567850px;}
.y7e{bottom:620.758350px;}
.y1c4{bottom:622.187850px;}
.y246{bottom:623.257050px;}
.y179{bottom:629.387850px;}
.ya6{bottom:629.405850px;}
.y137{bottom:629.453100px;}
.y52{bottom:632.087100px;}
.y20{bottom:633.271350px;}
.y158{bottom:637.112850px;}
.y1fe{bottom:639.782850px;}
.y19a{bottom:640.547850px;}
.y1e7{bottom:641.357850px;}
.y1c3{bottom:642.977850px;}
.y1f{bottom:647.659350px;}
.y222{bottom:648.838800px;}
.y178{bottom:650.177850px;}
.ya5{bottom:650.195850px;}
.y116{bottom:650.197050px;}
.y136{bottom:650.201850px;}
.y51{bottom:652.877100px;}
.y245{bottom:654.802050px;}
.y157{bottom:657.902850px;}
.y1fd{bottom:660.572850px;}
.yf2{bottom:660.612150px;}
.y199{bottom:661.337850px;}
.y1e{bottom:662.047350px;}
.y1e6{bottom:662.147850px;}
.y7d{bottom:662.338350px;}
.y1c2{bottom:663.767850px;}
.yd9{bottom:667.822350px;}
.y18{bottom:669.223350px;}
.y177{bottom:670.967850px;}
.ya4{bottom:670.985850px;}
.y115{bottom:670.987050px;}
.y50{bottom:673.667100px;}
.y244{bottom:675.952050px;}
.y1d{bottom:676.435350px;}
.y156{bottom:678.692850px;}
.y7c{bottom:679.933350px;}
.y221{bottom:680.098800px;}
.y1fc{bottom:681.362850px;}
.y135{bottom:681.386850px;}
.yf1{bottom:681.402150px;}
.y198{bottom:682.127850px;}
.y1e5{bottom:682.937850px;}
.y17{bottom:683.611350px;}
.y1c{bottom:690.823350px;}
.y176{bottom:691.757850px;}
.ya3{bottom:691.775850px;}
.y114{bottom:691.777050px;}
.y4f{bottom:694.457100px;}
.y1c1{bottom:694.952850px;}
.y243{bottom:697.102050px;}
.y7b{bottom:697.528350px;}
.y16{bottom:697.999350px;}
.y155{bottom:699.482850px;}
.y220{bottom:700.963800px;}
.y1fb{bottom:702.152850px;}
.y134{bottom:702.176850px;}
.yf0{bottom:702.192150px;}
.y1b{bottom:705.211350px;}
.y15{bottom:712.387350px;}
.y175{bottom:712.547850px;}
.ya2{bottom:712.565850px;}
.y113{bottom:712.567050px;}
.y1e4{bottom:714.122850px;}
.y7a{bottom:715.123350px;}
.y1c0{bottom:715.742850px;}
.y1a{bottom:719.599350px;}
.y154{bottom:720.272850px;}
.y133{bottom:722.966850px;}
.yef{bottom:722.982150px;}
.y197{bottom:723.707850px;}
.y4e{bottom:725.642100px;}
.y242{bottom:728.647050px;}
.y21f{bottom:732.223800px;}
.y79{bottom:732.718350px;}
.yd8{bottom:733.337850px;}
.ya1{bottom:733.355850px;}
.y112{bottom:733.357050px;}
.y14{bottom:733.976250px;}
.y19{bottom:733.987350px;}
.y1e3{bottom:734.912850px;}
.y1bf{bottom:736.532850px;}
.y153{bottom:741.062850px;}
.y196{bottom:741.302850px;}
.y132{bottom:743.756850px;}
.yee{bottom:743.772150px;}
.y4d{bottom:746.432100px;}
.y78{bottom:750.313350px;}
.yd7{bottom:754.127850px;}
.y1e2{bottom:755.702850px;}
.y1be{bottom:757.322850px;}
.y195{bottom:758.897850px;}
.y241{bottom:760.192050px;}
.y21e{bottom:763.483800px;}
.ya0{bottom:764.540850px;}
.y111{bottom:764.542050px;}
.y131{bottom:764.546850px;}
.yed{bottom:764.562150px;}
.y4c{bottom:767.222100px;}
.y77{bottom:767.908350px;}
.yd6{bottom:774.917850px;}
.y194{bottom:776.492850px;}
.y1bd{bottom:778.112850px;}
.y240{bottom:781.342050px;}
.y21d{bottom:784.348800px;}
.y9f{bottom:785.330850px;}
.y110{bottom:785.332050px;}
.y130{bottom:785.336850px;}
.yec{bottom:785.352150px;}
.y4b{bottom:788.012100px;}
.y152{bottom:790.082850px;}
.yd5{bottom:795.707850px;}
.y1e1{bottom:797.282850px;}
.y1bc{bottom:798.902850px;}
.y174{bottom:806.102850px;}
.y9e{bottom:806.120850px;}
.y10f{bottom:806.122050px;}
.y12f{bottom:806.126850px;}
.yeb{bottom:806.142150px;}
.y76{bottom:806.293350px;}
.y151{bottom:807.677850px;}
.y4a{bottom:808.802100px;}
.y23f{bottom:812.887050px;}
.y193{bottom:814.877850px;}
.y21c{bottom:815.608800px;}
.yd4{bottom:816.497850px;}
.y1e0{bottom:818.072850px;}
.y1bb{bottom:819.692850px;}
.y150{bottom:825.272850px;}
.yea{bottom:826.892850px;}
.y9d{bottom:826.910850px;}
.y10e{bottom:826.912050px;}
.y75{bottom:827.083350px;}
.y49{bottom:829.592100px;}
.y192{bottom:835.667850px;}
.y21b{bottom:836.473800px;}
.yd3{bottom:837.287850px;}
.y12e{bottom:837.311850px;}
.y1df{bottom:838.862850px;}
.y13{bottom:841.458450px;}
.y14f{bottom:842.867850px;}
.y23e{bottom:844.432050px;}
.ybf{bottom:847.204500px;}
.y173{bottom:847.682850px;}
.y9c{bottom:847.700850px;}
.y10d{bottom:847.702050px;}
.y74{bottom:847.873350px;}
.y48{bottom:850.382100px;}
.y1ba{bottom:850.877850px;}
.y191{bottom:856.457850px;}
.y21a{bottom:857.338800px;}
.yd2{bottom:858.077850px;}
.y12d{bottom:858.101850px;}
.y1de{bottom:859.652850px;}
.y14e{bottom:860.462850px;}
.y12{bottom:862.248450px;}
.y172{bottom:868.472850px;}
.y9b{bottom:868.490850px;}
.y10c{bottom:868.492050px;}
.y73{bottom:868.663350px;}
.y47{bottom:871.172100px;}
.y1b9{bottom:871.667850px;}
.y23d{bottom:875.977050px;}
.y190{bottom:877.247850px;}
.y14d{bottom:878.057850px;}
.yd1{bottom:878.867850px;}
.y12c{bottom:878.891850px;}
.y1dd{bottom:880.442850px;}
.y11{bottom:883.017150px;}
.y219{bottom:888.598800px;}
.y171{bottom:889.262850px;}
.y9a{bottom:889.280850px;}
.y10b{bottom:889.282050px;}
.y72{bottom:889.453350px;}
.y46{bottom:891.962100px;}
.y1b8{bottom:892.457850px;}
.y14c{bottom:895.652850px;}
.y18f{bottom:898.037850px;}
.yd0{bottom:899.657850px;}
.y12b{bottom:899.681850px;}
.y1dc{bottom:901.232850px;}
.y23c{bottom:907.522050px;}
.y218{bottom:909.463800px;}
.y170{bottom:910.052850px;}
.y99{bottom:910.070850px;}
.y10a{bottom:910.072050px;}
.y45{bottom:912.752100px;}
.y14b{bottom:913.247850px;}
.y18e{bottom:918.827850px;}
.ycf{bottom:920.447850px;}
.y12a{bottom:920.471850px;}
.y1db{bottom:922.022850px;}
.y10{bottom:927.411150px;}
.y16f{bottom:930.842850px;}
.y98{bottom:930.860850px;}
.y109{bottom:930.862050px;}
.y44{bottom:933.542100px;}
.y1b7{bottom:934.037850px;}
.y71{bottom:935.516250px;}
.y23b{bottom:939.073950px;}
.y217{bottom:940.723800px;}
.yce{bottom:941.237850px;}
.y1da{bottom:942.812850px;}
.ye9{bottom:951.632850px;}
.y108{bottom:951.652050px;}
.yf{bottom:952.611150px;}
.y43{bottom:954.332100px;}
.y18d{bottom:960.407850px;}
.y129{bottom:962.027850px;}
.y97{bottom:962.045850px;}
.y1b6{bottom:965.222850px;}
.y23a{bottom:970.618950px;}
.y216{bottom:971.983800px;}
.ycd{bottom:972.422850px;}
.y42{bottom:975.122100px;}
.y18c{bottom:978.002850px;}
.y128{bottom:982.817850px;}
.y96{bottom:982.829850px;}
.y1d9{bottom:984.392850px;}
.y1b5{bottom:986.012850px;}
.y215{bottom:992.848800px;}
.ycc{bottom:993.212850px;}
.y18b{bottom:995.597850px;}
.y41{bottom:995.912100px;}
.ye{bottom:997.005150px;}
.y1d8{bottom:1001.987850px;}
.y239{bottom:1002.163950px;}
.y70{bottom:1003.607850px;}
.y95{bottom:1003.619850px;}
.y1b4{bottom:1006.802850px;}
.y18a{bottom:1013.192850px;}
.y214{bottom:1013.713800px;}
.ycb{bottom:1014.002850px;}
.y40{bottom:1016.702100px;}
.y1d7{bottom:1019.582850px;}
.yd{bottom:1022.205150px;}
.y6f{bottom:1024.397850px;}
.y94{bottom:1024.407000px;}
.y1b3{bottom:1027.592850px;}
.y189{bottom:1030.787850px;}
.y238{bottom:1033.708950px;}
.y213{bottom:1034.567850px;}
.yca{bottom:1034.792850px;}
.y1d6{bottom:1037.177850px;}
.y3f{bottom:1037.492100px;}
.y6e{bottom:1045.187850px;}
.y188{bottom:1048.382850px;}
.y1d5{bottom:1054.772850px;}
.y237{bottom:1054.862850px;}
.ye8{bottom:1055.582850px;}
.y3e{bottom:1058.282100px;}
.y212{bottom:1065.827850px;}
.y6d{bottom:1065.977850px;}
.yc{bottom:1066.590150px;}
.y1d4{bottom:1072.367850px;}
.y236{bottom:1086.407850px;}
.y211{bottom:1086.692850px;}
.y6c{bottom:1086.767850px;}
.y1b2{bottom:1089.962850px;}
.yb{bottom:1098.990000px;}
.y3d{bottom:1104.345000px;}
.y6b{bottom:1107.557850px;}
.y1{bottom:1164.901350px;}
.y3c{bottom:1172.943900px;}
.y3b{bottom:1193.917500px;}
.y3a{bottom:1207.417500px;}
.h2{height:26.496000px;}
.h6{height:30.912000px;}
.h4{height:31.206000px;}
.h13{height:32.832000px;}
.h5{height:33.435000px;}
.hb{height:35.088000px;}
.hd{height:35.328000px;}
.hc{height:43.584000px;}
.h22{height:43.860000px;}
.he{height:46.308000px;}
.h11{height:49.032000px;}
.ha{height:54.480000px;}
.h15{height:54.491400px;}
.h19{height:54.492000px;}
.h16{height:54.504000px;}
.h1a{height:54.516000px;}
.h14{height:54.516600px;}
.h21{height:54.523800px;}
.h20{height:54.536400px;}
.h1b{height:54.556800px;}
.h1c{height:54.576000px;}
.h18{height:54.637200px;}
.h1d{height:54.645000px;}
.h1f{height:54.705600px;}
.h12{height:54.707400px;}
.h1e{height:54.817200px;}
.h10{height:54.832200px;}
.h23{height:54.970800px;}
.hf{height:57.018000px;}
.h17{height:57.204000px;}
.h3{height:59.928000px;}
.h8{height:61.404000px;}
.h9{height:76.272000px;}
.h7{height:78.948000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x14{left:86.980500px;}
.xf{left:93.543300px;}
.x19{left:104.181750px;}
.x12{left:106.301850px;}
.x18{left:108.234900px;}
.x3{left:110.554350px;}
.x1c{left:136.069350px;}
.x1b{left:138.010500px;}
.x4{left:145.195650px;}
.x5{left:150.820650px;}
.x13{left:153.064350px;}
.x1a{left:155.002800px;}
.x15{left:181.832100px;}
.x16{left:199.310850px;}
.x7{left:261.173550px;}
.x6{left:268.172400px;}
.x10{left:284.883300px;}
.xd{left:309.238500px;}
.x17{left:353.979300px;}
.x8{left:355.583250px;}
.xb{left:377.696250px;}
.xa{left:452.771250px;}
.x9{left:529.841250px;}
.xe{left:656.923500px;}
.xc{left:659.705250px;}
.x11{left:722.399850px;}
.x1{left:752.406450px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.313067pt;}
.ls53{letter-spacing:-1.066667pt;}
.ls32{letter-spacing:-0.960000pt;}
.ls40{letter-spacing:-0.912000pt;}
.ls31{letter-spacing:-0.864000pt;}
.ls45{letter-spacing:-0.533333pt;}
.ls41{letter-spacing:-0.480000pt;}
.ls3f{letter-spacing:-0.266667pt;}
.ls4c{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000533pt;}
.ls4d{letter-spacing:0.026667pt;}
.ls5{letter-spacing:0.042667pt;}
.ls17{letter-spacing:0.048000pt;}
.lse{letter-spacing:0.053333pt;}
.ls47{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.085333pt;}
.ls2f{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.106667pt;}
.ls52{letter-spacing:0.133333pt;}
.ls3e{letter-spacing:0.142933pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.181333pt;}
.ls3d{letter-spacing:0.185067pt;}
.ls4f{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.213333pt;}
.ls39{letter-spacing:0.234667pt;}
.ls21{letter-spacing:0.259733pt;}
.ls1a{letter-spacing:0.266667pt;}
.ls43{letter-spacing:0.277333pt;}
.ls30{letter-spacing:0.288000pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.336000pt;}
.ls2a{letter-spacing:0.346667pt;}
.ls22{letter-spacing:0.373333pt;}
.ls20{letter-spacing:0.400000pt;}
.ls9{letter-spacing:0.426667pt;}
.ls2b{letter-spacing:0.453333pt;}
.ls15{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.506667pt;}
.ls18{letter-spacing:0.528000pt;}
.ls44{letter-spacing:0.533333pt;}
.ls4b{letter-spacing:0.586667pt;}
.ls10{letter-spacing:0.613333pt;}
.ls26{letter-spacing:0.624533pt;}
.ls12{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.682667pt;}
.ls34{letter-spacing:0.693333pt;}
.ls1{letter-spacing:0.746667pt;}
.ls4a{letter-spacing:0.768000pt;}
.ls27{letter-spacing:0.800000pt;}
.ls37{letter-spacing:0.826667pt;}
.ls3c{letter-spacing:0.845867pt;}
.ls11{letter-spacing:0.853333pt;}
.ls36{letter-spacing:0.906667pt;}
.ls7{letter-spacing:0.938667pt;}
.ls14{letter-spacing:0.960000pt;}
.ls3{letter-spacing:0.981333pt;}
.ls51{letter-spacing:0.986667pt;}
.ls1d{letter-spacing:1.013333pt;}
.ls38{letter-spacing:1.040000pt;}
.ls23{letter-spacing:1.056000pt;}
.ls1c{letter-spacing:1.066667pt;}
.ls29{letter-spacing:1.069867pt;}
.ls3b{letter-spacing:1.120000pt;}
.ls8{letter-spacing:1.130667pt;}
.ls2e{letter-spacing:1.173333pt;}
.ls35{letter-spacing:1.226667pt;}
.ls2d{letter-spacing:1.280000pt;}
.ls24{letter-spacing:1.333333pt;}
.ls49{letter-spacing:1.360000pt;}
.ls3a{letter-spacing:1.386667pt;}
.ls4e{letter-spacing:1.440000pt;}
.ls33{letter-spacing:1.493333pt;}
.ls13{letter-spacing:1.600000pt;}
.ls28{letter-spacing:1.653333pt;}
.ls54{letter-spacing:1.680000pt;}
.ls42{letter-spacing:1.706667pt;}
.ls50{letter-spacing:1.760000pt;}
.ls46{letter-spacing:1.866667pt;}
.ls4{letter-spacing:2.304000pt;}
.ls48{letter-spacing:3.146667pt;}
.ls2{letter-spacing:11.120000pt;}
.lsd{letter-spacing:1703.843733pt;}
.ls19{letter-spacing:1714.090667pt;}
.ls0{letter-spacing:2458.137600pt;}
.ws0{word-spacing:-26.688000pt;}
.ws1{word-spacing:-20.016000pt;}
.ws15{word-spacing:-16.309333pt;}
.ws84{word-spacing:-14.826667pt;}
.ws36{word-spacing:-12.602667pt;}
.ws7a{word-spacing:-9.914667pt;}
.ws16{word-spacing:-9.637333pt;}
.ws37{word-spacing:-8.673600pt;}
.wsa8{word-spacing:-1.066667pt;}
.ws7{word-spacing:-0.981333pt;}
.ws12{word-spacing:-0.938667pt;}
.ws6{word-spacing:-0.746667pt;}
.ws34{word-spacing:-0.528000pt;}
.ws81{word-spacing:-0.480000pt;}
.wsd{word-spacing:-0.213333pt;}
.ws38{word-spacing:-0.106667pt;}
.wsaa{word-spacing:-0.040000pt;}
.ws3{word-spacing:0.000000pt;}
.ws58{word-spacing:0.048000pt;}
.ws65{word-spacing:0.053333pt;}
.ws77{word-spacing:0.096000pt;}
.wsac{word-spacing:0.106667pt;}
.wsad{word-spacing:0.160000pt;}
.ws74{word-spacing:0.192000pt;}
.ws3a{word-spacing:0.213333pt;}
.ws9a{word-spacing:0.266667pt;}
.ws53{word-spacing:0.288000pt;}
.ws5d{word-spacing:0.320000pt;}
.ws2b{word-spacing:0.336000pt;}
.ws7f{word-spacing:0.373333pt;}
.ws14{word-spacing:0.469333pt;}
.ws3b{word-spacing:0.480000pt;}
.ws4{word-spacing:0.485333pt;}
.ws96{word-spacing:0.533333pt;}
.ws9d{word-spacing:0.586667pt;}
.ws97{word-spacing:0.640000pt;}
.ws99{word-spacing:0.693333pt;}
.ws56{word-spacing:0.720000pt;}
.ws3e{word-spacing:0.746667pt;}
.ws7d{word-spacing:0.800000pt;}
.ws6f{word-spacing:0.906667pt;}
.wsab{word-spacing:0.960000pt;}
.ws47{word-spacing:1.013333pt;}
.ws8b{word-spacing:1.066667pt;}
.ws54{word-spacing:1.104000pt;}
.ws7e{word-spacing:1.120000pt;}
.ws70{word-spacing:1.280000pt;}
.ws41{word-spacing:1.333333pt;}
.ws5a{word-spacing:1.344000pt;}
.wsa9{word-spacing:1.440000pt;}
.ws5{word-spacing:1.456000pt;}
.ws25{word-spacing:1.546667pt;}
.ws72{word-spacing:1.584000pt;}
.wsa6{word-spacing:1.600000pt;}
.ws3c{word-spacing:1.653333pt;}
.ws59{word-spacing:1.728000pt;}
.ws29{word-spacing:1.760000pt;}
.ws83{word-spacing:1.776000pt;}
.ws67{word-spacing:1.813333pt;}
.ws55{word-spacing:1.824000pt;}
.ws9c{word-spacing:1.866667pt;}
.ws86{word-spacing:1.920000pt;}
.ws5e{word-spacing:2.026667pt;}
.ws8e{word-spacing:2.080000pt;}
.ws66{word-spacing:2.133333pt;}
.ws61{word-spacing:2.186667pt;}
.wsae{word-spacing:2.240000pt;}
.ws63{word-spacing:2.293333pt;}
.ws64{word-spacing:2.346667pt;}
.ws8a{word-spacing:2.453333pt;}
.ws62{word-spacing:2.506667pt;}
.ws5c{word-spacing:2.560000pt;}
.ws5b{word-spacing:2.592000pt;}
.ws3d{word-spacing:2.666667pt;}
.ws80{word-spacing:2.720000pt;}
.ws8d{word-spacing:2.773333pt;}
.ws8f{word-spacing:2.826667pt;}
.ws78{word-spacing:2.832000pt;}
.ws6a{word-spacing:2.880000pt;}
.ws1f{word-spacing:2.933333pt;}
.ws75{word-spacing:2.976000pt;}
.ws10{word-spacing:2.986667pt;}
.ws19{word-spacing:3.040000pt;}
.ws60{word-spacing:3.093333pt;}
.ws76{word-spacing:3.120000pt;}
.ws27{word-spacing:3.146667pt;}
.wsf{word-spacing:3.157333pt;}
.ws79{word-spacing:3.168000pt;}
.wsa5{word-spacing:3.264000pt;}
.ws87{word-spacing:3.306667pt;}
.ws2f{word-spacing:3.312000pt;}
.ws2e{word-spacing:3.360000pt;}
.ws42{word-spacing:3.413333pt;}
.wsb{word-spacing:3.456000pt;}
.ws71{word-spacing:3.466667pt;}
.wsc{word-spacing:3.498667pt;}
.ws35{word-spacing:3.504000pt;}
.ws1b{word-spacing:3.520000pt;}
.ws48{word-spacing:3.573333pt;}
.ws57{word-spacing:3.600000pt;}
.ws26{word-spacing:3.626667pt;}
.ws39{word-spacing:3.680000pt;}
.wsa4{word-spacing:3.733333pt;}
.ws73{word-spacing:3.744000pt;}
.wsa3{word-spacing:3.786667pt;}
.ws46{word-spacing:3.840000pt;}
.ws95{word-spacing:3.893333pt;}
.wsa7{word-spacing:3.946667pt;}
.ws9b{word-spacing:4.000000pt;}
.ws45{word-spacing:4.106667pt;}
.ws44{word-spacing:4.160000pt;}
.ws3f{word-spacing:4.213333pt;}
.wsa0{word-spacing:4.266667pt;}
.wse{word-spacing:4.309333pt;}
.ws32{word-spacing:4.320000pt;}
.ws9f{word-spacing:4.426667pt;}
.ws69{word-spacing:4.480000pt;}
.ws91{word-spacing:4.533333pt;}
.ws4b{word-spacing:4.560000pt;}
.ws4f{word-spacing:4.640000pt;}
.ws22{word-spacing:4.693333pt;}
.ws88{word-spacing:4.746667pt;}
.wsa2{word-spacing:4.800000pt;}
.ws94{word-spacing:4.853333pt;}
.ws4d{word-spacing:4.906667pt;}
.ws40{word-spacing:5.066667pt;}
.ws2c{word-spacing:5.088000pt;}
.ws85{word-spacing:5.120000pt;}
.ws92{word-spacing:5.173333pt;}
.ws43{word-spacing:5.226667pt;}
.wsa{word-spacing:5.248000pt;}
.ws31{word-spacing:5.280000pt;}
.ws13{word-spacing:5.290667pt;}
.ws11{word-spacing:5.333333pt;}
.ws23{word-spacing:5.386667pt;}
.ws24{word-spacing:5.440000pt;}
.ws52{word-spacing:5.472000pt;}
.ws98{word-spacing:5.493333pt;}
.ws30{word-spacing:5.520000pt;}
.ws7b{word-spacing:5.546667pt;}
.ws7c{word-spacing:5.600000pt;}
.ws6b{word-spacing:5.706667pt;}
.wsa1{word-spacing:5.760000pt;}
.ws50{word-spacing:5.813333pt;}
.ws6e{word-spacing:5.866667pt;}
.ws5f{word-spacing:5.920000pt;}
.ws8{word-spacing:5.930667pt;}
.ws33{word-spacing:5.952000pt;}
.ws68{word-spacing:5.973333pt;}
.ws4a{word-spacing:6.026667pt;}
.ws20{word-spacing:6.080000pt;}
.ws49{word-spacing:6.133333pt;}
.ws4e{word-spacing:6.186667pt;}
.ws28{word-spacing:6.240000pt;}
.ws4c{word-spacing:6.293333pt;}
.ws9e{word-spacing:6.346667pt;}
.ws1d{word-spacing:6.400000pt;}
.ws6c{word-spacing:6.453333pt;}
.ws2d{word-spacing:6.672000pt;}
.ws21{word-spacing:6.720000pt;}
.ws1e{word-spacing:6.773333pt;}
.ws82{word-spacing:6.826667pt;}
.ws1c{word-spacing:6.880000pt;}
.ws51{word-spacing:6.933333pt;}
.ws18{word-spacing:6.986667pt;}
.ws6d{word-spacing:7.093333pt;}
.ws2a{word-spacing:7.200000pt;}
.ws93{word-spacing:7.253333pt;}
.ws89{word-spacing:7.306667pt;}
.ws8c{word-spacing:7.360000pt;}
.ws1a{word-spacing:7.413333pt;}
.ws9{word-spacing:7.637333pt;}
.ws2{word-spacing:8.896000pt;}
.ws90{word-spacing:10.560000pt;}
.ws17{word-spacing:15.392000pt;}
._5{margin-left:-20.757333pt;}
._4{margin-left:-8.288000pt;}
._16{margin-left:-5.280000pt;}
._8{margin-left:-2.304000pt;}
._7{margin-left:-0.985600pt;}
._2{width:1.385067pt;}
._11{width:2.528000pt;}
._6{width:3.626667pt;}
._a{width:7.573333pt;}
._1{width:8.848000pt;}
._0{width:9.893333pt;}
._3{width:10.864000pt;}
._10{width:12.432000pt;}
._b{width:15.392000pt;}
._15{width:22.464000pt;}
._17{width:24.192000pt;}
._18{width:27.216000pt;}
._9{width:35.232000pt;}
._c{width:37.152000pt;}
._d{width:38.112000pt;}
._f{width:39.072000pt;}
._12{width:41.136000pt;}
._14{width:42.264000pt;}
._e{width:44.160000pt;}
._13{width:45.648000pt;}
.fse{font-size:31.200000pt;}
.fs0{font-size:32.000000pt;}
.fsc{font-size:34.666667pt;}
.fs3{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fsd{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fsf{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fsb{font-size:69.333333pt;}
.fs6{font-size:72.000000pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:75.590533pt;}
.y16e{bottom:122.802533pt;}
.y235{bottom:122.828000pt;}
.y14a{bottom:122.840000pt;}
.y93{bottom:122.845333pt;}
.ybe{bottom:122.850667pt;}
.y107{bottom:122.856000pt;}
.y259{bottom:122.886267pt;}
.y6a{bottom:122.904000pt;}
.y1fa{bottom:123.244667pt;}
.yc9{bottom:124.354667pt;}
.ye7{bottom:124.707200pt;}
.ya{bottom:124.723067pt;}
.y1b1{bottom:125.135867pt;}
.y210{bottom:125.428000pt;}
.y9{bottom:135.391067pt;}
.y92{bottom:138.481333pt;}
.ybd{bottom:138.486667pt;}
.y106{bottom:138.492000pt;}
.y69{bottom:138.540000pt;}
.y1b0{bottom:140.775867pt;}
.y16d{bottom:141.282533pt;}
.y258{bottom:141.686267pt;}
.y1f9{bottom:141.724667pt;}
.y149{bottom:142.076000pt;}
.yc8{bottom:142.834667pt;}
.ye6{bottom:143.187200pt;}
.y234{bottom:150.614667pt;}
.y8{bottom:151.729600pt;}
.y20f{bottom:153.148000pt;}
.ybc{bottom:154.122667pt;}
.y105{bottom:154.128000pt;}
.y68{bottom:154.176000pt;}
.y1af{bottom:156.415867pt;}
.y91{bottom:157.717333pt;}
.y16c{bottom:159.762533pt;}
.y1f8{bottom:160.204667pt;}
.yc7{bottom:161.314667pt;}
.ye5{bottom:161.667200pt;}
.y7{bottom:167.334933pt;}
.y233{bottom:169.052267pt;}
.y257{bottom:169.726267pt;}
.y104{bottom:169.764000pt;}
.y67{bottom:169.812000pt;}
.y20e{bottom:171.628000pt;}
.ybb{bottom:173.358667pt;}
.yc6{bottom:179.794667pt;}
.ye4{bottom:180.147200pt;}
.y6{bottom:182.941600pt;}
.y127{bottom:185.400000pt;}
.yba{bottom:185.426667pt;}
.y66{bottom:185.448000pt;}
.y232{bottom:187.598933pt;}
.y103{bottom:189.000000pt;}
.y20d{bottom:190.108000pt;}
.y1ae{bottom:190.535867pt;}
.y5{bottom:192.881600pt;}
.y16b{bottom:196.722533pt;}
.y148{bottom:196.993867pt;}
.y256{bottom:197.766267pt;}
.yc5{bottom:198.274667pt;}
.ye3{bottom:198.627200pt;}
.y90{bottom:200.715733pt;}
.y102{bottom:201.057333pt;}
.yb9{bottom:201.062667pt;}
.y65{bottom:201.084000pt;}
.y1f7{bottom:203.039200pt;}
.y4{bottom:206.598533pt;}
.y20c{bottom:208.588000pt;}
.y1ad{bottom:209.015867pt;}
.y16a{bottom:215.202533pt;}
.y231{bottom:215.385600pt;}
.y147{bottom:215.473867pt;}
.y3{bottom:216.538533pt;}
.y255{bottom:216.566267pt;}
.y101{bottom:216.693333pt;}
.yb8{bottom:216.698667pt;}
.y64{bottom:216.720000pt;}
.yc4{bottom:216.754667pt;}
.y8f{bottom:219.195733pt;}
.ye2{bottom:226.347200pt;}
.y187{bottom:227.052133pt;}
.y1ac{bottom:227.495867pt;}
.y100{bottom:232.329333pt;}
.yb7{bottom:232.334667pt;}
.y63{bottom:232.356000pt;}
.y169{bottom:233.682533pt;}
.y230{bottom:233.932267pt;}
.y146{bottom:233.953867pt;}
.yc3{bottom:235.234667pt;}
.y254{bottom:235.366267pt;}
.y8e{bottom:237.675733pt;}
.y126{bottom:238.192933pt;}
.ye1{bottom:244.827200pt;}
.y186{bottom:245.532133pt;}
.y1ab{bottom:245.975867pt;}
.yb6{bottom:247.970667pt;}
.y62{bottom:247.992000pt;}
.y20b{bottom:249.532800pt;}
.yff{bottom:251.565333pt;}
.y1d3{bottom:251.718533pt;}
.y168{bottom:252.162533pt;}
.y145{bottom:252.433867pt;}
.yc2{bottom:253.714667pt;}
.y125{bottom:253.832933pt;}
.y8d{bottom:256.105200pt;}
.y22f{bottom:261.718933pt;}
.ye0{bottom:263.307200pt;}
.y253{bottom:263.406267pt;}
.yfe{bottom:263.617333pt;}
.y61{bottom:263.628000pt;}
.y185{bottom:264.012133pt;}
.y1aa{bottom:264.455867pt;}
.yb5{bottom:267.206667pt;}
.y1f6{bottom:267.295867pt;}
.y1d2{bottom:267.358533pt;}
.y124{bottom:269.472933pt;}
.y167{bottom:270.642533pt;}
.y144{bottom:270.913867pt;}
.yc1{bottom:272.194667pt;}
.y8c{bottom:274.585200pt;}
.yfd{bottom:279.253333pt;}
.y60{bottom:279.264000pt;}
.yb4{bottom:279.280133pt;}
.ydf{bottom:281.787200pt;}
.y252{bottom:282.206267pt;}
.y184{bottom:282.492133pt;}
.y1a9{bottom:282.935867pt;}
.y1d1{bottom:282.998533pt;}
.y123{bottom:285.112933pt;}
.y1f5{bottom:285.775867pt;}
.y166{bottom:289.122533pt;}
.y143{bottom:289.393867pt;}
.y22e{bottom:289.505600pt;}
.y8b{bottom:293.065200pt;}
.y5f{bottom:294.900000pt;}
.yb3{bottom:294.916133pt;}
.yfc{bottom:298.489333pt;}
.y1d0{bottom:298.638533pt;}
.yde{bottom:300.267200pt;}
.y183{bottom:300.972133pt;}
.y1a8{bottom:301.415867pt;}
.y1f4{bottom:304.255867pt;}
.y165{bottom:307.602533pt;}
.y20a{bottom:309.975867pt;}
.y251{bottom:310.246267pt;}
.y5e{bottom:310.536000pt;}
.yb2{bottom:310.552133pt;}
.y22d{bottom:317.292267pt;}
.ydd{bottom:318.747200pt;}
.yc0{bottom:318.808667pt;}
.y122{bottom:319.232933pt;}
.y182{bottom:319.452133pt;}
.y1a7{bottom:319.895867pt;}
.y8a{bottom:320.785200pt;}
.y1f3{bottom:322.735867pt;}
.y164{bottom:326.082533pt;}
.y5d{bottom:326.172000pt;}
.yb1{bottom:326.188133pt;}
.y142{bottom:326.353867pt;}
.y39{bottom:328.449333pt;}
.y209{bottom:328.455867pt;}
.y250{bottom:329.046267pt;}
.yfb{bottom:329.772000pt;}
.y1cf{bottom:332.746000pt;}
.ydc{bottom:337.227200pt;}
.y121{bottom:337.712933pt;}
.y1a6{bottom:338.375867pt;}
.y89{bottom:339.265200pt;}
.y1f2{bottom:341.215867pt;}
.y38{bottom:341.238667pt;}
.yb0{bottom:341.824133pt;}
.y141{bottom:341.993867pt;}
.y22c{bottom:345.078933pt;}
.y208{bottom:346.935867pt;}
.y24f{bottom:347.846267pt;}
.y1ce{bottom:351.226000pt;}
.y163{bottom:353.802533pt;}
.y37{bottom:354.028000pt;}
.ydb{bottom:355.707200pt;}
.y120{bottom:356.192933pt;}
.y1a5{bottom:356.855867pt;}
.yaf{bottom:357.460133pt;}
.y140{bottom:357.633867pt;}
.y88{bottom:357.745200pt;}
.y1f1{bottom:359.695867pt;}
.y181{bottom:360.396800pt;}
.y31{bottom:360.406667pt;}
.y22b{bottom:363.625600pt;}
.y207{bottom:365.415867pt;}
.y36{bottom:366.817333pt;}
.y1cd{bottom:369.706000pt;}
.y162{bottom:372.282533pt;}
.y30{bottom:373.196000pt;}
.y13f{bottom:373.273867pt;}
.y11f{bottom:374.672933pt;}
.yfa{bottom:374.876133pt;}
.y24e{bottom:375.886267pt;}
.y87{bottom:376.225200pt;}
.yae{bottom:376.696133pt;}
.y5c{bottom:377.133467pt;}
.y1f0{bottom:378.175867pt;}
.y35{bottom:379.606667pt;}
.y22a{bottom:382.172267pt;}
.y206{bottom:383.895867pt;}
.y1a4{bottom:384.575867pt;}
.y2f{bottom:385.985333pt;}
.y1cc{bottom:388.186000pt;}
.y161{bottom:390.762533pt;}
.y34{bottom:392.396000pt;}
.yf9{bottom:393.356133pt;}
.y24d{bottom:394.686267pt;}
.y86{bottom:394.705200pt;}
.y5b{bottom:395.535200pt;}
.y1ef{bottom:396.655867pt;}
.y2e{bottom:398.774667pt;}
.yda{bottom:402.321200pt;}
.y205{bottom:402.375867pt;}
.y11e{bottom:402.392933pt;}
.y1a3{bottom:403.055867pt;}
.y33{bottom:405.185333pt;}
.y13e{bottom:407.393867pt;}
.y160{bottom:409.242533pt;}
.y229{bottom:409.958933pt;}
.yf8{bottom:411.836133pt;}
.y85{bottom:413.185200pt;}
.y24c{bottom:413.486267pt;}
.y5a{bottom:414.015200pt;}
.y2d{bottom:417.964800pt;}
.y32{bottom:417.974667pt;}
.y204{bottom:420.855867pt;}
.y11d{bottom:420.872933pt;}
.y180{bottom:420.930800pt;}
.y1a2{bottom:421.535867pt;}
.y1cb{bottom:425.095867pt;}
.yad{bottom:425.831867pt;}
.y13d{bottom:425.873867pt;}
.y15f{bottom:427.722533pt;}
.yf7{bottom:430.310800pt;}
.y84{bottom:431.665200pt;}
.y59{bottom:432.495200pt;}
.y1ee{bottom:433.615867pt;}
.y228{bottom:437.745600pt;}
.y203{bottom:439.335867pt;}
.y11c{bottom:439.352933pt;}
.y17f{bottom:439.410800pt;}
.y1a1{bottom:440.015867pt;}
.y1ca{bottom:440.735867pt;}
.yac{bottom:441.471867pt;}
.y24b{bottom:441.526267pt;}
.y15e{bottom:446.202533pt;}
.yf6{bottom:448.790800pt;}
.y1ed{bottom:449.255867pt;}
.y83{bottom:450.145200pt;}
.y58{bottom:450.975200pt;}
.y2c{bottom:452.071200pt;}
.y1c9{bottom:456.375867pt;}
.yab{bottom:457.111867pt;}
.y17e{bottom:457.815867pt;}
.y11b{bottom:457.832933pt;}
.y1a0{bottom:458.495867pt;}
.y24a{bottom:460.326267pt;}
.y13c{bottom:462.833867pt;}
.y15d{bottom:464.682533pt;}
.y2b{bottom:464.860533pt;}
.y1ec{bottom:464.895867pt;}
.y227{bottom:465.532267pt;}
.yf5{bottom:467.268133pt;}
.y82{bottom:468.625200pt;}
.y57{bottom:469.455200pt;}
.y25{bottom:471.239200pt;}
.y1c8{bottom:472.015867pt;}
.yaa{bottom:472.751867pt;}
.y17d{bottom:476.295867pt;}
.y11a{bottom:476.312933pt;}
.y19f{bottom:476.975867pt;}
.y2a{bottom:477.649867pt;}
.y13b{bottom:478.473867pt;}
.y1eb{bottom:480.535867pt;}
.y15c{bottom:483.162533pt;}
.y24{bottom:484.028533pt;}
.y226{bottom:484.078933pt;}
.yf4{bottom:485.748133pt;}
.y81{bottom:487.105200pt;}
.y1c7{bottom:487.655867pt;}
.y56{bottom:487.935200pt;}
.y249{bottom:488.366267pt;}
.ya9{bottom:488.391867pt;}
.y29{bottom:490.439200pt;}
.y13a{bottom:494.113867pt;}
.y202{bottom:494.775867pt;}
.y119{bottom:494.792933pt;}
.y19e{bottom:495.455867pt;}
.y23{bottom:496.817867pt;}
.y225{bottom:502.625600pt;}
.y28{bottom:503.228533pt;}
.y1c6{bottom:503.295867pt;}
.y17c{bottom:504.015867pt;}
.y55{bottom:506.415200pt;}
.y248{bottom:507.166267pt;}
.y22{bottom:509.607200pt;}
.y139{bottom:509.753867pt;}
.y15b{bottom:510.882533pt;}
.y201{bottom:513.255867pt;}
.y19d{bottom:513.935867pt;}
.y1ea{bottom:514.655867pt;}
.y80{bottom:514.825200pt;}
.y27{bottom:516.017867pt;}
.y1c5{bottom:518.935867pt;}
.y17b{bottom:522.495867pt;}
.ya8{bottom:522.511867pt;}
.y54{bottom:524.895200pt;}
.y138{bottom:525.393867pt;}
.yf3{bottom:526.692800pt;}
.y21{bottom:528.797467pt;}
.y26{bottom:528.807200pt;}
.y15a{bottom:529.362533pt;}
.y224{bottom:530.412267pt;}
.y200{bottom:531.735867pt;}
.y118{bottom:531.752933pt;}
.y19c{bottom:532.415867pt;}
.y1e9{bottom:533.135867pt;}
.y7f{bottom:533.305200pt;}
.y247{bottom:535.206267pt;}
.y17a{bottom:540.975867pt;}
.ya7{bottom:540.991867pt;}
.y53{bottom:543.375200pt;}
.y159{bottom:547.842533pt;}
.y223{bottom:548.958933pt;}
.y1ff{bottom:550.215867pt;}
.y117{bottom:550.232933pt;}
.y19b{bottom:550.895867pt;}
.y1e8{bottom:551.615867pt;}
.y7e{bottom:551.785200pt;}
.y1c4{bottom:553.055867pt;}
.y246{bottom:554.006267pt;}
.y179{bottom:559.455867pt;}
.ya6{bottom:559.471867pt;}
.y137{bottom:559.513867pt;}
.y52{bottom:561.855200pt;}
.y20{bottom:562.907867pt;}
.y158{bottom:566.322533pt;}
.y1fe{bottom:568.695867pt;}
.y19a{bottom:569.375867pt;}
.y1e7{bottom:570.095867pt;}
.y1c3{bottom:571.535867pt;}
.y1f{bottom:575.697200pt;}
.y222{bottom:576.745600pt;}
.y178{bottom:577.935867pt;}
.ya5{bottom:577.951867pt;}
.y116{bottom:577.952933pt;}
.y136{bottom:577.957200pt;}
.y51{bottom:580.335200pt;}
.y245{bottom:582.046267pt;}
.y157{bottom:584.802533pt;}
.y1fd{bottom:587.175867pt;}
.yf2{bottom:587.210800pt;}
.y199{bottom:587.855867pt;}
.y1e{bottom:588.486533pt;}
.y1e6{bottom:588.575867pt;}
.y7d{bottom:588.745200pt;}
.y1c2{bottom:590.015867pt;}
.yd9{bottom:593.619867pt;}
.y18{bottom:594.865200pt;}
.y177{bottom:596.415867pt;}
.ya4{bottom:596.431867pt;}
.y115{bottom:596.432933pt;}
.y50{bottom:598.815200pt;}
.y244{bottom:600.846267pt;}
.y1d{bottom:601.275867pt;}
.y156{bottom:603.282533pt;}
.y7c{bottom:604.385200pt;}
.y221{bottom:604.532267pt;}
.y1fc{bottom:605.655867pt;}
.y135{bottom:605.677200pt;}
.yf1{bottom:605.690800pt;}
.y198{bottom:606.335867pt;}
.y1e5{bottom:607.055867pt;}
.y17{bottom:607.654533pt;}
.y1c{bottom:614.065200pt;}
.y176{bottom:614.895867pt;}
.ya3{bottom:614.911867pt;}
.y114{bottom:614.912933pt;}
.y4f{bottom:617.295200pt;}
.y1c1{bottom:617.735867pt;}
.y243{bottom:619.646267pt;}
.y7b{bottom:620.025200pt;}
.y16{bottom:620.443867pt;}
.y155{bottom:621.762533pt;}
.y220{bottom:623.078933pt;}
.y1fb{bottom:624.135867pt;}
.y134{bottom:624.157200pt;}
.yf0{bottom:624.170800pt;}
.y1b{bottom:626.854533pt;}
.y15{bottom:633.233200pt;}
.y175{bottom:633.375867pt;}
.ya2{bottom:633.391867pt;}
.y113{bottom:633.392933pt;}
.y1e4{bottom:634.775867pt;}
.y7a{bottom:635.665200pt;}
.y1c0{bottom:636.215867pt;}
.y1a{bottom:639.643867pt;}
.y154{bottom:640.242533pt;}
.y133{bottom:642.637200pt;}
.yef{bottom:642.650800pt;}
.y197{bottom:643.295867pt;}
.y4e{bottom:645.015200pt;}
.y242{bottom:647.686267pt;}
.y21f{bottom:650.865600pt;}
.y79{bottom:651.305200pt;}
.yd8{bottom:651.855867pt;}
.ya1{bottom:651.871867pt;}
.y112{bottom:651.872933pt;}
.y14{bottom:652.423333pt;}
.y19{bottom:652.433200pt;}
.y1e3{bottom:653.255867pt;}
.y1bf{bottom:654.695867pt;}
.y153{bottom:658.722533pt;}
.y196{bottom:658.935867pt;}
.y132{bottom:661.117200pt;}
.yee{bottom:661.130800pt;}
.y4d{bottom:663.495200pt;}
.y78{bottom:666.945200pt;}
.yd7{bottom:670.335867pt;}
.y1e2{bottom:671.735867pt;}
.y1be{bottom:673.175867pt;}
.y195{bottom:674.575867pt;}
.y241{bottom:675.726267pt;}
.y21e{bottom:678.652267pt;}
.ya0{bottom:679.591867pt;}
.y111{bottom:679.592933pt;}
.y131{bottom:679.597200pt;}
.yed{bottom:679.610800pt;}
.y4c{bottom:681.975200pt;}
.y77{bottom:682.585200pt;}
.yd6{bottom:688.815867pt;}
.y194{bottom:690.215867pt;}
.y1bd{bottom:691.655867pt;}
.y240{bottom:694.526267pt;}
.y21d{bottom:697.198933pt;}
.y9f{bottom:698.071867pt;}
.y110{bottom:698.072933pt;}
.y130{bottom:698.077200pt;}
.yec{bottom:698.090800pt;}
.y4b{bottom:700.455200pt;}
.y152{bottom:702.295867pt;}
.yd5{bottom:707.295867pt;}
.y1e1{bottom:708.695867pt;}
.y1bc{bottom:710.135867pt;}
.y174{bottom:716.535867pt;}
.y9e{bottom:716.551867pt;}
.y10f{bottom:716.552933pt;}
.y12f{bottom:716.557200pt;}
.yeb{bottom:716.570800pt;}
.y76{bottom:716.705200pt;}
.y151{bottom:717.935867pt;}
.y4a{bottom:718.935200pt;}
.y23f{bottom:722.566267pt;}
.y193{bottom:724.335867pt;}
.y21c{bottom:724.985600pt;}
.yd4{bottom:725.775867pt;}
.y1e0{bottom:727.175867pt;}
.y1bb{bottom:728.615867pt;}
.y150{bottom:733.575867pt;}
.yea{bottom:735.015867pt;}
.y9d{bottom:735.031867pt;}
.y10e{bottom:735.032933pt;}
.y75{bottom:735.185200pt;}
.y49{bottom:737.415200pt;}
.y192{bottom:742.815867pt;}
.y21b{bottom:743.532267pt;}
.yd3{bottom:744.255867pt;}
.y12e{bottom:744.277200pt;}
.y1df{bottom:745.655867pt;}
.y13{bottom:747.963067pt;}
.y14f{bottom:749.215867pt;}
.y23e{bottom:750.606267pt;}
.ybf{bottom:753.070667pt;}
.y173{bottom:753.495867pt;}
.y9c{bottom:753.511867pt;}
.y10d{bottom:753.512933pt;}
.y74{bottom:753.665200pt;}
.y48{bottom:755.895200pt;}
.y1ba{bottom:756.335867pt;}
.y191{bottom:761.295867pt;}
.y21a{bottom:762.078933pt;}
.yd2{bottom:762.735867pt;}
.y12d{bottom:762.757200pt;}
.y1de{bottom:764.135867pt;}
.y14e{bottom:764.855867pt;}
.y12{bottom:766.443067pt;}
.y172{bottom:771.975867pt;}
.y9b{bottom:771.991867pt;}
.y10c{bottom:771.992933pt;}
.y73{bottom:772.145200pt;}
.y47{bottom:774.375200pt;}
.y1b9{bottom:774.815867pt;}
.y23d{bottom:778.646267pt;}
.y190{bottom:779.775867pt;}
.y14d{bottom:780.495867pt;}
.yd1{bottom:781.215867pt;}
.y12c{bottom:781.237200pt;}
.y1dd{bottom:782.615867pt;}
.y11{bottom:784.904133pt;}
.y219{bottom:789.865600pt;}
.y171{bottom:790.455867pt;}
.y9a{bottom:790.471867pt;}
.y10b{bottom:790.472933pt;}
.y72{bottom:790.625200pt;}
.y46{bottom:792.855200pt;}
.y1b8{bottom:793.295867pt;}
.y14c{bottom:796.135867pt;}
.y18f{bottom:798.255867pt;}
.yd0{bottom:799.695867pt;}
.y12b{bottom:799.717200pt;}
.y1dc{bottom:801.095867pt;}
.y23c{bottom:806.686267pt;}
.y218{bottom:808.412267pt;}
.y170{bottom:808.935867pt;}
.y99{bottom:808.951867pt;}
.y10a{bottom:808.952933pt;}
.y45{bottom:811.335200pt;}
.y14b{bottom:811.775867pt;}
.y18e{bottom:816.735867pt;}
.ycf{bottom:818.175867pt;}
.y12a{bottom:818.197200pt;}
.y1db{bottom:819.575867pt;}
.y10{bottom:824.365467pt;}
.y16f{bottom:827.415867pt;}
.y98{bottom:827.431867pt;}
.y109{bottom:827.432933pt;}
.y44{bottom:829.815200pt;}
.y1b7{bottom:830.255867pt;}
.y71{bottom:831.570000pt;}
.y23b{bottom:834.732400pt;}
.y217{bottom:836.198933pt;}
.yce{bottom:836.655867pt;}
.y1da{bottom:838.055867pt;}
.ye9{bottom:845.895867pt;}
.y108{bottom:845.912933pt;}
.yf{bottom:846.765467pt;}
.y43{bottom:848.295200pt;}
.y18d{bottom:853.695867pt;}
.y129{bottom:855.135867pt;}
.y97{bottom:855.151867pt;}
.y1b6{bottom:857.975867pt;}
.y23a{bottom:862.772400pt;}
.y216{bottom:863.985600pt;}
.ycd{bottom:864.375867pt;}
.y42{bottom:866.775200pt;}
.y18c{bottom:869.335867pt;}
.y128{bottom:873.615867pt;}
.y96{bottom:873.626533pt;}
.y1d9{bottom:875.015867pt;}
.y1b5{bottom:876.455867pt;}
.y215{bottom:882.532267pt;}
.ycc{bottom:882.855867pt;}
.y18b{bottom:884.975867pt;}
.y41{bottom:885.255200pt;}
.ye{bottom:886.226800pt;}
.y1d8{bottom:890.655867pt;}
.y239{bottom:890.812400pt;}
.y70{bottom:892.095867pt;}
.y95{bottom:892.106533pt;}
.y1b4{bottom:894.935867pt;}
.y18a{bottom:900.615867pt;}
.y214{bottom:901.078933pt;}
.ycb{bottom:901.335867pt;}
.y40{bottom:903.735200pt;}
.y1d7{bottom:906.295867pt;}
.yd{bottom:908.626800pt;}
.y6f{bottom:910.575867pt;}
.y94{bottom:910.584000pt;}
.y1b3{bottom:913.415867pt;}
.y189{bottom:916.255867pt;}
.y238{bottom:918.852400pt;}
.y213{bottom:919.615867pt;}
.yca{bottom:919.815867pt;}
.y1d6{bottom:921.935867pt;}
.y3f{bottom:922.215200pt;}
.y6e{bottom:929.055867pt;}
.y188{bottom:931.895867pt;}
.y1d5{bottom:937.575867pt;}
.y237{bottom:937.655867pt;}
.ye8{bottom:938.295867pt;}
.y3e{bottom:940.695200pt;}
.y212{bottom:947.402533pt;}
.y6d{bottom:947.535867pt;}
.yc{bottom:948.080133pt;}
.y1d4{bottom:953.215867pt;}
.y236{bottom:965.695867pt;}
.y211{bottom:965.949200pt;}
.y6c{bottom:966.015867pt;}
.y1b2{bottom:968.855867pt;}
.yb{bottom:976.880000pt;}
.y3d{bottom:981.640000pt;}
.y6b{bottom:984.495867pt;}
.y1{bottom:1035.467867pt;}
.y3c{bottom:1042.616800pt;}
.y3b{bottom:1061.260000pt;}
.y3a{bottom:1073.260000pt;}
.h2{height:23.552000pt;}
.h6{height:27.477333pt;}
.h4{height:27.738667pt;}
.h13{height:29.184000pt;}
.h5{height:29.720000pt;}
.hb{height:31.189333pt;}
.hd{height:31.402667pt;}
.hc{height:38.741333pt;}
.h22{height:38.986667pt;}
.he{height:41.162667pt;}
.h11{height:43.584000pt;}
.ha{height:48.426667pt;}
.h15{height:48.436800pt;}
.h19{height:48.437333pt;}
.h16{height:48.448000pt;}
.h1a{height:48.458667pt;}
.h14{height:48.459200pt;}
.h21{height:48.465600pt;}
.h20{height:48.476800pt;}
.h1b{height:48.494933pt;}
.h1c{height:48.512000pt;}
.h18{height:48.566400pt;}
.h1d{height:48.573333pt;}
.h1f{height:48.627200pt;}
.h12{height:48.628800pt;}
.h1e{height:48.726400pt;}
.h10{height:48.739733pt;}
.h23{height:48.862933pt;}
.hf{height:50.682667pt;}
.h17{height:50.848000pt;}
.h3{height:53.269333pt;}
.h8{height:54.581333pt;}
.h9{height:67.797333pt;}
.h7{height:70.176000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x14{left:77.316000pt;}
.xf{left:83.149600pt;}
.x19{left:92.606000pt;}
.x12{left:94.490533pt;}
.x18{left:96.208800pt;}
.x3{left:98.270533pt;}
.x1c{left:120.950533pt;}
.x1b{left:122.676000pt;}
.x4{left:129.062800pt;}
.x5{left:134.062800pt;}
.x13{left:136.057200pt;}
.x1a{left:137.780267pt;}
.x15{left:161.628533pt;}
.x16{left:177.165200pt;}
.x7{left:232.154267pt;}
.x6{left:238.375467pt;}
.x10{left:253.229600pt;}
.xd{left:274.878667pt;}
.x17{left:314.648267pt;}
.x8{left:316.074000pt;}
.xb{left:335.730000pt;}
.xa{left:402.463333pt;}
.x9{left:470.970000pt;}
.xe{left:583.932000pt;}
.xc{left:586.404667pt;}
.x11{left:642.133200pt;}
.x1{left:668.805733pt;}
}




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