
    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_fc7beb0fd29abda172553e94.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_e8116d4661d0eac6b78188c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_57dc339fe7a4de9385ddd266.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_84c410e2ee832d894b187158.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;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_4d441b1ec090cfd94cf5da75.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_b111b836d230ceb14368d742.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_b88f09896e4ca915a9142ea1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.913086;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_764c5119f9e08bebfed30e55.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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_33273097c410ef829b54c171.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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_2de9a1cbe53142495df63707.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893066;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_65f90801953a960db03afbe4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.681641;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_63b90b276c427ce2d1ec9e70.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.705566;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_0e5e69dc2193b37268f1b4b7.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5fb4488c5acacade086f6017.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.208962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208962,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.209004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209004,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(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);}
.v1{vertical-align:-18.897600px;}
.v7{vertical-align:-14.393400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:28.800000px;}
.v4{vertical-align:30.000000px;}
.v5{vertical-align:32.976000px;}
.v2{vertical-align:38.352000px;}
.v6{vertical-align:40.080000px;}
.ls14{letter-spacing:-2.496000px;}
.ls1{letter-spacing:-2.400000px;}
.ls5{letter-spacing:-1.449000px;}
.ls1c{letter-spacing:-1.440000px;}
.ls17{letter-spacing:-1.071000px;}
.ls1f{letter-spacing:-1.056000px;}
.ls1b{letter-spacing:-0.960000px;}
.ls15{letter-spacing:-0.882000px;}
.ls18{letter-spacing:-0.756000px;}
.ls13{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.693000px;}
.ls12{letter-spacing:-0.630000px;}
.ls25{letter-spacing:-0.567000px;}
.ls34{letter-spacing:-0.561000px;}
.ls4{letter-spacing:-0.510000px;}
.ls24{letter-spacing:-0.504000px;}
.ls2d{letter-spacing:-0.459000px;}
.lsa{letter-spacing:-0.441000px;}
.ls2e{letter-spacing:-0.408000px;}
.ls26{letter-spacing:-0.384000px;}
.ls9{letter-spacing:-0.378000px;}
.ls2c{letter-spacing:-0.357000px;}
.lsd{letter-spacing:-0.315000px;}
.ls3{letter-spacing:-0.306000px;}
.ls2f{letter-spacing:-0.255000px;}
.ls27{letter-spacing:-0.252000px;}
.ls31{letter-spacing:-0.204000px;}
.lse{letter-spacing:-0.189000px;}
.ls30{letter-spacing:-0.153000px;}
.ls10{letter-spacing:-0.126000px;}
.ls2b{letter-spacing:-0.102000px;}
.ls23{letter-spacing:-0.096000px;}
.ls6{letter-spacing:-0.063000px;}
.ls33{letter-spacing:-0.051000px;}
.ls0{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.051000px;}
.lsf{letter-spacing:0.063000px;}
.ls2{letter-spacing:0.102000px;}
.ls7{letter-spacing:0.126000px;}
.ls29{letter-spacing:0.153000px;}
.ls11{letter-spacing:0.189000px;}
.lsb{letter-spacing:0.252000px;}
.ls8{letter-spacing:0.315000px;}
.lsc{letter-spacing:0.378000px;}
.ls21{letter-spacing:0.441000px;}
.ls32{letter-spacing:0.918000px;}
.ls20{letter-spacing:0.945000px;}
.ls22{letter-spacing:1.197000px;}
.ls28{letter-spacing:57.936000px;}
.ls1d{letter-spacing:62.880000px;}
.ls19{letter-spacing:66.288000px;}
.ls1a{letter-spacing:107.088000px;}
.ls1e{letter-spacing:143.952000px;}
.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;}
}
.ws1{word-spacing:-17.250000px;}
.ws14{word-spacing:-15.750000px;}
.ws2b{word-spacing:-12.750000px;}
.ws7b{word-spacing:-12.648000px;}
.ws47{word-spacing:-12.000000px;}
.ws2f{word-spacing:-11.280000px;}
.ws15{word-spacing:-11.025000px;}
.ws3f{word-spacing:-10.944000px;}
.ws6a{word-spacing:-8.400000px;}
.ws6c{word-spacing:-3.906000px;}
.ws17{word-spacing:-3.276000px;}
.ws7{word-spacing:-3.213000px;}
.ws69{word-spacing:-2.961000px;}
.ws16{word-spacing:-2.646000px;}
.wsc{word-spacing:-1.953000px;}
.ws57{word-spacing:-1.776000px;}
.wsf{word-spacing:-1.764000px;}
.ws1d{word-spacing:-1.386000px;}
.ws1e{word-spacing:-1.008000px;}
.ws18{word-spacing:-0.945000px;}
.ws7e{word-spacing:-0.918000px;}
.ws3b{word-spacing:-0.864000px;}
.ws67{word-spacing:-0.693000px;}
.ws4b{word-spacing:-0.441000px;}
.ws5e{word-spacing:-0.315000px;}
.ws4d{word-spacing:-0.252000px;}
.ws21{word-spacing:-0.189000px;}
.ws74{word-spacing:-0.153000px;}
.ws66{word-spacing:-0.126000px;}
.ws3{word-spacing:-0.102000px;}
.ws10{word-spacing:-0.063000px;}
.ws77{word-spacing:-0.051000px;}
.ws0{word-spacing:0.000000px;}
.ws7c{word-spacing:0.051000px;}
.wsa{word-spacing:0.063000px;}
.ws71{word-spacing:0.102000px;}
.ws1f{word-spacing:0.126000px;}
.ws78{word-spacing:0.153000px;}
.ws1a{word-spacing:0.189000px;}
.ws79{word-spacing:0.204000px;}
.ws68{word-spacing:0.252000px;}
.ws76{word-spacing:0.255000px;}
.ws4{word-spacing:0.306000px;}
.ws19{word-spacing:0.315000px;}
.ws72{word-spacing:0.357000px;}
.wsb{word-spacing:0.378000px;}
.ws75{word-spacing:0.408000px;}
.wse{word-spacing:0.441000px;}
.ws73{word-spacing:0.459000px;}
.ws4c{word-spacing:0.504000px;}
.ws6{word-spacing:0.510000px;}
.ws7d{word-spacing:0.561000px;}
.ws23{word-spacing:0.630000px;}
.ws2c{word-spacing:0.720000px;}
.ws70{word-spacing:0.819000px;}
.ws3c{word-spacing:0.960000px;}
.ws9{word-spacing:1.134000px;}
.ws8{word-spacing:1.449000px;}
.ws5d{word-spacing:1.638000px;}
.ws13{word-spacing:2.016000px;}
.ws5f{word-spacing:2.142000px;}
.ws1c{word-spacing:2.268000px;}
.ws5{word-spacing:2.499000px;}
.ws7a{word-spacing:2.601000px;}
.ws11{word-spacing:2.835000px;}
.ws1b{word-spacing:3.087000px;}
.ws6d{word-spacing:3.213000px;}
.ws6f{word-spacing:3.339000px;}
.ws22{word-spacing:3.780000px;}
.ws6e{word-spacing:4.158000px;}
.ws2{word-spacing:4.233000px;}
.ws20{word-spacing:5.229000px;}
.ws6b{word-spacing:5.544000px;}
.wsd{word-spacing:7.056000px;}
.ws12{word-spacing:7.119000px;}
.ws55{word-spacing:28.608000px;}
.ws4a{word-spacing:30.547200px;}
.ws42{word-spacing:30.864000px;}
.ws56{word-spacing:31.104000px;}
.ws34{word-spacing:33.696000px;}
.ws41{word-spacing:39.360000px;}
.ws49{word-spacing:39.600000px;}
.ws31{word-spacing:41.664000px;}
.ws3d{word-spacing:42.192000px;}
.ws54{word-spacing:42.240000px;}
.ws63{word-spacing:42.384000px;}
.ws36{word-spacing:42.768000px;}
.ws65{word-spacing:43.632000px;}
.ws33{word-spacing:45.984000px;}
.ws2d{word-spacing:50.160000px;}
.ws52{word-spacing:51.504000px;}
.ws60{word-spacing:55.392000px;}
.ws27{word-spacing:55.440000px;}
.ws45{word-spacing:61.680000px;}
.ws35{word-spacing:68.544000px;}
.ws37{word-spacing:69.456000px;}
.ws28{word-spacing:78.720000px;}
.ws2a{word-spacing:82.272000px;}
.ws2e{word-spacing:86.880000px;}
.ws3e{word-spacing:89.040000px;}
.ws53{word-spacing:91.920000px;}
.ws5c{word-spacing:93.120000px;}
.ws46{word-spacing:98.736000px;}
.ws30{word-spacing:100.320000px;}
.ws61{word-spacing:101.568000px;}
.ws40{word-spacing:106.032000px;}
.ws62{word-spacing:111.984000px;}
.ws5b{word-spacing:112.464000px;}
.ws48{word-spacing:124.368000px;}
.ws26{word-spacing:125.280000px;}
.ws5a{word-spacing:169.152000px;}
.ws38{word-spacing:182.496000px;}
.ws29{word-spacing:182.784000px;}
.ws59{word-spacing:186.144000px;}
.ws32{word-spacing:208.416000px;}
.ws24{word-spacing:226.608000px;}
.ws64{word-spacing:229.248000px;}
.ws25{word-spacing:231.984000px;}
.ws51{word-spacing:281.184000px;}
.ws50{word-spacing:305.184000px;}
.ws58{word-spacing:312.432000px;}
.ws4f{word-spacing:329.184000px;}
.ws4e{word-spacing:618.532800px;}
.ws3a{word-spacing:826.848000px;}
.ws44{word-spacing:850.032000px;}
.ws39{word-spacing:888.192000px;}
.ws43{word-spacing:1044.288000px;}
._3{margin-left:-8.400000px;}
._4{margin-left:-6.624000px;}
._b{margin-left:-5.249700px;}
._8{margin-left:-3.978900px;}
._2{margin-left:-2.160000px;}
._9{margin-left:-1.157700px;}
._5{width:1.872000px;}
._7{width:3.263400px;}
._6{width:4.284000px;}
._a{width:5.793600px;}
._c{width:6.832500px;}
._d{width:7.956600px;}
._3e{width:8.973600px;}
._56{width:47.328000px;}
._55{width:49.440000px;}
._37{width:50.640000px;}
._21{width:54.048000px;}
._41{width:55.920000px;}
._29{width:57.264000px;}
._54{width:59.184000px;}
._36{width:60.240000px;}
._52{width:61.488000px;}
._33{width:62.832000px;}
._26{width:65.376000px;}
._15{width:66.720000px;}
._42{width:68.016000px;}
._57{width:69.120000px;}
._1a{width:70.320000px;}
._40{width:71.424000px;}
._51{width:72.497700px;}
._58{width:74.544000px;}
._17{width:76.896000px;}
._32{width:78.768000px;}
._24{width:79.824000px;}
._27{width:81.936000px;}
._22{width:83.088000px;}
._6b{width:84.144000px;}
._25{width:85.440000px;}
._2a{width:86.592000px;}
._35{width:88.608000px;}
._12{width:90.000000px;}
._16{width:91.824000px;}
._34{width:94.464000px;}
._43{width:96.384000px;}
._53{width:97.680000px;}
._44{width:101.740800px;}
._23{width:103.104000px;}
._28{width:105.264000px;}
._69{width:107.088000px;}
._1b{width:114.048000px;}
._18{width:117.264000px;}
._5e{width:124.464000px;}
._11{width:128.832000px;}
._2e{width:131.664000px;}
._10{width:136.560000px;}
._19{width:139.440000px;}
._61{width:143.760000px;}
._60{width:148.464000px;}
._50{width:155.184000px;}
._66{width:157.776000px;}
._20{width:167.760000px;}
._70{width:174.624000px;}
._5c{width:181.248000px;}
._13{width:185.418900px;}
._3b{width:191.760000px;}
._1d{width:198.048000px;}
._14{width:199.344000px;}
._75{width:208.656000px;}
._6f{width:218.592000px;}
._1e{width:228.624000px;}
._67{width:238.608000px;}
._2f{width:243.648000px;}
._f{width:249.312000px;}
._5f{width:260.448000px;}
._30{width:275.664000px;}
._6d{width:283.968000px;}
._1c{width:297.072000px;}
._3c{width:303.744000px;}
._4a{width:310.224000px;}
._4d{width:315.120000px;}
._5d{width:316.416000px;}
._4b{width:323.424000px;}
._5a{width:327.072000px;}
._3d{width:335.760000px;}
._2d{width:346.272000px;}
._48{width:358.224000px;}
._5b{width:369.792000px;}
._63{width:374.928000px;}
._3a{width:406.368000px;}
._72{width:424.944000px;}
._4e{width:427.104000px;}
._6c{width:428.928000px;}
._76{width:432.576000px;}
._6a{width:438.768000px;}
._6e{width:440.112000px;}
._68{width:451.248000px;}
._74{width:456.672000px;}
._4f{width:459.120000px;}
._64{width:486.912000px;}
._38{width:506.448000px;}
._65{width:518.928000px;}
._4c{width:529.728000px;}
._73{width:541.920000px;}
._71{width:542.976000px;}
._49{width:551.520000px;}
._46{width:562.128000px;}
._62{width:589.536000px;}
._47{width:602.112000px;}
._3f{width:706.080000px;}
._31{width:719.040000px;}
._1f{width:721.296000px;}
._1{width:743.988000px;}
._e{width:831.857700px;}
._2b{width:845.088000px;}
._2c{width:904.128000px;}
._59{width:914.352000px;}
._39{width:978.960000px;}
._45{width:1029.600000px;}
._0{width:1332.450000px;}
.fc6{color:transparent;}
.fc5{color:rgb(90,87,88);}
.fc4{color:rgb(101,98,99);}
.fc3{color:rgb(237,28,36);}
.fc2{color:rgb(26,24,26);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:33.600000px;}
.fsa{font-size:34.200000px;}
.fsb{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:44.100000px;}
.fs7{font-size:45.000000px;}
.fse{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fsd{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs9{font-size:69.000000px;}
.fs0{font-size:72.000000px;}
.fsf{font-size:79.233000px;}
.fs10{font-size:82.834200px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y23{bottom:44.875200px;}
.y5{bottom:66.525004px;}
.y11e{bottom:78.416550px;}
.y72{bottom:80.774100px;}
.y81{bottom:80.787450px;}
.y49{bottom:80.788050px;}
.y276{bottom:82.077750px;}
.y221{bottom:82.494000px;}
.ya5{bottom:84.079500px;}
.y201{bottom:86.647950px;}
.y48{bottom:91.287450px;}
.y1ba{bottom:91.305150px;}
.y190{bottom:93.649200px;}
.yf2{bottom:94.380450px;}
.ycc{bottom:94.626900px;}
.y246{bottom:96.513900px;}
.y140{bottom:96.984600px;}
.y4{bottom:97.125005px;}
.y11d{bottom:98.431650px;}
.y275{bottom:99.774750px;}
.y71{bottom:101.548350px;}
.y80{bottom:101.561700px;}
.y47{bottom:101.787450px;}
.y220{bottom:102.748500px;}
.ya4{bottom:104.334000px;}
.y200{bottom:106.902450px;}
.y1b9{bottom:112.000650px;}
.y46{bottom:112.287450px;}
.y18f{bottom:114.344700px;}
.y245{bottom:114.516900px;}
.yf1{bottom:114.806400px;}
.ycb{bottom:114.881400px;}
.y169{bottom:115.544700px;}
.y11c{bottom:116.959650px;}
.y13f{bottom:117.239100px;}
.y274{bottom:117.471750px;}
.y70{bottom:122.322600px;}
.y7f{bottom:122.335800px;}
.y21f{bottom:123.003000px;}
.ya3{bottom:124.588500px;}
.y1ff{bottom:127.156950px;}
.y244{bottom:132.519900px;}
.y1b8{bottom:132.696150px;}
.yf0{bottom:134.186400px;}
.y18e{bottom:135.040200px;}
.yca{bottom:135.135900px;}
.y273{bottom:135.168750px;}
.y11b{bottom:135.487650px;}
.y168{bottom:136.473600px;}
.y13e{bottom:137.493600px;}
.y22{bottom:139.264499px;}
.y6f{bottom:143.096850px;}
.y7e{bottom:143.110050px;}
.y21e{bottom:143.257500px;}
.ya2{bottom:144.843000px;}
.y1fe{bottom:147.411450px;}
.y243{bottom:150.522900px;}
.y1c0{bottom:151.929900px;}
.y272{bottom:152.865750px;}
.y1b7{bottom:153.391650px;}
.yef{bottom:153.566400px;}
.y11a{bottom:154.015650px;}
.yc9{bottom:155.390400px;}
.y18d{bottom:155.735700px;}
.y45{bottom:156.101850px;}
.y167{bottom:156.693600px;}
.y2a0{bottom:157.710750px;}
.y13d{bottom:157.748100px;}
.y21d{bottom:163.512000px;}
.y6e{bottom:163.871100px;}
.y7d{bottom:163.884300px;}
.ya1{bottom:165.097500px;}
.y242{bottom:168.525900px;}
.y271{bottom:170.562750px;}
.y119{bottom:172.543650px;}
.yee{bottom:172.946400px;}
.y1b6{bottom:174.087150px;}
.yc8{bottom:175.644900px;}
.y29f{bottom:175.713750px;}
.y44{bottom:176.356350px;}
.y18c{bottom:176.431200px;}
.y1be{bottom:176.431500px;}
.y166{bottom:176.913600px;}
.y13c{bottom:178.002600px;}
.y1fd{bottom:180.417450px;}
.y21c{bottom:183.766500px;}
.y6d{bottom:184.645350px;}
.y7c{bottom:184.657950px;}
.ya0{bottom:185.352000px;}
.y241{bottom:186.528900px;}
.y270{bottom:188.259750px;}
.y118{bottom:191.071650px;}
.yed{bottom:192.326400px;}
.y29e{bottom:193.716750px;}
.y1b5{bottom:194.782650px;}
.yc7{bottom:195.899400px;}
.y43{bottom:196.610850px;}
.y19{bottom:196.933500px;}
.y18b{bottom:197.126700px;}
.y165{bottom:197.133600px;}
.y13b{bottom:198.257100px;}
.y21b{bottom:204.021000px;}
.y240{bottom:204.531900px;}
.y6c{bottom:205.419600px;}
.y7b{bottom:205.432200px;}
.y9f{bottom:205.606500px;}
.y26f{bottom:205.956750px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y117{bottom:209.599650px;}
.yec{bottom:211.706400px;}
.y29d{bottom:211.719750px;}
.y1b4{bottom:215.478150px;}
.yc6{bottom:216.153900px;}
.y42{bottom:216.865350px;}
.y164{bottom:217.353600px;}
.y18a{bottom:217.822200px;}
.y13a{bottom:218.511600px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y23f{bottom:222.534900px;}
.y26e{bottom:223.653750px;}
.y21a{bottom:224.275500px;}
.y9e{bottom:225.861000px;}
.y6b{bottom:226.193850px;}
.y7a{bottom:226.206450px;}
.y15e{bottom:227.361600px;}
.y116{bottom:228.127650px;}
.y1fc{bottom:229.496100px;}
.y29c{bottom:229.722750px;}
.yeb{bottom:231.086400px;}
.y15f{bottom:234.561600px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y1b3{bottom:236.173650px;}
.yc5{bottom:236.408400px;}
.y41{bottom:237.119850px;}
.y163{bottom:237.381600px;}
.y189{bottom:238.517700px;}
.y139{bottom:238.766100px;}
.y23e{bottom:240.537900px;}
.y26d{bottom:241.350750px;}
.y15c{bottom:241.761600px;}
.y219{bottom:244.530000px;}
.y9d{bottom:246.115500px;}
.y115{bottom:246.655650px;}
.y6a{bottom:246.968100px;}
.y79{bottom:246.980700px;}
.y29b{bottom:247.725750px;}
.y160{bottom:248.961600px;}
.y1fb{bottom:249.750600px;}
.yea{bottom:250.466400px;}
.y162{bottom:251.781600px;}
.y15d{bottom:256.161600px;}
.yc4{bottom:256.662900px;}
.y1b2{bottom:256.869150px;}
.y40{bottom:257.374350px;}
.y23d{bottom:258.540900px;}
.y138{bottom:259.020600px;}
.y26c{bottom:259.047750px;}
.y188{bottom:259.213200px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y218{bottom:264.784500px;}
.y114{bottom:265.183650px;}
.y29a{bottom:265.728750px;}
.y161{bottom:266.181600px;}
.y69{bottom:267.742350px;}
.y78{bottom:267.754950px;}
.ye9{bottom:269.846400px;}
.y1fa{bottom:269.982600px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y9c{bottom:274.869300px;}
.y23c{bottom:276.543900px;}
.y26b{bottom:276.744750px;}
.yc3{bottom:276.917400px;}
.y1b1{bottom:277.564650px;}
.y3f{bottom:277.628850px;}
.y137{bottom:279.275100px;}
.y187{bottom:279.908700px;}
.y299{bottom:283.731750px;}
.y217{bottom:285.039000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y15b{bottom:286.209600px;}
.y1bd{bottom:288.015000px;}
.y68{bottom:288.516600px;}
.y77{bottom:288.529200px;}
.y113{bottom:288.852450px;}
.ye8{bottom:289.226400px;}
.y1f9{bottom:290.237100px;}
.y26a{bottom:294.441750px;}
.y23b{bottom:294.546900px;}
.yc2{bottom:297.171900px;}
.y3e{bottom:297.883350px;}
.y1b0{bottom:298.260150px;}
.y1bf{bottom:299.332050px;}
.y136{bottom:299.529600px;}
.y186{bottom:300.604200px;}
.y298{bottom:301.734750px;}
.y15a{bottom:306.237600px;}
.y67{bottom:309.290850px;}
.y76{bottom:309.303450px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y1f8{bottom:310.491600px;}
.y269{bottom:312.138750px;}
.y23a{bottom:312.549900px;}
.ye7{bottom:313.320300px;}
.y9b{bottom:316.325250px;}
.yc1{bottom:317.426400px;}
.y216{bottom:318.045000px;}
.y1af{bottom:318.955650px;}
.y297{bottom:319.737750px;}
.y135{bottom:319.784100px;}
.y185{bottom:321.299700px;}
.y112{bottom:321.849450px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y268{bottom:329.835750px;}
.y75{bottom:330.077700px;}
.y239{bottom:330.552900px;}
.y1f7{bottom:330.746100px;}
.y159{bottom:330.756900px;}
.y3d{bottom:330.889200px;}
.y9a{bottom:336.579750px;}
.yc0{bottom:337.680900px;}
.y296{bottom:337.740750px;}
.y1ae{bottom:339.651150px;}
.y184{bottom:341.995200px;}
.y111{bottom:342.103950px;}
.y66{bottom:342.819750px;}
.y267{bottom:347.532750px;}
.y10{bottom:348.133500px;}
.y134{bottom:348.542550px;}
.y238{bottom:348.555900px;}
.ye6{bottom:350.564700px;}
.y74{bottom:350.851950px;}
.y1f6{bottom:351.000600px;}
.y295{bottom:355.743750px;}
.y99{bottom:356.834250px;}
.y1ad{bottom:360.346650px;}
.y110{bottom:362.358450px;}
.y183{bottom:362.690700px;}
.y215{bottom:364.885200px;}
.y266{bottom:365.229750px;}
.y237{bottom:366.558900px;}
.y158{bottom:367.974150px;}
.y133{bottom:368.788050px;}
.ye5{bottom:370.819200px;}
.y1f5{bottom:371.237100px;}
.y73{bottom:371.626200px;}
.y294{bottom:373.746750px;}
.y98{bottom:377.088750px;}
.ybf{bottom:378.180900px;}
.y1ac{bottom:381.042150px;}
.y265{bottom:382.926750px;}
.y182{bottom:383.386200px;}
.y236{bottom:384.561900px;}
.y214{bottom:385.139700px;}
.yf{bottom:386.785499px;}
.y157{bottom:388.228650px;}
.ye4{bottom:391.073700px;}
.y10f{bottom:391.116750px;}
.y1f4{bottom:391.491600px;}
.y293{bottom:391.749750px;}
.y65{bottom:392.400450px;}
.y97{bottom:397.343250px;}
.ybe{bottom:398.574900px;}
.y3c{bottom:400.195500px;}
.y264{bottom:400.623750px;}
.y1ab{bottom:401.737650px;}
.y235{bottom:402.564900px;}
.y181{bottom:404.081700px;}
.y213{bottom:405.394200px;}
.ye{bottom:408.044999px;}
.y156{bottom:408.483150px;}
.y292{bottom:409.752750px;}
.y132{bottom:410.270850px;}
.ye3{bottom:411.328200px;}
.y10e{bottom:411.362250px;}
.y1f3{bottom:411.746100px;}
.y64{bottom:413.174700px;}
.y3b{bottom:415.941750px;}
.y96{bottom:417.597750px;}
.ybd{bottom:417.954900px;}
.y263{bottom:418.320750px;}
.y234{bottom:420.567900px;}
.y1aa{bottom:422.433150px;}
.y180{bottom:424.777200px;}
.y212{bottom:425.648700px;}
.y291{bottom:427.755750px;}
.y155{bottom:428.737650px;}
.y131{bottom:430.525350px;}
.y3a{bottom:431.688000px;}
.y1f2{bottom:432.000600px;}
.y63{bottom:433.948950px;}
.y262{bottom:436.017750px;}
.y1bc{bottom:436.504500px;}
.ybc{bottom:437.334900px;}
.y95{bottom:437.852250px;}
.y233{bottom:438.570900px;}
.ye2{bottom:440.082150px;}
.y290{bottom:445.758750px;}
.y211{bottom:445.903200px;}
.y39{bottom:447.141000px;}
.y10d{bottom:448.593900px;}
.y154{bottom:448.992150px;}
.y130{bottom:450.779850px;}
.y1f1{bottom:452.255100px;}
.y261{bottom:453.714750px;}
.y62{bottom:454.723200px;}
.y232{bottom:456.573900px;}
.ybb{bottom:456.714900px;}
.y94{bottom:458.106750px;}
.y38{bottom:462.594000px;}
.y28f{bottom:463.761750px;}
.y17f{bottom:465.727200px;}
.y210{bottom:466.157700px;}
.y1a9{bottom:467.635050px;}
.y10c{bottom:468.549150px;}
.y153{bottom:469.246650px;}
.y12f{bottom:471.034350px;}
.y260{bottom:471.411750px;}
.y231{bottom:474.576900px;}
.y61{bottom:475.497450px;}
.yba{bottom:476.094900px;}
.y37{bottom:478.047000px;}
.y93{bottom:478.361250px;}
.ye1{bottom:481.591950px;}
.y28e{bottom:481.764750px;}
.y17e{bottom:486.140850px;}
.y20f{bottom:486.412200px;}
.y10b{bottom:488.504400px;}
.y1a8{bottom:488.579400px;}
.y25f{bottom:489.108750px;}
.y152{bottom:489.501150px;}
.y12e{bottom:491.288850px;}
.y1e7{bottom:492.470250px;}
.y230{bottom:492.579900px;}
.y36{bottom:493.500000px;}
.y1f0{bottom:494.954250px;}
.yb9{bottom:495.474900px;}
.y60{bottom:496.271700px;}
.y92{bottom:498.615750px;}
.y28d{bottom:499.767750px;}
.ye0{bottom:501.999900px;}
.yd{bottom:502.864502px;}
.y17d{bottom:505.520850px;}
.y20e{bottom:506.666700px;}
.y25e{bottom:506.805750px;}
.y10a{bottom:508.459650px;}
.y1a7{bottom:508.799400px;}
.y35{bottom:508.953000px;}
.y1e6{bottom:508.970250px;}
.y151{bottom:509.755650px;}
.y22f{bottom:510.582900px;}
.y1ef{bottom:511.454250px;}
.y12d{bottom:511.543350px;}
.yb8{bottom:514.854900px;}
.y5f{bottom:517.045950px;}
.y28c{bottom:517.770750px;}
.y91{bottom:518.870250px;}
.yc{bottom:520.864502px;}
.ydf{bottom:521.379900px;}
.y34{bottom:524.406000px;}
.y25d{bottom:524.502750px;}
.y17c{bottom:524.900850px;}
.y1e5{bottom:525.470250px;}
.y20d{bottom:526.921200px;}
.y109{bottom:528.414900px;}
.y22e{bottom:528.585900px;}
.y1a6{bottom:529.019400px;}
.y150{bottom:530.010150px;}
.y12c{bottom:531.797850px;}
.y1ee{bottom:533.330250px;}
.yb7{bottom:534.234900px;}
.y28b{bottom:535.773750px;}
.y5e{bottom:537.820200px;}
.yb{bottom:538.864499px;}
.y90{bottom:539.124750px;}
.y33{bottom:539.859000px;}
.yde{bottom:540.759900px;}
.y1e4{bottom:541.970250px;}
.y25c{bottom:542.199750px;}
.y17b{bottom:544.280850px;}
.y22d{bottom:546.588900px;}
.y20c{bottom:547.175700px;}
.y108{bottom:548.370150px;}
.y1a5{bottom:549.239400px;}
.y1ed{bottom:549.830250px;}
.y14f{bottom:550.264650px;}
.yb6{bottom:553.614900px;}
.y28a{bottom:553.776750px;}
.y32{bottom:555.312000px;}
.ya{bottom:556.864499px;}
.y1e3{bottom:558.470250px;}
.y5d{bottom:558.594450px;}
.y8f{bottom:559.379250px;}
.y25b{bottom:559.896750px;}
.ydd{bottom:560.139900px;}
.y17a{bottom:563.660850px;}
.y22c{bottom:564.591900px;}
.y1dc{bottom:566.688450px;}
.y20b{bottom:567.430200px;}
.y1ec{bottom:569.210250px;}
.y1a4{bottom:569.459400px;}
.y31{bottom:570.765000px;}
.y289{bottom:571.779750px;}
.y12b{bottom:572.297850px;}
.yb5{bottom:572.994900px;}
.y1db{bottom:574.944450px;}
.y1e2{bottom:574.970250px;}
.y25a{bottom:577.593750px;}
.y5c{bottom:579.368700px;}
.ydc{bottom:579.519900px;}
.y22b{bottom:582.594900px;}
.y179{bottom:583.040850px;}
.y1eb{bottom:585.710250px;}
.y30{bottom:586.218000px;}
.y107{bottom:586.320150px;}
.y20a{bottom:587.684700px;}
.y1a3{bottom:589.679400px;}
.y288{bottom:589.782750px;}
.y14e{bottom:590.764650px;}
.y1e1{bottom:591.470250px;}
.yb4{bottom:592.374900px;}
.y8e{bottom:592.385100px;}
.y12a{bottom:592.743900px;}
.y259{bottom:595.290750px;}
.ydb{bottom:598.899900px;}
.y5b{bottom:600.142950px;}
.y22a{bottom:600.597900px;}
.y2f{bottom:601.671000px;}
.y178{bottom:602.420850px;}
.y1ea{bottom:605.090250px;}
.y106{bottom:606.952050px;}
.y287{bottom:607.785750px;}
.y209{bottom:607.939200px;}
.y1e0{bottom:607.970250px;}
.y1a2{bottom:609.899400px;}
.y14d{bottom:610.774050px;}
.yb3{bottom:611.754900px;}
.y129{bottom:612.123900px;}
.y19e{bottom:612.707400px;}
.y258{bottom:612.987750px;}
.y2e{bottom:617.124000px;}
.yda{bottom:618.279900px;}
.y229{bottom:618.600900px;}
.y19f{bottom:619.907400px;}
.y5a{bottom:620.917200px;}
.y1e9{bottom:621.590250px;}
.y177{bottom:621.800850px;}
.y1df{bottom:624.470250px;}
.y286{bottom:625.788750px;}
.y105{bottom:626.908050px;}
.y19c{bottom:627.107400px;}
.y208{bottom:628.193700px;}
.y14c{bottom:629.302050px;}
.y1a1{bottom:629.927400px;}
.y257{bottom:630.684750px;}
.yb2{bottom:631.134900px;}
.y128{bottom:631.503900px;}
.y2d{bottom:632.577000px;}
.y123{bottom:634.395900px;}
.y228{bottom:636.603900px;}
.yd9{bottom:637.659900px;}
.y1de{bottom:640.970250px;}
.y176{bottom:641.180850px;}
.y8d{bottom:641.450400px;}
.y19d{bottom:641.507400px;}
.y59{bottom:641.691450px;}
.y124{bottom:642.639900px;}
.y285{bottom:643.791750px;}
.y1a0{bottom:644.327400px;}
.y104{bottom:645.436050px;}
.y9{bottom:645.510000px;}
.y100{bottom:647.104050px;}
.y14b{bottom:647.830050px;}
.y256{bottom:648.381750px;}
.y207{bottom:648.448200px;}
.yb1{bottom:650.514900px;}
.y121{bottom:650.895900px;}
.y127{bottom:652.227900px;}
.yfe{bottom:654.604050px;}
.y227{bottom:654.606900px;}
.yd8{bottom:657.039900px;}
.y1dd{bottom:657.432450px;}
.y1e8{bottom:657.470250px;}
.y125{bottom:659.139900px;}
.y175{bottom:660.560850px;}
.y8c{bottom:661.704900px;}
.y284{bottom:661.794750px;}
.yfd{bottom:662.104050px;}
.y58{bottom:662.465700px;}
.y103{bottom:663.772050px;}
.y19b{bottom:664.355400px;}
.y255{bottom:666.078750px;}
.y14a{bottom:666.358050px;}
.y8{bottom:666.771000px;}
.y122{bottom:667.395900px;}
.y206{bottom:668.702700px;}
.y126{bottom:668.727900px;}
.y101{bottom:669.604050px;}
.yb0{bottom:669.894900px;}
.y226{bottom:672.609900px;}
.y19a{bottom:674.363400px;}
.yd7{bottom:676.419900px;}
.y1da{bottom:676.824450px;}
.yff{bottom:677.104050px;}
.y102{bottom:678.772050px;}
.yd3{bottom:679.203900px;}
.y283{bottom:679.797750px;}
.y8b{bottom:681.959400px;}
.y2c{bottom:682.050300px;}
.y174{bottom:682.256850px;}
.y1d0{bottom:682.596450px;}
.y57{bottom:683.239950px;}
.y254{bottom:683.775750px;}
.y149{bottom:684.886050px;}
.yd1{bottom:686.403900px;}
.y205{bottom:688.957200px;}
.yaf{bottom:689.274900px;}
.y120{bottom:689.463900px;}
.y225{bottom:690.612900px;}
.y1d9{bottom:693.324450px;}
.yd0{bottom:693.603900px;}
.y2b{bottom:694.796550px;}
.yd6{bottom:695.991900px;}
.yfc{bottom:697.096050px;}
.y282{bottom:697.800750px;}
.y11f{bottom:699.063900px;}
.y1cf{bottom:699.096450px;}
.yd4{bottom:700.803900px;}
.y253{bottom:701.472750px;}
.y173{bottom:701.636850px;}
.y8a{bottom:702.213900px;}
.y148{bottom:703.414050px;}
.y56{bottom:704.014200px;}
.y2a{bottom:707.542800px;}
.yd2{bottom:708.003900px;}
.y224{bottom:708.615900px;}
.yae{bottom:708.654900px;}
.y199{bottom:708.898800px;}
.y204{bottom:709.211700px;}
.yd5{bottom:710.391900px;}
.y1d8{bottom:712.704450px;}
.yfb{bottom:715.432050px;}
.y1ce{bottom:715.596450px;}
.y281{bottom:715.803750px;}
.y252{bottom:719.169750px;}
.y172{bottom:721.016850px;}
.y147{bottom:721.942050px;}
.y89{bottom:722.468400px;}
.y55{bottom:724.788450px;}
.y1bb{bottom:725.497200px;}
.y7{bottom:726.298500px;}
.y223{bottom:726.618900px;}
.y29{bottom:726.670650px;}
.y1d7{bottom:729.204450px;}
.y203{bottom:729.466200px;}
.ycf{bottom:729.963900px;}
.y1cd{bottom:732.096450px;}
.yad{bottom:732.748800px;}
.y280{bottom:733.806750px;}
.y251{bottom:736.866750px;}
.yfa{bottom:739.100850px;}
.yce{bottom:739.563900px;}
.y171{bottom:740.396850px;}
.y146{bottom:740.470050px;}
.y88{bottom:742.722900px;}
.y54{bottom:745.562700px;}
.y198{bottom:746.192700px;}
.y1d6{bottom:748.584450px;}
.y1cc{bottom:748.596450px;}
.y202{bottom:749.720700px;}
.y222{bottom:750.996900px;}
.y27f{bottom:751.809750px;}
.y3{bottom:752.599495px;}
.y250{bottom:754.563750px;}
.y1c5{bottom:756.850800px;}
.y145{bottom:758.998050px;}
.y170{bottom:764.490750px;}
.y1d5{bottom:765.084450px;}
.y1cb{bottom:765.096450px;}
.y53{bottom:766.336950px;}
.y197{bottom:766.888200px;}
.y28{bottom:767.430600px;}
.y27e{bottom:769.812750px;}
.yac{bottom:769.975200px;}
.y87{bottom:771.476850px;}
.yf9{bottom:772.069950px;}
.y24f{bottom:772.260750px;}
.ycd{bottom:773.248950px;}
.y1c6{bottom:773.350800px;}
.y144{bottom:777.526050px;}
.y1ca{bottom:781.596450px;}
.y1d4{bottom:784.464450px;}
.y52{bottom:787.111200px;}
.y196{bottom:787.583700px;}
.y27d{bottom:787.815750px;}
.y24e{bottom:789.957750px;}
.yab{bottom:790.229700px;}
.yf8{bottom:792.025200px;}
.y143{bottom:796.054050px;}
.y1c9{bottom:798.096450px;}
.y27{bottom:798.930600px;}
.y1d3{bottom:800.964450px;}
.y16f{bottom:801.735150px;}
.y27c{bottom:805.818750px;}
.y24d{bottom:807.654750px;}
.y51{bottom:807.885450px;}
.y195{bottom:808.279200px;}
.y86{bottom:808.725750px;}
.yaa{bottom:810.484200px;}
.yf7{bottom:811.980450px;}
.y142{bottom:814.582050px;}
.y1c8{bottom:814.596450px;}
.y1d2{bottom:820.344450px;}
.y16e{bottom:821.989650px;}
.y27b{bottom:823.821750px;}
.y24c{bottom:825.351750px;}
.y50{bottom:828.659700px;}
.y194{bottom:828.974700px;}
.y85{bottom:828.980250px;}
.y26{bottom:830.430600px;}
.ya9{bottom:830.738700px;}
.y1c7{bottom:831.094800px;}
.yf6{bottom:831.935700px;}
.y1d1{bottom:836.844450px;}
.y141{bottom:838.250850px;}
.y27a{bottom:841.824750px;}
.y16d{bottom:842.244150px;}
.y24b{bottom:843.048750px;}
.y84{bottom:849.234750px;}
.y4f{bottom:849.433950px;}
.y193{bottom:849.670200px;}
.ya8{bottom:850.993200px;}
.yf5{bottom:851.890950px;}
.y1c4{bottom:856.222800px;}
.y279{bottom:859.827750px;}
.y24a{bottom:860.745750px;}
.y16c{bottom:862.498650px;}
.y4e{bottom:870.208200px;}
.y192{bottom:870.365700px;}
.ya7{bottom:871.247700px;}
.yf4{bottom:871.846200px;}
.y1c2{bottom:872.722800px;}
.y278{bottom:877.830750px;}
.y83{bottom:877.988700px;}
.y249{bottom:878.442750px;}
.y2{bottom:879.369000px;}
.y1c3{bottom:889.222800px;}
.y4d{bottom:890.982450px;}
.y191{bottom:891.061200px;}
.y16b{bottom:891.257100px;}
.ya6{bottom:891.502200px;}
.y25{bottom:891.692850px;}
.yf3{bottom:891.801450px;}
.y277{bottom:895.833750px;}
.y248{bottom:896.139750px;}
.y24{bottom:903.694350px;}
.y82{bottom:910.994700px;}
.y16a{bottom:911.502600px;}
.y4c{bottom:911.756700px;}
.y1c1{bottom:913.316850px;}
.y247{bottom:913.836750px;}
.y4a{bottom:933.675900px;}
.y4b{bottom:966.420450px;}
.y1{bottom:966.726000px;}
.h15{height:24.915234px;}
.h16{height:26.226562px;}
.h17{height:29.162109px;}
.h19{height:29.182617px;}
.hb{height:30.597656px;}
.hc{height:31.500000px;}
.h7{height:32.130000px;}
.h1e{height:32.531250px;}
.h29{height:33.328125px;}
.h2a{height:33.334725px;}
.h1f{height:33.351562px;}
.h2d{height:33.479325px;}
.hf{height:33.750000px;}
.h30{height:34.564453px;}
.h10{height:35.411133px;}
.h11{height:35.436035px;}
.h1d{height:37.520508px;}
.ha{height:41.660156px;}
.h18{height:41.689453px;}
.h14{height:43.743164px;}
.h1b{height:43.743764px;}
.h1a{height:43.745564px;}
.h13{height:43.773926px;}
.h2e{height:43.845926px;}
.h2f{height:43.863926px;}
.h1c{height:44.698242px;}
.he{height:44.730469px;}
.h6{height:45.900000px;}
.h12{height:46.763672px;}
.h3{height:48.195000px;}
.h26{height:52.809104px;}
.h2{height:55.080000px;}
.h28{height:55.209318px;}
.h21{height:61.331250px;}
.h22{height:62.531250px;}
.h23{height:65.507250px;}
.h2b{height:66.304125px;}
.h2c{height:66.327563px;}
.h20{height:70.883250px;}
.h24{height:72.611250px;}
.h5{height:78.030000px;}
.hd{height:83.320312px;}
.h4{height:119.055004px;}
.h27{height:244.168500px;}
.h25{height:265.552500px;}
.h8{height:1020.472500px;}
.h9{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:408.960000px;}
.w5{width:410.941500px;}
.w2{width:637.794021px;}
.w3{width:722.835000px;}
.w4{width:723.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4a{left:1.583400px;}
.x6{left:85.370100px;}
.xb{left:88.629900px;}
.x4b{left:90.473400px;}
.x4f{left:96.305400px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x50{left:116.789400px;}
.x4c{left:118.289400px;}
.x8{left:119.608950px;}
.x4d{left:128.273400px;}
.x28{left:132.162900px;}
.x9{left:136.069350px;}
.x3d{left:141.339600px;}
.x33{left:144.834750px;}
.x1c{left:146.421600px;}
.x3f{left:152.283600px;}
.xd{left:153.933450px;}
.x1e{left:156.825600px;}
.x34{left:159.798750px;}
.xf{left:162.765450px;}
.x49{left:166.576500px;}
.x51{left:191.909400px;}
.x4{left:203.484001px;}
.x2a{left:206.142900px;}
.x29{left:212.634900px;}
.x4e{left:219.833400px;}
.x41{left:221.547600px;}
.x1f{left:226.089600px;}
.x40{left:228.039600px;}
.x35{left:229.110750px;}
.x10{left:234.873450px;}
.x2c{left:259.050900px;}
.x2b{left:263.658900px;}
.x43{left:271.623600px;}
.x42{left:276.231600px;}
.x1b{left:279.014400px;}
.x26{left:281.252400px;}
.x20{left:282.645600px;}
.xc{left:284.049900px;}
.x12{left:290.169450px;}
.x11{left:294.681450px;}
.x52{left:311.247600px;}
.x1a{left:314.126400px;}
.x25{left:316.376400px;}
.xa{left:317.913900px;}
.x2d{left:324.546900px;}
.x44{left:338.259600px;}
.x21{left:343.725600px;}
.x36{left:346.878750px;}
.x13{left:350.205450px;}
.x2e{left:386.982900px;}
.x14{left:402.801450px;}
.x22{left:406.221600px;}
.x37{left:412.494750px;}
.x27{left:430.194900px;}
.x3e{left:434.991600px;}
.x1d{left:439.533600px;}
.x7{left:441.208500px;}
.x2f{left:444.522900px;}
.xe{left:447.609450px;}
.x30{left:452.142900px;}
.x3{left:454.959000px;}
.x15{left:459.285450px;}
.x16{left:466.725450px;}
.x45{left:468.747600px;}
.x46{left:472.083600px;}
.x38{left:473.406750px;}
.x31{left:512.070900px;}
.x47{left:515.175600px;}
.x32{left:517.278900px;}
.x23{left:519.477600px;}
.x18{left:522.177450px;}
.x48{left:523.443600px;}
.x24{left:526.689600px;}
.x17{left:528.849450px;}
.x19{left:530.049450px;}
.x3a{left:531.378750px;}
.x39{left:537.366750px;}
.x3b{left:560.994750px;}
.x3c{left:615.295200px;}
.x5{left:622.795200px;}
@media print{
.v1{vertical-align:-16.797867pt;}
.v7{vertical-align:-12.794133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:25.600000pt;}
.v4{vertical-align:26.666667pt;}
.v5{vertical-align:29.312000pt;}
.v2{vertical-align:34.090667pt;}
.v6{vertical-align:35.626667pt;}
.ls14{letter-spacing:-2.218667pt;}
.ls1{letter-spacing:-2.133333pt;}
.ls5{letter-spacing:-1.288000pt;}
.ls1c{letter-spacing:-1.280000pt;}
.ls17{letter-spacing:-0.952000pt;}
.ls1f{letter-spacing:-0.938667pt;}
.ls1b{letter-spacing:-0.853333pt;}
.ls15{letter-spacing:-0.784000pt;}
.ls18{letter-spacing:-0.672000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.616000pt;}
.ls12{letter-spacing:-0.560000pt;}
.ls25{letter-spacing:-0.504000pt;}
.ls34{letter-spacing:-0.498667pt;}
.ls4{letter-spacing:-0.453333pt;}
.ls24{letter-spacing:-0.448000pt;}
.ls2d{letter-spacing:-0.408000pt;}
.lsa{letter-spacing:-0.392000pt;}
.ls2e{letter-spacing:-0.362667pt;}
.ls26{letter-spacing:-0.341333pt;}
.ls9{letter-spacing:-0.336000pt;}
.ls2c{letter-spacing:-0.317333pt;}
.lsd{letter-spacing:-0.280000pt;}
.ls3{letter-spacing:-0.272000pt;}
.ls2f{letter-spacing:-0.226667pt;}
.ls27{letter-spacing:-0.224000pt;}
.ls31{letter-spacing:-0.181333pt;}
.lse{letter-spacing:-0.168000pt;}
.ls30{letter-spacing:-0.136000pt;}
.ls10{letter-spacing:-0.112000pt;}
.ls2b{letter-spacing:-0.090667pt;}
.ls23{letter-spacing:-0.085333pt;}
.ls6{letter-spacing:-0.056000pt;}
.ls33{letter-spacing:-0.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.045333pt;}
.lsf{letter-spacing:0.056000pt;}
.ls2{letter-spacing:0.090667pt;}
.ls7{letter-spacing:0.112000pt;}
.ls29{letter-spacing:0.136000pt;}
.ls11{letter-spacing:0.168000pt;}
.lsb{letter-spacing:0.224000pt;}
.ls8{letter-spacing:0.280000pt;}
.lsc{letter-spacing:0.336000pt;}
.ls21{letter-spacing:0.392000pt;}
.ls32{letter-spacing:0.816000pt;}
.ls20{letter-spacing:0.840000pt;}
.ls22{letter-spacing:1.064000pt;}
.ls28{letter-spacing:51.498667pt;}
.ls1d{letter-spacing:55.893333pt;}
.ls19{letter-spacing:58.922667pt;}
.ls1a{letter-spacing:95.189333pt;}
.ls1e{letter-spacing:127.957333pt;}
.ws1{word-spacing:-15.333333pt;}
.ws14{word-spacing:-14.000000pt;}
.ws2b{word-spacing:-11.333333pt;}
.ws7b{word-spacing:-11.242667pt;}
.ws47{word-spacing:-10.666667pt;}
.ws2f{word-spacing:-10.026667pt;}
.ws15{word-spacing:-9.800000pt;}
.ws3f{word-spacing:-9.728000pt;}
.ws6a{word-spacing:-7.466667pt;}
.ws6c{word-spacing:-3.472000pt;}
.ws17{word-spacing:-2.912000pt;}
.ws7{word-spacing:-2.856000pt;}
.ws69{word-spacing:-2.632000pt;}
.ws16{word-spacing:-2.352000pt;}
.wsc{word-spacing:-1.736000pt;}
.ws57{word-spacing:-1.578667pt;}
.wsf{word-spacing:-1.568000pt;}
.ws1d{word-spacing:-1.232000pt;}
.ws1e{word-spacing:-0.896000pt;}
.ws18{word-spacing:-0.840000pt;}
.ws7e{word-spacing:-0.816000pt;}
.ws3b{word-spacing:-0.768000pt;}
.ws67{word-spacing:-0.616000pt;}
.ws4b{word-spacing:-0.392000pt;}
.ws5e{word-spacing:-0.280000pt;}
.ws4d{word-spacing:-0.224000pt;}
.ws21{word-spacing:-0.168000pt;}
.ws74{word-spacing:-0.136000pt;}
.ws66{word-spacing:-0.112000pt;}
.ws3{word-spacing:-0.090667pt;}
.ws10{word-spacing:-0.056000pt;}
.ws77{word-spacing:-0.045333pt;}
.ws0{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.045333pt;}
.wsa{word-spacing:0.056000pt;}
.ws71{word-spacing:0.090667pt;}
.ws1f{word-spacing:0.112000pt;}
.ws78{word-spacing:0.136000pt;}
.ws1a{word-spacing:0.168000pt;}
.ws79{word-spacing:0.181333pt;}
.ws68{word-spacing:0.224000pt;}
.ws76{word-spacing:0.226667pt;}
.ws4{word-spacing:0.272000pt;}
.ws19{word-spacing:0.280000pt;}
.ws72{word-spacing:0.317333pt;}
.wsb{word-spacing:0.336000pt;}
.ws75{word-spacing:0.362667pt;}
.wse{word-spacing:0.392000pt;}
.ws73{word-spacing:0.408000pt;}
.ws4c{word-spacing:0.448000pt;}
.ws6{word-spacing:0.453333pt;}
.ws7d{word-spacing:0.498667pt;}
.ws23{word-spacing:0.560000pt;}
.ws2c{word-spacing:0.640000pt;}
.ws70{word-spacing:0.728000pt;}
.ws3c{word-spacing:0.853333pt;}
.ws9{word-spacing:1.008000pt;}
.ws8{word-spacing:1.288000pt;}
.ws5d{word-spacing:1.456000pt;}
.ws13{word-spacing:1.792000pt;}
.ws5f{word-spacing:1.904000pt;}
.ws1c{word-spacing:2.016000pt;}
.ws5{word-spacing:2.221333pt;}
.ws7a{word-spacing:2.312000pt;}
.ws11{word-spacing:2.520000pt;}
.ws1b{word-spacing:2.744000pt;}
.ws6d{word-spacing:2.856000pt;}
.ws6f{word-spacing:2.968000pt;}
.ws22{word-spacing:3.360000pt;}
.ws6e{word-spacing:3.696000pt;}
.ws2{word-spacing:3.762667pt;}
.ws20{word-spacing:4.648000pt;}
.ws6b{word-spacing:4.928000pt;}
.wsd{word-spacing:6.272000pt;}
.ws12{word-spacing:6.328000pt;}
.ws55{word-spacing:25.429333pt;}
.ws4a{word-spacing:27.153067pt;}
.ws42{word-spacing:27.434667pt;}
.ws56{word-spacing:27.648000pt;}
.ws34{word-spacing:29.952000pt;}
.ws41{word-spacing:34.986667pt;}
.ws49{word-spacing:35.200000pt;}
.ws31{word-spacing:37.034667pt;}
.ws3d{word-spacing:37.504000pt;}
.ws54{word-spacing:37.546667pt;}
.ws63{word-spacing:37.674667pt;}
.ws36{word-spacing:38.016000pt;}
.ws65{word-spacing:38.784000pt;}
.ws33{word-spacing:40.874667pt;}
.ws2d{word-spacing:44.586667pt;}
.ws52{word-spacing:45.781333pt;}
.ws60{word-spacing:49.237333pt;}
.ws27{word-spacing:49.280000pt;}
.ws45{word-spacing:54.826667pt;}
.ws35{word-spacing:60.928000pt;}
.ws37{word-spacing:61.738667pt;}
.ws28{word-spacing:69.973333pt;}
.ws2a{word-spacing:73.130667pt;}
.ws2e{word-spacing:77.226667pt;}
.ws3e{word-spacing:79.146667pt;}
.ws53{word-spacing:81.706667pt;}
.ws5c{word-spacing:82.773333pt;}
.ws46{word-spacing:87.765333pt;}
.ws30{word-spacing:89.173333pt;}
.ws61{word-spacing:90.282667pt;}
.ws40{word-spacing:94.250667pt;}
.ws62{word-spacing:99.541333pt;}
.ws5b{word-spacing:99.968000pt;}
.ws48{word-spacing:110.549333pt;}
.ws26{word-spacing:111.360000pt;}
.ws5a{word-spacing:150.357333pt;}
.ws38{word-spacing:162.218667pt;}
.ws29{word-spacing:162.474667pt;}
.ws59{word-spacing:165.461333pt;}
.ws32{word-spacing:185.258667pt;}
.ws24{word-spacing:201.429333pt;}
.ws64{word-spacing:203.776000pt;}
.ws25{word-spacing:206.208000pt;}
.ws51{word-spacing:249.941333pt;}
.ws50{word-spacing:271.274667pt;}
.ws58{word-spacing:277.717333pt;}
.ws4f{word-spacing:292.608000pt;}
.ws4e{word-spacing:549.806933pt;}
.ws3a{word-spacing:734.976000pt;}
.ws44{word-spacing:755.584000pt;}
.ws39{word-spacing:789.504000pt;}
.ws43{word-spacing:928.256000pt;}
._3{margin-left:-7.466667pt;}
._4{margin-left:-5.888000pt;}
._b{margin-left:-4.666400pt;}
._8{margin-left:-3.536800pt;}
._2{margin-left:-1.920000pt;}
._9{margin-left:-1.029067pt;}
._5{width:1.664000pt;}
._7{width:2.900800pt;}
._6{width:3.808000pt;}
._a{width:5.149867pt;}
._c{width:6.073333pt;}
._d{width:7.072533pt;}
._3e{width:7.976533pt;}
._56{width:42.069333pt;}
._55{width:43.946667pt;}
._37{width:45.013333pt;}
._21{width:48.042667pt;}
._41{width:49.706667pt;}
._29{width:50.901333pt;}
._54{width:52.608000pt;}
._36{width:53.546667pt;}
._52{width:54.656000pt;}
._33{width:55.850667pt;}
._26{width:58.112000pt;}
._15{width:59.306667pt;}
._42{width:60.458667pt;}
._57{width:61.440000pt;}
._1a{width:62.506667pt;}
._40{width:63.488000pt;}
._51{width:64.442400pt;}
._58{width:66.261333pt;}
._17{width:68.352000pt;}
._32{width:70.016000pt;}
._24{width:70.954667pt;}
._27{width:72.832000pt;}
._22{width:73.856000pt;}
._6b{width:74.794667pt;}
._25{width:75.946667pt;}
._2a{width:76.970667pt;}
._35{width:78.762667pt;}
._12{width:80.000000pt;}
._16{width:81.621333pt;}
._34{width:83.968000pt;}
._43{width:85.674667pt;}
._53{width:86.826667pt;}
._44{width:90.436267pt;}
._23{width:91.648000pt;}
._28{width:93.568000pt;}
._69{width:95.189333pt;}
._1b{width:101.376000pt;}
._18{width:104.234667pt;}
._5e{width:110.634667pt;}
._11{width:114.517333pt;}
._2e{width:117.034667pt;}
._10{width:121.386667pt;}
._19{width:123.946667pt;}
._61{width:127.786667pt;}
._60{width:131.968000pt;}
._50{width:137.941333pt;}
._66{width:140.245333pt;}
._20{width:149.120000pt;}
._70{width:155.221333pt;}
._5c{width:161.109333pt;}
._13{width:164.816800pt;}
._3b{width:170.453333pt;}
._1d{width:176.042667pt;}
._14{width:177.194667pt;}
._75{width:185.472000pt;}
._6f{width:194.304000pt;}
._1e{width:203.221333pt;}
._67{width:212.096000pt;}
._2f{width:216.576000pt;}
._f{width:221.610667pt;}
._5f{width:231.509333pt;}
._30{width:245.034667pt;}
._6d{width:252.416000pt;}
._1c{width:264.064000pt;}
._3c{width:269.994667pt;}
._4a{width:275.754667pt;}
._4d{width:280.106667pt;}
._5d{width:281.258667pt;}
._4b{width:287.488000pt;}
._5a{width:290.730667pt;}
._3d{width:298.453333pt;}
._2d{width:307.797333pt;}
._48{width:318.421333pt;}
._5b{width:328.704000pt;}
._63{width:333.269333pt;}
._3a{width:361.216000pt;}
._72{width:377.728000pt;}
._4e{width:379.648000pt;}
._6c{width:381.269333pt;}
._76{width:384.512000pt;}
._6a{width:390.016000pt;}
._6e{width:391.210667pt;}
._68{width:401.109333pt;}
._74{width:405.930667pt;}
._4f{width:408.106667pt;}
._64{width:432.810667pt;}
._38{width:450.176000pt;}
._65{width:461.269333pt;}
._4c{width:470.869333pt;}
._73{width:481.706667pt;}
._71{width:482.645333pt;}
._49{width:490.240000pt;}
._46{width:499.669333pt;}
._62{width:524.032000pt;}
._47{width:535.210667pt;}
._3f{width:627.626667pt;}
._31{width:639.146667pt;}
._1f{width:641.152000pt;}
._1{width:661.322667pt;}
._e{width:739.429067pt;}
._2b{width:751.189333pt;}
._2c{width:803.669333pt;}
._59{width:812.757333pt;}
._39{width:870.186667pt;}
._45{width:915.200000pt;}
._0{width:1184.400000pt;}
.fs11{font-size:29.866667pt;}
.fsa{font-size:30.400000pt;}
.fsb{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:39.200000pt;}
.fs7{font-size:40.000000pt;}
.fse{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fsd{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs9{font-size:61.333333pt;}
.fs0{font-size:64.000000pt;}
.fsf{font-size:70.429333pt;}
.fs10{font-size:73.630400pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y23{bottom:39.889067pt;}
.y5{bottom:59.133337pt;}
.y11e{bottom:69.703600pt;}
.y72{bottom:71.799200pt;}
.y81{bottom:71.811067pt;}
.y49{bottom:71.811600pt;}
.y276{bottom:72.958000pt;}
.y221{bottom:73.328000pt;}
.ya5{bottom:74.737333pt;}
.y201{bottom:77.020400pt;}
.y48{bottom:81.144400pt;}
.y1ba{bottom:81.160133pt;}
.y190{bottom:83.243733pt;}
.yf2{bottom:83.893733pt;}
.ycc{bottom:84.112800pt;}
.y246{bottom:85.790133pt;}
.y140{bottom:86.208533pt;}
.y4{bottom:86.333337pt;}
.y11d{bottom:87.494800pt;}
.y275{bottom:88.688667pt;}
.y71{bottom:90.265200pt;}
.y80{bottom:90.277067pt;}
.y47{bottom:90.477733pt;}
.y220{bottom:91.332000pt;}
.ya4{bottom:92.741333pt;}
.y200{bottom:95.024400pt;}
.y1b9{bottom:99.556133pt;}
.y46{bottom:99.811067pt;}
.y18f{bottom:101.639733pt;}
.y245{bottom:101.792800pt;}
.yf1{bottom:102.050133pt;}
.ycb{bottom:102.116800pt;}
.y169{bottom:102.706400pt;}
.y11c{bottom:103.964133pt;}
.y13f{bottom:104.212533pt;}
.y274{bottom:104.419333pt;}
.y70{bottom:108.731200pt;}
.y7f{bottom:108.742933pt;}
.y21f{bottom:109.336000pt;}
.ya3{bottom:110.745333pt;}
.y1ff{bottom:113.028400pt;}
.y244{bottom:117.795467pt;}
.y1b8{bottom:117.952133pt;}
.yf0{bottom:119.276800pt;}
.y18e{bottom:120.035733pt;}
.yca{bottom:120.120800pt;}
.y273{bottom:120.150000pt;}
.y11b{bottom:120.433467pt;}
.y168{bottom:121.309867pt;}
.y13e{bottom:122.216533pt;}
.y22{bottom:123.790666pt;}
.y6f{bottom:127.197200pt;}
.y7e{bottom:127.208933pt;}
.y21e{bottom:127.340000pt;}
.ya2{bottom:128.749333pt;}
.y1fe{bottom:131.032400pt;}
.y243{bottom:133.798133pt;}
.y1c0{bottom:135.048800pt;}
.y272{bottom:135.880667pt;}
.y1b7{bottom:136.348133pt;}
.yef{bottom:136.503467pt;}
.y11a{bottom:136.902800pt;}
.yc9{bottom:138.124800pt;}
.y18d{bottom:138.431733pt;}
.y45{bottom:138.757200pt;}
.y167{bottom:139.283200pt;}
.y2a0{bottom:140.187333pt;}
.y13d{bottom:140.220533pt;}
.y21d{bottom:145.344000pt;}
.y6e{bottom:145.663200pt;}
.y7d{bottom:145.674933pt;}
.ya1{bottom:146.753333pt;}
.y242{bottom:149.800800pt;}
.y271{bottom:151.611333pt;}
.y119{bottom:153.372133pt;}
.yee{bottom:153.730133pt;}
.y1b6{bottom:154.744133pt;}
.yc8{bottom:156.128800pt;}
.y29f{bottom:156.190000pt;}
.y44{bottom:156.761200pt;}
.y18c{bottom:156.827733pt;}
.y1be{bottom:156.828000pt;}
.y166{bottom:157.256533pt;}
.y13c{bottom:158.224533pt;}
.y1fd{bottom:160.371067pt;}
.y21c{bottom:163.348000pt;}
.y6d{bottom:164.129200pt;}
.y7c{bottom:164.140400pt;}
.ya0{bottom:164.757333pt;}
.y241{bottom:165.803467pt;}
.y270{bottom:167.342000pt;}
.y118{bottom:169.841467pt;}
.yed{bottom:170.956800pt;}
.y29e{bottom:172.192667pt;}
.y1b5{bottom:173.140133pt;}
.yc7{bottom:174.132800pt;}
.y43{bottom:174.765200pt;}
.y19{bottom:175.052000pt;}
.y18b{bottom:175.223733pt;}
.y165{bottom:175.229867pt;}
.y13b{bottom:176.228533pt;}
.y21b{bottom:181.352000pt;}
.y240{bottom:181.806133pt;}
.y6c{bottom:182.595200pt;}
.y7b{bottom:182.606400pt;}
.y9f{bottom:182.761333pt;}
.y26f{bottom:183.072667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y117{bottom:186.310800pt;}
.yec{bottom:188.183467pt;}
.y29d{bottom:188.195333pt;}
.y1b4{bottom:191.536133pt;}
.yc6{bottom:192.136800pt;}
.y42{bottom:192.769200pt;}
.y164{bottom:193.203200pt;}
.y18a{bottom:193.619733pt;}
.y13a{bottom:194.232533pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y23f{bottom:197.808800pt;}
.y26e{bottom:198.803333pt;}
.y21a{bottom:199.356000pt;}
.y9e{bottom:200.765333pt;}
.y6b{bottom:201.061200pt;}
.y7a{bottom:201.072400pt;}
.y15e{bottom:202.099200pt;}
.y116{bottom:202.780133pt;}
.y1fc{bottom:203.996533pt;}
.y29c{bottom:204.198000pt;}
.yeb{bottom:205.410133pt;}
.y15f{bottom:208.499200pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y1b3{bottom:209.932133pt;}
.yc5{bottom:210.140800pt;}
.y41{bottom:210.773200pt;}
.y163{bottom:211.005867pt;}
.y189{bottom:212.015733pt;}
.y139{bottom:212.236533pt;}
.y23e{bottom:213.811467pt;}
.y26d{bottom:214.534000pt;}
.y15c{bottom:214.899200pt;}
.y219{bottom:217.360000pt;}
.y9d{bottom:218.769333pt;}
.y115{bottom:219.249467pt;}
.y6a{bottom:219.527200pt;}
.y79{bottom:219.538400pt;}
.y29b{bottom:220.200667pt;}
.y160{bottom:221.299200pt;}
.y1fb{bottom:222.000533pt;}
.yea{bottom:222.636800pt;}
.y162{bottom:223.805867pt;}
.y15d{bottom:227.699200pt;}
.yc4{bottom:228.144800pt;}
.y1b2{bottom:228.328133pt;}
.y40{bottom:228.777200pt;}
.y23d{bottom:229.814133pt;}
.y138{bottom:230.240533pt;}
.y26c{bottom:230.264667pt;}
.y188{bottom:230.411733pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y218{bottom:235.364000pt;}
.y114{bottom:235.718800pt;}
.y29a{bottom:236.203333pt;}
.y161{bottom:236.605867pt;}
.y69{bottom:237.993200pt;}
.y78{bottom:238.004400pt;}
.ye9{bottom:239.863467pt;}
.y1fa{bottom:239.984533pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y9c{bottom:244.328267pt;}
.y23c{bottom:245.816800pt;}
.y26b{bottom:245.995333pt;}
.yc3{bottom:246.148800pt;}
.y1b1{bottom:246.724133pt;}
.y3f{bottom:246.781200pt;}
.y137{bottom:248.244533pt;}
.y187{bottom:248.807733pt;}
.y299{bottom:252.206000pt;}
.y217{bottom:253.368000pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y15b{bottom:254.408533pt;}
.y1bd{bottom:256.013333pt;}
.y68{bottom:256.459200pt;}
.y77{bottom:256.470400pt;}
.y113{bottom:256.757733pt;}
.ye8{bottom:257.090133pt;}
.y1f9{bottom:257.988533pt;}
.y26a{bottom:261.726000pt;}
.y23b{bottom:261.819467pt;}
.yc2{bottom:264.152800pt;}
.y3e{bottom:264.785200pt;}
.y1b0{bottom:265.120133pt;}
.y1bf{bottom:266.072933pt;}
.y136{bottom:266.248533pt;}
.y186{bottom:267.203733pt;}
.y298{bottom:268.208667pt;}
.y15a{bottom:272.211200pt;}
.y67{bottom:274.925200pt;}
.y76{bottom:274.936400pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y1f8{bottom:275.992533pt;}
.y269{bottom:277.456667pt;}
.y23a{bottom:277.822133pt;}
.ye7{bottom:278.506933pt;}
.y9b{bottom:281.178000pt;}
.yc1{bottom:282.156800pt;}
.y216{bottom:282.706667pt;}
.y1af{bottom:283.516133pt;}
.y297{bottom:284.211333pt;}
.y135{bottom:284.252533pt;}
.y185{bottom:285.599733pt;}
.y112{bottom:286.088400pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y268{bottom:293.187333pt;}
.y75{bottom:293.402400pt;}
.y239{bottom:293.824800pt;}
.y1f7{bottom:293.996533pt;}
.y159{bottom:294.006133pt;}
.y3d{bottom:294.123733pt;}
.y9a{bottom:299.182000pt;}
.yc0{bottom:300.160800pt;}
.y296{bottom:300.214000pt;}
.y1ae{bottom:301.912133pt;}
.y184{bottom:303.995733pt;}
.y111{bottom:304.092400pt;}
.y66{bottom:304.728667pt;}
.y267{bottom:308.918000pt;}
.y10{bottom:309.452000pt;}
.y134{bottom:309.815600pt;}
.y238{bottom:309.827467pt;}
.ye6{bottom:311.613067pt;}
.y74{bottom:311.868400pt;}
.y1f6{bottom:312.000533pt;}
.y295{bottom:316.216667pt;}
.y99{bottom:317.186000pt;}
.y1ad{bottom:320.308133pt;}
.y110{bottom:322.096400pt;}
.y183{bottom:322.391733pt;}
.y215{bottom:324.342400pt;}
.y266{bottom:324.648667pt;}
.y237{bottom:325.830133pt;}
.y158{bottom:327.088133pt;}
.y133{bottom:327.811600pt;}
.ye5{bottom:329.617067pt;}
.y1f5{bottom:329.988533pt;}
.y73{bottom:330.334400pt;}
.y294{bottom:332.219333pt;}
.y98{bottom:335.190000pt;}
.ybf{bottom:336.160800pt;}
.y1ac{bottom:338.704133pt;}
.y265{bottom:340.379333pt;}
.y182{bottom:340.787733pt;}
.y236{bottom:341.832800pt;}
.y214{bottom:342.346400pt;}
.yf{bottom:343.809333pt;}
.y157{bottom:345.092133pt;}
.ye4{bottom:347.621067pt;}
.y10f{bottom:347.659333pt;}
.y1f4{bottom:347.992533pt;}
.y293{bottom:348.222000pt;}
.y65{bottom:348.800400pt;}
.y97{bottom:353.194000pt;}
.ybe{bottom:354.288800pt;}
.y3c{bottom:355.729333pt;}
.y264{bottom:356.110000pt;}
.y1ab{bottom:357.100133pt;}
.y235{bottom:357.835467pt;}
.y181{bottom:359.183733pt;}
.y213{bottom:360.350400pt;}
.ye{bottom:362.706666pt;}
.y156{bottom:363.096133pt;}
.y292{bottom:364.224667pt;}
.y132{bottom:364.685200pt;}
.ye3{bottom:365.625067pt;}
.y10e{bottom:365.655333pt;}
.y1f3{bottom:365.996533pt;}
.y64{bottom:367.266400pt;}
.y3b{bottom:369.726000pt;}
.y96{bottom:371.198000pt;}
.ybd{bottom:371.515467pt;}
.y263{bottom:371.840667pt;}
.y234{bottom:373.838133pt;}
.y1aa{bottom:375.496133pt;}
.y180{bottom:377.579733pt;}
.y212{bottom:378.354400pt;}
.y291{bottom:380.227333pt;}
.y155{bottom:381.100133pt;}
.y131{bottom:382.689200pt;}
.y3a{bottom:383.722667pt;}
.y1f2{bottom:384.000533pt;}
.y63{bottom:385.732400pt;}
.y262{bottom:387.571333pt;}
.y1bc{bottom:388.004000pt;}
.ybc{bottom:388.742133pt;}
.y95{bottom:389.202000pt;}
.y233{bottom:389.840800pt;}
.ye2{bottom:391.184133pt;}
.y290{bottom:396.230000pt;}
.y211{bottom:396.358400pt;}
.y39{bottom:397.458667pt;}
.y10d{bottom:398.750133pt;}
.y154{bottom:399.104133pt;}
.y130{bottom:400.693200pt;}
.y1f1{bottom:402.004533pt;}
.y261{bottom:403.302000pt;}
.y62{bottom:404.198400pt;}
.y232{bottom:405.843467pt;}
.ybb{bottom:405.968800pt;}
.y94{bottom:407.206000pt;}
.y38{bottom:411.194667pt;}
.y28f{bottom:412.232667pt;}
.y17f{bottom:413.979733pt;}
.y210{bottom:414.362400pt;}
.y1a9{bottom:415.675600pt;}
.y10c{bottom:416.488133pt;}
.y153{bottom:417.108133pt;}
.y12f{bottom:418.697200pt;}
.y260{bottom:419.032667pt;}
.y231{bottom:421.846133pt;}
.y61{bottom:422.664400pt;}
.yba{bottom:423.195467pt;}
.y37{bottom:424.930667pt;}
.y93{bottom:425.210000pt;}
.ye1{bottom:428.081733pt;}
.y28e{bottom:428.235333pt;}
.y17e{bottom:432.125200pt;}
.y20f{bottom:432.366400pt;}
.y10b{bottom:434.226133pt;}
.y1a8{bottom:434.292800pt;}
.y25f{bottom:434.763333pt;}
.y152{bottom:435.112133pt;}
.y12e{bottom:436.701200pt;}
.y1e7{bottom:437.751333pt;}
.y230{bottom:437.848800pt;}
.y36{bottom:438.666667pt;}
.y1f0{bottom:439.959333pt;}
.yb9{bottom:440.422133pt;}
.y60{bottom:441.130400pt;}
.y92{bottom:443.214000pt;}
.y28d{bottom:444.238000pt;}
.ye0{bottom:446.222133pt;}
.yd{bottom:446.990669pt;}
.y17d{bottom:449.351867pt;}
.y20e{bottom:450.370400pt;}
.y25e{bottom:450.494000pt;}
.y10a{bottom:451.964133pt;}
.y1a7{bottom:452.266133pt;}
.y35{bottom:452.402667pt;}
.y1e6{bottom:452.418000pt;}
.y151{bottom:453.116133pt;}
.y22f{bottom:453.851467pt;}
.y1ef{bottom:454.626000pt;}
.y12d{bottom:454.705200pt;}
.yb8{bottom:457.648800pt;}
.y5f{bottom:459.596400pt;}
.y28c{bottom:460.240667pt;}
.y91{bottom:461.218000pt;}
.yc{bottom:462.990669pt;}
.ydf{bottom:463.448800pt;}
.y34{bottom:466.138667pt;}
.y25d{bottom:466.224667pt;}
.y17c{bottom:466.578533pt;}
.y1e5{bottom:467.084667pt;}
.y20d{bottom:468.374400pt;}
.y109{bottom:469.702133pt;}
.y22e{bottom:469.854133pt;}
.y1a6{bottom:470.239467pt;}
.y150{bottom:471.120133pt;}
.y12c{bottom:472.709200pt;}
.y1ee{bottom:474.071333pt;}
.yb7{bottom:474.875467pt;}
.y28b{bottom:476.243333pt;}
.y5e{bottom:478.062400pt;}
.yb{bottom:478.990666pt;}
.y90{bottom:479.222000pt;}
.y33{bottom:479.874667pt;}
.yde{bottom:480.675467pt;}
.y1e4{bottom:481.751333pt;}
.y25c{bottom:481.955333pt;}
.y17b{bottom:483.805200pt;}
.y22d{bottom:485.856800pt;}
.y20c{bottom:486.378400pt;}
.y108{bottom:487.440133pt;}
.y1a5{bottom:488.212800pt;}
.y1ed{bottom:488.738000pt;}
.y14f{bottom:489.124133pt;}
.yb6{bottom:492.102133pt;}
.y28a{bottom:492.246000pt;}
.y32{bottom:493.610667pt;}
.ya{bottom:494.990666pt;}
.y1e3{bottom:496.418000pt;}
.y5d{bottom:496.528400pt;}
.y8f{bottom:497.226000pt;}
.y25b{bottom:497.686000pt;}
.ydd{bottom:497.902133pt;}
.y17a{bottom:501.031867pt;}
.y22c{bottom:501.859467pt;}
.y1dc{bottom:503.723067pt;}
.y20b{bottom:504.382400pt;}
.y1ec{bottom:505.964667pt;}
.y1a4{bottom:506.186133pt;}
.y31{bottom:507.346667pt;}
.y289{bottom:508.248667pt;}
.y12b{bottom:508.709200pt;}
.yb5{bottom:509.328800pt;}
.y1db{bottom:511.061733pt;}
.y1e2{bottom:511.084667pt;}
.y25a{bottom:513.416667pt;}
.y5c{bottom:514.994400pt;}
.ydc{bottom:515.128800pt;}
.y22b{bottom:517.862133pt;}
.y179{bottom:518.258533pt;}
.y1eb{bottom:520.631333pt;}
.y30{bottom:521.082667pt;}
.y107{bottom:521.173467pt;}
.y20a{bottom:522.386400pt;}
.y1a3{bottom:524.159467pt;}
.y288{bottom:524.251333pt;}
.y14e{bottom:525.124133pt;}
.y1e1{bottom:525.751333pt;}
.yb4{bottom:526.555467pt;}
.y8e{bottom:526.564533pt;}
.y12a{bottom:526.883467pt;}
.y259{bottom:529.147333pt;}
.ydb{bottom:532.355467pt;}
.y5b{bottom:533.460400pt;}
.y22a{bottom:533.864800pt;}
.y2f{bottom:534.818667pt;}
.y178{bottom:535.485200pt;}
.y1ea{bottom:537.858000pt;}
.y106{bottom:539.512933pt;}
.y287{bottom:540.254000pt;}
.y209{bottom:540.390400pt;}
.y1e0{bottom:540.418000pt;}
.y1a2{bottom:542.132800pt;}
.y14d{bottom:542.910267pt;}
.yb3{bottom:543.782133pt;}
.y129{bottom:544.110133pt;}
.y19e{bottom:544.628800pt;}
.y258{bottom:544.878000pt;}
.y2e{bottom:548.554667pt;}
.yda{bottom:549.582133pt;}
.y229{bottom:549.867467pt;}
.y19f{bottom:551.028800pt;}
.y5a{bottom:551.926400pt;}
.y1e9{bottom:552.524667pt;}
.y177{bottom:552.711867pt;}
.y1df{bottom:555.084667pt;}
.y286{bottom:556.256667pt;}
.y105{bottom:557.251600pt;}
.y19c{bottom:557.428800pt;}
.y208{bottom:558.394400pt;}
.y14c{bottom:559.379600pt;}
.y1a1{bottom:559.935467pt;}
.y257{bottom:560.608667pt;}
.yb2{bottom:561.008800pt;}
.y128{bottom:561.336800pt;}
.y2d{bottom:562.290667pt;}
.y123{bottom:563.907467pt;}
.y228{bottom:565.870133pt;}
.yd9{bottom:566.808800pt;}
.y1de{bottom:569.751333pt;}
.y176{bottom:569.938533pt;}
.y8d{bottom:570.178133pt;}
.y19d{bottom:570.228800pt;}
.y59{bottom:570.392400pt;}
.y124{bottom:571.235467pt;}
.y285{bottom:572.259333pt;}
.y1a0{bottom:572.735467pt;}
.y104{bottom:573.720933pt;}
.y9{bottom:573.786667pt;}
.y100{bottom:575.203600pt;}
.y14b{bottom:575.848933pt;}
.y256{bottom:576.339333pt;}
.y207{bottom:576.398400pt;}
.yb1{bottom:578.235467pt;}
.y121{bottom:578.574133pt;}
.y127{bottom:579.758133pt;}
.yfe{bottom:581.870267pt;}
.y227{bottom:581.872800pt;}
.yd8{bottom:584.035467pt;}
.y1dd{bottom:584.384400pt;}
.y1e8{bottom:584.418000pt;}
.y125{bottom:585.902133pt;}
.y175{bottom:587.165200pt;}
.y8c{bottom:588.182133pt;}
.y284{bottom:588.262000pt;}
.yfd{bottom:588.536933pt;}
.y58{bottom:588.858400pt;}
.y103{bottom:590.019600pt;}
.y19b{bottom:590.538133pt;}
.y255{bottom:592.070000pt;}
.y14a{bottom:592.318267pt;}
.y8{bottom:592.685334pt;}
.y122{bottom:593.240800pt;}
.y206{bottom:594.402400pt;}
.y126{bottom:594.424800pt;}
.y101{bottom:595.203600pt;}
.yb0{bottom:595.462133pt;}
.y226{bottom:597.875467pt;}
.y19a{bottom:599.434133pt;}
.yd7{bottom:601.262133pt;}
.y1da{bottom:601.621733pt;}
.yff{bottom:601.870267pt;}
.y102{bottom:603.352933pt;}
.yd3{bottom:603.736800pt;}
.y283{bottom:604.264667pt;}
.y8b{bottom:606.186133pt;}
.y2c{bottom:606.266933pt;}
.y174{bottom:606.450533pt;}
.y1d0{bottom:606.752400pt;}
.y57{bottom:607.324400pt;}
.y254{bottom:607.800667pt;}
.y149{bottom:608.787600pt;}
.yd1{bottom:610.136800pt;}
.y205{bottom:612.406400pt;}
.yaf{bottom:612.688800pt;}
.y120{bottom:612.856800pt;}
.y225{bottom:613.878133pt;}
.y1d9{bottom:616.288400pt;}
.yd0{bottom:616.536800pt;}
.y2b{bottom:617.596933pt;}
.yd6{bottom:618.659467pt;}
.yfc{bottom:619.640933pt;}
.y282{bottom:620.267333pt;}
.y11f{bottom:621.390133pt;}
.y1cf{bottom:621.419067pt;}
.yd4{bottom:622.936800pt;}
.y253{bottom:623.531333pt;}
.y173{bottom:623.677200pt;}
.y8a{bottom:624.190133pt;}
.y148{bottom:625.256933pt;}
.y56{bottom:625.790400pt;}
.y2a{bottom:628.926933pt;}
.yd2{bottom:629.336800pt;}
.y224{bottom:629.880800pt;}
.yae{bottom:629.915467pt;}
.y199{bottom:630.132267pt;}
.y204{bottom:630.410400pt;}
.yd5{bottom:631.459467pt;}
.y1d8{bottom:633.515067pt;}
.yfb{bottom:635.939600pt;}
.y1ce{bottom:636.085733pt;}
.y281{bottom:636.270000pt;}
.y252{bottom:639.262000pt;}
.y172{bottom:640.903867pt;}
.y147{bottom:641.726267pt;}
.y89{bottom:642.194133pt;}
.y55{bottom:644.256400pt;}
.y1bb{bottom:644.886400pt;}
.y7{bottom:645.598667pt;}
.y223{bottom:645.883467pt;}
.y29{bottom:645.929467pt;}
.y1d7{bottom:648.181733pt;}
.y203{bottom:648.414400pt;}
.ycf{bottom:648.856800pt;}
.y1cd{bottom:650.752400pt;}
.yad{bottom:651.332267pt;}
.y280{bottom:652.272667pt;}
.y251{bottom:654.992667pt;}
.yfa{bottom:656.978533pt;}
.yce{bottom:657.390133pt;}
.y171{bottom:658.130533pt;}
.y146{bottom:658.195600pt;}
.y88{bottom:660.198133pt;}
.y54{bottom:662.722400pt;}
.y198{bottom:663.282400pt;}
.y1d6{bottom:665.408400pt;}
.y1cc{bottom:665.419067pt;}
.y202{bottom:666.418400pt;}
.y222{bottom:667.552800pt;}
.y27f{bottom:668.275333pt;}
.y3{bottom:668.977329pt;}
.y250{bottom:670.723333pt;}
.y1c5{bottom:672.756267pt;}
.y145{bottom:674.664933pt;}
.y170{bottom:679.547333pt;}
.y1d5{bottom:680.075067pt;}
.y1cb{bottom:680.085733pt;}
.y53{bottom:681.188400pt;}
.y197{bottom:681.678400pt;}
.y28{bottom:682.160533pt;}
.y27e{bottom:684.278000pt;}
.yac{bottom:684.422400pt;}
.y87{bottom:685.757200pt;}
.yf9{bottom:686.284400pt;}
.y24f{bottom:686.454000pt;}
.ycd{bottom:687.332400pt;}
.y1c6{bottom:687.422933pt;}
.y144{bottom:691.134267pt;}
.y1ca{bottom:694.752400pt;}
.y1d4{bottom:697.301733pt;}
.y52{bottom:699.654400pt;}
.y196{bottom:700.074400pt;}
.y27d{bottom:700.280667pt;}
.y24e{bottom:702.184667pt;}
.yab{bottom:702.426400pt;}
.yf8{bottom:704.022400pt;}
.y143{bottom:707.603600pt;}
.y1c9{bottom:709.419067pt;}
.y27{bottom:710.160533pt;}
.y1d3{bottom:711.968400pt;}
.y16f{bottom:712.653467pt;}
.y27c{bottom:716.283333pt;}
.y24d{bottom:717.915333pt;}
.y51{bottom:718.120400pt;}
.y195{bottom:718.470400pt;}
.y86{bottom:718.867333pt;}
.yaa{bottom:720.430400pt;}
.yf7{bottom:721.760400pt;}
.y142{bottom:724.072933pt;}
.y1c8{bottom:724.085733pt;}
.y1d2{bottom:729.195067pt;}
.y16e{bottom:730.657467pt;}
.y27b{bottom:732.286000pt;}
.y24c{bottom:733.646000pt;}
.y50{bottom:736.586400pt;}
.y194{bottom:736.866400pt;}
.y85{bottom:736.871333pt;}
.y26{bottom:738.160533pt;}
.ya9{bottom:738.434400pt;}
.y1c7{bottom:738.750933pt;}
.yf6{bottom:739.498400pt;}
.y1d1{bottom:743.861733pt;}
.y141{bottom:745.111867pt;}
.y27a{bottom:748.288667pt;}
.y16d{bottom:748.661467pt;}
.y24b{bottom:749.376667pt;}
.y84{bottom:754.875333pt;}
.y4f{bottom:755.052400pt;}
.y193{bottom:755.262400pt;}
.ya8{bottom:756.438400pt;}
.yf5{bottom:757.236400pt;}
.y1c4{bottom:761.086933pt;}
.y279{bottom:764.291333pt;}
.y24a{bottom:765.107333pt;}
.y16c{bottom:766.665467pt;}
.y4e{bottom:773.518400pt;}
.y192{bottom:773.658400pt;}
.ya7{bottom:774.442400pt;}
.yf4{bottom:774.974400pt;}
.y1c2{bottom:775.753600pt;}
.y278{bottom:780.294000pt;}
.y83{bottom:780.434400pt;}
.y249{bottom:780.838000pt;}
.y2{bottom:781.661334pt;}
.y1c3{bottom:790.420267pt;}
.y4d{bottom:791.984400pt;}
.y191{bottom:792.054400pt;}
.y16b{bottom:792.228533pt;}
.ya6{bottom:792.446400pt;}
.y25{bottom:792.615867pt;}
.yf3{bottom:792.712400pt;}
.y277{bottom:796.296667pt;}
.y248{bottom:796.568667pt;}
.y24{bottom:803.283867pt;}
.y82{bottom:809.773067pt;}
.y16a{bottom:810.224533pt;}
.y4c{bottom:810.450400pt;}
.y1c1{bottom:811.837200pt;}
.y247{bottom:812.299333pt;}
.y4a{bottom:829.934133pt;}
.y4b{bottom:859.040400pt;}
.y1{bottom:859.312000pt;}
.h15{height:22.146875pt;}
.h16{height:23.312500pt;}
.h17{height:25.921875pt;}
.h19{height:25.940104pt;}
.hb{height:27.197917pt;}
.hc{height:28.000000pt;}
.h7{height:28.560000pt;}
.h1e{height:28.916667pt;}
.h29{height:29.625000pt;}
.h2a{height:29.630867pt;}
.h1f{height:29.645833pt;}
.h2d{height:29.759400pt;}
.hf{height:30.000000pt;}
.h30{height:30.723958pt;}
.h10{height:31.476562pt;}
.h11{height:31.498698pt;}
.h1d{height:33.351562pt;}
.ha{height:37.031250pt;}
.h18{height:37.057292pt;}
.h14{height:38.882812pt;}
.h1b{height:38.883346pt;}
.h1a{height:38.884946pt;}
.h13{height:38.910156pt;}
.h2e{height:38.974156pt;}
.h2f{height:38.990156pt;}
.h1c{height:39.731771pt;}
.he{height:39.760417pt;}
.h6{height:40.800000pt;}
.h12{height:41.567708pt;}
.h3{height:42.840000pt;}
.h26{height:46.941426pt;}
.h2{height:48.960000pt;}
.h28{height:49.074949pt;}
.h21{height:54.516667pt;}
.h22{height:55.583333pt;}
.h23{height:58.228667pt;}
.h2b{height:58.937000pt;}
.h2c{height:58.957833pt;}
.h20{height:63.007333pt;}
.h24{height:64.543333pt;}
.h5{height:69.360000pt;}
.hd{height:74.062500pt;}
.h4{height:105.826671pt;}
.h27{height:217.038667pt;}
.h25{height:236.046667pt;}
.h8{height:907.086667pt;}
.h9{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:363.520000pt;}
.w5{width:365.281333pt;}
.w2{width:566.928019pt;}
.w3{width:642.520000pt;}
.w4{width:642.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4a{left:1.407467pt;}
.x6{left:75.884533pt;}
.xb{left:78.782133pt;}
.x4b{left:80.420800pt;}
.x4f{left:85.604800pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x50{left:103.812800pt;}
.x4c{left:105.146133pt;}
.x8{left:106.319067pt;}
.x4d{left:114.020800pt;}
.x28{left:117.478133pt;}
.x9{left:120.950533pt;}
.x3d{left:125.635200pt;}
.x33{left:128.742000pt;}
.x1c{left:130.152533pt;}
.x3f{left:135.363200pt;}
.xd{left:136.829733pt;}
.x1e{left:139.400533pt;}
.x34{left:142.043333pt;}
.xf{left:144.680400pt;}
.x49{left:148.068000pt;}
.x51{left:170.586133pt;}
.x4{left:180.874667pt;}
.x2a{left:183.238133pt;}
.x29{left:189.008800pt;}
.x4e{left:195.407467pt;}
.x41{left:196.931200pt;}
.x1f{left:200.968533pt;}
.x40{left:202.701867pt;}
.x35{left:203.654000pt;}
.x10{left:208.776400pt;}
.x2c{left:230.267467pt;}
.x2b{left:234.363467pt;}
.x43{left:241.443200pt;}
.x42{left:245.539200pt;}
.x1b{left:248.012800pt;}
.x26{left:250.002133pt;}
.x20{left:251.240533pt;}
.xc{left:252.488800pt;}
.x12{left:257.928400pt;}
.x11{left:261.939067pt;}
.x52{left:276.664533pt;}
.x1a{left:279.223467pt;}
.x25{left:281.223467pt;}
.xa{left:282.590133pt;}
.x2d{left:288.486133pt;}
.x44{left:300.675200pt;}
.x21{left:305.533867pt;}
.x36{left:308.336667pt;}
.x13{left:311.293733pt;}
.x2e{left:343.984800pt;}
.x14{left:358.045733pt;}
.x22{left:361.085867pt;}
.x37{left:366.662000pt;}
.x27{left:382.395467pt;}
.x3e{left:386.659200pt;}
.x1d{left:390.696533pt;}
.x7{left:392.185333pt;}
.x2f{left:395.131467pt;}
.xe{left:397.875067pt;}
.x30{left:401.904800pt;}
.x3{left:404.408000pt;}
.x15{left:408.253733pt;}
.x16{left:414.867067pt;}
.x45{left:416.664533pt;}
.x46{left:419.629867pt;}
.x38{left:420.806000pt;}
.x31{left:455.174133pt;}
.x47{left:457.933867pt;}
.x32{left:459.803467pt;}
.x23{left:461.757867pt;}
.x18{left:464.157733pt;}
.x48{left:465.283200pt;}
.x24{left:468.168533pt;}
.x17{left:470.088400pt;}
.x19{left:471.155067pt;}
.x3a{left:472.336667pt;}
.x39{left:477.659333pt;}
.x3b{left:498.662000pt;}
.x3c{left:546.929067pt;}
.x5{left:553.595733pt;}
}




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