
    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_89713c9fc1e3b438730212c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912000;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_d956da387e0f44380854a817.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_8f8dfbbf4f53bacce7c426a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_a8c1b52e7cd7ecf2b83f9361.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_2ccb44da25da2bfdd626fb3f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1dcfab5ee4d7924ba7d99a21.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.991699;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_db2eb332353933f85ed901a8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.118000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b0670474c6b80faaa2bfdd6c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765065;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_ce7c030af6a8cfa2009b419c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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_8f8dfbbf4f53bacce7c426a5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904000;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_cdabf96106fb45b5ca18c1ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.707031;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_da6cb6a9174b18e478bba2d6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006000;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_e0a97ddb2dd196fcbe123169.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_d956da387e0f44380854a817.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.919000;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_8f8dfbbf4f53bacce7c426a5.woff2')format("woff");}.fff{font-family:fff;line-height:0.904000;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_a8c1b52e7cd7ecf2b83f9361.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.912000;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_d956da387e0f44380854a817.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.919000;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_8f8dfbbf4f53bacce7c426a5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.904000;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_a8c1b52e7cd7ecf2b83f9361.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.912000;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_aa93f47cecbb52837cb8bfe8.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.673000;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_d956da387e0f44380854a817.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.919000;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_8f8dfbbf4f53bacce7c426a5.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.904000;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_a8c1b52e7cd7ecf2b83f9361.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.912000;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_ed809fd6e37c6514d512efef.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:22.950000px;}
.v3{vertical-align:27.000000px;}
.v1{vertical-align:29.700000px;}
.lsa{letter-spacing:-2.969460px;}
.ls9{letter-spacing:-2.804490px;}
.ls4{letter-spacing:-1.776000px;}
.ls8{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.596700px;}
.lsd{letter-spacing:-0.449550px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000372px;}
.lsb{letter-spacing:0.397402px;}
.ls6{letter-spacing:0.599400px;}
.ls0{letter-spacing:3.780000px;}
.ls1{letter-spacing:17.200200px;}
.ls2{letter-spacing:24.492000px;}
.ls5{letter-spacing:1598.878200px;}
.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;}
}
.ws3{word-spacing:-20.460000px;}
.ws7{word-spacing:-15.600000px;}
.ws8{word-spacing:-15.012000px;}
.wsec{word-spacing:-14.700000px;}
.ws4{word-spacing:-14.400000px;}
.wsaa{word-spacing:-14.178000px;}
.ws5{word-spacing:-12.960000px;}
.ws120{word-spacing:-12.510000px;}
.ws0{word-spacing:-12.164724px;}
.wsde{word-spacing:-12.042540px;}
.wsc{word-spacing:-11.520480px;}
.ws2{word-spacing:-11.520000px;}
.wsab{word-spacing:-11.373510px;}
.ws6{word-spacing:-10.342800px;}
.wsed{word-spacing:-9.746100px;}
.ws3a{word-spacing:-7.920000px;}
.wsc0{word-spacing:-7.803000px;}
.ws1{word-spacing:-7.637760px;}
.wsdf{word-spacing:-6.885000px;}
.ws74{word-spacing:-5.700000px;}
.ws57{word-spacing:-5.639400px;}
.ws113{word-spacing:-4.620000px;}
.ws1b{word-spacing:-4.500000px;}
.ws10d{word-spacing:-4.440600px;}
.ws15{word-spacing:-4.320600px;}
.ws12{word-spacing:-4.200600px;}
.ws98{word-spacing:-4.140000px;}
.ws96{word-spacing:-3.360000px;}
.wscd{word-spacing:-3.179400px;}
.wsbf{word-spacing:-3.120000px;}
.ws50{word-spacing:-2.880000px;}
.ws16{word-spacing:-2.864558px;}
.ws6e{word-spacing:-2.820000px;}
.ws43{word-spacing:-2.700000px;}
.ws54{word-spacing:-2.640600px;}
.ws7e{word-spacing:-2.580000px;}
.ws61{word-spacing:-2.460000px;}
.wsf9{word-spacing:-2.340000px;}
.wsd6{word-spacing:-2.220000px;}
.ws3c{word-spacing:-2.160000px;}
.ws47{word-spacing:-2.040000px;}
.ws94{word-spacing:-1.980000px;}
.ws4d{word-spacing:-1.920000px;}
.ws88{word-spacing:-1.860600px;}
.ws7b{word-spacing:-1.800000px;}
.wsb{word-spacing:-1.776000px;}
.ws69{word-spacing:-1.740600px;}
.ws4f{word-spacing:-1.680000px;}
.ws8a{word-spacing:-1.560000px;}
.ws36{word-spacing:-1.457460px;}
.ws8d{word-spacing:-1.320000px;}
.ws7a{word-spacing:-1.260000px;}
.ws91{word-spacing:-1.200000px;}
.wsdc{word-spacing:-1.140000px;}
.ws9d{word-spacing:-1.020000px;}
.ws64{word-spacing:-0.960600px;}
.wsb4{word-spacing:-0.900000px;}
.ws53{word-spacing:-0.840600px;}
.wsa9{word-spacing:-0.780000px;}
.ws72{word-spacing:-0.719400px;}
.wsd{word-spacing:-0.672480px;}
.ws45{word-spacing:-0.660000px;}
.wsae{word-spacing:-0.599400px;}
.ws92{word-spacing:-0.480000px;}
.wsf3{word-spacing:-0.420000px;}
.wse{word-spacing:-0.384000px;}
.ws7d{word-spacing:-0.360000px;}
.ws114{word-spacing:-0.240000px;}
.ws89{word-spacing:-0.120000px;}
.wscc{word-spacing:-0.060600px;}
.wsc1{word-spacing:-0.060000px;}
.wsac{word-spacing:-0.051000px;}
.ws9{word-spacing:0.000000px;}
.ws3b{word-spacing:0.060600px;}
.ws8e{word-spacing:0.120000px;}
.ws9a{word-spacing:0.180600px;}
.ws8f{word-spacing:0.240000px;}
.wsb7{word-spacing:0.300000px;}
.wsb9{word-spacing:0.360000px;}
.ws111{word-spacing:0.397402px;}
.wsfc{word-spacing:0.480000px;}
.wsb8{word-spacing:0.599400px;}
.ws66{word-spacing:0.660000px;}
.ws119{word-spacing:0.719400px;}
.wse6{word-spacing:0.780000px;}
.ws4e{word-spacing:0.840600px;}
.wscb{word-spacing:0.900000px;}
.ws8c{word-spacing:0.914542px;}
.wsea{word-spacing:0.960600px;}
.ws5a{word-spacing:1.020000px;}
.ws1d{word-spacing:1.073662px;}
.ws70{word-spacing:1.140000px;}
.ws93{word-spacing:1.260000px;}
.wsa1{word-spacing:1.320000px;}
.ws8b{word-spacing:1.379400px;}
.ws35{word-spacing:1.404000px;}
.ws56{word-spacing:1.440000px;}
.ws42{word-spacing:1.560000px;}
.ws1c{word-spacing:1.619400px;}
.ws4b{word-spacing:1.680000px;}
.wsb3{word-spacing:1.740600px;}
.wsa{word-spacing:1.776000px;}
.ws10{word-spacing:1.860600px;}
.ws65{word-spacing:1.920000px;}
.wscf{word-spacing:2.040000px;}
.ws34{word-spacing:2.159460px;}
.wsce{word-spacing:2.160000px;}
.wsa3{word-spacing:2.220000px;}
.ws6c{word-spacing:2.279400px;}
.ws33{word-spacing:2.322000px;}
.wsd9{word-spacing:2.399400px;}
.wsa4{word-spacing:2.520600px;}
.ws117{word-spacing:2.580000px;}
.ws2b{word-spacing:2.646000px;}
.wse1{word-spacing:2.700000px;}
.ws60{word-spacing:2.820000px;}
.ws26{word-spacing:2.940000px;}
.ws2e{word-spacing:3.024000px;}
.ws10f{word-spacing:3.059400px;}
.wsa7{word-spacing:3.179400px;}
.wsd5{word-spacing:3.240000px;}
.ws105{word-spacing:3.299400px;}
.ws118{word-spacing:3.360000px;}
.ws109{word-spacing:3.420600px;}
.wsfa{word-spacing:3.540600px;}
.ws86{word-spacing:3.600000px;}
.ws11a{word-spacing:3.720000px;}
.ws17{word-spacing:3.780000px;}
.wsfe{word-spacing:3.840000px;}
.wsf6{word-spacing:3.900000px;}
.ws51{word-spacing:3.959400px;}
.ws9f{word-spacing:4.020000px;}
.ws27{word-spacing:4.079400px;}
.ws5f{word-spacing:4.140000px;}
.ws28{word-spacing:4.200600px;}
.ws95{word-spacing:4.260000px;}
.wsfb{word-spacing:4.320600px;}
.ws90{word-spacing:4.380000px;}
.wsb6{word-spacing:4.440600px;}
.wsda{word-spacing:4.500000px;}
.ws87{word-spacing:4.620000px;}
.ws48{word-spacing:4.654260px;}
.ws79{word-spacing:4.680000px;}
.ws39{word-spacing:4.694040px;}
.wsa2{word-spacing:4.739400px;}
.ws59{word-spacing:4.800000px;}
.ws103{word-spacing:4.859400px;}
.wsad{word-spacing:4.979400px;}
.ws4c{word-spacing:5.040000px;}
.ws122{word-spacing:5.100600px;}
.ws5b{word-spacing:5.160000px;}
.wsf2{word-spacing:5.211180px;}
.ws10a{word-spacing:5.220600px;}
.ws108{word-spacing:5.280000px;}
.ws107{word-spacing:5.340000px;}
.ws14{word-spacing:5.460000px;}
.ws10e{word-spacing:5.520000px;}
.ws97{word-spacing:5.639400px;}
.ws2f{word-spacing:5.670000px;}
.ws44{word-spacing:5.759400px;}
.ws11{word-spacing:5.820000px;}
.wsff{word-spacing:5.880600px;}
.wsf{word-spacing:6.060000px;}
.ws11f{word-spacing:6.120600px;}
.ws20{word-spacing:6.180000px;}
.ws106{word-spacing:6.240000px;}
.ws18{word-spacing:6.360000px;}
.ws116{word-spacing:6.419400px;}
.ws23{word-spacing:6.480000px;}
.ws6b{word-spacing:6.539400px;}
.wse2{word-spacing:6.659400px;}
.wse3{word-spacing:6.720000px;}
.wsdb{word-spacing:6.780600px;}
.wse7{word-spacing:6.802778px;}
.ws78{word-spacing:6.840000px;}
.ws6d{word-spacing:6.900600px;}
.ws5e{word-spacing:6.960000px;}
.ws13{word-spacing:7.020000px;}
.ws38{word-spacing:7.080000px;}
.ws104{word-spacing:7.140000px;}
.ws11e{word-spacing:7.200000px;}
.ws2c{word-spacing:7.236000px;}
.wsa5{word-spacing:7.260000px;}
.ws99{word-spacing:7.319400px;}
.wsc9{word-spacing:7.500000px;}
.wsa0{word-spacing:7.620000px;}
.wsb0{word-spacing:7.680600px;}
.wsf1{word-spacing:7.860000px;}
.ws77{word-spacing:7.980000px;}
.wsb5{word-spacing:8.160000px;}
.ws10b{word-spacing:8.280000px;}
.ws9c{word-spacing:8.340600px;}
.ws3e{word-spacing:8.460600px;}
.ws11b{word-spacing:8.520000px;}
.wsf0{word-spacing:8.580600px;}
.ws7c{word-spacing:8.700000px;}
.wsdd{word-spacing:8.760000px;}
.wsfd{word-spacing:8.879400px;}
.ws6a{word-spacing:8.940000px;}
.wsd1{word-spacing:8.999400px;}
.ws32{word-spacing:9.018540px;}
.ws46{word-spacing:9.060000px;}
.ws6f{word-spacing:9.119400px;}
.wsbb{word-spacing:9.180000px;}
.ws30{word-spacing:9.288000px;}
.ws73{word-spacing:9.360600px;}
.wsbe{word-spacing:9.480000px;}
.ws41{word-spacing:9.660000px;}
.ws67{word-spacing:9.779400px;}
.ws49{word-spacing:9.840000px;}
.ws58{word-spacing:9.899400px;}
.ws40{word-spacing:9.960000px;}
.ws110{word-spacing:10.020600px;}
.ws2a{word-spacing:10.080000px;}
.ws71{word-spacing:10.200000px;}
.ws31{word-spacing:10.260000px;}
.ws63{word-spacing:10.260600px;}
.ws112{word-spacing:10.320000px;}
.ws75{word-spacing:10.500000px;}
.ws37{word-spacing:10.559400px;}
.wsd3{word-spacing:10.620000px;}
.wse4{word-spacing:10.740000px;}
.ws5c{word-spacing:10.799400px;}
.wsba{word-spacing:10.860000px;}
.ws2d{word-spacing:11.015460px;}
.ws9b{word-spacing:11.100000px;}
.ws10c{word-spacing:11.160000px;}
.wsf5{word-spacing:11.257740px;}
.ws9e{word-spacing:11.340000px;}
.ws115{word-spacing:11.400000px;}
.wsbc{word-spacing:11.459400px;}
.wse9{word-spacing:11.520000px;}
.wsca{word-spacing:11.820600px;}
.ws3f{word-spacing:12.239400px;}
.ws101{word-spacing:12.479400px;}
.ws123{word-spacing:12.540000px;}
.ws124{word-spacing:12.660000px;}
.wsf8{word-spacing:12.720600px;}
.wsd0{word-spacing:12.780000px;}
.ws52{word-spacing:13.080000px;}
.ws85{word-spacing:13.139400px;}
.ws4a{word-spacing:13.259400px;}
.wseb{word-spacing:13.440000px;}
.ws68{word-spacing:13.919400px;}
.ws11c{word-spacing:14.039400px;}
.wsb1{word-spacing:14.340000px;}
.ws29{word-spacing:14.819400px;}
.ws1a{word-spacing:14.939400px;}
.ws1f{word-spacing:15.420000px;}
.ws102{word-spacing:15.780000px;}
.wse5{word-spacing:15.960600px;}
.ws80{word-spacing:16.200000px;}
.wsd4{word-spacing:16.499400px;}
.ws81{word-spacing:16.560000px;}
.ws24{word-spacing:16.860600px;}
.wsf4{word-spacing:16.980000px;}
.ws3d{word-spacing:17.040000px;}
.ws1e{word-spacing:17.100000px;}
.ws84{word-spacing:17.399400px;}
.ws83{word-spacing:17.700000px;}
.wsa8{word-spacing:17.760600px;}
.ws76{word-spacing:17.880000px;}
.wse8{word-spacing:18.540600px;}
.wsee{word-spacing:18.900000px;}
.ws11d{word-spacing:19.140000px;}
.wsc8{word-spacing:19.500000px;}
.ws55{word-spacing:19.560000px;}
.wsf7{word-spacing:20.040000px;}
.ws82{word-spacing:20.220600px;}
.ws62{word-spacing:20.520000px;}
.ws25{word-spacing:20.639400px;}
.wsa6{word-spacing:21.120600px;}
.ws21{word-spacing:21.419400px;}
.wsb2{word-spacing:21.480000px;}
.wsaf{word-spacing:21.900600px;}
.wsbd{word-spacing:22.560600px;}
.wsd2{word-spacing:22.680600px;}
.wsc7{word-spacing:23.280000px;}
.wsef{word-spacing:24.119400px;}
.wsd8{word-spacing:25.440000px;}
.ws7f{word-spacing:25.980000px;}
.ws19{word-spacing:26.640000px;}
.wsd7{word-spacing:27.479400px;}
.ws22{word-spacing:30.480000px;}
.ws100{word-spacing:31.080600px;}
.ws121{word-spacing:32.399400px;}
.ws5d{word-spacing:34.200600px;}
.wsc3{word-spacing:289.548000px;}
.wsc2{word-spacing:293.058000px;}
.wsc4{word-spacing:311.904000px;}
.wsc6{word-spacing:350.946000px;}
.wse0{word-spacing:467.910000px;}
.wsc5{word-spacing:747.036000px;}
.ws125{word-spacing:1555.678200px;}
._c{margin-left:-2989.435680px;}
._b{margin-left:-1749.868380px;}
._a{margin-left:-59.040000px;}
._5{margin-left:-47.970000px;}
._6b{margin-left:-21.535200px;}
._30{margin-left:-15.564000px;}
._61{margin-left:-14.040000px;}
._6{margin-left:-11.520000px;}
._d{margin-left:-9.660000px;}
._6c{margin-left:-8.484000px;}
._2{margin-left:-7.333164px;}
._9{margin-left:-5.670000px;}
._e{margin-left:-4.574400px;}
._3{margin-left:-3.552000px;}
._0{margin-left:-1.776000px;}
._4{width:1.334400px;}
._7{width:2.688000px;}
._29{width:6.375000px;}
._10{width:7.803000px;}
._78{width:11.520000px;}
._77{width:12.960000px;}
._8{width:14.040000px;}
._79{width:20.610000px;}
._7a{width:21.867750px;}
._1{width:33.724800px;}
._f{width:38.016000px;}
._19{width:51.000000px;}
._37{width:54.000000px;}
._23{width:62.577000px;}
._28{width:64.719000px;}
._71{width:65.826000px;}
._25{width:69.105000px;}
._1f{width:70.737000px;}
._75{width:72.012000px;}
._41{width:80.244000px;}
._1b{width:87.108000px;}
._2e{width:88.128000px;}
._2f{width:89.250000px;}
._50{width:90.840000px;}
._21{width:93.636000px;}
._4f{width:96.075000px;}
._1c{width:99.603000px;}
._4e{width:102.405000px;}
._59{width:103.635000px;}
._27{width:105.111000px;}
._1d{width:106.743000px;}
._4c{width:113.349000px;}
._22{width:114.393000px;}
._5d{width:115.845000px;}
._2b{width:117.555000px;}
._2d{width:120.360000px;}
._57{width:121.725000px;}
._20{width:123.624000px;}
._4b{width:126.045000px;}
._55{width:128.040000px;}
._1e{width:130.152000px;}
._69{width:131.856000px;}
._58{width:139.326000px;}
._54{width:140.820000px;}
._5c{width:142.155000px;}
._2a{width:145.962000px;}
._60{width:146.988000px;}
._52{width:148.635000px;}
._18{width:150.399000px;}
._53{width:152.100000px;}
._2c{width:153.561000px;}
._14{width:156.366000px;}
._24{width:159.630000px;}
._66{width:161.064000px;}
._51{width:162.717000px;}
._49{width:165.150000px;}
._6f{width:169.020000px;}
._1a{width:170.136000px;}
._48{width:171.180000px;}
._56{width:174.330000px;}
._5a{width:176.085000px;}
._47{width:177.165000px;}
._17{width:180.387000px;}
._26{width:183.753000px;}
._13{width:186.405000px;}
._67{width:188.773164px;}
._65{width:191.088000px;}
._15{width:192.372000px;}
._70{width:194.988000px;}
._16{width:198.390000px;}
._46{width:201.150000px;}
._5b{width:206.100000px;}
._6e{width:219.024000px;}
._34{width:227.340000px;}
._6d{width:249.138000px;}
._4d{width:274.635000px;}
._4a{width:295.425000px;}
._5e{width:303.138000px;}
._43{width:304.560000px;}
._3a{width:326.916000px;}
._5f{width:328.194000px;}
._44{width:332.910000px;}
._3f{width:334.584000px;}
._40{width:335.934000px;}
._3c{width:362.934000px;}
._39{width:365.958000px;}
._32{width:378.918000px;}
._31{width:380.592000px;}
._33{width:384.912000px;}
._3e{width:386.574000px;}
._3b{width:395.982000px;}
._42{width:448.210380px;}
._38{width:450.564000px;}
._3d{width:478.234380px;}
._73{width:494.964000px;}
._68{width:522.234000px;}
._45{width:528.828000px;}
._6a{width:552.258000px;}
._64{width:554.769000px;}
._11{width:561.204000px;}
._12{width:597.210000px;}
._63{width:602.964000px;}
._62{width:633.463164px;}
._35{width:748.656000px;}
._36{width:770.958000px;}
._76{width:1000.620000px;}
._74{width:1025.622000px;}
._72{width:1084.644000px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(65,64,153);}
.fs6{font-size:31.824000px;}
.fsa{font-size:33.813000px;}
.fs5{font-size:39.000000px;}
.fs8{font-size:39.780000px;}
.fs4{font-size:43.758000px;}
.fsb{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:41.383350px;}
.y1{bottom:41.386350px;}
.y22f{bottom:81.091350px;}
.yc5{bottom:81.571350px;}
.y118{bottom:81.601200px;}
.yfe{bottom:81.601350px;}
.y77{bottom:81.604650px;}
.y148{bottom:81.605700px;}
.y196{bottom:81.610200px;}
.y60{bottom:81.610800px;}
.y2f{bottom:81.637800px;}
.y263{bottom:81.646350px;}
.y15f{bottom:81.695700px;}
.y131{bottom:81.976200px;}
.y2b4{bottom:82.917600px;}
.y1e4{bottom:90.586200px;}
.y262{bottom:94.392600px;}
.y2b3{bottom:95.753850px;}
.y2e{bottom:96.637800px;}
.y22e{bottom:99.091350px;}
.yc4{bottom:99.571350px;}
.y117{bottom:99.601200px;}
.yfd{bottom:99.601350px;}
.y76{bottom:99.604650px;}
.y147{bottom:99.605700px;}
.y195{bottom:99.610200px;}
.y5f{bottom:99.610800px;}
.y15e{bottom:99.935700px;}
.y130{bottom:100.501200px;}
.y1e3{bottom:105.586200px;}
.y261{bottom:107.138850px;}
.y2b2{bottom:108.590100px;}
.y2d{bottom:111.637800px;}
.y22d{bottom:117.091350px;}
.yc3{bottom:117.571350px;}
.y116{bottom:117.601200px;}
.yfc{bottom:117.601350px;}
.y75{bottom:117.604650px;}
.y146{bottom:117.605700px;}
.y194{bottom:117.610200px;}
.y5e{bottom:117.610800px;}
.y15d{bottom:118.175700px;}
.y12f{bottom:119.026200px;}
.y260{bottom:119.885100px;}
.y1e2{bottom:120.586200px;}
.y2b1{bottom:121.426350px;}
.y25f{bottom:132.631350px;}
.y2b0{bottom:134.262600px;}
.y22c{bottom:135.091350px;}
.yc2{bottom:135.571350px;}
.y1e1{bottom:135.586200px;}
.y115{bottom:135.601200px;}
.yfb{bottom:135.601350px;}
.y74{bottom:135.604650px;}
.y145{bottom:135.605700px;}
.y193{bottom:135.610200px;}
.y5d{bottom:135.610800px;}
.y15c{bottom:136.415700px;}
.y12e{bottom:137.551200px;}
.y2c{bottom:140.137800px;}
.y25e{bottom:145.377600px;}
.y2af{bottom:147.098850px;}
.y22b{bottom:153.091350px;}
.yc1{bottom:153.571350px;}
.y114{bottom:153.601200px;}
.yfa{bottom:153.601350px;}
.y73{bottom:153.604650px;}
.y144{bottom:153.605700px;}
.y192{bottom:153.610200px;}
.y5c{bottom:153.610800px;}
.y15b{bottom:154.655700px;}
.y2b{bottom:155.137800px;}
.y12d{bottom:156.076200px;}
.y25d{bottom:158.123850px;}
.y2ae{bottom:159.935100px;}
.y215{bottom:162.127650px;}
.y1e0{bottom:162.127800px;}
.y25c{bottom:170.870100px;}
.y22a{bottom:171.091350px;}
.yc0{bottom:171.571350px;}
.y113{bottom:171.601200px;}
.yf9{bottom:171.601350px;}
.y72{bottom:171.604650px;}
.y143{bottom:171.605700px;}
.y191{bottom:171.610200px;}
.y5b{bottom:171.610800px;}
.y2ad{bottom:172.771350px;}
.y15a{bottom:172.895700px;}
.y12c{bottom:174.601200px;}
.y2a{bottom:175.537800px;}
.y214{bottom:178.327650px;}
.y1df{bottom:182.269800px;}
.y25b{bottom:183.616350px;}
.y29{bottom:185.137800px;}
.y2ac{bottom:185.607600px;}
.y229{bottom:189.091350px;}
.ybf{bottom:189.571350px;}
.y112{bottom:189.601200px;}
.yf8{bottom:189.601350px;}
.y71{bottom:189.604650px;}
.y142{bottom:189.605700px;}
.y190{bottom:189.610200px;}
.y5a{bottom:189.610800px;}
.y159{bottom:191.135700px;}
.y12b{bottom:193.126200px;}
.y25a{bottom:196.362600px;}
.y2ab{bottom:198.443850px;}
.y213{bottom:198.469650px;}
.y1de{bottom:203.910300px;}
.y28{bottom:205.537800px;}
.y228{bottom:207.091350px;}
.ybe{bottom:207.571350px;}
.y111{bottom:207.601200px;}
.yf7{bottom:207.601350px;}
.y70{bottom:207.604650px;}
.y141{bottom:207.605700px;}
.y18f{bottom:207.610200px;}
.y59{bottom:207.610800px;}
.y259{bottom:209.108850px;}
.y158{bottom:209.375700px;}
.y2aa{bottom:211.280100px;}
.y12a{bottom:211.651200px;}
.y27{bottom:215.137800px;}
.y212{bottom:220.110150px;}
.y258{bottom:221.855100px;}
.y2a9{bottom:224.116350px;}
.y227{bottom:225.091350px;}
.y1dd{bottom:225.550800px;}
.ybd{bottom:225.571350px;}
.y110{bottom:225.601200px;}
.yf6{bottom:225.601350px;}
.y6f{bottom:225.604650px;}
.y140{bottom:225.605700px;}
.y18e{bottom:225.610200px;}
.y58{bottom:225.610800px;}
.y157{bottom:227.615700px;}
.y26{bottom:230.137800px;}
.y129{bottom:230.176200px;}
.y257{bottom:234.601350px;}
.y2a8{bottom:236.952600px;}
.y211{bottom:241.750650px;}
.y226{bottom:243.091350px;}
.ybc{bottom:243.571350px;}
.y10f{bottom:243.601200px;}
.yf5{bottom:243.601350px;}
.y6e{bottom:243.604650px;}
.y13f{bottom:243.605700px;}
.y18d{bottom:243.610200px;}
.y156{bottom:245.855700px;}
.y1dc{bottom:247.191300px;}
.y256{bottom:247.351350px;}
.y128{bottom:248.701200px;}
.y2a7{bottom:249.788850px;}
.y25{bottom:250.537800px;}
.y24{bottom:260.137800px;}
.y225{bottom:261.091350px;}
.ybb{bottom:261.571350px;}
.y10e{bottom:261.601200px;}
.yf4{bottom:261.601350px;}
.y6d{bottom:261.604650px;}
.y13e{bottom:261.605700px;}
.y18c{bottom:261.610200px;}
.y2a6{bottom:262.625100px;}
.y210{bottom:263.391150px;}
.y155{bottom:264.095700px;}
.y127{bottom:267.226200px;}
.y1db{bottom:268.831800px;}
.y23{bottom:275.137800px;}
.y2a5{bottom:275.461350px;}
.y224{bottom:279.091350px;}
.yba{bottom:279.571350px;}
.y10d{bottom:279.601200px;}
.yf3{bottom:279.601350px;}
.y6c{bottom:279.604650px;}
.y18b{bottom:279.610200px;}
.y154{bottom:282.335700px;}
.y20f{bottom:285.031650px;}
.y57{bottom:285.436800px;}
.y126{bottom:285.751200px;}
.y2a4{bottom:288.297600px;}
.y22{bottom:290.137800px;}
.y1da{bottom:290.472300px;}
.y223{bottom:297.091350px;}
.yb9{bottom:297.571350px;}
.y10c{bottom:297.601200px;}
.yf2{bottom:297.601350px;}
.y6b{bottom:297.604650px;}
.y18a{bottom:297.610200px;}
.y153{bottom:300.575700px;}
.y2a3{bottom:301.133850px;}
.y20e{bottom:301.231650px;}
.y56{bottom:301.933800px;}
.y125{bottom:304.276200px;}
.y21{bottom:310.537800px;}
.y1d9{bottom:312.112800px;}
.y13d{bottom:312.215700px;}
.y2a2{bottom:313.970100px;}
.y222{bottom:315.091350px;}
.yb8{bottom:315.571350px;}
.y10b{bottom:315.601200px;}
.yf1{bottom:315.601350px;}
.y6a{bottom:315.604650px;}
.y189{bottom:315.610200px;}
.y55{bottom:318.430800px;}
.y152{bottom:318.815700px;}
.y20{bottom:320.137800px;}
.y255{bottom:320.805600px;}
.y124{bottom:322.801200px;}
.y20d{bottom:322.872150px;}
.y2a1{bottom:326.806350px;}
.y13c{bottom:330.215700px;}
.y221{bottom:333.091350px;}
.yb7{bottom:333.571350px;}
.y10a{bottom:333.601200px;}
.yf0{bottom:333.601350px;}
.y69{bottom:333.604650px;}
.y188{bottom:333.610200px;}
.y1d8{bottom:333.753300px;}
.y54{bottom:334.927800px;}
.y254{bottom:335.205600px;}
.y151{bottom:337.055700px;}
.y2a0{bottom:339.642600px;}
.y1f{bottom:340.537800px;}
.y123{bottom:341.326200px;}
.y20c{bottom:344.512650px;}
.y13b{bottom:348.215700px;}
.y253{bottom:349.605600px;}
.y1e{bottom:350.137800px;}
.y220{bottom:351.091350px;}
.y53{bottom:351.424800px;}
.yb6{bottom:351.571350px;}
.y109{bottom:351.601200px;}
.yef{bottom:351.601350px;}
.y68{bottom:351.604650px;}
.y187{bottom:351.610200px;}
.y29f{bottom:352.478850px;}
.y150{bottom:355.295700px;}
.y1d7{bottom:355.393800px;}
.y122{bottom:359.851200px;}
.y252{bottom:364.005600px;}
.y1d{bottom:365.137800px;}
.y29e{bottom:365.315100px;}
.y20b{bottom:366.153150px;}
.y8a{bottom:367.775100px;}
.y52{bottom:367.921800px;}
.y21f{bottom:369.091350px;}
.yb5{bottom:369.571350px;}
.y108{bottom:369.601200px;}
.yee{bottom:369.601350px;}
.y67{bottom:369.604650px;}
.y186{bottom:369.610200px;}
.y14f{bottom:373.535700px;}
.y1d6{bottom:377.034300px;}
.y29d{bottom:378.151350px;}
.y121{bottom:378.376200px;}
.y251{bottom:378.405600px;}
.y13a{bottom:379.715700px;}
.y51{bottom:384.418800px;}
.y1c{bottom:385.537800px;}
.y21e{bottom:387.091350px;}
.yb4{bottom:387.571350px;}
.y107{bottom:387.601200px;}
.yed{bottom:387.601350px;}
.y66{bottom:387.604650px;}
.y185{bottom:387.610200px;}
.y20a{bottom:387.793650px;}
.y29c{bottom:390.987600px;}
.y14e{bottom:391.775700px;}
.y250{bottom:392.805600px;}
.y120{bottom:396.901200px;}
.y139{bottom:397.715700px;}
.y1d5{bottom:398.674800px;}
.y35{bottom:399.205650px;}
.y50{bottom:400.915800px;}
.y29b{bottom:403.823850px;}
.y21d{bottom:405.091350px;}
.yb3{bottom:405.571350px;}
.y106{bottom:405.601200px;}
.yec{bottom:405.601350px;}
.y65{bottom:405.604650px;}
.y184{bottom:405.610200px;}
.y209{bottom:409.434150px;}
.y14d{bottom:410.015700px;}
.y24f{bottom:413.205600px;}
.y34{bottom:413.605650px;}
.y11f{bottom:415.426200px;}
.y138{bottom:415.715700px;}
.y29a{bottom:416.660100px;}
.y4f{bottom:417.412800px;}
.y1d4{bottom:420.315300px;}
.y21c{bottom:423.091350px;}
.yb2{bottom:423.571350px;}
.y105{bottom:423.601200px;}
.yeb{bottom:423.601350px;}
.y64{bottom:423.604650px;}
.y183{bottom:423.610200px;}
.y208{bottom:425.634150px;}
.y24e{bottom:427.605600px;}
.y33{bottom:428.005650px;}
.y14c{bottom:428.255700px;}
.y299{bottom:429.496350px;}
.y137{bottom:433.715700px;}
.y4e{bottom:433.909800px;}
.y11e{bottom:433.951200px;}
.y21b{bottom:441.091350px;}
.yb1{bottom:441.571350px;}
.y104{bottom:441.601200px;}
.yea{bottom:441.601350px;}
.y63{bottom:441.604650px;}
.y182{bottom:441.610200px;}
.y1d3{bottom:441.955800px;}
.y24d{bottom:442.005600px;}
.y298{bottom:442.332600px;}
.y32{bottom:442.405650px;}
.y14b{bottom:446.495700px;}
.y207{bottom:447.274650px;}
.y4d{bottom:450.406800px;}
.y136{bottom:451.715700px;}
.y11d{bottom:452.476200px;}
.y297{bottom:455.168850px;}
.y24c{bottom:456.405600px;}
.y31{bottom:456.805650px;}
.y21a{bottom:459.091350px;}
.yb0{bottom:459.571350px;}
.y103{bottom:459.601200px;}
.ye9{bottom:459.601350px;}
.y181{bottom:459.610200px;}
.y62{bottom:459.610800px;}
.y1d2{bottom:462.097800px;}
.y14a{bottom:464.735700px;}
.y4c{bottom:466.903800px;}
.y296{bottom:468.005100px;}
.y206{bottom:468.915150px;}
.y24b{bottom:470.805600px;}
.y11c{bottom:471.001200px;}
.y30{bottom:471.205650px;}
.y219{bottom:477.091350px;}
.yaf{bottom:477.571350px;}
.y102{bottom:477.601200px;}
.ye8{bottom:477.601350px;}
.y180{bottom:477.610200px;}
.y61{bottom:477.610800px;}
.y295{bottom:480.841350px;}
.y149{bottom:482.975700px;}
.y135{bottom:483.215700px;}
.y4b{bottom:483.400800px;}
.y1d1{bottom:486.735300px;}
.y11b{bottom:489.526200px;}
.y205{bottom:490.555650px;}
.y24a{bottom:491.205600px;}
.y294{bottom:493.677600px;}
.y218{bottom:495.091350px;}
.yae{bottom:495.571350px;}
.y101{bottom:495.601200px;}
.ye7{bottom:495.601350px;}
.y17f{bottom:495.610200px;}
.y4a{bottom:499.897800px;}
.y134{bottom:501.215700px;}
.y293{bottom:506.513850px;}
.y11a{bottom:508.051200px;}
.y1d0{bottom:508.375800px;}
.y204{bottom:510.697650px;}
.y249{bottom:511.605600px;}
.y217{bottom:513.091350px;}
.yad{bottom:513.571350px;}
.ye6{bottom:513.601350px;}
.y17e{bottom:513.610200px;}
.y49{bottom:516.394800px;}
.y292{bottom:519.350100px;}
.y89{bottom:525.118500px;}
.y248{bottom:526.005600px;}
.y119{bottom:526.576200px;}
.y100{bottom:527.101200px;}
.y1cf{bottom:530.392650px;}
.y216{bottom:531.091350px;}
.yac{bottom:531.571350px;}
.y291{bottom:532.186350px;}
.y48{bottom:532.891800px;}
.y203{bottom:535.335150px;}
.y247{bottom:540.405600px;}
.y88{bottom:541.615500px;}
.y290{bottom:545.022600px;}
.yff{bottom:545.101200px;}
.y1ce{bottom:546.889650px;}
.ye5{bottom:549.091350px;}
.y47{bottom:549.388800px;}
.yab{bottom:549.571350px;}
.y17d{bottom:550.400550px;}
.y1b{bottom:554.434650px;}
.y202{bottom:556.975650px;}
.y28f{bottom:557.858850px;}
.y87{bottom:558.112500px;}
.y246{bottom:560.805600px;}
.y17c{bottom:565.700550px;}
.y46{bottom:565.885800px;}
.ye4{bottom:567.091350px;}
.yaa{bottom:567.571350px;}
.y1a{bottom:569.434650px;}
.y28e{bottom:570.695100px;}
.y133{bottom:573.781200px;}
.y1b0{bottom:574.270050px;}
.y86{bottom:574.609500px;}
.y201{bottom:578.992650px;}
.y17b{bottom:581.000550px;}
.y245{bottom:581.205600px;}
.y45{bottom:582.382800px;}
.y28d{bottom:583.531350px;}
.y19{bottom:584.434650px;}
.ye3{bottom:585.091350px;}
.ya9{bottom:585.571350px;}
.y1af{bottom:589.270050px;}
.y132{bottom:589.981200px;}
.y85{bottom:591.118500px;}
.y200{bottom:595.489650px;}
.y244{bottom:595.605600px;}
.y17a{bottom:596.300550px;}
.y28c{bottom:596.367600px;}
.y44{bottom:598.879800px;}
.ye2{bottom:603.091350px;}
.ya8{bottom:603.571350px;}
.y1ae{bottom:604.270050px;}
.y84{bottom:607.615500px;}
.y28b{bottom:609.203850px;}
.y243{bottom:610.005600px;}
.y179{bottom:611.600550px;}
.y18{bottom:612.934650px;}
.y43{bottom:615.376800px;}
.y1ad{bottom:619.270050px;}
.ye1{bottom:621.091350px;}
.ya7{bottom:621.571350px;}
.y28a{bottom:622.040100px;}
.y83{bottom:624.112500px;}
.y17{bottom:627.934650px;}
.y242{bottom:630.405600px;}
.y42{bottom:631.873800px;}
.y1cd{bottom:633.713550px;}
.y1ac{bottom:634.270050px;}
.y289{bottom:634.876350px;}
.ye0{bottom:639.091350px;}
.y178{bottom:639.502500px;}
.ya6{bottom:639.571350px;}
.y82{bottom:640.609500px;}
.y16{bottom:642.934650px;}
.y1f3{bottom:644.273700px;}
.y1ed{bottom:644.273850px;}
.y241{bottom:644.805600px;}
.y1cc{bottom:647.213550px;}
.y288{bottom:647.712600px;}
.y41{bottom:648.370800px;}
.y177{bottom:654.802500px;}
.ydf{bottom:657.091350px;}
.y81{bottom:657.115500px;}
.ya5{bottom:657.571350px;}
.y15{bottom:657.934650px;}
.y240{bottom:659.205600px;}
.y287{bottom:660.548850px;}
.y1cb{bottom:660.713550px;}
.y1ab{bottom:660.810000px;}
.y1f2{bottom:662.273700px;}
.y1ec{bottom:662.273850px;}
.y40{bottom:664.867800px;}
.y14{bottom:672.934650px;}
.y286{bottom:673.385100px;}
.y23f{bottom:673.605600px;}
.y80{bottom:673.612500px;}
.y1ca{bottom:674.213550px;}
.y176{bottom:674.412000px;}
.yde{bottom:675.091350px;}
.ya4{bottom:675.571350px;}
.y1f1{bottom:680.273700px;}
.y1eb{bottom:680.273850px;}
.y1aa{bottom:680.952000px;}
.y3f{bottom:681.364800px;}
.y285{bottom:686.221350px;}
.y13{bottom:687.934650px;}
.y175{bottom:689.712000px;}
.y7f{bottom:690.109500px;}
.ydd{bottom:693.091350px;}
.ya3{bottom:693.571350px;}
.y23e{bottom:694.005600px;}
.y3e{bottom:697.861800px;}
.y1f0{bottom:698.273700px;}
.y1ea{bottom:698.273850px;}
.y284{bottom:699.057600px;}
.y1c9{bottom:700.233900px;}
.y1a9{bottom:702.592500px;}
.y7e{bottom:706.615500px;}
.y23d{bottom:708.405600px;}
.y174{bottom:710.813250px;}
.ydc{bottom:711.091350px;}
.ya2{bottom:711.571350px;}
.y283{bottom:711.893850px;}
.y12{bottom:711.934650px;}
.y3d{bottom:714.358800px;}
.y1ef{bottom:716.273700px;}
.y1e9{bottom:716.273850px;}
.y1c8{bottom:718.762650px;}
.y23c{bottom:722.805600px;}
.y7d{bottom:723.112500px;}
.y1a8{bottom:724.233000px;}
.y282{bottom:724.730100px;}
.y173{bottom:726.113250px;}
.y11{bottom:726.934650px;}
.ydb{bottom:729.091350px;}
.ya1{bottom:729.571350px;}
.y3c{bottom:730.855800px;}
.y1c7{bottom:732.262650px;}
.y1ee{bottom:734.273700px;}
.y1e8{bottom:734.273850px;}
.y281{bottom:737.566350px;}
.y7c{bottom:739.609500px;}
.y10{bottom:741.934650px;}
.y1c6{bottom:745.762650px;}
.y1a7{bottom:745.873500px;}
.yda{bottom:747.091350px;}
.y172{bottom:747.214500px;}
.y3b{bottom:747.352800px;}
.ya0{bottom:747.571350px;}
.y280{bottom:750.402600px;}
.y1e7{bottom:752.273850px;}
.y23b{bottom:755.206350px;}
.y7b{bottom:756.115500px;}
.yf{bottom:756.934650px;}
.y171{bottom:762.514500px;}
.y27f{bottom:763.238850px;}
.y3a{bottom:763.849800px;}
.yd9{bottom:765.091350px;}
.y9f{bottom:765.571350px;}
.y1c5{bottom:765.798900px;}
.y1a6{bottom:767.514000px;}
.y1e6{bottom:770.273850px;}
.ye{bottom:771.934650px;}
.y7a{bottom:772.612500px;}
.y23a{bottom:773.206350px;}
.y27e{bottom:776.075100px;}
.y170{bottom:777.814500px;}
.y1c4{bottom:779.298900px;}
.y39{bottom:780.346800px;}
.yd8{bottom:783.091350px;}
.y9e{bottom:783.571350px;}
.yd{bottom:786.934650px;}
.y1e5{bottom:788.273850px;}
.y27d{bottom:788.911350px;}
.y79{bottom:789.109500px;}
.y1a5{bottom:789.154500px;}
.y239{bottom:791.206350px;}
.y1c3{bottom:792.798900px;}
.y16f{bottom:793.114500px;}
.y38{bottom:796.843800px;}
.yd7{bottom:801.091350px;}
.y9d{bottom:801.571350px;}
.y27c{bottom:801.747600px;}
.yc{bottom:801.934650px;}
.y16e{bottom:808.414500px;}
.y238{bottom:809.206350px;}
.y1a4{bottom:810.795000px;}
.y1c2{bottom:812.835150px;}
.y37{bottom:813.340800px;}
.y27b{bottom:814.583850px;}
.y2cc{bottom:816.605100px;}
.y2e2{bottom:816.908850px;}
.yb{bottom:816.934650px;}
.yd6{bottom:819.091350px;}
.y9c{bottom:819.571350px;}
.y78{bottom:820.840800px;}
.y1c1{bottom:826.335150px;}
.y237{bottom:827.206350px;}
.y27a{bottom:827.420100px;}
.y2cb{bottom:829.351350px;}
.y16d{bottom:829.515750px;}
.y36{bottom:829.840800px;}
.y2e1{bottom:830.858850px;}
.ya{bottom:831.934650px;}
.y1a3{bottom:832.435500px;}
.yd5{bottom:837.091350px;}
.y9b{bottom:837.571350px;}
.y1ff{bottom:838.358700px;}
.y1c0{bottom:839.835150px;}
.y279{bottom:840.256350px;}
.y2ca{bottom:842.097600px;}
.y2e0{bottom:844.808850px;}
.y236{bottom:845.206350px;}
.y16c{bottom:850.617000px;}
.y278{bottom:853.092600px;}
.y1bf{bottom:853.335150px;}
.y1fe{bottom:853.358700px;}
.y1a2{bottom:854.076000px;}
.y2c9{bottom:854.843850px;}
.yd4{bottom:855.091350px;}
.y9a{bottom:855.571350px;}
.y2df{bottom:858.758850px;}
.y235{bottom:863.206350px;}
.y277{bottom:865.928850px;}
.y1be{bottom:866.835150px;}
.y2c8{bottom:867.590100px;}
.y1fd{bottom:868.358700px;}
.y16b{bottom:871.718250px;}
.y2de{bottom:872.708850px;}
.yd3{bottom:873.091350px;}
.y99{bottom:873.571350px;}
.y1a1{bottom:875.716500px;}
.y276{bottom:878.765100px;}
.y2c7{bottom:880.336350px;}
.y234{bottom:881.206350px;}
.y1fc{bottom:883.358700px;}
.y2dd{bottom:886.658850px;}
.y1bd{bottom:886.871400px;}
.yd2{bottom:891.091350px;}
.y98{bottom:891.571350px;}
.y275{bottom:891.601350px;}
.y16a{bottom:892.819500px;}
.y2c6{bottom:893.082600px;}
.y1a0{bottom:897.357000px;}
.y9{bottom:898.837650px;}
.y233{bottom:899.206350px;}
.y1bc{bottom:900.371400px;}
.y2dc{bottom:900.608850px;}
.y274{bottom:904.437600px;}
.y2c5{bottom:905.828850px;}
.yd1{bottom:909.091350px;}
.y97{bottom:909.571350px;}
.y1fb{bottom:909.915000px;}
.y1bb{bottom:913.871400px;}
.y169{bottom:913.920750px;}
.y2db{bottom:914.558850px;}
.y232{bottom:917.206350px;}
.y273{bottom:917.273850px;}
.y8{bottom:918.340650px;}
.y2c4{bottom:918.575100px;}
.y19f{bottom:918.997500px;}
.yd0{bottom:927.091350px;}
.y1ba{bottom:927.371400px;}
.y96{bottom:927.571350px;}
.y2da{bottom:928.508850px;}
.y1fa{bottom:930.057000px;}
.y272{bottom:930.110100px;}
.y2c3{bottom:931.321350px;}
.y168{bottom:935.022000px;}
.y231{bottom:935.206350px;}
.y19e{bottom:940.638000px;}
.y1b9{bottom:940.871400px;}
.y2d9{bottom:942.458850px;}
.y271{bottom:942.946350px;}
.y2c2{bottom:944.067600px;}
.ycf{bottom:945.091350px;}
.y95{bottom:945.571350px;}
.y1f9{bottom:951.697500px;}
.y230{bottom:953.206350px;}
.y270{bottom:955.782600px;}
.y167{bottom:956.123250px;}
.y2d8{bottom:956.408850px;}
.y2c1{bottom:956.813850px;}
.y1b8{bottom:959.400150px;}
.y19d{bottom:962.278500px;}
.yce{bottom:963.091350px;}
.y94{bottom:963.571350px;}
.y26f{bottom:968.618850px;}
.y2c0{bottom:969.560100px;}
.y2d7{bottom:970.358850px;}
.y1b7{bottom:972.900150px;}
.y1f8{bottom:973.338000px;}
.y7{bottom:976.822650px;}
.y166{bottom:977.224500px;}
.ycd{bottom:981.091350px;}
.y26e{bottom:981.455100px;}
.y93{bottom:981.571350px;}
.y2bf{bottom:982.306350px;}
.y19c{bottom:982.420500px;}
.y2d6{bottom:984.308850px;}
.y1b6{bottom:986.400150px;}
.y26d{bottom:994.291350px;}
.y1f7{bottom:994.978500px;}
.y2be{bottom:995.052600px;}
.y165{bottom:996.834000px;}
.y2d5{bottom:998.258850px;}
.ycc{bottom:999.091350px;}
.y92{bottom:999.571350px;}
.y19b{bottom:1007.058000px;}
.y26c{bottom:1007.127600px;}
.y2bd{bottom:1007.798850px;}
.y1b5{bottom:1009.428900px;}
.y1b1{bottom:1009.440150px;}
.y2d4{bottom:1012.208850px;}
.y1f6{bottom:1015.120500px;}
.y6{bottom:1015.828650px;}
.ycb{bottom:1017.091350px;}
.y91{bottom:1017.571350px;}
.y26b{bottom:1019.963850px;}
.y2bc{bottom:1020.545100px;}
.y164{bottom:1020.931500px;}
.y2d3{bottom:1026.158850px;}
.y19a{bottom:1028.698500px;}
.y1b4{bottom:1029.465150px;}
.y26a{bottom:1032.800100px;}
.y2bb{bottom:1033.291350px;}
.yca{bottom:1035.091350px;}
.y90{bottom:1035.571350px;}
.y1f5{bottom:1039.758000px;}
.y2d2{bottom:1040.108850px;}
.y163{bottom:1042.032750px;}
.y1b3{bottom:1042.965150px;}
.y199{bottom:1044.898500px;}
.y269{bottom:1045.636350px;}
.y2ba{bottom:1046.037600px;}
.yc9{bottom:1053.091350px;}
.y8f{bottom:1053.571350px;}
.y2d1{bottom:1054.058850px;}
.y5{bottom:1054.834650px;}
.y162{bottom:1057.332750px;}
.y268{bottom:1058.472600px;}
.y2b9{bottom:1058.783850px;}
.y1f4{bottom:1061.398500px;}
.y1b2{bottom:1063.001400px;}
.y198{bottom:1066.918350px;}
.y2d0{bottom:1068.008850px;}
.yc8{bottom:1071.091350px;}
.y267{bottom:1071.308850px;}
.y2b8{bottom:1071.530100px;}
.y8e{bottom:1071.571350px;}
.y161{bottom:1078.434000px;}
.y2cf{bottom:1081.958850px;}
.y197{bottom:1083.415350px;}
.y266{bottom:1084.145100px;}
.y2b7{bottom:1084.276350px;}
.yc7{bottom:1089.091350px;}
.y8d{bottom:1089.571350px;}
.y4{bottom:1093.840650px;}
.y2ce{bottom:1095.908850px;}
.y265{bottom:1096.981350px;}
.y2b6{bottom:1097.022600px;}
.y160{bottom:1099.912350px;}
.yc6{bottom:1107.091350px;}
.y8c{bottom:1107.571350px;}
.y2b5{bottom:1109.768850px;}
.y264{bottom:1109.817600px;}
.y2cd{bottom:1109.858850px;}
.y3{bottom:1140.946200px;}
.y8b{bottom:1140.946350px;}
.h9{height:23.390640px;}
.h16{height:32.895000px;}
.ha{height:34.944000px;}
.h3{height:35.280000px;}
.h8{height:36.000000px;}
.h11{height:37.281000px;}
.h14{height:39.474000px;}
.hb{height:39.690000px;}
.h17{height:40.860000px;}
.h15{height:43.584000px;}
.h2{height:43.680000px;}
.h4{height:43.860000px;}
.hc{height:44.040000px;}
.h12{height:46.308000px;}
.h10{height:49.032000px;}
.h13{height:53.652204px;}
.he{height:56.173920px;}
.h18{height:56.197920px;}
.hd{height:56.198520px;}
.hf{height:56.320312px;}
.h6{height:69.432264px;}
.h7{height:69.444264px;}
.h5{height:95.906250px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:60.750000px;}
.x3{left:66.450000px;}
.x6{left:70.399950px;}
.xe{left:74.249850px;}
.x1b{left:79.629000px;}
.x2e{left:84.667500px;}
.x12{left:145.164000px;}
.x1c{left:149.792250px;}
.x1e{left:152.814000px;}
.x1d{left:160.311000px;}
.x22{left:176.662500px;}
.x1f{left:215.250000px;}
.x4{left:220.379400px;}
.x13{left:223.155750px;}
.x23{left:254.658750px;}
.x2{left:264.209700px;}
.x14{left:293.650500px;}
.x2b{left:307.164000px;}
.x24{left:326.658750px;}
.x2c{left:347.664000px;}
.x15{left:373.146750px;}
.x2d{left:394.164000px;}
.x25{left:397.162500px;}
.x20{left:422.664000px;}
.x16{left:451.151250px;}
.xf{left:460.331850px;}
.x26{left:466.158750px;}
.x10{left:473.836350px;}
.x2f{left:484.211250px;}
.x17{left:529.155750px;}
.x27{left:535.155000px;}
.x8{left:537.520950px;}
.xa{left:546.518850px;}
.x9{left:551.016750px;}
.xb{left:558.395850px;}
.xc{left:564.518850px;}
.x28{left:604.151250px;}
.x18{left:610.156500px;}
.x21{left:629.659500px;}
.x29{left:682.147500px;}
.x19{left:686.656500px;}
.x11{left:723.708900px;}
.x7{left:752.065200px;}
.x1a{left:755.659500px;}
.x2a{left:760.143750px;}
.x1{left:824.963400px;}
.xd{left:867.000000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:20.400000pt;}
.v3{vertical-align:24.000000pt;}
.v1{vertical-align:26.400000pt;}
.lsa{letter-spacing:-2.639520pt;}
.ls9{letter-spacing:-2.492880pt;}
.ls4{letter-spacing:-1.578667pt;}
.ls8{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.530400pt;}
.lsd{letter-spacing:-0.399600pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000331pt;}
.lsb{letter-spacing:0.353246pt;}
.ls6{letter-spacing:0.532800pt;}
.ls0{letter-spacing:3.360000pt;}
.ls1{letter-spacing:15.289067pt;}
.ls2{letter-spacing:21.770667pt;}
.ls5{letter-spacing:1421.225067pt;}
.ws3{word-spacing:-18.186667pt;}
.ws7{word-spacing:-13.866667pt;}
.ws8{word-spacing:-13.344000pt;}
.wsec{word-spacing:-13.066667pt;}
.ws4{word-spacing:-12.800000pt;}
.wsaa{word-spacing:-12.602667pt;}
.ws5{word-spacing:-11.520000pt;}
.ws120{word-spacing:-11.120000pt;}
.ws0{word-spacing:-10.813088pt;}
.wsde{word-spacing:-10.704480pt;}
.wsc{word-spacing:-10.240427pt;}
.ws2{word-spacing:-10.240000pt;}
.wsab{word-spacing:-10.109787pt;}
.ws6{word-spacing:-9.193600pt;}
.wsed{word-spacing:-8.663200pt;}
.ws3a{word-spacing:-7.040000pt;}
.wsc0{word-spacing:-6.936000pt;}
.ws1{word-spacing:-6.789120pt;}
.wsdf{word-spacing:-6.120000pt;}
.ws74{word-spacing:-5.066667pt;}
.ws57{word-spacing:-5.012800pt;}
.ws113{word-spacing:-4.106667pt;}
.ws1b{word-spacing:-4.000000pt;}
.ws10d{word-spacing:-3.947200pt;}
.ws15{word-spacing:-3.840533pt;}
.ws12{word-spacing:-3.733867pt;}
.ws98{word-spacing:-3.680000pt;}
.ws96{word-spacing:-2.986667pt;}
.wscd{word-spacing:-2.826133pt;}
.wsbf{word-spacing:-2.773333pt;}
.ws50{word-spacing:-2.560000pt;}
.ws16{word-spacing:-2.546274pt;}
.ws6e{word-spacing:-2.506667pt;}
.ws43{word-spacing:-2.400000pt;}
.ws54{word-spacing:-2.347200pt;}
.ws7e{word-spacing:-2.293333pt;}
.ws61{word-spacing:-2.186667pt;}
.wsf9{word-spacing:-2.080000pt;}
.wsd6{word-spacing:-1.973333pt;}
.ws3c{word-spacing:-1.920000pt;}
.ws47{word-spacing:-1.813333pt;}
.ws94{word-spacing:-1.760000pt;}
.ws4d{word-spacing:-1.706667pt;}
.ws88{word-spacing:-1.653867pt;}
.ws7b{word-spacing:-1.600000pt;}
.wsb{word-spacing:-1.578667pt;}
.ws69{word-spacing:-1.547200pt;}
.ws4f{word-spacing:-1.493333pt;}
.ws8a{word-spacing:-1.386667pt;}
.ws36{word-spacing:-1.295520pt;}
.ws8d{word-spacing:-1.173333pt;}
.ws7a{word-spacing:-1.120000pt;}
.ws91{word-spacing:-1.066667pt;}
.wsdc{word-spacing:-1.013333pt;}
.ws9d{word-spacing:-0.906667pt;}
.ws64{word-spacing:-0.853867pt;}
.wsb4{word-spacing:-0.800000pt;}
.ws53{word-spacing:-0.747200pt;}
.wsa9{word-spacing:-0.693333pt;}
.ws72{word-spacing:-0.639467pt;}
.wsd{word-spacing:-0.597760pt;}
.ws45{word-spacing:-0.586667pt;}
.wsae{word-spacing:-0.532800pt;}
.ws92{word-spacing:-0.426667pt;}
.wsf3{word-spacing:-0.373333pt;}
.wse{word-spacing:-0.341333pt;}
.ws7d{word-spacing:-0.320000pt;}
.ws114{word-spacing:-0.213333pt;}
.ws89{word-spacing:-0.106667pt;}
.wscc{word-spacing:-0.053867pt;}
.wsc1{word-spacing:-0.053333pt;}
.wsac{word-spacing:-0.045333pt;}
.ws9{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.053867pt;}
.ws8e{word-spacing:0.106667pt;}
.ws9a{word-spacing:0.160533pt;}
.ws8f{word-spacing:0.213333pt;}
.wsb7{word-spacing:0.266667pt;}
.wsb9{word-spacing:0.320000pt;}
.ws111{word-spacing:0.353246pt;}
.wsfc{word-spacing:0.426667pt;}
.wsb8{word-spacing:0.532800pt;}
.ws66{word-spacing:0.586667pt;}
.ws119{word-spacing:0.639467pt;}
.wse6{word-spacing:0.693333pt;}
.ws4e{word-spacing:0.747200pt;}
.wscb{word-spacing:0.800000pt;}
.ws8c{word-spacing:0.812926pt;}
.wsea{word-spacing:0.853867pt;}
.ws5a{word-spacing:0.906667pt;}
.ws1d{word-spacing:0.954366pt;}
.ws70{word-spacing:1.013333pt;}
.ws93{word-spacing:1.120000pt;}
.wsa1{word-spacing:1.173333pt;}
.ws8b{word-spacing:1.226133pt;}
.ws35{word-spacing:1.248000pt;}
.ws56{word-spacing:1.280000pt;}
.ws42{word-spacing:1.386667pt;}
.ws1c{word-spacing:1.439467pt;}
.ws4b{word-spacing:1.493333pt;}
.wsb3{word-spacing:1.547200pt;}
.wsa{word-spacing:1.578667pt;}
.ws10{word-spacing:1.653867pt;}
.ws65{word-spacing:1.706667pt;}
.wscf{word-spacing:1.813333pt;}
.ws34{word-spacing:1.919520pt;}
.wsce{word-spacing:1.920000pt;}
.wsa3{word-spacing:1.973333pt;}
.ws6c{word-spacing:2.026133pt;}
.ws33{word-spacing:2.064000pt;}
.wsd9{word-spacing:2.132800pt;}
.wsa4{word-spacing:2.240533pt;}
.ws117{word-spacing:2.293333pt;}
.ws2b{word-spacing:2.352000pt;}
.wse1{word-spacing:2.400000pt;}
.ws60{word-spacing:2.506667pt;}
.ws26{word-spacing:2.613333pt;}
.ws2e{word-spacing:2.688000pt;}
.ws10f{word-spacing:2.719467pt;}
.wsa7{word-spacing:2.826133pt;}
.wsd5{word-spacing:2.880000pt;}
.ws105{word-spacing:2.932800pt;}
.ws118{word-spacing:2.986667pt;}
.ws109{word-spacing:3.040533pt;}
.wsfa{word-spacing:3.147200pt;}
.ws86{word-spacing:3.200000pt;}
.ws11a{word-spacing:3.306667pt;}
.ws17{word-spacing:3.360000pt;}
.wsfe{word-spacing:3.413333pt;}
.wsf6{word-spacing:3.466667pt;}
.ws51{word-spacing:3.519467pt;}
.ws9f{word-spacing:3.573333pt;}
.ws27{word-spacing:3.626133pt;}
.ws5f{word-spacing:3.680000pt;}
.ws28{word-spacing:3.733867pt;}
.ws95{word-spacing:3.786667pt;}
.wsfb{word-spacing:3.840533pt;}
.ws90{word-spacing:3.893333pt;}
.wsb6{word-spacing:3.947200pt;}
.wsda{word-spacing:4.000000pt;}
.ws87{word-spacing:4.106667pt;}
.ws48{word-spacing:4.137120pt;}
.ws79{word-spacing:4.160000pt;}
.ws39{word-spacing:4.172480pt;}
.wsa2{word-spacing:4.212800pt;}
.ws59{word-spacing:4.266667pt;}
.ws103{word-spacing:4.319467pt;}
.wsad{word-spacing:4.426133pt;}
.ws4c{word-spacing:4.480000pt;}
.ws122{word-spacing:4.533867pt;}
.ws5b{word-spacing:4.586667pt;}
.wsf2{word-spacing:4.632160pt;}
.ws10a{word-spacing:4.640533pt;}
.ws108{word-spacing:4.693333pt;}
.ws107{word-spacing:4.746667pt;}
.ws14{word-spacing:4.853333pt;}
.ws10e{word-spacing:4.906667pt;}
.ws97{word-spacing:5.012800pt;}
.ws2f{word-spacing:5.040000pt;}
.ws44{word-spacing:5.119467pt;}
.ws11{word-spacing:5.173333pt;}
.wsff{word-spacing:5.227200pt;}
.wsf{word-spacing:5.386667pt;}
.ws11f{word-spacing:5.440533pt;}
.ws20{word-spacing:5.493333pt;}
.ws106{word-spacing:5.546667pt;}
.ws18{word-spacing:5.653333pt;}
.ws116{word-spacing:5.706133pt;}
.ws23{word-spacing:5.760000pt;}
.ws6b{word-spacing:5.812800pt;}
.wse2{word-spacing:5.919467pt;}
.wse3{word-spacing:5.973333pt;}
.wsdb{word-spacing:6.027200pt;}
.wse7{word-spacing:6.046914pt;}
.ws78{word-spacing:6.080000pt;}
.ws6d{word-spacing:6.133867pt;}
.ws5e{word-spacing:6.186667pt;}
.ws13{word-spacing:6.240000pt;}
.ws38{word-spacing:6.293333pt;}
.ws104{word-spacing:6.346667pt;}
.ws11e{word-spacing:6.400000pt;}
.ws2c{word-spacing:6.432000pt;}
.wsa5{word-spacing:6.453333pt;}
.ws99{word-spacing:6.506133pt;}
.wsc9{word-spacing:6.666667pt;}
.wsa0{word-spacing:6.773333pt;}
.wsb0{word-spacing:6.827200pt;}
.wsf1{word-spacing:6.986667pt;}
.ws77{word-spacing:7.093333pt;}
.wsb5{word-spacing:7.253333pt;}
.ws10b{word-spacing:7.360000pt;}
.ws9c{word-spacing:7.413867pt;}
.ws3e{word-spacing:7.520533pt;}
.ws11b{word-spacing:7.573333pt;}
.wsf0{word-spacing:7.627200pt;}
.ws7c{word-spacing:7.733333pt;}
.wsdd{word-spacing:7.786667pt;}
.wsfd{word-spacing:7.892800pt;}
.ws6a{word-spacing:7.946667pt;}
.wsd1{word-spacing:7.999467pt;}
.ws32{word-spacing:8.016480pt;}
.ws46{word-spacing:8.053333pt;}
.ws6f{word-spacing:8.106133pt;}
.wsbb{word-spacing:8.160000pt;}
.ws30{word-spacing:8.256000pt;}
.ws73{word-spacing:8.320533pt;}
.wsbe{word-spacing:8.426667pt;}
.ws41{word-spacing:8.586667pt;}
.ws67{word-spacing:8.692800pt;}
.ws49{word-spacing:8.746667pt;}
.ws58{word-spacing:8.799467pt;}
.ws40{word-spacing:8.853333pt;}
.ws110{word-spacing:8.907200pt;}
.ws2a{word-spacing:8.960000pt;}
.ws71{word-spacing:9.066667pt;}
.ws31{word-spacing:9.120000pt;}
.ws63{word-spacing:9.120533pt;}
.ws112{word-spacing:9.173333pt;}
.ws75{word-spacing:9.333333pt;}
.ws37{word-spacing:9.386133pt;}
.wsd3{word-spacing:9.440000pt;}
.wse4{word-spacing:9.546667pt;}
.ws5c{word-spacing:9.599467pt;}
.wsba{word-spacing:9.653333pt;}
.ws2d{word-spacing:9.791520pt;}
.ws9b{word-spacing:9.866667pt;}
.ws10c{word-spacing:9.920000pt;}
.wsf5{word-spacing:10.006880pt;}
.ws9e{word-spacing:10.080000pt;}
.ws115{word-spacing:10.133333pt;}
.wsbc{word-spacing:10.186133pt;}
.wse9{word-spacing:10.240000pt;}
.wsca{word-spacing:10.507200pt;}
.ws3f{word-spacing:10.879467pt;}
.ws101{word-spacing:11.092800pt;}
.ws123{word-spacing:11.146667pt;}
.ws124{word-spacing:11.253333pt;}
.wsf8{word-spacing:11.307200pt;}
.wsd0{word-spacing:11.360000pt;}
.ws52{word-spacing:11.626667pt;}
.ws85{word-spacing:11.679467pt;}
.ws4a{word-spacing:11.786133pt;}
.wseb{word-spacing:11.946667pt;}
.ws68{word-spacing:12.372800pt;}
.ws11c{word-spacing:12.479467pt;}
.wsb1{word-spacing:12.746667pt;}
.ws29{word-spacing:13.172800pt;}
.ws1a{word-spacing:13.279467pt;}
.ws1f{word-spacing:13.706667pt;}
.ws102{word-spacing:14.026667pt;}
.wse5{word-spacing:14.187200pt;}
.ws80{word-spacing:14.400000pt;}
.wsd4{word-spacing:14.666133pt;}
.ws81{word-spacing:14.720000pt;}
.ws24{word-spacing:14.987200pt;}
.wsf4{word-spacing:15.093333pt;}
.ws3d{word-spacing:15.146667pt;}
.ws1e{word-spacing:15.200000pt;}
.ws84{word-spacing:15.466133pt;}
.ws83{word-spacing:15.733333pt;}
.wsa8{word-spacing:15.787200pt;}
.ws76{word-spacing:15.893333pt;}
.wse8{word-spacing:16.480533pt;}
.wsee{word-spacing:16.800000pt;}
.ws11d{word-spacing:17.013333pt;}
.wsc8{word-spacing:17.333333pt;}
.ws55{word-spacing:17.386667pt;}
.wsf7{word-spacing:17.813333pt;}
.ws82{word-spacing:17.973867pt;}
.ws62{word-spacing:18.240000pt;}
.ws25{word-spacing:18.346133pt;}
.wsa6{word-spacing:18.773867pt;}
.ws21{word-spacing:19.039467pt;}
.wsb2{word-spacing:19.093333pt;}
.wsaf{word-spacing:19.467200pt;}
.wsbd{word-spacing:20.053867pt;}
.wsd2{word-spacing:20.160533pt;}
.wsc7{word-spacing:20.693333pt;}
.wsef{word-spacing:21.439467pt;}
.wsd8{word-spacing:22.613333pt;}
.ws7f{word-spacing:23.093333pt;}
.ws19{word-spacing:23.680000pt;}
.wsd7{word-spacing:24.426133pt;}
.ws22{word-spacing:27.093333pt;}
.ws100{word-spacing:27.627200pt;}
.ws121{word-spacing:28.799467pt;}
.ws5d{word-spacing:30.400533pt;}
.wsc3{word-spacing:257.376000pt;}
.wsc2{word-spacing:260.496000pt;}
.wsc4{word-spacing:277.248000pt;}
.wsc6{word-spacing:311.952000pt;}
.wse0{word-spacing:415.920000pt;}
.wsc5{word-spacing:664.032000pt;}
.ws125{word-spacing:1382.825067pt;}
._c{margin-left:-2657.276160pt;}
._b{margin-left:-1555.438560pt;}
._a{margin-left:-52.480000pt;}
._5{margin-left:-42.640000pt;}
._6b{margin-left:-19.142400pt;}
._30{margin-left:-13.834667pt;}
._61{margin-left:-12.480000pt;}
._6{margin-left:-10.240000pt;}
._d{margin-left:-8.586667pt;}
._6c{margin-left:-7.541333pt;}
._2{margin-left:-6.518368pt;}
._9{margin-left:-5.040000pt;}
._e{margin-left:-4.066133pt;}
._3{margin-left:-3.157333pt;}
._0{margin-left:-1.578667pt;}
._4{width:1.186133pt;}
._7{width:2.389333pt;}
._29{width:5.666667pt;}
._10{width:6.936000pt;}
._78{width:10.240000pt;}
._77{width:11.520000pt;}
._8{width:12.480000pt;}
._79{width:18.320000pt;}
._7a{width:19.438000pt;}
._1{width:29.977600pt;}
._f{width:33.792000pt;}
._19{width:45.333333pt;}
._37{width:48.000000pt;}
._23{width:55.624000pt;}
._28{width:57.528000pt;}
._71{width:58.512000pt;}
._25{width:61.426667pt;}
._1f{width:62.877333pt;}
._75{width:64.010667pt;}
._41{width:71.328000pt;}
._1b{width:77.429333pt;}
._2e{width:78.336000pt;}
._2f{width:79.333333pt;}
._50{width:80.746667pt;}
._21{width:83.232000pt;}
._4f{width:85.400000pt;}
._1c{width:88.536000pt;}
._4e{width:91.026667pt;}
._59{width:92.120000pt;}
._27{width:93.432000pt;}
._1d{width:94.882667pt;}
._4c{width:100.754667pt;}
._22{width:101.682667pt;}
._5d{width:102.973333pt;}
._2b{width:104.493333pt;}
._2d{width:106.986667pt;}
._57{width:108.200000pt;}
._20{width:109.888000pt;}
._4b{width:112.040000pt;}
._55{width:113.813333pt;}
._1e{width:115.690667pt;}
._69{width:117.205333pt;}
._58{width:123.845333pt;}
._54{width:125.173333pt;}
._5c{width:126.360000pt;}
._2a{width:129.744000pt;}
._60{width:130.656000pt;}
._52{width:132.120000pt;}
._18{width:133.688000pt;}
._53{width:135.200000pt;}
._2c{width:136.498667pt;}
._14{width:138.992000pt;}
._24{width:141.893333pt;}
._66{width:143.168000pt;}
._51{width:144.637333pt;}
._49{width:146.800000pt;}
._6f{width:150.240000pt;}
._1a{width:151.232000pt;}
._48{width:152.160000pt;}
._56{width:154.960000pt;}
._5a{width:156.520000pt;}
._47{width:157.480000pt;}
._17{width:160.344000pt;}
._26{width:163.336000pt;}
._13{width:165.693333pt;}
._67{width:167.798368pt;}
._65{width:169.856000pt;}
._15{width:170.997333pt;}
._70{width:173.322667pt;}
._16{width:176.346667pt;}
._46{width:178.800000pt;}
._5b{width:183.200000pt;}
._6e{width:194.688000pt;}
._34{width:202.080000pt;}
._6d{width:221.456000pt;}
._4d{width:244.120000pt;}
._4a{width:262.600000pt;}
._5e{width:269.456000pt;}
._43{width:270.720000pt;}
._3a{width:290.592000pt;}
._5f{width:291.728000pt;}
._44{width:295.920000pt;}
._3f{width:297.408000pt;}
._40{width:298.608000pt;}
._3c{width:322.608000pt;}
._39{width:325.296000pt;}
._32{width:336.816000pt;}
._31{width:338.304000pt;}
._33{width:342.144000pt;}
._3e{width:343.621333pt;}
._3b{width:351.984000pt;}
._42{width:398.409227pt;}
._38{width:400.501333pt;}
._3d{width:425.097227pt;}
._73{width:439.968000pt;}
._68{width:464.208000pt;}
._45{width:470.069333pt;}
._6a{width:490.896000pt;}
._64{width:493.128000pt;}
._11{width:498.848000pt;}
._12{width:530.853333pt;}
._63{width:535.968000pt;}
._62{width:563.078368pt;}
._35{width:665.472000pt;}
._36{width:685.296000pt;}
._76{width:889.440000pt;}
._74{width:911.664000pt;}
._72{width:964.128000pt;}
.fs6{font-size:28.288000pt;}
.fsa{font-size:30.056000pt;}
.fs5{font-size:34.666667pt;}
.fs8{font-size:35.360000pt;}
.fs4{font-size:38.896000pt;}
.fsb{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:36.785200pt;}
.y1{bottom:36.787867pt;}
.y22f{bottom:72.081200pt;}
.yc5{bottom:72.507867pt;}
.y118{bottom:72.534400pt;}
.yfe{bottom:72.534533pt;}
.y77{bottom:72.537467pt;}
.y148{bottom:72.538400pt;}
.y196{bottom:72.542400pt;}
.y60{bottom:72.542933pt;}
.y2f{bottom:72.566933pt;}
.y263{bottom:72.574533pt;}
.y15f{bottom:72.618400pt;}
.y131{bottom:72.867733pt;}
.y2b4{bottom:73.704533pt;}
.y1e4{bottom:80.521067pt;}
.y262{bottom:83.904533pt;}
.y2b3{bottom:85.114533pt;}
.y2e{bottom:85.900267pt;}
.y22e{bottom:88.081200pt;}
.yc4{bottom:88.507867pt;}
.y117{bottom:88.534400pt;}
.yfd{bottom:88.534533pt;}
.y76{bottom:88.537467pt;}
.y147{bottom:88.538400pt;}
.y195{bottom:88.542400pt;}
.y5f{bottom:88.542933pt;}
.y15e{bottom:88.831733pt;}
.y130{bottom:89.334400pt;}
.y1e3{bottom:93.854400pt;}
.y261{bottom:95.234533pt;}
.y2b2{bottom:96.524533pt;}
.y2d{bottom:99.233600pt;}
.y22d{bottom:104.081200pt;}
.yc3{bottom:104.507867pt;}
.y116{bottom:104.534400pt;}
.yfc{bottom:104.534533pt;}
.y75{bottom:104.537467pt;}
.y146{bottom:104.538400pt;}
.y194{bottom:104.542400pt;}
.y5e{bottom:104.542933pt;}
.y15d{bottom:105.045067pt;}
.y12f{bottom:105.801067pt;}
.y260{bottom:106.564533pt;}
.y1e2{bottom:107.187733pt;}
.y2b1{bottom:107.934533pt;}
.y25f{bottom:117.894533pt;}
.y2b0{bottom:119.344533pt;}
.y22c{bottom:120.081200pt;}
.yc2{bottom:120.507867pt;}
.y1e1{bottom:120.521067pt;}
.y115{bottom:120.534400pt;}
.yfb{bottom:120.534533pt;}
.y74{bottom:120.537467pt;}
.y145{bottom:120.538400pt;}
.y193{bottom:120.542400pt;}
.y5d{bottom:120.542933pt;}
.y15c{bottom:121.258400pt;}
.y12e{bottom:122.267733pt;}
.y2c{bottom:124.566933pt;}
.y25e{bottom:129.224533pt;}
.y2af{bottom:130.754533pt;}
.y22b{bottom:136.081200pt;}
.yc1{bottom:136.507867pt;}
.y114{bottom:136.534400pt;}
.yfa{bottom:136.534533pt;}
.y73{bottom:136.537467pt;}
.y144{bottom:136.538400pt;}
.y192{bottom:136.542400pt;}
.y5c{bottom:136.542933pt;}
.y15b{bottom:137.471733pt;}
.y2b{bottom:137.900267pt;}
.y12d{bottom:138.734400pt;}
.y25d{bottom:140.554533pt;}
.y2ae{bottom:142.164533pt;}
.y215{bottom:144.113467pt;}
.y1e0{bottom:144.113600pt;}
.y25c{bottom:151.884533pt;}
.y22a{bottom:152.081200pt;}
.yc0{bottom:152.507867pt;}
.y113{bottom:152.534400pt;}
.yf9{bottom:152.534533pt;}
.y72{bottom:152.537467pt;}
.y143{bottom:152.538400pt;}
.y191{bottom:152.542400pt;}
.y5b{bottom:152.542933pt;}
.y2ad{bottom:153.574533pt;}
.y15a{bottom:153.685067pt;}
.y12c{bottom:155.201067pt;}
.y2a{bottom:156.033600pt;}
.y214{bottom:158.513467pt;}
.y1df{bottom:162.017600pt;}
.y25b{bottom:163.214533pt;}
.y29{bottom:164.566933pt;}
.y2ac{bottom:164.984533pt;}
.y229{bottom:168.081200pt;}
.ybf{bottom:168.507867pt;}
.y112{bottom:168.534400pt;}
.yf8{bottom:168.534533pt;}
.y71{bottom:168.537467pt;}
.y142{bottom:168.538400pt;}
.y190{bottom:168.542400pt;}
.y5a{bottom:168.542933pt;}
.y159{bottom:169.898400pt;}
.y12b{bottom:171.667733pt;}
.y25a{bottom:174.544533pt;}
.y2ab{bottom:176.394533pt;}
.y213{bottom:176.417467pt;}
.y1de{bottom:181.253600pt;}
.y28{bottom:182.700267pt;}
.y228{bottom:184.081200pt;}
.ybe{bottom:184.507867pt;}
.y111{bottom:184.534400pt;}
.yf7{bottom:184.534533pt;}
.y70{bottom:184.537467pt;}
.y141{bottom:184.538400pt;}
.y18f{bottom:184.542400pt;}
.y59{bottom:184.542933pt;}
.y259{bottom:185.874533pt;}
.y158{bottom:186.111733pt;}
.y2aa{bottom:187.804533pt;}
.y12a{bottom:188.134400pt;}
.y27{bottom:191.233600pt;}
.y212{bottom:195.653467pt;}
.y258{bottom:197.204533pt;}
.y2a9{bottom:199.214533pt;}
.y227{bottom:200.081200pt;}
.y1dd{bottom:200.489600pt;}
.ybd{bottom:200.507867pt;}
.y110{bottom:200.534400pt;}
.yf6{bottom:200.534533pt;}
.y6f{bottom:200.537467pt;}
.y140{bottom:200.538400pt;}
.y18e{bottom:200.542400pt;}
.y58{bottom:200.542933pt;}
.y157{bottom:202.325067pt;}
.y26{bottom:204.566933pt;}
.y129{bottom:204.601067pt;}
.y257{bottom:208.534533pt;}
.y2a8{bottom:210.624533pt;}
.y211{bottom:214.889467pt;}
.y226{bottom:216.081200pt;}
.ybc{bottom:216.507867pt;}
.y10f{bottom:216.534400pt;}
.yf5{bottom:216.534533pt;}
.y6e{bottom:216.537467pt;}
.y13f{bottom:216.538400pt;}
.y18d{bottom:216.542400pt;}
.y156{bottom:218.538400pt;}
.y1dc{bottom:219.725600pt;}
.y256{bottom:219.867867pt;}
.y128{bottom:221.067733pt;}
.y2a7{bottom:222.034533pt;}
.y25{bottom:222.700267pt;}
.y24{bottom:231.233600pt;}
.y225{bottom:232.081200pt;}
.ybb{bottom:232.507867pt;}
.y10e{bottom:232.534400pt;}
.yf4{bottom:232.534533pt;}
.y6d{bottom:232.537467pt;}
.y13e{bottom:232.538400pt;}
.y18c{bottom:232.542400pt;}
.y2a6{bottom:233.444533pt;}
.y210{bottom:234.125467pt;}
.y155{bottom:234.751733pt;}
.y127{bottom:237.534400pt;}
.y1db{bottom:238.961600pt;}
.y23{bottom:244.566933pt;}
.y2a5{bottom:244.854533pt;}
.y224{bottom:248.081200pt;}
.yba{bottom:248.507867pt;}
.y10d{bottom:248.534400pt;}
.yf3{bottom:248.534533pt;}
.y6c{bottom:248.537467pt;}
.y18b{bottom:248.542400pt;}
.y154{bottom:250.965067pt;}
.y20f{bottom:253.361467pt;}
.y57{bottom:253.721600pt;}
.y126{bottom:254.001067pt;}
.y2a4{bottom:256.264533pt;}
.y22{bottom:257.900267pt;}
.y1da{bottom:258.197600pt;}
.y223{bottom:264.081200pt;}
.yb9{bottom:264.507867pt;}
.y10c{bottom:264.534400pt;}
.yf2{bottom:264.534533pt;}
.y6b{bottom:264.537467pt;}
.y18a{bottom:264.542400pt;}
.y153{bottom:267.178400pt;}
.y2a3{bottom:267.674533pt;}
.y20e{bottom:267.761467pt;}
.y56{bottom:268.385600pt;}
.y125{bottom:270.467733pt;}
.y21{bottom:276.033600pt;}
.y1d9{bottom:277.433600pt;}
.y13d{bottom:277.525067pt;}
.y2a2{bottom:279.084533pt;}
.y222{bottom:280.081200pt;}
.yb8{bottom:280.507867pt;}
.y10b{bottom:280.534400pt;}
.yf1{bottom:280.534533pt;}
.y6a{bottom:280.537467pt;}
.y189{bottom:280.542400pt;}
.y55{bottom:283.049600pt;}
.y152{bottom:283.391733pt;}
.y20{bottom:284.566933pt;}
.y255{bottom:285.160533pt;}
.y124{bottom:286.934400pt;}
.y20d{bottom:286.997467pt;}
.y2a1{bottom:290.494533pt;}
.y13c{bottom:293.525067pt;}
.y221{bottom:296.081200pt;}
.yb7{bottom:296.507867pt;}
.y10a{bottom:296.534400pt;}
.yf0{bottom:296.534533pt;}
.y69{bottom:296.537467pt;}
.y188{bottom:296.542400pt;}
.y1d8{bottom:296.669600pt;}
.y54{bottom:297.713600pt;}
.y254{bottom:297.960533pt;}
.y151{bottom:299.605067pt;}
.y2a0{bottom:301.904533pt;}
.y1f{bottom:302.700267pt;}
.y123{bottom:303.401067pt;}
.y20c{bottom:306.233467pt;}
.y13b{bottom:309.525067pt;}
.y253{bottom:310.760533pt;}
.y1e{bottom:311.233600pt;}
.y220{bottom:312.081200pt;}
.y53{bottom:312.377600pt;}
.yb6{bottom:312.507867pt;}
.y109{bottom:312.534400pt;}
.yef{bottom:312.534533pt;}
.y68{bottom:312.537467pt;}
.y187{bottom:312.542400pt;}
.y29f{bottom:313.314533pt;}
.y150{bottom:315.818400pt;}
.y1d7{bottom:315.905600pt;}
.y122{bottom:319.867733pt;}
.y252{bottom:323.560533pt;}
.y1d{bottom:324.566933pt;}
.y29e{bottom:324.724533pt;}
.y20b{bottom:325.469467pt;}
.y8a{bottom:326.911200pt;}
.y52{bottom:327.041600pt;}
.y21f{bottom:328.081200pt;}
.yb5{bottom:328.507867pt;}
.y108{bottom:328.534400pt;}
.yee{bottom:328.534533pt;}
.y67{bottom:328.537467pt;}
.y186{bottom:328.542400pt;}
.y14f{bottom:332.031733pt;}
.y1d6{bottom:335.141600pt;}
.y29d{bottom:336.134533pt;}
.y121{bottom:336.334400pt;}
.y251{bottom:336.360533pt;}
.y13a{bottom:337.525067pt;}
.y51{bottom:341.705600pt;}
.y1c{bottom:342.700267pt;}
.y21e{bottom:344.081200pt;}
.yb4{bottom:344.507867pt;}
.y107{bottom:344.534400pt;}
.yed{bottom:344.534533pt;}
.y66{bottom:344.537467pt;}
.y185{bottom:344.542400pt;}
.y20a{bottom:344.705467pt;}
.y29c{bottom:347.544533pt;}
.y14e{bottom:348.245067pt;}
.y250{bottom:349.160533pt;}
.y120{bottom:352.801067pt;}
.y139{bottom:353.525067pt;}
.y1d5{bottom:354.377600pt;}
.y35{bottom:354.849467pt;}
.y50{bottom:356.369600pt;}
.y29b{bottom:358.954533pt;}
.y21d{bottom:360.081200pt;}
.yb3{bottom:360.507867pt;}
.y106{bottom:360.534400pt;}
.yec{bottom:360.534533pt;}
.y65{bottom:360.537467pt;}
.y184{bottom:360.542400pt;}
.y209{bottom:363.941467pt;}
.y14d{bottom:364.458400pt;}
.y24f{bottom:367.293867pt;}
.y34{bottom:367.649467pt;}
.y11f{bottom:369.267733pt;}
.y138{bottom:369.525067pt;}
.y29a{bottom:370.364533pt;}
.y4f{bottom:371.033600pt;}
.y1d4{bottom:373.613600pt;}
.y21c{bottom:376.081200pt;}
.yb2{bottom:376.507867pt;}
.y105{bottom:376.534400pt;}
.yeb{bottom:376.534533pt;}
.y64{bottom:376.537467pt;}
.y183{bottom:376.542400pt;}
.y208{bottom:378.341467pt;}
.y24e{bottom:380.093867pt;}
.y33{bottom:380.449467pt;}
.y14c{bottom:380.671733pt;}
.y299{bottom:381.774533pt;}
.y137{bottom:385.525067pt;}
.y4e{bottom:385.697600pt;}
.y11e{bottom:385.734400pt;}
.y21b{bottom:392.081200pt;}
.yb1{bottom:392.507867pt;}
.y104{bottom:392.534400pt;}
.yea{bottom:392.534533pt;}
.y63{bottom:392.537467pt;}
.y182{bottom:392.542400pt;}
.y1d3{bottom:392.849600pt;}
.y24d{bottom:392.893867pt;}
.y298{bottom:393.184533pt;}
.y32{bottom:393.249467pt;}
.y14b{bottom:396.885067pt;}
.y207{bottom:397.577467pt;}
.y4d{bottom:400.361600pt;}
.y136{bottom:401.525067pt;}
.y11d{bottom:402.201067pt;}
.y297{bottom:404.594533pt;}
.y24c{bottom:405.693867pt;}
.y31{bottom:406.049467pt;}
.y21a{bottom:408.081200pt;}
.yb0{bottom:408.507867pt;}
.y103{bottom:408.534400pt;}
.ye9{bottom:408.534533pt;}
.y181{bottom:408.542400pt;}
.y62{bottom:408.542933pt;}
.y1d2{bottom:410.753600pt;}
.y14a{bottom:413.098400pt;}
.y4c{bottom:415.025600pt;}
.y296{bottom:416.004533pt;}
.y206{bottom:416.813467pt;}
.y24b{bottom:418.493867pt;}
.y11c{bottom:418.667733pt;}
.y30{bottom:418.849467pt;}
.y219{bottom:424.081200pt;}
.yaf{bottom:424.507867pt;}
.y102{bottom:424.534400pt;}
.ye8{bottom:424.534533pt;}
.y180{bottom:424.542400pt;}
.y61{bottom:424.542933pt;}
.y295{bottom:427.414533pt;}
.y149{bottom:429.311733pt;}
.y135{bottom:429.525067pt;}
.y4b{bottom:429.689600pt;}
.y1d1{bottom:432.653600pt;}
.y11b{bottom:435.134400pt;}
.y205{bottom:436.049467pt;}
.y24a{bottom:436.627200pt;}
.y294{bottom:438.824533pt;}
.y218{bottom:440.081200pt;}
.yae{bottom:440.507867pt;}
.y101{bottom:440.534400pt;}
.ye7{bottom:440.534533pt;}
.y17f{bottom:440.542400pt;}
.y4a{bottom:444.353600pt;}
.y134{bottom:445.525067pt;}
.y293{bottom:450.234533pt;}
.y11a{bottom:451.601067pt;}
.y1d0{bottom:451.889600pt;}
.y204{bottom:453.953467pt;}
.y249{bottom:454.760533pt;}
.y217{bottom:456.081200pt;}
.yad{bottom:456.507867pt;}
.ye6{bottom:456.534533pt;}
.y17e{bottom:456.542400pt;}
.y49{bottom:459.017600pt;}
.y292{bottom:461.644533pt;}
.y89{bottom:466.772000pt;}
.y248{bottom:467.560533pt;}
.y119{bottom:468.067733pt;}
.y100{bottom:468.534400pt;}
.y1cf{bottom:471.460133pt;}
.y216{bottom:472.081200pt;}
.yac{bottom:472.507867pt;}
.y291{bottom:473.054533pt;}
.y48{bottom:473.681600pt;}
.y203{bottom:475.853467pt;}
.y247{bottom:480.360533pt;}
.y88{bottom:481.436000pt;}
.y290{bottom:484.464533pt;}
.yff{bottom:484.534400pt;}
.y1ce{bottom:486.124133pt;}
.ye5{bottom:488.081200pt;}
.y47{bottom:488.345600pt;}
.yab{bottom:488.507867pt;}
.y17d{bottom:489.244933pt;}
.y1b{bottom:492.830800pt;}
.y202{bottom:495.089467pt;}
.y28f{bottom:495.874533pt;}
.y87{bottom:496.100000pt;}
.y246{bottom:498.493867pt;}
.y17c{bottom:502.844933pt;}
.y46{bottom:503.009600pt;}
.ye4{bottom:504.081200pt;}
.yaa{bottom:504.507867pt;}
.y1a{bottom:506.164133pt;}
.y28e{bottom:507.284533pt;}
.y133{bottom:510.027733pt;}
.y1b0{bottom:510.462267pt;}
.y86{bottom:510.764000pt;}
.y201{bottom:514.660133pt;}
.y17b{bottom:516.444933pt;}
.y245{bottom:516.627200pt;}
.y45{bottom:517.673600pt;}
.y28d{bottom:518.694533pt;}
.y19{bottom:519.497467pt;}
.ye3{bottom:520.081200pt;}
.ya9{bottom:520.507867pt;}
.y1af{bottom:523.795600pt;}
.y132{bottom:524.427733pt;}
.y85{bottom:525.438667pt;}
.y200{bottom:529.324133pt;}
.y244{bottom:529.427200pt;}
.y17a{bottom:530.044933pt;}
.y28c{bottom:530.104533pt;}
.y44{bottom:532.337600pt;}
.ye2{bottom:536.081200pt;}
.ya8{bottom:536.507867pt;}
.y1ae{bottom:537.128933pt;}
.y84{bottom:540.102667pt;}
.y28b{bottom:541.514533pt;}
.y243{bottom:542.227200pt;}
.y179{bottom:543.644933pt;}
.y18{bottom:544.830800pt;}
.y43{bottom:547.001600pt;}
.y1ad{bottom:550.462267pt;}
.ye1{bottom:552.081200pt;}
.ya7{bottom:552.507867pt;}
.y28a{bottom:552.924533pt;}
.y83{bottom:554.766667pt;}
.y17{bottom:558.164133pt;}
.y242{bottom:560.360533pt;}
.y42{bottom:561.665600pt;}
.y1cd{bottom:563.300933pt;}
.y1ac{bottom:563.795600pt;}
.y289{bottom:564.334533pt;}
.ye0{bottom:568.081200pt;}
.y178{bottom:568.446667pt;}
.ya6{bottom:568.507867pt;}
.y82{bottom:569.430667pt;}
.y16{bottom:571.497467pt;}
.y1f3{bottom:572.687733pt;}
.y1ed{bottom:572.687867pt;}
.y241{bottom:573.160533pt;}
.y1cc{bottom:575.300933pt;}
.y288{bottom:575.744533pt;}
.y41{bottom:576.329600pt;}
.y177{bottom:582.046667pt;}
.ydf{bottom:584.081200pt;}
.y81{bottom:584.102667pt;}
.ya5{bottom:584.507867pt;}
.y15{bottom:584.830800pt;}
.y240{bottom:585.960533pt;}
.y287{bottom:587.154533pt;}
.y1cb{bottom:587.300933pt;}
.y1ab{bottom:587.386667pt;}
.y1f2{bottom:588.687733pt;}
.y1ec{bottom:588.687867pt;}
.y40{bottom:590.993600pt;}
.y14{bottom:598.164133pt;}
.y286{bottom:598.564533pt;}
.y23f{bottom:598.760533pt;}
.y80{bottom:598.766667pt;}
.y1ca{bottom:599.300933pt;}
.y176{bottom:599.477333pt;}
.yde{bottom:600.081200pt;}
.ya4{bottom:600.507867pt;}
.y1f1{bottom:604.687733pt;}
.y1eb{bottom:604.687867pt;}
.y1aa{bottom:605.290667pt;}
.y3f{bottom:605.657600pt;}
.y285{bottom:609.974533pt;}
.y13{bottom:611.497467pt;}
.y175{bottom:613.077333pt;}
.y7f{bottom:613.430667pt;}
.ydd{bottom:616.081200pt;}
.ya3{bottom:616.507867pt;}
.y23e{bottom:616.893867pt;}
.y3e{bottom:620.321600pt;}
.y1f0{bottom:620.687733pt;}
.y1ea{bottom:620.687867pt;}
.y284{bottom:621.384533pt;}
.y1c9{bottom:622.430133pt;}
.y1a9{bottom:624.526667pt;}
.y7e{bottom:628.102667pt;}
.y23d{bottom:629.693867pt;}
.y174{bottom:631.834000pt;}
.ydc{bottom:632.081200pt;}
.ya2{bottom:632.507867pt;}
.y283{bottom:632.794533pt;}
.y12{bottom:632.830800pt;}
.y3d{bottom:634.985600pt;}
.y1ef{bottom:636.687733pt;}
.y1e9{bottom:636.687867pt;}
.y1c8{bottom:638.900133pt;}
.y23c{bottom:642.493867pt;}
.y7d{bottom:642.766667pt;}
.y1a8{bottom:643.762667pt;}
.y282{bottom:644.204533pt;}
.y173{bottom:645.434000pt;}
.y11{bottom:646.164133pt;}
.ydb{bottom:648.081200pt;}
.ya1{bottom:648.507867pt;}
.y3c{bottom:649.649600pt;}
.y1c7{bottom:650.900133pt;}
.y1ee{bottom:652.687733pt;}
.y1e8{bottom:652.687867pt;}
.y281{bottom:655.614533pt;}
.y7c{bottom:657.430667pt;}
.y10{bottom:659.497467pt;}
.y1c6{bottom:662.900133pt;}
.y1a7{bottom:662.998667pt;}
.yda{bottom:664.081200pt;}
.y172{bottom:664.190667pt;}
.y3b{bottom:664.313600pt;}
.ya0{bottom:664.507867pt;}
.y280{bottom:667.024533pt;}
.y1e7{bottom:668.687867pt;}
.y23b{bottom:671.294533pt;}
.y7b{bottom:672.102667pt;}
.yf{bottom:672.830800pt;}
.y171{bottom:677.790667pt;}
.y27f{bottom:678.434533pt;}
.y3a{bottom:678.977600pt;}
.yd9{bottom:680.081200pt;}
.y9f{bottom:680.507867pt;}
.y1c5{bottom:680.710133pt;}
.y1a6{bottom:682.234667pt;}
.y1e6{bottom:684.687867pt;}
.ye{bottom:686.164133pt;}
.y7a{bottom:686.766667pt;}
.y23a{bottom:687.294533pt;}
.y27e{bottom:689.844533pt;}
.y170{bottom:691.390667pt;}
.y1c4{bottom:692.710133pt;}
.y39{bottom:693.641600pt;}
.yd8{bottom:696.081200pt;}
.y9e{bottom:696.507867pt;}
.yd{bottom:699.497467pt;}
.y1e5{bottom:700.687867pt;}
.y27d{bottom:701.254533pt;}
.y79{bottom:701.430667pt;}
.y1a5{bottom:701.470667pt;}
.y239{bottom:703.294533pt;}
.y1c3{bottom:704.710133pt;}
.y16f{bottom:704.990667pt;}
.y38{bottom:708.305600pt;}
.yd7{bottom:712.081200pt;}
.y9d{bottom:712.507867pt;}
.y27c{bottom:712.664533pt;}
.yc{bottom:712.830800pt;}
.y16e{bottom:718.590667pt;}
.y238{bottom:719.294533pt;}
.y1a4{bottom:720.706667pt;}
.y1c2{bottom:722.520133pt;}
.y37{bottom:722.969600pt;}
.y27b{bottom:724.074533pt;}
.y2cc{bottom:725.871200pt;}
.y2e2{bottom:726.141200pt;}
.yb{bottom:726.164133pt;}
.yd6{bottom:728.081200pt;}
.y9c{bottom:728.507867pt;}
.y78{bottom:729.636267pt;}
.y1c1{bottom:734.520133pt;}
.y237{bottom:735.294533pt;}
.y27a{bottom:735.484533pt;}
.y2cb{bottom:737.201200pt;}
.y16d{bottom:737.347333pt;}
.y36{bottom:737.636267pt;}
.y2e1{bottom:738.541200pt;}
.ya{bottom:739.497467pt;}
.y1a3{bottom:739.942667pt;}
.yd5{bottom:744.081200pt;}
.y9b{bottom:744.507867pt;}
.y1ff{bottom:745.207733pt;}
.y1c0{bottom:746.520133pt;}
.y279{bottom:746.894533pt;}
.y2ca{bottom:748.531200pt;}
.y2e0{bottom:750.941200pt;}
.y236{bottom:751.294533pt;}
.y16c{bottom:756.104000pt;}
.y278{bottom:758.304533pt;}
.y1bf{bottom:758.520133pt;}
.y1fe{bottom:758.541067pt;}
.y1a2{bottom:759.178667pt;}
.y2c9{bottom:759.861200pt;}
.yd4{bottom:760.081200pt;}
.y9a{bottom:760.507867pt;}
.y2df{bottom:763.341200pt;}
.y235{bottom:767.294533pt;}
.y277{bottom:769.714533pt;}
.y1be{bottom:770.520133pt;}
.y2c8{bottom:771.191200pt;}
.y1fd{bottom:771.874400pt;}
.y16b{bottom:774.860667pt;}
.y2de{bottom:775.741200pt;}
.yd3{bottom:776.081200pt;}
.y99{bottom:776.507867pt;}
.y1a1{bottom:778.414667pt;}
.y276{bottom:781.124533pt;}
.y2c7{bottom:782.521200pt;}
.y234{bottom:783.294533pt;}
.y1fc{bottom:785.207733pt;}
.y2dd{bottom:788.141200pt;}
.y1bd{bottom:788.330133pt;}
.yd2{bottom:792.081200pt;}
.y98{bottom:792.507867pt;}
.y275{bottom:792.534533pt;}
.y16a{bottom:793.617333pt;}
.y2c6{bottom:793.851200pt;}
.y1a0{bottom:797.650667pt;}
.y9{bottom:798.966800pt;}
.y233{bottom:799.294533pt;}
.y1bc{bottom:800.330133pt;}
.y2dc{bottom:800.541200pt;}
.y274{bottom:803.944533pt;}
.y2c5{bottom:805.181200pt;}
.yd1{bottom:808.081200pt;}
.y97{bottom:808.507867pt;}
.y1fb{bottom:808.813333pt;}
.y1bb{bottom:812.330133pt;}
.y169{bottom:812.374000pt;}
.y2db{bottom:812.941200pt;}
.y232{bottom:815.294533pt;}
.y273{bottom:815.354533pt;}
.y8{bottom:816.302800pt;}
.y2c4{bottom:816.511200pt;}
.y19f{bottom:816.886667pt;}
.yd0{bottom:824.081200pt;}
.y1ba{bottom:824.330133pt;}
.y96{bottom:824.507867pt;}
.y2da{bottom:825.341200pt;}
.y1fa{bottom:826.717333pt;}
.y272{bottom:826.764533pt;}
.y2c3{bottom:827.841200pt;}
.y168{bottom:831.130667pt;}
.y231{bottom:831.294533pt;}
.y19e{bottom:836.122667pt;}
.y1b9{bottom:836.330133pt;}
.y2d9{bottom:837.741200pt;}
.y271{bottom:838.174533pt;}
.y2c2{bottom:839.171200pt;}
.ycf{bottom:840.081200pt;}
.y95{bottom:840.507867pt;}
.y1f9{bottom:845.953333pt;}
.y230{bottom:847.294533pt;}
.y270{bottom:849.584533pt;}
.y167{bottom:849.887333pt;}
.y2d8{bottom:850.141200pt;}
.y2c1{bottom:850.501200pt;}
.y1b8{bottom:852.800133pt;}
.y19d{bottom:855.358667pt;}
.yce{bottom:856.081200pt;}
.y94{bottom:856.507867pt;}
.y26f{bottom:860.994533pt;}
.y2c0{bottom:861.831200pt;}
.y2d7{bottom:862.541200pt;}
.y1b7{bottom:864.800133pt;}
.y1f8{bottom:865.189333pt;}
.y7{bottom:868.286800pt;}
.y166{bottom:868.644000pt;}
.ycd{bottom:872.081200pt;}
.y26e{bottom:872.404533pt;}
.y93{bottom:872.507867pt;}
.y2bf{bottom:873.161200pt;}
.y19c{bottom:873.262667pt;}
.y2d6{bottom:874.941200pt;}
.y1b6{bottom:876.800133pt;}
.y26d{bottom:883.814533pt;}
.y1f7{bottom:884.425333pt;}
.y2be{bottom:884.491200pt;}
.y165{bottom:886.074667pt;}
.y2d5{bottom:887.341200pt;}
.ycc{bottom:888.081200pt;}
.y92{bottom:888.507867pt;}
.y19b{bottom:895.162667pt;}
.y26c{bottom:895.224533pt;}
.y2bd{bottom:895.821200pt;}
.y1b5{bottom:897.270133pt;}
.y1b1{bottom:897.280133pt;}
.y2d4{bottom:899.741200pt;}
.y1f6{bottom:902.329333pt;}
.y6{bottom:902.958800pt;}
.ycb{bottom:904.081200pt;}
.y91{bottom:904.507867pt;}
.y26b{bottom:906.634533pt;}
.y2bc{bottom:907.151200pt;}
.y164{bottom:907.494667pt;}
.y2d3{bottom:912.141200pt;}
.y19a{bottom:914.398667pt;}
.y1b4{bottom:915.080133pt;}
.y26a{bottom:918.044533pt;}
.y2bb{bottom:918.481200pt;}
.yca{bottom:920.081200pt;}
.y90{bottom:920.507867pt;}
.y1f5{bottom:924.229333pt;}
.y2d2{bottom:924.541200pt;}
.y163{bottom:926.251333pt;}
.y1b3{bottom:927.080133pt;}
.y199{bottom:928.798667pt;}
.y269{bottom:929.454533pt;}
.y2ba{bottom:929.811200pt;}
.yc9{bottom:936.081200pt;}
.y8f{bottom:936.507867pt;}
.y2d1{bottom:936.941200pt;}
.y5{bottom:937.630800pt;}
.y162{bottom:939.851333pt;}
.y268{bottom:940.864533pt;}
.y2b9{bottom:941.141200pt;}
.y1f4{bottom:943.465333pt;}
.y1b2{bottom:944.890133pt;}
.y198{bottom:948.371867pt;}
.y2d0{bottom:949.341200pt;}
.yc8{bottom:952.081200pt;}
.y267{bottom:952.274533pt;}
.y2b8{bottom:952.471200pt;}
.y8e{bottom:952.507867pt;}
.y161{bottom:958.608000pt;}
.y2cf{bottom:961.741200pt;}
.y197{bottom:963.035867pt;}
.y266{bottom:963.684533pt;}
.y2b7{bottom:963.801200pt;}
.yc7{bottom:968.081200pt;}
.y8d{bottom:968.507867pt;}
.y4{bottom:972.302800pt;}
.y2ce{bottom:974.141200pt;}
.y265{bottom:975.094533pt;}
.y2b6{bottom:975.131200pt;}
.y160{bottom:977.699867pt;}
.yc6{bottom:984.081200pt;}
.y8c{bottom:984.507867pt;}
.y2b5{bottom:986.461200pt;}
.y264{bottom:986.504533pt;}
.y2cd{bottom:986.541200pt;}
.y3{bottom:1014.174400pt;}
.y8b{bottom:1014.174533pt;}
.h9{height:20.791680pt;}
.h16{height:29.240000pt;}
.ha{height:31.061333pt;}
.h3{height:31.360000pt;}
.h8{height:32.000000pt;}
.h11{height:33.138667pt;}
.h14{height:35.088000pt;}
.hb{height:35.280000pt;}
.h17{height:36.320000pt;}
.h15{height:38.741333pt;}
.h2{height:38.826667pt;}
.h4{height:38.986667pt;}
.hc{height:39.146667pt;}
.h12{height:41.162667pt;}
.h10{height:43.584000pt;}
.h13{height:47.690848pt;}
.he{height:49.932373pt;}
.h18{height:49.953707pt;}
.hd{height:49.954240pt;}
.hf{height:50.062500pt;}
.h6{height:61.717568pt;}
.h7{height:61.728235pt;}
.h5{height:85.250000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:54.000000pt;}
.x3{left:59.066667pt;}
.x6{left:62.577733pt;}
.xe{left:65.999867pt;}
.x1b{left:70.781333pt;}
.x2e{left:75.260000pt;}
.x12{left:129.034667pt;}
.x1c{left:133.148667pt;}
.x1e{left:135.834667pt;}
.x1d{left:142.498667pt;}
.x22{left:157.033333pt;}
.x1f{left:191.333333pt;}
.x4{left:195.892800pt;}
.x13{left:198.360667pt;}
.x23{left:226.363333pt;}
.x2{left:234.853067pt;}
.x14{left:261.022667pt;}
.x2b{left:273.034667pt;}
.x24{left:290.363333pt;}
.x2c{left:309.034667pt;}
.x15{left:331.686000pt;}
.x2d{left:350.368000pt;}
.x25{left:353.033333pt;}
.x20{left:375.701333pt;}
.x16{left:401.023333pt;}
.xf{left:409.183867pt;}
.x26{left:414.363333pt;}
.x10{left:421.187867pt;}
.x2f{left:430.410000pt;}
.x17{left:470.360667pt;}
.x27{left:475.693333pt;}
.x8{left:477.796400pt;}
.xa{left:485.794533pt;}
.x9{left:489.792667pt;}
.xb{left:496.351867pt;}
.xc{left:501.794533pt;}
.x28{left:537.023333pt;}
.x18{left:542.361333pt;}
.x21{left:559.697333pt;}
.x29{left:606.353333pt;}
.x19{left:610.361333pt;}
.x11{left:643.296800pt;}
.x7{left:668.502400pt;}
.x1a{left:671.697333pt;}
.x2a{left:675.683333pt;}
.x1{left:733.300800pt;}
.xd{left:770.666667pt;}
}




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