
    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_3b66b92bcd5a7d4f37fb611a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_0ea77c6f6c4ebcb50be9b68b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_53dcbd5030986db267086d40.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.869000;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_8f5420cd924a4df543515bef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862000;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_9fcf93e3bdc1c708d3bc0929.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.876000;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_79aa5e5efb223c19a570fecb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8bf7d858d7967410d812fa2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.704000;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_2f03641ee362622be2ede64e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.196000;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_bd3ec9fa6a7cff3067201500.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.021000;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_22daf36fe055e8ba99eaca42.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.858000;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_2b34e5d12b9859a526919c3b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936035;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_f9c860dcac12f34341c426a9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.874000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a946af1770351a1b140fcc71.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ac314197123cb1bfac8be8b2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_076609e345907eec21fd0132.woff2')format("woff");}.fff{font-family:fff;line-height:0.963867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f43cb3a4f457a43ebdc7f1d4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_89e739e592df098de6c976c7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.868000;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:ff12;src:url('chunks/assets/font_670a3fd7d8753cf91203227f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.865000;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:ff13;src:url('chunks/assets/font_eb1cb838eb8bfe8f98de3756.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.943000;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:ff14;src:url('chunks/assets/font_c0399d7edb2122237e708097.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.960000;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:ff15;src:url('chunks/assets/font_40184b2e300655b5ee82c158.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.970000;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:ff16;src:url('chunks/assets/font_c1ffbe282b34444aac3933ac.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.939941;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:ff17;src:url('chunks/assets/font_fdd79c4ece372afe5d03e6c8.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.792000;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:ff18;src:url('chunks/assets/font_6b5361baa8f8b94bb3176c33.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.021000;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;}
.m4{transform:matrix(0.208326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208326,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249999,0.000700,-0.000700,0.249999,0,0);-ms-transform:matrix(0.249999,0.000700,-0.000700,0.249999,0,0);-webkit-transform:matrix(0.249999,0.000700,-0.000700,0.249999,0,0);}
.m1{transform:matrix(0.250000,0.000300,-0.000325,0.250000,0,0);-ms-transform:matrix(0.250000,0.000300,-0.000325,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000300,-0.000325,0.250000,0,0);}
.m3{transform:matrix(0.250000,0.000125,-0.000125,0.250000,0,0);-ms-transform:matrix(0.250000,0.000125,-0.000125,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000125,-0.000125,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);}
.v5{vertical-align:-21.562200px;}
.v3{vertical-align:-18.750000px;}
.v6{vertical-align:-6.331800px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:13.686600px;}
.v4{vertical-align:18.774000px;}
.v2{vertical-align:21.000000px;}
.v7{vertical-align:22.105200px;}
.v1{vertical-align:144.000248px;}
.lsf{letter-spacing:-0.600000px;}
.ls10{letter-spacing:-0.540000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013200px;}
.ls12{letter-spacing:0.057000px;}
.ls1a{letter-spacing:0.090000px;}
.ls19{letter-spacing:0.135000px;}
.ls18{letter-spacing:0.225000px;}
.ls0{letter-spacing:0.270000px;}
.ls16{letter-spacing:0.285000px;}
.lsd{letter-spacing:0.309000px;}
.lsa{letter-spacing:0.357000px;}
.ls5{letter-spacing:0.399000px;}
.ls1b{letter-spacing:0.405000px;}
.lsb{letter-spacing:0.408000px;}
.ls9{letter-spacing:0.570000px;}
.ls1c{letter-spacing:0.585000px;}
.ls1d{letter-spacing:0.630000px;}
.ls17{letter-spacing:0.675000px;}
.ls6{letter-spacing:0.855000px;}
.lse{letter-spacing:5.184000px;}
.ls13{letter-spacing:11.941800px;}
.ls8{letter-spacing:13.780200px;}
.ls7{letter-spacing:16.181400px;}
.ls2{letter-spacing:16.512600px;}
.ls1{letter-spacing:16.513200px;}
.lsc{letter-spacing:21.288600px;}
.ls14{letter-spacing:876.540000px;}
.ls11{letter-spacing:937.440000px;}
.ls15{letter-spacing:949.620000px;}
.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;}
}
.ws49{word-spacing:-937.500000px;}
.ws6{word-spacing:-69.512049px;}
.ws3{word-spacing:-24.239471px;}
.ws47{word-spacing:-23.394000px;}
.ws16{word-spacing:-19.800000px;}
.ws7{word-spacing:-17.160002px;}
.ws14{word-spacing:-15.300000px;}
.wse{word-spacing:-15.000000px;}
.ws6f{word-spacing:-14.877000px;}
.ws17{word-spacing:-14.820000px;}
.ws2{word-spacing:-14.058012px;}
.ws5{word-spacing:-13.320000px;}
.ws1f{word-spacing:-13.260000px;}
.ws4{word-spacing:-12.780000px;}
.ws34{word-spacing:-12.720000px;}
.ws27{word-spacing:-12.000000px;}
.ws7a{word-spacing:-11.700000px;}
.ws48{word-spacing:-10.500000px;}
.ws35{word-spacing:-10.476000px;}
.ws1{word-spacing:-10.260000px;}
.ws3d{word-spacing:-9.594000px;}
.ws19{word-spacing:-8.265000px;}
.ws12{word-spacing:-7.500000px;}
.ws1d{word-spacing:-7.410000px;}
.ws13{word-spacing:-6.750000px;}
.ws20{word-spacing:-6.630000px;}
.ws8{word-spacing:-3.828000px;}
.ws4e{word-spacing:-2.565000px;}
.ws39{word-spacing:-2.538000px;}
.ws38{word-spacing:-2.484000px;}
.ws36{word-spacing:-2.322000px;}
.ws58{word-spacing:-2.223000px;}
.ws37{word-spacing:-2.052000px;}
.ws3a{word-spacing:-1.998000px;}
.ws33{word-spacing:-1.860000px;}
.ws56{word-spacing:-1.368000px;}
.ws77{word-spacing:-1.140000px;}
.ws31{word-spacing:-0.741000px;}
.ws64{word-spacing:-0.627000px;}
.wsb{word-spacing:-0.264000px;}
.ws2e{word-spacing:-0.228000px;}
.ws66{word-spacing:-0.060000px;}
.ws28{word-spacing:-0.057000px;}
.ws23{word-spacing:-0.051000px;}
.ws65{word-spacing:-0.042000px;}
.ws15{word-spacing:0.000000px;}
.ws2a{word-spacing:0.684000px;}
.ws6e{word-spacing:0.798000px;}
.ws60{word-spacing:0.912000px;}
.ws41{word-spacing:1.026000px;}
.ws9{word-spacing:1.320000px;}
.ws4a{word-spacing:1.806000px;}
.ws5d{word-spacing:2.223000px;}
.ws6b{word-spacing:2.451000px;}
.ws2d{word-spacing:2.736000px;}
.ws59{word-spacing:3.306000px;}
.ws3c{word-spacing:3.423600px;}
.ws61{word-spacing:4.104000px;}
.ws2b{word-spacing:4.332000px;}
.ws5a{word-spacing:4.788000px;}
.ws4f{word-spacing:4.870200px;}
.ws76{word-spacing:5.192400px;}
.ws6d{word-spacing:5.415000px;}
.ws18{word-spacing:5.550000px;}
.ws3b{word-spacing:5.756400px;}
.ws4d{word-spacing:5.928000px;}
.ws55{word-spacing:6.017400px;}
.ws4b{word-spacing:6.327000px;}
.ws1c{word-spacing:6.371400px;}
.ws45{word-spacing:6.538200px;}
.ws69{word-spacing:6.669000px;}
.ws46{word-spacing:6.783000px;}
.ws2c{word-spacing:6.840000px;}
.ws57{word-spacing:7.467000px;}
.ws50{word-spacing:7.656000px;}
.ws21{word-spacing:7.790700px;}
.ws22{word-spacing:8.396700px;}
.ws40{word-spacing:8.793600px;}
.wsd{word-spacing:9.017400px;}
.wsf{word-spacing:9.018000px;}
.ws10{word-spacing:9.023400px;}
.ws11{word-spacing:9.025200px;}
.ws63{word-spacing:9.182400px;}
.ws25{word-spacing:9.403800px;}
.ws6c{word-spacing:9.450000px;}
.ws5e{word-spacing:9.618600px;}
.ws3e{word-spacing:9.633000px;}
.ws67{word-spacing:9.705000px;}
.ws1a{word-spacing:10.096200px;}
.ws72{word-spacing:10.317000px;}
.wsa{word-spacing:10.890001px;}
.ws24{word-spacing:12.177600px;}
.ws1e{word-spacing:12.211200px;}
.ws62{word-spacing:12.609600px;}
.ws5c{word-spacing:12.711000px;}
.ws68{word-spacing:13.134600px;}
.ws79{word-spacing:13.321200px;}
.ws4c{word-spacing:13.354800px;}
.ws53{word-spacing:13.644000px;}
.ws44{word-spacing:14.331600px;}
.ws74{word-spacing:15.225000px;}
.ws30{word-spacing:15.846000px;}
.ws5f{word-spacing:17.198400px;}
.ws29{word-spacing:17.271000px;}
.ws26{word-spacing:17.385000px;}
.ws52{word-spacing:17.670000px;}
.ws6a{word-spacing:19.188000px;}
.ws1b{word-spacing:21.000600px;}
.ws2f{word-spacing:21.603000px;}
.ws5b{word-spacing:21.717000px;}
.ws42{word-spacing:21.945000px;}
.ws43{word-spacing:22.002000px;}
.ws75{word-spacing:22.033800px;}
.ws71{word-spacing:22.116000px;}
.ws78{word-spacing:22.641000px;}
.ws3f{word-spacing:24.744600px;}
.ws51{word-spacing:25.086600px;}
.ws73{word-spacing:28.538400px;}
.ws70{word-spacing:29.671800px;}
.wsc{word-spacing:37.900800px;}
.ws54{word-spacing:109.497000px;}
.ws32{word-spacing:2202.384000px;}
.ws0{word-spacing:2262.528000px;}
._21{margin-left:-1028.220000px;}
._1e{margin-left:-166.440000px;}
._1d{margin-left:-8.310000px;}
._8{margin-left:-6.197994px;}
._1c{margin-left:-5.190087px;}
._3{margin-left:-4.080000px;}
._2{margin-left:-2.940000px;}
._1{margin-left:-1.200000px;}
._0{width:1.344000px;}
._12{width:2.370000px;}
._4{width:3.465000px;}
._6{width:4.616999px;}
._7{width:5.631001px;}
._b{width:7.044000px;}
._d{width:8.112000px;}
._9{width:9.132001px;}
._a{width:10.212001px;}
._10{width:11.388001px;}
._15{width:13.063797px;}
._11{width:14.136002px;}
._5{width:16.022862px;}
._14{width:17.904000px;}
._17{width:19.251000px;}
._16{width:20.450990px;}
._f{width:21.606002px;}
._e{width:22.686002px;}
._c{width:24.522003px;}
._13{width:27.075000px;}
._19{width:28.662000px;}
._18{width:30.600000px;}
._22{width:32.205000px;}
._20{width:34.029000px;}
._2b{width:37.350000px;}
._24{width:38.430000px;}
._1a{width:41.751000px;}
._2a{width:43.200000px;}
._2d{width:46.493998px;}
._2c{width:47.520000px;}
._25{width:52.350000px;}
._29{width:60.795000px;}
._23{width:64.182000px;}
._26{width:72.225000px;}
._28{width:77.310000px;}
._27{width:87.615000px;}
._1f{width:109.497000px;}
._1b{width:2203.236600px;}
.fc4{color:rgb(101,98,99);}
.fc3{color:rgb(123,121,121);}
.fc2{color:rgb(0,94,138);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs12{font-size:19.500000px;}
.fs14{font-size:21.000000px;}
.fs10{font-size:25.500000px;}
.fsc{font-size:27.000000px;}
.fse{font-size:28.500000px;}
.fsb{font-size:30.000000px;}
.fs11{font-size:39.000000px;}
.fs13{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fsf{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fsd{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:66.000008px;}
.fs4{font-size:66.000056px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:87.192342px;}
.fsa{font-size:115.200000px;}
.fs8{font-size:267.354033px;}
.y0{bottom:0.000000px;}
.yca{bottom:46.124250px;}
.yfb{bottom:46.155900px;}
.y1{bottom:46.434750px;}
.ye2{bottom:92.924400px;}
.y176{bottom:92.978250px;}
.y14b{bottom:92.992050px;}
.y18b{bottom:92.996400px;}
.y135{bottom:93.014250px;}
.yf9{bottom:93.018900px;}
.y202{bottom:97.580850px;}
.y218{bottom:97.659600px;}
.y1ec{bottom:98.897100px;}
.y15e{bottom:100.496850px;}
.ye1{bottom:108.770400px;}
.y175{bottom:108.824250px;}
.yc8{bottom:108.829050px;}
.y14a{bottom:108.838050px;}
.y18a{bottom:108.842400px;}
.y134{bottom:108.860250px;}
.yf8{bottom:108.864900px;}
.y8e{bottom:108.875400px;}
.y201{bottom:110.327100px;}
.y217{bottom:110.405850px;}
.y1eb{bottom:111.643350px;}
.y15d{bottom:112.484850px;}
.y3a{bottom:117.117900px;}
.y200{bottom:123.073350px;}
.y216{bottom:123.152100px;}
.y1ea{bottom:124.389600px;}
.y15c{bottom:124.486350px;}
.ye0{bottom:124.616400px;}
.y174{bottom:124.670250px;}
.yc7{bottom:124.675050px;}
.y149{bottom:124.684050px;}
.y189{bottom:124.688400px;}
.y133{bottom:124.706250px;}
.yf7{bottom:124.710900px;}
.y8d{bottom:124.729050px;}
.y11{bottom:133.228500px;}
.y39{bottom:135.077420px;}
.y1ff{bottom:135.819600px;}
.y215{bottom:135.898350px;}
.y15b{bottom:136.487850px;}
.y1e9{bottom:137.135850px;}
.ydf{bottom:140.462400px;}
.y173{bottom:140.516250px;}
.yc6{bottom:140.521050px;}
.y148{bottom:140.530050px;}
.y188{bottom:140.534400px;}
.y132{bottom:140.552250px;}
.yf6{bottom:140.553750px;}
.y8c{bottom:140.564550px;}
.y10{bottom:146.728500px;}
.y15a{bottom:148.489350px;}
.y1fe{bottom:148.565850px;}
.y214{bottom:148.644600px;}
.y1e8{bottom:149.882100px;}
.y38{bottom:153.078920px;}
.yde{bottom:156.308400px;}
.y172{bottom:156.362250px;}
.yc5{bottom:156.367050px;}
.y147{bottom:156.376050px;}
.y131{bottom:156.380400px;}
.yf5{bottom:156.393750px;}
.y8b{bottom:156.400050px;}
.yf{bottom:160.228500px;}
.y159{bottom:160.490850px;}
.y1fd{bottom:161.312100px;}
.y213{bottom:161.390850px;}
.y1e7{bottom:162.628350px;}
.y37{bottom:171.080420px;}
.ydd{bottom:172.154400px;}
.y171{bottom:172.208250px;}
.yc4{bottom:172.213050px;}
.y146{bottom:172.222050px;}
.y130{bottom:172.226400px;}
.y8a{bottom:172.235550px;}
.y158{bottom:172.492350px;}
.ye{bottom:173.728500px;}
.y1fc{bottom:174.058350px;}
.y212{bottom:174.137100px;}
.y1e6{bottom:175.374600px;}
.y157{bottom:184.493850px;}
.y1fb{bottom:186.804600px;}
.y211{bottom:186.883350px;}
.yd{bottom:187.228500px;}
.ydc{bottom:188.000400px;}
.yf4{bottom:188.040900px;}
.y170{bottom:188.054250px;}
.yc3{bottom:188.059050px;}
.y145{bottom:188.068050px;}
.y12f{bottom:188.072400px;}
.y89{bottom:188.089050px;}
.y1e5{bottom:188.120850px;}
.y36{bottom:189.081920px;}
.y156{bottom:196.495350px;}
.y1fa{bottom:199.550850px;}
.y210{bottom:199.629600px;}
.yc{bottom:200.728500px;}
.y1e4{bottom:200.867100px;}
.ydb{bottom:203.846400px;}
.yf3{bottom:203.886900px;}
.y16f{bottom:203.900250px;}
.yc2{bottom:203.905050px;}
.y12e{bottom:203.914050px;}
.y88{bottom:203.924550px;}
.y35{bottom:207.083420px;}
.y155{bottom:208.496850px;}
.y1f9{bottom:212.297100px;}
.y20f{bottom:212.375850px;}
.y1e3{bottom:213.613350px;}
.yb{bottom:214.228500px;}
.y12d{bottom:219.683700px;}
.yda{bottom:219.692400px;}
.yf2{bottom:219.732900px;}
.y144{bottom:219.746250px;}
.yc1{bottom:219.751050px;}
.y87{bottom:219.844050px;}
.y1f8{bottom:225.043350px;}
.y34{bottom:225.084920px;}
.y20e{bottom:225.122100px;}
.y1e2{bottom:226.359600px;}
.ya{bottom:227.728500px;}
.y12c{bottom:235.529700px;}
.yd9{bottom:235.538400px;}
.yf1{bottom:235.578900px;}
.y143{bottom:235.592250px;}
.yc0{bottom:235.597050px;}
.y86{bottom:235.679550px;}
.y1f7{bottom:237.789600px;}
.y20d{bottom:237.868350px;}
.y1e1{bottom:239.105850px;}
.y9{bottom:241.228500px;}
.y33{bottom:243.086420px;}
.y1f6{bottom:250.535850px;}
.y20c{bottom:250.614600px;}
.y12b{bottom:251.375700px;}
.yd8{bottom:251.384400px;}
.yf0{bottom:251.424900px;}
.ybf{bottom:251.433900px;}
.y142{bottom:251.438250px;}
.y85{bottom:251.515050px;}
.y1e0{bottom:251.852100px;}
.y8{bottom:254.728500px;}
.y32{bottom:261.087912px;}
.y1f5{bottom:263.282100px;}
.y20b{bottom:263.360850px;}
.y1df{bottom:264.598350px;}
.y12a{bottom:267.221700px;}
.yd7{bottom:267.230400px;}
.y187{bottom:267.252900px;}
.yef{bottom:267.270900px;}
.y16e{bottom:267.275400px;}
.ybe{bottom:267.279900px;}
.y141{bottom:267.284250px;}
.y84{bottom:267.350550px;}
.y7{bottom:268.228500px;}
.y1f4{bottom:276.028350px;}
.y20a{bottom:276.107100px;}
.y1de{bottom:277.344600px;}
.y31{bottom:279.089412px;}
.y6{bottom:281.728500px;}
.y129{bottom:283.067700px;}
.yd6{bottom:283.076400px;}
.y186{bottom:283.098900px;}
.yee{bottom:283.116900px;}
.y16d{bottom:283.121400px;}
.ybd{bottom:283.125900px;}
.y83{bottom:283.186050px;}
.y1f3{bottom:288.774600px;}
.y209{bottom:288.853350px;}
.y1dd{bottom:290.090850px;}
.y30{bottom:297.090912px;}
.y128{bottom:298.913700px;}
.yd5{bottom:298.922400px;}
.y16c{bottom:298.931400px;}
.y185{bottom:298.944900px;}
.yed{bottom:298.962900px;}
.y140{bottom:298.967400px;}
.ybc{bottom:298.973550px;}
.y82{bottom:299.021550px;}
.y1f2{bottom:301.520850px;}
.y208{bottom:301.599600px;}
.y5{bottom:302.507850px;}
.y1dc{bottom:302.837100px;}
.y1f1{bottom:314.267100px;}
.y207{bottom:314.345850px;}
.y127{bottom:314.759700px;}
.yd4{bottom:314.768400px;}
.y16b{bottom:314.777400px;}
.y184{bottom:314.790900px;}
.yec{bottom:314.804550px;}
.ybb{bottom:314.813550px;}
.y81{bottom:314.857050px;}
.y2f{bottom:315.092420px;}
.y1db{bottom:315.583350px;}
.y1f0{bottom:327.013350px;}
.y206{bottom:327.092100px;}
.y1da{bottom:328.329600px;}
.yeb{bottom:330.514650px;}
.y126{bottom:330.605700px;}
.yd3{bottom:330.614400px;}
.y16a{bottom:330.623400px;}
.y183{bottom:330.636900px;}
.yba{bottom:330.653550px;}
.y80{bottom:330.692550px;}
.y2e{bottom:333.093920px;}
.y1ef{bottom:339.759600px;}
.y205{bottom:339.838350px;}
.yea{bottom:346.360650px;}
.y125{bottom:346.451700px;}
.yd2{bottom:346.460400px;}
.y169{bottom:346.469400px;}
.y13f{bottom:346.473900px;}
.y182{bottom:346.482900px;}
.y7f{bottom:346.528050px;}
.y1c{bottom:350.842950px;}
.y2d{bottom:351.095420px;}
.y1ee{bottom:352.505850px;}
.y204{bottom:352.584600px;}
.ye9{bottom:362.206650px;}
.y124{bottom:362.297700px;}
.yd1{bottom:362.306400px;}
.y168{bottom:362.315400px;}
.y13e{bottom:362.319900px;}
.y181{bottom:362.328900px;}
.yb9{bottom:362.333550px;}
.y7e{bottom:362.363550px;}
.y1ed{bottom:365.252100px;}
.y203{bottom:365.330850px;}
.y1b{bottom:365.842950px;}
.y2c{bottom:369.096920px;}
.ye8{bottom:378.052650px;}
.y123{bottom:378.143700px;}
.yd0{bottom:378.152400px;}
.y167{bottom:378.161400px;}
.y13d{bottom:378.165900px;}
.y7d{bottom:378.199050px;}
.y1a{bottom:380.842950px;}
.y2b{bottom:387.098437px;}
.ye7{bottom:393.898650px;}
.y122{bottom:393.989700px;}
.ycf{bottom:393.998400px;}
.y166{bottom:394.007400px;}
.y13c{bottom:394.011900px;}
.y7c{bottom:394.034550px;}
.y19{bottom:395.842950px;}
.y2a{bottom:405.099937px;}
.ye6{bottom:409.744650px;}
.y180{bottom:409.770000px;}
.y121{bottom:409.835700px;}
.yce{bottom:409.844400px;}
.y13b{bottom:409.849050px;}
.y165{bottom:409.853400px;}
.yb8{bottom:409.863900px;}
.y7b{bottom:409.870050px;}
.y29{bottom:423.101437px;}
.ye5{bottom:425.590650px;}
.y17f{bottom:425.616000px;}
.y120{bottom:425.681700px;}
.ycd{bottom:425.690400px;}
.y13a{bottom:425.695050px;}
.yb7{bottom:425.699400px;}
.y7a{bottom:425.705550px;}
.y18{bottom:426.846000px;}
.y28{bottom:441.102937px;}
.ye4{bottom:441.436650px;}
.y17e{bottom:441.462000px;}
.y1d9{bottom:441.488550px;}
.y139{bottom:441.512250px;}
.y11f{bottom:441.527700px;}
.ycc{bottom:441.536400px;}
.y79{bottom:441.541050px;}
.yb6{bottom:441.570900px;}
.ye3{bottom:457.282650px;}
.y17d{bottom:457.308000px;}
.y1d8{bottom:457.334550px;}
.y1b4{bottom:457.355700px;}
.y138{bottom:457.358250px;}
.y11e{bottom:457.373700px;}
.y164{bottom:457.378050px;}
.ycb{bottom:457.382400px;}
.y78{bottom:457.385700px;}
.yb5{bottom:457.406400px;}
.y27{bottom:459.104437px;}
.y17c{bottom:473.154000px;}
.y1d7{bottom:473.180550px;}
.y1b3{bottom:473.201700px;}
.y137{bottom:473.204250px;}
.y11d{bottom:473.219700px;}
.yb4{bottom:473.241900px;}
.y4{bottom:473.597850px;}
.y26{bottom:477.105937px;}
.y17b{bottom:489.000000px;}
.y1b2{bottom:489.047700px;}
.y136{bottom:489.050250px;}
.y163{bottom:489.056400px;}
.y77{bottom:489.065700px;}
.yb3{bottom:489.077400px;}
.y25{bottom:495.107437px;}
.y3{bottom:496.097850px;}
.y17a{bottom:504.846000px;}
.y1d6{bottom:504.858300px;}
.y1b1{bottom:504.893700px;}
.y162{bottom:504.902400px;}
.yb2{bottom:504.912900px;}
.y24{bottom:513.108937px;}
.y2{bottom:518.597850px;}
.y11c{bottom:520.503450px;}
.y179{bottom:520.692000px;}
.y1d5{bottom:520.704300px;}
.y161{bottom:520.739700px;}
.yb1{bottom:520.784550px;}
.y23{bottom:531.110437px;}
.y11b{bottom:532.503450px;}
.y178{bottom:536.538000px;}
.y1d4{bottom:536.550300px;}
.y76{bottom:536.567550px;}
.y160{bottom:536.585700px;}
.yb0{bottom:536.620050px;}
.y11a{bottom:544.505700px;}
.y22{bottom:549.111937px;}
.y177{bottom:552.384000px;}
.y1d3{bottom:552.396300px;}
.y1b0{bottom:552.404550px;}
.y75{bottom:552.413550px;}
.y15f{bottom:552.431700px;}
.yaf{bottom:552.455550px;}
.y119{bottom:560.757450px;}
.y21{bottom:567.113437px;}
.y1d2{bottom:568.242300px;}
.y1af{bottom:568.250550px;}
.y74{bottom:568.259550px;}
.yae{bottom:568.291050px;}
.y152{bottom:576.615900px;}
.y13{bottom:577.341300px;}
.y118{bottom:580.010400px;}
.y1ae{bottom:584.096550px;}
.y73{bottom:584.105550px;}
.yad{bottom:584.126550px;}
.y20{bottom:585.093000px;}
.y1e{bottom:585.117900px;}
.y151{bottom:588.608400px;}
.y117{bottom:599.261400px;}
.y1d1{bottom:599.920050px;}
.y1ad{bottom:599.942550px;}
.y72{bottom:599.951550px;}
.yac{bottom:599.962050px;}
.y150{bottom:600.609900px;}
.y12{bottom:600.845250px;}
.y1f{bottom:603.094500px;}
.y14f{bottom:612.611400px;}
.y1d0{bottom:615.766050px;}
.y1ac{bottom:615.788550px;}
.y71{bottom:615.797550px;}
.yab{bottom:615.833550px;}
.y116{bottom:618.514200px;}
.y14e{bottom:624.612900px;}
.y70{bottom:631.594200px;}
.y1cf{bottom:631.612050px;}
.y1ab{bottom:631.634550px;}
.yaa{bottom:631.669050px;}
.y14d{bottom:636.614400px;}
.y115{bottom:637.765200px;}
.y191{bottom:639.896850px;}
.y1aa{bottom:647.426550px;}
.y6f{bottom:647.440200px;}
.y1ce{bottom:647.458050px;}
.ya9{bottom:647.504550px;}
.y14c{bottom:648.615900px;}
.y190{bottom:651.895350px;}
.y114{bottom:652.765200px;}
.y1a9{bottom:663.272550px;}
.y6e{bottom:663.286200px;}
.y1cd{bottom:663.304050px;}
.ya8{bottom:663.340050px;}
.y18f{bottom:663.892350px;}
.y23c{bottom:665.606700px;}
.y260{bottom:665.741700px;}
.y284{bottom:665.876700px;}
.y52{bottom:666.476100px;}
.y113{bottom:672.018450px;}
.y18e{bottom:675.893850px;}
.y23b{bottom:678.352950px;}
.y25f{bottom:678.487950px;}
.y283{bottom:678.622950px;}
.y1a8{bottom:679.118550px;}
.y6d{bottom:679.132200px;}
.y1cc{bottom:679.150050px;}
.ya7{bottom:679.175550px;}
.y18d{bottom:687.895350px;}
.y23a{bottom:691.099200px;}
.y25e{bottom:691.234200px;}
.y112{bottom:691.269450px;}
.y282{bottom:691.369200px;}
.y1a7{bottom:694.964550px;}
.y6c{bottom:694.978200px;}
.y1cb{bottom:694.996050px;}
.ya6{bottom:695.011050px;}
.y18c{bottom:699.896850px;}
.y239{bottom:703.845450px;}
.y25d{bottom:703.980450px;}
.y281{bottom:704.115450px;}
.y111{bottom:710.522100px;}
.y1a6{bottom:710.810550px;}
.y6b{bottom:710.824200px;}
.y1ca{bottom:710.842050px;}
.ya5{bottom:710.846550px;}
.y238{bottom:716.591700px;}
.y25c{bottom:716.726700px;}
.y280{bottom:716.861700px;}
.y1c9{bottom:726.598200px;}
.y1a5{bottom:726.656550px;}
.y6a{bottom:726.670200px;}
.ya4{bottom:726.688050px;}
.y237{bottom:729.337950px;}
.y25b{bottom:729.472950px;}
.y27f{bottom:729.607950px;}
.y110{bottom:729.773100px;}
.y51{bottom:736.415700px;}
.y236{bottom:742.084200px;}
.y25a{bottom:742.219200px;}
.y27e{bottom:742.354200px;}
.y1c8{bottom:742.444200px;}
.y1a4{bottom:742.502550px;}
.y69{bottom:742.516200px;}
.y10f{bottom:749.026200px;}
.y50{bottom:750.665700px;}
.y235{bottom:754.830450px;}
.y259{bottom:754.965450px;}
.y27d{bottom:755.100450px;}
.y1c7{bottom:758.290200px;}
.y1a3{bottom:758.348550px;}
.y68{bottom:758.362200px;}
.ya3{bottom:758.437200px;}
.y4f{bottom:764.915700px;}
.y234{bottom:767.576700px;}
.y258{bottom:767.711700px;}
.y27c{bottom:767.846700px;}
.y10e{bottom:768.277200px;}
.y1c6{bottom:774.136200px;}
.y1a2{bottom:774.194550px;}
.y67{bottom:774.208200px;}
.ya2{bottom:774.272700px;}
.y4e{bottom:779.165700px;}
.y233{bottom:780.322950px;}
.y257{bottom:780.457950px;}
.y27b{bottom:780.592950px;}
.y10d{bottom:787.530000px;}
.y1c5{bottom:789.982200px;}
.y1a1{bottom:790.040550px;}
.y66{bottom:790.045050px;}
.ya1{bottom:790.108200px;}
.y232{bottom:793.069200px;}
.y256{bottom:793.204200px;}
.y27a{bottom:793.339200px;}
.y4d{bottom:798.109200px;}
.y231{bottom:805.815450px;}
.y1c4{bottom:805.828200px;}
.y1a0{bottom:805.886550px;}
.y65{bottom:805.891050px;}
.ya0{bottom:805.943700px;}
.y255{bottom:805.950450px;}
.y279{bottom:806.085450px;}
.y10c{bottom:806.781000px;}
.y4c{bottom:807.665700px;}
.y230{bottom:818.561700px;}
.y254{bottom:818.696700px;}
.y278{bottom:818.831700px;}
.y1c3{bottom:821.674200px;}
.y64{bottom:821.732550px;}
.y9f{bottom:821.779200px;}
.y10b{bottom:826.033950px;}
.y4b{bottom:826.609200px;}
.y22f{bottom:831.307950px;}
.y253{bottom:831.442950px;}
.y277{bottom:831.577950px;}
.y4a{bottom:836.165700px;}
.y1c2{bottom:837.520200px;}
.y19f{bottom:837.547350px;}
.y63{bottom:837.569700px;}
.y9e{bottom:837.614700px;}
.y22e{bottom:844.054200px;}
.y252{bottom:844.189200px;}
.y276{bottom:844.324200px;}
.y10a{bottom:845.284950px;}
.y49{bottom:850.415700px;}
.y1c1{bottom:853.366200px;}
.y19e{bottom:853.393350px;}
.y62{bottom:853.415700px;}
.y9d{bottom:853.450200px;}
.y22d{bottom:856.800450px;}
.y251{bottom:856.935450px;}
.y275{bottom:857.070450px;}
.y109{bottom:864.537750px;}
.y48{bottom:864.665700px;}
.y1c0{bottom:869.212200px;}
.y19d{bottom:869.239350px;}
.y61{bottom:869.243700px;}
.y9c{bottom:869.285700px;}
.y22c{bottom:869.546700px;}
.y250{bottom:869.681700px;}
.y274{bottom:869.816700px;}
.y154{bottom:877.945950px;}
.y22b{bottom:882.292950px;}
.y24f{bottom:882.427950px;}
.y273{bottom:882.562950px;}
.y47{bottom:883.609200px;}
.y108{bottom:883.788750px;}
.y1bf{bottom:885.058200px;}
.y19c{bottom:885.085350px;}
.y60{bottom:885.089700px;}
.y9b{bottom:885.121200px;}
.y193{bottom:890.966850px;}
.y22a{bottom:895.039200px;}
.y24e{bottom:895.174200px;}
.y272{bottom:895.309200px;}
.y46{bottom:897.859200px;}
.y1be{bottom:900.904200px;}
.y19b{bottom:900.931350px;}
.y5f{bottom:900.935700px;}
.y9a{bottom:900.956700px;}
.y107{bottom:903.041700px;}
.y45{bottom:907.415700px;}
.y229{bottom:907.785450px;}
.y24d{bottom:907.920450px;}
.y271{bottom:908.055450px;}
.y1bd{bottom:916.750200px;}
.y19a{bottom:916.777350px;}
.y5e{bottom:916.781700px;}
.y99{bottom:916.792200px;}
.y228{bottom:920.531700px;}
.y24c{bottom:920.666700px;}
.y270{bottom:920.801700px;}
.y106{bottom:922.292700px;}
.y44{bottom:926.359200px;}
.y1bc{bottom:932.596200px;}
.y199{bottom:932.623350px;}
.y5d{bottom:932.627700px;}
.y98{bottom:932.633850px;}
.y227{bottom:933.277950px;}
.y24b{bottom:933.412950px;}
.y26f{bottom:933.547950px;}
.y43{bottom:940.609200px;}
.y15{bottom:941.369250px;}
.y105{bottom:941.545650px;}
.y226{bottom:946.024200px;}
.y24a{bottom:946.159200px;}
.y26e{bottom:946.294200px;}
.y1bb{bottom:948.442200px;}
.y198{bottom:948.455700px;}
.y5c{bottom:948.464700px;}
.y97{bottom:948.469350px;}
.y42{bottom:954.859200px;}
.y225{bottom:958.770450px;}
.y249{bottom:958.905450px;}
.y26d{bottom:959.040450px;}
.y14{bottom:959.369250px;}
.y104{bottom:960.796650px;}
.y5b{bottom:964.279200px;}
.y1ba{bottom:964.288200px;}
.y197{bottom:964.301700px;}
.y96{bottom:964.328700px;}
.y224{bottom:971.516700px;}
.y248{bottom:971.651700px;}
.y26c{bottom:971.786700px;}
.y103{bottom:980.049600px;}
.y5a{bottom:980.125200px;}
.y1b9{bottom:980.134200px;}
.y196{bottom:980.147700px;}
.y95{bottom:980.164200px;}
.y223{bottom:984.262950px;}
.y247{bottom:984.397950px;}
.y26b{bottom:984.532950px;}
.y41{bottom:984.925650px;}
.y59{bottom:995.971200px;}
.y1b8{bottom:995.980200px;}
.y94{bottom:995.999700px;}
.y222{bottom:997.009200px;}
.y246{bottom:997.144200px;}
.y26a{bottom:997.279200px;}
.y102{bottom:999.300600px;}
.y40{bottom:1001.425650px;}
.y221{bottom:1009.755450px;}
.y245{bottom:1009.890450px;}
.y269{bottom:1010.025450px;}
.y58{bottom:1011.817200px;}
.y1b7{bottom:1011.826200px;}
.y93{bottom:1011.859200px;}
.y3f{bottom:1017.925650px;}
.y101{bottom:1018.553700px;}
.y220{bottom:1022.501700px;}
.y244{bottom:1022.636700px;}
.y268{bottom:1022.771700px;}
.y57{bottom:1027.663200px;}
.y1b6{bottom:1027.672200px;}
.y92{bottom:1027.694700px;}
.y3e{bottom:1034.425650px;}
.y21f{bottom:1035.247950px;}
.y243{bottom:1035.382950px;}
.y267{bottom:1035.517950px;}
.y100{bottom:1037.804700px;}
.y56{bottom:1043.509200px;}
.y91{bottom:1043.530200px;}
.y21e{bottom:1047.994200px;}
.y242{bottom:1048.129200px;}
.y266{bottom:1048.264200px;}
.yff{bottom:1057.056450px;}
.y55{bottom:1059.355200px;}
.y90{bottom:1059.365700px;}
.y21d{bottom:1060.740450px;}
.y241{bottom:1060.875450px;}
.y265{bottom:1061.010450px;}
.y3d{bottom:1067.957400px;}
.y21c{bottom:1073.486700px;}
.y240{bottom:1073.621700px;}
.y264{bottom:1073.756700px;}
.y195{bottom:1075.192350px;}
.y54{bottom:1075.201200px;}
.yfe{bottom:1080.560550px;}
.y21b{bottom:1086.232950px;}
.y23f{bottom:1086.367950px;}
.y263{bottom:1086.502950px;}
.y194{bottom:1091.038350px;}
.y8f{bottom:1091.044350px;}
.y3c{bottom:1093.445400px;}
.yfd{bottom:1095.560550px;}
.y21a{bottom:1098.979200px;}
.y23e{bottom:1099.114200px;}
.y262{bottom:1099.249200px;}
.y1b5{bottom:1106.883150px;}
.y53{bottom:1106.884350px;}
.y192{bottom:1107.176850px;}
.y1d{bottom:1111.218150px;}
.y153{bottom:1111.345950px;}
.y219{bottom:1111.725450px;}
.y23d{bottom:1111.860450px;}
.y261{bottom:1111.995450px;}
.yfc{bottom:1114.812450px;}
.y3b{bottom:1118.933400px;}
.yfa{bottom:1166.874150px;}
.yc9{bottom:1167.420300px;}
.y17{bottom:1170.351900px;}
.y16{bottom:1172.533350px;}
.h10{height:21.750000px;}
.h23{height:28.821000px;}
.h24{height:28.899000px;}
.h4{height:30.420000px;}
.h29{height:31.500000px;}
.h32{height:31.518000px;}
.h28{height:36.914062px;}
.h21{height:37.044000px;}
.h9{height:39.339844px;}
.h22{height:39.366000px;}
.h12{height:40.500000px;}
.h11{height:40.524000px;}
.ha{height:40.560000px;}
.h3{height:40.800000px;}
.h3c{height:41.310000px;}
.h1c{height:41.525391px;}
.h13{height:41.580000px;}
.h2{height:42.187500px;}
.h1d{height:42.314100px;}
.h3b{height:43.092000px;}
.h20{height:43.681641px;}
.h7{height:44.880038px;}
.h1a{height:45.738000px;}
.h5{height:46.002000px;}
.h6{height:46.002039px;}
.h2a{height:46.080000px;}
.h1b{height:46.818000px;}
.hb{height:49.752000px;}
.h14{height:52.326000px;}
.h39{height:52.330800px;}
.h1f{height:52.343400px;}
.h18{height:52.344000px;}
.h2b{height:52.360800px;}
.h17{height:52.361400px;}
.h2d{height:52.362000px;}
.h19{height:52.362600px;}
.h2c{height:52.363200px;}
.h34{height:52.380600px;}
.h27{height:52.381200px;}
.h16{height:52.398000px;}
.h31{height:52.398600px;}
.h33{height:52.416000px;}
.h38{height:52.432800px;}
.h37{height:52.434600px;}
.h26{height:52.441200px;}
.h35{height:52.450800px;}
.h30{height:52.451400px;}
.h15{height:52.452000px;}
.h2e{height:52.470000px;}
.h36{height:52.542000px;}
.h25{height:52.631400px;}
.h2f{height:52.677600px;}
.h3a{height:52.685400px;}
.hf{height:52.734375px;}
.h1e{height:52.869600px;}
.hd{height:60.588008px;}
.h8{height:63.478409px;}
.he{height:80.294400px;}
.hc{height:245.431003px;}
.h0{height:1224.566985px;}
.h1{height:1224.750000px;}
.w0{width:926.929500px;}
.w1{width:927.000000px;}
.x0{left:0.000000px;}
.x2{left:84.160950px;}
.x1{left:85.802700px;}
.x9{left:102.046500px;}
.x10{left:103.385550px;}
.xf{left:105.395700px;}
.x12{left:109.278750px;}
.xe{left:111.854850px;}
.xa{left:114.802350px;}
.x4{left:123.831150px;}
.x7{left:334.952700px;}
.x5{left:336.416250px;}
.x18{left:348.984000px;}
.x13{left:356.250000px;}
.x14{left:371.190000px;}
.x6{left:380.300099px;}
.xd{left:454.242150px;}
.x11{left:467.610900px;}
.xb{left:472.463700px;}
.xc{left:485.219850px;}
.x8{left:558.164700px;}
.x17{left:596.876250px;}
.x16{left:603.198750px;}
.x15{left:618.138750px;}
.x3{left:670.684350px;}
@media print{
.v5{vertical-align:-19.166400pt;}
.v3{vertical-align:-16.666667pt;}
.v6{vertical-align:-5.628267pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:12.165867pt;}
.v4{vertical-align:16.688000pt;}
.v2{vertical-align:18.666667pt;}
.v7{vertical-align:19.649067pt;}
.v1{vertical-align:128.000221pt;}
.lsf{letter-spacing:-0.533333pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011733pt;}
.ls12{letter-spacing:0.050667pt;}
.ls1a{letter-spacing:0.080000pt;}
.ls19{letter-spacing:0.120000pt;}
.ls18{letter-spacing:0.200000pt;}
.ls0{letter-spacing:0.240000pt;}
.ls16{letter-spacing:0.253333pt;}
.lsd{letter-spacing:0.274667pt;}
.lsa{letter-spacing:0.317333pt;}
.ls5{letter-spacing:0.354667pt;}
.ls1b{letter-spacing:0.360000pt;}
.lsb{letter-spacing:0.362667pt;}
.ls9{letter-spacing:0.506667pt;}
.ls1c{letter-spacing:0.520000pt;}
.ls1d{letter-spacing:0.560000pt;}
.ls17{letter-spacing:0.600000pt;}
.ls6{letter-spacing:0.760000pt;}
.lse{letter-spacing:4.608000pt;}
.ls13{letter-spacing:10.614933pt;}
.ls8{letter-spacing:12.249067pt;}
.ls7{letter-spacing:14.383467pt;}
.ls2{letter-spacing:14.677867pt;}
.ls1{letter-spacing:14.678400pt;}
.lsc{letter-spacing:18.923200pt;}
.ls14{letter-spacing:779.146667pt;}
.ls11{letter-spacing:833.280000pt;}
.ls15{letter-spacing:844.106667pt;}
.ws49{word-spacing:-833.333333pt;}
.ws6{word-spacing:-61.788488pt;}
.ws3{word-spacing:-21.546197pt;}
.ws47{word-spacing:-20.794667pt;}
.ws16{word-spacing:-17.600000pt;}
.ws7{word-spacing:-15.253335pt;}
.ws14{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.333333pt;}
.ws6f{word-spacing:-13.224000pt;}
.ws17{word-spacing:-13.173333pt;}
.ws2{word-spacing:-12.496011pt;}
.ws5{word-spacing:-11.840000pt;}
.ws1f{word-spacing:-11.786667pt;}
.ws4{word-spacing:-11.360000pt;}
.ws34{word-spacing:-11.306667pt;}
.ws27{word-spacing:-10.666667pt;}
.ws7a{word-spacing:-10.400000pt;}
.ws48{word-spacing:-9.333333pt;}
.ws35{word-spacing:-9.312000pt;}
.ws1{word-spacing:-9.120000pt;}
.ws3d{word-spacing:-8.528000pt;}
.ws19{word-spacing:-7.346667pt;}
.ws12{word-spacing:-6.666667pt;}
.ws1d{word-spacing:-6.586667pt;}
.ws13{word-spacing:-6.000000pt;}
.ws20{word-spacing:-5.893333pt;}
.ws8{word-spacing:-3.402667pt;}
.ws4e{word-spacing:-2.280000pt;}
.ws39{word-spacing:-2.256000pt;}
.ws38{word-spacing:-2.208000pt;}
.ws36{word-spacing:-2.064000pt;}
.ws58{word-spacing:-1.976000pt;}
.ws37{word-spacing:-1.824000pt;}
.ws3a{word-spacing:-1.776000pt;}
.ws33{word-spacing:-1.653333pt;}
.ws56{word-spacing:-1.216000pt;}
.ws77{word-spacing:-1.013333pt;}
.ws31{word-spacing:-0.658667pt;}
.ws64{word-spacing:-0.557333pt;}
.wsb{word-spacing:-0.234667pt;}
.ws2e{word-spacing:-0.202667pt;}
.ws66{word-spacing:-0.053333pt;}
.ws28{word-spacing:-0.050667pt;}
.ws23{word-spacing:-0.045333pt;}
.ws65{word-spacing:-0.037333pt;}
.ws15{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.608000pt;}
.ws6e{word-spacing:0.709333pt;}
.ws60{word-spacing:0.810667pt;}
.ws41{word-spacing:0.912000pt;}
.ws9{word-spacing:1.173333pt;}
.ws4a{word-spacing:1.605333pt;}
.ws5d{word-spacing:1.976000pt;}
.ws6b{word-spacing:2.178667pt;}
.ws2d{word-spacing:2.432000pt;}
.ws59{word-spacing:2.938667pt;}
.ws3c{word-spacing:3.043200pt;}
.ws61{word-spacing:3.648000pt;}
.ws2b{word-spacing:3.850667pt;}
.ws5a{word-spacing:4.256000pt;}
.ws4f{word-spacing:4.329067pt;}
.ws76{word-spacing:4.615467pt;}
.ws6d{word-spacing:4.813333pt;}
.ws18{word-spacing:4.933333pt;}
.ws3b{word-spacing:5.116800pt;}
.ws4d{word-spacing:5.269333pt;}
.ws55{word-spacing:5.348800pt;}
.ws4b{word-spacing:5.624000pt;}
.ws1c{word-spacing:5.663467pt;}
.ws45{word-spacing:5.811733pt;}
.ws69{word-spacing:5.928000pt;}
.ws46{word-spacing:6.029333pt;}
.ws2c{word-spacing:6.080000pt;}
.ws57{word-spacing:6.637333pt;}
.ws50{word-spacing:6.805333pt;}
.ws21{word-spacing:6.925067pt;}
.ws22{word-spacing:7.463733pt;}
.ws40{word-spacing:7.816533pt;}
.wsd{word-spacing:8.015467pt;}
.wsf{word-spacing:8.016000pt;}
.ws10{word-spacing:8.020800pt;}
.ws11{word-spacing:8.022400pt;}
.ws63{word-spacing:8.162133pt;}
.ws25{word-spacing:8.358933pt;}
.ws6c{word-spacing:8.400000pt;}
.ws5e{word-spacing:8.549867pt;}
.ws3e{word-spacing:8.562667pt;}
.ws67{word-spacing:8.626667pt;}
.ws1a{word-spacing:8.974400pt;}
.ws72{word-spacing:9.170667pt;}
.wsa{word-spacing:9.680001pt;}
.ws24{word-spacing:10.824533pt;}
.ws1e{word-spacing:10.854400pt;}
.ws62{word-spacing:11.208533pt;}
.ws5c{word-spacing:11.298667pt;}
.ws68{word-spacing:11.675200pt;}
.ws79{word-spacing:11.841067pt;}
.ws4c{word-spacing:11.870933pt;}
.ws53{word-spacing:12.128000pt;}
.ws44{word-spacing:12.739200pt;}
.ws74{word-spacing:13.533333pt;}
.ws30{word-spacing:14.085333pt;}
.ws5f{word-spacing:15.287467pt;}
.ws29{word-spacing:15.352000pt;}
.ws26{word-spacing:15.453333pt;}
.ws52{word-spacing:15.706667pt;}
.ws6a{word-spacing:17.056000pt;}
.ws1b{word-spacing:18.667200pt;}
.ws2f{word-spacing:19.202667pt;}
.ws5b{word-spacing:19.304000pt;}
.ws42{word-spacing:19.506667pt;}
.ws43{word-spacing:19.557333pt;}
.ws75{word-spacing:19.585600pt;}
.ws71{word-spacing:19.658667pt;}
.ws78{word-spacing:20.125333pt;}
.ws3f{word-spacing:21.995200pt;}
.ws51{word-spacing:22.299200pt;}
.ws73{word-spacing:25.367467pt;}
.ws70{word-spacing:26.374933pt;}
.wsc{word-spacing:33.689600pt;}
.ws54{word-spacing:97.330667pt;}
.ws32{word-spacing:1957.674667pt;}
.ws0{word-spacing:2011.136000pt;}
._21{margin-left:-913.973333pt;}
._1e{margin-left:-147.946667pt;}
._1d{margin-left:-7.386667pt;}
._8{margin-left:-5.509328pt;}
._1c{margin-left:-4.613411pt;}
._3{margin-left:-3.626667pt;}
._2{margin-left:-2.613333pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.194667pt;}
._12{width:2.106667pt;}
._4{width:3.080000pt;}
._6{width:4.103999pt;}
._7{width:5.005334pt;}
._b{width:6.261334pt;}
._d{width:7.210667pt;}
._9{width:8.117334pt;}
._a{width:9.077334pt;}
._10{width:10.122668pt;}
._15{width:11.612264pt;}
._11{width:12.565335pt;}
._5{width:14.242544pt;}
._14{width:15.914667pt;}
._17{width:17.112000pt;}
._16{width:18.178658pt;}
._f{width:19.205335pt;}
._e{width:20.165335pt;}
._c{width:21.797336pt;}
._13{width:24.066667pt;}
._19{width:25.477333pt;}
._18{width:27.200000pt;}
._22{width:28.626667pt;}
._20{width:30.248000pt;}
._2b{width:33.200000pt;}
._24{width:34.160000pt;}
._1a{width:37.112000pt;}
._2a{width:38.400000pt;}
._2d{width:41.327999pt;}
._2c{width:42.240000pt;}
._25{width:46.533333pt;}
._29{width:54.040000pt;}
._23{width:57.050667pt;}
._26{width:64.200000pt;}
._28{width:68.720000pt;}
._27{width:77.880000pt;}
._1f{width:97.330667pt;}
._1b{width:1958.432533pt;}
.fs12{font-size:17.333333pt;}
.fs14{font-size:18.666667pt;}
.fs10{font-size:22.666667pt;}
.fsc{font-size:24.000000pt;}
.fse{font-size:25.333333pt;}
.fsb{font-size:26.666667pt;}
.fs11{font-size:34.666667pt;}
.fs13{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fsf{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fsd{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:58.666674pt;}
.fs4{font-size:58.666716pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:77.504304pt;}
.fsa{font-size:102.400000pt;}
.fs8{font-size:237.648030pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:40.999333pt;}
.yfb{bottom:41.027467pt;}
.y1{bottom:41.275333pt;}
.ye2{bottom:82.599467pt;}
.y176{bottom:82.647333pt;}
.y14b{bottom:82.659600pt;}
.y18b{bottom:82.663467pt;}
.y135{bottom:82.679333pt;}
.yf9{bottom:82.683467pt;}
.y202{bottom:86.738533pt;}
.y218{bottom:86.808533pt;}
.y1ec{bottom:87.908533pt;}
.y15e{bottom:89.330533pt;}
.ye1{bottom:96.684800pt;}
.y175{bottom:96.732667pt;}
.yc8{bottom:96.736933pt;}
.y14a{bottom:96.744933pt;}
.y18a{bottom:96.748800pt;}
.y134{bottom:96.764667pt;}
.yf8{bottom:96.768800pt;}
.y8e{bottom:96.778133pt;}
.y201{bottom:98.068533pt;}
.y217{bottom:98.138533pt;}
.y1eb{bottom:99.238533pt;}
.y15d{bottom:99.986533pt;}
.y3a{bottom:104.104800pt;}
.y200{bottom:109.398533pt;}
.y216{bottom:109.468533pt;}
.y1ea{bottom:110.568533pt;}
.y15c{bottom:110.654533pt;}
.ye0{bottom:110.770133pt;}
.y174{bottom:110.818000pt;}
.yc7{bottom:110.822267pt;}
.y149{bottom:110.830267pt;}
.y189{bottom:110.834133pt;}
.y133{bottom:110.850000pt;}
.yf7{bottom:110.854133pt;}
.y8d{bottom:110.870267pt;}
.y11{bottom:118.425333pt;}
.y39{bottom:120.068818pt;}
.y1ff{bottom:120.728533pt;}
.y215{bottom:120.798533pt;}
.y15b{bottom:121.322533pt;}
.y1e9{bottom:121.898533pt;}
.ydf{bottom:124.855467pt;}
.y173{bottom:124.903333pt;}
.yc6{bottom:124.907600pt;}
.y148{bottom:124.915600pt;}
.y188{bottom:124.919467pt;}
.y132{bottom:124.935333pt;}
.yf6{bottom:124.936667pt;}
.y8c{bottom:124.946267pt;}
.y10{bottom:130.425333pt;}
.y15a{bottom:131.990533pt;}
.y1fe{bottom:132.058533pt;}
.y214{bottom:132.128533pt;}
.y1e8{bottom:133.228533pt;}
.y38{bottom:136.070151pt;}
.yde{bottom:138.940800pt;}
.y172{bottom:138.988667pt;}
.yc5{bottom:138.992933pt;}
.y147{bottom:139.000933pt;}
.y131{bottom:139.004800pt;}
.yf5{bottom:139.016667pt;}
.y8b{bottom:139.022267pt;}
.yf{bottom:142.425333pt;}
.y159{bottom:142.658533pt;}
.y1fd{bottom:143.388533pt;}
.y213{bottom:143.458533pt;}
.y1e7{bottom:144.558533pt;}
.y37{bottom:152.071485pt;}
.ydd{bottom:153.026133pt;}
.y171{bottom:153.074000pt;}
.yc4{bottom:153.078267pt;}
.y146{bottom:153.086267pt;}
.y130{bottom:153.090133pt;}
.y8a{bottom:153.098267pt;}
.y158{bottom:153.326533pt;}
.ye{bottom:154.425333pt;}
.y1fc{bottom:154.718533pt;}
.y212{bottom:154.788533pt;}
.y1e6{bottom:155.888533pt;}
.y157{bottom:163.994533pt;}
.y1fb{bottom:166.048533pt;}
.y211{bottom:166.118533pt;}
.yd{bottom:166.425333pt;}
.ydc{bottom:167.111467pt;}
.yf4{bottom:167.147467pt;}
.y170{bottom:167.159333pt;}
.yc3{bottom:167.163600pt;}
.y145{bottom:167.171600pt;}
.y12f{bottom:167.175467pt;}
.y89{bottom:167.190267pt;}
.y1e5{bottom:167.218533pt;}
.y36{bottom:168.072818pt;}
.y156{bottom:174.662533pt;}
.y1fa{bottom:177.378533pt;}
.y210{bottom:177.448533pt;}
.yc{bottom:178.425333pt;}
.y1e4{bottom:178.548533pt;}
.ydb{bottom:181.196800pt;}
.yf3{bottom:181.232800pt;}
.y16f{bottom:181.244667pt;}
.yc2{bottom:181.248933pt;}
.y12e{bottom:181.256933pt;}
.y88{bottom:181.266267pt;}
.y35{bottom:184.074151pt;}
.y155{bottom:185.330533pt;}
.y1f9{bottom:188.708533pt;}
.y20f{bottom:188.778533pt;}
.y1e3{bottom:189.878533pt;}
.yb{bottom:190.425333pt;}
.y12d{bottom:195.274400pt;}
.yda{bottom:195.282133pt;}
.yf2{bottom:195.318133pt;}
.y144{bottom:195.330000pt;}
.yc1{bottom:195.334267pt;}
.y87{bottom:195.416933pt;}
.y1f8{bottom:200.038533pt;}
.y34{bottom:200.075485pt;}
.y20e{bottom:200.108533pt;}
.y1e2{bottom:201.208533pt;}
.ya{bottom:202.425333pt;}
.y12c{bottom:209.359733pt;}
.yd9{bottom:209.367467pt;}
.yf1{bottom:209.403467pt;}
.y143{bottom:209.415333pt;}
.yc0{bottom:209.419600pt;}
.y86{bottom:209.492933pt;}
.y1f7{bottom:211.368533pt;}
.y20d{bottom:211.438533pt;}
.y1e1{bottom:212.538533pt;}
.y9{bottom:214.425333pt;}
.y33{bottom:216.076818pt;}
.y1f6{bottom:222.698533pt;}
.y20c{bottom:222.768533pt;}
.y12b{bottom:223.445067pt;}
.yd8{bottom:223.452800pt;}
.yf0{bottom:223.488800pt;}
.ybf{bottom:223.496800pt;}
.y142{bottom:223.500667pt;}
.y85{bottom:223.568933pt;}
.y1e0{bottom:223.868533pt;}
.y8{bottom:226.425333pt;}
.y32{bottom:232.078144pt;}
.y1f5{bottom:234.028533pt;}
.y20b{bottom:234.098533pt;}
.y1df{bottom:235.198533pt;}
.y12a{bottom:237.530400pt;}
.yd7{bottom:237.538133pt;}
.y187{bottom:237.558133pt;}
.yef{bottom:237.574133pt;}
.y16e{bottom:237.578133pt;}
.ybe{bottom:237.582133pt;}
.y141{bottom:237.586000pt;}
.y84{bottom:237.644933pt;}
.y7{bottom:238.425333pt;}
.y1f4{bottom:245.358533pt;}
.y20a{bottom:245.428533pt;}
.y1de{bottom:246.528533pt;}
.y31{bottom:248.079477pt;}
.y6{bottom:250.425333pt;}
.y129{bottom:251.615733pt;}
.yd6{bottom:251.623467pt;}
.y186{bottom:251.643467pt;}
.yee{bottom:251.659467pt;}
.y16d{bottom:251.663467pt;}
.ybd{bottom:251.667467pt;}
.y83{bottom:251.720933pt;}
.y1f3{bottom:256.688533pt;}
.y209{bottom:256.758533pt;}
.y1dd{bottom:257.858533pt;}
.y30{bottom:264.080811pt;}
.y128{bottom:265.701067pt;}
.yd5{bottom:265.708800pt;}
.y16c{bottom:265.716800pt;}
.y185{bottom:265.728800pt;}
.yed{bottom:265.744800pt;}
.y140{bottom:265.748800pt;}
.ybc{bottom:265.754267pt;}
.y82{bottom:265.796933pt;}
.y1f2{bottom:268.018533pt;}
.y208{bottom:268.088533pt;}
.y5{bottom:268.895867pt;}
.y1dc{bottom:269.188533pt;}
.y1f1{bottom:279.348533pt;}
.y207{bottom:279.418533pt;}
.y127{bottom:279.786400pt;}
.yd4{bottom:279.794133pt;}
.y16b{bottom:279.802133pt;}
.y184{bottom:279.814133pt;}
.yec{bottom:279.826267pt;}
.ybb{bottom:279.834267pt;}
.y81{bottom:279.872933pt;}
.y2f{bottom:280.082151pt;}
.y1db{bottom:280.518533pt;}
.y1f0{bottom:290.678533pt;}
.y206{bottom:290.748533pt;}
.y1da{bottom:291.848533pt;}
.yeb{bottom:293.790800pt;}
.y126{bottom:293.871733pt;}
.yd3{bottom:293.879467pt;}
.y16a{bottom:293.887467pt;}
.y183{bottom:293.899467pt;}
.yba{bottom:293.914267pt;}
.y80{bottom:293.948933pt;}
.y2e{bottom:296.083485pt;}
.y1ef{bottom:302.008533pt;}
.y205{bottom:302.078533pt;}
.yea{bottom:307.876133pt;}
.y125{bottom:307.957067pt;}
.yd2{bottom:307.964800pt;}
.y169{bottom:307.972800pt;}
.y13f{bottom:307.976800pt;}
.y182{bottom:307.984800pt;}
.y7f{bottom:308.024933pt;}
.y1c{bottom:311.860400pt;}
.y2d{bottom:312.084818pt;}
.y1ee{bottom:313.338533pt;}
.y204{bottom:313.408533pt;}
.ye9{bottom:321.961467pt;}
.y124{bottom:322.042400pt;}
.yd1{bottom:322.050133pt;}
.y168{bottom:322.058133pt;}
.y13e{bottom:322.062133pt;}
.y181{bottom:322.070133pt;}
.yb9{bottom:322.074267pt;}
.y7e{bottom:322.100933pt;}
.y1ed{bottom:324.668533pt;}
.y203{bottom:324.738533pt;}
.y1b{bottom:325.193733pt;}
.y2c{bottom:328.086151pt;}
.ye8{bottom:336.046800pt;}
.y123{bottom:336.127733pt;}
.yd0{bottom:336.135467pt;}
.y167{bottom:336.143467pt;}
.y13d{bottom:336.147467pt;}
.y7d{bottom:336.176933pt;}
.y1a{bottom:338.527067pt;}
.y2b{bottom:344.087499pt;}
.ye7{bottom:350.132133pt;}
.y122{bottom:350.213067pt;}
.ycf{bottom:350.220800pt;}
.y166{bottom:350.228800pt;}
.y13c{bottom:350.232800pt;}
.y7c{bottom:350.252933pt;}
.y19{bottom:351.860400pt;}
.y2a{bottom:360.088833pt;}
.ye6{bottom:364.217467pt;}
.y180{bottom:364.240000pt;}
.y121{bottom:364.298400pt;}
.yce{bottom:364.306133pt;}
.y13b{bottom:364.310267pt;}
.y165{bottom:364.314133pt;}
.yb8{bottom:364.323467pt;}
.y7b{bottom:364.328933pt;}
.y29{bottom:376.090166pt;}
.ye5{bottom:378.302800pt;}
.y17f{bottom:378.325333pt;}
.y120{bottom:378.383733pt;}
.ycd{bottom:378.391467pt;}
.y13a{bottom:378.395600pt;}
.yb7{bottom:378.399467pt;}
.y7a{bottom:378.404933pt;}
.y18{bottom:379.418667pt;}
.y28{bottom:392.091499pt;}
.ye4{bottom:392.388133pt;}
.y17e{bottom:392.410667pt;}
.y1d9{bottom:392.434267pt;}
.y139{bottom:392.455333pt;}
.y11f{bottom:392.469067pt;}
.ycc{bottom:392.476800pt;}
.y79{bottom:392.480933pt;}
.yb6{bottom:392.507467pt;}
.ye3{bottom:406.473467pt;}
.y17d{bottom:406.496000pt;}
.y1d8{bottom:406.519600pt;}
.y1b4{bottom:406.538400pt;}
.y138{bottom:406.540667pt;}
.y11e{bottom:406.554400pt;}
.y164{bottom:406.558267pt;}
.ycb{bottom:406.562133pt;}
.y78{bottom:406.565067pt;}
.yb5{bottom:406.583467pt;}
.y27{bottom:408.092833pt;}
.y17c{bottom:420.581333pt;}
.y1d7{bottom:420.604933pt;}
.y1b3{bottom:420.623733pt;}
.y137{bottom:420.626000pt;}
.y11d{bottom:420.639733pt;}
.yb4{bottom:420.659467pt;}
.y4{bottom:420.975867pt;}
.y26{bottom:424.094166pt;}
.y17b{bottom:434.666667pt;}
.y1b2{bottom:434.709067pt;}
.y136{bottom:434.711333pt;}
.y163{bottom:434.716800pt;}
.y77{bottom:434.725067pt;}
.yb3{bottom:434.735467pt;}
.y25{bottom:440.095499pt;}
.y3{bottom:440.975867pt;}
.y17a{bottom:448.752000pt;}
.y1d6{bottom:448.762933pt;}
.y1b1{bottom:448.794400pt;}
.y162{bottom:448.802133pt;}
.yb2{bottom:448.811467pt;}
.y24{bottom:456.096833pt;}
.y2{bottom:460.975867pt;}
.y11c{bottom:462.669733pt;}
.y179{bottom:462.837333pt;}
.y1d5{bottom:462.848267pt;}
.y161{bottom:462.879733pt;}
.yb1{bottom:462.919600pt;}
.y23{bottom:472.098166pt;}
.y11b{bottom:473.336400pt;}
.y178{bottom:476.922667pt;}
.y1d4{bottom:476.933600pt;}
.y76{bottom:476.948933pt;}
.y160{bottom:476.965067pt;}
.yb0{bottom:476.995600pt;}
.y11a{bottom:484.005067pt;}
.y22{bottom:488.099499pt;}
.y177{bottom:491.008000pt;}
.y1d3{bottom:491.018933pt;}
.y1b0{bottom:491.026267pt;}
.y75{bottom:491.034267pt;}
.y15f{bottom:491.050400pt;}
.yaf{bottom:491.071600pt;}
.y119{bottom:498.451067pt;}
.y21{bottom:504.100833pt;}
.y1d2{bottom:505.104267pt;}
.y1af{bottom:505.111600pt;}
.y74{bottom:505.119600pt;}
.yae{bottom:505.147600pt;}
.y152{bottom:512.547467pt;}
.y13{bottom:513.192267pt;}
.y118{bottom:515.564800pt;}
.y1ae{bottom:519.196933pt;}
.y73{bottom:519.204933pt;}
.yad{bottom:519.223600pt;}
.y20{bottom:520.082667pt;}
.y1e{bottom:520.104800pt;}
.y151{bottom:523.207467pt;}
.y117{bottom:532.676800pt;}
.y1d1{bottom:533.262267pt;}
.y1ad{bottom:533.282267pt;}
.y72{bottom:533.290267pt;}
.yac{bottom:533.299600pt;}
.y150{bottom:533.875467pt;}
.y12{bottom:534.084667pt;}
.y1f{bottom:536.084000pt;}
.y14f{bottom:544.543467pt;}
.y1d0{bottom:547.347600pt;}
.y1ac{bottom:547.367600pt;}
.y71{bottom:547.375600pt;}
.yab{bottom:547.407600pt;}
.y116{bottom:549.790400pt;}
.y14e{bottom:555.211467pt;}
.y70{bottom:561.417067pt;}
.y1cf{bottom:561.432933pt;}
.y1ab{bottom:561.452933pt;}
.yaa{bottom:561.483600pt;}
.y14d{bottom:565.879467pt;}
.y115{bottom:566.902400pt;}
.y191{bottom:568.797200pt;}
.y1aa{bottom:575.490267pt;}
.y6f{bottom:575.502400pt;}
.y1ce{bottom:575.518267pt;}
.ya9{bottom:575.559600pt;}
.y14c{bottom:576.547467pt;}
.y190{bottom:579.462533pt;}
.y114{bottom:580.235733pt;}
.y1a9{bottom:589.575600pt;}
.y6e{bottom:589.587733pt;}
.y1cd{bottom:589.603600pt;}
.ya8{bottom:589.635600pt;}
.y18f{bottom:590.126533pt;}
.y23c{bottom:591.650400pt;}
.y260{bottom:591.770400pt;}
.y284{bottom:591.890400pt;}
.y52{bottom:592.423200pt;}
.y113{bottom:597.349733pt;}
.y18e{bottom:600.794533pt;}
.y23b{bottom:602.980400pt;}
.y25f{bottom:603.100400pt;}
.y283{bottom:603.220400pt;}
.y1a8{bottom:603.660933pt;}
.y6d{bottom:603.673067pt;}
.y1cc{bottom:603.688933pt;}
.ya7{bottom:603.711600pt;}
.y18d{bottom:611.462533pt;}
.y23a{bottom:614.310400pt;}
.y25e{bottom:614.430400pt;}
.y112{bottom:614.461733pt;}
.y282{bottom:614.550400pt;}
.y1a7{bottom:617.746267pt;}
.y6c{bottom:617.758400pt;}
.y1cb{bottom:617.774267pt;}
.ya6{bottom:617.787600pt;}
.y18c{bottom:622.130533pt;}
.y239{bottom:625.640400pt;}
.y25d{bottom:625.760400pt;}
.y281{bottom:625.880400pt;}
.y111{bottom:631.575200pt;}
.y1a6{bottom:631.831600pt;}
.y6b{bottom:631.843733pt;}
.y1ca{bottom:631.859600pt;}
.ya5{bottom:631.863600pt;}
.y238{bottom:636.970400pt;}
.y25c{bottom:637.090400pt;}
.y280{bottom:637.210400pt;}
.y1c9{bottom:645.865067pt;}
.y1a5{bottom:645.916933pt;}
.y6a{bottom:645.929067pt;}
.ya4{bottom:645.944933pt;}
.y237{bottom:648.300400pt;}
.y25b{bottom:648.420400pt;}
.y27f{bottom:648.540400pt;}
.y110{bottom:648.687200pt;}
.y51{bottom:654.591733pt;}
.y236{bottom:659.630400pt;}
.y25a{bottom:659.750400pt;}
.y27e{bottom:659.870400pt;}
.y1c8{bottom:659.950400pt;}
.y1a4{bottom:660.002267pt;}
.y69{bottom:660.014400pt;}
.y10f{bottom:665.801067pt;}
.y50{bottom:667.258400pt;}
.y235{bottom:670.960400pt;}
.y259{bottom:671.080400pt;}
.y27d{bottom:671.200400pt;}
.y1c7{bottom:674.035733pt;}
.y1a3{bottom:674.087600pt;}
.y68{bottom:674.099733pt;}
.ya3{bottom:674.166400pt;}
.y4f{bottom:679.925067pt;}
.y234{bottom:682.290400pt;}
.y258{bottom:682.410400pt;}
.y27c{bottom:682.530400pt;}
.y10e{bottom:682.913067pt;}
.y1c6{bottom:688.121067pt;}
.y1a2{bottom:688.172933pt;}
.y67{bottom:688.185067pt;}
.ya2{bottom:688.242400pt;}
.y4e{bottom:692.591733pt;}
.y233{bottom:693.620400pt;}
.y257{bottom:693.740400pt;}
.y27b{bottom:693.860400pt;}
.y10d{bottom:700.026667pt;}
.y1c5{bottom:702.206400pt;}
.y1a1{bottom:702.258267pt;}
.y66{bottom:702.262267pt;}
.ya1{bottom:702.318400pt;}
.y232{bottom:704.950400pt;}
.y256{bottom:705.070400pt;}
.y27a{bottom:705.190400pt;}
.y4d{bottom:709.430400pt;}
.y231{bottom:716.280400pt;}
.y1c4{bottom:716.291733pt;}
.y1a0{bottom:716.343600pt;}
.y65{bottom:716.347600pt;}
.ya0{bottom:716.394400pt;}
.y255{bottom:716.400400pt;}
.y279{bottom:716.520400pt;}
.y10c{bottom:717.138667pt;}
.y4c{bottom:717.925067pt;}
.y230{bottom:727.610400pt;}
.y254{bottom:727.730400pt;}
.y278{bottom:727.850400pt;}
.y1c3{bottom:730.377067pt;}
.y64{bottom:730.428933pt;}
.y9f{bottom:730.470400pt;}
.y10b{bottom:734.252400pt;}
.y4b{bottom:734.763733pt;}
.y22f{bottom:738.940400pt;}
.y253{bottom:739.060400pt;}
.y277{bottom:739.180400pt;}
.y4a{bottom:743.258400pt;}
.y1c2{bottom:744.462400pt;}
.y19f{bottom:744.486533pt;}
.y63{bottom:744.506400pt;}
.y9e{bottom:744.546400pt;}
.y22e{bottom:750.270400pt;}
.y252{bottom:750.390400pt;}
.y276{bottom:750.510400pt;}
.y10a{bottom:751.364400pt;}
.y49{bottom:755.925067pt;}
.y1c1{bottom:758.547733pt;}
.y19e{bottom:758.571867pt;}
.y62{bottom:758.591733pt;}
.y9d{bottom:758.622400pt;}
.y22d{bottom:761.600400pt;}
.y251{bottom:761.720400pt;}
.y275{bottom:761.840400pt;}
.y109{bottom:768.478000pt;}
.y48{bottom:768.591733pt;}
.y1c0{bottom:772.633067pt;}
.y19d{bottom:772.657200pt;}
.y61{bottom:772.661067pt;}
.y9c{bottom:772.698400pt;}
.y22c{bottom:772.930400pt;}
.y250{bottom:773.050400pt;}
.y274{bottom:773.170400pt;}
.y154{bottom:780.396400pt;}
.y22b{bottom:784.260400pt;}
.y24f{bottom:784.380400pt;}
.y273{bottom:784.500400pt;}
.y47{bottom:785.430400pt;}
.y108{bottom:785.590000pt;}
.y1bf{bottom:786.718400pt;}
.y19c{bottom:786.742533pt;}
.y60{bottom:786.746400pt;}
.y9b{bottom:786.774400pt;}
.y193{bottom:791.970533pt;}
.y22a{bottom:795.590400pt;}
.y24e{bottom:795.710400pt;}
.y272{bottom:795.830400pt;}
.y46{bottom:798.097067pt;}
.y1be{bottom:800.803733pt;}
.y19b{bottom:800.827867pt;}
.y5f{bottom:800.831733pt;}
.y9a{bottom:800.850400pt;}
.y107{bottom:802.703733pt;}
.y45{bottom:806.591733pt;}
.y229{bottom:806.920400pt;}
.y24d{bottom:807.040400pt;}
.y271{bottom:807.160400pt;}
.y1bd{bottom:814.889067pt;}
.y19a{bottom:814.913200pt;}
.y5e{bottom:814.917067pt;}
.y99{bottom:814.926400pt;}
.y228{bottom:818.250400pt;}
.y24c{bottom:818.370400pt;}
.y270{bottom:818.490400pt;}
.y106{bottom:819.815733pt;}
.y44{bottom:823.430400pt;}
.y1bc{bottom:828.974400pt;}
.y199{bottom:828.998533pt;}
.y5d{bottom:829.002400pt;}
.y98{bottom:829.007867pt;}
.y227{bottom:829.580400pt;}
.y24b{bottom:829.700400pt;}
.y26f{bottom:829.820400pt;}
.y43{bottom:836.097067pt;}
.y15{bottom:836.772667pt;}
.y105{bottom:836.929467pt;}
.y226{bottom:840.910400pt;}
.y24a{bottom:841.030400pt;}
.y26e{bottom:841.150400pt;}
.y1bb{bottom:843.059733pt;}
.y198{bottom:843.071733pt;}
.y5c{bottom:843.079733pt;}
.y97{bottom:843.083867pt;}
.y42{bottom:848.763733pt;}
.y225{bottom:852.240400pt;}
.y249{bottom:852.360400pt;}
.y26d{bottom:852.480400pt;}
.y14{bottom:852.772667pt;}
.y104{bottom:854.041467pt;}
.y5b{bottom:857.137067pt;}
.y1ba{bottom:857.145067pt;}
.y197{bottom:857.157067pt;}
.y96{bottom:857.181067pt;}
.y224{bottom:863.570400pt;}
.y248{bottom:863.690400pt;}
.y26c{bottom:863.810400pt;}
.y103{bottom:871.155200pt;}
.y5a{bottom:871.222400pt;}
.y1b9{bottom:871.230400pt;}
.y196{bottom:871.242400pt;}
.y95{bottom:871.257067pt;}
.y223{bottom:874.900400pt;}
.y247{bottom:875.020400pt;}
.y26b{bottom:875.140400pt;}
.y41{bottom:875.489467pt;}
.y59{bottom:885.307733pt;}
.y1b8{bottom:885.315733pt;}
.y94{bottom:885.333067pt;}
.y222{bottom:886.230400pt;}
.y246{bottom:886.350400pt;}
.y26a{bottom:886.470400pt;}
.y102{bottom:888.267200pt;}
.y40{bottom:890.156133pt;}
.y221{bottom:897.560400pt;}
.y245{bottom:897.680400pt;}
.y269{bottom:897.800400pt;}
.y58{bottom:899.393067pt;}
.y1b7{bottom:899.401067pt;}
.y93{bottom:899.430400pt;}
.y3f{bottom:904.822800pt;}
.y101{bottom:905.381067pt;}
.y220{bottom:908.890400pt;}
.y244{bottom:909.010400pt;}
.y268{bottom:909.130400pt;}
.y57{bottom:913.478400pt;}
.y1b6{bottom:913.486400pt;}
.y92{bottom:913.506400pt;}
.y3e{bottom:919.489467pt;}
.y21f{bottom:920.220400pt;}
.y243{bottom:920.340400pt;}
.y267{bottom:920.460400pt;}
.y100{bottom:922.493067pt;}
.y56{bottom:927.563733pt;}
.y91{bottom:927.582400pt;}
.y21e{bottom:931.550400pt;}
.y242{bottom:931.670400pt;}
.y266{bottom:931.790400pt;}
.yff{bottom:939.605733pt;}
.y55{bottom:941.649067pt;}
.y90{bottom:941.658400pt;}
.y21d{bottom:942.880400pt;}
.y241{bottom:943.000400pt;}
.y265{bottom:943.120400pt;}
.y3d{bottom:949.295467pt;}
.y21c{bottom:954.210400pt;}
.y240{bottom:954.330400pt;}
.y264{bottom:954.450400pt;}
.y195{bottom:955.726533pt;}
.y54{bottom:955.734400pt;}
.yfe{bottom:960.498267pt;}
.y21b{bottom:965.540400pt;}
.y23f{bottom:965.660400pt;}
.y263{bottom:965.780400pt;}
.y194{bottom:969.811867pt;}
.y8f{bottom:969.817200pt;}
.y3c{bottom:971.951467pt;}
.yfd{bottom:973.831600pt;}
.y21a{bottom:976.870400pt;}
.y23e{bottom:976.990400pt;}
.y262{bottom:977.110400pt;}
.y1b5{bottom:983.896133pt;}
.y53{bottom:983.897200pt;}
.y192{bottom:984.157200pt;}
.y1d{bottom:987.749467pt;}
.y153{bottom:987.863067pt;}
.y219{bottom:988.200400pt;}
.y23d{bottom:988.320400pt;}
.y261{bottom:988.440400pt;}
.yfc{bottom:990.944400pt;}
.y3b{bottom:994.607467pt;}
.yfa{bottom:1037.221467pt;}
.yc9{bottom:1037.706933pt;}
.y17{bottom:1040.312800pt;}
.y16{bottom:1042.251867pt;}
.h10{height:19.333333pt;}
.h23{height:25.618667pt;}
.h24{height:25.688000pt;}
.h4{height:27.040000pt;}
.h29{height:28.000000pt;}
.h32{height:28.016000pt;}
.h28{height:32.812500pt;}
.h21{height:32.928000pt;}
.h9{height:34.968750pt;}
.h22{height:34.992000pt;}
.h12{height:36.000000pt;}
.h11{height:36.021333pt;}
.ha{height:36.053333pt;}
.h3{height:36.266667pt;}
.h3c{height:36.720000pt;}
.h1c{height:36.911458pt;}
.h13{height:36.960000pt;}
.h2{height:37.500000pt;}
.h1d{height:37.612533pt;}
.h3b{height:38.304000pt;}
.h20{height:38.828125pt;}
.h7{height:39.893367pt;}
.h1a{height:40.656000pt;}
.h5{height:40.890667pt;}
.h6{height:40.890701pt;}
.h2a{height:40.960000pt;}
.h1b{height:41.616000pt;}
.hb{height:44.224000pt;}
.h14{height:46.512000pt;}
.h39{height:46.516267pt;}
.h1f{height:46.527467pt;}
.h18{height:46.528000pt;}
.h2b{height:46.542933pt;}
.h17{height:46.543467pt;}
.h2d{height:46.544000pt;}
.h19{height:46.544533pt;}
.h2c{height:46.545067pt;}
.h34{height:46.560533pt;}
.h27{height:46.561067pt;}
.h16{height:46.576000pt;}
.h31{height:46.576533pt;}
.h33{height:46.592000pt;}
.h38{height:46.606933pt;}
.h37{height:46.608533pt;}
.h26{height:46.614400pt;}
.h35{height:46.622933pt;}
.h30{height:46.623467pt;}
.h15{height:46.624000pt;}
.h2e{height:46.640000pt;}
.h36{height:46.704000pt;}
.h25{height:46.783467pt;}
.h2f{height:46.824533pt;}
.h3a{height:46.831467pt;}
.hf{height:46.875000pt;}
.h1e{height:46.995200pt;}
.hd{height:53.856007pt;}
.h8{height:56.425253pt;}
.he{height:71.372800pt;}
.hc{height:218.160891pt;}
.h0{height:1088.503987pt;}
.h1{height:1088.666667pt;}
.w0{width:823.937333pt;}
.w1{width:824.000000pt;}
.x0{left:0.000000pt;}
.x2{left:74.809733pt;}
.x1{left:76.269067pt;}
.x9{left:90.708000pt;}
.x10{left:91.898267pt;}
.xf{left:93.685067pt;}
.x12{left:97.136667pt;}
.xe{left:99.426533pt;}
.xa{left:102.046533pt;}
.x4{left:110.072133pt;}
.x7{left:297.735733pt;}
.x5{left:299.036667pt;}
.x18{left:310.208000pt;}
.x13{left:316.666667pt;}
.x14{left:329.946667pt;}
.x6{left:338.044533pt;}
.xd{left:403.770800pt;}
.x11{left:415.654133pt;}
.xb{left:419.967733pt;}
.xc{left:431.306533pt;}
.x8{left:496.146400pt;}
.x17{left:530.556667pt;}
.x16{left:536.176667pt;}
.x15{left:549.456667pt;}
.x3{left:596.163867pt;}
}




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