
    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_11e27e03414dbef678f94432.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.131000;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_a6c86ebfe2794bd804d4b1ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012000;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_1acfe1e1ffc6b04d81155049.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.165000;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_4e89a426fd30e45421aab4e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_324b4c363702c4ff1f8b94e0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734000;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_a1c225e31fbdd9017b56f112.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.000000;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_ed8072abdc2dfbb96e40a5d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_84983fdc8cff705481eb74dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948000;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;}
.m6{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.mb{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5{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:-1.332000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.762000px;}
.ls7{letter-spacing:-1.917600px;}
.ls1{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.282000px;}
.ls2{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.164406px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.023279px;}
.lsc{letter-spacing:0.027365px;}
.ls9{letter-spacing:1.209600px;}
.ls5{letter-spacing:1.512000px;}
.ls11{letter-spacing:2.160000px;}
.lsd{letter-spacing:4.363200px;}
.lsb{letter-spacing:5.097600px;}
.lsa{letter-spacing:5.702400px;}
.ls4{letter-spacing:5.704948px;}
.ls8{letter-spacing:8.294400px;}
.ls3{letter-spacing:11.016000px;}
.lsf{letter-spacing:31.479796px;}
.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;}
}
.ws32{word-spacing:-16.694400px;}
.ws117{word-spacing:-16.412400px;}
.wsbe{word-spacing:-14.776800px;}
.ws12b{word-spacing:-11.400000px;}
.ws187{word-spacing:-10.800000px;}
.ws13f{word-spacing:-9.000000px;}
.ws63{word-spacing:-8.640000px;}
.ws10f{word-spacing:-3.835200px;}
.ws18{word-spacing:-3.666000px;}
.ws10c{word-spacing:-3.440400px;}
.ws12c{word-spacing:-3.384000px;}
.wsf2{word-spacing:-3.327600px;}
.ws19{word-spacing:-3.271200px;}
.ws42{word-spacing:-3.158400px;}
.ws4f{word-spacing:-3.102000px;}
.ws118{word-spacing:-3.045600px;}
.ws26{word-spacing:-2.989200px;}
.wsd7{word-spacing:-2.932800px;}
.ws7b{word-spacing:-2.876400px;}
.wsc5{word-spacing:-2.820000px;}
.wseb{word-spacing:-2.763600px;}
.ws68{word-spacing:-2.707200px;}
.ws59{word-spacing:-2.650800px;}
.ws6e{word-spacing:-2.594400px;}
.ws53{word-spacing:-2.538000px;}
.wsfb{word-spacing:-2.481600px;}
.ws94{word-spacing:-2.425200px;}
.wsac{word-spacing:-2.368800px;}
.wsdb{word-spacing:-2.312400px;}
.ws44{word-spacing:-2.256000px;}
.ws56{word-spacing:-2.199600px;}
.wsc4{word-spacing:-2.143200px;}
.ws43{word-spacing:-2.086800px;}
.wse2{word-spacing:-2.030400px;}
.ws12f{word-spacing:-1.998000px;}
.ws4b{word-spacing:-1.974000px;}
.ws7{word-spacing:-1.917600px;}
.ws12{word-spacing:-1.861200px;}
.ws190{word-spacing:-1.845000px;}
.ws41{word-spacing:-1.804800px;}
.ws137{word-spacing:-1.782000px;}
.ws48{word-spacing:-1.748400px;}
.wsbb{word-spacing:-1.728000px;}
.ws152{word-spacing:-1.710000px;}
.ws6d{word-spacing:-1.692000px;}
.ws7f{word-spacing:-1.635600px;}
.ws36{word-spacing:-1.579200px;}
.ws17f{word-spacing:-1.575000px;}
.wsd0{word-spacing:-1.555200px;}
.wsa0{word-spacing:-1.522800px;}
.ws15{word-spacing:-1.512000px;}
.wsb{word-spacing:-1.466400px;}
.ws90{word-spacing:-1.410000px;}
.ws142{word-spacing:-1.395000px;}
.ws4d{word-spacing:-1.353600px;}
.ws9c{word-spacing:-1.339200px;}
.ws160{word-spacing:-1.305000px;}
.ws51{word-spacing:-1.297200px;}
.ws77{word-spacing:-1.296000px;}
.ws74{word-spacing:-1.252800px;}
.ws5c{word-spacing:-1.240800px;}
.ws16{word-spacing:-1.209600px;}
.ws5a{word-spacing:-1.184400px;}
.wsab{word-spacing:-1.166400px;}
.wsb0{word-spacing:-1.128000px;}
.ws85{word-spacing:-1.123200px;}
.wsb7{word-spacing:-1.080000px;}
.ws102{word-spacing:-1.071600px;}
.ws168{word-spacing:-1.035000px;}
.wsc{word-spacing:-1.015200px;}
.ws58{word-spacing:-0.958800px;}
.ws45{word-spacing:-0.902400px;}
.wsa9{word-spacing:-0.864000px;}
.ws18c{word-spacing:-0.855000px;}
.ws1f{word-spacing:-0.846000px;}
.wsd8{word-spacing:-0.820800px;}
.ws67{word-spacing:-0.789600px;}
.ws9a{word-spacing:-0.777600px;}
.ws2c{word-spacing:-0.734400px;}
.ws8{word-spacing:-0.733200px;}
.ws196{word-spacing:-0.702000px;}
.ws121{word-spacing:-0.691200px;}
.ws20{word-spacing:-0.676800px;}
.ws95{word-spacing:-0.648000px;}
.ws15a{word-spacing:-0.630000px;}
.ws22{word-spacing:-0.620400px;}
.ws30{word-spacing:-0.604800px;}
.ws170{word-spacing:-0.585000px;}
.ws66{word-spacing:-0.564000px;}
.wsf7{word-spacing:-0.561600px;}
.ws8f{word-spacing:-0.507600px;}
.ws11e{word-spacing:-0.475200px;}
.wsc9{word-spacing:-0.451200px;}
.ws136{word-spacing:-0.432000px;}
.wsa3{word-spacing:-0.394800px;}
.wse7{word-spacing:-0.388800px;}
.wsdf{word-spacing:-0.345600px;}
.ws122{word-spacing:-0.338400px;}
.ws72{word-spacing:-0.302400px;}
.ws69{word-spacing:-0.282000px;}
.ws10b{word-spacing:-0.259200px;}
.ws39{word-spacing:-0.225600px;}
.ws12e{word-spacing:-0.216000px;}
.ws49{word-spacing:-0.169200px;}
.ws3a{word-spacing:-0.129600px;}
.ws4{word-spacing:-0.112800px;}
.ws57{word-spacing:-0.056400px;}
.ws1{word-spacing:-0.043200px;}
.ws0{word-spacing:-0.032881px;}
.ws2{word-spacing:0.000000px;}
.wsb4{word-spacing:0.056400px;}
.ws2e{word-spacing:0.086400px;}
.wsee{word-spacing:0.112800px;}
.ws9f{word-spacing:0.129600px;}
.ws100{word-spacing:0.131525px;}
.ws103{word-spacing:0.164406px;}
.ws98{word-spacing:0.172800px;}
.wsc1{word-spacing:0.225600px;}
.ws73{word-spacing:0.259200px;}
.ws130{word-spacing:0.270000px;}
.ws50{word-spacing:0.282000px;}
.wsd5{word-spacing:0.338400px;}
.ws17{word-spacing:0.345600px;}
.ws143{word-spacing:0.360000px;}
.ws10d{word-spacing:0.394800px;}
.ws162{word-spacing:0.405000px;}
.wsbc{word-spacing:0.432000px;}
.wsa{word-spacing:0.451200px;}
.ws175{word-spacing:0.495000px;}
.wsf{word-spacing:0.507600px;}
.ws13d{word-spacing:0.518400px;}
.ws2d{word-spacing:0.561600px;}
.ws28{word-spacing:0.564000px;}
.ws109{word-spacing:0.604800px;}
.ws5d{word-spacing:0.620400px;}
.ws135{word-spacing:0.648000px;}
.wsc8{word-spacing:0.676800px;}
.ws13e{word-spacing:0.691200px;}
.ws119{word-spacing:0.733200px;}
.ws9b{word-spacing:0.734400px;}
.ws188{word-spacing:0.765000px;}
.ws6c{word-spacing:0.789600px;}
.ws15d{word-spacing:0.810000px;}
.ws84{word-spacing:0.820800px;}
.wsae{word-spacing:0.846000px;}
.ws145{word-spacing:0.855000px;}
.ws3d{word-spacing:0.864000px;}
.ws124{word-spacing:0.902400px;}
.wsd2{word-spacing:0.958800px;}
.ws70{word-spacing:0.993600px;}
.ws35{word-spacing:1.015200px;}
.ws159{word-spacing:1.035000px;}
.ws110{word-spacing:1.036800px;}
.ws79{word-spacing:1.071600px;}
.ws14f{word-spacing:1.080000px;}
.ws10a{word-spacing:1.123200px;}
.ws47{word-spacing:1.128000px;}
.ws4e{word-spacing:1.184400px;}
.wse0{word-spacing:1.209600px;}
.wsc6{word-spacing:1.240800px;}
.ws195{word-spacing:1.260000px;}
.ws97{word-spacing:1.296000px;}
.ws64{word-spacing:1.297200px;}
.wsdd{word-spacing:1.353600px;}
.wsea{word-spacing:1.382400px;}
.ws183{word-spacing:1.395000px;}
.ws37{word-spacing:1.410000px;}
.ws75{word-spacing:1.425600px;}
.ws115{word-spacing:1.466400px;}
.ws112{word-spacing:1.468800px;}
.wsb8{word-spacing:1.512000px;}
.ws27{word-spacing:1.522800px;}
.ws88{word-spacing:1.555200px;}
.ws54{word-spacing:1.579200px;}
.ws78{word-spacing:1.598400px;}
.ws1c{word-spacing:1.635600px;}
.ws2f{word-spacing:1.641600px;}
.ws76{word-spacing:1.684800px;}
.ws7c{word-spacing:1.692000px;}
.wsc7{word-spacing:1.748400px;}
.ws89{word-spacing:1.771200px;}
.ws151{word-spacing:1.800000px;}
.ws33{word-spacing:1.804800px;}
.ws31{word-spacing:1.814400px;}
.wsfc{word-spacing:1.857600px;}
.ws4a{word-spacing:1.861200px;}
.wsb6{word-spacing:1.900800px;}
.ws1b{word-spacing:1.917600px;}
.ws52{word-spacing:1.974000px;}
.ws166{word-spacing:1.980000px;}
.ws91{word-spacing:2.030400px;}
.ws194{word-spacing:2.070000px;}
.ws99{word-spacing:2.073600px;}
.ws3{word-spacing:2.086800px;}
.ws138{word-spacing:2.106000px;}
.wse8{word-spacing:2.116800px;}
.ws60{word-spacing:2.143200px;}
.wse5{word-spacing:2.160000px;}
.ws10{word-spacing:2.199600px;}
.wsa4{word-spacing:2.256000px;}
.ws14{word-spacing:2.312400px;}
.ws82{word-spacing:2.332800px;}
.ws9{word-spacing:2.368800px;}
.ws167{word-spacing:2.385000px;}
.ws80{word-spacing:2.425200px;}
.wsf8{word-spacing:2.462400px;}
.ws140{word-spacing:2.475000px;}
.wsb9{word-spacing:2.481600px;}
.ws6f{word-spacing:2.505600px;}
.ws40{word-spacing:2.538000px;}
.wse6{word-spacing:2.548800px;}
.ws132{word-spacing:2.592000px;}
.ws93{word-spacing:2.594400px;}
.wsa5{word-spacing:2.650800px;}
.ws15e{word-spacing:2.700000px;}
.ws11c{word-spacing:2.707200px;}
.ws3b{word-spacing:2.721600px;}
.ws62{word-spacing:2.763600px;}
.ws131{word-spacing:2.808000px;}
.wsf4{word-spacing:2.820000px;}
.ws8b{word-spacing:2.876400px;}
.ws141{word-spacing:2.880000px;}
.ws13c{word-spacing:2.894400px;}
.ws139{word-spacing:2.916000px;}
.ws17e{word-spacing:2.925000px;}
.wsec{word-spacing:2.932800px;}
.ws7d{word-spacing:2.989200px;}
.ws163{word-spacing:3.015000px;}
.wsef{word-spacing:3.045600px;}
.ws6b{word-spacing:3.102000px;}
.ws23{word-spacing:3.158400px;}
.ws171{word-spacing:3.195000px;}
.ws8c{word-spacing:3.214800px;}
.ws180{word-spacing:3.240000px;}
.wsc3{word-spacing:3.271200px;}
.ws86{word-spacing:3.283200px;}
.ws83{word-spacing:3.326400px;}
.wsa2{word-spacing:3.327600px;}
.wsaa{word-spacing:3.369600px;}
.wsd1{word-spacing:3.384000px;}
.ws13{word-spacing:3.440400px;}
.wse1{word-spacing:3.456000px;}
.ws173{word-spacing:3.465000px;}
.ws11d{word-spacing:3.496800px;}
.ws18b{word-spacing:3.510000px;}
.wsce{word-spacing:3.542400px;}
.ws113{word-spacing:3.553200px;}
.ws87{word-spacing:3.585600px;}
.ws6a{word-spacing:3.609600px;}
.ws4c{word-spacing:3.666000px;}
.wsde{word-spacing:3.672000px;}
.ws104{word-spacing:3.715200px;}
.ws25{word-spacing:3.722400px;}
.ws193{word-spacing:3.735000px;}
.wsba{word-spacing:3.778800px;}
.ws7a{word-spacing:3.835200px;}
.wscb{word-spacing:3.844800px;}
.ws2b{word-spacing:3.891600px;}
.wse{word-spacing:3.948000px;}
.ws24{word-spacing:4.004400px;}
.ws14c{word-spacing:4.005000px;}
.ws9e{word-spacing:4.060800px;}
.wsb5{word-spacing:4.147200px;}
.ws101{word-spacing:4.230000px;}
.wsfd{word-spacing:4.233600px;}
.ws192{word-spacing:4.275000px;}
.ws21{word-spacing:4.286400px;}
.ws181{word-spacing:4.320000px;}
.ws34{word-spacing:4.342800px;}
.wsff{word-spacing:4.363200px;}
.ws128{word-spacing:4.399200px;}
.ws14e{word-spacing:4.410000px;}
.wsc0{word-spacing:4.455600px;}
.ws96{word-spacing:4.492800px;}
.wsd4{word-spacing:4.512000px;}
.wscf{word-spacing:4.536000px;}
.ws7e{word-spacing:4.568400px;}
.ws13b{word-spacing:4.579200px;}
.ws148{word-spacing:4.590000px;}
.ws1d{word-spacing:4.624800px;}
.ws176{word-spacing:4.635000px;}
.ws9d{word-spacing:4.665600px;}
.ws92{word-spacing:4.681200px;}
.ws71{word-spacing:4.708800px;}
.ws127{word-spacing:4.737600px;}
.ws1a{word-spacing:4.794000px;}
.ws111{word-spacing:4.795200px;}
.ws120{word-spacing:4.850400px;}
.ws133{word-spacing:4.860000px;}
.ws186{word-spacing:4.905000px;}
.ws1e{word-spacing:4.906800px;}
.ws2a{word-spacing:4.963200px;}
.ws61{word-spacing:5.019600px;}
.wsed{word-spacing:5.076000px;}
.wsf9{word-spacing:5.097600px;}
.ws10e{word-spacing:5.132400px;}
.wsaf{word-spacing:5.188800px;}
.wsf1{word-spacing:5.245200px;}
.ws157{word-spacing:5.265000px;}
.ws198{word-spacing:5.292000px;}
.ws8d{word-spacing:5.301600px;}
.ws146{word-spacing:5.355000px;}
.wsd{word-spacing:5.358000px;}
.wsdc{word-spacing:5.414400px;}
.wsf3{word-spacing:5.470800px;}
.wsad{word-spacing:5.527200px;}
.ws15f{word-spacing:5.535000px;}
.wsb2{word-spacing:5.616000px;}
.wsf5{word-spacing:5.640000px;}
.ws156{word-spacing:5.670000px;}
.ws12d{word-spacing:5.696400px;}
.wsb1{word-spacing:5.702400px;}
.ws177{word-spacing:5.760000px;}
.wscc{word-spacing:5.809200px;}
.ws18e{word-spacing:5.850000px;}
.ws55{word-spacing:5.922000px;}
.ws8a{word-spacing:5.978400px;}
.ws11{word-spacing:6.034800px;}
.wsc2{word-spacing:6.091200px;}
.ws11f{word-spacing:6.147600px;}
.wsa7{word-spacing:6.177600px;}
.wsbf{word-spacing:6.260400px;}
.ws14b{word-spacing:6.300000px;}
.wsb3{word-spacing:6.316800px;}
.ws134{word-spacing:6.318000px;}
.ws46{word-spacing:6.373200px;}
.ws12a{word-spacing:6.429600px;}
.ws129{word-spacing:6.486000px;}
.wsf6{word-spacing:6.542400px;}
.ws174{word-spacing:6.615000px;}
.wsd3{word-spacing:6.655200px;}
.ws16f{word-spacing:6.705000px;}
.wsa1{word-spacing:6.711600px;}
.ws8e{word-spacing:6.768000px;}
.wsfa{word-spacing:6.824400px;}
.ws149{word-spacing:6.840000px;}
.ws116{word-spacing:6.868800px;}
.wsca{word-spacing:6.880800px;}
.ws150{word-spacing:6.885000px;}
.wsd9{word-spacing:6.937200px;}
.ws16b{word-spacing:6.975000px;}
.ws114{word-spacing:6.993600px;}
.ws185{word-spacing:7.020000px;}
.ws5b{word-spacing:7.050000px;}
.ws17a{word-spacing:7.110000px;}
.ws155{word-spacing:7.155000px;}
.ws5f{word-spacing:7.275600px;}
.ws5{word-spacing:7.332000px;}
.ws29{word-spacing:7.444800px;}
.wse9{word-spacing:7.516800px;}
.ws107{word-spacing:7.557600px;}
.wsfe{word-spacing:7.603200px;}
.ws108{word-spacing:7.670400px;}
.ws16d{word-spacing:7.785000px;}
.ws123{word-spacing:7.839600px;}
.ws11b{word-spacing:7.952400px;}
.wsbd{word-spacing:7.992000px;}
.ws5e{word-spacing:8.065200px;}
.ws106{word-spacing:8.121600px;}
.ws13a{word-spacing:8.164800px;}
.ws6{word-spacing:8.290800px;}
.wsd6{word-spacing:8.294400px;}
.ws15c{word-spacing:8.325000px;}
.ws81{word-spacing:8.347200px;}
.wsda{word-spacing:8.403600px;}
.ws3f{word-spacing:8.424000px;}
.ws65{word-spacing:8.460000px;}
.ws165{word-spacing:8.685000px;}
.ws11a{word-spacing:8.685600px;}
.wse4{word-spacing:8.854800px;}
.wse3{word-spacing:8.911200px;}
.wsa8{word-spacing:8.942400px;}
.ws125{word-spacing:9.024000px;}
.ws126{word-spacing:9.249600px;}
.wsa6{word-spacing:9.288000px;}
.ws169{word-spacing:9.360000px;}
.ws178{word-spacing:9.405000px;}
.ws38{word-spacing:9.644400px;}
.ws3c{word-spacing:9.936000px;}
.ws172{word-spacing:10.080000px;}
.ws197{word-spacing:10.260000px;}
.ws164{word-spacing:10.530000px;}
.ws18f{word-spacing:10.575000px;}
.ws105{word-spacing:10.716000px;}
.ws189{word-spacing:10.980000px;}
.ws3e{word-spacing:11.016000px;}
.ws179{word-spacing:11.430000px;}
.ws191{word-spacing:11.520000px;}
.wsf0{word-spacing:11.562000px;}
.ws182{word-spacing:11.565000px;}
.ws16e{word-spacing:11.745000px;}
.ws147{word-spacing:11.790000px;}
.ws16a{word-spacing:11.835000px;}
.ws15b{word-spacing:11.970000px;}
.ws154{word-spacing:12.240000px;}
.ws17c{word-spacing:12.555000px;}
.ws184{word-spacing:12.825000px;}
.ws158{word-spacing:12.870000px;}
.ws14a{word-spacing:13.185000px;}
.ws17d{word-spacing:13.365000px;}
.ws18a{word-spacing:13.410000px;}
.ws153{word-spacing:14.760000px;}
.ws18d{word-spacing:15.075000px;}
.ws161{word-spacing:15.750000px;}
.wscd{word-spacing:16.891200px;}
.ws17b{word-spacing:17.010000px;}
.ws16c{word-spacing:18.990000px;}
.ws144{word-spacing:20.835000px;}
.ws14d{word-spacing:32.670000px;}
._14{margin-left:-29.043600px;}
._b{margin-left:-21.652800px;}
._f{margin-left:-17.474865px;}
._18{margin-left:-11.707800px;}
._5{margin-left:-7.275600px;}
._7{margin-left:-6.204000px;}
._3{margin-left:-5.188800px;}
._4{margin-left:-4.122840px;}
._2{margin-left:-2.484000px;}
._6{margin-left:-1.015200px;}
._1{width:1.794000px;}
._9{width:3.148080px;}
._16{width:5.010947px;}
._15{width:7.126751px;}
._17{width:9.503159px;}
._10{width:26.797469px;}
._e{width:28.769951px;}
._11{width:29.821469px;}
._d{width:31.491551px;}
._12{width:32.802269px;}
._c{width:34.084903px;}
._a{width:54.820776px;}
._8{width:57.196577px;}
._13{width:199.734000px;}
._0{width:2286.495000px;}
.fc2{color:rgb(0,94,163);}
.fc1{color:rgb(135,20,110);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:32.881200px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:45.000000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:56.400000px;}
.fs8{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y1f8{bottom:102.897750px;}
.y53{bottom:103.903050px;}
.y23a{bottom:103.935600px;}
.y100{bottom:103.946400px;}
.y18b{bottom:103.950000px;}
.y22b{bottom:103.957200px;}
.y145{bottom:103.960650px;}
.y66{bottom:103.960800px;}
.y215{bottom:103.961550px;}
.yba{bottom:103.961700px;}
.y1b3{bottom:103.965150px;}
.ydb{bottom:103.965300px;}
.y144{bottom:103.965450px;}
.y12b{bottom:103.977450px;}
.y119{bottom:103.979850px;}
.y52{bottom:104.173350px;}
.y23{bottom:104.432100px;}
.y1d1{bottom:105.020100px;}
.y272{bottom:114.417600px;}
.y1f7{bottom:115.497750px;}
.y239{bottom:116.539200px;}
.yff{bottom:116.550000px;}
.y18a{bottom:116.553600px;}
.y65{bottom:116.560800px;}
.y22a{bottom:116.565150px;}
.y1d0{bottom:117.621000px;}
.y2a5{bottom:118.677150px;}
.y1bb{bottom:123.941550px;}
.yb9{bottom:123.941700px;}
.y8a{bottom:123.945150px;}
.y1a6{bottom:123.949500px;}
.yda{bottom:123.949650px;}
.y51{bottom:124.157850px;}
.y143{bottom:124.213050px;}
.y12a{bottom:124.225050px;}
.y118{bottom:124.227450px;}
.y271{bottom:128.671350px;}
.y238{bottom:129.142800px;}
.yfe{bottom:129.153600px;}
.y189{bottom:129.157200px;}
.y2a4{bottom:132.904200px;}
.y1f6{bottom:135.482100px;}
.y1b2{bottom:136.545150px;}
.y64{bottom:136.545300px;}
.y15e{bottom:136.549650px;}
.y1cf{bottom:137.601000px;}
.y22{bottom:138.100950px;}
.y237{bottom:141.746400px;}
.yfd{bottom:141.757200px;}
.y188{bottom:141.760800px;}
.y270{bottom:142.925100px;}
.y1a5{bottom:143.929500px;}
.y89{bottom:143.929650px;}
.y1db{bottom:143.930250px;}
.yd9{bottom:143.934000px;}
.y50{bottom:144.146550px;}
.y111{bottom:144.460650px;}
.y18d{bottom:144.463050px;}
.y110{bottom:144.465450px;}
.y129{bottom:144.472650px;}
.y117{bottom:144.475050px;}
.y2a3{bottom:147.157950px;}
.yb8{bottom:149.146050px;}
.y229{bottom:149.149500px;}
.y1ce{bottom:150.204600px;}
.y236{bottom:154.350000px;}
.yfc{bottom:154.360800px;}
.y1f5{bottom:155.455650px;}
.y1a4{bottom:156.529500px;}
.y15d{bottom:156.529650px;}
.y63{bottom:156.534000px;}
.y21{bottom:158.085300px;}
.y26f{bottom:161.412150px;}
.y187{bottom:161.745150px;}
.y1cd{bottom:162.808200px;}
.y1da{bottom:163.910250px;}
.y1c2{bottom:163.918350px;}
.yd8{bottom:163.918500px;}
.y4f{bottom:164.126550px;}
.y96{bottom:164.710650px;}
.y95{bottom:164.713050px;}
.y128{bottom:164.720250px;}
.y116{bottom:164.722650px;}
.y142{bottom:164.725050px;}
.y2a2{bottom:165.664200px;}
.yfb{bottom:166.943700px;}
.y235{bottom:166.953600px;}
.y1f4{bottom:168.059250px;}
.yb7{bottom:169.126050px;}
.y228{bottom:169.129500px;}
.y15c{bottom:169.129650px;}
.y26e{bottom:175.665900px;}
.y62{bottom:176.514000px;}
.y1d9{bottom:176.518350px;}
.y20{bottom:178.069650px;}
.y234{bottom:179.557200px;}
.y2a1{bottom:179.917950px;}
.y1f3{bottom:180.662850px;}
.yb6{bottom:181.734000px;}
.y1cc{bottom:182.792550px;}
.y1c1{bottom:183.898350px;}
.yd7{bottom:183.902850px;}
.y4e{bottom:184.111050px;}
.y94{bottom:184.960650px;}
.y88{bottom:184.963050px;}
.y93{bottom:184.965450px;}
.y127{bottom:184.967850px;}
.y115{bottom:184.970250px;}
.y141{bottom:184.972650px;}
.y1a0{bottom:184.982250px;}
.y177{bottom:184.994250px;}
.yfa{bottom:186.923700px;}
.y61{bottom:189.114000px;}
.y26d{bottom:189.919650px;}
.y233{bottom:192.160800px;}
.y1f2{bottom:193.266450px;}
.y2a0{bottom:194.171700px;}
.y1c0{bottom:196.498350px;}
.y1f{bottom:198.054150px;}
.yf9{bottom:199.527300px;}
.yb5{bottom:201.714000px;}
.y1cb{bottom:202.777050px;}
.yd6{bottom:203.887200px;}
.y4d{bottom:204.095400px;}
.y26c{bottom:204.173400px;}
.y87{bottom:205.210650px;}
.y92{bottom:205.213050px;}
.y126{bottom:205.215450px;}
.y114{bottom:205.217850px;}
.y140{bottom:205.220250px;}
.y186{bottom:205.222650px;}
.y19f{bottom:205.229850px;}
.y176{bottom:205.241850px;}
.y1f1{bottom:205.866600px;}
.y29f{bottom:208.425450px;}
.y1d8{bottom:209.088300px;}
.y60{bottom:209.098500px;}
.y1ba{bottom:209.099100px;}
.y227{bottom:209.102700px;}
.y1b1{bottom:209.102850px;}
.yf8{bottom:212.130900px;}
.y232{bottom:212.145150px;}
.yb4{bottom:214.300500px;}
.y1bf{bottom:216.479100px;}
.y1e{bottom:218.038500px;}
.y26a{bottom:218.422800px;}
.y26b{bottom:218.427150px;}
.y29e{bottom:222.679200px;}
.yd5{bottom:223.871700px;}
.y4c{bottom:224.079750px;}
.yf7{bottom:224.734500px;}
.y86{bottom:225.460650px;}
.y125{bottom:225.463050px;}
.y113{bottom:225.465450px;}
.y13f{bottom:225.467850px;}
.y185{bottom:225.470250px;}
.y19e{bottom:225.477450px;}
.y205{bottom:225.482250px;}
.y10f{bottom:225.487050px;}
.y175{bottom:225.489450px;}
.y1d7{bottom:229.068300px;}
.y1b9{bottom:229.079100px;}
.y1be{bottom:229.082700px;}
.y1b0{bottom:229.082850px;}
.y231{bottom:232.129650px;}
.yb3{bottom:234.280500px;}
.y269{bottom:236.929050px;}
.yf6{bottom:237.338100px;}
.y1d{bottom:238.015800px;}
.y29d{bottom:241.169850px;}
.y1d6{bottom:241.671900px;}
.y1b8{bottom:241.682700px;}
.y1af{bottom:241.682850px;}
.yd4{bottom:243.856050px;}
.y4b{bottom:244.064250px;}
.y124{bottom:245.710650px;}
.y1f0{bottom:245.712900px;}
.y5f{bottom:245.713050px;}
.y13e{bottom:245.715450px;}
.y85{bottom:245.717850px;}
.y214{bottom:245.720250px;}
.y19d{bottom:245.725050px;}
.y204{bottom:245.729850px;}
.y10e{bottom:245.734650px;}
.y174{bottom:245.737050px;}
.yb2{bottom:246.884100px;}
.yf5{bottom:249.941700px;}
.y1c{bottom:250.619400px;}
.y230{bottom:252.114000px;}
.y1d5{bottom:254.275500px;}
.y1b7{bottom:254.282700px;}
.y268{bottom:255.287550px;}
.y29c{bottom:255.423600px;}
.yb1{bottom:259.487700px;}
.y1ae{bottom:261.667200px;}
.yf4{bottom:262.545300px;}
.y1b{bottom:263.223000px;}
.yd3{bottom:263.840550px;}
.y4a{bottom:264.027000px;}
.y91{bottom:265.960650px;}
.y13d{bottom:265.963050px;}
.y1ef{bottom:265.965300px;}
.y5e{bottom:265.965450px;}
.y213{bottom:265.967850px;}
.y19c{bottom:265.972650px;}
.y1ca{bottom:265.975050px;}
.y203{bottom:265.977450px;}
.y10d{bottom:265.982250px;}
.y173{bottom:265.984650px;}
.y1d4{bottom:266.879100px;}
.y267{bottom:269.541300px;}
.y29b{bottom:269.677350px;}
.yb0{bottom:272.091300px;}
.y1b6{bottom:274.263600px;}
.yf3{bottom:275.128050px;}
.y1a{bottom:275.823000px;}
.y49{bottom:276.630600px;}
.y1d3{bottom:279.482700px;}
.y1ad{bottom:281.651550px;}
.y266{bottom:283.795050px;}
.yd2{bottom:283.824900px;}
.y29a{bottom:283.923600px;}
.yaf{bottom:284.694900px;}
.y13c{bottom:286.210650px;}
.y1ee{bottom:286.212900px;}
.y5d{bottom:286.213050px;}
.y15b{bottom:286.215450px;}
.y137{bottom:286.217850px;}
.y17f{bottom:286.220250px;}
.y1c9{bottom:286.222650px;}
.y202{bottom:286.225050px;}
.y10c{bottom:286.229850px;}
.y172{bottom:286.232250px;}
.y226{bottom:286.246650px;}
.y1b5{bottom:286.867200px;}
.y48{bottom:289.234200px;}
.yf2{bottom:295.108050px;}
.yae{bottom:297.298500px;}
.y265{bottom:298.048800px;}
.y299{bottom:298.177350px;}
.y1ac{bottom:301.636050px;}
.y47{bottom:301.837800px;}
.yd1{bottom:303.809250px;}
.y84{bottom:306.460650px;}
.y15a{bottom:306.463050px;}
.y5c{bottom:306.465450px;}
.y1ed{bottom:306.467700px;}
.y17e{bottom:306.467850px;}
.y184{bottom:306.470250px;}
.y201{bottom:306.472650px;}
.y83{bottom:306.475050px;}
.y10b{bottom:306.477450px;}
.y171{bottom:306.479850px;}
.y225{bottom:306.494250px;}
.yf1{bottom:307.711650px;}
.y12f{bottom:307.837050px;}
.yad{bottom:309.899250px;}
.y264{bottom:312.302550px;}
.y298{bottom:312.431100px;}
.y46{bottom:314.441400px;}
.yf0{bottom:320.315250px;}
.y1ab{bottom:321.620400px;}
.y12e{bottom:322.082250px;}
.yd0{bottom:323.793750px;}
.y263{bottom:326.556300px;}
.y11e{bottom:326.691150px;}
.y212{bottom:326.710650px;}
.y19{bottom:326.712900px;}
.y5b{bottom:326.713050px;}
.y1ec{bottom:326.715300px;}
.y17d{bottom:326.715450px;}
.y183{bottom:326.717850px;}
.y200{bottom:326.720250px;}
.y82{bottom:326.722650px;}
.y10a{bottom:326.725050px;}
.y170{bottom:326.727450px;}
.y159{bottom:326.729850px;}
.y224{bottom:326.741850px;}
.y123{bottom:326.947350px;}
.y45{bottom:327.045000px;}
.y218{bottom:328.404750px;}
.yac{bottom:329.879250px;}
.y297{bottom:330.898200px;}
.yef{bottom:332.918850px;}
.y44{bottom:339.648600px;}
.y11d{bottom:340.936350px;}
.y122{bottom:341.192550px;}
.yab{bottom:342.482850px;}
.y217{bottom:342.649950px;}
.ycf{bottom:343.778100px;}
.y262{bottom:345.062550px;}
.y296{bottom:345.151950px;}
.yee{bottom:345.522450px;}
.y149{bottom:346.671750px;}
.y136{bottom:346.960650px;}
.y18{bottom:346.962900px;}
.y17c{bottom:346.963050px;}
.y5a{bottom:346.965450px;}
.y90{bottom:346.967850px;}
.y81{bottom:346.970250px;}
.y109{bottom:346.972650px;}
.y16f{bottom:346.975050px;}
.y135{bottom:346.977450px;}
.y223{bottom:346.989450px;}
.y165{bottom:350.780850px;}
.yaa{bottom:355.082850px;}
.y11c{bottom:355.181550px;}
.y216{bottom:356.895150px;}
.yed{bottom:358.126050px;}
.y261{bottom:359.316300px;}
.y295{bottom:359.405700px;}
.y43{bottom:359.632950px;}
.y148{bottom:360.916950px;}
.yce{bottom:363.758100px;}
.y167{bottom:363.963000px;}
.y164{bottom:365.026050px;}
.y1eb{bottom:367.210500px;}
.y17b{bottom:367.210650px;}
.y59{bottom:367.213050px;}
.y8f{bottom:367.215450px;}
.y80{bottom:367.217850px;}
.y108{bottom:367.220250px;}
.y17{bottom:367.222500px;}
.y16e{bottom:367.222650px;}
.y134{bottom:367.225050px;}
.y222{bottom:367.237050px;}
.y19b{bottom:367.244250px;}
.y121{bottom:369.702150px;}
.yec{bottom:370.729650px;}
.y260{bottom:373.570050px;}
.ya9{bottom:375.067200px;}
.y294{bottom:377.911950px;}
.y166{bottom:378.208200px;}
.y163{bottom:379.271250px;}
.y42{bottom:379.617450px;}
.y11b{bottom:383.686350px;}
.ycd{bottom:383.702850px;}
.y120{bottom:383.947350px;}
.y182{bottom:387.460650px;}
.y8e{bottom:387.463050px;}
.y58{bottom:387.465450px;}
.y107{bottom:387.467850px;}
.y16{bottom:387.470100px;}
.y16d{bottom:387.470250px;}
.y133{bottom:387.472650px;}
.y221{bottom:387.484650px;}
.y19a{bottom:387.491850px;}
.y147{bottom:389.421750px;}
.yeb{bottom:390.718500px;}
.y25f{bottom:392.076300px;}
.y293{bottom:392.165700px;}
.ycc{bottom:396.306450px;}
.y11a{bottom:397.931550px;}
.y11f{bottom:398.192550px;}
.y41{bottom:399.601800px;}
.y146{bottom:403.666950px;}
.y25e{bottom:406.330050px;}
.y292{bottom:406.419450px;}
.y1ea{bottom:407.710500px;}
.y1ff{bottom:407.710650px;}
.y57{bottom:407.713050px;}
.y8d{bottom:407.715450px;}
.y15{bottom:407.717700px;}
.y16c{bottom:407.717850px;}
.y132{bottom:407.720250px;}
.y220{bottom:407.732250px;}
.y199{bottom:407.739450px;}
.ycb{bottom:408.910050px;}
.yea{bottom:410.698500px;}
.y40{bottom:419.586300px;}
.y25d{bottom:420.583800px;}
.y291{bottom:420.673200px;}
.yca{bottom:421.513650px;}
.y1a9{bottom:421.960650px;}
.y2c9{bottom:427.960500px;}
.y7f{bottom:427.960650px;}
.y8c{bottom:427.963050px;}
.y14{bottom:427.965300px;}
.y56{bottom:427.965450px;}
.y131{bottom:427.967850px;}
.y21f{bottom:427.979850px;}
.y198{bottom:427.987050px;}
.yc9{bottom:434.117250px;}
.y290{bottom:434.926950px;}
.y25c{bottom:439.090050px;}
.yc8{bottom:446.720850px;}
.y2c8{bottom:448.210500px;}
.y106{bottom:448.210650px;}
.y13{bottom:448.212900px;}
.y55{bottom:448.213050px;}
.ye9{bottom:448.215450px;}
.y8b{bottom:448.220250px;}
.y105{bottom:448.222650px;}
.y21e{bottom:448.227450px;}
.y211{bottom:448.229850px;}
.y197{bottom:448.234650px;}
.y1a8{bottom:450.465450px;}
.y25b{bottom:453.343800px;}
.y28f{bottom:453.433200px;}
.yc7{bottom:459.324450px;}
.y1a7{bottom:464.710650px;}
.y25a{bottom:467.597550px;}
.y28e{bottom:467.686950px;}
.y2c7{bottom:468.460500px;}
.y54{bottom:468.460650px;}
.ye8{bottom:468.463050px;}
.y1fc{bottom:468.465450px;}
.y7e{bottom:468.467850px;}
.y104{bottom:468.470250px;}
.y3f{bottom:468.472650px;}
.y21d{bottom:468.475050px;}
.y12{bottom:468.477300px;}
.y210{bottom:468.477450px;}
.y196{bottom:468.482250px;}
.yc6{bottom:471.928050px;}
.yc5{bottom:484.531650px;}
.y259{bottom:486.103800px;}
.y28d{bottom:486.170250px;}
.y2c6{bottom:488.710500px;}
.y130{bottom:488.710650px;}
.y1aa{bottom:488.713050px;}
.y7d{bottom:488.715450px;}
.y103{bottom:488.717850px;}
.y3e{bottom:488.720250px;}
.y21c{bottom:488.722650px;}
.y11{bottom:488.724900px;}
.y20f{bottom:488.725050px;}
.y195{bottom:488.729850px;}
.y1e9{bottom:488.744250px;}
.yc4{bottom:497.135250px;}
.y258{bottom:500.357550px;}
.y28c{bottom:500.424000px;}
.y18c{bottom:508.050450px;}
.y2c5{bottom:508.960500px;}
.y1fb{bottom:508.960650px;}
.y7c{bottom:508.963050px;}
.y102{bottom:508.965450px;}
.y3d{bottom:508.967850px;}
.y21b{bottom:508.970250px;}
.y10{bottom:508.972500px;}
.y20e{bottom:508.972650px;}
.y158{bottom:508.975050px;}
.y194{bottom:508.977450px;}
.y1e8{bottom:508.991850px;}
.y190{bottom:509.060400px;}
.yc3{bottom:509.738850px;}
.y257{bottom:514.611300px;}
.y28b{bottom:514.677750px;}
.y181{bottom:522.295650px;}
.yc2{bottom:522.342450px;}
.y18f{bottom:523.305600px;}
.y256{bottom:528.865050px;}
.y28a{bottom:528.931500px;}
.y7b{bottom:529.210650px;}
.ya8{bottom:529.213050px;}
.y3c{bottom:529.215450px;}
.y21a{bottom:529.217850px;}
.yf{bottom:529.220100px;}
.y20d{bottom:529.220250px;}
.y157{bottom:529.222650px;}
.y16b{bottom:529.225050px;}
.y1e7{bottom:529.239450px;}
.y69{bottom:529.310400px;}
.y180{bottom:536.540850px;}
.y18e{bottom:537.550800px;}
.y289{bottom:543.185250px;}
.y68{bottom:543.555600px;}
.y255{bottom:547.371300px;}
.y101{bottom:549.460650px;}
.y3b{bottom:549.463050px;}
.ya7{bottom:549.465450px;}
.ye{bottom:549.467700px;}
.y20c{bottom:549.467850px;}
.y156{bottom:549.470250px;}
.y16a{bottom:549.472650px;}
.y7a{bottom:549.482250px;}
.y1c8{bottom:549.484650px;}
.y1e6{bottom:549.487050px;}
.y139{bottom:549.933450px;}
.y288{bottom:557.439000px;}
.y67{bottom:557.800800px;}
.y254{bottom:561.625050px;}
.y138{bottom:564.178650px;}
.y2c4{bottom:569.710500px;}
.ye7{bottom:569.710650px;}
.y3a{bottom:569.713050px;}
.yd{bottom:569.715300px;}
.y1d2{bottom:569.715450px;}
.y155{bottom:569.717850px;}
.y169{bottom:569.720250px;}
.y79{bottom:569.729850px;}
.ye6{bottom:569.732250px;}
.y1e5{bottom:569.734650px;}
.y207{bottom:570.130350px;}
.y1fe{bottom:571.269300px;}
.y253{bottom:575.878800px;}
.y287{bottom:575.933400px;}
.y206{bottom:584.375550px;}
.y1fd{bottom:585.514500px;}
.y2c3{bottom:589.960500px;}
.y22f{bottom:589.960650px;}
.yc{bottom:589.962900px;}
.y39{bottom:589.963050px;}
.yc1{bottom:589.965450px;}
.y168{bottom:589.967850px;}
.ya6{bottom:589.970250px;}
.y78{bottom:589.977450px;}
.ye5{bottom:589.979850px;}
.y1e4{bottom:589.982250px;}
.y252{bottom:590.132550px;}
.y97{bottom:590.153700px;}
.y286{bottom:590.187150px;}
.y251{bottom:604.386300px;}
.y285{bottom:604.440900px;}
.yb{bottom:610.210500px;}
.y1bd{bottom:610.210650px;}
.yc0{bottom:610.213050px;}
.y38{bottom:610.215450px;}
.ya5{bottom:610.217850px;}
.y77{bottom:610.225050px;}
.ye4{bottom:610.227450px;}
.y1e3{bottom:610.229850px;}
.y112{bottom:610.790850px;}
.y284{bottom:622.861500px;}
.y250{bottom:622.892550px;}
.y1b4{bottom:624.460650px;}
.ybf{bottom:630.460650px;}
.y37{bottom:630.463050px;}
.ya4{bottom:630.465450px;}
.ya{bottom:630.467700px;}
.y76{bottom:630.472650px;}
.ye3{bottom:630.475050px;}
.y1e2{bottom:630.477450px;}
.y154{bottom:630.499050px;}
.y283{bottom:637.115250px;}
.y24f{bottom:637.146300px;}
.y36{bottom:650.710650px;}
.y22e{bottom:650.711400px;}
.y2c2{bottom:650.712750px;}
.ya3{bottom:650.713050px;}
.y9{bottom:650.715300px;}
.ybe{bottom:650.715450px;}
.y35{bottom:650.720250px;}
.ye2{bottom:650.722650px;}
.y1e1{bottom:650.725050px;}
.y153{bottom:650.746650px;}
.y24e{bottom:651.400050px;}
.y282{bottom:655.621500px;}
.y12d{bottom:665.906250px;}
.y281{bottom:669.875250px;}
.y24d{bottom:669.906300px;}
.y1bc{bottom:670.960650px;}
.y8{bottom:670.962900px;}
.ybd{bottom:670.963050px;}
.y34{bottom:670.967850px;}
.ye1{bottom:670.970250px;}
.y1e0{bottom:670.972650px;}
.ya2{bottom:670.977450px;}
.y152{bottom:670.994250px;}
.y1dc{bottom:671.647200px;}
.y12c{bottom:680.151450px;}
.y280{bottom:684.129000px;}
.y24c{bottom:684.160050px;}
.y13b{bottom:688.069650px;}
.ybc{bottom:691.213050px;}
.y7{bottom:691.215300px;}
.y33{bottom:691.215450px;}
.ye0{bottom:691.217850px;}
.y1df{bottom:691.220250px;}
.ya1{bottom:691.225050px;}
.y151{bottom:691.241850px;}
.y27f{bottom:698.382750px;}
.y24b{bottom:698.413800px;}
.y13a{bottom:702.314850px;}
.y2c1{bottom:711.460500px;}
.y6{bottom:711.462900px;}
.y32{bottom:711.463050px;}
.ydf{bottom:711.465450px;}
.y1de{bottom:711.467850px;}
.ya0{bottom:711.472650px;}
.y150{bottom:711.489450px;}
.y24a{bottom:712.667550px;}
.y1a2{bottom:713.634300px;}
.y27e{bottom:716.889000px;}
.y1a1{bottom:727.879500px;}
.y27d{bottom:731.142750px;}
.y249{bottom:731.173800px;}
.y5{bottom:731.710500px;}
.y75{bottom:731.710650px;}
.y31{bottom:731.713050px;}
.y1dd{bottom:731.715450px;}
.y74{bottom:731.717850px;}
.y9f{bottom:731.720250px;}
.y20b{bottom:731.732250px;}
.y14f{bottom:731.737050px;}
.y27c{bottom:745.396500px;}
.y248{bottom:745.427550px;}
.yde{bottom:751.960650px;}
.y30{bottom:751.963050px;}
.y73{bottom:751.965450px;}
.y9e{bottom:751.967850px;}
.y20a{bottom:751.979850px;}
.y14e{bottom:751.984650px;}
.y27b{bottom:759.650250px;}
.y247{bottom:759.681300px;}
.y2b4{bottom:761.877750px;}
.y193{bottom:767.447100px;}
.ydd{bottom:772.210650px;}
.y2f{bottom:772.213050px;}
.y9d{bottom:772.215450px;}
.y209{bottom:772.227450px;}
.y14d{bottom:772.232250px;}
.y2b3{bottom:776.131500px;}
.y27a{bottom:778.156500px;}
.y246{bottom:778.187550px;}
.y192{bottom:781.692300px;}
.y1a3{bottom:781.981950px;}
.y2b2{bottom:790.385250px;}
.y279{bottom:792.410250px;}
.y17a{bottom:792.417150px;}
.y245{bottom:792.441300px;}
.y2e{bottom:792.463050px;}
.y72{bottom:792.465450px;}
.y208{bottom:792.475050px;}
.y14c{bottom:792.479850px;}
.y219{bottom:792.482250px;}
.y191{bottom:795.937500px;}
.y2c0{bottom:804.582750px;}
.y2b1{bottom:804.639000px;}
.y179{bottom:806.662350px;}
.y278{bottom:806.664000px;}
.y244{bottom:806.695050px;}
.ydc{bottom:812.710650px;}
.y71{bottom:812.713050px;}
.y22d{bottom:812.715450px;}
.y2d{bottom:812.720250px;}
.y9c{bottom:812.722650px;}
.y14b{bottom:812.727450px;}
.y1c7{bottom:812.729850px;}
.y2bf{bottom:818.836500px;}
.y2b0{bottom:818.892750px;}
.y178{bottom:820.907550px;}
.y277{bottom:820.917750px;}
.y243{bottom:820.948800px;}
.y70{bottom:832.960650px;}
.ybb{bottom:832.963050px;}
.y2c{bottom:832.967850px;}
.y9b{bottom:832.970250px;}
.y6f{bottom:832.975050px;}
.y1c6{bottom:832.977450px;}
.y2be{bottom:833.090250px;}
.y1fa{bottom:834.283350px;}
.y2af{bottom:837.399000px;}
.y276{bottom:839.424000px;}
.y242{bottom:839.439600px;}
.y1f9{bottom:848.528550px;}
.y2bd{bottom:851.596500px;}
.y2ae{bottom:851.652750px;}
.y4{bottom:853.207500px;}
.y22c{bottom:853.213050px;}
.y2b{bottom:853.215450px;}
.y9a{bottom:853.217850px;}
.y6e{bottom:853.222650px;}
.y1c5{bottom:853.225050px;}
.y275{bottom:853.677750px;}
.y241{bottom:853.693350px;}
.y2bc{bottom:865.850250px;}
.y2ad{bottom:865.906500px;}
.y274{bottom:867.931500px;}
.y240{bottom:867.947100px;}
.y2a{bottom:873.463050px;}
.y99{bottom:873.465450px;}
.y6d{bottom:873.470250px;}
.y1c4{bottom:873.472650px;}
.y2bb{bottom:880.104000px;}
.y273{bottom:882.185250px;}
.y23f{bottom:882.200850px;}
.y2ac{bottom:884.412750px;}
.y3{bottom:893.710500px;}
.y29{bottom:893.713050px;}
.y6c{bottom:893.717850px;}
.y1c3{bottom:893.720250px;}
.y2ba{bottom:898.610250px;}
.y2ab{bottom:898.666500px;}
.y23e{bottom:900.691500px;}
.y2b9{bottom:912.864000px;}
.y2aa{bottom:912.920250px;}
.y28{bottom:913.963050px;}
.y6b{bottom:913.965450px;}
.y98{bottom:913.967850px;}
.y23d{bottom:914.945250px;}
.y2b8{bottom:927.117750px;}
.y23c{bottom:929.199000px;}
.y2a9{bottom:931.411050px;}
.y162{bottom:931.758150px;}
.y6a{bottom:934.213050px;}
.y27{bottom:934.215450px;}
.y2b7{bottom:941.371500px;}
.y23b{bottom:943.452750px;}
.y2a8{bottom:945.664800px;}
.y161{bottom:946.003350px;}
.y14a{bottom:954.460650px;}
.y26{bottom:954.463050px;}
.y2b6{bottom:955.625250px;}
.y2a7{bottom:959.918550px;}
.y160{bottom:960.248550px;}
.y2b5{bottom:974.131500px;}
.y2a6{bottom:974.172300px;}
.y15f{bottom:974.493750px;}
.y2{bottom:974.710500px;}
.y25{bottom:974.710650px;}
.y1{bottom:1037.951850px;}
.y24{bottom:1037.952000px;}
.h8{height:31.276800px;}
.h11{height:33.516000px;}
.h7{height:35.415000px;}
.he{height:38.775600px;}
.h9{height:38.776200px;}
.hd{height:38.790000px;}
.hb{height:38.790600px;}
.h6{height:38.793600px;}
.h12{height:38.804400px;}
.h13{height:38.833800px;}
.hc{height:38.848200px;}
.h10{height:38.862000px;}
.hf{height:38.862600px;}
.h2{height:40.410000px;}
.h16{height:41.895000px;}
.h17{height:41.925000px;}
.h18{height:42.498000px;}
.h14{height:44.859000px;}
.h5{height:47.883600px;}
.h15{height:50.274000px;}
.h3{height:55.860000px;}
.ha{height:61.068000px;}
.h4{height:117.162000px;}
.h1{height:1105.500000px;}
.h0{height:1105.512000px;}
.w1{width:744.000000px;}
.w0{width:744.094500px;}
.x0{left:0.000000px;}
.x35{left:71.220450px;}
.x1{left:72.283500px;}
.xe{left:77.494050px;}
.x6{left:83.713950px;}
.x36{left:85.039425px;}
.x4{left:89.291250px;}
.x2a{left:91.417350px;}
.x2{left:93.543300px;}
.x1f{left:96.783600px;}
.x19{left:101.633700px;}
.x10{left:115.381350px;}
.xf{left:117.301050px;}
.x3{left:120.297600px;}
.x38{left:123.307050px;}
.x26{left:127.013400px;}
.x1a{left:138.844800px;}
.x1b{left:140.474400px;}
.x31{left:158.531700px;}
.x22{left:174.070350px;}
.xd{left:192.031500px;}
.x32{left:205.640250px;}
.x3d{left:210.113850px;}
.x1c{left:231.552750px;}
.x33{left:244.661550px;}
.x39{left:270.101400px;}
.x3a{left:272.747400px;}
.x3b{left:275.420250px;}
.x1d{left:276.512550px;}
.x14{left:291.776100px;}
.x34{left:293.629350px;}
.x20{left:303.726600px;}
.x12{left:306.593250px;}
.xb{left:331.535550px;}
.x30{left:342.708600px;}
.x7{left:344.780100px;}
.x13{left:347.860350px;}
.x21{left:350.965500px;}
.x2b{left:363.047250px;}
.xc{left:371.546100px;}
.x24{left:375.488700px;}
.x2f{left:378.158850px;}
.x8{left:381.234750px;}
.x37{left:393.307912px;}
.x25{left:422.746950px;}
.x15{left:433.143000px;}
.x23{left:452.125950px;}
.x1e{left:463.464600px;}
.x16{left:473.687400px;}
.x27{left:492.301050px;}
.x5{left:497.678550px;}
.x2e{left:504.206550px;}
.x17{left:512.100900px;}
.x3c{left:517.047000px;}
.x28{left:539.596350px;}
.x18{left:551.374350px;}
.x2c{left:557.505900px;}
.x11{left:572.688150px;}
.x9{left:585.013800px;}
.x2d{left:605.268900px;}
.xa{left:624.503250px;}
.x29{left:648.542100px;}
@media print{
.v2{vertical-align:-1.184000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.677333pt;}
.ls7{letter-spacing:-1.704533pt;}
.ls1{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.250667pt;}
.ls2{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.146139pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.020692pt;}
.lsc{letter-spacing:0.024324pt;}
.ls9{letter-spacing:1.075200pt;}
.ls5{letter-spacing:1.344000pt;}
.ls11{letter-spacing:1.920000pt;}
.lsd{letter-spacing:3.878400pt;}
.lsb{letter-spacing:4.531200pt;}
.lsa{letter-spacing:5.068800pt;}
.ls4{letter-spacing:5.071065pt;}
.ls8{letter-spacing:7.372800pt;}
.ls3{letter-spacing:9.792000pt;}
.lsf{letter-spacing:27.982041pt;}
.ws32{word-spacing:-14.839467pt;}
.ws117{word-spacing:-14.588800pt;}
.wsbe{word-spacing:-13.134933pt;}
.ws12b{word-spacing:-10.133333pt;}
.ws187{word-spacing:-9.600000pt;}
.ws13f{word-spacing:-8.000000pt;}
.ws63{word-spacing:-7.680000pt;}
.ws10f{word-spacing:-3.409067pt;}
.ws18{word-spacing:-3.258667pt;}
.ws10c{word-spacing:-3.058133pt;}
.ws12c{word-spacing:-3.008000pt;}
.wsf2{word-spacing:-2.957867pt;}
.ws19{word-spacing:-2.907733pt;}
.ws42{word-spacing:-2.807467pt;}
.ws4f{word-spacing:-2.757333pt;}
.ws118{word-spacing:-2.707200pt;}
.ws26{word-spacing:-2.657067pt;}
.wsd7{word-spacing:-2.606933pt;}
.ws7b{word-spacing:-2.556800pt;}
.wsc5{word-spacing:-2.506667pt;}
.wseb{word-spacing:-2.456533pt;}
.ws68{word-spacing:-2.406400pt;}
.ws59{word-spacing:-2.356267pt;}
.ws6e{word-spacing:-2.306133pt;}
.ws53{word-spacing:-2.256000pt;}
.wsfb{word-spacing:-2.205867pt;}
.ws94{word-spacing:-2.155733pt;}
.wsac{word-spacing:-2.105600pt;}
.wsdb{word-spacing:-2.055467pt;}
.ws44{word-spacing:-2.005333pt;}
.ws56{word-spacing:-1.955200pt;}
.wsc4{word-spacing:-1.905067pt;}
.ws43{word-spacing:-1.854933pt;}
.wse2{word-spacing:-1.804800pt;}
.ws12f{word-spacing:-1.776000pt;}
.ws4b{word-spacing:-1.754667pt;}
.ws7{word-spacing:-1.704533pt;}
.ws12{word-spacing:-1.654400pt;}
.ws190{word-spacing:-1.640000pt;}
.ws41{word-spacing:-1.604267pt;}
.ws137{word-spacing:-1.584000pt;}
.ws48{word-spacing:-1.554133pt;}
.wsbb{word-spacing:-1.536000pt;}
.ws152{word-spacing:-1.520000pt;}
.ws6d{word-spacing:-1.504000pt;}
.ws7f{word-spacing:-1.453867pt;}
.ws36{word-spacing:-1.403733pt;}
.ws17f{word-spacing:-1.400000pt;}
.wsd0{word-spacing:-1.382400pt;}
.wsa0{word-spacing:-1.353600pt;}
.ws15{word-spacing:-1.344000pt;}
.wsb{word-spacing:-1.303467pt;}
.ws90{word-spacing:-1.253333pt;}
.ws142{word-spacing:-1.240000pt;}
.ws4d{word-spacing:-1.203200pt;}
.ws9c{word-spacing:-1.190400pt;}
.ws160{word-spacing:-1.160000pt;}
.ws51{word-spacing:-1.153067pt;}
.ws77{word-spacing:-1.152000pt;}
.ws74{word-spacing:-1.113600pt;}
.ws5c{word-spacing:-1.102933pt;}
.ws16{word-spacing:-1.075200pt;}
.ws5a{word-spacing:-1.052800pt;}
.wsab{word-spacing:-1.036800pt;}
.wsb0{word-spacing:-1.002667pt;}
.ws85{word-spacing:-0.998400pt;}
.wsb7{word-spacing:-0.960000pt;}
.ws102{word-spacing:-0.952533pt;}
.ws168{word-spacing:-0.920000pt;}
.wsc{word-spacing:-0.902400pt;}
.ws58{word-spacing:-0.852267pt;}
.ws45{word-spacing:-0.802133pt;}
.wsa9{word-spacing:-0.768000pt;}
.ws18c{word-spacing:-0.760000pt;}
.ws1f{word-spacing:-0.752000pt;}
.wsd8{word-spacing:-0.729600pt;}
.ws67{word-spacing:-0.701867pt;}
.ws9a{word-spacing:-0.691200pt;}
.ws2c{word-spacing:-0.652800pt;}
.ws8{word-spacing:-0.651733pt;}
.ws196{word-spacing:-0.624000pt;}
.ws121{word-spacing:-0.614400pt;}
.ws20{word-spacing:-0.601600pt;}
.ws95{word-spacing:-0.576000pt;}
.ws15a{word-spacing:-0.560000pt;}
.ws22{word-spacing:-0.551467pt;}
.ws30{word-spacing:-0.537600pt;}
.ws170{word-spacing:-0.520000pt;}
.ws66{word-spacing:-0.501333pt;}
.wsf7{word-spacing:-0.499200pt;}
.ws8f{word-spacing:-0.451200pt;}
.ws11e{word-spacing:-0.422400pt;}
.wsc9{word-spacing:-0.401067pt;}
.ws136{word-spacing:-0.384000pt;}
.wsa3{word-spacing:-0.350933pt;}
.wse7{word-spacing:-0.345600pt;}
.wsdf{word-spacing:-0.307200pt;}
.ws122{word-spacing:-0.300800pt;}
.ws72{word-spacing:-0.268800pt;}
.ws69{word-spacing:-0.250667pt;}
.ws10b{word-spacing:-0.230400pt;}
.ws39{word-spacing:-0.200533pt;}
.ws12e{word-spacing:-0.192000pt;}
.ws49{word-spacing:-0.150400pt;}
.ws3a{word-spacing:-0.115200pt;}
.ws4{word-spacing:-0.100267pt;}
.ws57{word-spacing:-0.050133pt;}
.ws1{word-spacing:-0.038400pt;}
.ws0{word-spacing:-0.029228pt;}
.ws2{word-spacing:0.000000pt;}
.wsb4{word-spacing:0.050133pt;}
.ws2e{word-spacing:0.076800pt;}
.wsee{word-spacing:0.100267pt;}
.ws9f{word-spacing:0.115200pt;}
.ws100{word-spacing:0.116911pt;}
.ws103{word-spacing:0.146139pt;}
.ws98{word-spacing:0.153600pt;}
.wsc1{word-spacing:0.200533pt;}
.ws73{word-spacing:0.230400pt;}
.ws130{word-spacing:0.240000pt;}
.ws50{word-spacing:0.250667pt;}
.wsd5{word-spacing:0.300800pt;}
.ws17{word-spacing:0.307200pt;}
.ws143{word-spacing:0.320000pt;}
.ws10d{word-spacing:0.350933pt;}
.ws162{word-spacing:0.360000pt;}
.wsbc{word-spacing:0.384000pt;}
.wsa{word-spacing:0.401067pt;}
.ws175{word-spacing:0.440000pt;}
.wsf{word-spacing:0.451200pt;}
.ws13d{word-spacing:0.460800pt;}
.ws2d{word-spacing:0.499200pt;}
.ws28{word-spacing:0.501333pt;}
.ws109{word-spacing:0.537600pt;}
.ws5d{word-spacing:0.551467pt;}
.ws135{word-spacing:0.576000pt;}
.wsc8{word-spacing:0.601600pt;}
.ws13e{word-spacing:0.614400pt;}
.ws119{word-spacing:0.651733pt;}
.ws9b{word-spacing:0.652800pt;}
.ws188{word-spacing:0.680000pt;}
.ws6c{word-spacing:0.701867pt;}
.ws15d{word-spacing:0.720000pt;}
.ws84{word-spacing:0.729600pt;}
.wsae{word-spacing:0.752000pt;}
.ws145{word-spacing:0.760000pt;}
.ws3d{word-spacing:0.768000pt;}
.ws124{word-spacing:0.802133pt;}
.wsd2{word-spacing:0.852267pt;}
.ws70{word-spacing:0.883200pt;}
.ws35{word-spacing:0.902400pt;}
.ws159{word-spacing:0.920000pt;}
.ws110{word-spacing:0.921600pt;}
.ws79{word-spacing:0.952533pt;}
.ws14f{word-spacing:0.960000pt;}
.ws10a{word-spacing:0.998400pt;}
.ws47{word-spacing:1.002667pt;}
.ws4e{word-spacing:1.052800pt;}
.wse0{word-spacing:1.075200pt;}
.wsc6{word-spacing:1.102933pt;}
.ws195{word-spacing:1.120000pt;}
.ws97{word-spacing:1.152000pt;}
.ws64{word-spacing:1.153067pt;}
.wsdd{word-spacing:1.203200pt;}
.wsea{word-spacing:1.228800pt;}
.ws183{word-spacing:1.240000pt;}
.ws37{word-spacing:1.253333pt;}
.ws75{word-spacing:1.267200pt;}
.ws115{word-spacing:1.303467pt;}
.ws112{word-spacing:1.305600pt;}
.wsb8{word-spacing:1.344000pt;}
.ws27{word-spacing:1.353600pt;}
.ws88{word-spacing:1.382400pt;}
.ws54{word-spacing:1.403733pt;}
.ws78{word-spacing:1.420800pt;}
.ws1c{word-spacing:1.453867pt;}
.ws2f{word-spacing:1.459200pt;}
.ws76{word-spacing:1.497600pt;}
.ws7c{word-spacing:1.504000pt;}
.wsc7{word-spacing:1.554133pt;}
.ws89{word-spacing:1.574400pt;}
.ws151{word-spacing:1.600000pt;}
.ws33{word-spacing:1.604267pt;}
.ws31{word-spacing:1.612800pt;}
.wsfc{word-spacing:1.651200pt;}
.ws4a{word-spacing:1.654400pt;}
.wsb6{word-spacing:1.689600pt;}
.ws1b{word-spacing:1.704533pt;}
.ws52{word-spacing:1.754667pt;}
.ws166{word-spacing:1.760000pt;}
.ws91{word-spacing:1.804800pt;}
.ws194{word-spacing:1.840000pt;}
.ws99{word-spacing:1.843200pt;}
.ws3{word-spacing:1.854933pt;}
.ws138{word-spacing:1.872000pt;}
.wse8{word-spacing:1.881600pt;}
.ws60{word-spacing:1.905067pt;}
.wse5{word-spacing:1.920000pt;}
.ws10{word-spacing:1.955200pt;}
.wsa4{word-spacing:2.005333pt;}
.ws14{word-spacing:2.055467pt;}
.ws82{word-spacing:2.073600pt;}
.ws9{word-spacing:2.105600pt;}
.ws167{word-spacing:2.120000pt;}
.ws80{word-spacing:2.155733pt;}
.wsf8{word-spacing:2.188800pt;}
.ws140{word-spacing:2.200000pt;}
.wsb9{word-spacing:2.205867pt;}
.ws6f{word-spacing:2.227200pt;}
.ws40{word-spacing:2.256000pt;}
.wse6{word-spacing:2.265600pt;}
.ws132{word-spacing:2.304000pt;}
.ws93{word-spacing:2.306133pt;}
.wsa5{word-spacing:2.356267pt;}
.ws15e{word-spacing:2.400000pt;}
.ws11c{word-spacing:2.406400pt;}
.ws3b{word-spacing:2.419200pt;}
.ws62{word-spacing:2.456533pt;}
.ws131{word-spacing:2.496000pt;}
.wsf4{word-spacing:2.506667pt;}
.ws8b{word-spacing:2.556800pt;}
.ws141{word-spacing:2.560000pt;}
.ws13c{word-spacing:2.572800pt;}
.ws139{word-spacing:2.592000pt;}
.ws17e{word-spacing:2.600000pt;}
.wsec{word-spacing:2.606933pt;}
.ws7d{word-spacing:2.657067pt;}
.ws163{word-spacing:2.680000pt;}
.wsef{word-spacing:2.707200pt;}
.ws6b{word-spacing:2.757333pt;}
.ws23{word-spacing:2.807467pt;}
.ws171{word-spacing:2.840000pt;}
.ws8c{word-spacing:2.857600pt;}
.ws180{word-spacing:2.880000pt;}
.wsc3{word-spacing:2.907733pt;}
.ws86{word-spacing:2.918400pt;}
.ws83{word-spacing:2.956800pt;}
.wsa2{word-spacing:2.957867pt;}
.wsaa{word-spacing:2.995200pt;}
.wsd1{word-spacing:3.008000pt;}
.ws13{word-spacing:3.058133pt;}
.wse1{word-spacing:3.072000pt;}
.ws173{word-spacing:3.080000pt;}
.ws11d{word-spacing:3.108267pt;}
.ws18b{word-spacing:3.120000pt;}
.wsce{word-spacing:3.148800pt;}
.ws113{word-spacing:3.158400pt;}
.ws87{word-spacing:3.187200pt;}
.ws6a{word-spacing:3.208533pt;}
.ws4c{word-spacing:3.258667pt;}
.wsde{word-spacing:3.264000pt;}
.ws104{word-spacing:3.302400pt;}
.ws25{word-spacing:3.308800pt;}
.ws193{word-spacing:3.320000pt;}
.wsba{word-spacing:3.358933pt;}
.ws7a{word-spacing:3.409067pt;}
.wscb{word-spacing:3.417600pt;}
.ws2b{word-spacing:3.459200pt;}
.wse{word-spacing:3.509333pt;}
.ws24{word-spacing:3.559467pt;}
.ws14c{word-spacing:3.560000pt;}
.ws9e{word-spacing:3.609600pt;}
.wsb5{word-spacing:3.686400pt;}
.ws101{word-spacing:3.760000pt;}
.wsfd{word-spacing:3.763200pt;}
.ws192{word-spacing:3.800000pt;}
.ws21{word-spacing:3.810133pt;}
.ws181{word-spacing:3.840000pt;}
.ws34{word-spacing:3.860267pt;}
.wsff{word-spacing:3.878400pt;}
.ws128{word-spacing:3.910400pt;}
.ws14e{word-spacing:3.920000pt;}
.wsc0{word-spacing:3.960533pt;}
.ws96{word-spacing:3.993600pt;}
.wsd4{word-spacing:4.010667pt;}
.wscf{word-spacing:4.032000pt;}
.ws7e{word-spacing:4.060800pt;}
.ws13b{word-spacing:4.070400pt;}
.ws148{word-spacing:4.080000pt;}
.ws1d{word-spacing:4.110933pt;}
.ws176{word-spacing:4.120000pt;}
.ws9d{word-spacing:4.147200pt;}
.ws92{word-spacing:4.161067pt;}
.ws71{word-spacing:4.185600pt;}
.ws127{word-spacing:4.211200pt;}
.ws1a{word-spacing:4.261333pt;}
.ws111{word-spacing:4.262400pt;}
.ws120{word-spacing:4.311467pt;}
.ws133{word-spacing:4.320000pt;}
.ws186{word-spacing:4.360000pt;}
.ws1e{word-spacing:4.361600pt;}
.ws2a{word-spacing:4.411733pt;}
.ws61{word-spacing:4.461867pt;}
.wsed{word-spacing:4.512000pt;}
.wsf9{word-spacing:4.531200pt;}
.ws10e{word-spacing:4.562133pt;}
.wsaf{word-spacing:4.612267pt;}
.wsf1{word-spacing:4.662400pt;}
.ws157{word-spacing:4.680000pt;}
.ws198{word-spacing:4.704000pt;}
.ws8d{word-spacing:4.712533pt;}
.ws146{word-spacing:4.760000pt;}
.wsd{word-spacing:4.762667pt;}
.wsdc{word-spacing:4.812800pt;}
.wsf3{word-spacing:4.862933pt;}
.wsad{word-spacing:4.913067pt;}
.ws15f{word-spacing:4.920000pt;}
.wsb2{word-spacing:4.992000pt;}
.wsf5{word-spacing:5.013333pt;}
.ws156{word-spacing:5.040000pt;}
.ws12d{word-spacing:5.063467pt;}
.wsb1{word-spacing:5.068800pt;}
.ws177{word-spacing:5.120000pt;}
.wscc{word-spacing:5.163733pt;}
.ws18e{word-spacing:5.200000pt;}
.ws55{word-spacing:5.264000pt;}
.ws8a{word-spacing:5.314133pt;}
.ws11{word-spacing:5.364267pt;}
.wsc2{word-spacing:5.414400pt;}
.ws11f{word-spacing:5.464533pt;}
.wsa7{word-spacing:5.491200pt;}
.wsbf{word-spacing:5.564800pt;}
.ws14b{word-spacing:5.600000pt;}
.wsb3{word-spacing:5.614933pt;}
.ws134{word-spacing:5.616000pt;}
.ws46{word-spacing:5.665067pt;}
.ws12a{word-spacing:5.715200pt;}
.ws129{word-spacing:5.765333pt;}
.wsf6{word-spacing:5.815467pt;}
.ws174{word-spacing:5.880000pt;}
.wsd3{word-spacing:5.915733pt;}
.ws16f{word-spacing:5.960000pt;}
.wsa1{word-spacing:5.965867pt;}
.ws8e{word-spacing:6.016000pt;}
.wsfa{word-spacing:6.066133pt;}
.ws149{word-spacing:6.080000pt;}
.ws116{word-spacing:6.105600pt;}
.wsca{word-spacing:6.116267pt;}
.ws150{word-spacing:6.120000pt;}
.wsd9{word-spacing:6.166400pt;}
.ws16b{word-spacing:6.200000pt;}
.ws114{word-spacing:6.216533pt;}
.ws185{word-spacing:6.240000pt;}
.ws5b{word-spacing:6.266667pt;}
.ws17a{word-spacing:6.320000pt;}
.ws155{word-spacing:6.360000pt;}
.ws5f{word-spacing:6.467200pt;}
.ws5{word-spacing:6.517333pt;}
.ws29{word-spacing:6.617600pt;}
.wse9{word-spacing:6.681600pt;}
.ws107{word-spacing:6.717867pt;}
.wsfe{word-spacing:6.758400pt;}
.ws108{word-spacing:6.818133pt;}
.ws16d{word-spacing:6.920000pt;}
.ws123{word-spacing:6.968533pt;}
.ws11b{word-spacing:7.068800pt;}
.wsbd{word-spacing:7.104000pt;}
.ws5e{word-spacing:7.169067pt;}
.ws106{word-spacing:7.219200pt;}
.ws13a{word-spacing:7.257600pt;}
.ws6{word-spacing:7.369600pt;}
.wsd6{word-spacing:7.372800pt;}
.ws15c{word-spacing:7.400000pt;}
.ws81{word-spacing:7.419733pt;}
.wsda{word-spacing:7.469867pt;}
.ws3f{word-spacing:7.488000pt;}
.ws65{word-spacing:7.520000pt;}
.ws165{word-spacing:7.720000pt;}
.ws11a{word-spacing:7.720533pt;}
.wse4{word-spacing:7.870933pt;}
.wse3{word-spacing:7.921067pt;}
.wsa8{word-spacing:7.948800pt;}
.ws125{word-spacing:8.021333pt;}
.ws126{word-spacing:8.221867pt;}
.wsa6{word-spacing:8.256000pt;}
.ws169{word-spacing:8.320000pt;}
.ws178{word-spacing:8.360000pt;}
.ws38{word-spacing:8.572800pt;}
.ws3c{word-spacing:8.832000pt;}
.ws172{word-spacing:8.960000pt;}
.ws197{word-spacing:9.120000pt;}
.ws164{word-spacing:9.360000pt;}
.ws18f{word-spacing:9.400000pt;}
.ws105{word-spacing:9.525333pt;}
.ws189{word-spacing:9.760000pt;}
.ws3e{word-spacing:9.792000pt;}
.ws179{word-spacing:10.160000pt;}
.ws191{word-spacing:10.240000pt;}
.wsf0{word-spacing:10.277333pt;}
.ws182{word-spacing:10.280000pt;}
.ws16e{word-spacing:10.440000pt;}
.ws147{word-spacing:10.480000pt;}
.ws16a{word-spacing:10.520000pt;}
.ws15b{word-spacing:10.640000pt;}
.ws154{word-spacing:10.880000pt;}
.ws17c{word-spacing:11.160000pt;}
.ws184{word-spacing:11.400000pt;}
.ws158{word-spacing:11.440000pt;}
.ws14a{word-spacing:11.720000pt;}
.ws17d{word-spacing:11.880000pt;}
.ws18a{word-spacing:11.920000pt;}
.ws153{word-spacing:13.120000pt;}
.ws18d{word-spacing:13.400000pt;}
.ws161{word-spacing:14.000000pt;}
.wscd{word-spacing:15.014400pt;}
.ws17b{word-spacing:15.120000pt;}
.ws16c{word-spacing:16.880000pt;}
.ws144{word-spacing:18.520000pt;}
.ws14d{word-spacing:29.040000pt;}
._14{margin-left:-25.816533pt;}
._b{margin-left:-19.246933pt;}
._f{margin-left:-15.533214pt;}
._18{margin-left:-10.406933pt;}
._5{margin-left:-6.467200pt;}
._7{margin-left:-5.514667pt;}
._3{margin-left:-4.612267pt;}
._4{margin-left:-3.664747pt;}
._2{margin-left:-2.208000pt;}
._6{margin-left:-0.902400pt;}
._1{width:1.594667pt;}
._9{width:2.798293pt;}
._16{width:4.454175pt;}
._15{width:6.334890pt;}
._17{width:8.447252pt;}
._10{width:23.819973pt;}
._e{width:25.573290pt;}
._11{width:26.507973pt;}
._d{width:27.992490pt;}
._12{width:29.157573pt;}
._c{width:30.297692pt;}
._a{width:48.729578pt;}
._8{width:50.841402pt;}
._13{width:177.541333pt;}
._0{width:2032.440000pt;}
.fs4{font-size:29.227733pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:40.000000pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:50.133333pt;}
.fs8{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y1f8{bottom:91.464667pt;}
.y53{bottom:92.358267pt;}
.y23a{bottom:92.387200pt;}
.y100{bottom:92.396800pt;}
.y18b{bottom:92.400000pt;}
.y22b{bottom:92.406400pt;}
.y145{bottom:92.409467pt;}
.y66{bottom:92.409600pt;}
.y215{bottom:92.410267pt;}
.yba{bottom:92.410400pt;}
.y1b3{bottom:92.413467pt;}
.ydb{bottom:92.413600pt;}
.y144{bottom:92.413733pt;}
.y12b{bottom:92.424400pt;}
.y119{bottom:92.426533pt;}
.y52{bottom:92.598533pt;}
.y23{bottom:92.828533pt;}
.y1d1{bottom:93.351200pt;}
.y272{bottom:101.704533pt;}
.y1f7{bottom:102.664667pt;}
.y239{bottom:103.590400pt;}
.yff{bottom:103.600000pt;}
.y18a{bottom:103.603200pt;}
.y65{bottom:103.609600pt;}
.y22a{bottom:103.613467pt;}
.y1d0{bottom:104.552000pt;}
.y2a5{bottom:105.490800pt;}
.y1bb{bottom:110.170267pt;}
.yb9{bottom:110.170400pt;}
.y8a{bottom:110.173467pt;}
.y1a6{bottom:110.177333pt;}
.yda{bottom:110.177467pt;}
.y51{bottom:110.362533pt;}
.y143{bottom:110.411600pt;}
.y12a{bottom:110.422267pt;}
.y118{bottom:110.424400pt;}
.y271{bottom:114.374533pt;}
.y238{bottom:114.793600pt;}
.yfe{bottom:114.803200pt;}
.y189{bottom:114.806400pt;}
.y2a4{bottom:118.137067pt;}
.y1f6{bottom:120.428533pt;}
.y1b2{bottom:121.373467pt;}
.y64{bottom:121.373600pt;}
.y15e{bottom:121.377467pt;}
.y1cf{bottom:122.312000pt;}
.y22{bottom:122.756400pt;}
.y237{bottom:125.996800pt;}
.yfd{bottom:126.006400pt;}
.y188{bottom:126.009600pt;}
.y270{bottom:127.044533pt;}
.y1a5{bottom:127.937333pt;}
.y89{bottom:127.937467pt;}
.y1db{bottom:127.938000pt;}
.yd9{bottom:127.941333pt;}
.y50{bottom:128.130267pt;}
.y111{bottom:128.409467pt;}
.y18d{bottom:128.411600pt;}
.y110{bottom:128.413733pt;}
.y129{bottom:128.420133pt;}
.y117{bottom:128.422267pt;}
.y2a3{bottom:130.807067pt;}
.yb8{bottom:132.574267pt;}
.y229{bottom:132.577333pt;}
.y1ce{bottom:133.515200pt;}
.y236{bottom:137.200000pt;}
.yfc{bottom:137.209600pt;}
.y1f5{bottom:138.182800pt;}
.y1a4{bottom:139.137333pt;}
.y15d{bottom:139.137467pt;}
.y63{bottom:139.141333pt;}
.y21{bottom:140.520267pt;}
.y26f{bottom:143.477467pt;}
.y187{bottom:143.773467pt;}
.y1cd{bottom:144.718400pt;}
.y1da{bottom:145.698000pt;}
.y1c2{bottom:145.705200pt;}
.yd8{bottom:145.705333pt;}
.y4f{bottom:145.890267pt;}
.y96{bottom:146.409467pt;}
.y95{bottom:146.411600pt;}
.y128{bottom:146.418000pt;}
.y116{bottom:146.420133pt;}
.y142{bottom:146.422267pt;}
.y2a2{bottom:147.257067pt;}
.yfb{bottom:148.394400pt;}
.y235{bottom:148.403200pt;}
.y1f4{bottom:149.386000pt;}
.yb7{bottom:150.334267pt;}
.y228{bottom:150.337333pt;}
.y15c{bottom:150.337467pt;}
.y26e{bottom:156.147467pt;}
.y62{bottom:156.901333pt;}
.y1d9{bottom:156.905200pt;}
.y20{bottom:158.284133pt;}
.y234{bottom:159.606400pt;}
.y2a1{bottom:159.927067pt;}
.y1f3{bottom:160.589200pt;}
.yb6{bottom:161.541333pt;}
.y1cc{bottom:162.482267pt;}
.y1c1{bottom:163.465200pt;}
.yd7{bottom:163.469200pt;}
.y4e{bottom:163.654267pt;}
.y94{bottom:164.409467pt;}
.y88{bottom:164.411600pt;}
.y93{bottom:164.413733pt;}
.y127{bottom:164.415867pt;}
.y115{bottom:164.418000pt;}
.y141{bottom:164.420133pt;}
.y1a0{bottom:164.428667pt;}
.y177{bottom:164.439333pt;}
.yfa{bottom:166.154400pt;}
.y61{bottom:168.101333pt;}
.y26d{bottom:168.817467pt;}
.y233{bottom:170.809600pt;}
.y1f2{bottom:171.792400pt;}
.y2a0{bottom:172.597067pt;}
.y1c0{bottom:174.665200pt;}
.y1f{bottom:176.048133pt;}
.yf9{bottom:177.357600pt;}
.yb5{bottom:179.301333pt;}
.y1cb{bottom:180.246267pt;}
.yd6{bottom:181.233067pt;}
.y4d{bottom:181.418133pt;}
.y26c{bottom:181.487467pt;}
.y87{bottom:182.409467pt;}
.y92{bottom:182.411600pt;}
.y126{bottom:182.413733pt;}
.y114{bottom:182.415867pt;}
.y140{bottom:182.418000pt;}
.y186{bottom:182.420133pt;}
.y19f{bottom:182.426533pt;}
.y176{bottom:182.437200pt;}
.y1f1{bottom:182.992533pt;}
.y29f{bottom:185.267067pt;}
.y1d8{bottom:185.856267pt;}
.y60{bottom:185.865333pt;}
.y1ba{bottom:185.865867pt;}
.y227{bottom:185.869067pt;}
.y1b1{bottom:185.869200pt;}
.yf8{bottom:188.560800pt;}
.y232{bottom:188.573467pt;}
.yb4{bottom:190.489333pt;}
.y1bf{bottom:192.425867pt;}
.y1e{bottom:193.812000pt;}
.y26a{bottom:194.153600pt;}
.y26b{bottom:194.157467pt;}
.y29e{bottom:197.937067pt;}
.yd5{bottom:198.997067pt;}
.y4c{bottom:199.182000pt;}
.yf7{bottom:199.764000pt;}
.y86{bottom:200.409467pt;}
.y125{bottom:200.411600pt;}
.y113{bottom:200.413733pt;}
.y13f{bottom:200.415867pt;}
.y185{bottom:200.418000pt;}
.y19e{bottom:200.424400pt;}
.y205{bottom:200.428667pt;}
.y10f{bottom:200.432933pt;}
.y175{bottom:200.435067pt;}
.y1d7{bottom:203.616267pt;}
.y1b9{bottom:203.625867pt;}
.y1be{bottom:203.629067pt;}
.y1b0{bottom:203.629200pt;}
.y231{bottom:206.337467pt;}
.yb3{bottom:208.249333pt;}
.y269{bottom:210.603600pt;}
.yf6{bottom:210.967200pt;}
.y1d{bottom:211.569600pt;}
.y29d{bottom:214.373200pt;}
.y1d6{bottom:214.819467pt;}
.y1b8{bottom:214.829067pt;}
.y1af{bottom:214.829200pt;}
.yd4{bottom:216.760933pt;}
.y4b{bottom:216.946000pt;}
.y124{bottom:218.409467pt;}
.y1f0{bottom:218.411467pt;}
.y5f{bottom:218.411600pt;}
.y13e{bottom:218.413733pt;}
.y85{bottom:218.415867pt;}
.y214{bottom:218.418000pt;}
.y19d{bottom:218.422267pt;}
.y204{bottom:218.426533pt;}
.y10e{bottom:218.430800pt;}
.y174{bottom:218.432933pt;}
.yb2{bottom:219.452533pt;}
.yf5{bottom:222.170400pt;}
.y1c{bottom:222.772800pt;}
.y230{bottom:224.101333pt;}
.y1d5{bottom:226.022667pt;}
.y1b7{bottom:226.029067pt;}
.y268{bottom:226.922267pt;}
.y29c{bottom:227.043200pt;}
.yb1{bottom:230.655733pt;}
.y1ae{bottom:232.593067pt;}
.yf4{bottom:233.373600pt;}
.y1b{bottom:233.976000pt;}
.yd3{bottom:234.524933pt;}
.y4a{bottom:234.690667pt;}
.y91{bottom:236.409467pt;}
.y13d{bottom:236.411600pt;}
.y1ef{bottom:236.413600pt;}
.y5e{bottom:236.413733pt;}
.y213{bottom:236.415867pt;}
.y19c{bottom:236.420133pt;}
.y1ca{bottom:236.422267pt;}
.y203{bottom:236.424400pt;}
.y10d{bottom:236.428667pt;}
.y173{bottom:236.430800pt;}
.y1d4{bottom:237.225867pt;}
.y267{bottom:239.592267pt;}
.y29b{bottom:239.713200pt;}
.yb0{bottom:241.858933pt;}
.y1b6{bottom:243.789867pt;}
.yf3{bottom:244.558267pt;}
.y1a{bottom:245.176000pt;}
.y49{bottom:245.893867pt;}
.y1d3{bottom:248.429067pt;}
.y1ad{bottom:250.356933pt;}
.y266{bottom:252.262267pt;}
.yd2{bottom:252.288800pt;}
.y29a{bottom:252.376533pt;}
.yaf{bottom:253.062133pt;}
.y13c{bottom:254.409467pt;}
.y1ee{bottom:254.411467pt;}
.y5d{bottom:254.411600pt;}
.y15b{bottom:254.413733pt;}
.y137{bottom:254.415867pt;}
.y17f{bottom:254.418000pt;}
.y1c9{bottom:254.420133pt;}
.y202{bottom:254.422267pt;}
.y10c{bottom:254.426533pt;}
.y172{bottom:254.428667pt;}
.y226{bottom:254.441467pt;}
.y1b5{bottom:254.993067pt;}
.y48{bottom:257.097067pt;}
.yf2{bottom:262.318267pt;}
.yae{bottom:264.265333pt;}
.y265{bottom:264.932267pt;}
.y299{bottom:265.046533pt;}
.y1ac{bottom:268.120933pt;}
.y47{bottom:268.300267pt;}
.yd1{bottom:270.052667pt;}
.y84{bottom:272.409467pt;}
.y15a{bottom:272.411600pt;}
.y5c{bottom:272.413733pt;}
.y1ed{bottom:272.415733pt;}
.y17e{bottom:272.415867pt;}
.y184{bottom:272.418000pt;}
.y201{bottom:272.420133pt;}
.y83{bottom:272.422267pt;}
.y10b{bottom:272.424400pt;}
.y171{bottom:272.426533pt;}
.y225{bottom:272.439333pt;}
.yf1{bottom:273.521467pt;}
.y12f{bottom:273.632933pt;}
.yad{bottom:275.466000pt;}
.y264{bottom:277.602267pt;}
.y298{bottom:277.716533pt;}
.y46{bottom:279.503467pt;}
.yf0{bottom:284.724667pt;}
.y1ab{bottom:285.884800pt;}
.y12e{bottom:286.295333pt;}
.yd0{bottom:287.816667pt;}
.y263{bottom:290.272267pt;}
.y11e{bottom:290.392133pt;}
.y212{bottom:290.409467pt;}
.y19{bottom:290.411467pt;}
.y5b{bottom:290.411600pt;}
.y1ec{bottom:290.413600pt;}
.y17d{bottom:290.413733pt;}
.y183{bottom:290.415867pt;}
.y200{bottom:290.418000pt;}
.y82{bottom:290.420133pt;}
.y10a{bottom:290.422267pt;}
.y170{bottom:290.424400pt;}
.y159{bottom:290.426533pt;}
.y224{bottom:290.437200pt;}
.y123{bottom:290.619867pt;}
.y45{bottom:290.706667pt;}
.y218{bottom:291.915333pt;}
.yac{bottom:293.226000pt;}
.y297{bottom:294.131733pt;}
.yef{bottom:295.927867pt;}
.y44{bottom:301.909867pt;}
.y11d{bottom:303.054533pt;}
.y122{bottom:303.282267pt;}
.yab{bottom:304.429200pt;}
.y217{bottom:304.577733pt;}
.ycf{bottom:305.580533pt;}
.y262{bottom:306.722267pt;}
.y296{bottom:306.801733pt;}
.yee{bottom:307.131067pt;}
.y149{bottom:308.152667pt;}
.y136{bottom:308.409467pt;}
.y18{bottom:308.411467pt;}
.y17c{bottom:308.411600pt;}
.y5a{bottom:308.413733pt;}
.y90{bottom:308.415867pt;}
.y81{bottom:308.418000pt;}
.y109{bottom:308.420133pt;}
.y16f{bottom:308.422267pt;}
.y135{bottom:308.424400pt;}
.y223{bottom:308.435067pt;}
.y165{bottom:311.805200pt;}
.yaa{bottom:315.629200pt;}
.y11c{bottom:315.716933pt;}
.y216{bottom:317.240133pt;}
.yed{bottom:318.334267pt;}
.y261{bottom:319.392267pt;}
.y295{bottom:319.471733pt;}
.y43{bottom:319.673733pt;}
.y148{bottom:320.815067pt;}
.yce{bottom:323.340533pt;}
.y167{bottom:323.522667pt;}
.y164{bottom:324.467600pt;}
.y1eb{bottom:326.409333pt;}
.y17b{bottom:326.409467pt;}
.y59{bottom:326.411600pt;}
.y8f{bottom:326.413733pt;}
.y80{bottom:326.415867pt;}
.y108{bottom:326.418000pt;}
.y17{bottom:326.420000pt;}
.y16e{bottom:326.420133pt;}
.y134{bottom:326.422267pt;}
.y222{bottom:326.432933pt;}
.y19b{bottom:326.439333pt;}
.y121{bottom:328.624133pt;}
.yec{bottom:329.537467pt;}
.y260{bottom:332.062267pt;}
.ya9{bottom:333.393067pt;}
.y294{bottom:335.921733pt;}
.y166{bottom:336.185067pt;}
.y163{bottom:337.130000pt;}
.y42{bottom:337.437733pt;}
.y11b{bottom:341.054533pt;}
.ycd{bottom:341.069200pt;}
.y120{bottom:341.286533pt;}
.y182{bottom:344.409467pt;}
.y8e{bottom:344.411600pt;}
.y58{bottom:344.413733pt;}
.y107{bottom:344.415867pt;}
.y16{bottom:344.417867pt;}
.y16d{bottom:344.418000pt;}
.y133{bottom:344.420133pt;}
.y221{bottom:344.430800pt;}
.y19a{bottom:344.437200pt;}
.y147{bottom:346.152667pt;}
.yeb{bottom:347.305333pt;}
.y25f{bottom:348.512267pt;}
.y293{bottom:348.591733pt;}
.ycc{bottom:352.272400pt;}
.y11a{bottom:353.716933pt;}
.y11f{bottom:353.948933pt;}
.y41{bottom:355.201600pt;}
.y146{bottom:358.815067pt;}
.y25e{bottom:361.182267pt;}
.y292{bottom:361.261733pt;}
.y1ea{bottom:362.409333pt;}
.y1ff{bottom:362.409467pt;}
.y57{bottom:362.411600pt;}
.y8d{bottom:362.413733pt;}
.y15{bottom:362.415733pt;}
.y16c{bottom:362.415867pt;}
.y132{bottom:362.418000pt;}
.y220{bottom:362.428667pt;}
.y199{bottom:362.435067pt;}
.ycb{bottom:363.475600pt;}
.yea{bottom:365.065333pt;}
.y40{bottom:372.965600pt;}
.y25d{bottom:373.852267pt;}
.y291{bottom:373.931733pt;}
.yca{bottom:374.678800pt;}
.y1a9{bottom:375.076133pt;}
.y2c9{bottom:380.409333pt;}
.y7f{bottom:380.409467pt;}
.y8c{bottom:380.411600pt;}
.y14{bottom:380.413600pt;}
.y56{bottom:380.413733pt;}
.y131{bottom:380.415867pt;}
.y21f{bottom:380.426533pt;}
.y198{bottom:380.432933pt;}
.yc9{bottom:385.882000pt;}
.y290{bottom:386.601733pt;}
.y25c{bottom:390.302267pt;}
.yc8{bottom:397.085200pt;}
.y2c8{bottom:398.409333pt;}
.y106{bottom:398.409467pt;}
.y13{bottom:398.411467pt;}
.y55{bottom:398.411600pt;}
.ye9{bottom:398.413733pt;}
.y8b{bottom:398.418000pt;}
.y105{bottom:398.420133pt;}
.y21e{bottom:398.424400pt;}
.y211{bottom:398.426533pt;}
.y197{bottom:398.430800pt;}
.y1a8{bottom:400.413733pt;}
.y25b{bottom:402.972267pt;}
.y28f{bottom:403.051733pt;}
.yc7{bottom:408.288400pt;}
.y1a7{bottom:413.076133pt;}
.y25a{bottom:415.642267pt;}
.y28e{bottom:415.721733pt;}
.y2c7{bottom:416.409333pt;}
.y54{bottom:416.409467pt;}
.ye8{bottom:416.411600pt;}
.y1fc{bottom:416.413733pt;}
.y7e{bottom:416.415867pt;}
.y104{bottom:416.418000pt;}
.y3f{bottom:416.420133pt;}
.y21d{bottom:416.422267pt;}
.y12{bottom:416.424267pt;}
.y210{bottom:416.424400pt;}
.y196{bottom:416.428667pt;}
.yc6{bottom:419.491600pt;}
.yc5{bottom:430.694800pt;}
.y259{bottom:432.092267pt;}
.y28d{bottom:432.151333pt;}
.y2c6{bottom:434.409333pt;}
.y130{bottom:434.409467pt;}
.y1aa{bottom:434.411600pt;}
.y7d{bottom:434.413733pt;}
.y103{bottom:434.415867pt;}
.y3e{bottom:434.418000pt;}
.y21c{bottom:434.420133pt;}
.y11{bottom:434.422133pt;}
.y20f{bottom:434.422267pt;}
.y195{bottom:434.426533pt;}
.y1e9{bottom:434.439333pt;}
.yc4{bottom:441.898000pt;}
.y258{bottom:444.762267pt;}
.y28c{bottom:444.821333pt;}
.y18c{bottom:451.600400pt;}
.y2c5{bottom:452.409333pt;}
.y1fb{bottom:452.409467pt;}
.y7c{bottom:452.411600pt;}
.y102{bottom:452.413733pt;}
.y3d{bottom:452.415867pt;}
.y21b{bottom:452.418000pt;}
.y10{bottom:452.420000pt;}
.y20e{bottom:452.420133pt;}
.y158{bottom:452.422267pt;}
.y194{bottom:452.424400pt;}
.y1e8{bottom:452.437200pt;}
.y190{bottom:452.498133pt;}
.yc3{bottom:453.101200pt;}
.y257{bottom:457.432267pt;}
.y28b{bottom:457.491333pt;}
.y181{bottom:464.262800pt;}
.yc2{bottom:464.304400pt;}
.y18f{bottom:465.160533pt;}
.y256{bottom:470.102267pt;}
.y28a{bottom:470.161333pt;}
.y7b{bottom:470.409467pt;}
.ya8{bottom:470.411600pt;}
.y3c{bottom:470.413733pt;}
.y21a{bottom:470.415867pt;}
.yf{bottom:470.417867pt;}
.y20d{bottom:470.418000pt;}
.y157{bottom:470.420133pt;}
.y16b{bottom:470.422267pt;}
.y1e7{bottom:470.435067pt;}
.y69{bottom:470.498133pt;}
.y180{bottom:476.925200pt;}
.y18e{bottom:477.822933pt;}
.y289{bottom:482.831333pt;}
.y68{bottom:483.160533pt;}
.y255{bottom:486.552267pt;}
.y101{bottom:488.409467pt;}
.y3b{bottom:488.411600pt;}
.ya7{bottom:488.413733pt;}
.ye{bottom:488.415733pt;}
.y20c{bottom:488.415867pt;}
.y156{bottom:488.418000pt;}
.y16a{bottom:488.420133pt;}
.y7a{bottom:488.428667pt;}
.y1c8{bottom:488.430800pt;}
.y1e6{bottom:488.432933pt;}
.y139{bottom:488.829733pt;}
.y288{bottom:495.501333pt;}
.y67{bottom:495.822933pt;}
.y254{bottom:499.222267pt;}
.y138{bottom:501.492133pt;}
.y2c4{bottom:506.409333pt;}
.ye7{bottom:506.409467pt;}
.y3a{bottom:506.411600pt;}
.yd{bottom:506.413600pt;}
.y1d2{bottom:506.413733pt;}
.y155{bottom:506.415867pt;}
.y169{bottom:506.418000pt;}
.y79{bottom:506.426533pt;}
.ye6{bottom:506.428667pt;}
.y1e5{bottom:506.430800pt;}
.y207{bottom:506.782533pt;}
.y1fe{bottom:507.794933pt;}
.y253{bottom:511.892267pt;}
.y287{bottom:511.940800pt;}
.y206{bottom:519.444933pt;}
.y1fd{bottom:520.457333pt;}
.y2c3{bottom:524.409333pt;}
.y22f{bottom:524.409467pt;}
.yc{bottom:524.411467pt;}
.y39{bottom:524.411600pt;}
.yc1{bottom:524.413733pt;}
.y168{bottom:524.415867pt;}
.ya6{bottom:524.418000pt;}
.y78{bottom:524.424400pt;}
.ye5{bottom:524.426533pt;}
.y1e4{bottom:524.428667pt;}
.y252{bottom:524.562267pt;}
.y97{bottom:524.581067pt;}
.y286{bottom:524.610800pt;}
.y251{bottom:537.232267pt;}
.y285{bottom:537.280800pt;}
.yb{bottom:542.409333pt;}
.y1bd{bottom:542.409467pt;}
.yc0{bottom:542.411600pt;}
.y38{bottom:542.413733pt;}
.ya5{bottom:542.415867pt;}
.y77{bottom:542.422267pt;}
.ye4{bottom:542.424400pt;}
.y1e3{bottom:542.426533pt;}
.y112{bottom:542.925200pt;}
.y284{bottom:553.654667pt;}
.y250{bottom:553.682267pt;}
.y1b4{bottom:555.076133pt;}
.ybf{bottom:560.409467pt;}
.y37{bottom:560.411600pt;}
.ya4{bottom:560.413733pt;}
.ya{bottom:560.415733pt;}
.y76{bottom:560.420133pt;}
.ye3{bottom:560.422267pt;}
.y1e2{bottom:560.424400pt;}
.y154{bottom:560.443600pt;}
.y283{bottom:566.324667pt;}
.y24f{bottom:566.352267pt;}
.y36{bottom:578.409467pt;}
.y22e{bottom:578.410133pt;}
.y2c2{bottom:578.411333pt;}
.ya3{bottom:578.411600pt;}
.y9{bottom:578.413600pt;}
.ybe{bottom:578.413733pt;}
.y35{bottom:578.418000pt;}
.ye2{bottom:578.420133pt;}
.y1e1{bottom:578.422267pt;}
.y153{bottom:578.441467pt;}
.y24e{bottom:579.022267pt;}
.y282{bottom:582.774667pt;}
.y12d{bottom:591.916667pt;}
.y281{bottom:595.444667pt;}
.y24d{bottom:595.472267pt;}
.y1bc{bottom:596.409467pt;}
.y8{bottom:596.411467pt;}
.ybd{bottom:596.411600pt;}
.y34{bottom:596.415867pt;}
.ye1{bottom:596.418000pt;}
.y1e0{bottom:596.420133pt;}
.ya2{bottom:596.424400pt;}
.y152{bottom:596.439333pt;}
.y1dc{bottom:597.019733pt;}
.y12c{bottom:604.579067pt;}
.y280{bottom:608.114667pt;}
.y24c{bottom:608.142267pt;}
.y13b{bottom:611.617467pt;}
.ybc{bottom:614.411600pt;}
.y7{bottom:614.413600pt;}
.y33{bottom:614.413733pt;}
.ye0{bottom:614.415867pt;}
.y1df{bottom:614.418000pt;}
.ya1{bottom:614.422267pt;}
.y151{bottom:614.437200pt;}
.y27f{bottom:620.784667pt;}
.y24b{bottom:620.812267pt;}
.y13a{bottom:624.279867pt;}
.y2c1{bottom:632.409333pt;}
.y6{bottom:632.411467pt;}
.y32{bottom:632.411600pt;}
.ydf{bottom:632.413733pt;}
.y1de{bottom:632.415867pt;}
.ya0{bottom:632.420133pt;}
.y150{bottom:632.435067pt;}
.y24a{bottom:633.482267pt;}
.y1a2{bottom:634.341600pt;}
.y27e{bottom:637.234667pt;}
.y1a1{bottom:647.004000pt;}
.y27d{bottom:649.904667pt;}
.y249{bottom:649.932267pt;}
.y5{bottom:650.409333pt;}
.y75{bottom:650.409467pt;}
.y31{bottom:650.411600pt;}
.y1dd{bottom:650.413733pt;}
.y74{bottom:650.415867pt;}
.y9f{bottom:650.418000pt;}
.y20b{bottom:650.428667pt;}
.y14f{bottom:650.432933pt;}
.y27c{bottom:662.574667pt;}
.y248{bottom:662.602267pt;}
.yde{bottom:668.409467pt;}
.y30{bottom:668.411600pt;}
.y73{bottom:668.413733pt;}
.y9e{bottom:668.415867pt;}
.y20a{bottom:668.426533pt;}
.y14e{bottom:668.430800pt;}
.y27b{bottom:675.244667pt;}
.y247{bottom:675.272267pt;}
.y2b4{bottom:677.224667pt;}
.y193{bottom:682.175200pt;}
.ydd{bottom:686.409467pt;}
.y2f{bottom:686.411600pt;}
.y9d{bottom:686.413733pt;}
.y209{bottom:686.424400pt;}
.y14d{bottom:686.428667pt;}
.y2b3{bottom:689.894667pt;}
.y27a{bottom:691.694667pt;}
.y246{bottom:691.722267pt;}
.y192{bottom:694.837600pt;}
.y1a3{bottom:695.095067pt;}
.y2b2{bottom:702.564667pt;}
.y279{bottom:704.364667pt;}
.y17a{bottom:704.370800pt;}
.y245{bottom:704.392267pt;}
.y2e{bottom:704.411600pt;}
.y72{bottom:704.413733pt;}
.y208{bottom:704.422267pt;}
.y14c{bottom:704.426533pt;}
.y219{bottom:704.428667pt;}
.y191{bottom:707.500000pt;}
.y2c0{bottom:715.184667pt;}
.y2b1{bottom:715.234667pt;}
.y179{bottom:717.033200pt;}
.y278{bottom:717.034667pt;}
.y244{bottom:717.062267pt;}
.ydc{bottom:722.409467pt;}
.y71{bottom:722.411600pt;}
.y22d{bottom:722.413733pt;}
.y2d{bottom:722.418000pt;}
.y9c{bottom:722.420133pt;}
.y14b{bottom:722.424400pt;}
.y1c7{bottom:722.426533pt;}
.y2bf{bottom:727.854667pt;}
.y2b0{bottom:727.904667pt;}
.y178{bottom:729.695600pt;}
.y277{bottom:729.704667pt;}
.y243{bottom:729.732267pt;}
.y70{bottom:740.409467pt;}
.ybb{bottom:740.411600pt;}
.y2c{bottom:740.415867pt;}
.y9b{bottom:740.418000pt;}
.y6f{bottom:740.422267pt;}
.y1c6{bottom:740.424400pt;}
.y2be{bottom:740.524667pt;}
.y1fa{bottom:741.585200pt;}
.y2af{bottom:744.354667pt;}
.y276{bottom:746.154667pt;}
.y242{bottom:746.168533pt;}
.y1f9{bottom:754.247600pt;}
.y2bd{bottom:756.974667pt;}
.y2ae{bottom:757.024667pt;}
.y4{bottom:758.406667pt;}
.y22c{bottom:758.411600pt;}
.y2b{bottom:758.413733pt;}
.y9a{bottom:758.415867pt;}
.y6e{bottom:758.420133pt;}
.y1c5{bottom:758.422267pt;}
.y275{bottom:758.824667pt;}
.y241{bottom:758.838533pt;}
.y2bc{bottom:769.644667pt;}
.y2ad{bottom:769.694667pt;}
.y274{bottom:771.494667pt;}
.y240{bottom:771.508533pt;}
.y2a{bottom:776.411600pt;}
.y99{bottom:776.413733pt;}
.y6d{bottom:776.418000pt;}
.y1c4{bottom:776.420133pt;}
.y2bb{bottom:782.314667pt;}
.y273{bottom:784.164667pt;}
.y23f{bottom:784.178533pt;}
.y2ac{bottom:786.144667pt;}
.y3{bottom:794.409333pt;}
.y29{bottom:794.411600pt;}
.y6c{bottom:794.415867pt;}
.y1c3{bottom:794.418000pt;}
.y2ba{bottom:798.764667pt;}
.y2ab{bottom:798.814667pt;}
.y23e{bottom:800.614667pt;}
.y2b9{bottom:811.434667pt;}
.y2aa{bottom:811.484667pt;}
.y28{bottom:812.411600pt;}
.y6b{bottom:812.413733pt;}
.y98{bottom:812.415867pt;}
.y23d{bottom:813.284667pt;}
.y2b8{bottom:824.104667pt;}
.y23c{bottom:825.954667pt;}
.y2a9{bottom:827.920933pt;}
.y162{bottom:828.229467pt;}
.y6a{bottom:830.411600pt;}
.y27{bottom:830.413733pt;}
.y2b7{bottom:836.774667pt;}
.y23b{bottom:838.624667pt;}
.y2a8{bottom:840.590933pt;}
.y161{bottom:840.891867pt;}
.y14a{bottom:848.409467pt;}
.y26{bottom:848.411600pt;}
.y2b6{bottom:849.444667pt;}
.y2a7{bottom:853.260933pt;}
.y160{bottom:853.554267pt;}
.y2b5{bottom:865.894667pt;}
.y2a6{bottom:865.930933pt;}
.y15f{bottom:866.216667pt;}
.y2{bottom:866.409333pt;}
.y25{bottom:866.409467pt;}
.y1{bottom:922.623867pt;}
.y24{bottom:922.624000pt;}
.h8{height:27.801600pt;}
.h11{height:29.792000pt;}
.h7{height:31.480000pt;}
.he{height:34.467200pt;}
.h9{height:34.467733pt;}
.hd{height:34.480000pt;}
.hb{height:34.480533pt;}
.h6{height:34.483200pt;}
.h12{height:34.492800pt;}
.h13{height:34.518933pt;}
.hc{height:34.531733pt;}
.h10{height:34.544000pt;}
.hf{height:34.544533pt;}
.h2{height:35.920000pt;}
.h16{height:37.240000pt;}
.h17{height:37.266667pt;}
.h18{height:37.776000pt;}
.h14{height:39.874667pt;}
.h5{height:42.563200pt;}
.h15{height:44.688000pt;}
.h3{height:49.653333pt;}
.ha{height:54.282667pt;}
.h4{height:104.144000pt;}
.h1{height:982.666667pt;}
.h0{height:982.677333pt;}
.w1{width:661.333333pt;}
.w0{width:661.417333pt;}
.x0{left:0.000000pt;}
.x35{left:63.307067pt;}
.x1{left:64.252000pt;}
.xe{left:68.883600pt;}
.x6{left:74.412400pt;}
.x36{left:75.590600pt;}
.x4{left:79.370000pt;}
.x2a{left:81.259867pt;}
.x2{left:83.149600pt;}
.x1f{left:86.029867pt;}
.x19{left:90.341067pt;}
.x10{left:102.561200pt;}
.xf{left:104.267600pt;}
.x3{left:106.931200pt;}
.x38{left:109.606267pt;}
.x26{left:112.900800pt;}
.x1a{left:123.417600pt;}
.x1b{left:124.866133pt;}
.x31{left:140.917067pt;}
.x22{left:154.729200pt;}
.xd{left:170.694667pt;}
.x32{left:182.791333pt;}
.x3d{left:186.767867pt;}
.x1c{left:205.824667pt;}
.x33{left:217.476933pt;}
.x39{left:240.090133pt;}
.x3a{left:242.442133pt;}
.x3b{left:244.818000pt;}
.x1d{left:245.788933pt;}
.x14{left:259.356533pt;}
.x34{left:261.003867pt;}
.x20{left:269.979200pt;}
.x12{left:272.527333pt;}
.xb{left:294.698267pt;}
.x30{left:304.629867pt;}
.x7{left:306.471200pt;}
.x13{left:309.209200pt;}
.x21{left:311.969333pt;}
.x2b{left:322.708667pt;}
.xc{left:330.263200pt;}
.x24{left:333.767733pt;}
.x2f{left:336.141200pt;}
.x8{left:338.875333pt;}
.x37{left:349.607033pt;}
.x25{left:375.775067pt;}
.x15{left:385.016000pt;}
.x23{left:401.889733pt;}
.x1e{left:411.968533pt;}
.x16{left:421.055467pt;}
.x27{left:437.600933pt;}
.x5{left:442.380933pt;}
.x2e{left:448.183600pt;}
.x17{left:455.200800pt;}
.x3c{left:459.597333pt;}
.x28{left:479.641200pt;}
.x18{left:490.110533pt;}
.x2c{left:495.560800pt;}
.x11{left:509.056133pt;}
.x9{left:520.012267pt;}
.x2d{left:538.016800pt;}
.xa{left:555.114000pt;}
.x29{left:576.481867pt;}
}




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