
    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_92b046cb6a29ab7fda34db03.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_2e5b36ec64ce42cbc2ca7b01.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022000;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_b6ee52b6a7b6acb9222a1793.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.135000;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_b72ea1c1d5eeee1f39c474c1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.967000;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_fd264965a0c9e0657f659d96.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7505b9f3a256980c270bc399.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_72fdff88d195e30814d46455.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.731000;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_b6976689064e853eb4586e95.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.737000;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;}
.ma{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);}
.m5{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);}
.m9{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);}
.m2{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);}
.mb{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);}
.m7{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);}
.m8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.065000px;}
.ls9{letter-spacing:-1.778400px;}
.ls7{letter-spacing:-0.450000px;}
.ls1{letter-spacing:-0.234000px;}
.ls8{letter-spacing:-0.228000px;}
.ls6{letter-spacing:-0.225000px;}
.ls2{letter-spacing:-0.222000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.405000px;}
.ls4{letter-spacing:2.565000px;}
.ls3{letter-spacing:1525.864800px;}
.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;}
}
.ws0{word-spacing:-19.200000px;}
.wsaf{word-spacing:-16.872000px;}
.ws1{word-spacing:-11.054400px;}
.ws2{word-spacing:-9.996000px;}
.wsf6{word-spacing:-9.405000px;}
.ws3{word-spacing:-9.126000px;}
.wsd4{word-spacing:-9.000000px;}
.ws162{word-spacing:-8.892000px;}
.wsf4{word-spacing:-8.550000px;}
.wsc0{word-spacing:-4.218000px;}
.wsd6{word-spacing:-3.990000px;}
.wsd0{word-spacing:-3.477000px;}
.ws50{word-spacing:-3.306000px;}
.wsa6{word-spacing:-3.249000px;}
.ws3a{word-spacing:-3.192000px;}
.wsa8{word-spacing:-3.135000px;}
.wsa{word-spacing:-3.098760px;}
.wscf{word-spacing:-3.078000px;}
.wsb8{word-spacing:-3.021000px;}
.ws8e{word-spacing:-2.964000px;}
.wsc7{word-spacing:-2.907000px;}
.wsd5{word-spacing:-2.850000px;}
.ws47{word-spacing:-2.793000px;}
.ws35{word-spacing:-2.679000px;}
.ws48{word-spacing:-2.622000px;}
.ws52{word-spacing:-2.565000px;}
.wsb5{word-spacing:-2.508000px;}
.ws87{word-spacing:-2.451000px;}
.wsb0{word-spacing:-2.394000px;}
.ws9c{word-spacing:-2.337000px;}
.ws19{word-spacing:-2.280000px;}
.ws51{word-spacing:-2.223000px;}
.ws1f{word-spacing:-2.166000px;}
.wsbe{word-spacing:-2.109000px;}
.ws26{word-spacing:-2.052000px;}
.ws38{word-spacing:-1.995000px;}
.ws3c{word-spacing:-1.938000px;}
.wsac{word-spacing:-1.881000px;}
.ws3f{word-spacing:-1.824000px;}
.ws56{word-spacing:-1.767000px;}
.wsf8{word-spacing:-1.755000px;}
.ws43{word-spacing:-1.710000px;}
.wsbc{word-spacing:-1.653000px;}
.ws37{word-spacing:-1.596000px;}
.ws14c{word-spacing:-1.575000px;}
.ws22{word-spacing:-1.539000px;}
.ws28{word-spacing:-1.482000px;}
.ws69{word-spacing:-1.425000px;}
.ws39{word-spacing:-1.368000px;}
.ws15f{word-spacing:-1.350000px;}
.ws18{word-spacing:-1.311000px;}
.ws89{word-spacing:-1.254000px;}
.ws132{word-spacing:-1.170000px;}
.wse2{word-spacing:-1.125000px;}
.wsbd{word-spacing:-1.083000px;}
.wsc9{word-spacing:-1.026000px;}
.ws7e{word-spacing:-0.969000px;}
.ws2f{word-spacing:-0.912000px;}
.wse8{word-spacing:-0.900000px;}
.ws9d{word-spacing:-0.855000px;}
.ws2c{word-spacing:-0.798000px;}
.ws80{word-spacing:-0.741000px;}
.wsfe{word-spacing:-0.720000px;}
.ws36{word-spacing:-0.684000px;}
.ws91{word-spacing:-0.627000px;}
.wse6{word-spacing:-0.585000px;}
.ws25{word-spacing:-0.570000px;}
.ws4d{word-spacing:-0.513000px;}
.ws2b{word-spacing:-0.456000px;}
.ws13e{word-spacing:-0.450000px;}
.ws14{word-spacing:-0.449820px;}
.wsff{word-spacing:-0.405000px;}
.ws16{word-spacing:-0.399000px;}
.wsdd{word-spacing:-0.360000px;}
.wscd{word-spacing:-0.285000px;}
.wsbf{word-spacing:-0.228000px;}
.ws11f{word-spacing:-0.180000px;}
.ws42{word-spacing:-0.171000px;}
.ws149{word-spacing:-0.135000px;}
.ws8c{word-spacing:-0.114000px;}
.ws7{word-spacing:-0.099960px;}
.ws17{word-spacing:-0.057000px;}
.wsf5{word-spacing:-0.045000px;}
.ws4{word-spacing:0.000000px;}
.wsa7{word-spacing:0.057000px;}
.ws82{word-spacing:0.114000px;}
.ws3b{word-spacing:0.228000px;}
.ws46{word-spacing:0.285000px;}
.ws159{word-spacing:0.315000px;}
.ws54{word-spacing:0.342000px;}
.ws138{word-spacing:0.360000px;}
.wsb9{word-spacing:0.399000px;}
.wse7{word-spacing:0.405000px;}
.ws106{word-spacing:0.450000px;}
.ws6c{word-spacing:0.456000px;}
.ws155{word-spacing:0.495000px;}
.ws29{word-spacing:0.570000px;}
.ws123{word-spacing:0.585000px;}
.ws7b{word-spacing:0.627000px;}
.ws72{word-spacing:0.741000px;}
.ws8f{word-spacing:0.798000px;}
.ws1a{word-spacing:0.855000px;}
.ws53{word-spacing:0.912000px;}
.ws161{word-spacing:0.945000px;}
.ws6{word-spacing:0.949620px;}
.ws31{word-spacing:0.969000px;}
.wsf3{word-spacing:0.990000px;}
.ws70{word-spacing:1.026000px;}
.ws165{word-spacing:1.048800px;}
.ws5f{word-spacing:1.083000px;}
.wse{word-spacing:1.099560px;}
.ws62{word-spacing:1.140000px;}
.wse0{word-spacing:1.170000px;}
.ws2d{word-spacing:1.197000px;}
.ws152{word-spacing:1.215000px;}
.ws1d{word-spacing:1.254000px;}
.ws9{word-spacing:1.299480px;}
.ws111{word-spacing:1.305000px;}
.wsba{word-spacing:1.311000px;}
.wsd{word-spacing:1.349460px;}
.ws14a{word-spacing:1.350000px;}
.wsb6{word-spacing:1.368000px;}
.ws5a{word-spacing:1.425000px;}
.ws93{word-spacing:1.482000px;}
.ws8b{word-spacing:1.539000px;}
.ws90{word-spacing:1.596000px;}
.wsfb{word-spacing:1.620000px;}
.ws4f{word-spacing:1.653000px;}
.ws12b{word-spacing:1.665000px;}
.wsb3{word-spacing:1.710000px;}
.ws164{word-spacing:1.732800px;}
.wsd1{word-spacing:1.767000px;}
.ws158{word-spacing:1.800000px;}
.ws41{word-spacing:1.824000px;}
.ws10{word-spacing:1.849260px;}
.wsad{word-spacing:1.881000px;}
.wsd8{word-spacing:1.935000px;}
.ws20{word-spacing:1.938000px;}
.ws8d{word-spacing:1.995000px;}
.ws1e{word-spacing:2.052000px;}
.ws121{word-spacing:2.070000px;}
.ws74{word-spacing:2.109000px;}
.wsf9{word-spacing:2.115000px;}
.ws4e{word-spacing:2.166000px;}
.ws109{word-spacing:2.205000px;}
.ws83{word-spacing:2.223000px;}
.ws5c{word-spacing:2.280000px;}
.wse1{word-spacing:2.295000px;}
.ws5d{word-spacing:2.337000px;}
.ws68{word-spacing:2.394000px;}
.ws110{word-spacing:2.430000px;}
.ws5b{word-spacing:2.451000px;}
.ws9e{word-spacing:2.508000px;}
.wsf7{word-spacing:2.520000px;}
.wsb4{word-spacing:2.565000px;}
.ws3e{word-spacing:2.622000px;}
.ws147{word-spacing:2.655000px;}
.ws84{word-spacing:2.679000px;}
.ws130{word-spacing:2.700000px;}
.ws63{word-spacing:2.736000px;}
.ws92{word-spacing:2.793000px;}
.ws15d{word-spacing:2.835000px;}
.ws9b{word-spacing:2.850000px;}
.ws33{word-spacing:2.907000px;}
.ws145{word-spacing:2.925000px;}
.ws7f{word-spacing:2.964000px;}
.ws4c{word-spacing:3.021000px;}
.ws60{word-spacing:3.078000px;}
.ws12f{word-spacing:3.105000px;}
.wsbb{word-spacing:3.135000px;}
.ws11{word-spacing:3.148740px;}
.ws139{word-spacing:3.150000px;}
.ws7d{word-spacing:3.192000px;}
.ws163{word-spacing:3.237600px;}
.ws98{word-spacing:3.249000px;}
.ws12c{word-spacing:3.285000px;}
.ws5{word-spacing:3.298680px;}
.ws7a{word-spacing:3.306000px;}
.ws44{word-spacing:3.363000px;}
.wse4{word-spacing:3.375000px;}
.wsf{word-spacing:3.398640px;}
.ws34{word-spacing:3.420000px;}
.ws135{word-spacing:3.465000px;}
.ws76{word-spacing:3.477000px;}
.ws4b{word-spacing:3.534000px;}
.wsdc{word-spacing:3.555000px;}
.ws71{word-spacing:3.591000px;}
.ws12a{word-spacing:3.645000px;}
.ws5e{word-spacing:3.648000px;}
.ws21{word-spacing:3.705000px;}
.ws136{word-spacing:3.735000px;}
.ws85{word-spacing:3.762000px;}
.ws142{word-spacing:3.780000px;}
.wsa9{word-spacing:3.819000px;}
.ws4a{word-spacing:3.876000px;}
.ws153{word-spacing:3.915000px;}
.ws3d{word-spacing:3.933000px;}
.ws61{word-spacing:4.047000px;}
.wsc8{word-spacing:4.104000px;}
.ws157{word-spacing:4.140000px;}
.ws59{word-spacing:4.161000px;}
.ws78{word-spacing:4.218000px;}
.ws40{word-spacing:4.275000px;}
.wsa5{word-spacing:4.332000px;}
.wsc{word-spacing:4.348260px;}
.ws14d{word-spacing:4.365000px;}
.wsd7{word-spacing:4.389000px;}
.ws107{word-spacing:4.410000px;}
.ws77{word-spacing:4.503000px;}
.wsa4{word-spacing:4.560000px;}
.wsdf{word-spacing:4.590000px;}
.ws30{word-spacing:4.617000px;}
.ws27{word-spacing:4.674000px;}
.ws115{word-spacing:4.680000px;}
.ws73{word-spacing:4.731000px;}
.ws45{word-spacing:4.845000px;}
.ws12e{word-spacing:4.860000px;}
.ws15{word-spacing:4.902000px;}
.ws15c{word-spacing:4.905000px;}
.ws112{word-spacing:4.950000px;}
.wsaa{word-spacing:4.959000px;}
.ws2e{word-spacing:5.016000px;}
.ws118{word-spacing:5.040000px;}
.ws166{word-spacing:5.061600px;}
.ws65{word-spacing:5.073000px;}
.ws6f{word-spacing:5.130000px;}
.wsab{word-spacing:5.187000px;}
.wsa2{word-spacing:5.244000px;}
.ws58{word-spacing:5.301000px;}
.ws119{word-spacing:5.310000px;}
.ws97{word-spacing:5.358000px;}
.ws15e{word-spacing:5.400000px;}
.ws96{word-spacing:5.415000px;}
.ws32{word-spacing:5.472000px;}
.ws8a{word-spacing:5.529000px;}
.ws24{word-spacing:5.586000px;}
.ws6a{word-spacing:5.643000px;}
.ws127{word-spacing:5.670000px;}
.ws66{word-spacing:5.700000px;}
.ws7c{word-spacing:5.757000px;}
.wsc2{word-spacing:5.814000px;}
.ws13{word-spacing:5.847660px;}
.ws79{word-spacing:5.928000px;}
.wsae{word-spacing:5.985000px;}
.ws14f{word-spacing:6.030000px;}
.ws2a{word-spacing:6.042000px;}
.ws81{word-spacing:6.156000px;}
.wse5{word-spacing:6.210000px;}
.ws6b{word-spacing:6.213000px;}
.ws94{word-spacing:6.270000px;}
.ws49{word-spacing:6.327000px;}
.ws1c{word-spacing:6.384000px;}
.ws141{word-spacing:6.390000px;}
.ws11e{word-spacing:6.435000px;}
.wsca{word-spacing:6.441000px;}
.ws120{word-spacing:6.480000px;}
.wsd2{word-spacing:6.498000px;}
.ws9a{word-spacing:6.555000px;}
.ws88{word-spacing:6.612000px;}
.ws12d{word-spacing:6.660000px;}
.ws57{word-spacing:6.669000px;}
.wsd3{word-spacing:6.726000px;}
.ws75{word-spacing:7.011000px;}
.ws143{word-spacing:7.065000px;}
.ws9f{word-spacing:7.068000px;}
.ws67{word-spacing:7.125000px;}
.wsa3{word-spacing:7.182000px;}
.ws114{word-spacing:7.200000px;}
.ws137{word-spacing:7.245000px;}
.wsde{word-spacing:7.290000px;}
.ws12{word-spacing:7.297080px;}
.ws55{word-spacing:7.353000px;}
.wsb2{word-spacing:7.410000px;}
.ws131{word-spacing:7.425000px;}
.wsef{word-spacing:7.515000px;}
.wsa0{word-spacing:7.581000px;}
.ws11d{word-spacing:7.605000px;}
.wse3{word-spacing:7.650000px;}
.ws1b{word-spacing:7.695000px;}
.ws146{word-spacing:7.785000px;}
.wscc{word-spacing:7.866000px;}
.wsc4{word-spacing:7.923000px;}
.wsa1{word-spacing:7.980000px;}
.ws23{word-spacing:8.037000px;}
.ws108{word-spacing:8.190000px;}
.ws95{word-spacing:8.322000px;}
.wsea{word-spacing:8.325000px;}
.ws8{word-spacing:8.346660px;}
.ws15b{word-spacing:8.505000px;}
.ws6d{word-spacing:8.607000px;}
.ws124{word-spacing:8.685000px;}
.ws86{word-spacing:8.778000px;}
.ws10c{word-spacing:8.820000px;}
.ws64{word-spacing:8.835000px;}
.ws101{word-spacing:8.865000px;}
.ws6e{word-spacing:8.892000px;}
.ws10e{word-spacing:9.045000px;}
.wsb7{word-spacing:9.063000px;}
.ws99{word-spacing:9.120000px;}
.wsf2{word-spacing:9.180000px;}
.ws14e{word-spacing:9.270000px;}
.wsc6{word-spacing:9.291000px;}
.wsb{word-spacing:9.396240px;}
.wscb{word-spacing:9.519000px;}
.wsce{word-spacing:9.576000px;}
.ws15a{word-spacing:9.585000px;}
.ws104{word-spacing:9.765000px;}
.ws117{word-spacing:9.810000px;}
.wsc3{word-spacing:9.861000px;}
.wsc5{word-spacing:9.918000px;}
.wsfd{word-spacing:10.080000px;}
.wsc1{word-spacing:10.146000px;}
.wsec{word-spacing:10.305000px;}
.ws160{word-spacing:10.350000px;}
.ws11a{word-spacing:10.395000px;}
.ws11b{word-spacing:10.575000px;}
.ws151{word-spacing:10.755000px;}
.ws150{word-spacing:10.845000px;}
.ws102{word-spacing:10.935000px;}
.ws129{word-spacing:11.160000px;}
.ws10f{word-spacing:11.205000px;}
.wseb{word-spacing:11.250000px;}
.ws116{word-spacing:12.330000px;}
.ws10a{word-spacing:12.420000px;}
.wse9{word-spacing:12.510000px;}
.wsf0{word-spacing:12.600000px;}
.wsb1{word-spacing:12.711000px;}
.ws148{word-spacing:12.735000px;}
.ws103{word-spacing:12.780000px;}
.wsfc{word-spacing:13.230000px;}
.wsf1{word-spacing:14.265000px;}
.wsee{word-spacing:14.490000px;}
.ws14b{word-spacing:14.580000px;}
.ws13b{word-spacing:14.895000px;}
.ws144{word-spacing:15.030000px;}
.ws11c{word-spacing:15.210000px;}
.wsdb{word-spacing:15.660000px;}
.ws122{word-spacing:16.065000px;}
.ws13f{word-spacing:16.155000px;}
.ws113{word-spacing:16.515000px;}
.wsd9{word-spacing:16.560000px;}
.ws13d{word-spacing:16.875000px;}
.ws100{word-spacing:17.595000px;}
.ws154{word-spacing:18.630000px;}
.wsfa{word-spacing:18.765000px;}
.ws105{word-spacing:18.810000px;}
.ws13a{word-spacing:19.035000px;}
.ws126{word-spacing:19.800000px;}
.ws128{word-spacing:19.935000px;}
.ws140{word-spacing:21.015000px;}
.ws10d{word-spacing:21.105000px;}
.ws13c{word-spacing:21.735000px;}
.ws134{word-spacing:22.995000px;}
.wsda{word-spacing:23.175000px;}
.ws133{word-spacing:24.480000px;}
.ws156{word-spacing:24.795000px;}
.ws125{word-spacing:26.010000px;}
.ws10b{word-spacing:33.525000px;}
.wsed{word-spacing:46.980000px;}
._13{margin-left:-13.087200px;}
._e{margin-left:-9.375000px;}
._b{margin-left:-8.324700px;}
._7{margin-left:-7.317300px;}
._9{margin-left:-6.270000px;}
._6{margin-left:-5.244000px;}
._5{margin-left:-3.748080px;}
._8{margin-left:-2.107500px;}
._2{margin-left:-1.056000px;}
._1{width:1.254000px;}
._3{width:2.694000px;}
._4{width:4.602000px;}
._c{width:6.334200px;}
._f{width:7.410000px;}
._d{width:9.266400px;}
._11{width:14.626500px;}
._12{width:16.116000px;}
._10{width:24.081000px;}
._a{width:55.278309px;}
._0{width:2076.081000px;}
.fc1{color:rgb(25,90,159);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.231000px;}
.fs9{font-size:44.400000px;}
.fsb{font-size:45.000000px;}
.fsd{font-size:45.600000px;}
.fs0{font-size:46.800000px;}
.fs7{font-size:47.040000px;}
.fsc{font-size:48.000000px;}
.fs5{font-size:49.980000px;}
.fs4{font-size:55.272000px;}
.fs6{font-size:57.000000px;}
.fs1{font-size:66.000000px;}
.fsa{font-size:76.440000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:58.827450px;}
.y10f{bottom:112.677150px;}
.y4d{bottom:112.677300px;}
.y10e{bottom:112.677900px;}
.y13d{bottom:112.679400px;}
.yf6{bottom:112.680900px;}
.y169{bottom:112.681650px;}
.y91{bottom:112.684650px;}
.yb2{bottom:112.688400px;}
.y74{bottom:112.689900px;}
.y123{bottom:112.691400px;}
.y153{bottom:112.692900px;}
.yd5{bottom:112.701900px;}
.y19c{bottom:121.075500px;}
.y21d{bottom:121.353600px;}
.y1e7{bottom:128.170050px;}
.y10d{bottom:132.927150px;}
.y13c{bottom:132.928650px;}
.yf5{bottom:132.930150px;}
.y168{bottom:132.930900px;}
.y26{bottom:132.932400px;}
.y90{bottom:132.933900px;}
.yb1{bottom:132.937650px;}
.y73{bottom:132.939150px;}
.y122{bottom:132.940650px;}
.y152{bottom:132.942150px;}
.y9b{bottom:132.947400px;}
.yd4{bottom:132.951150px;}
.y19b{bottom:135.329250px;}
.y21c{bottom:135.607350px;}
.y1b3{bottom:139.616550px;}
.y1e6{bottom:142.423800px;}
.y19a{bottom:149.583000px;}
.y13b{bottom:153.177900px;}
.yf4{bottom:153.179400px;}
.y167{bottom:153.180150px;}
.y25{bottom:153.181650px;}
.y8f{bottom:153.183150px;}
.y10c{bottom:153.183900px;}
.yb0{bottom:153.186900px;}
.y4c{bottom:153.187650px;}
.y72{bottom:153.188400px;}
.y121{bottom:153.189900px;}
.y151{bottom:153.191400px;}
.y9a{bottom:153.196650px;}
.yd3{bottom:153.200400px;}
.y1b2{bottom:153.870300px;}
.y21b{bottom:154.101750px;}
.y1e5{bottom:156.677550px;}
.y199{bottom:168.089250px;}
.y1b1{bottom:168.124050px;}
.y21a{bottom:168.355500px;}
.y1e4{bottom:170.931300px;}
.y13a{bottom:173.427150px;}
.yf3{bottom:173.428650px;}
.y166{bottom:173.429400px;}
.y24{bottom:173.430900px;}
.y8e{bottom:173.432400px;}
.y10b{bottom:173.433150px;}
.yaf{bottom:173.436150px;}
.y4b{bottom:173.436900px;}
.y71{bottom:173.437650px;}
.y120{bottom:173.439150px;}
.y150{bottom:173.440650px;}
.y99{bottom:173.445900px;}
.yd2{bottom:173.449650px;}
.y198{bottom:182.343000px;}
.y218{bottom:182.601300px;}
.y219{bottom:182.609250px;}
.y1e3{bottom:185.185050px;}
.y1b0{bottom:186.630300px;}
.yf2{bottom:193.677900px;}
.y165{bottom:193.678650px;}
.y23{bottom:193.680150px;}
.y185{bottom:193.680900px;}
.y8d{bottom:193.681650px;}
.y10a{bottom:193.682400px;}
.yae{bottom:193.685400px;}
.y4a{bottom:193.686150px;}
.y70{bottom:193.686900px;}
.y11f{bottom:193.688400px;}
.y14f{bottom:193.689900px;}
.y98{bottom:193.695150px;}
.yd1{bottom:193.698900px;}
.y139{bottom:193.703400px;}
.y197{bottom:196.596750px;}
.y1af{bottom:200.884050px;}
.y217{bottom:201.107550px;}
.y1e2{bottom:203.691300px;}
.y196{bottom:210.850500px;}
.yf1{bottom:213.927150px;}
.y164{bottom:213.927900px;}
.y22{bottom:213.929400px;}
.y184{bottom:213.930150px;}
.y8c{bottom:213.930900px;}
.y109{bottom:213.931650px;}
.yad{bottom:213.934650px;}
.y49{bottom:213.935400px;}
.y6f{bottom:213.936150px;}
.y11e{bottom:213.937650px;}
.y14e{bottom:213.939150px;}
.y97{bottom:213.944400px;}
.yd0{bottom:213.948150px;}
.y138{bottom:213.952650px;}
.y1ae{bottom:215.137800px;}
.y216{bottom:215.361300px;}
.y1e1{bottom:217.945050px;}
.y195{bottom:225.104250px;}
.y1e0{bottom:232.198800px;}
.y1ad{bottom:233.644050px;}
.y215{bottom:233.859450px;}
.y163{bottom:234.177150px;}
.y21{bottom:234.178650px;}
.y183{bottom:234.179400px;}
.y8b{bottom:234.180150px;}
.y108{bottom:234.180900px;}
.yf0{bottom:234.183150px;}
.yac{bottom:234.183900px;}
.y48{bottom:234.184650px;}
.y6e{bottom:234.185400px;}
.y11d{bottom:234.186900px;}
.y14d{bottom:234.188400px;}
.y96{bottom:234.193650px;}
.ycf{bottom:234.197400px;}
.y137{bottom:234.201900px;}
.y194{bottom:243.610500px;}
.y1df{bottom:246.452550px;}
.y1ac{bottom:247.897800px;}
.y214{bottom:248.113200px;}
.y12b{bottom:254.427150px;}
.y20{bottom:254.427900px;}
.y182{bottom:254.428650px;}
.y8a{bottom:254.429400px;}
.y107{bottom:254.430150px;}
.yef{bottom:254.432400px;}
.yab{bottom:254.433150px;}
.y47{bottom:254.433900px;}
.y6d{bottom:254.434650px;}
.y11c{bottom:254.436150px;}
.y14c{bottom:254.437650px;}
.y162{bottom:254.439900px;}
.y95{bottom:254.442900px;}
.yce{bottom:254.446650px;}
.y136{bottom:254.451150px;}
.y193{bottom:257.864250px;}
.y1de{bottom:260.706300px;}
.y1ab{bottom:262.151550px;}
.y213{bottom:266.537550px;}
.y1f{bottom:274.677150px;}
.y181{bottom:274.677900px;}
.y89{bottom:274.678650px;}
.y106{bottom:274.679400px;}
.yee{bottom:274.681650px;}
.yaa{bottom:274.682400px;}
.y46{bottom:274.683150px;}
.y6c{bottom:274.683900px;}
.y11b{bottom:274.685400px;}
.y14b{bottom:274.686900px;}
.y161{bottom:274.689150px;}
.y94{bottom:274.692150px;}
.ycd{bottom:274.695900px;}
.y135{bottom:274.700400px;}
.y1dd{bottom:274.960050px;}
.y192{bottom:276.370500px;}
.y1aa{bottom:276.405300px;}
.y212{bottom:280.791300px;}
.y23d{bottom:289.213800px;}
.y191{bottom:290.624250px;}
.y1a9{bottom:290.659050px;}
.y1dc{bottom:293.466300px;}
.y180{bottom:294.927150px;}
.y88{bottom:294.927900px;}
.y105{bottom:294.928650px;}
.yed{bottom:294.930900px;}
.y1e{bottom:294.931650px;}
.y45{bottom:294.932400px;}
.y6b{bottom:294.933150px;}
.y11a{bottom:294.934650px;}
.y14a{bottom:294.936150px;}
.y93{bottom:294.941400px;}
.ycc{bottom:294.945150px;}
.y134{bottom:294.949650px;}
.y211{bottom:295.045050px;}
.y23c{bottom:303.467550px;}
.y190{bottom:304.878000px;}
.y1db{bottom:307.720050px;}
.y1a7{bottom:309.157800px;}
.y1a8{bottom:309.165300px;}
.y210{bottom:309.298800px;}
.y87{bottom:315.177150px;}
.y104{bottom:315.177900px;}
.yec{bottom:315.180150px;}
.y1d{bottom:315.180900px;}
.y44{bottom:315.181650px;}
.y6a{bottom:315.182400px;}
.y119{bottom:315.183900px;}
.y149{bottom:315.185400px;}
.y160{bottom:315.187650px;}
.y92{bottom:315.190650px;}
.y12a{bottom:315.192900px;}
.ycb{bottom:315.194400px;}
.y133{bottom:315.198900px;}
.y23b{bottom:317.721300px;}
.y264{bottom:317.830050px;}
.y18f{bottom:319.131750px;}
.y1da{bottom:321.973800px;}
.y1a6{bottom:323.411550px;}
.y20f{bottom:327.805050px;}
.y263{bottom:332.083800px;}
.y103{bottom:335.427150px;}
.yeb{bottom:335.429400px;}
.y1c{bottom:335.430150px;}
.y43{bottom:335.430900px;}
.y69{bottom:335.431650px;}
.y118{bottom:335.433150px;}
.y148{bottom:335.434650px;}
.y15f{bottom:335.436900px;}
.y86{bottom:335.439900px;}
.y129{bottom:335.442150px;}
.yca{bottom:335.443650px;}
.y132{bottom:335.448150px;}
.y23a{bottom:336.227550px;}
.y1a4{bottom:337.559250px;}
.y18e{bottom:337.638000px;}
.y1a5{bottom:337.665300px;}
.y1d9{bottom:340.480050px;}
.y20e{bottom:342.058800px;}
.y239{bottom:350.481300px;}
.y262{bottom:350.590050px;}
.y18d{bottom:351.891750px;}
.y1d8{bottom:354.733800px;}
.yea{bottom:355.678650px;}
.y1b{bottom:355.679400px;}
.y42{bottom:355.680150px;}
.y68{bottom:355.680900px;}
.y117{bottom:355.682400px;}
.y147{bottom:355.683900px;}
.y102{bottom:355.684650px;}
.y15e{bottom:355.686150px;}
.y85{bottom:355.689150px;}
.y128{bottom:355.691400px;}
.yc9{bottom:355.692900px;}
.y131{bottom:355.697400px;}
.y1a3{bottom:356.065500px;}
.y20d{bottom:356.312550px;}
.y238{bottom:364.735050px;}
.y261{bottom:364.843800px;}
.y1d7{bottom:368.987550px;}
.y1a2{bottom:370.319250px;}
.y18c{bottom:370.398000px;}
.y20c{bottom:370.566300px;}
.ye9{bottom:375.927900px;}
.y1a{bottom:375.928650px;}
.y41{bottom:375.929400px;}
.y67{bottom:375.930150px;}
.y116{bottom:375.931650px;}
.y146{bottom:375.933150px;}
.y101{bottom:375.933900px;}
.y15d{bottom:375.935400px;}
.y84{bottom:375.938400px;}
.y127{bottom:375.940650px;}
.yc8{bottom:375.942150px;}
.y130{bottom:375.946650px;}
.y237{bottom:378.988800px;}
.y260{bottom:379.097550px;}
.y1a1{bottom:384.573000px;}
.y18b{bottom:384.651750px;}
.y20b{bottom:384.820050px;}
.y1d6{bottom:387.493800px;}
.ye8{bottom:396.177150px;}
.y19{bottom:396.177900px;}
.y40{bottom:396.178650px;}
.y66{bottom:396.179400px;}
.y115{bottom:396.180900px;}
.y145{bottom:396.182400px;}
.y100{bottom:396.183150px;}
.y15c{bottom:396.184650px;}
.y83{bottom:396.187650px;}
.y126{bottom:396.189900px;}
.yc7{bottom:396.191400px;}
.y17f{bottom:396.193650px;}
.y12f{bottom:396.195900px;}
.y236{bottom:397.495050px;}
.y25f{bottom:397.603800px;}
.y18a{bottom:398.905500px;}
.y1d5{bottom:401.747550px;}
.y1a0{bottom:403.079250px;}
.y20a{bottom:403.326300px;}
.y235{bottom:411.748800px;}
.y25e{bottom:411.857550px;}
.y1d4{bottom:416.001300px;}
.y18{bottom:416.427150px;}
.y3f{bottom:416.427900px;}
.y65{bottom:416.428650px;}
.y114{bottom:416.430150px;}
.y144{bottom:416.431650px;}
.yff{bottom:416.432400px;}
.y15b{bottom:416.433900px;}
.y82{bottom:416.436900px;}
.y125{bottom:416.439150px;}
.yc6{bottom:416.440650px;}
.y17e{bottom:416.442900px;}
.y12e{bottom:416.445150px;}
.y19f{bottom:417.333000px;}
.y189{bottom:417.411750px;}
.y209{bottom:417.580050px;}
.y234{bottom:426.002550px;}
.y25d{bottom:426.111300px;}
.y1d3{bottom:430.255050px;}
.y19e{bottom:431.586750px;}
.y188{bottom:431.665500px;}
.y208{bottom:431.833800px;}
.y3e{bottom:436.677150px;}
.y64{bottom:436.677900px;}
.y113{bottom:436.679400px;}
.y143{bottom:436.680900px;}
.yfe{bottom:436.681650px;}
.y15a{bottom:436.683150px;}
.y81{bottom:436.686150px;}
.ya9{bottom:436.687650px;}
.y124{bottom:436.688400px;}
.yc5{bottom:436.689900px;}
.y17d{bottom:436.692150px;}
.y12d{bottom:436.694400px;}
.y233{bottom:440.256300px;}
.y25c{bottom:440.365050px;}
.y1d2{bottom:444.508800px;}
.y19d{bottom:445.840500px;}
.y187{bottom:445.919250px;}
.y207{bottom:450.340050px;}
.y232{bottom:454.510050px;}
.y63{bottom:456.927150px;}
.y112{bottom:456.928650px;}
.y142{bottom:456.930150px;}
.yfd{bottom:456.930900px;}
.y159{bottom:456.932400px;}
.y80{bottom:456.935400px;}
.ya8{bottom:456.936900px;}
.ye7{bottom:456.937650px;}
.yc4{bottom:456.939150px;}
.y17c{bottom:456.941400px;}
.y12c{bottom:456.943650px;}
.y1d1{bottom:458.762550px;}
.y25b{bottom:458.871300px;}
.y206{bottom:464.593800px;}
.y231{bottom:468.763800px;}
.y25a{bottom:472.858800px;}
.y186{bottom:477.177150px;}
.y111{bottom:477.177900px;}
.y141{bottom:477.179400px;}
.yfc{bottom:477.180150px;}
.y158{bottom:477.181650px;}
.y62{bottom:477.183900px;}
.y7f{bottom:477.184650px;}
.ya7{bottom:477.186150px;}
.ye6{bottom:477.186900px;}
.yc3{bottom:477.188400px;}
.y17b{bottom:477.190650px;}
.y3c{bottom:477.192900px;}
.y1d0{bottom:477.268800px;}
.y205{bottom:478.847550px;}
.y3d{bottom:481.922400px;}
.y259{bottom:487.112550px;}
.y230{bottom:487.270050px;}
.y1cf{bottom:491.522550px;}
.y204{bottom:497.353800px;}
.y110{bottom:497.427150px;}
.y140{bottom:497.428650px;}
.yfb{bottom:497.429400px;}
.y61{bottom:497.433150px;}
.y7e{bottom:497.433900px;}
.ya6{bottom:497.435400px;}
.ye5{bottom:497.436150px;}
.yc2{bottom:497.437650px;}
.y17a{bottom:497.439900px;}
.y3b{bottom:497.442150px;}
.y22f{bottom:501.523800px;}
.y258{bottom:505.618800px;}
.y1ce{bottom:505.776300px;}
.y203{bottom:511.607550px;}
.y22e{bottom:515.777550px;}
.y17{bottom:517.604505px;}
.ye{bottom:517.641990px;}
.y13f{bottom:517.677900px;}
.yfa{bottom:517.678650px;}
.y157{bottom:517.680150px;}
.y60{bottom:517.682400px;}
.y7d{bottom:517.683150px;}
.ya5{bottom:517.684650px;}
.ye4{bottom:517.685400px;}
.yc1{bottom:517.686900px;}
.y179{bottom:517.689150px;}
.y3a{bottom:517.691400px;}
.y257{bottom:519.872550px;}
.y1cd{bottom:520.030050px;}
.y22d{bottom:530.031300px;}
.y202{bottom:530.113800px;}
.y256{bottom:534.126300px;}
.y1cc{bottom:534.283800px;}
.y16{bottom:537.858900px;}
.yd{bottom:537.896385px;}
.y13e{bottom:537.927150px;}
.yf9{bottom:537.927900px;}
.y156{bottom:537.929400px;}
.y5f{bottom:537.931650px;}
.y7c{bottom:537.932400px;}
.ya4{bottom:537.933900px;}
.ye3{bottom:537.934650px;}
.yc0{bottom:537.936150px;}
.y178{bottom:537.938400px;}
.y39{bottom:537.940650px;}
.y22c{bottom:544.285050px;}
.y201{bottom:544.367550px;}
.y255{bottom:552.632550px;}
.y1cb{bottom:552.790050px;}
.y15{bottom:558.113295px;}
.yc{bottom:558.150780px;}
.yf8{bottom:558.177150px;}
.y155{bottom:558.178650px;}
.y5e{bottom:558.180900px;}
.y7b{bottom:558.181650px;}
.ya3{bottom:558.183150px;}
.ye2{bottom:558.183900px;}
.ybf{bottom:558.185400px;}
.y177{bottom:558.187650px;}
.y38{bottom:558.189900px;}
.y200{bottom:558.621300px;}
.y22b{bottom:562.791300px;}
.y254{bottom:566.886300px;}
.y1ca{bottom:567.043800px;}
.y1ff{bottom:572.875050px;}
.y22a{bottom:577.045050px;}
.y14{bottom:578.367690px;}
.yb{bottom:578.405175px;}
.y154{bottom:578.427900px;}
.y5d{bottom:578.430150px;}
.y7a{bottom:578.430900px;}
.ya2{bottom:578.432400px;}
.ye1{bottom:578.433150px;}
.ybe{bottom:578.434650px;}
.y176{bottom:578.436900px;}
.y37{bottom:578.439150px;}
.y253{bottom:581.140050px;}
.y1c9{bottom:585.550050px;}
.y1fd{bottom:591.369450px;}
.y1fe{bottom:591.376950px;}
.y252{bottom:595.393800px;}
.y229{bottom:595.551300px;}
.y13{bottom:598.622085px;}
.ya{bottom:598.659570px;}
.yf7{bottom:598.677150px;}
.y5c{bottom:598.679400px;}
.y79{bottom:598.680150px;}
.ya1{bottom:598.681650px;}
.ye0{bottom:598.682400px;}
.ybd{bottom:598.683900px;}
.y175{bottom:598.686150px;}
.y36{bottom:598.688400px;}
.y1c8{bottom:599.803800px;}
.y1fc{bottom:605.623200px;}
.y251{bottom:609.647550px;}
.y228{bottom:609.805050px;}
.y1c7{bottom:618.310050px;}
.y12{bottom:618.876480px;}
.y9{bottom:618.913965px;}
.y5b{bottom:618.928650px;}
.y78{bottom:618.929400px;}
.ya0{bottom:618.930900px;}
.ydf{bottom:618.931650px;}
.ybc{bottom:618.933150px;}
.y174{bottom:618.935400px;}
.y35{bottom:618.937650px;}
.y1fa{bottom:619.603800px;}
.y1fb{bottom:619.876950px;}
.y250{bottom:623.901300px;}
.y227{bottom:624.058800px;}
.y1c6{bottom:632.563800px;}
.y1f9{bottom:633.857550px;}
.y226{bottom:638.312550px;}
.y11{bottom:639.130875px;}
.y8{bottom:639.168360px;}
.y5a{bottom:639.177900px;}
.y77{bottom:639.178650px;}
.y9f{bottom:639.180150px;}
.yde{bottom:639.180900px;}
.ybb{bottom:639.182400px;}
.y173{bottom:639.184650px;}
.y34{bottom:639.186900px;}
.y24f{bottom:642.407550px;}
.y1c5{bottom:646.817550px;}
.y1f8{bottom:652.363800px;}
.y225{bottom:652.566300px;}
.y24e{bottom:656.661300px;}
.y10{bottom:659.385270px;}
.y7{bottom:659.422755px;}
.y59{bottom:659.427150px;}
.y76{bottom:659.427900px;}
.y9e{bottom:659.429400px;}
.ydd{bottom:659.430150px;}
.yba{bottom:659.431650px;}
.y172{bottom:659.433900px;}
.y33{bottom:659.436150px;}
.y1c4{bottom:661.071300px;}
.y1f7{bottom:666.617550px;}
.y24d{bottom:670.915050px;}
.y224{bottom:671.072550px;}
.y1c3{bottom:675.325050px;}
.yf{bottom:679.639665px;}
.y6{bottom:679.677150px;}
.y9d{bottom:679.678650px;}
.ydc{bottom:679.679400px;}
.yb9{bottom:679.680900px;}
.y171{bottom:679.683150px;}
.y58{bottom:679.684650px;}
.y32{bottom:679.685400px;}
.y1f6{bottom:685.123800px;}
.y223{bottom:685.326300px;}
.y24c{bottom:689.421300px;}
.y1c2{bottom:689.578800px;}
.y26c{bottom:698.291550px;}
.y1f5{bottom:699.377550px;}
.y9c{bottom:699.927900px;}
.ydb{bottom:699.928650px;}
.yb8{bottom:699.930150px;}
.y170{bottom:699.932400px;}
.y57{bottom:699.933900px;}
.y31{bottom:699.934650px;}
.y24b{bottom:703.675050px;}
.y1c1{bottom:703.832550px;}
.y1f4{bottom:713.631300px;}
.y26b{bottom:713.886750px;}
.y222{bottom:718.086300px;}
.y5{bottom:720.177150px;}
.yda{bottom:720.177900px;}
.yb7{bottom:720.179400px;}
.y16f{bottom:720.181650px;}
.y56{bottom:720.183150px;}
.y30{bottom:720.183900px;}
.y24a{bottom:722.181300px;}
.y1c0{bottom:722.338800px;}
.y26a{bottom:729.481950px;}
.y1f3{bottom:732.137550px;}
.y221{bottom:732.340050px;}
.y249{bottom:736.435050px;}
.y1bf{bottom:736.592550px;}
.yd9{bottom:740.427150px;}
.yb6{bottom:740.428650px;}
.yd8{bottom:740.429400px;}
.y16e{bottom:740.430900px;}
.y55{bottom:740.432400px;}
.y2f{bottom:740.433150px;}
.y269{bottom:745.077150px;}
.y268{bottom:745.081950px;}
.y1f2{bottom:746.391300px;}
.y220{bottom:746.593800px;}
.y248{bottom:750.688800px;}
.y1be{bottom:750.846300px;}
.y1f1{bottom:760.645050px;}
.y267{bottom:760.677150px;}
.yb5{bottom:760.677900px;}
.yd7{bottom:760.678650px;}
.y16d{bottom:760.680150px;}
.y54{bottom:760.681650px;}
.y2e{bottom:760.682400px;}
.y21f{bottom:760.847550px;}
.y247{bottom:764.942550px;}
.y1bd{bottom:765.100050px;}
.y21e{bottom:775.101300px;}
.y1f0{bottom:779.151300px;}
.y246{bottom:779.196300px;}
.y1bc{bottom:779.353800px;}
.yb4{bottom:780.927150px;}
.yd6{bottom:780.927900px;}
.y16c{bottom:780.929400px;}
.y53{bottom:780.930900px;}
.y2d{bottom:780.931650px;}
.y266{bottom:781.977150px;}
.y1ef{bottom:793.405050px;}
.y245{bottom:793.450050px;}
.y1bb{bottom:793.607550px;}
.y4{bottom:801.177150px;}
.y16b{bottom:801.178650px;}
.y52{bottom:801.180150px;}
.y2c{bottom:801.180900px;}
.y1ee{bottom:807.658800px;}
.y1ba{bottom:807.861300px;}
.y244{bottom:811.956300px;}
.yb3{bottom:821.427150px;}
.y16a{bottom:821.427900px;}
.y51{bottom:821.429400px;}
.y2b{bottom:821.430150px;}
.y1ed{bottom:826.165050px;}
.y243{bottom:826.210050px;}
.y1b9{bottom:826.367550px;}
.y1ec{bottom:840.418800px;}
.y242{bottom:840.463800px;}
.y1b8{bottom:840.621300px;}
.y3{bottom:841.677150px;}
.y50{bottom:841.678650px;}
.y2a{bottom:841.679400px;}
.y1eb{bottom:854.672550px;}
.y241{bottom:854.717550px;}
.y1b7{bottom:854.875050px;}
.y265{bottom:861.927150px;}
.y4f{bottom:861.927900px;}
.y29{bottom:861.928650px;}
.y240{bottom:868.971300px;}
.y1ea{bottom:873.178800px;}
.y1b6{bottom:873.381300px;}
.y4e{bottom:882.177150px;}
.y75{bottom:882.177900px;}
.y1e9{bottom:887.432550px;}
.y23f{bottom:887.477550px;}
.y1b5{bottom:887.635050px;}
.y1e8{bottom:901.686300px;}
.y23e{bottom:901.731300px;}
.y1b4{bottom:901.888800px;}
.y2{bottom:902.427150px;}
.y28{bottom:954.674400px;}
.y1{bottom:954.717300px;}
.hc{height:26.152797px;}
.hd{height:32.678400px;}
.h11{height:32.985000px;}
.h9{height:34.444800px;}
.h2{height:36.831600px;}
.h13{height:37.776000px;}
.h10{height:40.545000px;}
.hb{height:41.040000px;}
.h14{height:41.085600px;}
.h12{height:41.610000px;}
.he{height:42.166800px;}
.ha{height:42.383040px;}
.h6{height:43.499064px;}
.h7{height:45.031980px;}
.h8{height:48.393000px;}
.h3{height:59.466000px;}
.hf{height:60.158280px;}
.h4{height:75.552000px;}
.h5{height:75.684000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x4{left:69.094500px;}
.x1{left:76.535400px;}
.xd{left:84.980850px;}
.x17{left:86.314950px;}
.xe{left:89.292113px;}
.x3{left:93.543300px;}
.x19{left:108.637800px;}
.x5{left:117.514500px;}
.x6{left:119.055150px;}
.x15{left:137.125950px;}
.x8{left:153.198150px;}
.x9{left:170.529000px;}
.xa{left:182.435400px;}
.x16{left:280.062150px;}
.xc{left:335.949300px;}
.x7{left:340.577550px;}
.x2{left:359.284755px;}
.xf{left:372.034988px;}
.xb{left:375.254250px;}
.x14{left:412.842450px;}
.x10{left:430.510200px;}
.x13{left:438.027600px;}
.x11{left:475.479150px;}
.x12{left:587.419950px;}
.x18{left:588.938100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:0.946667pt;}
.ls9{letter-spacing:-1.580800pt;}
.ls7{letter-spacing:-0.400000pt;}
.ls1{letter-spacing:-0.208000pt;}
.ls8{letter-spacing:-0.202667pt;}
.ls6{letter-spacing:-0.200000pt;}
.ls2{letter-spacing:-0.197333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.360000pt;}
.ls4{letter-spacing:2.280000pt;}
.ls3{letter-spacing:1356.324267pt;}
.ws0{word-spacing:-17.066667pt;}
.wsaf{word-spacing:-14.997333pt;}
.ws1{word-spacing:-9.826133pt;}
.ws2{word-spacing:-8.885333pt;}
.wsf6{word-spacing:-8.360000pt;}
.ws3{word-spacing:-8.112000pt;}
.wsd4{word-spacing:-8.000000pt;}
.ws162{word-spacing:-7.904000pt;}
.wsf4{word-spacing:-7.600000pt;}
.wsc0{word-spacing:-3.749333pt;}
.wsd6{word-spacing:-3.546667pt;}
.wsd0{word-spacing:-3.090667pt;}
.ws50{word-spacing:-2.938667pt;}
.wsa6{word-spacing:-2.888000pt;}
.ws3a{word-spacing:-2.837333pt;}
.wsa8{word-spacing:-2.786667pt;}
.wsa{word-spacing:-2.754453pt;}
.wscf{word-spacing:-2.736000pt;}
.wsb8{word-spacing:-2.685333pt;}
.ws8e{word-spacing:-2.634667pt;}
.wsc7{word-spacing:-2.584000pt;}
.wsd5{word-spacing:-2.533333pt;}
.ws47{word-spacing:-2.482667pt;}
.ws35{word-spacing:-2.381333pt;}
.ws48{word-spacing:-2.330667pt;}
.ws52{word-spacing:-2.280000pt;}
.wsb5{word-spacing:-2.229333pt;}
.ws87{word-spacing:-2.178667pt;}
.wsb0{word-spacing:-2.128000pt;}
.ws9c{word-spacing:-2.077333pt;}
.ws19{word-spacing:-2.026667pt;}
.ws51{word-spacing:-1.976000pt;}
.ws1f{word-spacing:-1.925333pt;}
.wsbe{word-spacing:-1.874667pt;}
.ws26{word-spacing:-1.824000pt;}
.ws38{word-spacing:-1.773333pt;}
.ws3c{word-spacing:-1.722667pt;}
.wsac{word-spacing:-1.672000pt;}
.ws3f{word-spacing:-1.621333pt;}
.ws56{word-spacing:-1.570667pt;}
.wsf8{word-spacing:-1.560000pt;}
.ws43{word-spacing:-1.520000pt;}
.wsbc{word-spacing:-1.469333pt;}
.ws37{word-spacing:-1.418667pt;}
.ws14c{word-spacing:-1.400000pt;}
.ws22{word-spacing:-1.368000pt;}
.ws28{word-spacing:-1.317333pt;}
.ws69{word-spacing:-1.266667pt;}
.ws39{word-spacing:-1.216000pt;}
.ws15f{word-spacing:-1.200000pt;}
.ws18{word-spacing:-1.165333pt;}
.ws89{word-spacing:-1.114667pt;}
.ws132{word-spacing:-1.040000pt;}
.wse2{word-spacing:-1.000000pt;}
.wsbd{word-spacing:-0.962667pt;}
.wsc9{word-spacing:-0.912000pt;}
.ws7e{word-spacing:-0.861333pt;}
.ws2f{word-spacing:-0.810667pt;}
.wse8{word-spacing:-0.800000pt;}
.ws9d{word-spacing:-0.760000pt;}
.ws2c{word-spacing:-0.709333pt;}
.ws80{word-spacing:-0.658667pt;}
.wsfe{word-spacing:-0.640000pt;}
.ws36{word-spacing:-0.608000pt;}
.ws91{word-spacing:-0.557333pt;}
.wse6{word-spacing:-0.520000pt;}
.ws25{word-spacing:-0.506667pt;}
.ws4d{word-spacing:-0.456000pt;}
.ws2b{word-spacing:-0.405333pt;}
.ws13e{word-spacing:-0.400000pt;}
.ws14{word-spacing:-0.399840pt;}
.wsff{word-spacing:-0.360000pt;}
.ws16{word-spacing:-0.354667pt;}
.wsdd{word-spacing:-0.320000pt;}
.wscd{word-spacing:-0.253333pt;}
.wsbf{word-spacing:-0.202667pt;}
.ws11f{word-spacing:-0.160000pt;}
.ws42{word-spacing:-0.152000pt;}
.ws149{word-spacing:-0.120000pt;}
.ws8c{word-spacing:-0.101333pt;}
.ws7{word-spacing:-0.088853pt;}
.ws17{word-spacing:-0.050667pt;}
.wsf5{word-spacing:-0.040000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa7{word-spacing:0.050667pt;}
.ws82{word-spacing:0.101333pt;}
.ws3b{word-spacing:0.202667pt;}
.ws46{word-spacing:0.253333pt;}
.ws159{word-spacing:0.280000pt;}
.ws54{word-spacing:0.304000pt;}
.ws138{word-spacing:0.320000pt;}
.wsb9{word-spacing:0.354667pt;}
.wse7{word-spacing:0.360000pt;}
.ws106{word-spacing:0.400000pt;}
.ws6c{word-spacing:0.405333pt;}
.ws155{word-spacing:0.440000pt;}
.ws29{word-spacing:0.506667pt;}
.ws123{word-spacing:0.520000pt;}
.ws7b{word-spacing:0.557333pt;}
.ws72{word-spacing:0.658667pt;}
.ws8f{word-spacing:0.709333pt;}
.ws1a{word-spacing:0.760000pt;}
.ws53{word-spacing:0.810667pt;}
.ws161{word-spacing:0.840000pt;}
.ws6{word-spacing:0.844107pt;}
.ws31{word-spacing:0.861333pt;}
.wsf3{word-spacing:0.880000pt;}
.ws70{word-spacing:0.912000pt;}
.ws165{word-spacing:0.932267pt;}
.ws5f{word-spacing:0.962667pt;}
.wse{word-spacing:0.977387pt;}
.ws62{word-spacing:1.013333pt;}
.wse0{word-spacing:1.040000pt;}
.ws2d{word-spacing:1.064000pt;}
.ws152{word-spacing:1.080000pt;}
.ws1d{word-spacing:1.114667pt;}
.ws9{word-spacing:1.155093pt;}
.ws111{word-spacing:1.160000pt;}
.wsba{word-spacing:1.165333pt;}
.wsd{word-spacing:1.199520pt;}
.ws14a{word-spacing:1.200000pt;}
.wsb6{word-spacing:1.216000pt;}
.ws5a{word-spacing:1.266667pt;}
.ws93{word-spacing:1.317333pt;}
.ws8b{word-spacing:1.368000pt;}
.ws90{word-spacing:1.418667pt;}
.wsfb{word-spacing:1.440000pt;}
.ws4f{word-spacing:1.469333pt;}
.ws12b{word-spacing:1.480000pt;}
.wsb3{word-spacing:1.520000pt;}
.ws164{word-spacing:1.540267pt;}
.wsd1{word-spacing:1.570667pt;}
.ws158{word-spacing:1.600000pt;}
.ws41{word-spacing:1.621333pt;}
.ws10{word-spacing:1.643787pt;}
.wsad{word-spacing:1.672000pt;}
.wsd8{word-spacing:1.720000pt;}
.ws20{word-spacing:1.722667pt;}
.ws8d{word-spacing:1.773333pt;}
.ws1e{word-spacing:1.824000pt;}
.ws121{word-spacing:1.840000pt;}
.ws74{word-spacing:1.874667pt;}
.wsf9{word-spacing:1.880000pt;}
.ws4e{word-spacing:1.925333pt;}
.ws109{word-spacing:1.960000pt;}
.ws83{word-spacing:1.976000pt;}
.ws5c{word-spacing:2.026667pt;}
.wse1{word-spacing:2.040000pt;}
.ws5d{word-spacing:2.077333pt;}
.ws68{word-spacing:2.128000pt;}
.ws110{word-spacing:2.160000pt;}
.ws5b{word-spacing:2.178667pt;}
.ws9e{word-spacing:2.229333pt;}
.wsf7{word-spacing:2.240000pt;}
.wsb4{word-spacing:2.280000pt;}
.ws3e{word-spacing:2.330667pt;}
.ws147{word-spacing:2.360000pt;}
.ws84{word-spacing:2.381333pt;}
.ws130{word-spacing:2.400000pt;}
.ws63{word-spacing:2.432000pt;}
.ws92{word-spacing:2.482667pt;}
.ws15d{word-spacing:2.520000pt;}
.ws9b{word-spacing:2.533333pt;}
.ws33{word-spacing:2.584000pt;}
.ws145{word-spacing:2.600000pt;}
.ws7f{word-spacing:2.634667pt;}
.ws4c{word-spacing:2.685333pt;}
.ws60{word-spacing:2.736000pt;}
.ws12f{word-spacing:2.760000pt;}
.wsbb{word-spacing:2.786667pt;}
.ws11{word-spacing:2.798880pt;}
.ws139{word-spacing:2.800000pt;}
.ws7d{word-spacing:2.837333pt;}
.ws163{word-spacing:2.877867pt;}
.ws98{word-spacing:2.888000pt;}
.ws12c{word-spacing:2.920000pt;}
.ws5{word-spacing:2.932160pt;}
.ws7a{word-spacing:2.938667pt;}
.ws44{word-spacing:2.989333pt;}
.wse4{word-spacing:3.000000pt;}
.wsf{word-spacing:3.021013pt;}
.ws34{word-spacing:3.040000pt;}
.ws135{word-spacing:3.080000pt;}
.ws76{word-spacing:3.090667pt;}
.ws4b{word-spacing:3.141333pt;}
.wsdc{word-spacing:3.160000pt;}
.ws71{word-spacing:3.192000pt;}
.ws12a{word-spacing:3.240000pt;}
.ws5e{word-spacing:3.242667pt;}
.ws21{word-spacing:3.293333pt;}
.ws136{word-spacing:3.320000pt;}
.ws85{word-spacing:3.344000pt;}
.ws142{word-spacing:3.360000pt;}
.wsa9{word-spacing:3.394667pt;}
.ws4a{word-spacing:3.445333pt;}
.ws153{word-spacing:3.480000pt;}
.ws3d{word-spacing:3.496000pt;}
.ws61{word-spacing:3.597333pt;}
.wsc8{word-spacing:3.648000pt;}
.ws157{word-spacing:3.680000pt;}
.ws59{word-spacing:3.698667pt;}
.ws78{word-spacing:3.749333pt;}
.ws40{word-spacing:3.800000pt;}
.wsa5{word-spacing:3.850667pt;}
.wsc{word-spacing:3.865120pt;}
.ws14d{word-spacing:3.880000pt;}
.wsd7{word-spacing:3.901333pt;}
.ws107{word-spacing:3.920000pt;}
.ws77{word-spacing:4.002667pt;}
.wsa4{word-spacing:4.053333pt;}
.wsdf{word-spacing:4.080000pt;}
.ws30{word-spacing:4.104000pt;}
.ws27{word-spacing:4.154667pt;}
.ws115{word-spacing:4.160000pt;}
.ws73{word-spacing:4.205333pt;}
.ws45{word-spacing:4.306667pt;}
.ws12e{word-spacing:4.320000pt;}
.ws15{word-spacing:4.357333pt;}
.ws15c{word-spacing:4.360000pt;}
.ws112{word-spacing:4.400000pt;}
.wsaa{word-spacing:4.408000pt;}
.ws2e{word-spacing:4.458667pt;}
.ws118{word-spacing:4.480000pt;}
.ws166{word-spacing:4.499200pt;}
.ws65{word-spacing:4.509333pt;}
.ws6f{word-spacing:4.560000pt;}
.wsab{word-spacing:4.610667pt;}
.wsa2{word-spacing:4.661333pt;}
.ws58{word-spacing:4.712000pt;}
.ws119{word-spacing:4.720000pt;}
.ws97{word-spacing:4.762667pt;}
.ws15e{word-spacing:4.800000pt;}
.ws96{word-spacing:4.813333pt;}
.ws32{word-spacing:4.864000pt;}
.ws8a{word-spacing:4.914667pt;}
.ws24{word-spacing:4.965333pt;}
.ws6a{word-spacing:5.016000pt;}
.ws127{word-spacing:5.040000pt;}
.ws66{word-spacing:5.066667pt;}
.ws7c{word-spacing:5.117333pt;}
.wsc2{word-spacing:5.168000pt;}
.ws13{word-spacing:5.197920pt;}
.ws79{word-spacing:5.269333pt;}
.wsae{word-spacing:5.320000pt;}
.ws14f{word-spacing:5.360000pt;}
.ws2a{word-spacing:5.370667pt;}
.ws81{word-spacing:5.472000pt;}
.wse5{word-spacing:5.520000pt;}
.ws6b{word-spacing:5.522667pt;}
.ws94{word-spacing:5.573333pt;}
.ws49{word-spacing:5.624000pt;}
.ws1c{word-spacing:5.674667pt;}
.ws141{word-spacing:5.680000pt;}
.ws11e{word-spacing:5.720000pt;}
.wsca{word-spacing:5.725333pt;}
.ws120{word-spacing:5.760000pt;}
.wsd2{word-spacing:5.776000pt;}
.ws9a{word-spacing:5.826667pt;}
.ws88{word-spacing:5.877333pt;}
.ws12d{word-spacing:5.920000pt;}
.ws57{word-spacing:5.928000pt;}
.wsd3{word-spacing:5.978667pt;}
.ws75{word-spacing:6.232000pt;}
.ws143{word-spacing:6.280000pt;}
.ws9f{word-spacing:6.282667pt;}
.ws67{word-spacing:6.333333pt;}
.wsa3{word-spacing:6.384000pt;}
.ws114{word-spacing:6.400000pt;}
.ws137{word-spacing:6.440000pt;}
.wsde{word-spacing:6.480000pt;}
.ws12{word-spacing:6.486293pt;}
.ws55{word-spacing:6.536000pt;}
.wsb2{word-spacing:6.586667pt;}
.ws131{word-spacing:6.600000pt;}
.wsef{word-spacing:6.680000pt;}
.wsa0{word-spacing:6.738667pt;}
.ws11d{word-spacing:6.760000pt;}
.wse3{word-spacing:6.800000pt;}
.ws1b{word-spacing:6.840000pt;}
.ws146{word-spacing:6.920000pt;}
.wscc{word-spacing:6.992000pt;}
.wsc4{word-spacing:7.042667pt;}
.wsa1{word-spacing:7.093333pt;}
.ws23{word-spacing:7.144000pt;}
.ws108{word-spacing:7.280000pt;}
.ws95{word-spacing:7.397333pt;}
.wsea{word-spacing:7.400000pt;}
.ws8{word-spacing:7.419253pt;}
.ws15b{word-spacing:7.560000pt;}
.ws6d{word-spacing:7.650667pt;}
.ws124{word-spacing:7.720000pt;}
.ws86{word-spacing:7.802667pt;}
.ws10c{word-spacing:7.840000pt;}
.ws64{word-spacing:7.853333pt;}
.ws101{word-spacing:7.880000pt;}
.ws6e{word-spacing:7.904000pt;}
.ws10e{word-spacing:8.040000pt;}
.wsb7{word-spacing:8.056000pt;}
.ws99{word-spacing:8.106667pt;}
.wsf2{word-spacing:8.160000pt;}
.ws14e{word-spacing:8.240000pt;}
.wsc6{word-spacing:8.258667pt;}
.wsb{word-spacing:8.352213pt;}
.wscb{word-spacing:8.461333pt;}
.wsce{word-spacing:8.512000pt;}
.ws15a{word-spacing:8.520000pt;}
.ws104{word-spacing:8.680000pt;}
.ws117{word-spacing:8.720000pt;}
.wsc3{word-spacing:8.765333pt;}
.wsc5{word-spacing:8.816000pt;}
.wsfd{word-spacing:8.960000pt;}
.wsc1{word-spacing:9.018667pt;}
.wsec{word-spacing:9.160000pt;}
.ws160{word-spacing:9.200000pt;}
.ws11a{word-spacing:9.240000pt;}
.ws11b{word-spacing:9.400000pt;}
.ws151{word-spacing:9.560000pt;}
.ws150{word-spacing:9.640000pt;}
.ws102{word-spacing:9.720000pt;}
.ws129{word-spacing:9.920000pt;}
.ws10f{word-spacing:9.960000pt;}
.wseb{word-spacing:10.000000pt;}
.ws116{word-spacing:10.960000pt;}
.ws10a{word-spacing:11.040000pt;}
.wse9{word-spacing:11.120000pt;}
.wsf0{word-spacing:11.200000pt;}
.wsb1{word-spacing:11.298667pt;}
.ws148{word-spacing:11.320000pt;}
.ws103{word-spacing:11.360000pt;}
.wsfc{word-spacing:11.760000pt;}
.wsf1{word-spacing:12.680000pt;}
.wsee{word-spacing:12.880000pt;}
.ws14b{word-spacing:12.960000pt;}
.ws13b{word-spacing:13.240000pt;}
.ws144{word-spacing:13.360000pt;}
.ws11c{word-spacing:13.520000pt;}
.wsdb{word-spacing:13.920000pt;}
.ws122{word-spacing:14.280000pt;}
.ws13f{word-spacing:14.360000pt;}
.ws113{word-spacing:14.680000pt;}
.wsd9{word-spacing:14.720000pt;}
.ws13d{word-spacing:15.000000pt;}
.ws100{word-spacing:15.640000pt;}
.ws154{word-spacing:16.560000pt;}
.wsfa{word-spacing:16.680000pt;}
.ws105{word-spacing:16.720000pt;}
.ws13a{word-spacing:16.920000pt;}
.ws126{word-spacing:17.600000pt;}
.ws128{word-spacing:17.720000pt;}
.ws140{word-spacing:18.680000pt;}
.ws10d{word-spacing:18.760000pt;}
.ws13c{word-spacing:19.320000pt;}
.ws134{word-spacing:20.440000pt;}
.wsda{word-spacing:20.600000pt;}
.ws133{word-spacing:21.760000pt;}
.ws156{word-spacing:22.040000pt;}
.ws125{word-spacing:23.120000pt;}
.ws10b{word-spacing:29.800000pt;}
.wsed{word-spacing:41.760000pt;}
._13{margin-left:-11.633067pt;}
._e{margin-left:-8.333333pt;}
._b{margin-left:-7.399733pt;}
._7{margin-left:-6.504267pt;}
._9{margin-left:-5.573333pt;}
._6{margin-left:-4.661333pt;}
._5{margin-left:-3.331627pt;}
._8{margin-left:-1.873333pt;}
._2{margin-left:-0.938667pt;}
._1{width:1.114667pt;}
._3{width:2.394667pt;}
._4{width:4.090667pt;}
._c{width:5.630400pt;}
._f{width:6.586667pt;}
._d{width:8.236800pt;}
._11{width:13.001333pt;}
._12{width:14.325333pt;}
._10{width:21.405333pt;}
._a{width:49.136275pt;}
._0{width:1845.405333pt;}
.fs8{font-size:29.538667pt;}
.fs9{font-size:39.466667pt;}
.fsb{font-size:40.000000pt;}
.fsd{font-size:40.533333pt;}
.fs0{font-size:41.600000pt;}
.fs7{font-size:41.813333pt;}
.fsc{font-size:42.666667pt;}
.fs5{font-size:44.426667pt;}
.fs4{font-size:49.130667pt;}
.fs6{font-size:50.666667pt;}
.fs1{font-size:58.666667pt;}
.fsa{font-size:67.946667pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:52.291067pt;}
.y10f{bottom:100.157467pt;}
.y4d{bottom:100.157600pt;}
.y10e{bottom:100.158133pt;}
.y13d{bottom:100.159467pt;}
.yf6{bottom:100.160800pt;}
.y169{bottom:100.161467pt;}
.y91{bottom:100.164133pt;}
.yb2{bottom:100.167467pt;}
.y74{bottom:100.168800pt;}
.y123{bottom:100.170133pt;}
.y153{bottom:100.171467pt;}
.yd5{bottom:100.179467pt;}
.y19c{bottom:107.622667pt;}
.y21d{bottom:107.869867pt;}
.y1e7{bottom:113.928933pt;}
.y10d{bottom:118.157467pt;}
.y13c{bottom:118.158800pt;}
.yf5{bottom:118.160133pt;}
.y168{bottom:118.160800pt;}
.y26{bottom:118.162133pt;}
.y90{bottom:118.163467pt;}
.yb1{bottom:118.166800pt;}
.y73{bottom:118.168133pt;}
.y122{bottom:118.169467pt;}
.y152{bottom:118.170800pt;}
.y9b{bottom:118.175467pt;}
.yd4{bottom:118.178800pt;}
.y19b{bottom:120.292667pt;}
.y21c{bottom:120.539867pt;}
.y1b3{bottom:124.103600pt;}
.y1e6{bottom:126.598933pt;}
.y19a{bottom:132.962667pt;}
.y13b{bottom:136.158133pt;}
.yf4{bottom:136.159467pt;}
.y167{bottom:136.160133pt;}
.y25{bottom:136.161467pt;}
.y8f{bottom:136.162800pt;}
.y10c{bottom:136.163467pt;}
.yb0{bottom:136.166133pt;}
.y4c{bottom:136.166800pt;}
.y72{bottom:136.167467pt;}
.y121{bottom:136.168800pt;}
.y151{bottom:136.170133pt;}
.y9a{bottom:136.174800pt;}
.yd3{bottom:136.178133pt;}
.y1b2{bottom:136.773600pt;}
.y21b{bottom:136.979333pt;}
.y1e5{bottom:139.268933pt;}
.y199{bottom:149.412667pt;}
.y1b1{bottom:149.443600pt;}
.y21a{bottom:149.649333pt;}
.y1e4{bottom:151.938933pt;}
.y13a{bottom:154.157467pt;}
.yf3{bottom:154.158800pt;}
.y166{bottom:154.159467pt;}
.y24{bottom:154.160800pt;}
.y8e{bottom:154.162133pt;}
.y10b{bottom:154.162800pt;}
.yaf{bottom:154.165467pt;}
.y4b{bottom:154.166133pt;}
.y71{bottom:154.166800pt;}
.y120{bottom:154.168133pt;}
.y150{bottom:154.169467pt;}
.y99{bottom:154.174133pt;}
.yd2{bottom:154.177467pt;}
.y198{bottom:162.082667pt;}
.y218{bottom:162.312267pt;}
.y219{bottom:162.319333pt;}
.y1e3{bottom:164.608933pt;}
.y1b0{bottom:165.893600pt;}
.yf2{bottom:172.158133pt;}
.y165{bottom:172.158800pt;}
.y23{bottom:172.160133pt;}
.y185{bottom:172.160800pt;}
.y8d{bottom:172.161467pt;}
.y10a{bottom:172.162133pt;}
.yae{bottom:172.164800pt;}
.y4a{bottom:172.165467pt;}
.y70{bottom:172.166133pt;}
.y11f{bottom:172.167467pt;}
.y14f{bottom:172.168800pt;}
.y98{bottom:172.173467pt;}
.yd1{bottom:172.176800pt;}
.y139{bottom:172.180800pt;}
.y197{bottom:174.752667pt;}
.y1af{bottom:178.563600pt;}
.y217{bottom:178.762267pt;}
.y1e2{bottom:181.058933pt;}
.y196{bottom:187.422667pt;}
.yf1{bottom:190.157467pt;}
.y164{bottom:190.158133pt;}
.y22{bottom:190.159467pt;}
.y184{bottom:190.160133pt;}
.y8c{bottom:190.160800pt;}
.y109{bottom:190.161467pt;}
.yad{bottom:190.164133pt;}
.y49{bottom:190.164800pt;}
.y6f{bottom:190.165467pt;}
.y11e{bottom:190.166800pt;}
.y14e{bottom:190.168133pt;}
.y97{bottom:190.172800pt;}
.yd0{bottom:190.176133pt;}
.y138{bottom:190.180133pt;}
.y1ae{bottom:191.233600pt;}
.y216{bottom:191.432267pt;}
.y1e1{bottom:193.728933pt;}
.y195{bottom:200.092667pt;}
.y1e0{bottom:206.398933pt;}
.y1ad{bottom:207.683600pt;}
.y215{bottom:207.875067pt;}
.y163{bottom:208.157467pt;}
.y21{bottom:208.158800pt;}
.y183{bottom:208.159467pt;}
.y8b{bottom:208.160133pt;}
.y108{bottom:208.160800pt;}
.yf0{bottom:208.162800pt;}
.yac{bottom:208.163467pt;}
.y48{bottom:208.164133pt;}
.y6e{bottom:208.164800pt;}
.y11d{bottom:208.166133pt;}
.y14d{bottom:208.167467pt;}
.y96{bottom:208.172133pt;}
.ycf{bottom:208.175467pt;}
.y137{bottom:208.179467pt;}
.y194{bottom:216.542667pt;}
.y1df{bottom:219.068933pt;}
.y1ac{bottom:220.353600pt;}
.y214{bottom:220.545067pt;}
.y12b{bottom:226.157467pt;}
.y20{bottom:226.158133pt;}
.y182{bottom:226.158800pt;}
.y8a{bottom:226.159467pt;}
.y107{bottom:226.160133pt;}
.yef{bottom:226.162133pt;}
.yab{bottom:226.162800pt;}
.y47{bottom:226.163467pt;}
.y6d{bottom:226.164133pt;}
.y11c{bottom:226.165467pt;}
.y14c{bottom:226.166800pt;}
.y162{bottom:226.168800pt;}
.y95{bottom:226.171467pt;}
.yce{bottom:226.174800pt;}
.y136{bottom:226.178800pt;}
.y193{bottom:229.212667pt;}
.y1de{bottom:231.738933pt;}
.y1ab{bottom:233.023600pt;}
.y213{bottom:236.922267pt;}
.y1f{bottom:244.157467pt;}
.y181{bottom:244.158133pt;}
.y89{bottom:244.158800pt;}
.y106{bottom:244.159467pt;}
.yee{bottom:244.161467pt;}
.yaa{bottom:244.162133pt;}
.y46{bottom:244.162800pt;}
.y6c{bottom:244.163467pt;}
.y11b{bottom:244.164800pt;}
.y14b{bottom:244.166133pt;}
.y161{bottom:244.168133pt;}
.y94{bottom:244.170800pt;}
.ycd{bottom:244.174133pt;}
.y135{bottom:244.178133pt;}
.y1dd{bottom:244.408933pt;}
.y192{bottom:245.662667pt;}
.y1aa{bottom:245.693600pt;}
.y212{bottom:249.592267pt;}
.y23d{bottom:257.078933pt;}
.y191{bottom:258.332667pt;}
.y1a9{bottom:258.363600pt;}
.y1dc{bottom:260.858933pt;}
.y180{bottom:262.157467pt;}
.y88{bottom:262.158133pt;}
.y105{bottom:262.158800pt;}
.yed{bottom:262.160800pt;}
.y1e{bottom:262.161467pt;}
.y45{bottom:262.162133pt;}
.y6b{bottom:262.162800pt;}
.y11a{bottom:262.164133pt;}
.y14a{bottom:262.165467pt;}
.y93{bottom:262.170133pt;}
.ycc{bottom:262.173467pt;}
.y134{bottom:262.177467pt;}
.y211{bottom:262.262267pt;}
.y23c{bottom:269.748933pt;}
.y190{bottom:271.002667pt;}
.y1db{bottom:273.528933pt;}
.y1a7{bottom:274.806933pt;}
.y1a8{bottom:274.813600pt;}
.y210{bottom:274.932267pt;}
.y87{bottom:280.157467pt;}
.y104{bottom:280.158133pt;}
.yec{bottom:280.160133pt;}
.y1d{bottom:280.160800pt;}
.y44{bottom:280.161467pt;}
.y6a{bottom:280.162133pt;}
.y119{bottom:280.163467pt;}
.y149{bottom:280.164800pt;}
.y160{bottom:280.166800pt;}
.y92{bottom:280.169467pt;}
.y12a{bottom:280.171467pt;}
.ycb{bottom:280.172800pt;}
.y133{bottom:280.176800pt;}
.y23b{bottom:282.418933pt;}
.y264{bottom:282.515600pt;}
.y18f{bottom:283.672667pt;}
.y1da{bottom:286.198933pt;}
.y1a6{bottom:287.476933pt;}
.y20f{bottom:291.382267pt;}
.y263{bottom:295.185600pt;}
.y103{bottom:298.157467pt;}
.yeb{bottom:298.159467pt;}
.y1c{bottom:298.160133pt;}
.y43{bottom:298.160800pt;}
.y69{bottom:298.161467pt;}
.y118{bottom:298.162800pt;}
.y148{bottom:298.164133pt;}
.y15f{bottom:298.166133pt;}
.y86{bottom:298.168800pt;}
.y129{bottom:298.170800pt;}
.yca{bottom:298.172133pt;}
.y132{bottom:298.176133pt;}
.y23a{bottom:298.868933pt;}
.y1a4{bottom:300.052667pt;}
.y18e{bottom:300.122667pt;}
.y1a5{bottom:300.146933pt;}
.y1d9{bottom:302.648933pt;}
.y20e{bottom:304.052267pt;}
.y239{bottom:311.538933pt;}
.y262{bottom:311.635600pt;}
.y18d{bottom:312.792667pt;}
.y1d8{bottom:315.318933pt;}
.yea{bottom:316.158800pt;}
.y1b{bottom:316.159467pt;}
.y42{bottom:316.160133pt;}
.y68{bottom:316.160800pt;}
.y117{bottom:316.162133pt;}
.y147{bottom:316.163467pt;}
.y102{bottom:316.164133pt;}
.y15e{bottom:316.165467pt;}
.y85{bottom:316.168133pt;}
.y128{bottom:316.170133pt;}
.yc9{bottom:316.171467pt;}
.y131{bottom:316.175467pt;}
.y1a3{bottom:316.502667pt;}
.y20d{bottom:316.722267pt;}
.y238{bottom:324.208933pt;}
.y261{bottom:324.305600pt;}
.y1d7{bottom:327.988933pt;}
.y1a2{bottom:329.172667pt;}
.y18c{bottom:329.242667pt;}
.y20c{bottom:329.392267pt;}
.ye9{bottom:334.158133pt;}
.y1a{bottom:334.158800pt;}
.y41{bottom:334.159467pt;}
.y67{bottom:334.160133pt;}
.y116{bottom:334.161467pt;}
.y146{bottom:334.162800pt;}
.y101{bottom:334.163467pt;}
.y15d{bottom:334.164800pt;}
.y84{bottom:334.167467pt;}
.y127{bottom:334.169467pt;}
.yc8{bottom:334.170800pt;}
.y130{bottom:334.174800pt;}
.y237{bottom:336.878933pt;}
.y260{bottom:336.975600pt;}
.y1a1{bottom:341.842667pt;}
.y18b{bottom:341.912667pt;}
.y20b{bottom:342.062267pt;}
.y1d6{bottom:344.438933pt;}
.ye8{bottom:352.157467pt;}
.y19{bottom:352.158133pt;}
.y40{bottom:352.158800pt;}
.y66{bottom:352.159467pt;}
.y115{bottom:352.160800pt;}
.y145{bottom:352.162133pt;}
.y100{bottom:352.162800pt;}
.y15c{bottom:352.164133pt;}
.y83{bottom:352.166800pt;}
.y126{bottom:352.168800pt;}
.yc7{bottom:352.170133pt;}
.y17f{bottom:352.172133pt;}
.y12f{bottom:352.174133pt;}
.y236{bottom:353.328933pt;}
.y25f{bottom:353.425600pt;}
.y18a{bottom:354.582667pt;}
.y1d5{bottom:357.108933pt;}
.y1a0{bottom:358.292667pt;}
.y20a{bottom:358.512267pt;}
.y235{bottom:365.998933pt;}
.y25e{bottom:366.095600pt;}
.y1d4{bottom:369.778933pt;}
.y18{bottom:370.157467pt;}
.y3f{bottom:370.158133pt;}
.y65{bottom:370.158800pt;}
.y114{bottom:370.160133pt;}
.y144{bottom:370.161467pt;}
.yff{bottom:370.162133pt;}
.y15b{bottom:370.163467pt;}
.y82{bottom:370.166133pt;}
.y125{bottom:370.168133pt;}
.yc6{bottom:370.169467pt;}
.y17e{bottom:370.171467pt;}
.y12e{bottom:370.173467pt;}
.y19f{bottom:370.962667pt;}
.y189{bottom:371.032667pt;}
.y209{bottom:371.182267pt;}
.y234{bottom:378.668933pt;}
.y25d{bottom:378.765600pt;}
.y1d3{bottom:382.448933pt;}
.y19e{bottom:383.632667pt;}
.y188{bottom:383.702667pt;}
.y208{bottom:383.852267pt;}
.y3e{bottom:388.157467pt;}
.y64{bottom:388.158133pt;}
.y113{bottom:388.159467pt;}
.y143{bottom:388.160800pt;}
.yfe{bottom:388.161467pt;}
.y15a{bottom:388.162800pt;}
.y81{bottom:388.165467pt;}
.ya9{bottom:388.166800pt;}
.y124{bottom:388.167467pt;}
.yc5{bottom:388.168800pt;}
.y17d{bottom:388.170800pt;}
.y12d{bottom:388.172800pt;}
.y233{bottom:391.338933pt;}
.y25c{bottom:391.435600pt;}
.y1d2{bottom:395.118933pt;}
.y19d{bottom:396.302667pt;}
.y187{bottom:396.372667pt;}
.y207{bottom:400.302267pt;}
.y232{bottom:404.008933pt;}
.y63{bottom:406.157467pt;}
.y112{bottom:406.158800pt;}
.y142{bottom:406.160133pt;}
.yfd{bottom:406.160800pt;}
.y159{bottom:406.162133pt;}
.y80{bottom:406.164800pt;}
.ya8{bottom:406.166133pt;}
.ye7{bottom:406.166800pt;}
.yc4{bottom:406.168133pt;}
.y17c{bottom:406.170133pt;}
.y12c{bottom:406.172133pt;}
.y1d1{bottom:407.788933pt;}
.y25b{bottom:407.885600pt;}
.y206{bottom:412.972267pt;}
.y231{bottom:416.678933pt;}
.y25a{bottom:420.318933pt;}
.y186{bottom:424.157467pt;}
.y111{bottom:424.158133pt;}
.y141{bottom:424.159467pt;}
.yfc{bottom:424.160133pt;}
.y158{bottom:424.161467pt;}
.y62{bottom:424.163467pt;}
.y7f{bottom:424.164133pt;}
.ya7{bottom:424.165467pt;}
.ye6{bottom:424.166133pt;}
.yc3{bottom:424.167467pt;}
.y17b{bottom:424.169467pt;}
.y3c{bottom:424.171467pt;}
.y1d0{bottom:424.238933pt;}
.y205{bottom:425.642267pt;}
.y3d{bottom:428.375467pt;}
.y259{bottom:432.988933pt;}
.y230{bottom:433.128933pt;}
.y1cf{bottom:436.908933pt;}
.y204{bottom:442.092267pt;}
.y110{bottom:442.157467pt;}
.y140{bottom:442.158800pt;}
.yfb{bottom:442.159467pt;}
.y61{bottom:442.162800pt;}
.y7e{bottom:442.163467pt;}
.ya6{bottom:442.164800pt;}
.ye5{bottom:442.165467pt;}
.yc2{bottom:442.166800pt;}
.y17a{bottom:442.168800pt;}
.y3b{bottom:442.170800pt;}
.y22f{bottom:445.798933pt;}
.y258{bottom:449.438933pt;}
.y1ce{bottom:449.578933pt;}
.y203{bottom:454.762267pt;}
.y22e{bottom:458.468933pt;}
.y17{bottom:460.092893pt;}
.ye{bottom:460.126213pt;}
.y13f{bottom:460.158133pt;}
.yfa{bottom:460.158800pt;}
.y157{bottom:460.160133pt;}
.y60{bottom:460.162133pt;}
.y7d{bottom:460.162800pt;}
.ya5{bottom:460.164133pt;}
.ye4{bottom:460.164800pt;}
.yc1{bottom:460.166133pt;}
.y179{bottom:460.168133pt;}
.y3a{bottom:460.170133pt;}
.y257{bottom:462.108933pt;}
.y1cd{bottom:462.248933pt;}
.y22d{bottom:471.138933pt;}
.y202{bottom:471.212267pt;}
.y256{bottom:474.778933pt;}
.y1cc{bottom:474.918933pt;}
.y16{bottom:478.096800pt;}
.yd{bottom:478.130120pt;}
.y13e{bottom:478.157467pt;}
.yf9{bottom:478.158133pt;}
.y156{bottom:478.159467pt;}
.y5f{bottom:478.161467pt;}
.y7c{bottom:478.162133pt;}
.ya4{bottom:478.163467pt;}
.ye3{bottom:478.164133pt;}
.yc0{bottom:478.165467pt;}
.y178{bottom:478.167467pt;}
.y39{bottom:478.169467pt;}
.y22c{bottom:483.808933pt;}
.y201{bottom:483.882267pt;}
.y255{bottom:491.228933pt;}
.y1cb{bottom:491.368933pt;}
.y15{bottom:496.100707pt;}
.yc{bottom:496.134027pt;}
.yf8{bottom:496.157467pt;}
.y155{bottom:496.158800pt;}
.y5e{bottom:496.160800pt;}
.y7b{bottom:496.161467pt;}
.ya3{bottom:496.162800pt;}
.ye2{bottom:496.163467pt;}
.ybf{bottom:496.164800pt;}
.y177{bottom:496.166800pt;}
.y38{bottom:496.168800pt;}
.y200{bottom:496.552267pt;}
.y22b{bottom:500.258933pt;}
.y254{bottom:503.898933pt;}
.y1ca{bottom:504.038933pt;}
.y1ff{bottom:509.222267pt;}
.y22a{bottom:512.928933pt;}
.y14{bottom:514.104613pt;}
.yb{bottom:514.137933pt;}
.y154{bottom:514.158133pt;}
.y5d{bottom:514.160133pt;}
.y7a{bottom:514.160800pt;}
.ya2{bottom:514.162133pt;}
.ye1{bottom:514.162800pt;}
.ybe{bottom:514.164133pt;}
.y176{bottom:514.166133pt;}
.y37{bottom:514.168133pt;}
.y253{bottom:516.568933pt;}
.y1c9{bottom:520.488933pt;}
.y1fd{bottom:525.661733pt;}
.y1fe{bottom:525.668400pt;}
.y252{bottom:529.238933pt;}
.y229{bottom:529.378933pt;}
.y13{bottom:532.108520pt;}
.ya{bottom:532.141840pt;}
.yf7{bottom:532.157467pt;}
.y5c{bottom:532.159467pt;}
.y79{bottom:532.160133pt;}
.ya1{bottom:532.161467pt;}
.ye0{bottom:532.162133pt;}
.ybd{bottom:532.163467pt;}
.y175{bottom:532.165467pt;}
.y36{bottom:532.167467pt;}
.y1c8{bottom:533.158933pt;}
.y1fc{bottom:538.331733pt;}
.y251{bottom:541.908933pt;}
.y228{bottom:542.048933pt;}
.y1c7{bottom:549.608933pt;}
.y12{bottom:550.112427pt;}
.y9{bottom:550.145747pt;}
.y5b{bottom:550.158800pt;}
.y78{bottom:550.159467pt;}
.ya0{bottom:550.160800pt;}
.ydf{bottom:550.161467pt;}
.ybc{bottom:550.162800pt;}
.y174{bottom:550.164800pt;}
.y35{bottom:550.166800pt;}
.y1fa{bottom:550.758933pt;}
.y1fb{bottom:551.001733pt;}
.y250{bottom:554.578933pt;}
.y227{bottom:554.718933pt;}
.y1c6{bottom:562.278933pt;}
.y1f9{bottom:563.428933pt;}
.y226{bottom:567.388933pt;}
.y11{bottom:568.116333pt;}
.y8{bottom:568.149653pt;}
.y5a{bottom:568.158133pt;}
.y77{bottom:568.158800pt;}
.y9f{bottom:568.160133pt;}
.yde{bottom:568.160800pt;}
.ybb{bottom:568.162133pt;}
.y173{bottom:568.164133pt;}
.y34{bottom:568.166133pt;}
.y24f{bottom:571.028933pt;}
.y1c5{bottom:574.948933pt;}
.y1f8{bottom:579.878933pt;}
.y225{bottom:580.058933pt;}
.y24e{bottom:583.698933pt;}
.y10{bottom:586.120240pt;}
.y7{bottom:586.153560pt;}
.y59{bottom:586.157467pt;}
.y76{bottom:586.158133pt;}
.y9e{bottom:586.159467pt;}
.ydd{bottom:586.160133pt;}
.yba{bottom:586.161467pt;}
.y172{bottom:586.163467pt;}
.y33{bottom:586.165467pt;}
.y1c4{bottom:587.618933pt;}
.y1f7{bottom:592.548933pt;}
.y24d{bottom:596.368933pt;}
.y224{bottom:596.508933pt;}
.y1c3{bottom:600.288933pt;}
.yf{bottom:604.124147pt;}
.y6{bottom:604.157467pt;}
.y9d{bottom:604.158800pt;}
.ydc{bottom:604.159467pt;}
.yb9{bottom:604.160800pt;}
.y171{bottom:604.162800pt;}
.y58{bottom:604.164133pt;}
.y32{bottom:604.164800pt;}
.y1f6{bottom:608.998933pt;}
.y223{bottom:609.178933pt;}
.y24c{bottom:612.818933pt;}
.y1c2{bottom:612.958933pt;}
.y26c{bottom:620.703600pt;}
.y1f5{bottom:621.668933pt;}
.y9c{bottom:622.158133pt;}
.ydb{bottom:622.158800pt;}
.yb8{bottom:622.160133pt;}
.y170{bottom:622.162133pt;}
.y57{bottom:622.163467pt;}
.y31{bottom:622.164133pt;}
.y24b{bottom:625.488933pt;}
.y1c1{bottom:625.628933pt;}
.y1f4{bottom:634.338933pt;}
.y26b{bottom:634.566000pt;}
.y222{bottom:638.298933pt;}
.y5{bottom:640.157467pt;}
.yda{bottom:640.158133pt;}
.yb7{bottom:640.159467pt;}
.y16f{bottom:640.161467pt;}
.y56{bottom:640.162800pt;}
.y30{bottom:640.163467pt;}
.y24a{bottom:641.938933pt;}
.y1c0{bottom:642.078933pt;}
.y26a{bottom:648.428400pt;}
.y1f3{bottom:650.788933pt;}
.y221{bottom:650.968933pt;}
.y249{bottom:654.608933pt;}
.y1bf{bottom:654.748933pt;}
.yd9{bottom:658.157467pt;}
.yb6{bottom:658.158800pt;}
.yd8{bottom:658.159467pt;}
.y16e{bottom:658.160800pt;}
.y55{bottom:658.162133pt;}
.y2f{bottom:658.162800pt;}
.y269{bottom:662.290800pt;}
.y268{bottom:662.295067pt;}
.y1f2{bottom:663.458933pt;}
.y220{bottom:663.638933pt;}
.y248{bottom:667.278933pt;}
.y1be{bottom:667.418933pt;}
.y1f1{bottom:676.128933pt;}
.y267{bottom:676.157467pt;}
.yb5{bottom:676.158133pt;}
.yd7{bottom:676.158800pt;}
.y16d{bottom:676.160133pt;}
.y54{bottom:676.161467pt;}
.y2e{bottom:676.162133pt;}
.y21f{bottom:676.308933pt;}
.y247{bottom:679.948933pt;}
.y1bd{bottom:680.088933pt;}
.y21e{bottom:688.978933pt;}
.y1f0{bottom:692.578933pt;}
.y246{bottom:692.618933pt;}
.y1bc{bottom:692.758933pt;}
.yb4{bottom:694.157467pt;}
.yd6{bottom:694.158133pt;}
.y16c{bottom:694.159467pt;}
.y53{bottom:694.160800pt;}
.y2d{bottom:694.161467pt;}
.y266{bottom:695.090800pt;}
.y1ef{bottom:705.248933pt;}
.y245{bottom:705.288933pt;}
.y1bb{bottom:705.428933pt;}
.y4{bottom:712.157467pt;}
.y16b{bottom:712.158800pt;}
.y52{bottom:712.160133pt;}
.y2c{bottom:712.160800pt;}
.y1ee{bottom:717.918933pt;}
.y1ba{bottom:718.098933pt;}
.y244{bottom:721.738933pt;}
.yb3{bottom:730.157467pt;}
.y16a{bottom:730.158133pt;}
.y51{bottom:730.159467pt;}
.y2b{bottom:730.160133pt;}
.y1ed{bottom:734.368933pt;}
.y243{bottom:734.408933pt;}
.y1b9{bottom:734.548933pt;}
.y1ec{bottom:747.038933pt;}
.y242{bottom:747.078933pt;}
.y1b8{bottom:747.218933pt;}
.y3{bottom:748.157467pt;}
.y50{bottom:748.158800pt;}
.y2a{bottom:748.159467pt;}
.y1eb{bottom:759.708933pt;}
.y241{bottom:759.748933pt;}
.y1b7{bottom:759.888933pt;}
.y265{bottom:766.157467pt;}
.y4f{bottom:766.158133pt;}
.y29{bottom:766.158800pt;}
.y240{bottom:772.418933pt;}
.y1ea{bottom:776.158933pt;}
.y1b6{bottom:776.338933pt;}
.y4e{bottom:784.157467pt;}
.y75{bottom:784.158133pt;}
.y1e9{bottom:788.828933pt;}
.y23f{bottom:788.868933pt;}
.y1b5{bottom:789.008933pt;}
.y1e8{bottom:801.498933pt;}
.y23e{bottom:801.538933pt;}
.y1b4{bottom:801.678933pt;}
.y2{bottom:802.157467pt;}
.y28{bottom:848.599467pt;}
.y1{bottom:848.637600pt;}
.hc{height:23.246931pt;}
.hd{height:29.047467pt;}
.h11{height:29.320000pt;}
.h9{height:30.617600pt;}
.h2{height:32.739200pt;}
.h13{height:33.578667pt;}
.h10{height:36.040000pt;}
.hb{height:36.480000pt;}
.h14{height:36.520533pt;}
.h12{height:36.986667pt;}
.he{height:37.481600pt;}
.ha{height:37.673813pt;}
.h6{height:38.665835pt;}
.h7{height:40.028427pt;}
.h8{height:43.016000pt;}
.h3{height:52.858667pt;}
.hf{height:53.474027pt;}
.h4{height:67.157333pt;}
.h5{height:67.274667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x4{left:61.417333pt;}
.x1{left:68.031467pt;}
.xd{left:75.538533pt;}
.x17{left:76.724400pt;}
.xe{left:79.370767pt;}
.x3{left:83.149600pt;}
.x19{left:96.566933pt;}
.x5{left:104.457333pt;}
.x6{left:105.826800pt;}
.x15{left:121.889733pt;}
.x8{left:136.176133pt;}
.x9{left:151.581333pt;}
.xa{left:162.164800pt;}
.x16{left:248.944133pt;}
.xc{left:298.621600pt;}
.x7{left:302.735600pt;}
.x2{left:319.364227pt;}
.xf{left:330.697767pt;}
.xb{left:333.559333pt;}
.x14{left:366.971067pt;}
.x10{left:382.675733pt;}
.x13{left:389.357867pt;}
.x11{left:422.648133pt;}
.x12{left:522.151067pt;}
.x18{left:523.500533pt;}
}




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