
    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_6e1ad1902f54288a3e604661.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.044000;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_c37d934e72e56a465acb2b09.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_8b222f7ab01a35f926780ef6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_76f1276d0f2388b6a5ee3b16.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.099000;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_83c472fe0554785d116461b6.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c61258a70b2aab0b52fb0de1.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_61f5f5b53bf3b8e0afa8e180.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e0c15a7d45e1b727634543f3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_eef2d2b2f5b647d7c5a50057.woff2')format("woff");}.ff9{font-family:ff9;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;}
.mc{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);}
.m6{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);}
.ma{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);}
.m11{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);}
.m2{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);}
.m10{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);}
.mb{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m5{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);}
.m12{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);}
.m8{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);}
.mf{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);}
.m4{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);}
.md{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.257502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257502,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v3{vertical-align:-18.981000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.975000px;}
.v1{vertical-align:31.968000px;}
.lsf{letter-spacing:-2.430000px;}
.lsa{letter-spacing:-2.052000px;}
.ls12{letter-spacing:-1.778400px;}
.ls9{letter-spacing:-1.026000px;}
.lsd{letter-spacing:-0.765000px;}
.lse{letter-spacing:-0.450000px;}
.ls8{letter-spacing:-0.444000px;}
.lsc{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.285000px;}
.ls2{letter-spacing:-0.234000px;}
.ls6{letter-spacing:-0.228000px;}
.ls11{letter-spacing:-0.225000px;}
.ls1{letter-spacing:-0.222000px;}
.ls4{letter-spacing:-0.166155px;}
.ls10{letter-spacing:-0.135000px;}
.ls7{letter-spacing:-0.132924px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:2.025000px;}
.ls3{letter-spacing:1258.405200px;}
.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;}
}
.ws4c{word-spacing:-16.872000px;}
.wsd0{word-spacing:-16.587000px;}
.ws120{word-spacing:-14.820000px;}
.ws0{word-spacing:-11.054400px;}
.ws136{word-spacing:-11.025000px;}
.ws1{word-spacing:-9.126000px;}
.ws135{word-spacing:-9.000000px;}
.ws167{word-spacing:-8.892000px;}
.ws105{word-spacing:-8.880000px;}
.ws133{word-spacing:-8.865000px;}
.ws134{word-spacing:-8.775000px;}
.ws4f{word-spacing:-8.658000px;}
.ws131{word-spacing:-8.640000px;}
.ws132{word-spacing:-8.235000px;}
.ws4d{word-spacing:-6.646200px;}
.wsdf{word-spacing:-6.513276px;}
.ws4e{word-spacing:-6.480045px;}
.wse3{word-spacing:-4.104000px;}
.ws123{word-spacing:-3.876000px;}
.wsba{word-spacing:-3.819000px;}
.ws1b{word-spacing:-3.534000px;}
.wsbb{word-spacing:-3.363000px;}
.wsff{word-spacing:-3.306000px;}
.ws53{word-spacing:-3.249000px;}
.wsf7{word-spacing:-3.135000px;}
.ws117{word-spacing:-3.078000px;}
.ws12b{word-spacing:-3.021000px;}
.ws84{word-spacing:-2.964000px;}
.ws7f{word-spacing:-2.907000px;}
.ws80{word-spacing:-2.850000px;}
.ws6e{word-spacing:-2.793000px;}
.ws28{word-spacing:-2.736000px;}
.ws96{word-spacing:-2.679000px;}
.wse4{word-spacing:-2.622000px;}
.ws17{word-spacing:-2.565000px;}
.wsd5{word-spacing:-2.508000px;}
.ws78{word-spacing:-2.451000px;}
.ws4a{word-spacing:-2.394000px;}
.wsc6{word-spacing:-2.337000px;}
.ws19{word-spacing:-2.280000px;}
.wsd4{word-spacing:-2.223000px;}
.ws15{word-spacing:-2.166000px;}
.wsa8{word-spacing:-2.109000px;}
.ws8a{word-spacing:-2.052000px;}
.ws95{word-spacing:-1.938000px;}
.ws6a{word-spacing:-1.881000px;}
.ws5e{word-spacing:-1.824000px;}
.ws16b{word-spacing:-1.800000px;}
.ws10b{word-spacing:-1.767000px;}
.ws54{word-spacing:-1.710000px;}
.ws8d{word-spacing:-1.687200px;}
.ws5b{word-spacing:-1.653000px;}
.ws67{word-spacing:-1.598400px;}
.ws128{word-spacing:-1.596000px;}
.ws130{word-spacing:-1.539000px;}
.ws7c{word-spacing:-1.482000px;}
.ws7d{word-spacing:-1.425000px;}
.ws16e{word-spacing:-1.395000px;}
.ws10f{word-spacing:-1.376400px;}
.ws11c{word-spacing:-1.368000px;}
.ws153{word-spacing:-1.350000px;}
.ws35{word-spacing:-1.287600px;}
.ws10a{word-spacing:-1.254000px;}
.ws20{word-spacing:-1.197000px;}
.ws22{word-spacing:-1.140000px;}
.ws10c{word-spacing:-1.110000px;}
.ws12f{word-spacing:-1.083000px;}
.ws165{word-spacing:-1.035000px;}
.ws29{word-spacing:-1.026000px;}
.ws8{word-spacing:-0.999600px;}
.ws121{word-spacing:-0.969000px;}
.ws26{word-spacing:-0.912000px;}
.ws8e{word-spacing:-0.888000px;}
.ws38{word-spacing:-0.855000px;}
.ws9{word-spacing:-0.799680px;}
.ws1a{word-spacing:-0.798000px;}
.ws91{word-spacing:-0.754800px;}
.ws2f{word-spacing:-0.741000px;}
.ws11{word-spacing:-0.699720px;}
.ws3d{word-spacing:-0.684000px;}
.ws14a{word-spacing:-0.675000px;}
.wsd{word-spacing:-0.649740px;}
.ws25{word-spacing:-0.570000px;}
.wse8{word-spacing:-0.513000px;}
.ws15f{word-spacing:-0.495000px;}
.ws48{word-spacing:-0.456000px;}
.ws15e{word-spacing:-0.450000px;}
.ws10d{word-spacing:-0.444000px;}
.wsef{word-spacing:-0.399600px;}
.ws58{word-spacing:-0.399000px;}
.wsa5{word-spacing:-0.342000px;}
.wsf0{word-spacing:-0.310800px;}
.ws21{word-spacing:-0.285000px;}
.wsc7{word-spacing:-0.228000px;}
.wsee{word-spacing:-0.222000px;}
.ws90{word-spacing:-0.177600px;}
.ws7e{word-spacing:-0.171000px;}
.ws162{word-spacing:-0.135000px;}
.ws57{word-spacing:-0.114000px;}
.ws8b{word-spacing:-0.057000px;}
.ws1e{word-spacing:-0.046800px;}
.ws5{word-spacing:-0.044400px;}
.ws2{word-spacing:0.000000px;}
.ws42{word-spacing:0.057000px;}
.wsab{word-spacing:0.114000px;}
.ws63{word-spacing:0.166155px;}
.ws98{word-spacing:0.171000px;}
.ws66{word-spacing:0.177600px;}
.ws3{word-spacing:0.222000px;}
.ws65{word-spacing:0.228000px;}
.ws1f{word-spacing:0.234000px;}
.ws161{word-spacing:0.270000px;}
.wsd1{word-spacing:0.285000px;}
.wsc0{word-spacing:0.310800px;}
.ws116{word-spacing:0.342000px;}
.wsda{word-spacing:0.355200px;}
.ws50{word-spacing:0.399000px;}
.ws7{word-spacing:0.399600px;}
.wsea{word-spacing:0.444000px;}
.ws156{word-spacing:0.450000px;}
.ws39{word-spacing:0.456000px;}
.ws14c{word-spacing:0.495000px;}
.ws47{word-spacing:0.513000px;}
.wsc3{word-spacing:0.532800px;}
.ws46{word-spacing:0.570000px;}
.ws92{word-spacing:0.577200px;}
.ws125{word-spacing:0.627000px;}
.ws164{word-spacing:0.630000px;}
.wseb{word-spacing:0.666000px;}
.wsb9{word-spacing:0.684000px;}
.wsf{word-spacing:0.699720px;}
.ws68{word-spacing:0.710400px;}
.ws5c{word-spacing:0.741000px;}
.ws9e{word-spacing:0.798000px;}
.wsc1{word-spacing:0.799200px;}
.ws107{word-spacing:0.855000px;}
.wsec{word-spacing:0.888000px;}
.ws143{word-spacing:0.900000px;}
.ws88{word-spacing:0.912000px;}
.wsb2{word-spacing:0.969000px;}
.ws142{word-spacing:0.990000px;}
.wsc9{word-spacing:1.026000px;}
.ws17b{word-spacing:1.048800px;}
.wsf5{word-spacing:1.083000px;}
.ws49{word-spacing:1.140000px;}
.wsfa{word-spacing:1.154400px;}
.wsac{word-spacing:1.197000px;}
.ws111{word-spacing:1.198800px;}
.ws14b{word-spacing:1.215000px;}
.wsc4{word-spacing:1.243200px;}
.ws89{word-spacing:1.254000px;}
.wsa3{word-spacing:1.287600px;}
.ws160{word-spacing:1.350000px;}
.ws77{word-spacing:1.368000px;}
.wsed{word-spacing:1.376400px;}
.wsf2{word-spacing:1.420800px;}
.ws62{word-spacing:1.425000px;}
.ws14{word-spacing:1.449420px;}
.ws2e{word-spacing:1.482000px;}
.ws15d{word-spacing:1.485000px;}
.ws7a{word-spacing:1.539000px;}
.ws36{word-spacing:1.554000px;}
.ws129{word-spacing:1.596000px;}
.ws13c{word-spacing:1.620000px;}
.ws1c{word-spacing:1.653000px;}
.ws122{word-spacing:1.710000px;}
.ws17a{word-spacing:1.732800px;}
.ws1d{word-spacing:1.767000px;}
.ws166{word-spacing:1.800000px;}
.wsf6{word-spacing:1.824000px;}
.wsf1{word-spacing:1.864800px;}
.ws60{word-spacing:1.995000px;}
.ws2a{word-spacing:2.052000px;}
.ws75{word-spacing:2.109000px;}
.ws6b{word-spacing:2.166000px;}
.wsfb{word-spacing:2.175600px;}
.wsdb{word-spacing:2.220000px;}
.ws94{word-spacing:2.223000px;}
.wsbf{word-spacing:2.264400px;}
.ws37{word-spacing:2.280000px;}
.ws2b{word-spacing:2.337000px;}
.ws13d{word-spacing:2.340000px;}
.ws55{word-spacing:2.394000px;}
.ws101{word-spacing:2.451000px;}
.ws102{word-spacing:2.508000px;}
.ws104{word-spacing:2.575200px;}
.ws10e{word-spacing:2.619600px;}
.ws33{word-spacing:2.622000px;}
.wsd6{word-spacing:2.679000px;}
.ws171{word-spacing:2.700000px;}
.ws3c{word-spacing:2.736000px;}
.ws176{word-spacing:2.745000px;}
.ws9a{word-spacing:2.793000px;}
.wsc5{word-spacing:2.841600px;}
.ws61{word-spacing:2.907000px;}
.ws16c{word-spacing:2.925000px;}
.ws11f{word-spacing:2.964000px;}
.ws115{word-spacing:3.021000px;}
.wscf{word-spacing:3.078000px;}
.ws16{word-spacing:3.135000px;}
.wsc{word-spacing:3.148740px;}
.ws112{word-spacing:3.152400px;}
.ws52{word-spacing:3.192000px;}
.ws15b{word-spacing:3.195000px;}
.wsb3{word-spacing:3.196800px;}
.ws179{word-spacing:3.237600px;}
.ws110{word-spacing:3.241200px;}
.ws85{word-spacing:3.249000px;}
.ws73{word-spacing:3.306000px;}
.wsc2{word-spacing:3.330000px;}
.ws34{word-spacing:3.363000px;}
.wsa2{word-spacing:3.374400px;}
.wse9{word-spacing:3.418800px;}
.ws6d{word-spacing:3.420000px;}
.wsb{word-spacing:3.448620px;}
.wse0{word-spacing:3.477000px;}
.ws103{word-spacing:3.534000px;}
.ws12{word-spacing:3.548580px;}
.ws11d{word-spacing:3.591000px;}
.ws16a{word-spacing:3.600000px;}
.ws64{word-spacing:3.648000px;}
.ws12d{word-spacing:3.705000px;}
.ws56{word-spacing:3.762000px;}
.ws4{word-spacing:3.818400px;}
.ws14e{word-spacing:3.825000px;}
.wsdd{word-spacing:3.862800px;}
.ws23{word-spacing:3.876000px;}
.wsb5{word-spacing:3.933000px;}
.ws40{word-spacing:3.990000px;}
.ws93{word-spacing:4.047000px;}
.ws10{word-spacing:4.048380px;}
.ws124{word-spacing:4.104000px;}
.ws69{word-spacing:4.173600px;}
.wsde{word-spacing:4.218000px;}
.wsfc{word-spacing:4.262400px;}
.wsf8{word-spacing:4.275000px;}
.ws8f{word-spacing:4.306800px;}
.wscb{word-spacing:4.332000px;}
.ws3a{word-spacing:4.389000px;}
.wsa4{word-spacing:4.395600px;}
.wsad{word-spacing:4.446000px;}
.wsd3{word-spacing:4.503000px;}
.ws5f{word-spacing:4.560000px;}
.ws16d{word-spacing:4.590000px;}
.wsb7{word-spacing:4.617000px;}
.ws32{word-spacing:4.674000px;}
.wsf3{word-spacing:4.706400px;}
.ws139{word-spacing:4.725000px;}
.ws79{word-spacing:4.731000px;}
.ws70{word-spacing:4.788000px;}
.ws18{word-spacing:4.845000px;}
.wsfd{word-spacing:4.884000px;}
.wscd{word-spacing:4.902000px;}
.ws148{word-spacing:4.905000px;}
.ws9b{word-spacing:4.959000px;}
.wsa6{word-spacing:5.016000px;}
.ws17c{word-spacing:5.061600px;}
.ws44{word-spacing:5.187000px;}
.wsbc{word-spacing:5.244000px;}
.ws45{word-spacing:5.301000px;}
.ws157{word-spacing:5.310000px;}
.ws114{word-spacing:5.358000px;}
.ws7b{word-spacing:5.415000px;}
.ws4b{word-spacing:5.416800px;}
.ws83{word-spacing:5.472000px;}
.wse2{word-spacing:5.529000px;}
.ws159{word-spacing:5.535000px;}
.ws99{word-spacing:5.643000px;}
.ws2c{word-spacing:5.700000px;}
.ws170{word-spacing:5.715000px;}
.wsbe{word-spacing:5.757000px;}
.ws86{word-spacing:5.814000px;}
.ws97{word-spacing:5.871000px;}
.ws174{word-spacing:5.895000px;}
.ws151{word-spacing:6.030000px;}
.ws41{word-spacing:6.042000px;}
.ws126{word-spacing:6.099000px;}
.wsa0{word-spacing:6.156000px;}
.ws13e{word-spacing:6.255000px;}
.ws27{word-spacing:6.270000px;}
.ws119{word-spacing:6.327000px;}
.wsa1{word-spacing:6.349200px;}
.wsbd{word-spacing:6.441000px;}
.ws15a{word-spacing:6.480000px;}
.wsc8{word-spacing:6.498000px;}
.ws108{word-spacing:6.555000px;}
.ws6{word-spacing:6.704400px;}
.ws5d{word-spacing:6.726000px;}
.wsf9{word-spacing:6.793200px;}
.ws9c{word-spacing:6.840000px;}
.wsa{word-spacing:6.847260px;}
.ws13f{word-spacing:6.885000px;}
.wsca{word-spacing:6.897000px;}
.ws163{word-spacing:6.930000px;}
.wsa9{word-spacing:6.954000px;}
.ws9d{word-spacing:7.011000px;}
.ws43{word-spacing:7.068000px;}
.ws74{word-spacing:7.125000px;}
.ws6c{word-spacing:7.182000px;}
.wsdc{word-spacing:7.192800px;}
.ws72{word-spacing:7.239000px;}
.wsb8{word-spacing:7.296000px;}
.ws13a{word-spacing:7.335000px;}
.ws30{word-spacing:7.353000px;}
.ws118{word-spacing:7.410000px;}
.ws87{word-spacing:7.467000px;}
.wsb4{word-spacing:7.503600px;}
.ws3e{word-spacing:7.581000px;}
.ws3b{word-spacing:7.638000px;}
.ws24{word-spacing:7.695000px;}
.ws177{word-spacing:7.740000px;}
.wsd2{word-spacing:7.809000px;}
.ws76{word-spacing:7.866000px;}
.ws150{word-spacing:7.920000px;}
.ws71{word-spacing:7.980000px;}
.ws16f{word-spacing:8.100000px;}
.ws3f{word-spacing:8.151000px;}
.ws155{word-spacing:8.190000px;}
.ws5a{word-spacing:8.208000px;}
.ws11e{word-spacing:8.265000px;}
.wsce{word-spacing:8.493000px;}
.wsb1{word-spacing:8.607000px;}
.ws127{word-spacing:8.721000px;}
.wse{word-spacing:8.746500px;}
.wsa7{word-spacing:8.778000px;}
.ws11b{word-spacing:8.892000px;}
.wse6{word-spacing:8.949000px;}
.wsae{word-spacing:9.006000px;}
.wsaa{word-spacing:9.063000px;}
.wscc{word-spacing:9.177000px;}
.ws147{word-spacing:9.270000px;}
.wse5{word-spacing:9.291000px;}
.ws152{word-spacing:9.405000px;}
.wse1{word-spacing:9.462000px;}
.ws175{word-spacing:9.540000px;}
.wsaf{word-spacing:9.576000px;}
.wsb0{word-spacing:9.633000px;}
.wsb6{word-spacing:9.804000px;}
.ws169{word-spacing:9.810000px;}
.ws2d{word-spacing:9.861000px;}
.ws12c{word-spacing:9.918000px;}
.ws81{word-spacing:9.975000px;}
.wsfe{word-spacing:10.032000px;}
.ws113{word-spacing:10.089000px;}
.ws144{word-spacing:10.170000px;}
.ws109{word-spacing:10.203000px;}
.ws9f{word-spacing:10.317000px;}
.wse7{word-spacing:10.659000px;}
.ws12e{word-spacing:10.716000px;}
.ws100{word-spacing:11.001000px;}
.ws14d{word-spacing:11.070000px;}
.ws168{word-spacing:11.160000px;}
.ws82{word-spacing:11.172000px;}
.ws154{word-spacing:11.250000px;}
.wsd8{word-spacing:11.286000px;}
.wsd7{word-spacing:11.400000px;}
.ws140{word-spacing:11.475000px;}
.ws51{word-spacing:11.571000px;}
.ws59{word-spacing:11.742000px;}
.ws31{word-spacing:12.084000px;}
.ws13b{word-spacing:12.330000px;}
.ws149{word-spacing:12.465000px;}
.ws11a{word-spacing:12.540000px;}
.ws138{word-spacing:12.780000px;}
.ws8c{word-spacing:12.825000px;}
.wsd9{word-spacing:13.281000px;}
.ws6f{word-spacing:13.680000px;}
.ws178{word-spacing:14.130000px;}
.ws145{word-spacing:15.660000px;}
.ws12a{word-spacing:17.043000px;}
.ws158{word-spacing:18.405000px;}
.ws15c{word-spacing:18.765000px;}
.ws146{word-spacing:18.810000px;}
.ws172{word-spacing:19.665000px;}
.ws13{word-spacing:20.091960px;}
.ws14f{word-spacing:20.295000px;}
.ws137{word-spacing:24.975000px;}
.ws173{word-spacing:28.710000px;}
.ws141{word-spacing:61.335000px;}
.ws106{word-spacing:364.478400px;}
.wsf4{word-spacing:433.910400px;}
._d{margin-left:-28.530000px;}
._10{margin-left:-25.999500px;}
._e{margin-left:-23.187000px;}
._f{margin-left:-20.178000px;}
._18{margin-left:-14.565000px;}
._b{margin-left:-12.455816px;}
._a{margin-left:-8.349000px;}
._8{margin-left:-7.266000px;}
._9{margin-left:-6.262500px;}
._7{margin-left:-5.244000px;}
._c{margin-left:-4.161000px;}
._6{margin-left:-2.988000px;}
._2{margin-left:-1.056000px;}
._1{width:1.181400px;}
._3{width:2.907600px;}
._4{width:4.443600px;}
._19{width:15.725100px;}
._1a{width:19.614600px;}
._17{width:27.127739px;}
._5{width:55.322709px;}
._16{width:236.296200px;}
._13{width:331.989600px;}
._14{width:393.511800px;}
._15{width:490.300800px;}
._11{width:509.797200px;}
._12{width:559.732800px;}
._0{width:2076.081000px;}
.fc1{color:rgb(25,90,159);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.231000px;}
.fs5{font-size:44.400000px;}
.fsb{font-size:45.000000px;}
.fsd{font-size:45.600000px;}
.fs0{font-size:46.800000px;}
.fse{font-size:47.040000px;}
.fsc{font-size:48.000000px;}
.fs6{font-size:49.980000px;}
.fsa{font-size:52.800000px;}
.fs4{font-size:55.272000px;}
.fs3{font-size:55.968000px;}
.fs7{font-size:57.000000px;}
.fs1{font-size:66.000000px;}
.fs9{font-size:76.440000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:58.827450px;}
.yb{bottom:112.677300px;}
.y178{bottom:112.679400px;}
.y84{bottom:112.679700px;}
.ya{bottom:112.682100px;}
.y15e{bottom:112.684500px;}
.y181{bottom:112.684650px;}
.yda{bottom:112.686900px;}
.y119{bottom:112.689300px;}
.y83{bottom:126.177300px;}
.y9{bottom:126.179700px;}
.y15d{bottom:126.182100px;}
.yd9{bottom:126.184500px;}
.y118{bottom:126.186900px;}
.y177{bottom:132.928650px;}
.y180{bottom:132.933900px;}
.y48{bottom:133.937250px;}
.y68{bottom:133.942050px;}
.y1a7{bottom:137.550900px;}
.y1cc{bottom:137.648850px;}
.y8{bottom:139.677300px;}
.y15c{bottom:139.679700px;}
.yd8{bottom:139.682100px;}
.y117{bottom:139.684500px;}
.y82{bottom:147.437250px;}
.y67{bottom:147.439650px;}
.y128{bottom:147.446850px;}
.y1a6{bottom:151.804650px;}
.y1cb{bottom:151.902600px;}
.y7{bottom:153.177300px;}
.y176{bottom:153.177900px;}
.yd7{bottom:153.179700px;}
.y106{bottom:153.180900px;}
.y116{bottom:153.182100px;}
.y17f{bottom:153.183150px;}
.yed{bottom:155.197350px;}
.y47{bottom:155.202150px;}
.y66{bottom:160.937250px;}
.yc6{bottom:160.943250px;}
.y127{bottom:160.944450px;}
.y1ca{bottom:166.156350px;}
.yd6{bottom:166.677300px;}
.y115{bottom:166.679700px;}
.y81{bottom:168.697350px;}
.y46{bottom:168.699750px;}
.y1a5{bottom:170.310900px;}
.y175{bottom:173.427150px;}
.y16c{bottom:173.428650px;}
.y105{bottom:173.430150px;}
.y17e{bottom:173.432400px;}
.y6{bottom:174.439650px;}
.y126{bottom:174.442050px;}
.yec{bottom:176.462100px;}
.y114{bottom:180.177300px;}
.y1c9{bottom:180.410100px;}
.y45{bottom:182.197350px;}
.yc5{bottom:182.199750px;}
.y1a4{bottom:184.564650px;}
.y5{bottom:187.937250px;}
.y125{bottom:187.939650px;}
.yd5{bottom:187.944450px;}
.y134{bottom:187.946850px;}
.yeb{bottom:189.959700px;}
.y80{bottom:189.964500px;}
.y15b{bottom:193.677150px;}
.y14f{bottom:193.677300px;}
.y16b{bottom:193.677900px;}
.y104{bottom:193.679400px;}
.y17d{bottom:193.681650px;}
.y174{bottom:193.682400px;}
.ya4{bottom:193.686150px;}
.yc4{bottom:195.697350px;}
.y1a3{bottom:198.818400px;}
.y1c8{bottom:198.916350px;}
.y124{bottom:201.437250px;}
.yd4{bottom:201.442050px;}
.y133{bottom:201.444450px;}
.yea{bottom:203.457300px;}
.y7f{bottom:203.462100px;}
.yc3{bottom:209.202150px;}
.y1c7{bottom:213.170100px;}
.y15a{bottom:213.927150px;}
.y16a{bottom:213.927900px;}
.y103{bottom:213.928650px;}
.y17c{bottom:213.930900px;}
.y173{bottom:213.931650px;}
.y65{bottom:213.933900px;}
.ya3{bottom:213.935400px;}
.y159{bottom:213.936150px;}
.yd3{bottom:214.939650px;}
.y132{bottom:214.942050px;}
.y14e{bottom:214.949250px;}
.y7e{bottom:216.959700px;}
.y1a2{bottom:217.324650px;}
.y123{bottom:222.697200px;}
.yc2{bottom:222.699750px;}
.ye9{bottom:224.717250px;}
.y1c6{bottom:227.423850px;}
.yd2{bottom:228.437250px;}
.y131{bottom:228.439650px;}
.y14d{bottom:228.446850px;}
.y7d{bottom:230.457300px;}
.y1a1{bottom:231.578400px;}
.y113{bottom:234.177150px;}
.y102{bottom:234.177900px;}
.y17b{bottom:234.180150px;}
.y172{bottom:234.180900px;}
.y64{bottom:234.183150px;}
.ya2{bottom:234.184650px;}
.y158{bottom:234.185400px;}
.yc1{bottom:236.197350px;}
.y130{bottom:241.937250px;}
.y14c{bottom:241.944450px;}
.y122{bottom:243.971700px;}
.y1a0{bottom:245.832150px;}
.y1c5{bottom:245.930100px;}
.yd1{bottom:249.697200px;}
.yfd{bottom:249.697350px;}
.y101{bottom:254.427150px;}
.y112{bottom:254.427900px;}
.y169{bottom:254.429400px;}
.y171{bottom:254.430150px;}
.y63{bottom:254.432400px;}
.ya1{bottom:254.433900px;}
.y157{bottom:254.434650px;}
.y14b{bottom:255.442050px;}
.yc0{bottom:257.459700px;}
.y121{bottom:257.469300px;}
.y100{bottom:259.172400px;}
.y1c4{bottom:260.183850px;}
.y19f{bottom:264.338400px;}
.y14a{bottom:268.939650px;}
.ybf{bottom:270.957300px;}
.yfc{bottom:270.959700px;}
.y120{bottom:270.966900px;}
.ye8{bottom:274.677150px;}
.y168{bottom:274.678650px;}
.y7c{bottom:274.679400px;}
.y62{bottom:274.681650px;}
.y143{bottom:274.682400px;}
.ya0{bottom:274.683150px;}
.ye6{bottom:274.683900px;}
.y19e{bottom:278.592150px;}
.y1c3{bottom:278.690100px;}
.ye7{bottom:279.422400px;}
.y149{bottom:282.437250px;}
.yfb{bottom:284.457300px;}
.y11f{bottom:284.464500px;}
.yd0{bottom:292.217250px;}
.y19d{bottom:292.845900px;}
.y1c2{bottom:292.943850px;}
.y167{bottom:294.927900px;}
.y7b{bottom:294.928650px;}
.y28{bottom:294.930150px;}
.y61{bottom:294.930900px;}
.y142{bottom:294.931650px;}
.y9f{bottom:294.932400px;}
.y44{bottom:294.933150px;}
.y11e{bottom:297.962100px;}
.yfa{bottom:305.717250px;}
.y1c1{bottom:307.197600px;}
.y19c{bottom:311.352150px;}
.y11d{bottom:311.459700px;}
.ycf{bottom:313.477200px;}
.y166{bottom:315.177150px;}
.y7a{bottom:315.177900px;}
.y12f{bottom:315.178650px;}
.y27{bottom:315.179400px;}
.y60{bottom:315.180150px;}
.y141{bottom:315.180900px;}
.y9e{bottom:315.181650px;}
.y43{bottom:315.182400px;}
.y165{bottom:319.922400px;}
.y11c{bottom:324.957300px;}
.y19b{bottom:325.605900px;}
.y1c0{bottom:325.688400px;}
.y79{bottom:335.427150px;}
.y12e{bottom:335.427900px;}
.y26{bottom:335.428650px;}
.y5f{bottom:335.429400px;}
.y140{bottom:335.430150px;}
.y9d{bottom:335.430900px;}
.y42{bottom:335.431650px;}
.ybe{bottom:335.438400px;}
.y19a{bottom:339.859650px;}
.y1bf{bottom:339.942150px;}
.y1be{bottom:354.195900px;}
.yf9{bottom:355.677150px;}
.y25{bottom:355.677900px;}
.y5e{bottom:355.678650px;}
.y13f{bottom:355.679400px;}
.y78{bottom:355.680150px;}
.y41{bottom:355.680900px;}
.y12d{bottom:355.683150px;}
.ybd{bottom:355.687650px;}
.y199{bottom:358.365900px;}
.y1bd{bottom:368.449650px;}
.y198{bottom:372.619650px;}
.y24{bottom:375.927150px;}
.yce{bottom:375.927900px;}
.y13e{bottom:375.928650px;}
.y22{bottom:375.929400px;}
.y40{bottom:375.930150px;}
.y12c{bottom:375.932400px;}
.yf8{bottom:375.933150px;}
.ybc{bottom:375.936900px;}
.y23{bottom:380.672400px;}
.y197{bottom:386.873400px;}
.y1bc{bottom:386.881350px;}
.y5c{bottom:396.177150px;}
.y13d{bottom:396.177900px;}
.y21{bottom:396.178650px;}
.y3f{bottom:396.179400px;}
.ycd{bottom:396.181650px;}
.yf7{bottom:396.182400px;}
.ybb{bottom:396.186150px;}
.y5d{bottom:400.922400px;}
.y196{bottom:401.127150px;}
.y1bb{bottom:401.135100px;}
.y1ed{bottom:412.377150px;}
.y1ec{bottom:412.386150px;}
.y5b{bottom:416.427150px;}
.y20{bottom:416.427900px;}
.y3e{bottom:416.428650px;}
.ycc{bottom:416.430900px;}
.yf6{bottom:416.431650px;}
.y13c{bottom:416.433150px;}
.yba{bottom:416.435400px;}
.y195{bottom:419.633400px;}
.y1ba{bottom:419.641350px;}
.y1eb{bottom:430.386750px;}
.y194{bottom:433.887150px;}
.y1b9{bottom:433.895100px;}
.y1f{bottom:436.677150px;}
.y1e{bottom:436.677900px;}
.y77{bottom:436.680150px;}
.yf5{bottom:436.680900px;}
.y164{bottom:436.681650px;}
.y13b{bottom:436.682400px;}
.yb9{bottom:436.684650px;}
.y9c{bottom:436.688400px;}
.y1ea{bottom:445.981950px;}
.y1b8{bottom:448.148850px;}
.y193{bottom:452.393400px;}
.y1d{bottom:456.927150px;}
.y1c{bottom:456.927900px;}
.y76{bottom:456.929400px;}
.yf4{bottom:456.930150px;}
.ye4{bottom:456.930900px;}
.y13a{bottom:456.931650px;}
.y111{bottom:456.932400px;}
.yb8{bottom:456.933900px;}
.y17a{bottom:456.936150px;}
.y9b{bottom:456.937650px;}
.y1e9{bottom:461.577150px;}
.y1e8{bottom:461.581950px;}
.ye5{bottom:461.672400px;}
.y1b7{bottom:462.402600px;}
.y192{bottom:466.647150px;}
.y1b{bottom:477.177150px;}
.yff{bottom:477.177900px;}
.y75{bottom:477.178650px;}
.yf3{bottom:477.179400px;}
.ye3{bottom:477.180150px;}
.y139{bottom:477.180900px;}
.y110{bottom:477.181650px;}
.yb7{bottom:477.183150px;}
.y179{bottom:477.185400px;}
.y9a{bottom:477.186900px;}
.y191{bottom:480.900900px;}
.y1b6{bottom:480.908850px;}
.y190{bottom:495.154650px;}
.y1b5{bottom:495.162600px;}
.yfe{bottom:497.427150px;}
.y74{bottom:497.427900px;}
.yf2{bottom:497.428650px;}
.ye2{bottom:497.429400px;}
.y138{bottom:497.430150px;}
.y10f{bottom:497.430900px;}
.y170{bottom:497.431650px;}
.yb6{bottom:497.432400px;}
.y3d{bottom:497.434650px;}
.y99{bottom:497.436150px;}
.y1e7{bottom:498.477150px;}
.y1b4{bottom:509.416350px;}
.y18f{bottom:513.660900px;}
.y73{bottom:517.677150px;}
.yf1{bottom:517.677900px;}
.y72{bottom:517.678650px;}
.y5a{bottom:517.679400px;}
.y10e{bottom:517.680150px;}
.y16f{bottom:517.680900px;}
.yb5{bottom:517.681650px;}
.y3c{bottom:517.683900px;}
.y98{bottom:517.685400px;}
.y1b3{bottom:523.670100px;}
.y18e{bottom:527.914650px;}
.y1b2{bottom:537.923850px;}
.yf0{bottom:537.927150px;}
.y71{bottom:537.927900px;}
.y59{bottom:537.928650px;}
.y10d{bottom:537.929400px;}
.y16e{bottom:537.930150px;}
.yb4{bottom:537.930900px;}
.ycb{bottom:537.931650px;}
.y3b{bottom:537.933150px;}
.y97{bottom:537.934650px;}
.y18d{bottom:542.168400px;}
.yef{bottom:542.672400px;}
.y1b1{bottom:556.430100px;}
.y70{bottom:558.177150px;}
.y58{bottom:558.177900px;}
.y10c{bottom:558.178650px;}
.y16d{bottom:558.179400px;}
.yb3{bottom:558.180150px;}
.yca{bottom:558.180900px;}
.y3a{bottom:558.182400px;}
.y96{bottom:558.183900px;}
.y18c{bottom:560.674650px;}
.ye1{bottom:562.922400px;}
.y12b{bottom:567.554100px;}
.y1b0{bottom:570.683850px;}
.y18b{bottom:574.928400px;}
.y13{bottom:578.396385px;}
.y57{bottom:578.427150px;}
.y10b{bottom:578.427900px;}
.y137{bottom:578.428650px;}
.yb2{bottom:578.429400px;}
.y6f{bottom:578.430150px;}
.y39{bottom:578.431650px;}
.y95{bottom:578.433150px;}
.y156{bottom:578.435400px;}
.y55{bottom:578.439150px;}
.y56{bottom:583.172400px;}
.y1af{bottom:584.937600px;}
.y18a{bottom:593.434650px;}
.y12a{bottom:597.320100px;}
.y12{bottom:598.650780px;}
.y1a{bottom:598.672755px;}
.y10a{bottom:598.677150px;}
.y136{bottom:598.677900px;}
.yb1{bottom:598.678650px;}
.y6e{bottom:598.679400px;}
.y38{bottom:598.680900px;}
.y94{bottom:598.682400px;}
.y155{bottom:598.684650px;}
.y54{bottom:598.688400px;}
.y109{bottom:603.422400px;}
.y1ae{bottom:603.443850px;}
.y189{bottom:607.688400px;}
.y1ad{bottom:617.697600px;}
.y11{bottom:618.905175px;}
.y19{bottom:618.927150px;}
.yb0{bottom:618.927900px;}
.y6d{bottom:618.928650px;}
.y37{bottom:618.930150px;}
.y93{bottom:618.931650px;}
.y154{bottom:618.933900px;}
.y53{bottom:618.937650px;}
.y188{bottom:621.942150px;}
.y129{bottom:626.016900px;}
.y187{bottom:636.195900px;}
.y1ac{bottom:636.203850px;}
.y10{bottom:639.159570px;}
.y18{bottom:639.177150px;}
.y6c{bottom:639.177900px;}
.y36{bottom:639.179400px;}
.yae{bottom:639.180150px;}
.y92{bottom:639.180900px;}
.y153{bottom:639.183150px;}
.y52{bottom:639.186900px;}
.yaf{bottom:643.922400px;}
.y186{bottom:650.449650px;}
.y1ab{bottom:650.457600px;}
.y17{bottom:659.388975px;}
.yf{bottom:659.413965px;}
.yc9{bottom:659.427150px;}
.y11b{bottom:659.427900px;}
.y35{bottom:659.428650px;}
.yad{bottom:659.429400px;}
.y91{bottom:659.430150px;}
.ydf{bottom:659.430900px;}
.y152{bottom:659.432400px;}
.y51{bottom:659.436150px;}
.ye0{bottom:664.172400px;}
.y1aa{bottom:664.711350px;}
.y185{bottom:668.955900px;}
.y16{bottom:679.643370px;}
.ye{bottom:679.668360px;}
.y11a{bottom:679.677150px;}
.y6b{bottom:679.677900px;}
.yac{bottom:679.678650px;}
.y90{bottom:679.679400px;}
.yde{bottom:679.680150px;}
.y151{bottom:679.681650px;}
.y50{bottom:679.685400px;}
.y1a9{bottom:683.063400px;}
.y184{bottom:683.209650px;}
.y1a8{bottom:697.317150px;}
.y183{bottom:697.463400px;}
.y15{bottom:699.897765px;}
.yd{bottom:699.922755px;}
.y34{bottom:699.927150px;}
.yab{bottom:699.927900px;}
.y8f{bottom:699.928650px;}
.ydd{bottom:699.929400px;}
.y32{bottom:699.930150px;}
.y150{bottom:699.930900px;}
.y163{bottom:699.933150px;}
.y4f{bottom:699.934650px;}
.y33{bottom:704.672400px;}
.y1e6{bottom:713.841900px;}
.y1d9{bottom:713.869650px;}
.y14{bottom:720.152160px;}
.yc{bottom:720.177150px;}
.y8e{bottom:720.177900px;}
.ydc{bottom:720.178650px;}
.y31{bottom:720.179400px;}
.y135{bottom:720.180150px;}
.y162{bottom:720.182400px;}
.y4e{bottom:720.183900px;}
.y1e5{bottom:728.095650px;}
.y1d8{bottom:728.123400px;}
.y108{bottom:740.427150px;}
.y8d{bottom:740.427900px;}
.y30{bottom:740.428650px;}
.yaa{bottom:740.429400px;}
.y161{bottom:740.431650px;}
.y4d{bottom:740.433150px;}
.y182{bottom:741.483948px;}
.y1e4{bottom:742.349400px;}
.y1d7{bottom:742.377150px;}
.y1d6{bottom:756.630900px;}
.y4{bottom:760.677150px;}
.y2f{bottom:760.677900px;}
.ya9{bottom:760.678650px;}
.y160{bottom:760.680900px;}
.y4c{bottom:760.682400px;}
.y1e3{bottom:760.855650px;}
.ydb{bottom:765.422400px;}
.y1e2{bottom:775.109400px;}
.y1d5{bottom:775.129050px;}
.y2e{bottom:780.927150px;}
.y8c{bottom:780.927900px;}
.y15f{bottom:780.930150px;}
.yc7{bottom:780.930900px;}
.y6a{bottom:780.931650px;}
.yc8{bottom:785.672400px;}
.y1d4{bottom:789.382800px;}
.y1e1{bottom:793.615650px;}
.y148{bottom:793.803600px;}
.y8b{bottom:801.177150px;}
.ya8{bottom:801.179400px;}
.y89{bottom:801.180150px;}
.y4b{bottom:801.180900px;}
.y8a{bottom:805.922400px;}
.y1d3{bottom:807.861300px;}
.y1e0{bottom:807.869400px;}
.y2d{bottom:821.427150px;}
.y107{bottom:821.427900px;}
.ya7{bottom:821.428650px;}
.y88{bottom:821.429400px;}
.y4a{bottom:821.430150px;}
.y1d2{bottom:822.115050px;}
.y1df{bottom:822.123150px;}
.y147{bottom:825.694800px;}
.y1d1{bottom:840.621300px;}
.y1de{bottom:840.629400px;}
.y3{bottom:841.677150px;}
.ya6{bottom:841.677900px;}
.y87{bottom:841.678650px;}
.y49{bottom:841.679400px;}
.y1d0{bottom:854.875050px;}
.y1dd{bottom:854.883150px;}
.y146{bottom:855.460800px;}
.ya5{bottom:861.927150px;}
.y86{bottom:861.927900px;}
.y69{bottom:861.928650px;}
.yee{bottom:866.672400px;}
.y1dc{bottom:869.136900px;}
.y1cf{bottom:873.381300px;}
.y85{bottom:882.177150px;}
.y2b{bottom:882.177900px;}
.y2c{bottom:886.922400px;}
.y1db{bottom:887.625900px;}
.y1ce{bottom:887.635050px;}
.y145{bottom:888.498300px;}
.y1da{bottom:901.879650px;}
.y1cd{bottom:901.888800px;}
.y144{bottom:901.995900px;}
.y2{bottom:902.427150px;}
.y2a{bottom:907.172400px;}
.y1{bottom:954.717300px;}
.h9{height:26.152797px;}
.h11{height:32.985000px;}
.hd{height:35.964000px;}
.h10{height:36.450000px;}
.h12{height:36.730800px;}
.ha{height:36.831600px;}
.h14{height:36.936000px;}
.h13{height:37.776000px;}
.h2{height:37.908000px;}
.h6{height:39.871200px;}
.h7{height:40.483800px;}
.he{height:41.553600px;}
.hb{height:42.026400px;}
.hf{height:42.768000px;}
.h5{height:43.499064px;}
.h8{height:48.393000px;}
.h3{height:53.460000px;}
.hc{height:60.158280px;}
.h4{height:76.014816px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x3d{left:82.536642px;}
.x38{left:84.364950px;}
.x24{left:87.134550px;}
.x4e{left:89.296275px;}
.x10{left:93.543300px;}
.x2{left:97.795200px;}
.x4a{left:100.105650px;}
.x1f{left:103.900200px;}
.x3e{left:106.331550px;}
.x53{left:108.637800px;}
.x39{left:110.551200px;}
.xf{left:119.053965px;}
.x9{left:124.955400px;}
.x3f{left:127.924800px;}
.x7{left:133.712100px;}
.x8{left:138.156600px;}
.x17{left:142.960650px;}
.x25{left:144.639450px;}
.x31{left:147.602400px;}
.x16{left:151.132050px;}
.x4d{left:155.414850px;}
.x32{left:156.491550px;}
.x34{left:178.076550px;}
.x35{left:186.965700px;}
.x4f{left:193.298100px;}
.x26{left:196.445850px;}
.x47{left:197.833350px;}
.x27{left:205.335000px;}
.x48{left:206.722500px;}
.x50{left:207.995400px;}
.xa{left:214.246200px;}
.xd{left:215.841600px;}
.xb{left:218.690850px;}
.xe{left:220.286250px;}
.x2c{left:231.941550px;}
.x18{left:239.495700px;}
.x2d{left:240.830700px;}
.x19{left:248.384850px;}
.x30{left:253.315200px;}
.x4c{left:265.606350px;}
.x21{left:268.602450px;}
.x22{left:277.491600px;}
.x3c{left:316.393650px;}
.x2e{left:324.044700px;}
.x51{left:329.777550px;}
.x2f{left:332.933850px;}
.xc{left:341.670300px;}
.x2a{left:349.060800px;}
.x40{left:350.409450px;}
.x1d{left:353.967750px;}
.x2b{left:357.949950px;}
.x4{left:359.284755px;}
.x1e{left:362.856900px;}
.x23{left:372.695250px;}
.x20{left:385.274400px;}
.x11{left:394.507350px;}
.x13{left:396.604350px;}
.x12{left:398.952000px;}
.x14{left:401.090400px;}
.x49{left:406.024350px;}
.x3a{left:428.070600px;}
.x41{left:432.819900px;}
.x3b{left:436.959750px;}
.x42{left:442.061400px;}
.x36{left:447.769350px;}
.x43{left:451.125750px;}
.x37{left:456.658500px;}
.x28{left:484.376100px;}
.x29{left:493.306800px;}
.x54{left:497.890350px;}
.x44{left:530.874450px;}
.x45{left:534.243750px;}
.x46{left:543.174450px;}
.x1a{left:571.862850px;}
.x1b{left:580.752000px;}
.x1c{left:587.334450px;}
.x52{left:588.938100px;}
.x3{left:603.230100px;}
.x6{left:605.125800px;}
.x4b{left:610.664100px;}
.x5{left:613.505550px;}
.x33{left:616.108650px;}
.x15{left:625.039350px;}
@media print{
.v3{vertical-align:-16.872000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.866667pt;}
.v1{vertical-align:28.416000pt;}
.lsf{letter-spacing:-2.160000pt;}
.lsa{letter-spacing:-1.824000pt;}
.ls12{letter-spacing:-1.580800pt;}
.ls9{letter-spacing:-0.912000pt;}
.lsd{letter-spacing:-0.680000pt;}
.lse{letter-spacing:-0.400000pt;}
.ls8{letter-spacing:-0.394667pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.253333pt;}
.ls2{letter-spacing:-0.208000pt;}
.ls6{letter-spacing:-0.202667pt;}
.ls11{letter-spacing:-0.200000pt;}
.ls1{letter-spacing:-0.197333pt;}
.ls4{letter-spacing:-0.147693pt;}
.ls10{letter-spacing:-0.120000pt;}
.ls7{letter-spacing:-0.118155pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:1.800000pt;}
.ls3{letter-spacing:1118.582400pt;}
.ws4c{word-spacing:-14.997333pt;}
.wsd0{word-spacing:-14.744000pt;}
.ws120{word-spacing:-13.173333pt;}
.ws0{word-spacing:-9.826133pt;}
.ws136{word-spacing:-9.800000pt;}
.ws1{word-spacing:-8.112000pt;}
.ws135{word-spacing:-8.000000pt;}
.ws167{word-spacing:-7.904000pt;}
.ws105{word-spacing:-7.893333pt;}
.ws133{word-spacing:-7.880000pt;}
.ws134{word-spacing:-7.800000pt;}
.ws4f{word-spacing:-7.696000pt;}
.ws131{word-spacing:-7.680000pt;}
.ws132{word-spacing:-7.320000pt;}
.ws4d{word-spacing:-5.907733pt;}
.wsdf{word-spacing:-5.789579pt;}
.ws4e{word-spacing:-5.760040pt;}
.wse3{word-spacing:-3.648000pt;}
.ws123{word-spacing:-3.445333pt;}
.wsba{word-spacing:-3.394667pt;}
.ws1b{word-spacing:-3.141333pt;}
.wsbb{word-spacing:-2.989333pt;}
.wsff{word-spacing:-2.938667pt;}
.ws53{word-spacing:-2.888000pt;}
.wsf7{word-spacing:-2.786667pt;}
.ws117{word-spacing:-2.736000pt;}
.ws12b{word-spacing:-2.685333pt;}
.ws84{word-spacing:-2.634667pt;}
.ws7f{word-spacing:-2.584000pt;}
.ws80{word-spacing:-2.533333pt;}
.ws6e{word-spacing:-2.482667pt;}
.ws28{word-spacing:-2.432000pt;}
.ws96{word-spacing:-2.381333pt;}
.wse4{word-spacing:-2.330667pt;}
.ws17{word-spacing:-2.280000pt;}
.wsd5{word-spacing:-2.229333pt;}
.ws78{word-spacing:-2.178667pt;}
.ws4a{word-spacing:-2.128000pt;}
.wsc6{word-spacing:-2.077333pt;}
.ws19{word-spacing:-2.026667pt;}
.wsd4{word-spacing:-1.976000pt;}
.ws15{word-spacing:-1.925333pt;}
.wsa8{word-spacing:-1.874667pt;}
.ws8a{word-spacing:-1.824000pt;}
.ws95{word-spacing:-1.722667pt;}
.ws6a{word-spacing:-1.672000pt;}
.ws5e{word-spacing:-1.621333pt;}
.ws16b{word-spacing:-1.600000pt;}
.ws10b{word-spacing:-1.570667pt;}
.ws54{word-spacing:-1.520000pt;}
.ws8d{word-spacing:-1.499733pt;}
.ws5b{word-spacing:-1.469333pt;}
.ws67{word-spacing:-1.420800pt;}
.ws128{word-spacing:-1.418667pt;}
.ws130{word-spacing:-1.368000pt;}
.ws7c{word-spacing:-1.317333pt;}
.ws7d{word-spacing:-1.266667pt;}
.ws16e{word-spacing:-1.240000pt;}
.ws10f{word-spacing:-1.223467pt;}
.ws11c{word-spacing:-1.216000pt;}
.ws153{word-spacing:-1.200000pt;}
.ws35{word-spacing:-1.144533pt;}
.ws10a{word-spacing:-1.114667pt;}
.ws20{word-spacing:-1.064000pt;}
.ws22{word-spacing:-1.013333pt;}
.ws10c{word-spacing:-0.986667pt;}
.ws12f{word-spacing:-0.962667pt;}
.ws165{word-spacing:-0.920000pt;}
.ws29{word-spacing:-0.912000pt;}
.ws8{word-spacing:-0.888533pt;}
.ws121{word-spacing:-0.861333pt;}
.ws26{word-spacing:-0.810667pt;}
.ws8e{word-spacing:-0.789333pt;}
.ws38{word-spacing:-0.760000pt;}
.ws9{word-spacing:-0.710827pt;}
.ws1a{word-spacing:-0.709333pt;}
.ws91{word-spacing:-0.670933pt;}
.ws2f{word-spacing:-0.658667pt;}
.ws11{word-spacing:-0.621973pt;}
.ws3d{word-spacing:-0.608000pt;}
.ws14a{word-spacing:-0.600000pt;}
.wsd{word-spacing:-0.577547pt;}
.ws25{word-spacing:-0.506667pt;}
.wse8{word-spacing:-0.456000pt;}
.ws15f{word-spacing:-0.440000pt;}
.ws48{word-spacing:-0.405333pt;}
.ws15e{word-spacing:-0.400000pt;}
.ws10d{word-spacing:-0.394667pt;}
.wsef{word-spacing:-0.355200pt;}
.ws58{word-spacing:-0.354667pt;}
.wsa5{word-spacing:-0.304000pt;}
.wsf0{word-spacing:-0.276267pt;}
.ws21{word-spacing:-0.253333pt;}
.wsc7{word-spacing:-0.202667pt;}
.wsee{word-spacing:-0.197333pt;}
.ws90{word-spacing:-0.157867pt;}
.ws7e{word-spacing:-0.152000pt;}
.ws162{word-spacing:-0.120000pt;}
.ws57{word-spacing:-0.101333pt;}
.ws8b{word-spacing:-0.050667pt;}
.ws1e{word-spacing:-0.041600pt;}
.ws5{word-spacing:-0.039467pt;}
.ws2{word-spacing:0.000000pt;}
.ws42{word-spacing:0.050667pt;}
.wsab{word-spacing:0.101333pt;}
.ws63{word-spacing:0.147693pt;}
.ws98{word-spacing:0.152000pt;}
.ws66{word-spacing:0.157867pt;}
.ws3{word-spacing:0.197333pt;}
.ws65{word-spacing:0.202667pt;}
.ws1f{word-spacing:0.208000pt;}
.ws161{word-spacing:0.240000pt;}
.wsd1{word-spacing:0.253333pt;}
.wsc0{word-spacing:0.276267pt;}
.ws116{word-spacing:0.304000pt;}
.wsda{word-spacing:0.315733pt;}
.ws50{word-spacing:0.354667pt;}
.ws7{word-spacing:0.355200pt;}
.wsea{word-spacing:0.394667pt;}
.ws156{word-spacing:0.400000pt;}
.ws39{word-spacing:0.405333pt;}
.ws14c{word-spacing:0.440000pt;}
.ws47{word-spacing:0.456000pt;}
.wsc3{word-spacing:0.473600pt;}
.ws46{word-spacing:0.506667pt;}
.ws92{word-spacing:0.513067pt;}
.ws125{word-spacing:0.557333pt;}
.ws164{word-spacing:0.560000pt;}
.wseb{word-spacing:0.592000pt;}
.wsb9{word-spacing:0.608000pt;}
.wsf{word-spacing:0.621973pt;}
.ws68{word-spacing:0.631467pt;}
.ws5c{word-spacing:0.658667pt;}
.ws9e{word-spacing:0.709333pt;}
.wsc1{word-spacing:0.710400pt;}
.ws107{word-spacing:0.760000pt;}
.wsec{word-spacing:0.789333pt;}
.ws143{word-spacing:0.800000pt;}
.ws88{word-spacing:0.810667pt;}
.wsb2{word-spacing:0.861333pt;}
.ws142{word-spacing:0.880000pt;}
.wsc9{word-spacing:0.912000pt;}
.ws17b{word-spacing:0.932267pt;}
.wsf5{word-spacing:0.962667pt;}
.ws49{word-spacing:1.013333pt;}
.wsfa{word-spacing:1.026133pt;}
.wsac{word-spacing:1.064000pt;}
.ws111{word-spacing:1.065600pt;}
.ws14b{word-spacing:1.080000pt;}
.wsc4{word-spacing:1.105067pt;}
.ws89{word-spacing:1.114667pt;}
.wsa3{word-spacing:1.144533pt;}
.ws160{word-spacing:1.200000pt;}
.ws77{word-spacing:1.216000pt;}
.wsed{word-spacing:1.223467pt;}
.wsf2{word-spacing:1.262933pt;}
.ws62{word-spacing:1.266667pt;}
.ws14{word-spacing:1.288373pt;}
.ws2e{word-spacing:1.317333pt;}
.ws15d{word-spacing:1.320000pt;}
.ws7a{word-spacing:1.368000pt;}
.ws36{word-spacing:1.381333pt;}
.ws129{word-spacing:1.418667pt;}
.ws13c{word-spacing:1.440000pt;}
.ws1c{word-spacing:1.469333pt;}
.ws122{word-spacing:1.520000pt;}
.ws17a{word-spacing:1.540267pt;}
.ws1d{word-spacing:1.570667pt;}
.ws166{word-spacing:1.600000pt;}
.wsf6{word-spacing:1.621333pt;}
.wsf1{word-spacing:1.657600pt;}
.ws60{word-spacing:1.773333pt;}
.ws2a{word-spacing:1.824000pt;}
.ws75{word-spacing:1.874667pt;}
.ws6b{word-spacing:1.925333pt;}
.wsfb{word-spacing:1.933867pt;}
.wsdb{word-spacing:1.973333pt;}
.ws94{word-spacing:1.976000pt;}
.wsbf{word-spacing:2.012800pt;}
.ws37{word-spacing:2.026667pt;}
.ws2b{word-spacing:2.077333pt;}
.ws13d{word-spacing:2.080000pt;}
.ws55{word-spacing:2.128000pt;}
.ws101{word-spacing:2.178667pt;}
.ws102{word-spacing:2.229333pt;}
.ws104{word-spacing:2.289067pt;}
.ws10e{word-spacing:2.328533pt;}
.ws33{word-spacing:2.330667pt;}
.wsd6{word-spacing:2.381333pt;}
.ws171{word-spacing:2.400000pt;}
.ws3c{word-spacing:2.432000pt;}
.ws176{word-spacing:2.440000pt;}
.ws9a{word-spacing:2.482667pt;}
.wsc5{word-spacing:2.525867pt;}
.ws61{word-spacing:2.584000pt;}
.ws16c{word-spacing:2.600000pt;}
.ws11f{word-spacing:2.634667pt;}
.ws115{word-spacing:2.685333pt;}
.wscf{word-spacing:2.736000pt;}
.ws16{word-spacing:2.786667pt;}
.wsc{word-spacing:2.798880pt;}
.ws112{word-spacing:2.802133pt;}
.ws52{word-spacing:2.837333pt;}
.ws15b{word-spacing:2.840000pt;}
.wsb3{word-spacing:2.841600pt;}
.ws179{word-spacing:2.877867pt;}
.ws110{word-spacing:2.881067pt;}
.ws85{word-spacing:2.888000pt;}
.ws73{word-spacing:2.938667pt;}
.wsc2{word-spacing:2.960000pt;}
.ws34{word-spacing:2.989333pt;}
.wsa2{word-spacing:2.999467pt;}
.wse9{word-spacing:3.038933pt;}
.ws6d{word-spacing:3.040000pt;}
.wsb{word-spacing:3.065440pt;}
.wse0{word-spacing:3.090667pt;}
.ws103{word-spacing:3.141333pt;}
.ws12{word-spacing:3.154293pt;}
.ws11d{word-spacing:3.192000pt;}
.ws16a{word-spacing:3.200000pt;}
.ws64{word-spacing:3.242667pt;}
.ws12d{word-spacing:3.293333pt;}
.ws56{word-spacing:3.344000pt;}
.ws4{word-spacing:3.394133pt;}
.ws14e{word-spacing:3.400000pt;}
.wsdd{word-spacing:3.433600pt;}
.ws23{word-spacing:3.445333pt;}
.wsb5{word-spacing:3.496000pt;}
.ws40{word-spacing:3.546667pt;}
.ws93{word-spacing:3.597333pt;}
.ws10{word-spacing:3.598560pt;}
.ws124{word-spacing:3.648000pt;}
.ws69{word-spacing:3.709867pt;}
.wsde{word-spacing:3.749333pt;}
.wsfc{word-spacing:3.788800pt;}
.wsf8{word-spacing:3.800000pt;}
.ws8f{word-spacing:3.828267pt;}
.wscb{word-spacing:3.850667pt;}
.ws3a{word-spacing:3.901333pt;}
.wsa4{word-spacing:3.907200pt;}
.wsad{word-spacing:3.952000pt;}
.wsd3{word-spacing:4.002667pt;}
.ws5f{word-spacing:4.053333pt;}
.ws16d{word-spacing:4.080000pt;}
.wsb7{word-spacing:4.104000pt;}
.ws32{word-spacing:4.154667pt;}
.wsf3{word-spacing:4.183467pt;}
.ws139{word-spacing:4.200000pt;}
.ws79{word-spacing:4.205333pt;}
.ws70{word-spacing:4.256000pt;}
.ws18{word-spacing:4.306667pt;}
.wsfd{word-spacing:4.341333pt;}
.wscd{word-spacing:4.357333pt;}
.ws148{word-spacing:4.360000pt;}
.ws9b{word-spacing:4.408000pt;}
.wsa6{word-spacing:4.458667pt;}
.ws17c{word-spacing:4.499200pt;}
.ws44{word-spacing:4.610667pt;}
.wsbc{word-spacing:4.661333pt;}
.ws45{word-spacing:4.712000pt;}
.ws157{word-spacing:4.720000pt;}
.ws114{word-spacing:4.762667pt;}
.ws7b{word-spacing:4.813333pt;}
.ws4b{word-spacing:4.814933pt;}
.ws83{word-spacing:4.864000pt;}
.wse2{word-spacing:4.914667pt;}
.ws159{word-spacing:4.920000pt;}
.ws99{word-spacing:5.016000pt;}
.ws2c{word-spacing:5.066667pt;}
.ws170{word-spacing:5.080000pt;}
.wsbe{word-spacing:5.117333pt;}
.ws86{word-spacing:5.168000pt;}
.ws97{word-spacing:5.218667pt;}
.ws174{word-spacing:5.240000pt;}
.ws151{word-spacing:5.360000pt;}
.ws41{word-spacing:5.370667pt;}
.ws126{word-spacing:5.421333pt;}
.wsa0{word-spacing:5.472000pt;}
.ws13e{word-spacing:5.560000pt;}
.ws27{word-spacing:5.573333pt;}
.ws119{word-spacing:5.624000pt;}
.wsa1{word-spacing:5.643733pt;}
.wsbd{word-spacing:5.725333pt;}
.ws15a{word-spacing:5.760000pt;}
.wsc8{word-spacing:5.776000pt;}
.ws108{word-spacing:5.826667pt;}
.ws6{word-spacing:5.959467pt;}
.ws5d{word-spacing:5.978667pt;}
.wsf9{word-spacing:6.038400pt;}
.ws9c{word-spacing:6.080000pt;}
.wsa{word-spacing:6.086453pt;}
.ws13f{word-spacing:6.120000pt;}
.wsca{word-spacing:6.130667pt;}
.ws163{word-spacing:6.160000pt;}
.wsa9{word-spacing:6.181333pt;}
.ws9d{word-spacing:6.232000pt;}
.ws43{word-spacing:6.282667pt;}
.ws74{word-spacing:6.333333pt;}
.ws6c{word-spacing:6.384000pt;}
.wsdc{word-spacing:6.393600pt;}
.ws72{word-spacing:6.434667pt;}
.wsb8{word-spacing:6.485333pt;}
.ws13a{word-spacing:6.520000pt;}
.ws30{word-spacing:6.536000pt;}
.ws118{word-spacing:6.586667pt;}
.ws87{word-spacing:6.637333pt;}
.wsb4{word-spacing:6.669867pt;}
.ws3e{word-spacing:6.738667pt;}
.ws3b{word-spacing:6.789333pt;}
.ws24{word-spacing:6.840000pt;}
.ws177{word-spacing:6.880000pt;}
.wsd2{word-spacing:6.941333pt;}
.ws76{word-spacing:6.992000pt;}
.ws150{word-spacing:7.040000pt;}
.ws71{word-spacing:7.093333pt;}
.ws16f{word-spacing:7.200000pt;}
.ws3f{word-spacing:7.245333pt;}
.ws155{word-spacing:7.280000pt;}
.ws5a{word-spacing:7.296000pt;}
.ws11e{word-spacing:7.346667pt;}
.wsce{word-spacing:7.549333pt;}
.wsb1{word-spacing:7.650667pt;}
.ws127{word-spacing:7.752000pt;}
.wse{word-spacing:7.774667pt;}
.wsa7{word-spacing:7.802667pt;}
.ws11b{word-spacing:7.904000pt;}
.wse6{word-spacing:7.954667pt;}
.wsae{word-spacing:8.005333pt;}
.wsaa{word-spacing:8.056000pt;}
.wscc{word-spacing:8.157333pt;}
.ws147{word-spacing:8.240000pt;}
.wse5{word-spacing:8.258667pt;}
.ws152{word-spacing:8.360000pt;}
.wse1{word-spacing:8.410667pt;}
.ws175{word-spacing:8.480000pt;}
.wsaf{word-spacing:8.512000pt;}
.wsb0{word-spacing:8.562667pt;}
.wsb6{word-spacing:8.714667pt;}
.ws169{word-spacing:8.720000pt;}
.ws2d{word-spacing:8.765333pt;}
.ws12c{word-spacing:8.816000pt;}
.ws81{word-spacing:8.866667pt;}
.wsfe{word-spacing:8.917333pt;}
.ws113{word-spacing:8.968000pt;}
.ws144{word-spacing:9.040000pt;}
.ws109{word-spacing:9.069333pt;}
.ws9f{word-spacing:9.170667pt;}
.wse7{word-spacing:9.474667pt;}
.ws12e{word-spacing:9.525333pt;}
.ws100{word-spacing:9.778667pt;}
.ws14d{word-spacing:9.840000pt;}
.ws168{word-spacing:9.920000pt;}
.ws82{word-spacing:9.930667pt;}
.ws154{word-spacing:10.000000pt;}
.wsd8{word-spacing:10.032000pt;}
.wsd7{word-spacing:10.133333pt;}
.ws140{word-spacing:10.200000pt;}
.ws51{word-spacing:10.285333pt;}
.ws59{word-spacing:10.437333pt;}
.ws31{word-spacing:10.741333pt;}
.ws13b{word-spacing:10.960000pt;}
.ws149{word-spacing:11.080000pt;}
.ws11a{word-spacing:11.146667pt;}
.ws138{word-spacing:11.360000pt;}
.ws8c{word-spacing:11.400000pt;}
.wsd9{word-spacing:11.805333pt;}
.ws6f{word-spacing:12.160000pt;}
.ws178{word-spacing:12.560000pt;}
.ws145{word-spacing:13.920000pt;}
.ws12a{word-spacing:15.149333pt;}
.ws158{word-spacing:16.360000pt;}
.ws15c{word-spacing:16.680000pt;}
.ws146{word-spacing:16.720000pt;}
.ws172{word-spacing:17.480000pt;}
.ws13{word-spacing:17.859520pt;}
.ws14f{word-spacing:18.040000pt;}
.ws137{word-spacing:22.200000pt;}
.ws173{word-spacing:25.520000pt;}
.ws141{word-spacing:54.520000pt;}
.ws106{word-spacing:323.980800pt;}
.wsf4{word-spacing:385.698133pt;}
._d{margin-left:-25.360000pt;}
._10{margin-left:-23.110667pt;}
._e{margin-left:-20.610667pt;}
._f{margin-left:-17.936000pt;}
._18{margin-left:-12.946667pt;}
._b{margin-left:-11.071837pt;}
._a{margin-left:-7.421333pt;}
._8{margin-left:-6.458667pt;}
._9{margin-left:-5.566667pt;}
._7{margin-left:-4.661333pt;}
._c{margin-left:-3.698667pt;}
._6{margin-left:-2.656000pt;}
._2{margin-left:-0.938667pt;}
._1{width:1.050133pt;}
._3{width:2.584533pt;}
._4{width:3.949867pt;}
._19{width:13.977867pt;}
._1a{width:17.435200pt;}
._17{width:24.113546pt;}
._5{width:49.175742pt;}
._16{width:210.041067pt;}
._13{width:295.101867pt;}
._14{width:349.788267pt;}
._15{width:435.822933pt;}
._11{width:453.153067pt;}
._12{width:497.540267pt;}
._0{width:1845.405333pt;}
.fs8{font-size:29.538667pt;}
.fs5{font-size:39.466667pt;}
.fsb{font-size:40.000000pt;}
.fsd{font-size:40.533333pt;}
.fs0{font-size:41.600000pt;}
.fse{font-size:41.813333pt;}
.fsc{font-size:42.666667pt;}
.fs6{font-size:44.426667pt;}
.fsa{font-size:46.933333pt;}
.fs4{font-size:49.130667pt;}
.fs3{font-size:49.749333pt;}
.fs7{font-size:50.666667pt;}
.fs1{font-size:58.666667pt;}
.fs9{font-size:67.946667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:52.291067pt;}
.yb{bottom:100.157600pt;}
.y178{bottom:100.159467pt;}
.y84{bottom:100.159733pt;}
.ya{bottom:100.161867pt;}
.y15e{bottom:100.164000pt;}
.y181{bottom:100.164133pt;}
.yda{bottom:100.166133pt;}
.y119{bottom:100.168267pt;}
.y83{bottom:112.157600pt;}
.y9{bottom:112.159733pt;}
.y15d{bottom:112.161867pt;}
.yd9{bottom:112.164000pt;}
.y118{bottom:112.166133pt;}
.y177{bottom:118.158800pt;}
.y180{bottom:118.163467pt;}
.y48{bottom:119.055333pt;}
.y68{bottom:119.059600pt;}
.y1a7{bottom:122.267467pt;}
.y1cc{bottom:122.354533pt;}
.y8{bottom:124.157600pt;}
.y15c{bottom:124.159733pt;}
.yd8{bottom:124.161867pt;}
.y117{bottom:124.164000pt;}
.y82{bottom:131.055333pt;}
.y67{bottom:131.057467pt;}
.y128{bottom:131.063867pt;}
.y1a6{bottom:134.937467pt;}
.y1cb{bottom:135.024533pt;}
.y7{bottom:136.157600pt;}
.y176{bottom:136.158133pt;}
.yd7{bottom:136.159733pt;}
.y106{bottom:136.160800pt;}
.y116{bottom:136.161867pt;}
.y17f{bottom:136.162800pt;}
.yed{bottom:137.953200pt;}
.y47{bottom:137.957467pt;}
.y66{bottom:143.055333pt;}
.yc6{bottom:143.060667pt;}
.y127{bottom:143.061733pt;}
.y1ca{bottom:147.694533pt;}
.yd6{bottom:148.157600pt;}
.y115{bottom:148.159733pt;}
.y81{bottom:149.953200pt;}
.y46{bottom:149.955333pt;}
.y1a5{bottom:151.387467pt;}
.y175{bottom:154.157467pt;}
.y16c{bottom:154.158800pt;}
.y105{bottom:154.160133pt;}
.y17e{bottom:154.162133pt;}
.y6{bottom:155.057467pt;}
.y126{bottom:155.059600pt;}
.yec{bottom:156.855200pt;}
.y114{bottom:160.157600pt;}
.y1c9{bottom:160.364533pt;}
.y45{bottom:161.953200pt;}
.yc5{bottom:161.955333pt;}
.y1a4{bottom:164.057467pt;}
.y5{bottom:167.055333pt;}
.y125{bottom:167.057467pt;}
.yd5{bottom:167.061733pt;}
.y134{bottom:167.063867pt;}
.yeb{bottom:168.853067pt;}
.y80{bottom:168.857333pt;}
.y15b{bottom:172.157467pt;}
.y14f{bottom:172.157600pt;}
.y16b{bottom:172.158133pt;}
.y104{bottom:172.159467pt;}
.y17d{bottom:172.161467pt;}
.y174{bottom:172.162133pt;}
.ya4{bottom:172.165467pt;}
.yc4{bottom:173.953200pt;}
.y1a3{bottom:176.727467pt;}
.y1c8{bottom:176.814533pt;}
.y124{bottom:179.055333pt;}
.yd4{bottom:179.059600pt;}
.y133{bottom:179.061733pt;}
.yea{bottom:180.850933pt;}
.y7f{bottom:180.855200pt;}
.yc3{bottom:185.957467pt;}
.y1c7{bottom:189.484533pt;}
.y15a{bottom:190.157467pt;}
.y16a{bottom:190.158133pt;}
.y103{bottom:190.158800pt;}
.y17c{bottom:190.160800pt;}
.y173{bottom:190.161467pt;}
.y65{bottom:190.163467pt;}
.ya3{bottom:190.164800pt;}
.y159{bottom:190.165467pt;}
.yd3{bottom:191.057467pt;}
.y132{bottom:191.059600pt;}
.y14e{bottom:191.066000pt;}
.y7e{bottom:192.853067pt;}
.y1a2{bottom:193.177467pt;}
.y123{bottom:197.953067pt;}
.yc2{bottom:197.955333pt;}
.ye9{bottom:199.748667pt;}
.y1c6{bottom:202.154533pt;}
.yd2{bottom:203.055333pt;}
.y131{bottom:203.057467pt;}
.y14d{bottom:203.063867pt;}
.y7d{bottom:204.850933pt;}
.y1a1{bottom:205.847467pt;}
.y113{bottom:208.157467pt;}
.y102{bottom:208.158133pt;}
.y17b{bottom:208.160133pt;}
.y172{bottom:208.160800pt;}
.y64{bottom:208.162800pt;}
.ya2{bottom:208.164133pt;}
.y158{bottom:208.164800pt;}
.yc1{bottom:209.953200pt;}
.y130{bottom:215.055333pt;}
.y14c{bottom:215.061733pt;}
.y122{bottom:216.863733pt;}
.y1a0{bottom:218.517467pt;}
.y1c5{bottom:218.604533pt;}
.yd1{bottom:221.953067pt;}
.yfd{bottom:221.953200pt;}
.y101{bottom:226.157467pt;}
.y112{bottom:226.158133pt;}
.y169{bottom:226.159467pt;}
.y171{bottom:226.160133pt;}
.y63{bottom:226.162133pt;}
.ya1{bottom:226.163467pt;}
.y157{bottom:226.164133pt;}
.y14b{bottom:227.059600pt;}
.yc0{bottom:228.853067pt;}
.y121{bottom:228.861600pt;}
.y100{bottom:230.375467pt;}
.y1c4{bottom:231.274533pt;}
.y19f{bottom:234.967467pt;}
.y14a{bottom:239.057467pt;}
.ybf{bottom:240.850933pt;}
.yfc{bottom:240.853067pt;}
.y120{bottom:240.859467pt;}
.ye8{bottom:244.157467pt;}
.y168{bottom:244.158800pt;}
.y7c{bottom:244.159467pt;}
.y62{bottom:244.161467pt;}
.y143{bottom:244.162133pt;}
.ya0{bottom:244.162800pt;}
.ye6{bottom:244.163467pt;}
.y19e{bottom:247.637467pt;}
.y1c3{bottom:247.724533pt;}
.ye7{bottom:248.375467pt;}
.y149{bottom:251.055333pt;}
.yfb{bottom:252.850933pt;}
.y11f{bottom:252.857333pt;}
.yd0{bottom:259.748667pt;}
.y19d{bottom:260.307467pt;}
.y1c2{bottom:260.394533pt;}
.y167{bottom:262.158133pt;}
.y7b{bottom:262.158800pt;}
.y28{bottom:262.160133pt;}
.y61{bottom:262.160800pt;}
.y142{bottom:262.161467pt;}
.y9f{bottom:262.162133pt;}
.y44{bottom:262.162800pt;}
.y11e{bottom:264.855200pt;}
.yfa{bottom:271.748667pt;}
.y1c1{bottom:273.064533pt;}
.y19c{bottom:276.757467pt;}
.y11d{bottom:276.853067pt;}
.ycf{bottom:278.646400pt;}
.y166{bottom:280.157467pt;}
.y7a{bottom:280.158133pt;}
.y12f{bottom:280.158800pt;}
.y27{bottom:280.159467pt;}
.y60{bottom:280.160133pt;}
.y141{bottom:280.160800pt;}
.y9e{bottom:280.161467pt;}
.y43{bottom:280.162133pt;}
.y165{bottom:284.375467pt;}
.y11c{bottom:288.850933pt;}
.y19b{bottom:289.427467pt;}
.y1c0{bottom:289.500800pt;}
.y79{bottom:298.157467pt;}
.y12e{bottom:298.158133pt;}
.y26{bottom:298.158800pt;}
.y5f{bottom:298.159467pt;}
.y140{bottom:298.160133pt;}
.y9d{bottom:298.160800pt;}
.y42{bottom:298.161467pt;}
.ybe{bottom:298.167467pt;}
.y19a{bottom:302.097467pt;}
.y1bf{bottom:302.170800pt;}
.y1be{bottom:314.840800pt;}
.yf9{bottom:316.157467pt;}
.y25{bottom:316.158133pt;}
.y5e{bottom:316.158800pt;}
.y13f{bottom:316.159467pt;}
.y78{bottom:316.160133pt;}
.y41{bottom:316.160800pt;}
.y12d{bottom:316.162800pt;}
.ybd{bottom:316.166800pt;}
.y199{bottom:318.547467pt;}
.y1bd{bottom:327.510800pt;}
.y198{bottom:331.217467pt;}
.y24{bottom:334.157467pt;}
.yce{bottom:334.158133pt;}
.y13e{bottom:334.158800pt;}
.y22{bottom:334.159467pt;}
.y40{bottom:334.160133pt;}
.y12c{bottom:334.162133pt;}
.yf8{bottom:334.162800pt;}
.ybc{bottom:334.166133pt;}
.y23{bottom:338.375467pt;}
.y197{bottom:343.887467pt;}
.y1bc{bottom:343.894533pt;}
.y5c{bottom:352.157467pt;}
.y13d{bottom:352.158133pt;}
.y21{bottom:352.158800pt;}
.y3f{bottom:352.159467pt;}
.ycd{bottom:352.161467pt;}
.yf7{bottom:352.162133pt;}
.ybb{bottom:352.165467pt;}
.y5d{bottom:356.375467pt;}
.y196{bottom:356.557467pt;}
.y1bb{bottom:356.564533pt;}
.y1ed{bottom:366.557467pt;}
.y1ec{bottom:366.565467pt;}
.y5b{bottom:370.157467pt;}
.y20{bottom:370.158133pt;}
.y3e{bottom:370.158800pt;}
.ycc{bottom:370.160800pt;}
.yf6{bottom:370.161467pt;}
.y13c{bottom:370.162800pt;}
.yba{bottom:370.164800pt;}
.y195{bottom:373.007467pt;}
.y1ba{bottom:373.014533pt;}
.y1eb{bottom:382.566000pt;}
.y194{bottom:385.677467pt;}
.y1b9{bottom:385.684533pt;}
.y1f{bottom:388.157467pt;}
.y1e{bottom:388.158133pt;}
.y77{bottom:388.160133pt;}
.yf5{bottom:388.160800pt;}
.y164{bottom:388.161467pt;}
.y13b{bottom:388.162133pt;}
.yb9{bottom:388.164133pt;}
.y9c{bottom:388.167467pt;}
.y1ea{bottom:396.428400pt;}
.y1b8{bottom:398.354533pt;}
.y193{bottom:402.127467pt;}
.y1d{bottom:406.157467pt;}
.y1c{bottom:406.158133pt;}
.y76{bottom:406.159467pt;}
.yf4{bottom:406.160133pt;}
.ye4{bottom:406.160800pt;}
.y13a{bottom:406.161467pt;}
.y111{bottom:406.162133pt;}
.yb8{bottom:406.163467pt;}
.y17a{bottom:406.165467pt;}
.y9b{bottom:406.166800pt;}
.y1e9{bottom:410.290800pt;}
.y1e8{bottom:410.295067pt;}
.ye5{bottom:410.375467pt;}
.y1b7{bottom:411.024533pt;}
.y192{bottom:414.797467pt;}
.y1b{bottom:424.157467pt;}
.yff{bottom:424.158133pt;}
.y75{bottom:424.158800pt;}
.yf3{bottom:424.159467pt;}
.ye3{bottom:424.160133pt;}
.y139{bottom:424.160800pt;}
.y110{bottom:424.161467pt;}
.yb7{bottom:424.162800pt;}
.y179{bottom:424.164800pt;}
.y9a{bottom:424.166133pt;}
.y191{bottom:427.467467pt;}
.y1b6{bottom:427.474533pt;}
.y190{bottom:440.137467pt;}
.y1b5{bottom:440.144533pt;}
.yfe{bottom:442.157467pt;}
.y74{bottom:442.158133pt;}
.yf2{bottom:442.158800pt;}
.ye2{bottom:442.159467pt;}
.y138{bottom:442.160133pt;}
.y10f{bottom:442.160800pt;}
.y170{bottom:442.161467pt;}
.yb6{bottom:442.162133pt;}
.y3d{bottom:442.164133pt;}
.y99{bottom:442.165467pt;}
.y1e7{bottom:443.090800pt;}
.y1b4{bottom:452.814533pt;}
.y18f{bottom:456.587467pt;}
.y73{bottom:460.157467pt;}
.yf1{bottom:460.158133pt;}
.y72{bottom:460.158800pt;}
.y5a{bottom:460.159467pt;}
.y10e{bottom:460.160133pt;}
.y16f{bottom:460.160800pt;}
.yb5{bottom:460.161467pt;}
.y3c{bottom:460.163467pt;}
.y98{bottom:460.164800pt;}
.y1b3{bottom:465.484533pt;}
.y18e{bottom:469.257467pt;}
.y1b2{bottom:478.154533pt;}
.yf0{bottom:478.157467pt;}
.y71{bottom:478.158133pt;}
.y59{bottom:478.158800pt;}
.y10d{bottom:478.159467pt;}
.y16e{bottom:478.160133pt;}
.yb4{bottom:478.160800pt;}
.ycb{bottom:478.161467pt;}
.y3b{bottom:478.162800pt;}
.y97{bottom:478.164133pt;}
.y18d{bottom:481.927467pt;}
.yef{bottom:482.375467pt;}
.y1b1{bottom:494.604533pt;}
.y70{bottom:496.157467pt;}
.y58{bottom:496.158133pt;}
.y10c{bottom:496.158800pt;}
.y16d{bottom:496.159467pt;}
.yb3{bottom:496.160133pt;}
.yca{bottom:496.160800pt;}
.y3a{bottom:496.162133pt;}
.y96{bottom:496.163467pt;}
.y18c{bottom:498.377467pt;}
.ye1{bottom:500.375467pt;}
.y12b{bottom:504.492533pt;}
.y1b0{bottom:507.274533pt;}
.y18b{bottom:511.047467pt;}
.y13{bottom:514.130120pt;}
.y57{bottom:514.157467pt;}
.y10b{bottom:514.158133pt;}
.y137{bottom:514.158800pt;}
.yb2{bottom:514.159467pt;}
.y6f{bottom:514.160133pt;}
.y39{bottom:514.161467pt;}
.y95{bottom:514.162800pt;}
.y156{bottom:514.164800pt;}
.y55{bottom:514.168133pt;}
.y56{bottom:518.375467pt;}
.y1af{bottom:519.944533pt;}
.y18a{bottom:527.497467pt;}
.y12a{bottom:530.951200pt;}
.y12{bottom:532.134027pt;}
.y1a{bottom:532.153560pt;}
.y10a{bottom:532.157467pt;}
.y136{bottom:532.158133pt;}
.yb1{bottom:532.158800pt;}
.y6e{bottom:532.159467pt;}
.y38{bottom:532.160800pt;}
.y94{bottom:532.162133pt;}
.y155{bottom:532.164133pt;}
.y54{bottom:532.167467pt;}
.y109{bottom:536.375467pt;}
.y1ae{bottom:536.394533pt;}
.y189{bottom:540.167467pt;}
.y1ad{bottom:549.064533pt;}
.y11{bottom:550.137933pt;}
.y19{bottom:550.157467pt;}
.yb0{bottom:550.158133pt;}
.y6d{bottom:550.158800pt;}
.y37{bottom:550.160133pt;}
.y93{bottom:550.161467pt;}
.y154{bottom:550.163467pt;}
.y53{bottom:550.166800pt;}
.y188{bottom:552.837467pt;}
.y129{bottom:556.459467pt;}
.y187{bottom:565.507467pt;}
.y1ac{bottom:565.514533pt;}
.y10{bottom:568.141840pt;}
.y18{bottom:568.157467pt;}
.y6c{bottom:568.158133pt;}
.y36{bottom:568.159467pt;}
.yae{bottom:568.160133pt;}
.y92{bottom:568.160800pt;}
.y153{bottom:568.162800pt;}
.y52{bottom:568.166133pt;}
.yaf{bottom:572.375467pt;}
.y186{bottom:578.177467pt;}
.y1ab{bottom:578.184533pt;}
.y17{bottom:586.123533pt;}
.yf{bottom:586.145747pt;}
.yc9{bottom:586.157467pt;}
.y11b{bottom:586.158133pt;}
.y35{bottom:586.158800pt;}
.yad{bottom:586.159467pt;}
.y91{bottom:586.160133pt;}
.ydf{bottom:586.160800pt;}
.y152{bottom:586.162133pt;}
.y51{bottom:586.165467pt;}
.ye0{bottom:590.375467pt;}
.y1aa{bottom:590.854533pt;}
.y185{bottom:594.627467pt;}
.y16{bottom:604.127440pt;}
.ye{bottom:604.149653pt;}
.y11a{bottom:604.157467pt;}
.y6b{bottom:604.158133pt;}
.yac{bottom:604.158800pt;}
.y90{bottom:604.159467pt;}
.yde{bottom:604.160133pt;}
.y151{bottom:604.161467pt;}
.y50{bottom:604.164800pt;}
.y1a9{bottom:607.167467pt;}
.y184{bottom:607.297467pt;}
.y1a8{bottom:619.837467pt;}
.y183{bottom:619.967467pt;}
.y15{bottom:622.131347pt;}
.yd{bottom:622.153560pt;}
.y34{bottom:622.157467pt;}
.yab{bottom:622.158133pt;}
.y8f{bottom:622.158800pt;}
.ydd{bottom:622.159467pt;}
.y32{bottom:622.160133pt;}
.y150{bottom:622.160800pt;}
.y163{bottom:622.162800pt;}
.y4f{bottom:622.164133pt;}
.y33{bottom:626.375467pt;}
.y1e6{bottom:634.526133pt;}
.y1d9{bottom:634.550800pt;}
.y14{bottom:640.135253pt;}
.yc{bottom:640.157467pt;}
.y8e{bottom:640.158133pt;}
.ydc{bottom:640.158800pt;}
.y31{bottom:640.159467pt;}
.y135{bottom:640.160133pt;}
.y162{bottom:640.162133pt;}
.y4e{bottom:640.163467pt;}
.y1e5{bottom:647.196133pt;}
.y1d8{bottom:647.220800pt;}
.y108{bottom:658.157467pt;}
.y8d{bottom:658.158133pt;}
.y30{bottom:658.158800pt;}
.yaa{bottom:658.159467pt;}
.y161{bottom:658.161467pt;}
.y4d{bottom:658.162800pt;}
.y182{bottom:659.096843pt;}
.y1e4{bottom:659.866133pt;}
.y1d7{bottom:659.890800pt;}
.y1d6{bottom:672.560800pt;}
.y4{bottom:676.157467pt;}
.y2f{bottom:676.158133pt;}
.ya9{bottom:676.158800pt;}
.y160{bottom:676.160800pt;}
.y4c{bottom:676.162133pt;}
.y1e3{bottom:676.316133pt;}
.ydb{bottom:680.375467pt;}
.y1e2{bottom:688.986133pt;}
.y1d5{bottom:689.003600pt;}
.y2e{bottom:694.157467pt;}
.y8c{bottom:694.158133pt;}
.y15f{bottom:694.160133pt;}
.yc7{bottom:694.160800pt;}
.y6a{bottom:694.161467pt;}
.yc8{bottom:698.375467pt;}
.y1d4{bottom:701.673600pt;}
.y1e1{bottom:705.436133pt;}
.y148{bottom:705.603200pt;}
.y8b{bottom:712.157467pt;}
.ya8{bottom:712.159467pt;}
.y89{bottom:712.160133pt;}
.y4b{bottom:712.160800pt;}
.y8a{bottom:716.375467pt;}
.y1d3{bottom:718.098933pt;}
.y1e0{bottom:718.106133pt;}
.y2d{bottom:730.157467pt;}
.y107{bottom:730.158133pt;}
.ya7{bottom:730.158800pt;}
.y88{bottom:730.159467pt;}
.y4a{bottom:730.160133pt;}
.y1d2{bottom:730.768933pt;}
.y1df{bottom:730.776133pt;}
.y147{bottom:733.950933pt;}
.y1d1{bottom:747.218933pt;}
.y1de{bottom:747.226133pt;}
.y3{bottom:748.157467pt;}
.ya6{bottom:748.158133pt;}
.y87{bottom:748.158800pt;}
.y49{bottom:748.159467pt;}
.y1d0{bottom:759.888933pt;}
.y1dd{bottom:759.896133pt;}
.y146{bottom:760.409600pt;}
.ya5{bottom:766.157467pt;}
.y86{bottom:766.158133pt;}
.y69{bottom:766.158800pt;}
.yee{bottom:770.375467pt;}
.y1dc{bottom:772.566133pt;}
.y1cf{bottom:776.338933pt;}
.y85{bottom:784.157467pt;}
.y2b{bottom:784.158133pt;}
.y2c{bottom:788.375467pt;}
.y1db{bottom:789.000800pt;}
.y1ce{bottom:789.008933pt;}
.y145{bottom:789.776267pt;}
.y1da{bottom:801.670800pt;}
.y1cd{bottom:801.678933pt;}
.y144{bottom:801.774133pt;}
.y2{bottom:802.157467pt;}
.y2a{bottom:806.375467pt;}
.y1{bottom:848.637600pt;}
.h9{height:23.246931pt;}
.h11{height:29.320000pt;}
.hd{height:31.968000pt;}
.h10{height:32.400000pt;}
.h12{height:32.649600pt;}
.ha{height:32.739200pt;}
.h14{height:32.832000pt;}
.h13{height:33.578667pt;}
.h2{height:33.696000pt;}
.h6{height:35.441067pt;}
.h7{height:35.985600pt;}
.he{height:36.936533pt;}
.hb{height:37.356800pt;}
.hf{height:38.016000pt;}
.h5{height:38.665835pt;}
.h8{height:43.016000pt;}
.h3{height:47.520000pt;}
.hc{height:53.474027pt;}
.h4{height:67.568725pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x3d{left:73.365904pt;}
.x38{left:74.991067pt;}
.x24{left:77.452933pt;}
.x4e{left:79.374467pt;}
.x10{left:83.149600pt;}
.x2{left:86.929067pt;}
.x4a{left:88.982800pt;}
.x1f{left:92.355733pt;}
.x3e{left:94.516933pt;}
.x53{left:96.566933pt;}
.x39{left:98.267733pt;}
.xf{left:105.825747pt;}
.x9{left:111.071467pt;}
.x3f{left:113.710933pt;}
.x7{left:118.855200pt;}
.x8{left:122.805867pt;}
.x17{left:127.076133pt;}
.x25{left:128.568400pt;}
.x31{left:131.202133pt;}
.x16{left:134.339600pt;}
.x4d{left:138.146533pt;}
.x32{left:139.103600pt;}
.x34{left:158.290267pt;}
.x35{left:166.191733pt;}
.x4f{left:171.820533pt;}
.x26{left:174.618533pt;}
.x47{left:175.851867pt;}
.x27{left:182.520000pt;}
.x48{left:183.753333pt;}
.x50{left:184.884800pt;}
.xa{left:190.441067pt;}
.xd{left:191.859200pt;}
.xb{left:194.391867pt;}
.xe{left:195.810000pt;}
.x2c{left:206.170267pt;}
.x18{left:212.885067pt;}
.x2d{left:214.071733pt;}
.x19{left:220.786533pt;}
.x30{left:225.169067pt;}
.x4c{left:236.094533pt;}
.x21{left:238.757733pt;}
.x22{left:246.659200pt;}
.x3c{left:281.238800pt;}
.x2e{left:288.039733pt;}
.x51{left:293.135600pt;}
.x2f{left:295.941200pt;}
.xc{left:303.706933pt;}
.x2a{left:310.276267pt;}
.x40{left:311.475067pt;}
.x1d{left:314.638000pt;}
.x2b{left:318.177733pt;}
.x4{left:319.364227pt;}
.x1e{left:322.539467pt;}
.x23{left:331.284667pt;}
.x20{left:342.466133pt;}
.x11{left:350.673200pt;}
.x13{left:352.537200pt;}
.x12{left:354.624000pt;}
.x14{left:356.524800pt;}
.x49{left:360.910533pt;}
.x3a{left:380.507200pt;}
.x41{left:384.728800pt;}
.x3b{left:388.408667pt;}
.x42{left:392.943467pt;}
.x36{left:398.017200pt;}
.x43{left:401.000667pt;}
.x37{left:405.918667pt;}
.x28{left:430.556533pt;}
.x29{left:438.494933pt;}
.x54{left:442.569200pt;}
.x44{left:471.888400pt;}
.x45{left:474.883333pt;}
.x46{left:482.821733pt;}
.x1a{left:508.322533pt;}
.x1b{left:516.224000pt;}
.x1c{left:522.075067pt;}
.x52{left:523.500533pt;}
.x3{left:536.204533pt;}
.x6{left:537.889600pt;}
.x4b{left:542.812533pt;}
.x5{left:545.338267pt;}
.x33{left:547.652133pt;}
.x15{left:555.590533pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  