
    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_3e578b7400e623bc61b5d7ff.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_80bba65a90fc70d9966a1b98.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_472cc18933dd9153922df0a4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_ef45b53ed94e400becadd07e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;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_92f0c62ab60e04c580df27e2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3f8434883176650080f32846.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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_1715b5f0473f75f98d28373d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.683594;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_f585364aa79525e858fb1e2c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_237e47ae73ead945ab471e0a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1594e22eb6e627294c4cd967.woff')format("woff");}.ffa{font-family:ffa;line-height:1.082520;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m4{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);}
.v6{vertical-align:-22.200000px;}
.v4{vertical-align:-14.280000px;}
.v9{vertical-align:-13.212600px;}
.v8{vertical-align:-4.110000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v7{vertical-align:4.062000px;}
.v3{vertical-align:24.300000px;}
.v5{vertical-align:26.544000px;}
.ls5d{letter-spacing:-6.600000px;}
.ls40{letter-spacing:-5.760000px;}
.ls3d{letter-spacing:-5.400000px;}
.ls3e{letter-spacing:-5.256000px;}
.ls3f{letter-spacing:-4.824000px;}
.ls5e{letter-spacing:-4.356000px;}
.ls4c{letter-spacing:-2.808000px;}
.ls5c{letter-spacing:-2.574000px;}
.ls2c{letter-spacing:-0.864000px;}
.ls24{letter-spacing:-0.792000px;}
.ls53{letter-spacing:-0.726000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.594000px;}
.ls37{letter-spacing:-0.576000px;}
.ls38{letter-spacing:-0.504000px;}
.ls5b{letter-spacing:-0.462000px;}
.ls2e{letter-spacing:-0.432000px;}
.ls3a{letter-spacing:-0.396000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls5f{letter-spacing:-0.330000px;}
.ls1e{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.264000px;}
.ls1d{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.198000px;}
.ls2b{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.132000px;}
.ls2d{letter-spacing:-0.072000px;}
.ls65{letter-spacing:-0.066000px;}
.lsa{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.010800px;}
.ls1f{letter-spacing:0.011400px;}
.ls22{letter-spacing:0.043200px;}
.ls5a{letter-spacing:0.066000px;}
.ls20{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.132000px;}
.ls16{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.198000px;}
.ls17{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.264000px;}
.ls1c{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.330000px;}
.ls12{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.396000px;}
.ls21{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.439200px;}
.ls27{letter-spacing:0.443400px;}
.ls19{letter-spacing:0.504000px;}
.lse{letter-spacing:0.528000px;}
.ls14{letter-spacing:0.576000px;}
.ls66{letter-spacing:0.594000px;}
.ls18{letter-spacing:0.648000px;}
.ls9{letter-spacing:0.660000px;}
.ls26{letter-spacing:0.720000px;}
.ls54{letter-spacing:0.726000px;}
.ls23{letter-spacing:0.792000px;}
.ls6a{letter-spacing:0.858000px;}
.ls32{letter-spacing:0.864000px;}
.ls8{letter-spacing:0.924000px;}
.ls34{letter-spacing:0.936000px;}
.ls3b{letter-spacing:0.964800px;}
.ls69{letter-spacing:0.990000px;}
.ls3c{letter-spacing:1.008000px;}
.ls4a{letter-spacing:1.080000px;}
.ls6b{letter-spacing:1.188000px;}
.ls4b{letter-spacing:1.224000px;}
.ls4d{letter-spacing:1.296000px;}
.ls67{letter-spacing:1.452000px;}
.ls2a{letter-spacing:1.512000px;}
.ls63{letter-spacing:1.584000px;}
.ls51{letter-spacing:2.412000px;}
.ls41{letter-spacing:2.419200px;}
.ls35{letter-spacing:2.448000px;}
.ls4f{letter-spacing:2.628000px;}
.ls58{letter-spacing:2.791800px;}
.ls15{letter-spacing:3.312000px;}
.ls36{letter-spacing:3.477600px;}
.ls30{letter-spacing:3.600000px;}
.ls39{letter-spacing:4.045800px;}
.ls64{letter-spacing:4.092000px;}
.ls0{letter-spacing:4.200000px;}
.ls4e{letter-spacing:4.320000px;}
.ls45{letter-spacing:4.665600px;}
.ls50{letter-spacing:4.860000px;}
.ls49{letter-spacing:5.112000px;}
.ls31{letter-spacing:5.400000px;}
.ls44{letter-spacing:5.407200px;}
.lsb{letter-spacing:5.820000px;}
.ls52{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls68{letter-spacing:6.900000px;}
.ls3{letter-spacing:7.200000px;}
.ls28{letter-spacing:7.884000px;}
.ls29{letter-spacing:8.136000px;}
.ls42{letter-spacing:9.000000px;}
.ls46{letter-spacing:9.115200px;}
.ls48{letter-spacing:9.223200px;}
.ls33{letter-spacing:9.360000px;}
.ls2{letter-spacing:10.200000px;}
.ls47{letter-spacing:10.569600px;}
.ls43{letter-spacing:10.656000px;}
.ls55{letter-spacing:10.956000px;}
.ls59{letter-spacing:11.022000px;}
.ls61{letter-spacing:11.352000px;}
.ls60{letter-spacing:11.748000px;}
.ls56{letter-spacing:11.880000px;}
.ls2f{letter-spacing:12.312000px;}
.ls62{letter-spacing:19.800000px;}
.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;}
}
.ws7f{word-spacing:-38.346000px;}
.ws2{word-spacing:-27.432000px;}
.ws30{word-spacing:-24.984000px;}
.ws65{word-spacing:-23.832000px;}
.ws6f{word-spacing:-22.860000px;}
.ws64{word-spacing:-21.096000px;}
.ws3a{word-spacing:-20.880000px;}
.ws58{word-spacing:-20.808000px;}
.ws63{word-spacing:-20.592000px;}
.ws59{word-spacing:-20.448000px;}
.ws57{word-spacing:-20.376000px;}
.ws24{word-spacing:-20.304000px;}
.ws23{word-spacing:-20.232000px;}
.ws67{word-spacing:-20.088000px;}
.ws5a{word-spacing:-20.016000px;}
.ws5c{word-spacing:-19.944000px;}
.ws8b{word-spacing:-19.800000px;}
.ws41{word-spacing:-18.576000px;}
.ws47{word-spacing:-18.546000px;}
.ws32{word-spacing:-18.504000px;}
.ws66{word-spacing:-18.432000px;}
.ws17{word-spacing:-18.360000px;}
.ws62{word-spacing:-18.216000px;}
.ws40{word-spacing:-18.144000px;}
.ws72{word-spacing:-18.084000px;}
.ws42{word-spacing:-18.072000px;}
.ws31{word-spacing:-17.856000px;}
.ws16{word-spacing:-17.784000px;}
.ws27{word-spacing:-17.496000px;}
.ws2f{word-spacing:-17.424000px;}
.ws87{word-spacing:-17.160000px;}
.ws2e{word-spacing:-17.136000px;}
.ws0{word-spacing:-16.860000px;}
.ws3{word-spacing:-16.698000px;}
.ws5{word-spacing:-16.632000px;}
.ws4{word-spacing:-16.302000px;}
.ws80{word-spacing:-16.236000px;}
.ws1{word-spacing:-16.170000px;}
.ws56{word-spacing:-14.976000px;}
.ws55{word-spacing:-14.832000px;}
.ws5b{word-spacing:-14.472000px;}
.ws25{word-spacing:-12.182400px;}
.ws26{word-spacing:-12.139200px;}
.ws77{word-spacing:-11.880000px;}
.ws7d{word-spacing:-11.748000px;}
.ws7e{word-spacing:-11.352000px;}
.ws6{word-spacing:-11.325600px;}
.ws71{word-spacing:-11.127600px;}
.ws7b{word-spacing:-11.022000px;}
.ws76{word-spacing:-10.956000px;}
.wsa{word-spacing:-10.200000px;}
.ws28{word-spacing:-7.200000px;}
.ws89{word-spacing:-6.900000px;}
.ws9{word-spacing:-6.600000px;}
.ws81{word-spacing:-6.000000px;}
.wsb{word-spacing:-5.820000px;}
.ws44{word-spacing:-5.400000px;}
.ws8{word-spacing:-4.200000px;}
.ws43{word-spacing:-3.600000px;}
.ws86{word-spacing:-1.584000px;}
.ws39{word-spacing:-1.512000px;}
.ws85{word-spacing:-1.452000px;}
.ws6c{word-spacing:-1.296000px;}
.ws6b{word-spacing:-1.224000px;}
.ws88{word-spacing:-1.188000px;}
.ws69{word-spacing:-1.080000px;}
.ws8a{word-spacing:-0.990000px;}
.ws4e{word-spacing:-0.936000px;}
.ws14{word-spacing:-0.924000px;}
.ws45{word-spacing:-0.864000px;}
.ws2b{word-spacing:-0.792000px;}
.ws73{word-spacing:-0.726000px;}
.ws35{word-spacing:-0.720000px;}
.ws15{word-spacing:-0.660000px;}
.ws21{word-spacing:-0.648000px;}
.ws84{word-spacing:-0.594000px;}
.ws1a{word-spacing:-0.576000px;}
.wse{word-spacing:-0.528000px;}
.ws1e{word-spacing:-0.504000px;}
.ws2a{word-spacing:-0.432000px;}
.wsd{word-spacing:-0.396000px;}
.ws18{word-spacing:-0.360000px;}
.ws12{word-spacing:-0.330000px;}
.ws1f{word-spacing:-0.288000px;}
.ws13{word-spacing:-0.264000px;}
.ws1d{word-spacing:-0.216000px;}
.ws1c{word-spacing:-0.144000px;}
.wsf{word-spacing:-0.132000px;}
.ws29{word-spacing:-0.072000px;}
.ws7c{word-spacing:-0.066000px;}
.ws7{word-spacing:0.000000px;}
.ws82{word-spacing:0.066000px;}
.ws3b{word-spacing:0.072000px;}
.ws83{word-spacing:0.132000px;}
.ws33{word-spacing:0.144000px;}
.wsc{word-spacing:0.198000px;}
.ws20{word-spacing:0.216000px;}
.ws11{word-spacing:0.264000px;}
.ws22{word-spacing:0.288000px;}
.ws7a{word-spacing:0.330000px;}
.ws19{word-spacing:0.360000px;}
.ws54{word-spacing:0.396000px;}
.ws3c{word-spacing:0.432000px;}
.ws74{word-spacing:0.462000px;}
.ws51{word-spacing:0.504000px;}
.ws4f{word-spacing:0.576000px;}
.ws10{word-spacing:0.594000px;}
.ws2d{word-spacing:0.648000px;}
.ws1b{word-spacing:0.720000px;}
.ws70{word-spacing:0.726000px;}
.ws2c{word-spacing:0.792000px;}
.ws34{word-spacing:0.864000px;}
.ws5d{word-spacing:1.152000px;}
.ws75{word-spacing:2.574000px;}
.ws6e{word-spacing:2.736000px;}
.ws68{word-spacing:2.808000px;}
.ws3d{word-spacing:3.312000px;}
.ws50{word-spacing:3.456000px;}
.ws79{word-spacing:4.356000px;}
.ws60{word-spacing:4.824000px;}
.ws6d{word-spacing:5.256000px;}
.ws3e{word-spacing:5.544000px;}
.ws38{word-spacing:6.408000px;}
.ws78{word-spacing:6.600000px;}
.ws3f{word-spacing:6.768000px;}
.ws37{word-spacing:6.984000px;}
.ws61{word-spacing:8.856000px;}
.ws5f{word-spacing:8.928000px;}
.ws36{word-spacing:10.080000px;}
.ws5e{word-spacing:10.152000px;}
.ws6a{word-spacing:11.088000px;}
.ws48{word-spacing:102.036000px;}
.ws52{word-spacing:107.184000px;}
.ws49{word-spacing:148.176000px;}
.ws46{word-spacing:156.690000px;}
.ws4b{word-spacing:202.176000px;}
.ws4c{word-spacing:217.008000px;}
.ws4a{word-spacing:220.334400px;}
.ws4d{word-spacing:250.992000px;}
.ws53{word-spacing:556.908000px;}
._10{margin-left:-14.767200px;}
._2f{margin-left:-12.600000px;}
._30{margin-left:-10.995000px;}
._7{margin-left:-9.572400px;}
._12{margin-left:-8.440800px;}
._4{margin-left:-7.440000px;}
._2{margin-left:-5.577000px;}
._9{margin-left:-4.059600px;}
._b{margin-left:-2.595000px;}
._3{margin-left:-1.200000px;}
._5{width:1.371000px;}
._d{width:3.163200px;}
._0{width:4.200000px;}
._a{width:6.006000px;}
._f{width:7.011000px;}
._e{width:8.062800px;}
._c{width:9.120000px;}
._8{width:10.200000px;}
._1{width:11.220000px;}
._11{width:12.240000px;}
._31{width:13.476000px;}
._6{width:17.340000px;}
._33{width:19.957800px;}
._32{width:21.252000px;}
._13{width:56.923200px;}
._2c{width:92.730000px;}
._15{width:124.776000px;}
._1b{width:183.240000px;}
._1a{width:196.272000px;}
._14{width:208.230000px;}
._1d{width:235.224000px;}
._19{width:243.072000px;}
._16{width:247.656000px;}
._1e{width:250.812600px;}
._1c{width:291.456000px;}
._18{width:337.296000px;}
._1f{width:345.456000px;}
._17{width:375.528000px;}
._2e{width:510.255000px;}
._22{width:518.715000px;}
._24{width:542.454000px;}
._27{width:558.954000px;}
._21{width:575.454000px;}
._26{width:578.505000px;}
._25{width:642.150000px;}
._2d{width:704.904000px;}
._2b{width:762.894000px;}
._20{width:788.634000px;}
._29{width:806.784000px;}
._2a{width:811.287000px;}
._23{width:836.301000px;}
._28{width:869.763000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs6{font-size:39.600000px;}
.fs2{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:75.341850px;}
.y1{bottom:76.339350px;}
.ye6{bottom:140.313450px;}
.y201{bottom:142.553400px;}
.y113{bottom:142.905450px;}
.y1be{bottom:143.394300px;}
.y136{bottom:143.520300px;}
.yc5{bottom:144.243300px;}
.y21{bottom:144.315150px;}
.y1de{bottom:144.610350px;}
.y47{bottom:144.634350px;}
.y226{bottom:145.055400px;}
.y24b{bottom:145.116450px;}
.y17c{bottom:145.254300px;}
.y26b{bottom:145.741800px;}
.y89{bottom:145.864350px;}
.yad{bottom:145.864950px;}
.y19f{bottom:145.902300px;}
.y68{bottom:146.020350px;}
.y159{bottom:147.543300px;}
.y200{bottom:161.000400px;}
.ye5{bottom:162.364950px;}
.y225{bottom:162.753900px;}
.y135{bottom:163.464300px;}
.y112{bottom:164.505450px;}
.y20{bottom:164.709150px;}
.y24a{bottom:165.658950px;}
.y26a{bottom:165.690300px;}
.y1bd{bottom:165.750300px;}
.yc4{bottom:165.843300px;}
.y1dd{bottom:166.210350px;}
.y46{bottom:166.234350px;}
.y17b{bottom:167.610300px;}
.y88{bottom:168.058350px;}
.y67{bottom:168.214350px;}
.y19e{bottom:168.258300px;}
.y158{bottom:170.511300px;}
.y1ff{bottom:179.447400px;}
.yac{bottom:180.600300px;}
.y134{bottom:184.164300px;}
.y1f{bottom:185.103150px;}
.y269{bottom:185.638800px;}
.y249{bottom:186.052950px;}
.y111{bottom:186.105450px;}
.yc3{bottom:187.443300px;}
.y1dc{bottom:187.810350px;}
.y45{bottom:187.834350px;}
.y1bc{bottom:188.106300px;}
.y17a{bottom:189.966300px;}
.y87{bottom:190.252350px;}
.y66{bottom:190.408350px;}
.y19d{bottom:190.614300px;}
.y224{bottom:191.584050px;}
.y157{bottom:193.479300px;}
.y1fe{bottom:198.801900px;}
.ye4{bottom:199.680300px;}
.yab{bottom:201.894300px;}
.y133{bottom:204.864300px;}
.y1e{bottom:205.497150px;}
.y268{bottom:205.587300px;}
.y248{bottom:206.446950px;}
.y110{bottom:207.705450px;}
.yc2{bottom:209.043300px;}
.y1db{bottom:209.410350px;}
.y44{bottom:209.434350px;}
.y1bb{bottom:210.462300px;}
.y223{bottom:211.681050px;}
.y179{bottom:212.322300px;}
.y86{bottom:212.446350px;}
.y65{bottom:212.602350px;}
.y19c{bottom:212.970300px;}
.y156{bottom:216.447300px;}
.y1fd{bottom:218.156400px;}
.ye3{bottom:221.730300px;}
.yaa{bottom:223.188300px;}
.y267{bottom:225.535800px;}
.y132{bottom:225.564300px;}
.y1d{bottom:225.891150px;}
.y247{bottom:226.840950px;}
.y10f{bottom:229.305450px;}
.yc1{bottom:230.643300px;}
.y1da{bottom:231.010350px;}
.y43{bottom:231.034350px;}
.y222{bottom:231.778050px;}
.y1ba{bottom:232.818300px;}
.y85{bottom:234.640350px;}
.y178{bottom:234.678300px;}
.y64{bottom:234.796350px;}
.y19b{bottom:235.326300px;}
.y155{bottom:239.415300px;}
.ye2{bottom:243.780300px;}
.ya9{bottom:244.482300px;}
.y266{bottom:245.484300px;}
.y1fc{bottom:246.010350px;}
.y131{bottom:246.264300px;}
.y1c{bottom:246.315150px;}
.y246{bottom:247.234950px;}
.y10e{bottom:250.905450px;}
.y221{bottom:251.875050px;}
.y42{bottom:252.634350px;}
.y1b9{bottom:255.174300px;}
.y84{bottom:256.834350px;}
.y63{bottom:256.990350px;}
.y177{bottom:257.034300px;}
.y19a{bottom:257.682300px;}
.y1d9{bottom:261.114300px;}
.y154{bottom:262.383300px;}
.y265{bottom:265.432800px;}
.ya8{bottom:265.776300px;}
.ye1{bottom:265.830300px;}
.y1b{bottom:266.709150px;}
.y245{bottom:267.628950px;}
.y220{bottom:271.972050px;}
.y10d{bottom:272.505450px;}
.yc0{bottom:273.843300px;}
.y41{bottom:274.090350px;}
.y1b8{bottom:277.530300px;}
.y83{bottom:279.028350px;}
.y62{bottom:279.184350px;}
.y176{bottom:279.390300px;}
.y199{bottom:280.038300px;}
.y130{bottom:281.064300px;}
.y153{bottom:285.351300px;}
.y264{bottom:285.381300px;}
.ya7{bottom:287.070300px;}
.y1a{bottom:287.103150px;}
.ye0{bottom:287.880300px;}
.y244{bottom:288.022950px;}
.y21f{bottom:292.069050px;}
.y1fb{bottom:293.214300px;}
.y10c{bottom:294.105450px;}
.y40{bottom:295.546350px;}
.y1b7{bottom:299.886300px;}
.y82{bottom:301.222350px;}
.y61{bottom:301.378350px;}
.y175{bottom:301.746300px;}
.y198{bottom:302.394300px;}
.y263{bottom:305.329800px;}
.y19{bottom:307.497150px;}
.y152{bottom:308.319300px;}
.ya6{bottom:308.364300px;}
.y243{bottom:308.416950px;}
.ydf{bottom:309.932550px;}
.y21e{bottom:312.166050px;}
.y1fa{bottom:314.364300px;}
.y10b{bottom:315.705450px;}
.y3f{bottom:317.002350px;}
.y1b6{bottom:322.242300px;}
.y81{bottom:323.416350px;}
.y60{bottom:323.572350px;}
.y174{bottom:324.102300px;}
.y197{bottom:324.750300px;}
.y262{bottom:325.278300px;}
.y1d8{bottom:325.758300px;}
.y18{bottom:327.891150px;}
.y242{bottom:328.810950px;}
.ya5{bottom:329.658300px;}
.y12f{bottom:330.114300px;}
.y151{bottom:331.287300px;}
.yde{bottom:331.982550px;}
.y21d{bottom:332.263050px;}
.y1f9{bottom:335.514300px;}
.y10a{bottom:337.305450px;}
.y3e{bottom:338.458350px;}
.y1b5{bottom:344.598300px;}
.y261{bottom:345.226800px;}
.y80{bottom:345.622350px;}
.y5f{bottom:345.766350px;}
.y173{bottom:346.458300px;}
.y196{bottom:347.106300px;}
.y1d7{bottom:347.214300px;}
.y17{bottom:348.285150px;}
.y241{bottom:349.204950px;}
.ya4{bottom:350.952300px;}
.y12e{bottom:350.958300px;}
.y21c{bottom:352.360050px;}
.ydd{bottom:354.032550px;}
.y150{bottom:354.255300px;}
.y1f8{bottom:356.664300px;}
.y109{bottom:358.905450px;}
.y3d{bottom:359.914350px;}
.y260{bottom:365.175300px;}
.y1b4{bottom:366.954300px;}
.y7f{bottom:367.816350px;}
.y5e{bottom:368.020350px;}
.y1d6{bottom:368.670300px;}
.y172{bottom:368.814300px;}
.y195{bottom:369.462300px;}
.y240{bottom:369.598950px;}
.y12d{bottom:371.802300px;}
.ya3{bottom:372.246300px;}
.y21b{bottom:372.457050px;}
.ydc{bottom:376.082550px;}
.y16{bottom:377.189100px;}
.y14f{bottom:377.223300px;}
.y1f7{bottom:377.814300px;}
.y108{bottom:380.505450px;}
.y3c{bottom:381.370350px;}
.y25f{bottom:385.123800px;}
.y1b3{bottom:389.310300px;}
.y23f{bottom:389.992950px;}
.y7e{bottom:390.010350px;}
.y1d5{bottom:390.126300px;}
.y5d{bottom:390.214350px;}
.y171{bottom:391.170300px;}
.y194{bottom:391.818300px;}
.y21a{bottom:392.569050px;}
.y12c{bottom:392.646300px;}
.ya2{bottom:393.540300px;}
.ydb{bottom:398.132550px;}
.y1f6{bottom:398.964300px;}
.y107{bottom:402.105450px;}
.y3b{bottom:402.826350px;}
.y14e{bottom:404.398800px;}
.y25e{bottom:405.072300px;}
.y23e{bottom:410.386950px;}
.y1d4{bottom:411.582300px;}
.y1b2{bottom:411.666300px;}
.y5c{bottom:412.408350px;}
.y219{bottom:412.666050px;}
.y12b{bottom:413.490300px;}
.y170{bottom:413.526300px;}
.y193{bottom:414.174300px;}
.ya1{bottom:414.834300px;}
.y1f5{bottom:420.114300px;}
.yda{bottom:420.182550px;}
.y7d{bottom:420.714300px;}
.y106{bottom:423.705450px;}
.ybf{bottom:423.910350px;}
.y3a{bottom:424.282350px;}
.y14d{bottom:424.495800px;}
.y25d{bottom:425.020800px;}
.y15{bottom:430.636950px;}
.y23d{bottom:430.780950px;}
.y218{bottom:432.763050px;}
.y1d3{bottom:433.038300px;}
.y1b1{bottom:434.022300px;}
.y12a{bottom:434.334300px;}
.y5b{bottom:434.602350px;}
.y16f{bottom:435.882300px;}
.ya0{bottom:436.128300px;}
.y192{bottom:436.530300px;}
.y1f4{bottom:441.264300px;}
.yd9{bottom:442.232550px;}
.y7c{bottom:442.764300px;}
.y25c{bottom:444.969300px;}
.y105{bottom:445.305450px;}
.y39{bottom:445.738350px;}
.y14{bottom:451.030950px;}
.y23c{bottom:451.174950px;}
.y217{bottom:452.860050px;}
.y1d2{bottom:454.494300px;}
.y129{bottom:455.178300px;}
.y1b0{bottom:456.378300px;}
.y5a{bottom:456.796350px;}
.y9f{bottom:457.422300px;}
.y16e{bottom:458.238300px;}
.y14c{bottom:458.670300px;}
.y191{bottom:458.886300px;}
.y1f3{bottom:462.414300px;}
.yd8{bottom:464.282550px;}
.y25b{bottom:464.917800px;}
.ybe{bottom:465.310350px;}
.y104{bottom:466.905450px;}
.y38{bottom:467.194350px;}
.y13{bottom:471.424950px;}
.y23b{bottom:471.568950px;}
.y216{bottom:472.808550px;}
.y1d1{bottom:475.950300px;}
.y128{bottom:476.022300px;}
.y14b{bottom:477.414300px;}
.y9e{bottom:478.716300px;}
.y1af{bottom:478.734300px;}
.y59{bottom:478.990350px;}
.y16d{bottom:480.594300px;}
.y190{bottom:481.242300px;}
.y1f2{bottom:483.564300px;}
.y25a{bottom:484.866300px;}
.yd7{bottom:486.332550px;}
.ybd{bottom:486.910350px;}
.y103{bottom:488.505450px;}
.y37{bottom:488.650350px;}
.y12{bottom:491.818950px;}
.y23a{bottom:491.962950px;}
.y215{bottom:492.757050px;}
.y127{bottom:496.866300px;}
.y1d0{bottom:497.406300px;}
.y9d{bottom:500.010300px;}
.y1ae{bottom:501.090300px;}
.y58{bottom:501.184350px;}
.y16c{bottom:502.950300px;}
.y18f{bottom:503.598300px;}
.y1f1{bottom:504.714300px;}
.y259{bottom:504.814800px;}
.yd6{bottom:508.382550px;}
.ybc{bottom:508.510350px;}
.y7b{bottom:508.908300px;}
.y102{bottom:510.105450px;}
.y36{bottom:510.106350px;}
.y11{bottom:512.212950px;}
.y239{bottom:512.356950px;}
.y214{bottom:512.705550px;}
.y14a{bottom:516.594300px;}
.y126{bottom:517.710300px;}
.y1cf{bottom:518.862300px;}
.y9c{bottom:521.304300px;}
.y57{bottom:523.378350px;}
.y1ad{bottom:523.446300px;}
.y258{bottom:524.763300px;}
.y16b{bottom:525.306300px;}
.y1f0{bottom:525.864300px;}
.y18e{bottom:525.954300px;}
.yd5{bottom:530.432550px;}
.y7a{bottom:530.958300px;}
.y35{bottom:531.562350px;}
.y101{bottom:531.705450px;}
.y10{bottom:532.606950px;}
.y213{bottom:532.655400px;}
.y238{bottom:532.750950px;}
.y149{bottom:537.150300px;}
.y125{bottom:538.554300px;}
.y1ce{bottom:540.318300px;}
.y9b{bottom:542.598300px;}
.y257{bottom:544.711800px;}
.ybb{bottom:545.110350px;}
.y56{bottom:545.572350px;}
.y1ac{bottom:545.802300px;}
.y1ef{bottom:547.014300px;}
.y16a{bottom:547.662300px;}
.y18d{bottom:548.310300px;}
.yd4{bottom:552.482550px;}
.y212{bottom:552.614550px;}
.yf{bottom:553.000950px;}
.y79{bottom:553.008300px;}
.y34{bottom:553.018350px;}
.y237{bottom:553.144950px;}
.y100{bottom:553.305450px;}
.y148{bottom:557.706300px;}
.y124{bottom:559.398300px;}
.y1cd{bottom:561.774300px;}
.y9a{bottom:563.892300px;}
.y55{bottom:567.766350px;}
.y1ab{bottom:568.158300px;}
.y1ee{bottom:568.164300px;}
.y169{bottom:570.018300px;}
.y18c{bottom:570.666300px;}
.y211{bottom:572.563050px;}
.ye{bottom:573.394950px;}
.y236{bottom:573.538950px;}
.y33{bottom:574.474350px;}
.yd3{bottom:574.532550px;}
.yff{bottom:574.905450px;}
.y78{bottom:575.058300px;}
.y147{bottom:578.262300px;}
.y123{bottom:580.242300px;}
.y1cc{bottom:583.230300px;}
.y99{bottom:585.186300px;}
.y256{bottom:586.411800px;}
.y1ed{bottom:589.314300px;}
.y54{bottom:589.966350px;}
.y1aa{bottom:590.514300px;}
.y168{bottom:592.374300px;}
.y210{bottom:592.511550px;}
.y18b{bottom:593.022300px;}
.yd{bottom:593.788950px;}
.y235{bottom:593.932950px;}
.y32{bottom:595.930350px;}
.yfe{bottom:596.505450px;}
.yd2{bottom:596.582550px;}
.yba{bottom:596.710350px;}
.y77{bottom:597.108300px;}
.y146{bottom:598.818300px;}
.y122{bottom:601.086300px;}
.y1cb{bottom:604.686300px;}
.y98{bottom:606.480300px;}
.y1ec{bottom:610.464300px;}
.y53{bottom:612.166350px;}
.y20f{bottom:612.460050px;}
.y234{bottom:614.326950px;}
.y167{bottom:614.730300px;}
.y18a{bottom:615.378300px;}
.y277{bottom:615.511800px;}
.y31{bottom:617.386350px;}
.yfd{bottom:618.105450px;}
.yb9{bottom:618.310350px;}
.y76{bottom:619.158300px;}
.y145{bottom:619.374300px;}
.y121{bottom:621.930300px;}
.yc{bottom:622.692900px;}
.y1ca{bottom:626.142300px;}
.y97{bottom:627.774300px;}
.y255{bottom:628.117800px;}
.y1a9{bottom:628.608300px;}
.y1eb{bottom:631.614300px;}
.y20e{bottom:632.408550px;}
.y276{bottom:633.511800px;}
.y52{bottom:634.330350px;}
.y233{bottom:634.869450px;}
.y166{bottom:637.086300px;}
.y189{bottom:637.734300px;}
.y30{bottom:638.842350px;}
.yfc{bottom:639.705450px;}
.yb8{bottom:639.910350px;}
.y144{bottom:639.930300px;}
.yd1{bottom:640.862550px;}
.y75{bottom:641.208300px;}
.y120{bottom:642.774300px;}
.y1c9{bottom:647.598300px;}
.y96{bottom:649.068300px;}
.y254{bottom:649.861800px;}
.y1a8{bottom:650.964300px;}
.y275{bottom:651.511800px;}
.y20d{bottom:652.357050px;}
.y1ea{bottom:652.764300px;}
.y232{bottom:655.411950px;}
.y51{bottom:656.524350px;}
.y165{bottom:659.442300px;}
.y188{bottom:660.090300px;}
.y2f{bottom:660.298350px;}
.y143{bottom:660.486300px;}
.yfb{bottom:661.305450px;}
.yb7{bottom:661.510350px;}
.y74{bottom:663.258300px;}
.y11f{bottom:663.618300px;}
.yd0{bottom:664.838550px;}
.y1c8{bottom:669.054300px;}
.y274{bottom:669.511800px;}
.y95{bottom:670.362300px;}
.y253{bottom:671.611800px;}
.y20c{bottom:672.305550px;}
.y1e9{bottom:673.914300px;}
.y231{bottom:675.954450px;}
.y50{bottom:678.880350px;}
.y142{bottom:681.042300px;}
.y2e{bottom:681.754350px;}
.y164{bottom:681.798300px;}
.y187{bottom:682.446300px;}
.yfa{bottom:682.905450px;}
.yb6{bottom:683.110350px;}
.y11e{bottom:684.462300px;}
.y73{bottom:685.308300px;}
.yb{bottom:688.098900px;}
.y1c7{bottom:690.510300px;}
.y94{bottom:691.656300px;}
.ycf{bottom:692.164950px;}
.y20b{bottom:692.257050px;}
.y1e8{bottom:695.064300px;}
.y230{bottom:696.496950px;}
.y4f{bottom:701.236350px;}
.y141{bottom:701.598300px;}
.yce{bottom:701.751450px;}
.y2d{bottom:703.210350px;}
.y163{bottom:704.154300px;}
.yf9{bottom:704.505450px;}
.yb5{bottom:704.710350px;}
.y1a7{bottom:704.766300px;}
.y186{bottom:704.802300px;}
.y11d{bottom:705.306300px;}
.y72{bottom:707.358300px;}
.ya{bottom:708.492900px;}
.y273{bottom:709.111800px;}
.y1c6{bottom:711.966300px;}
.y20a{bottom:712.205550px;}
.y93{bottom:712.950300px;}
.y1e7{bottom:716.214300px;}
.y22f{bottom:717.039450px;}
.ycd{bottom:721.848450px;}
.y140{bottom:722.154300px;}
.y4e{bottom:723.592350px;}
.y2c{bottom:724.810350px;}
.y11c{bottom:726.150300px;}
.y162{bottom:726.510300px;}
.y1a6{bottom:727.122300px;}
.y185{bottom:727.158300px;}
.y272{bottom:728.911800px;}
.y71{bottom:729.408300px;}
.y209{bottom:732.154050px;}
.y252{bottom:733.261800px;}
.y1c5{bottom:733.422300px;}
.y92{bottom:734.244300px;}
.yb4{bottom:734.814300px;}
.y1e6{bottom:737.364300px;}
.y22e{bottom:737.581950px;}
.ycc{bottom:741.945450px;}
.y13f{bottom:742.710300px;}
.y4d{bottom:745.948350px;}
.y2b{bottom:746.410350px;}
.y11b{bottom:746.994300px;}
.y161{bottom:748.866300px;}
.y1a5{bottom:749.478300px;}
.y184{bottom:749.514300px;}
.y9{bottom:751.080900px;}
.yf8{bottom:751.251450px;}
.y251{bottom:751.411800px;}
.y70{bottom:751.458300px;}
.y1c4{bottom:754.878300px;}
.y91{bottom:755.538300px;}
.yb3{bottom:756.414300px;}
.y22d{bottom:758.124450px;}
.y1e5{bottom:758.514300px;}
.y208{bottom:760.608000px;}
.y13e{bottom:763.266300px;}
.y11a{bottom:767.838300px;}
.y2a{bottom:768.010350px;}
.y4c{bottom:768.304350px;}
.y250{bottom:769.561800px;}
.y271{bottom:770.311800px;}
.y160{bottom:771.222300px;}
.y1a4{bottom:771.834300px;}
.y183{bottom:771.870300px;}
.y6f{bottom:773.508300px;}
.y1c3{bottom:776.334300px;}
.y90{bottom:776.832300px;}
.ycb{bottom:776.968800px;}
.y22c{bottom:778.666950px;}
.y1e4{bottom:779.664300px;}
.yf7{bottom:781.923450px;}
.y8{bottom:782.292900px;}
.y13d{bottom:783.822300px;}
.y24f{bottom:787.711800px;}
.y119{bottom:788.682300px;}
.y29{bottom:789.610350px;}
.y270{bottom:790.111800px;}
.y4b{bottom:790.660350px;}
.y15f{bottom:793.578300px;}
.y1a3{bottom:794.190300px;}
.y182{bottom:794.226300px;}
.y6e{bottom:795.558300px;}
.yca{bottom:797.214300px;}
.y1c2{bottom:797.790300px;}
.y8f{bottom:798.126300px;}
.y22b{bottom:799.209450px;}
.y1e3{bottom:800.814300px;}
.y13c{bottom:804.378300px;}
.y207{bottom:809.020800px;}
.y118{bottom:809.526300px;}
.y26f{bottom:809.911800px;}
.y28{bottom:811.210350px;}
.yea{bottom:812.595450px;}
.yef{bottom:813.601950px;}
.yf3{bottom:813.618450px;}
.y15e{bottom:815.934300px;}
.y1a2{bottom:816.546300px;}
.y181{bottom:816.582300px;}
.y6d{bottom:817.608300px;}
.y1c1{bottom:819.246300px;}
.y8e{bottom:819.420300px;}
.yb2{bottom:821.244300px;}
.y4a{bottom:821.514300px;}
.y1e2{bottom:821.964300px;}
.y13b{bottom:824.934300px;}
.y24e{bottom:827.613450px;}
.yf6{bottom:828.022950px;}
.y206{bottom:828.969300px;}
.y26e{bottom:829.711800px;}
.y117{bottom:830.370300px;}
.yeb{bottom:832.683450px;}
.y27{bottom:832.810350px;}
.yee{bottom:833.698950px;}
.yf2{bottom:833.715450px;}
.y7{bottom:838.154400px;}
.y15d{bottom:838.290300px;}
.y1a1{bottom:838.902300px;}
.y180{bottom:838.938300px;}
.yc9{bottom:839.514300px;}
.y6c{bottom:839.658300px;}
.y1c0{bottom:840.702300px;}
.y8d{bottom:840.738300px;}
.y22a{bottom:842.109300px;}
.yb1{bottom:842.538300px;}
.y49{bottom:843.114300px;}
.y13a{bottom:845.490300px;}
.y24d{bottom:847.561950px;}
.y205{bottom:848.917800px;}
.y26d{bottom:849.511800px;}
.y116{bottom:851.214300px;}
.ye9{bottom:852.789450px;}
.yed{bottom:853.795950px;}
.yf1{bottom:853.812450px;}
.yf5{bottom:853.828950px;}
.y26{bottom:854.410350px;}
.y6{bottom:856.754400px;}
.y15c{bottom:860.646300px;}
.y17f{bottom:861.132300px;}
.y1a0{bottom:861.258300px;}
.yc8{bottom:861.564300px;}
.y6b{bottom:861.708300px;}
.y1bf{bottom:862.158300px;}
.y8c{bottom:862.482300px;}
.yb0{bottom:863.832300px;}
.y1e1{bottom:864.264300px;}
.y139{bottom:866.046300px;}
.y204{bottom:868.866300px;}
.y26c{bottom:869.311800px;}
.y115{bottom:872.058300px;}
.yec{bottom:872.877450px;}
.ye8{bottom:872.895450px;}
.yf0{bottom:873.909450px;}
.yf4{bottom:873.925950px;}
.y5{bottom:875.354400px;}
.y4{bottom:875.356800px;}
.y25{bottom:876.010350px;}
.y15b{bottom:883.002300px;}
.y17e{bottom:883.326300px;}
.yc7{bottom:883.614300px;}
.y6a{bottom:883.758300px;}
.y8b{bottom:884.226300px;}
.y229{bottom:885.003300px;}
.yaf{bottom:885.126300px;}
.y1e0{bottom:885.414300px;}
.y138{bottom:886.602300px;}
.y203{bottom:888.814800px;}
.y24c{bottom:889.111800px;}
.y24{bottom:897.610350px;}
.y15a{bottom:905.358300px;}
.y17d{bottom:905.520300px;}
.yc6{bottom:905.664300px;}
.y69{bottom:905.808300px;}
.y8a{bottom:905.970300px;}
.yae{bottom:906.420300px;}
.y1df{bottom:906.564300px;}
.y48{bottom:906.708300px;}
.y114{bottom:907.014300px;}
.y137{bottom:907.158300px;}
.y228{bottom:907.359300px;}
.y202{bottom:908.763300px;}
.ye7{bottom:908.911800px;}
.y3{bottom:910.111800px;}
.y23{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.y227{bottom:929.709450px;}
.hb{height:26.199902px;}
.hd{height:30.568359px;}
.h3{height:35.663086px;}
.h9{height:40.757812px;}
.h2{height:41.396484px;}
.he{height:48.399902px;}
.h5{height:50.947266px;}
.h4{height:56.041992px;}
.hf{height:57.026719px;}
.h8{height:57.925195px;}
.h7{height:61.136719px;}
.ha{height:61.256719px;}
.hc{height:63.313031px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:76.535400px;}
.x24{left:82.718100px;}
.x16{left:85.215600px;}
.x25{left:86.904150px;}
.x26{left:89.610150px;}
.x1{left:97.795350px;}
.x13{left:103.982850px;}
.xa{left:119.055150px;}
.x15{left:122.961600px;}
.x2c{left:126.735150px;}
.x27{left:130.200150px;}
.x2d{left:140.323650px;}
.xc{left:146.043900px;}
.x2{left:150.670350px;}
.x5{left:155.293650px;}
.x14{left:170.062200px;}
.x3{left:173.495550px;}
.x17{left:174.891600px;}
.x18{left:179.661600px;}
.x30{left:181.846200px;}
.xb{left:191.338650px;}
.x28{left:192.850650px;}
.x23{left:237.203100px;}
.x19{left:248.601600px;}
.x4{left:258.452550px;}
.x6{left:295.810500px;}
.x7{left:301.611300px;}
.xe{left:304.757400px;}
.xd{left:311.307900px;}
.xf{left:317.610900px;}
.x29{left:349.930650px;}
.x1c{left:376.166100px;}
.x1a{left:379.647600px;}
.x1b{left:381.594600px;}
.x10{left:408.459900px;}
.x11{left:416.247900px;}
.x12{left:426.131400px;}
.x1e{left:453.584100px;}
.x1d{left:458.979600px;}
.x1f{left:466.190100px;}
.x20{left:485.462100px;}
.x2b{left:503.628150px;}
.x2a{left:506.169150px;}
.x2f{left:508.755750px;}
.x2e{left:517.719000px;}
.x22{left:584.115600px;}
.x21{left:592.002600px;}
.x8{left:602.539350px;}
@media print{
.v6{vertical-align:-19.733333pt;}
.v4{vertical-align:-12.693333pt;}
.v9{vertical-align:-11.744533pt;}
.v8{vertical-align:-3.653333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v7{vertical-align:3.610667pt;}
.v3{vertical-align:21.600000pt;}
.v5{vertical-align:23.594667pt;}
.ls5d{letter-spacing:-5.866667pt;}
.ls40{letter-spacing:-5.120000pt;}
.ls3d{letter-spacing:-4.800000pt;}
.ls3e{letter-spacing:-4.672000pt;}
.ls3f{letter-spacing:-4.288000pt;}
.ls5e{letter-spacing:-3.872000pt;}
.ls4c{letter-spacing:-2.496000pt;}
.ls5c{letter-spacing:-2.288000pt;}
.ls2c{letter-spacing:-0.768000pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls53{letter-spacing:-0.645333pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.528000pt;}
.ls37{letter-spacing:-0.512000pt;}
.ls38{letter-spacing:-0.448000pt;}
.ls5b{letter-spacing:-0.410667pt;}
.ls2e{letter-spacing:-0.384000pt;}
.ls3a{letter-spacing:-0.352000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls5f{letter-spacing:-0.293333pt;}
.ls1e{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.234667pt;}
.ls1d{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.176000pt;}
.ls2b{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.117333pt;}
.ls2d{letter-spacing:-0.064000pt;}
.ls65{letter-spacing:-0.058667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.009600pt;}
.ls1f{letter-spacing:0.010133pt;}
.ls22{letter-spacing:0.038400pt;}
.ls5a{letter-spacing:0.058667pt;}
.ls20{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.117333pt;}
.ls16{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.176000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.234667pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.293333pt;}
.ls12{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.352000pt;}
.ls21{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.390400pt;}
.ls27{letter-spacing:0.394133pt;}
.ls19{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.469333pt;}
.ls14{letter-spacing:0.512000pt;}
.ls66{letter-spacing:0.528000pt;}
.ls18{letter-spacing:0.576000pt;}
.ls9{letter-spacing:0.586667pt;}
.ls26{letter-spacing:0.640000pt;}
.ls54{letter-spacing:0.645333pt;}
.ls23{letter-spacing:0.704000pt;}
.ls6a{letter-spacing:0.762667pt;}
.ls32{letter-spacing:0.768000pt;}
.ls8{letter-spacing:0.821333pt;}
.ls34{letter-spacing:0.832000pt;}
.ls3b{letter-spacing:0.857600pt;}
.ls69{letter-spacing:0.880000pt;}
.ls3c{letter-spacing:0.896000pt;}
.ls4a{letter-spacing:0.960000pt;}
.ls6b{letter-spacing:1.056000pt;}
.ls4b{letter-spacing:1.088000pt;}
.ls4d{letter-spacing:1.152000pt;}
.ls67{letter-spacing:1.290667pt;}
.ls2a{letter-spacing:1.344000pt;}
.ls63{letter-spacing:1.408000pt;}
.ls51{letter-spacing:2.144000pt;}
.ls41{letter-spacing:2.150400pt;}
.ls35{letter-spacing:2.176000pt;}
.ls4f{letter-spacing:2.336000pt;}
.ls58{letter-spacing:2.481600pt;}
.ls15{letter-spacing:2.944000pt;}
.ls36{letter-spacing:3.091200pt;}
.ls30{letter-spacing:3.200000pt;}
.ls39{letter-spacing:3.596267pt;}
.ls64{letter-spacing:3.637333pt;}
.ls0{letter-spacing:3.733333pt;}
.ls4e{letter-spacing:3.840000pt;}
.ls45{letter-spacing:4.147200pt;}
.ls50{letter-spacing:4.320000pt;}
.ls49{letter-spacing:4.544000pt;}
.ls31{letter-spacing:4.800000pt;}
.ls44{letter-spacing:4.806400pt;}
.lsb{letter-spacing:5.173333pt;}
.ls52{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls68{letter-spacing:6.133333pt;}
.ls3{letter-spacing:6.400000pt;}
.ls28{letter-spacing:7.008000pt;}
.ls29{letter-spacing:7.232000pt;}
.ls42{letter-spacing:8.000000pt;}
.ls46{letter-spacing:8.102400pt;}
.ls48{letter-spacing:8.198400pt;}
.ls33{letter-spacing:8.320000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls47{letter-spacing:9.395200pt;}
.ls43{letter-spacing:9.472000pt;}
.ls55{letter-spacing:9.738667pt;}
.ls59{letter-spacing:9.797333pt;}
.ls61{letter-spacing:10.090667pt;}
.ls60{letter-spacing:10.442667pt;}
.ls56{letter-spacing:10.560000pt;}
.ls2f{letter-spacing:10.944000pt;}
.ls62{letter-spacing:17.600000pt;}
.ws7f{word-spacing:-34.085333pt;}
.ws2{word-spacing:-24.384000pt;}
.ws30{word-spacing:-22.208000pt;}
.ws65{word-spacing:-21.184000pt;}
.ws6f{word-spacing:-20.320000pt;}
.ws64{word-spacing:-18.752000pt;}
.ws3a{word-spacing:-18.560000pt;}
.ws58{word-spacing:-18.496000pt;}
.ws63{word-spacing:-18.304000pt;}
.ws59{word-spacing:-18.176000pt;}
.ws57{word-spacing:-18.112000pt;}
.ws24{word-spacing:-18.048000pt;}
.ws23{word-spacing:-17.984000pt;}
.ws67{word-spacing:-17.856000pt;}
.ws5a{word-spacing:-17.792000pt;}
.ws5c{word-spacing:-17.728000pt;}
.ws8b{word-spacing:-17.600000pt;}
.ws41{word-spacing:-16.512000pt;}
.ws47{word-spacing:-16.485333pt;}
.ws32{word-spacing:-16.448000pt;}
.ws66{word-spacing:-16.384000pt;}
.ws17{word-spacing:-16.320000pt;}
.ws62{word-spacing:-16.192000pt;}
.ws40{word-spacing:-16.128000pt;}
.ws72{word-spacing:-16.074667pt;}
.ws42{word-spacing:-16.064000pt;}
.ws31{word-spacing:-15.872000pt;}
.ws16{word-spacing:-15.808000pt;}
.ws27{word-spacing:-15.552000pt;}
.ws2f{word-spacing:-15.488000pt;}
.ws87{word-spacing:-15.253333pt;}
.ws2e{word-spacing:-15.232000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws3{word-spacing:-14.842667pt;}
.ws5{word-spacing:-14.784000pt;}
.ws4{word-spacing:-14.490667pt;}
.ws80{word-spacing:-14.432000pt;}
.ws1{word-spacing:-14.373333pt;}
.ws56{word-spacing:-13.312000pt;}
.ws55{word-spacing:-13.184000pt;}
.ws5b{word-spacing:-12.864000pt;}
.ws25{word-spacing:-10.828800pt;}
.ws26{word-spacing:-10.790400pt;}
.ws77{word-spacing:-10.560000pt;}
.ws7d{word-spacing:-10.442667pt;}
.ws7e{word-spacing:-10.090667pt;}
.ws6{word-spacing:-10.067200pt;}
.ws71{word-spacing:-9.891200pt;}
.ws7b{word-spacing:-9.797333pt;}
.ws76{word-spacing:-9.738667pt;}
.wsa{word-spacing:-9.066667pt;}
.ws28{word-spacing:-6.400000pt;}
.ws89{word-spacing:-6.133333pt;}
.ws9{word-spacing:-5.866667pt;}
.ws81{word-spacing:-5.333333pt;}
.wsb{word-spacing:-5.173333pt;}
.ws44{word-spacing:-4.800000pt;}
.ws8{word-spacing:-3.733333pt;}
.ws43{word-spacing:-3.200000pt;}
.ws86{word-spacing:-1.408000pt;}
.ws39{word-spacing:-1.344000pt;}
.ws85{word-spacing:-1.290667pt;}
.ws6c{word-spacing:-1.152000pt;}
.ws6b{word-spacing:-1.088000pt;}
.ws88{word-spacing:-1.056000pt;}
.ws69{word-spacing:-0.960000pt;}
.ws8a{word-spacing:-0.880000pt;}
.ws4e{word-spacing:-0.832000pt;}
.ws14{word-spacing:-0.821333pt;}
.ws45{word-spacing:-0.768000pt;}
.ws2b{word-spacing:-0.704000pt;}
.ws73{word-spacing:-0.645333pt;}
.ws35{word-spacing:-0.640000pt;}
.ws15{word-spacing:-0.586667pt;}
.ws21{word-spacing:-0.576000pt;}
.ws84{word-spacing:-0.528000pt;}
.ws1a{word-spacing:-0.512000pt;}
.wse{word-spacing:-0.469333pt;}
.ws1e{word-spacing:-0.448000pt;}
.ws2a{word-spacing:-0.384000pt;}
.wsd{word-spacing:-0.352000pt;}
.ws18{word-spacing:-0.320000pt;}
.ws12{word-spacing:-0.293333pt;}
.ws1f{word-spacing:-0.256000pt;}
.ws13{word-spacing:-0.234667pt;}
.ws1d{word-spacing:-0.192000pt;}
.ws1c{word-spacing:-0.128000pt;}
.wsf{word-spacing:-0.117333pt;}
.ws29{word-spacing:-0.064000pt;}
.ws7c{word-spacing:-0.058667pt;}
.ws7{word-spacing:0.000000pt;}
.ws82{word-spacing:0.058667pt;}
.ws3b{word-spacing:0.064000pt;}
.ws83{word-spacing:0.117333pt;}
.ws33{word-spacing:0.128000pt;}
.wsc{word-spacing:0.176000pt;}
.ws20{word-spacing:0.192000pt;}
.ws11{word-spacing:0.234667pt;}
.ws22{word-spacing:0.256000pt;}
.ws7a{word-spacing:0.293333pt;}
.ws19{word-spacing:0.320000pt;}
.ws54{word-spacing:0.352000pt;}
.ws3c{word-spacing:0.384000pt;}
.ws74{word-spacing:0.410667pt;}
.ws51{word-spacing:0.448000pt;}
.ws4f{word-spacing:0.512000pt;}
.ws10{word-spacing:0.528000pt;}
.ws2d{word-spacing:0.576000pt;}
.ws1b{word-spacing:0.640000pt;}
.ws70{word-spacing:0.645333pt;}
.ws2c{word-spacing:0.704000pt;}
.ws34{word-spacing:0.768000pt;}
.ws5d{word-spacing:1.024000pt;}
.ws75{word-spacing:2.288000pt;}
.ws6e{word-spacing:2.432000pt;}
.ws68{word-spacing:2.496000pt;}
.ws3d{word-spacing:2.944000pt;}
.ws50{word-spacing:3.072000pt;}
.ws79{word-spacing:3.872000pt;}
.ws60{word-spacing:4.288000pt;}
.ws6d{word-spacing:4.672000pt;}
.ws3e{word-spacing:4.928000pt;}
.ws38{word-spacing:5.696000pt;}
.ws78{word-spacing:5.866667pt;}
.ws3f{word-spacing:6.016000pt;}
.ws37{word-spacing:6.208000pt;}
.ws61{word-spacing:7.872000pt;}
.ws5f{word-spacing:7.936000pt;}
.ws36{word-spacing:8.960000pt;}
.ws5e{word-spacing:9.024000pt;}
.ws6a{word-spacing:9.856000pt;}
.ws48{word-spacing:90.698667pt;}
.ws52{word-spacing:95.274667pt;}
.ws49{word-spacing:131.712000pt;}
.ws46{word-spacing:139.280000pt;}
.ws4b{word-spacing:179.712000pt;}
.ws4c{word-spacing:192.896000pt;}
.ws4a{word-spacing:195.852800pt;}
.ws4d{word-spacing:223.104000pt;}
.ws53{word-spacing:495.029333pt;}
._10{margin-left:-13.126400pt;}
._2f{margin-left:-11.200000pt;}
._30{margin-left:-9.773333pt;}
._7{margin-left:-8.508800pt;}
._12{margin-left:-7.502933pt;}
._4{margin-left:-6.613333pt;}
._2{margin-left:-4.957333pt;}
._9{margin-left:-3.608533pt;}
._b{margin-left:-2.306667pt;}
._3{margin-left:-1.066667pt;}
._5{width:1.218667pt;}
._d{width:2.811733pt;}
._0{width:3.733333pt;}
._a{width:5.338667pt;}
._f{width:6.232000pt;}
._e{width:7.166933pt;}
._c{width:8.106667pt;}
._8{width:9.066667pt;}
._1{width:9.973333pt;}
._11{width:10.880000pt;}
._31{width:11.978667pt;}
._6{width:15.413333pt;}
._33{width:17.740267pt;}
._32{width:18.890667pt;}
._13{width:50.598400pt;}
._2c{width:82.426667pt;}
._15{width:110.912000pt;}
._1b{width:162.880000pt;}
._1a{width:174.464000pt;}
._14{width:185.093333pt;}
._1d{width:209.088000pt;}
._19{width:216.064000pt;}
._16{width:220.138667pt;}
._1e{width:222.944533pt;}
._1c{width:259.072000pt;}
._18{width:299.818667pt;}
._1f{width:307.072000pt;}
._17{width:333.802667pt;}
._2e{width:453.560000pt;}
._22{width:461.080000pt;}
._24{width:482.181333pt;}
._27{width:496.848000pt;}
._21{width:511.514667pt;}
._26{width:514.226667pt;}
._25{width:570.800000pt;}
._2d{width:626.581333pt;}
._2b{width:678.128000pt;}
._20{width:701.008000pt;}
._29{width:717.141333pt;}
._2a{width:721.144000pt;}
._23{width:743.378667pt;}
._28{width:773.122667pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:35.200000pt;}
.fs2{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:66.970533pt;}
.y1{bottom:67.857200pt;}
.ye6{bottom:124.723067pt;}
.y201{bottom:126.714133pt;}
.y113{bottom:127.027067pt;}
.y1be{bottom:127.461600pt;}
.y136{bottom:127.573600pt;}
.yc5{bottom:128.216267pt;}
.y21{bottom:128.280133pt;}
.y1de{bottom:128.542533pt;}
.y47{bottom:128.563867pt;}
.y226{bottom:128.938133pt;}
.y24b{bottom:128.992400pt;}
.y17c{bottom:129.114933pt;}
.y26b{bottom:129.548267pt;}
.y89{bottom:129.657200pt;}
.yad{bottom:129.657733pt;}
.y19f{bottom:129.690933pt;}
.y68{bottom:129.795867pt;}
.y159{bottom:131.149600pt;}
.y200{bottom:143.111467pt;}
.ye5{bottom:144.324400pt;}
.y225{bottom:144.670133pt;}
.y135{bottom:145.301600pt;}
.y112{bottom:146.227067pt;}
.y20{bottom:146.408133pt;}
.y24a{bottom:147.252400pt;}
.y26a{bottom:147.280267pt;}
.y1bd{bottom:147.333600pt;}
.yc4{bottom:147.416267pt;}
.y1dd{bottom:147.742533pt;}
.y46{bottom:147.763867pt;}
.y17b{bottom:148.986933pt;}
.y88{bottom:149.385200pt;}
.y67{bottom:149.523867pt;}
.y19e{bottom:149.562933pt;}
.y158{bottom:151.565600pt;}
.y1ff{bottom:159.508800pt;}
.yac{bottom:160.533600pt;}
.y134{bottom:163.701600pt;}
.y1f{bottom:164.536133pt;}
.y269{bottom:165.012267pt;}
.y249{bottom:165.380400pt;}
.y111{bottom:165.427067pt;}
.yc3{bottom:166.616267pt;}
.y1dc{bottom:166.942533pt;}
.y45{bottom:166.963867pt;}
.y1bc{bottom:167.205600pt;}
.y17a{bottom:168.858933pt;}
.y87{bottom:169.113200pt;}
.y66{bottom:169.251867pt;}
.y19d{bottom:169.434933pt;}
.y224{bottom:170.296933pt;}
.y157{bottom:171.981600pt;}
.y1fe{bottom:176.712800pt;}
.ye4{bottom:177.493600pt;}
.yab{bottom:179.461600pt;}
.y133{bottom:182.101600pt;}
.y1e{bottom:182.664133pt;}
.y268{bottom:182.744267pt;}
.y248{bottom:183.508400pt;}
.y110{bottom:184.627067pt;}
.yc2{bottom:185.816267pt;}
.y1db{bottom:186.142533pt;}
.y44{bottom:186.163867pt;}
.y1bb{bottom:187.077600pt;}
.y223{bottom:188.160933pt;}
.y179{bottom:188.730933pt;}
.y86{bottom:188.841200pt;}
.y65{bottom:188.979867pt;}
.y19c{bottom:189.306933pt;}
.y156{bottom:192.397600pt;}
.y1fd{bottom:193.916800pt;}
.ye3{bottom:197.093600pt;}
.yaa{bottom:198.389600pt;}
.y267{bottom:200.476267pt;}
.y132{bottom:200.501600pt;}
.y1d{bottom:200.792133pt;}
.y247{bottom:201.636400pt;}
.y10f{bottom:203.827067pt;}
.yc1{bottom:205.016267pt;}
.y1da{bottom:205.342533pt;}
.y43{bottom:205.363867pt;}
.y222{bottom:206.024933pt;}
.y1ba{bottom:206.949600pt;}
.y85{bottom:208.569200pt;}
.y178{bottom:208.602933pt;}
.y64{bottom:208.707867pt;}
.y19b{bottom:209.178933pt;}
.y155{bottom:212.813600pt;}
.ye2{bottom:216.693600pt;}
.ya9{bottom:217.317600pt;}
.y266{bottom:218.208267pt;}
.y1fc{bottom:218.675867pt;}
.y131{bottom:218.901600pt;}
.y1c{bottom:218.946800pt;}
.y246{bottom:219.764400pt;}
.y10e{bottom:223.027067pt;}
.y221{bottom:223.888933pt;}
.y42{bottom:224.563867pt;}
.y1b9{bottom:226.821600pt;}
.y84{bottom:228.297200pt;}
.y63{bottom:228.435867pt;}
.y177{bottom:228.474933pt;}
.y19a{bottom:229.050933pt;}
.y1d9{bottom:232.101600pt;}
.y154{bottom:233.229600pt;}
.y265{bottom:235.940267pt;}
.ya8{bottom:236.245600pt;}
.ye1{bottom:236.293600pt;}
.y1b{bottom:237.074800pt;}
.y245{bottom:237.892400pt;}
.y220{bottom:241.752933pt;}
.y10d{bottom:242.227067pt;}
.yc0{bottom:243.416267pt;}
.y41{bottom:243.635867pt;}
.y1b8{bottom:246.693600pt;}
.y83{bottom:248.025200pt;}
.y62{bottom:248.163867pt;}
.y176{bottom:248.346933pt;}
.y199{bottom:248.922933pt;}
.y130{bottom:249.834933pt;}
.y153{bottom:253.645600pt;}
.y264{bottom:253.672267pt;}
.ya7{bottom:255.173600pt;}
.y1a{bottom:255.202800pt;}
.ye0{bottom:255.893600pt;}
.y244{bottom:256.020400pt;}
.y21f{bottom:259.616933pt;}
.y1fb{bottom:260.634933pt;}
.y10c{bottom:261.427067pt;}
.y40{bottom:262.707867pt;}
.y1b7{bottom:266.565600pt;}
.y82{bottom:267.753200pt;}
.y61{bottom:267.891867pt;}
.y175{bottom:268.218933pt;}
.y198{bottom:268.794933pt;}
.y263{bottom:271.404267pt;}
.y19{bottom:273.330800pt;}
.y152{bottom:274.061600pt;}
.ya6{bottom:274.101600pt;}
.y243{bottom:274.148400pt;}
.ydf{bottom:275.495600pt;}
.y21e{bottom:277.480933pt;}
.y1fa{bottom:279.434933pt;}
.y10b{bottom:280.627067pt;}
.y3f{bottom:281.779867pt;}
.y1b6{bottom:286.437600pt;}
.y81{bottom:287.481200pt;}
.y60{bottom:287.619867pt;}
.y174{bottom:288.090933pt;}
.y197{bottom:288.666933pt;}
.y262{bottom:289.136267pt;}
.y1d8{bottom:289.562933pt;}
.y18{bottom:291.458800pt;}
.y242{bottom:292.276400pt;}
.ya5{bottom:293.029600pt;}
.y12f{bottom:293.434933pt;}
.y151{bottom:294.477600pt;}
.yde{bottom:295.095600pt;}
.y21d{bottom:295.344933pt;}
.y1f9{bottom:298.234933pt;}
.y10a{bottom:299.827067pt;}
.y3e{bottom:300.851867pt;}
.y1b5{bottom:306.309600pt;}
.y261{bottom:306.868267pt;}
.y80{bottom:307.219867pt;}
.y5f{bottom:307.347867pt;}
.y173{bottom:307.962933pt;}
.y196{bottom:308.538933pt;}
.y1d7{bottom:308.634933pt;}
.y17{bottom:309.586800pt;}
.y241{bottom:310.404400pt;}
.ya4{bottom:311.957600pt;}
.y12e{bottom:311.962933pt;}
.y21c{bottom:313.208933pt;}
.ydd{bottom:314.695600pt;}
.y150{bottom:314.893600pt;}
.y1f8{bottom:317.034933pt;}
.y109{bottom:319.027067pt;}
.y3d{bottom:319.923867pt;}
.y260{bottom:324.600267pt;}
.y1b4{bottom:326.181600pt;}
.y7f{bottom:326.947867pt;}
.y5e{bottom:327.129200pt;}
.y1d6{bottom:327.706933pt;}
.y172{bottom:327.834933pt;}
.y195{bottom:328.410933pt;}
.y240{bottom:328.532400pt;}
.y12d{bottom:330.490933pt;}
.ya3{bottom:330.885600pt;}
.y21b{bottom:331.072933pt;}
.ydc{bottom:334.295600pt;}
.y16{bottom:335.279200pt;}
.y14f{bottom:335.309600pt;}
.y1f7{bottom:335.834933pt;}
.y108{bottom:338.227067pt;}
.y3c{bottom:338.995867pt;}
.y25f{bottom:342.332267pt;}
.y1b3{bottom:346.053600pt;}
.y23f{bottom:346.660400pt;}
.y7e{bottom:346.675867pt;}
.y1d5{bottom:346.778933pt;}
.y5d{bottom:346.857200pt;}
.y171{bottom:347.706933pt;}
.y194{bottom:348.282933pt;}
.y21a{bottom:348.950267pt;}
.y12c{bottom:349.018933pt;}
.ya2{bottom:349.813600pt;}
.ydb{bottom:353.895600pt;}
.y1f6{bottom:354.634933pt;}
.y107{bottom:357.427067pt;}
.y3b{bottom:358.067867pt;}
.y14e{bottom:359.465600pt;}
.y25e{bottom:360.064267pt;}
.y23e{bottom:364.788400pt;}
.y1d4{bottom:365.850933pt;}
.y1b2{bottom:365.925600pt;}
.y5c{bottom:366.585200pt;}
.y219{bottom:366.814267pt;}
.y12b{bottom:367.546933pt;}
.y170{bottom:367.578933pt;}
.y193{bottom:368.154933pt;}
.ya1{bottom:368.741600pt;}
.y1f5{bottom:373.434933pt;}
.yda{bottom:373.495600pt;}
.y7d{bottom:373.968267pt;}
.y106{bottom:376.627067pt;}
.ybf{bottom:376.809200pt;}
.y3a{bottom:377.139867pt;}
.y14d{bottom:377.329600pt;}
.y25d{bottom:377.796267pt;}
.y15{bottom:382.788400pt;}
.y23d{bottom:382.916400pt;}
.y218{bottom:384.678267pt;}
.y1d3{bottom:384.922933pt;}
.y1b1{bottom:385.797600pt;}
.y12a{bottom:386.074933pt;}
.y5b{bottom:386.313200pt;}
.y16f{bottom:387.450933pt;}
.ya0{bottom:387.669600pt;}
.y192{bottom:388.026933pt;}
.y1f4{bottom:392.234933pt;}
.yd9{bottom:393.095600pt;}
.y7c{bottom:393.568267pt;}
.y25c{bottom:395.528267pt;}
.y105{bottom:395.827067pt;}
.y39{bottom:396.211867pt;}
.y14{bottom:400.916400pt;}
.y23c{bottom:401.044400pt;}
.y217{bottom:402.542267pt;}
.y1d2{bottom:403.994933pt;}
.y129{bottom:404.602933pt;}
.y1b0{bottom:405.669600pt;}
.y5a{bottom:406.041200pt;}
.y9f{bottom:406.597600pt;}
.y16e{bottom:407.322933pt;}
.y14c{bottom:407.706933pt;}
.y191{bottom:407.898933pt;}
.y1f3{bottom:411.034933pt;}
.yd8{bottom:412.695600pt;}
.y25b{bottom:413.260267pt;}
.ybe{bottom:413.609200pt;}
.y104{bottom:415.027067pt;}
.y38{bottom:415.283867pt;}
.y13{bottom:419.044400pt;}
.y23b{bottom:419.172400pt;}
.y216{bottom:420.274267pt;}
.y1d1{bottom:423.066933pt;}
.y128{bottom:423.130933pt;}
.y14b{bottom:424.368267pt;}
.y9e{bottom:425.525600pt;}
.y1af{bottom:425.541600pt;}
.y59{bottom:425.769200pt;}
.y16d{bottom:427.194933pt;}
.y190{bottom:427.770933pt;}
.y1f2{bottom:429.834933pt;}
.y25a{bottom:430.992267pt;}
.yd7{bottom:432.295600pt;}
.ybd{bottom:432.809200pt;}
.y103{bottom:434.227067pt;}
.y37{bottom:434.355867pt;}
.y12{bottom:437.172400pt;}
.y23a{bottom:437.300400pt;}
.y215{bottom:438.006267pt;}
.y127{bottom:441.658933pt;}
.y1d0{bottom:442.138933pt;}
.y9d{bottom:444.453600pt;}
.y1ae{bottom:445.413600pt;}
.y58{bottom:445.497200pt;}
.y16c{bottom:447.066933pt;}
.y18f{bottom:447.642933pt;}
.y1f1{bottom:448.634933pt;}
.y259{bottom:448.724267pt;}
.yd6{bottom:451.895600pt;}
.ybc{bottom:452.009200pt;}
.y7b{bottom:452.362933pt;}
.y102{bottom:453.427067pt;}
.y36{bottom:453.427867pt;}
.y11{bottom:455.300400pt;}
.y239{bottom:455.428400pt;}
.y214{bottom:455.738267pt;}
.y14a{bottom:459.194933pt;}
.y126{bottom:460.186933pt;}
.y1cf{bottom:461.210933pt;}
.y9c{bottom:463.381600pt;}
.y57{bottom:465.225200pt;}
.y1ad{bottom:465.285600pt;}
.y258{bottom:466.456267pt;}
.y16b{bottom:466.938933pt;}
.y1f0{bottom:467.434933pt;}
.y18e{bottom:467.514933pt;}
.yd5{bottom:471.495600pt;}
.y7a{bottom:471.962933pt;}
.y35{bottom:472.499867pt;}
.y101{bottom:472.627067pt;}
.y10{bottom:473.428400pt;}
.y213{bottom:473.471467pt;}
.y238{bottom:473.556400pt;}
.y149{bottom:477.466933pt;}
.y125{bottom:478.714933pt;}
.y1ce{bottom:480.282933pt;}
.y9b{bottom:482.309600pt;}
.y257{bottom:484.188267pt;}
.ybb{bottom:484.542533pt;}
.y56{bottom:484.953200pt;}
.y1ac{bottom:485.157600pt;}
.y1ef{bottom:486.234933pt;}
.y16a{bottom:486.810933pt;}
.y18d{bottom:487.386933pt;}
.yd4{bottom:491.095600pt;}
.y212{bottom:491.212933pt;}
.yf{bottom:491.556400pt;}
.y79{bottom:491.562933pt;}
.y34{bottom:491.571867pt;}
.y237{bottom:491.684400pt;}
.y100{bottom:491.827067pt;}
.y148{bottom:495.738933pt;}
.y124{bottom:497.242933pt;}
.y1cd{bottom:499.354933pt;}
.y9a{bottom:501.237600pt;}
.y55{bottom:504.681200pt;}
.y1ab{bottom:505.029600pt;}
.y1ee{bottom:505.034933pt;}
.y169{bottom:506.682933pt;}
.y18c{bottom:507.258933pt;}
.y211{bottom:508.944933pt;}
.ye{bottom:509.684400pt;}
.y236{bottom:509.812400pt;}
.y33{bottom:510.643867pt;}
.yd3{bottom:510.695600pt;}
.yff{bottom:511.027067pt;}
.y78{bottom:511.162933pt;}
.y147{bottom:514.010933pt;}
.y123{bottom:515.770933pt;}
.y1cc{bottom:518.426933pt;}
.y99{bottom:520.165600pt;}
.y256{bottom:521.254933pt;}
.y1ed{bottom:523.834933pt;}
.y54{bottom:524.414533pt;}
.y1aa{bottom:524.901600pt;}
.y168{bottom:526.554933pt;}
.y210{bottom:526.676933pt;}
.y18b{bottom:527.130933pt;}
.yd{bottom:527.812400pt;}
.y235{bottom:527.940400pt;}
.y32{bottom:529.715867pt;}
.yfe{bottom:530.227067pt;}
.yd2{bottom:530.295600pt;}
.yba{bottom:530.409200pt;}
.y77{bottom:530.762933pt;}
.y146{bottom:532.282933pt;}
.y122{bottom:534.298933pt;}
.y1cb{bottom:537.498933pt;}
.y98{bottom:539.093600pt;}
.y1ec{bottom:542.634933pt;}
.y53{bottom:544.147867pt;}
.y20f{bottom:544.408933pt;}
.y234{bottom:546.068400pt;}
.y167{bottom:546.426933pt;}
.y18a{bottom:547.002933pt;}
.y277{bottom:547.121600pt;}
.y31{bottom:548.787867pt;}
.yfd{bottom:549.427067pt;}
.yb9{bottom:549.609200pt;}
.y76{bottom:550.362933pt;}
.y145{bottom:550.554933pt;}
.y121{bottom:552.826933pt;}
.yc{bottom:553.504800pt;}
.y1ca{bottom:556.570933pt;}
.y97{bottom:558.021600pt;}
.y255{bottom:558.326933pt;}
.y1a9{bottom:558.762933pt;}
.y1eb{bottom:561.434933pt;}
.y20e{bottom:562.140933pt;}
.y276{bottom:563.121600pt;}
.y52{bottom:563.849200pt;}
.y233{bottom:564.328400pt;}
.y166{bottom:566.298933pt;}
.y189{bottom:566.874933pt;}
.y30{bottom:567.859867pt;}
.yfc{bottom:568.627067pt;}
.yb8{bottom:568.809200pt;}
.y144{bottom:568.826933pt;}
.yd1{bottom:569.655600pt;}
.y75{bottom:569.962933pt;}
.y120{bottom:571.354933pt;}
.y1c9{bottom:575.642933pt;}
.y96{bottom:576.949600pt;}
.y254{bottom:577.654933pt;}
.y1a8{bottom:578.634933pt;}
.y275{bottom:579.121600pt;}
.y20d{bottom:579.872933pt;}
.y1ea{bottom:580.234933pt;}
.y232{bottom:582.588400pt;}
.y51{bottom:583.577200pt;}
.y165{bottom:586.170933pt;}
.y188{bottom:586.746933pt;}
.y2f{bottom:586.931867pt;}
.y143{bottom:587.098933pt;}
.yfb{bottom:587.827067pt;}
.yb7{bottom:588.009200pt;}
.y74{bottom:589.562933pt;}
.y11f{bottom:589.882933pt;}
.yd0{bottom:590.967600pt;}
.y1c8{bottom:594.714933pt;}
.y274{bottom:595.121600pt;}
.y95{bottom:595.877600pt;}
.y253{bottom:596.988267pt;}
.y20c{bottom:597.604933pt;}
.y1e9{bottom:599.034933pt;}
.y231{bottom:600.848400pt;}
.y50{bottom:603.449200pt;}
.y142{bottom:605.370933pt;}
.y2e{bottom:606.003867pt;}
.y164{bottom:606.042933pt;}
.y187{bottom:606.618933pt;}
.yfa{bottom:607.027067pt;}
.yb6{bottom:607.209200pt;}
.y11e{bottom:608.410933pt;}
.y73{bottom:609.162933pt;}
.yb{bottom:611.643467pt;}
.y1c7{bottom:613.786933pt;}
.y94{bottom:614.805600pt;}
.ycf{bottom:615.257733pt;}
.y20b{bottom:615.339600pt;}
.y1e8{bottom:617.834933pt;}
.y230{bottom:619.108400pt;}
.y4f{bottom:623.321200pt;}
.y141{bottom:623.642933pt;}
.yce{bottom:623.779067pt;}
.y2d{bottom:625.075867pt;}
.y163{bottom:625.914933pt;}
.yf9{bottom:626.227067pt;}
.yb5{bottom:626.409200pt;}
.y1a7{bottom:626.458933pt;}
.y186{bottom:626.490933pt;}
.y11d{bottom:626.938933pt;}
.y72{bottom:628.762933pt;}
.ya{bottom:629.771467pt;}
.y273{bottom:630.321600pt;}
.y1c6{bottom:632.858933pt;}
.y20a{bottom:633.071600pt;}
.y93{bottom:633.733600pt;}
.y1e7{bottom:636.634933pt;}
.y22f{bottom:637.368400pt;}
.ycd{bottom:641.643067pt;}
.y140{bottom:641.914933pt;}
.y4e{bottom:643.193200pt;}
.y2c{bottom:644.275867pt;}
.y11c{bottom:645.466933pt;}
.y162{bottom:645.786933pt;}
.y1a6{bottom:646.330933pt;}
.y185{bottom:646.362933pt;}
.y272{bottom:647.921600pt;}
.y71{bottom:648.362933pt;}
.y209{bottom:650.803600pt;}
.y252{bottom:651.788267pt;}
.y1c5{bottom:651.930933pt;}
.y92{bottom:652.661600pt;}
.yb4{bottom:653.168267pt;}
.y1e6{bottom:655.434933pt;}
.y22e{bottom:655.628400pt;}
.ycc{bottom:659.507067pt;}
.y13f{bottom:660.186933pt;}
.y4d{bottom:663.065200pt;}
.y2b{bottom:663.475867pt;}
.y11b{bottom:663.994933pt;}
.y161{bottom:665.658933pt;}
.y1a5{bottom:666.202933pt;}
.y184{bottom:666.234933pt;}
.y9{bottom:667.627467pt;}
.yf8{bottom:667.779067pt;}
.y251{bottom:667.921600pt;}
.y70{bottom:667.962933pt;}
.y1c4{bottom:671.002933pt;}
.y91{bottom:671.589600pt;}
.yb3{bottom:672.368267pt;}
.y22d{bottom:673.888400pt;}
.y1e5{bottom:674.234933pt;}
.y208{bottom:676.096000pt;}
.y13e{bottom:678.458933pt;}
.y11a{bottom:682.522933pt;}
.y2a{bottom:682.675867pt;}
.y4c{bottom:682.937200pt;}
.y250{bottom:684.054933pt;}
.y271{bottom:684.721600pt;}
.y160{bottom:685.530933pt;}
.y1a4{bottom:686.074933pt;}
.y183{bottom:686.106933pt;}
.y6f{bottom:687.562933pt;}
.y1c3{bottom:690.074933pt;}
.y90{bottom:690.517600pt;}
.ycb{bottom:690.638933pt;}
.y22c{bottom:692.148400pt;}
.y1e4{bottom:693.034933pt;}
.yf7{bottom:695.043067pt;}
.y8{bottom:695.371467pt;}
.y13d{bottom:696.730933pt;}
.y24f{bottom:700.188267pt;}
.y119{bottom:701.050933pt;}
.y29{bottom:701.875867pt;}
.y270{bottom:702.321600pt;}
.y4b{bottom:702.809200pt;}
.y15f{bottom:705.402933pt;}
.y1a3{bottom:705.946933pt;}
.y182{bottom:705.978933pt;}
.y6e{bottom:707.162933pt;}
.yca{bottom:708.634933pt;}
.y1c2{bottom:709.146933pt;}
.y8f{bottom:709.445600pt;}
.y22b{bottom:710.408400pt;}
.y1e3{bottom:711.834933pt;}
.y13c{bottom:715.002933pt;}
.y207{bottom:719.129600pt;}
.y118{bottom:719.578933pt;}
.y26f{bottom:719.921600pt;}
.y28{bottom:721.075867pt;}
.yea{bottom:722.307067pt;}
.yef{bottom:723.201733pt;}
.yf3{bottom:723.216400pt;}
.y15e{bottom:725.274933pt;}
.y1a2{bottom:725.818933pt;}
.y181{bottom:725.850933pt;}
.y6d{bottom:726.762933pt;}
.y1c1{bottom:728.218933pt;}
.y8e{bottom:728.373600pt;}
.yb2{bottom:729.994933pt;}
.y4a{bottom:730.234933pt;}
.y1e2{bottom:730.634933pt;}
.y13b{bottom:733.274933pt;}
.y24e{bottom:735.656400pt;}
.yf6{bottom:736.020400pt;}
.y206{bottom:736.861600pt;}
.y26e{bottom:737.521600pt;}
.y117{bottom:738.106933pt;}
.yeb{bottom:740.163067pt;}
.y27{bottom:740.275867pt;}
.yee{bottom:741.065733pt;}
.yf2{bottom:741.080400pt;}
.y7{bottom:745.026133pt;}
.y15d{bottom:745.146933pt;}
.y1a1{bottom:745.690933pt;}
.y180{bottom:745.722933pt;}
.yc9{bottom:746.234933pt;}
.y6c{bottom:746.362933pt;}
.y1c0{bottom:747.290933pt;}
.y8d{bottom:747.322933pt;}
.y22a{bottom:748.541600pt;}
.yb1{bottom:748.922933pt;}
.y49{bottom:749.434933pt;}
.y13a{bottom:751.546933pt;}
.y24d{bottom:753.388400pt;}
.y205{bottom:754.593600pt;}
.y26d{bottom:755.121600pt;}
.y116{bottom:756.634933pt;}
.ye9{bottom:758.035067pt;}
.yed{bottom:758.929733pt;}
.yf1{bottom:758.944400pt;}
.yf5{bottom:758.959067pt;}
.y26{bottom:759.475867pt;}
.y6{bottom:761.559467pt;}
.y15c{bottom:765.018933pt;}
.y17f{bottom:765.450933pt;}
.y1a0{bottom:765.562933pt;}
.yc8{bottom:765.834933pt;}
.y6b{bottom:765.962933pt;}
.y1bf{bottom:766.362933pt;}
.y8c{bottom:766.650933pt;}
.yb0{bottom:767.850933pt;}
.y1e1{bottom:768.234933pt;}
.y139{bottom:769.818933pt;}
.y204{bottom:772.325600pt;}
.y26c{bottom:772.721600pt;}
.y115{bottom:775.162933pt;}
.yec{bottom:775.891067pt;}
.ye8{bottom:775.907067pt;}
.yf0{bottom:776.808400pt;}
.yf4{bottom:776.823067pt;}
.y5{bottom:778.092800pt;}
.y4{bottom:778.094933pt;}
.y25{bottom:778.675867pt;}
.y15b{bottom:784.890933pt;}
.y17e{bottom:785.178933pt;}
.yc7{bottom:785.434933pt;}
.y6a{bottom:785.562933pt;}
.y8b{bottom:785.978933pt;}
.y229{bottom:786.669600pt;}
.yaf{bottom:786.778933pt;}
.y1e0{bottom:787.034933pt;}
.y138{bottom:788.090933pt;}
.y203{bottom:790.057600pt;}
.y24c{bottom:790.321600pt;}
.y24{bottom:797.875867pt;}
.y15a{bottom:804.762933pt;}
.y17d{bottom:804.906933pt;}
.yc6{bottom:805.034933pt;}
.y69{bottom:805.162933pt;}
.y8a{bottom:805.306933pt;}
.yae{bottom:805.706933pt;}
.y1df{bottom:805.834933pt;}
.y48{bottom:805.962933pt;}
.y114{bottom:806.234933pt;}
.y137{bottom:806.362933pt;}
.y228{bottom:806.541600pt;}
.y202{bottom:807.789600pt;}
.ye7{bottom:807.921600pt;}
.y3{bottom:808.988267pt;}
.y23{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.y227{bottom:826.408400pt;}
.hb{height:23.288802pt;}
.hd{height:27.171875pt;}
.h3{height:31.700521pt;}
.h9{height:36.229167pt;}
.h2{height:36.796875pt;}
.he{height:43.022135pt;}
.h5{height:45.286458pt;}
.h4{height:49.815104pt;}
.hf{height:50.690417pt;}
.h8{height:51.489062pt;}
.h7{height:54.343750pt;}
.ha{height:54.450417pt;}
.hc{height:56.278250pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:68.031467pt;}
.x24{left:73.527200pt;}
.x16{left:75.747200pt;}
.x25{left:77.248133pt;}
.x26{left:79.653467pt;}
.x1{left:86.929200pt;}
.x13{left:92.429200pt;}
.xa{left:105.826800pt;}
.x15{left:109.299200pt;}
.x2c{left:112.653467pt;}
.x27{left:115.733467pt;}
.x2d{left:124.732133pt;}
.xc{left:129.816800pt;}
.x2{left:133.929200pt;}
.x5{left:138.038800pt;}
.x14{left:151.166400pt;}
.x3{left:154.218267pt;}
.x17{left:155.459200pt;}
.x18{left:159.699200pt;}
.x30{left:161.641067pt;}
.xb{left:170.078800pt;}
.x28{left:171.422800pt;}
.x23{left:210.847200pt;}
.x19{left:220.979200pt;}
.x4{left:229.735600pt;}
.x6{left:262.942667pt;}
.x7{left:268.098933pt;}
.xe{left:270.895467pt;}
.xd{left:276.718133pt;}
.xf{left:282.320800pt;}
.x29{left:311.049467pt;}
.x1c{left:334.369867pt;}
.x1a{left:337.464533pt;}
.x1b{left:339.195200pt;}
.x10{left:363.075467pt;}
.x11{left:369.998133pt;}
.x12{left:378.783467pt;}
.x1e{left:403.185867pt;}
.x1d{left:407.981867pt;}
.x1f{left:414.391200pt;}
.x20{left:431.521867pt;}
.x2b{left:447.669467pt;}
.x2a{left:449.928133pt;}
.x2f{left:452.227333pt;}
.x2e{left:460.194667pt;}
.x22{left:519.213867pt;}
.x21{left:526.224533pt;}
.x8{left:535.590533pt;}
}




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