
    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_cce1950854c1fbf7799e0e19.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.118000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5a34ae6eaa2705ae1f83e3f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.913000;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_c5b5d30075cae4908aad0c9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.118000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1aa971c5a30aa37a3568e987.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861000;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_d72e8e1e05b548acc3f0eb24.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_1501e8b2ce5b2fcd26a45c19.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_c320ac7b4aeb87dba267074c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_389d6307ab3ab24506e67698.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_eb953fa08ee86de743ef196c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a205003198f80d737129e452.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3ec1c456f55c3d5d9605f2f0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.106934;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.lsc{letter-spacing:-1.320000px;}
.ls4{letter-spacing:-0.990000px;}
.ls2{letter-spacing:-0.660000px;}
.lse{letter-spacing:-0.600000px;}
.ls3{letter-spacing:-0.330000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010200px;}
.ls5{letter-spacing:0.330000px;}
.ls6{letter-spacing:0.990000px;}
.lsb{letter-spacing:1.077000px;}
.lsd{letter-spacing:1.242600px;}
.ls8{letter-spacing:1.320000px;}
.lsa{letter-spacing:2.229000px;}
.ls9{letter-spacing:5.585400px;}
.ls7{letter-spacing:15.000000px;}
.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;}
}
.ws2{word-spacing:-19.500000px;}
.ws19{word-spacing:-16.500000px;}
.wse2{word-spacing:-15.000000px;}
.wsef{word-spacing:-14.400000px;}
.ws18{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.000000px;}
.ws0{word-spacing:-11.676000px;}
.ws5{word-spacing:-10.500000px;}
.ws3{word-spacing:-8.745000px;}
.wscd{word-spacing:-5.346000px;}
.ws92{word-spacing:-4.488000px;}
.wsc3{word-spacing:-4.158000px;}
.ws53{word-spacing:-3.564000px;}
.ws9d{word-spacing:-3.432000px;}
.wsd5{word-spacing:-3.366000px;}
.ws6c{word-spacing:-3.300000px;}
.ws7f{word-spacing:-3.234000px;}
.ws29{word-spacing:-3.168000px;}
.ws61{word-spacing:-3.102000px;}
.ws11{word-spacing:-3.078000px;}
.wse7{word-spacing:-3.060000px;}
.ws8{word-spacing:-3.024000px;}
.wsc1{word-spacing:-3.000000px;}
.ws38{word-spacing:-2.904000px;}
.wsff{word-spacing:-2.880000px;}
.wsdb{word-spacing:-2.838000px;}
.wsa5{word-spacing:-2.772000px;}
.wsfb{word-spacing:-2.760000px;}
.ws81{word-spacing:-2.706000px;}
.ws90{word-spacing:-2.640000px;}
.ws9a{word-spacing:-2.574000px;}
.ws4b{word-spacing:-2.508000px;}
.wsb4{word-spacing:-2.460000px;}
.ws51{word-spacing:-2.442000px;}
.ws95{word-spacing:-2.376000px;}
.ws33{word-spacing:-2.310000px;}
.ws45{word-spacing:-2.178000px;}
.ws26{word-spacing:-2.112000px;}
.ws49{word-spacing:-2.046000px;}
.wsbc{word-spacing:-1.980000px;}
.ws108{word-spacing:-1.860000px;}
.ws7c{word-spacing:-1.848000px;}
.wsfe{word-spacing:-1.800000px;}
.wse{word-spacing:-1.782000px;}
.wsf1{word-spacing:-1.740000px;}
.ws83{word-spacing:-1.716000px;}
.ws2f{word-spacing:-1.650000px;}
.ws4c{word-spacing:-1.584000px;}
.wsfd{word-spacing:-1.560000px;}
.ws37{word-spacing:-1.518000px;}
.wse6{word-spacing:-1.500000px;}
.ws7a{word-spacing:-1.452000px;}
.ws36{word-spacing:-1.386000px;}
.ws86{word-spacing:-1.320000px;}
.ws47{word-spacing:-1.254000px;}
.wsb6{word-spacing:-1.200000px;}
.ws24{word-spacing:-1.188000px;}
.wsaa{word-spacing:-1.140000px;}
.wsa7{word-spacing:-1.122000px;}
.wsa{word-spacing:-1.080000px;}
.ws89{word-spacing:-1.056000px;}
.ws22{word-spacing:-0.990000px;}
.wsf3{word-spacing:-0.960000px;}
.wsa9{word-spacing:-0.900000px;}
.ws98{word-spacing:-0.858000px;}
.wsc7{word-spacing:-0.840000px;}
.ws43{word-spacing:-0.792000px;}
.wsc6{word-spacing:-0.780000px;}
.wse4{word-spacing:-0.726000px;}
.ws55{word-spacing:-0.660000px;}
.ws10{word-spacing:-0.648000px;}
.wsde{word-spacing:-0.594000px;}
.wsc0{word-spacing:-0.540000px;}
.ws96{word-spacing:-0.528000px;}
.ws1c{word-spacing:-0.486000px;}
.wsab{word-spacing:-0.480000px;}
.wsbb{word-spacing:-0.462000px;}
.wsca{word-spacing:-0.420000px;}
.ws75{word-spacing:-0.396000px;}
.ws6e{word-spacing:-0.330000px;}
.ws106{word-spacing:-0.300000px;}
.ws9{word-spacing:-0.216000px;}
.ws97{word-spacing:-0.198000px;}
.wsc5{word-spacing:-0.180000px;}
.ws44{word-spacing:-0.132000px;}
.wsd3{word-spacing:-0.120000px;}
.ws4e{word-spacing:-0.066000px;}
.ws1a{word-spacing:-0.054000px;}
.ws1{word-spacing:-0.042000px;}
.ws6{word-spacing:0.000000px;}
.ws13{word-spacing:0.054000px;}
.ws100{word-spacing:0.060000px;}
.ws77{word-spacing:0.066000px;}
.wsbf{word-spacing:0.120000px;}
.ws30{word-spacing:0.132000px;}
.ws42{word-spacing:0.198000px;}
.ws3d{word-spacing:0.264000px;}
.ws109{word-spacing:0.300000px;}
.ws2b{word-spacing:0.330000px;}
.ws16{word-spacing:0.378000px;}
.ws73{word-spacing:0.396000px;}
.wse8{word-spacing:0.420000px;}
.ws9f{word-spacing:0.462000px;}
.ws87{word-spacing:0.528000px;}
.wscb{word-spacing:0.540000px;}
.ws6a{word-spacing:0.594000px;}
.wsfa{word-spacing:0.600000px;}
.ws2e{word-spacing:0.660000px;}
.ws3b{word-spacing:0.726000px;}
.wsa3{word-spacing:0.792000px;}
.wsf4{word-spacing:0.840000px;}
.wsd2{word-spacing:0.858000px;}
.wse5{word-spacing:0.900000px;}
.wsa0{word-spacing:0.924000px;}
.wsf7{word-spacing:0.960000px;}
.ws60{word-spacing:0.990000px;}
.ws39{word-spacing:1.056000px;}
.ws4f{word-spacing:1.122000px;}
.wsb9{word-spacing:1.140000px;}
.ws3c{word-spacing:1.188000px;}
.wsb1{word-spacing:1.200000px;}
.ws57{word-spacing:1.254000px;}
.ws9b{word-spacing:1.320000px;}
.ws76{word-spacing:1.386000px;}
.wsd4{word-spacing:1.440000px;}
.ws2a{word-spacing:1.452000px;}
.wsb{word-spacing:1.458000px;}
.ws4d{word-spacing:1.518000px;}
.ws4a{word-spacing:1.584000px;}
.ws54{word-spacing:1.650000px;}
.wsed{word-spacing:1.680000px;}
.ws50{word-spacing:1.716000px;}
.wsc4{word-spacing:1.740000px;}
.ws6b{word-spacing:1.782000px;}
.ws5f{word-spacing:1.848000px;}
.ws21{word-spacing:1.914000px;}
.ws94{word-spacing:1.980000px;}
.wsea{word-spacing:2.040000px;}
.ws68{word-spacing:2.046000px;}
.ws8d{word-spacing:2.112000px;}
.ws1e{word-spacing:2.160000px;}
.ws34{word-spacing:2.178000px;}
.wsb3{word-spacing:2.220000px;}
.ws35{word-spacing:2.244000px;}
.ws3a{word-spacing:2.310000px;}
.wsa1{word-spacing:2.376000px;}
.ws8a{word-spacing:2.442000px;}
.wsd6{word-spacing:2.508000px;}
.ws5e{word-spacing:2.574000px;}
.ws1f{word-spacing:2.640000px;}
.ws64{word-spacing:2.706000px;}
.wsf8{word-spacing:2.760000px;}
.wsbd{word-spacing:2.772000px;}
.wsf0{word-spacing:2.820000px;}
.wsbe{word-spacing:2.838000px;}
.wsf{word-spacing:2.862000px;}
.ws3f{word-spacing:2.904000px;}
.ws17{word-spacing:2.970000px;}
.ws101{word-spacing:3.000000px;}
.wsb0{word-spacing:3.060000px;}
.ws9c{word-spacing:3.102000px;}
.ws65{word-spacing:3.168000px;}
.wsad{word-spacing:3.180000px;}
.ws66{word-spacing:3.234000px;}
.ws1b{word-spacing:3.294000px;}
.ws107{word-spacing:3.360000px;}
.ws72{word-spacing:3.498000px;}
.wsd1{word-spacing:3.564000px;}
.wse9{word-spacing:3.600000px;}
.ws5d{word-spacing:3.630000px;}
.wsda{word-spacing:3.696000px;}
.ws7e{word-spacing:3.762000px;}
.wsb5{word-spacing:3.840000px;}
.ws105{word-spacing:3.900000px;}
.wsdd{word-spacing:4.026000px;}
.ws25{word-spacing:4.092000px;}
.ws67{word-spacing:4.158000px;}
.wsce{word-spacing:4.224000px;}
.ws31{word-spacing:4.290000px;}
.ws7b{word-spacing:4.356000px;}
.ws48{word-spacing:4.488000px;}
.ws56{word-spacing:4.554000px;}
.ws88{word-spacing:4.620000px;}
.wsee{word-spacing:4.680000px;}
.ws32{word-spacing:4.752000px;}
.ws15{word-spacing:4.806000px;}
.ws84{word-spacing:4.818000px;}
.ws79{word-spacing:4.884000px;}
.wsf9{word-spacing:4.920000px;}
.ws5c{word-spacing:4.950000px;}
.wsec{word-spacing:4.980000px;}
.wsc8{word-spacing:5.016000px;}
.ws2c{word-spacing:5.148000px;}
.wsac{word-spacing:5.160000px;}
.wse1{word-spacing:5.214000px;}
.wsa6{word-spacing:5.280000px;}
.ws104{word-spacing:5.460000px;}
.ws52{word-spacing:5.610000px;}
.wsb8{word-spacing:5.640000px;}
.wsd8{word-spacing:5.742000px;}
.wsb2{word-spacing:5.760000px;}
.wsf5{word-spacing:5.880000px;}
.wsdc{word-spacing:5.940000px;}
.wsae{word-spacing:6.060000px;}
.ws59{word-spacing:6.138000px;}
.ws58{word-spacing:6.204000px;}
.ws23{word-spacing:6.270000px;}
.ws103{word-spacing:6.300000px;}
.ws7{word-spacing:6.372000px;}
.ws12{word-spacing:6.534000px;}
.wsb7{word-spacing:6.540000px;}
.wsd7{word-spacing:6.600000px;}
.wsaf{word-spacing:6.660000px;}
.ws62{word-spacing:6.666000px;}
.ws8b{word-spacing:6.732000px;}
.wsf2{word-spacing:6.780000px;}
.ws20{word-spacing:6.798000px;}
.ws69{word-spacing:6.930000px;}
.wsf6{word-spacing:7.020000px;}
.ws99{word-spacing:7.062000px;}
.ws14{word-spacing:7.074000px;}
.ws78{word-spacing:7.128000px;}
.ws6d{word-spacing:7.194000px;}
.wscc{word-spacing:7.260000px;}
.ws102{word-spacing:7.380000px;}
.ws41{word-spacing:7.392000px;}
.ws8f{word-spacing:7.458000px;}
.wseb{word-spacing:7.500000px;}
.ws46{word-spacing:7.524000px;}
.ws27{word-spacing:7.722000px;}
.ws5b{word-spacing:7.854000px;}
.wse0{word-spacing:8.316000px;}
.ws80{word-spacing:8.382000px;}
.wsc9{word-spacing:8.400000px;}
.ws8e{word-spacing:8.448000px;}
.wsfc{word-spacing:8.700000px;}
.ws7d{word-spacing:8.712000px;}
.wsa8{word-spacing:8.778000px;}
.wsc2{word-spacing:8.844000px;}
.wsdf{word-spacing:8.910000px;}
.wsa4{word-spacing:8.976000px;}
.ws74{word-spacing:9.042000px;}
.ws3e{word-spacing:9.108000px;}
.wsd{word-spacing:9.180000px;}
.ws91{word-spacing:9.372000px;}
.ws85{word-spacing:9.504000px;}
.ws70{word-spacing:9.570000px;}
.ws8c{word-spacing:9.636000px;}
.wscf{word-spacing:9.768000px;}
.wse3{word-spacing:9.834000px;}
.ws40{word-spacing:9.966000px;}
.ws63{word-spacing:10.098000px;}
.wsd0{word-spacing:10.164000px;}
.wsba{word-spacing:10.230000px;}
.wsa2{word-spacing:10.560000px;}
.ws5a{word-spacing:10.626000px;}
.ws28{word-spacing:10.692000px;}
.wsd9{word-spacing:10.758000px;}
.ws82{word-spacing:11.088000px;}
.ws9e{word-spacing:11.352000px;}
.ws2d{word-spacing:11.418000px;}
.wsc{word-spacing:11.556000px;}
.ws71{word-spacing:11.682000px;}
.ws93{word-spacing:11.748000px;}
.ws6f{word-spacing:12.738000px;}
.ws1d{word-spacing:15.552000px;}
._11{margin-left:-2211.023400px;}
._c{margin-left:-8.758800px;}
._10{margin-left:-7.380000px;}
._5{margin-left:-6.211200px;}
._12{margin-left:-5.108400px;}
._1{margin-left:-3.868200px;}
._2{margin-left:-2.385600px;}
._0{margin-left:-1.180200px;}
._f{width:1.204800px;}
._14{width:2.211000px;}
._b{width:3.265800px;}
._e{width:5.274000px;}
._3{width:6.376800px;}
._13{width:7.450800px;}
._d{width:9.115200px;}
._15{width:10.387800px;}
._6{width:25.380000px;}
._16{width:35.539800px;}
._4{width:64.051200px;}
._9{width:148.192800px;}
._8{width:153.472800px;}
._7{width:177.520800px;}
._a{width:287.110200px;}
.fc3{color:transparent;}
.fc2{color:rgb(249,249,249);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(29,29,27);}
.fs7{font-size:27.984000px;}
.fs4{font-size:34.980000px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:43.526700px;}
.y2a{bottom:74.409450px;}
.y10b{bottom:74.409600px;}
.y170{bottom:78.405600px;}
.y29{bottom:89.409450px;}
.y1b6{bottom:90.923400px;}
.y83{bottom:92.485800px;}
.y20b{bottom:92.489250px;}
.y1f5{bottom:92.494800px;}
.yaf{bottom:92.496900px;}
.y2bb{bottom:92.507550px;}
.y142{bottom:92.629500px;}
.y54{bottom:92.662350px;}
.y235{bottom:92.667150px;}
.y15d{bottom:92.828850px;}
.y262{bottom:92.878650px;}
.y28c{bottom:92.911350px;}
.yd3{bottom:92.992800px;}
.y18d{bottom:93.043800px;}
.y1cc{bottom:93.166500px;}
.y111{bottom:93.258300px;}
.yf1{bottom:93.334500px;}
.y10a{bottom:93.405600px;}
.y1b5{bottom:107.437200px;}
.y28{bottom:108.405450px;}
.y82{bottom:110.561850px;}
.y20a{bottom:110.569200px;}
.y1f4{bottom:110.580150px;}
.y2ba{bottom:110.605650px;}
.y141{bottom:110.849550px;}
.y234{bottom:110.925000px;}
.y15c{bottom:111.248250px;}
.y261{bottom:111.347850px;}
.y28b{bottom:111.413400px;}
.yd2{bottom:111.576150px;}
.yf0{bottom:112.259700px;}
.y16f{bottom:119.173350px;}
.y27{bottom:119.409450px;}
.y1b4{bottom:123.951150px;}
.yae{bottom:128.584500px;}
.y81{bottom:128.638200px;}
.y209{bottom:128.649000px;}
.y1f3{bottom:128.665500px;}
.y2b9{bottom:128.703600px;}
.y53{bottom:128.915250px;}
.y233{bottom:129.182700px;}
.y15b{bottom:129.667500px;}
.y260{bottom:129.817050px;}
.y28a{bottom:129.915300px;}
.y110{bottom:130.107150px;}
.yd1{bottom:130.159500px;}
.yef{bottom:131.184750px;}
.y2e8{bottom:133.032750px;}
.y109{bottom:134.173350px;}
.y26{bottom:134.409450px;}
.y16e{bottom:137.277000px;}
.y1b3{bottom:140.465100px;}
.y80{bottom:146.714400px;}
.y208{bottom:146.728800px;}
.y1f2{bottom:146.750700px;}
.y2b8{bottom:146.801700px;}
.y140{bottom:147.069600px;}
.y232{bottom:147.440400px;}
.y15a{bottom:148.086900px;}
.y25f{bottom:148.286250px;}
.y289{bottom:148.417200px;}
.yd0{bottom:148.742850px;}
.yee{bottom:150.109800px;}
.y2e7{bottom:151.032750px;}
.y108{bottom:153.094800px;}
.y25{bottom:153.405450px;}
.y1b2{bottom:156.978900px;}
.y24{bottom:164.409450px;}
.yad{bottom:164.671950px;}
.y7f{bottom:164.790750px;}
.y207{bottom:164.808750px;}
.y1f1{bottom:164.836050px;}
.y2b7{bottom:164.899800px;}
.y13f{bottom:165.289650px;}
.y231{bottom:165.698250px;}
.y159{bottom:166.506300px;}
.y25e{bottom:166.755450px;}
.y288{bottom:166.919100px;}
.ycf{bottom:167.326200px;}
.y2e6{bottom:169.032750px;}
.yed{bottom:169.035000px;}
.y107{bottom:172.016400px;}
.y1b1{bottom:173.492850px;}
.y23{bottom:179.409450px;}
.yac{bottom:182.759400px;}
.y7e{bottom:182.866950px;}
.y206{bottom:182.888550px;}
.y2b6{bottom:182.997750px;}
.y52{bottom:183.168150px;}
.y13e{bottom:183.509550px;}
.y230{bottom:183.955950px;}
.y158{bottom:184.925700px;}
.y25d{bottom:185.224650px;}
.y287{bottom:185.421150px;}
.y2e5{bottom:187.032750px;}
.yec{bottom:187.960050px;}
.y106{bottom:190.937700px;}
.y10f{bottom:196.956000px;}
.y22{bottom:198.405450px;}
.yab{bottom:200.846850px;}
.y1f0{bottom:200.921400px;}
.y7d{bottom:200.943150px;}
.y205{bottom:200.968350px;}
.y2b5{bottom:201.095850px;}
.y51{bottom:201.421050px;}
.y13d{bottom:201.729600px;}
.y22f{bottom:202.213650px;}
.y157{bottom:203.344950px;}
.y25c{bottom:203.693850px;}
.yce{bottom:203.909400px;}
.y286{bottom:203.923050px;}
.y137{bottom:203.992650px;}
.y2e4{bottom:205.032750px;}
.y1b0{bottom:206.506650px;}
.yeb{bottom:206.885100px;}
.y105{bottom:209.859150px;}
.y10e{bottom:215.804700px;}
.y1ef{bottom:217.506750px;}
.yaa{bottom:218.934300px;}
.y7c{bottom:219.019350px;}
.y2b4{bottom:219.193950px;}
.y50{bottom:219.673950px;}
.y13c{bottom:219.949650px;}
.y22e{bottom:220.471500px;}
.y136{bottom:221.992650px;}
.y25b{bottom:222.163050px;}
.y285{bottom:222.424950px;}
.y2e3{bottom:223.032750px;}
.y1af{bottom:224.520600px;}
.yea{bottom:225.810300px;}
.y104{bottom:228.780600px;}
.y1ee{bottom:234.091950px;}
.ya9{bottom:237.021900px;}
.y204{bottom:237.048300px;}
.y7b{bottom:237.095700px;}
.y2b3{bottom:237.291900px;}
.y4f{bottom:237.927000px;}
.y13b{bottom:238.169700px;}
.y22d{bottom:238.729200px;}
.y135{bottom:239.992650px;}
.ycd{bottom:240.492750px;}
.y25a{bottom:240.632250px;}
.y284{bottom:240.926850px;}
.y2e2{bottom:241.032750px;}
.ye9{bottom:244.735350px;}
.y103{bottom:247.702050px;}
.y1ed{bottom:250.677300px;}
.y156{bottom:251.764350px;}
.y203{bottom:253.628100px;}
.ya8{bottom:255.109350px;}
.y7a{bottom:255.171900px;}
.y2b2{bottom:255.390000px;}
.y21{bottom:255.638400px;}
.y4e{bottom:256.179750px;}
.y22c{bottom:256.986900px;}
.y134{bottom:257.992650px;}
.y2e1{bottom:259.032750px;}
.ycc{bottom:259.076100px;}
.y259{bottom:259.101450px;}
.y283{bottom:259.428750px;}
.y1ae{bottom:260.534400px;}
.ye8{bottom:263.660400px;}
.y102{bottom:266.623500px;}
.y155{bottom:270.183750px;}
.y202{bottom:270.207900px;}
.y20{bottom:270.638400px;}
.ya7{bottom:273.196800px;}
.y79{bottom:273.248100px;}
.y2b1{bottom:273.488100px;}
.y13a{bottom:274.389750px;}
.y4d{bottom:274.432650px;}
.y22b{bottom:275.244750px;}
.y133{bottom:275.992650px;}
.y2e0{bottom:277.032750px;}
.y1ad{bottom:277.048350px;}
.y258{bottom:277.570650px;}
.ycb{bottom:277.659450px;}
.y282{bottom:277.930800px;}
.ye7{bottom:282.585600px;}
.y1ec{bottom:285.262650px;}
.y101{bottom:285.544950px;}
.y1f{bottom:285.638400px;}
.y201{bottom:286.787700px;}
.ya6{bottom:291.284250px;}
.y78{bottom:291.324300px;}
.y2b0{bottom:291.586050px;}
.y4c{bottom:292.685550px;}
.y22a{bottom:293.502450px;}
.y1ac{bottom:293.562300px;}
.y132{bottom:293.992650px;}
.y2df{bottom:295.032750px;}
.y257{bottom:296.039850px;}
.yca{bottom:296.242800px;}
.y281{bottom:296.432700px;}
.y1e{bottom:300.638400px;}
.ye6{bottom:301.510650px;}
.y100{bottom:304.466400px;}
.ya5{bottom:309.371700px;}
.y77{bottom:309.400650px;}
.y2af{bottom:309.684150px;}
.y1ab{bottom:310.076100px;}
.y4b{bottom:310.938600px;}
.y229{bottom:311.760150px;}
.y131{bottom:311.992650px;}
.y2de{bottom:313.032750px;}
.y256{bottom:314.509050px;}
.yc9{bottom:314.826150px;}
.y280{bottom:314.934600px;}
.y1d{bottom:315.638400px;}
.y1eb{bottom:321.348000px;}
.y200{bottom:321.367650px;}
.y139{bottom:322.609650px;}
.yff{bottom:323.387850px;}
.y1aa{bottom:326.590050px;}
.ya4{bottom:327.459300px;}
.y76{bottom:327.476850px;}
.y2ae{bottom:327.782250px;}
.y4a{bottom:329.191500px;}
.y130{bottom:329.992650px;}
.y228{bottom:330.018000px;}
.y1c{bottom:330.638400px;}
.y2dd{bottom:331.032750px;}
.y255{bottom:332.978250px;}
.yc8{bottom:333.409350px;}
.y27f{bottom:333.436500px;}
.y1ea{bottom:337.933200px;}
.ye5{bottom:338.435700px;}
.y1ff{bottom:339.447450px;}
.y138{bottom:340.829700px;}
.yfe{bottom:342.309300px;}
.y1a9{bottom:343.103850px;}
.ya3{bottom:345.546750px;}
.y75{bottom:345.553050px;}
.y1b{bottom:345.638400px;}
.y2ad{bottom:345.880350px;}
.y49{bottom:347.444250px;}
.y12f{bottom:347.992650px;}
.y2dc{bottom:349.032750px;}
.y254{bottom:351.447450px;}
.y27e{bottom:351.938550px;}
.yc7{bottom:351.992700px;}
.y1e9{bottom:354.518550px;}
.y1fe{bottom:357.527250px;}
.y1a8{bottom:359.617800px;}
.y1a{bottom:360.638400px;}
.yfd{bottom:361.230750px;}
.y74{bottom:363.629250px;}
.ya2{bottom:363.634200px;}
.y2ac{bottom:363.978450px;}
.y48{bottom:365.697300px;}
.y12e{bottom:365.992650px;}
.y227{bottom:366.275700px;}
.y2db{bottom:367.032750px;}
.y253{bottom:369.916650px;}
.y27d{bottom:370.440450px;}
.yc6{bottom:370.576050px;}
.ye4{bottom:375.360750px;}
.y1fd{bottom:375.607200px;}
.y1a7{bottom:376.131600px;}
.yfc{bottom:380.152200px;}
.y73{bottom:381.705600px;}
.ya1{bottom:381.721650px;}
.y2ab{bottom:382.076400px;}
.y47{bottom:383.950200px;}
.y12d{bottom:383.992650px;}
.y2da{bottom:385.032750px;}
.y252{bottom:388.385850px;}
.y27c{bottom:388.942350px;}
.y1e8{bottom:389.103900px;}
.yc5{bottom:389.159400px;}
.y19{bottom:390.638400px;}
.y1a6{bottom:392.645550px;}
.y1fc{bottom:393.687000px;}
.ye3{bottom:394.285950px;}
.y72{bottom:399.781800px;}
.ya0{bottom:399.809100px;}
.y2aa{bottom:400.174500px;}
.y12c{bottom:401.992650px;}
.y46{bottom:402.203100px;}
.y18c{bottom:402.230700px;}
.y2d9{bottom:403.032750px;}
.y251{bottom:406.855050px;}
.y1e7{bottom:407.189250px;}
.y27b{bottom:407.444250px;}
.yc4{bottom:407.742750px;}
.y1a5{bottom:409.159350px;}
.y1fb{bottom:411.766800px;}
.y18{bottom:412.238400px;}
.y71{bottom:417.858000px;}
.y9f{bottom:417.896550px;}
.y2a9{bottom:418.272600px;}
.y12b{bottom:419.992650px;}
.y45{bottom:420.456000px;}
.y226{bottom:420.533550px;}
.y18b{bottom:420.865050px;}
.y2d8{bottom:421.032750px;}
.y1e6{bottom:425.274450px;}
.y250{bottom:425.324250px;}
.y27a{bottom:425.946300px;}
.yfb{bottom:429.073650px;}
.y1fa{bottom:429.846750px;}
.y17{bottom:433.838400px;}
.y70{bottom:435.934200px;}
.y9e{bottom:435.984150px;}
.y2a8{bottom:436.370550px;}
.y225{bottom:437.291250px;}
.y12a{bottom:437.992650px;}
.y44{bottom:438.708900px;}
.y2d7{bottom:439.032750px;}
.y18a{bottom:439.499400px;}
.y1e5{bottom:443.359800px;}
.y1a4{bottom:443.673300px;}
.y24f{bottom:443.793450px;}
.yc3{bottom:444.326100px;}
.y279{bottom:444.448200px;}
.y1f9{bottom:447.926550px;}
.yfa{bottom:447.995100px;}
.y6f{bottom:454.010400px;}
.y224{bottom:454.048950px;}
.y9d{bottom:454.071600px;}
.y2a7{bottom:454.468650px;}
.y129{bottom:455.992650px;}
.y43{bottom:456.961800px;}
.y2d6{bottom:457.032750px;}
.y189{bottom:458.133750px;}
.y1e4{bottom:461.445150px;}
.y1a3{bottom:461.687250px;}
.y24e{bottom:462.262650px;}
.y278{bottom:462.950100px;}
.y1f8{bottom:466.006350px;}
.y223{bottom:470.806650px;}
.y6e{bottom:472.086750px;}
.y9c{bottom:472.159050px;}
.y2a6{bottom:472.566750px;}
.y128{bottom:473.992650px;}
.y2d5{bottom:475.032750px;}
.y42{bottom:475.214700px;}
.y188{bottom:476.768100px;}
.y1e3{bottom:479.530500px;}
.y1a2{bottom:479.701050px;}
.y24d{bottom:480.731850px;}
.y277{bottom:481.452000px;}
.y16{bottom:485.438400px;}
.y222{bottom:487.564500px;}
.y6d{bottom:490.162950px;}
.y9b{bottom:490.246500px;}
.y2a5{bottom:490.664700px;}
.y2d4{bottom:493.032750px;}
.y41{bottom:493.467600px;}
.y187{bottom:495.402450px;}
.y1e2{bottom:497.615700px;}
.yc2{bottom:498.909450px;}
.y24c{bottom:499.201050px;}
.y276{bottom:499.953900px;}
.y15{bottom:500.438400px;}
.y6c{bottom:508.239150px;}
.y9a{bottom:508.333950px;}
.y2a4{bottom:508.762800px;}
.y127{bottom:509.992650px;}
.y2d3{bottom:511.032750px;}
.y40{bottom:511.720500px;}
.y186{bottom:514.036800px;}
.y1f7{bottom:514.086300px;}
.y14{bottom:515.438400px;}
.y1e1{bottom:515.701050px;}
.y1a1{bottom:515.715000px;}
.yc1{bottom:517.492650px;}
.y24b{bottom:517.670250px;}
.y275{bottom:518.455950px;}
.y221{bottom:522.322200px;}
.y6b{bottom:526.315500px;}
.y99{bottom:526.421550px;}
.y2a3{bottom:526.860900px;}
.y2d2{bottom:529.032750px;}
.y3f{bottom:529.973400px;}
.y1cb{bottom:530.094600px;}
.y13{bottom:530.438400px;}
.y1f6{bottom:532.166100px;}
.y185{bottom:532.671150px;}
.y1e0{bottom:533.786400px;}
.yc0{bottom:536.076150px;}
.y24a{bottom:536.139450px;}
.y274{bottom:536.957850px;}
.y220{bottom:540.579900px;}
.y6a{bottom:544.391700px;}
.y98{bottom:544.509000px;}
.y2a2{bottom:544.958850px;}
.y12{bottom:545.438400px;}
.y126{bottom:545.992650px;}
.y2d1{bottom:547.032750px;}
.y3e{bottom:548.226300px;}
.y1ca{bottom:548.851650px;}
.y10d{bottom:550.855050px;}
.y184{bottom:551.305500px;}
.y1a0{bottom:551.728800px;}
.y1df{bottom:551.871750px;}
.y249{bottom:554.608650px;}
.ybf{bottom:554.659350px;}
.y273{bottom:555.459750px;}
.y21f{bottom:558.837750px;}
.y11{bottom:560.438400px;}
.y69{bottom:562.467900px;}
.y97{bottom:562.596450px;}
.y2a1{bottom:563.056950px;}
.y125{bottom:563.992650px;}
.y2d0{bottom:565.032750px;}
.y3d{bottom:566.479200px;}
.y1c9{bottom:567.608700px;}
.y10c{bottom:569.703900px;}
.y19f{bottom:569.742750px;}
.y183{bottom:569.939850px;}
.y1de{bottom:569.956950px;}
.y248{bottom:573.077850px;}
.ybe{bottom:573.242700px;}
.y272{bottom:573.961650px;}
.y154{bottom:575.129400px;}
.y10{bottom:575.438400px;}
.y21e{bottom:577.095450px;}
.y68{bottom:580.544100px;}
.y96{bottom:580.683900px;}
.y2a0{bottom:581.155050px;}
.y124{bottom:581.992650px;}
.y2cf{bottom:583.032750px;}
.y3c{bottom:584.732100px;}
.y1c8{bottom:586.365750px;}
.y19e{bottom:587.756700px;}
.y1dd{bottom:588.042300px;}
.y182{bottom:588.574200px;}
.yf{bottom:590.438400px;}
.y247{bottom:591.547050px;}
.ybd{bottom:591.826050px;}
.y271{bottom:592.463700px;}
.y153{bottom:593.548800px;}
.y21d{bottom:595.353150px;}
.y67{bottom:598.620450px;}
.y95{bottom:598.771350px;}
.y29f{bottom:599.253000px;}
.y123{bottom:599.992650px;}
.y2ce{bottom:601.032750px;}
.y3b{bottom:602.985000px;}
.ye2{bottom:604.116300px;}
.y1c7{bottom:605.122800px;}
.ye{bottom:605.438400px;}
.y19d{bottom:605.770500px;}
.y1dc{bottom:606.127650px;}
.y181{bottom:607.208550px;}
.y246{bottom:610.016250px;}
.ybc{bottom:610.409400px;}
.y270{bottom:610.965600px;}
.y152{bottom:611.968200px;}
.y21c{bottom:613.611000px;}
.y66{bottom:616.696650px;}
.y94{bottom:616.858950px;}
.y29e{bottom:617.351100px;}
.y122{bottom:617.992650px;}
.y2cd{bottom:619.032750px;}
.yd{bottom:620.438400px;}
.ye1{bottom:623.041350px;}
.y1c6{bottom:623.879850px;}
.y1db{bottom:624.213000px;}
.y180{bottom:625.842900px;}
.y245{bottom:628.485450px;}
.ybb{bottom:628.992750px;}
.y26f{bottom:629.467500px;}
.y151{bottom:630.387600px;}
.y21b{bottom:631.868700px;}
.y16d{bottom:634.335000px;}
.y65{bottom:634.772850px;}
.y93{bottom:634.946400px;}
.yc{bottom:635.438400px;}
.y29d{bottom:635.449200px;}
.y121{bottom:635.992650px;}
.y2cc{bottom:637.032750px;}
.y3a{bottom:639.237900px;}
.y19c{bottom:641.784450px;}
.ye0{bottom:641.966400px;}
.y1da{bottom:642.298350px;}
.y1c5{bottom:642.636900px;}
.y17f{bottom:644.477400px;}
.y244{bottom:646.954650px;}
.yba{bottom:647.575950px;}
.y26e{bottom:647.969400px;}
.y150{bottom:648.806850px;}
.y21a{bottom:650.126400px;}
.yb{bottom:650.438400px;}
.y16c{bottom:652.438650px;}
.y64{bottom:652.849050px;}
.y92{bottom:653.033850px;}
.y29c{bottom:653.547300px;}
.y120{bottom:653.992650px;}
.y2cb{bottom:655.032750px;}
.y19b{bottom:658.298250px;}
.y1d9{bottom:660.383550px;}
.ydf{bottom:660.891600px;}
.y1c4{bottom:661.393950px;}
.y17e{bottom:663.111750px;}
.y243{bottom:665.423850px;}
.y14f{bottom:667.226250px;}
.y219{bottom:668.384250px;}
.y16b{bottom:670.542300px;}
.y63{bottom:670.925400px;}
.y91{bottom:671.121300px;}
.y29b{bottom:671.645250px;}
.y11f{bottom:671.992650px;}
.y2ca{bottom:673.032750px;}
.y19a{bottom:674.812200px;}
.y1d8{bottom:678.468900px;}
.yde{bottom:679.816650px;}
.y1c3{bottom:680.151000px;}
.ya{bottom:680.438400px;}
.y17d{bottom:681.745950px;}
.y242{bottom:683.893050px;}
.yb9{bottom:684.159450px;}
.y26d{bottom:684.471450px;}
.y14e{bottom:685.645650px;}
.y218{bottom:686.641950px;}
.y16a{bottom:688.645800px;}
.y62{bottom:689.001600px;}
.y90{bottom:689.208750px;}
.y29a{bottom:689.743350px;}
.y11e{bottom:689.992650px;}
.y2c9{bottom:691.032750px;}
.y199{bottom:691.326000px;}
.y1d7{bottom:696.554250px;}
.ydd{bottom:698.741700px;}
.y1c2{bottom:698.908050px;}
.y17c{bottom:700.380450px;}
.y241{bottom:702.362250px;}
.yb8{bottom:702.742650px;}
.y14d{bottom:704.064900px;}
.y217{bottom:704.899650px;}
.y169{bottom:706.749450px;}
.y61{bottom:707.077800px;}
.y8f{bottom:707.296350px;}
.y299{bottom:707.841450px;}
.y11d{bottom:707.992650px;}
.y39{bottom:708.490800px;}
.y2c8{bottom:709.032750px;}
.y1c1{bottom:717.665100px;}
.ydc{bottom:717.666750px;}
.y17b{bottom:719.014650px;}
.y240{bottom:720.831450px;}
.yb7{bottom:721.326000px;}
.y14c{bottom:722.484300px;}
.y9{bottom:723.038400px;}
.y216{bottom:723.157500px;}
.y168{bottom:724.853100px;}
.y38{bottom:724.943700px;}
.y60{bottom:725.154000px;}
.y8e{bottom:725.383800px;}
.y198{bottom:725.839950px;}
.y298{bottom:725.939550px;}
.y11c{bottom:725.992650px;}
.y2c7{bottom:727.032750px;}
.y1d6{bottom:732.639600px;}
.y1c0{bottom:736.422150px;}
.y17a{bottom:737.649150px;}
.y26c{bottom:738.973350px;}
.y23f{bottom:739.300650px;}
.yb6{bottom:739.909350px;}
.y14b{bottom:740.903700px;}
.y37{bottom:741.396600px;}
.y215{bottom:741.415200px;}
.y167{bottom:742.956600px;}
.y5f{bottom:743.230350px;}
.y8d{bottom:743.471250px;}
.y197{bottom:743.853900px;}
.y11b{bottom:743.992650px;}
.y297{bottom:744.037500px;}
.y2c6{bottom:745.032750px;}
.y1d5{bottom:749.224800px;}
.ydb{bottom:754.591950px;}
.y1bf{bottom:755.179200px;}
.y8{bottom:756.038400px;}
.y179{bottom:756.283500px;}
.y26b{bottom:757.475250px;}
.y23e{bottom:757.769850px;}
.y36{bottom:757.849500px;}
.yb5{bottom:758.492700px;}
.y14a{bottom:759.323100px;}
.y214{bottom:759.672900px;}
.y166{bottom:761.060250px;}
.y5e{bottom:761.306550px;}
.y8c{bottom:761.558700px;}
.y196{bottom:761.867700px;}
.y11a{bottom:761.992650px;}
.y296{bottom:762.135600px;}
.y2c5{bottom:763.032750px;}
.y1d4{bottom:765.810150px;}
.yf9{bottom:772.621050px;}
.y1be{bottom:773.936250px;}
.y178{bottom:774.917850px;}
.y26a{bottom:775.977150px;}
.y23d{bottom:776.239050px;}
.y149{bottom:777.742350px;}
.y213{bottom:777.930750px;}
.y165{bottom:779.163900px;}
.y5d{bottom:779.382750px;}
.y7{bottom:779.438400px;}
.y8b{bottom:779.646300px;}
.y195{bottom:779.881650px;}
.y119{bottom:779.992650px;}
.y295{bottom:780.233700px;}
.y2c4{bottom:781.032750px;}
.y1d3{bottom:782.395500px;}
.y35{bottom:789.302400px;}
.yda{bottom:791.517000px;}
.yf8{bottom:791.542500px;}
.y1bd{bottom:792.693300px;}
.y177{bottom:793.552200px;}
.y269{bottom:794.479200px;}
.y23c{bottom:794.708250px;}
.yb4{bottom:795.076050px;}
.y148{bottom:796.161750px;}
.y212{bottom:796.188450px;}
.y164{bottom:797.267550px;}
.y5c{bottom:797.458950px;}
.y8a{bottom:797.733600px;}
.y194{bottom:797.895450px;}
.y118{bottom:797.992650px;}
.y294{bottom:798.331650px;}
.y1d2{bottom:798.980850px;}
.y2c3{bottom:799.032750px;}
.y6{bottom:802.838400px;}
.y34{bottom:804.555300px;}
.yd9{bottom:810.442050px;}
.yf7{bottom:810.463950px;}
.y1bc{bottom:811.450350px;}
.y176{bottom:812.186550px;}
.y268{bottom:812.981100px;}
.y23b{bottom:813.177450px;}
.y211{bottom:814.446150px;}
.y147{bottom:814.581150px;}
.y163{bottom:815.371050px;}
.y5b{bottom:815.535300px;}
.y89{bottom:815.821050px;}
.y193{bottom:815.909400px;}
.y117{bottom:815.992650px;}
.y293{bottom:816.429750px;}
.y2c2{bottom:817.032750px;}
.y33{bottom:819.808200px;}
.yd8{bottom:829.367250px;}
.yf6{bottom:829.385400px;}
.y1bb{bottom:830.207400px;}
.y175{bottom:830.820900px;}
.y267{bottom:831.483000px;}
.y23a{bottom:831.646650px;}
.y210{bottom:832.704000px;}
.y146{bottom:833.000400px;}
.y162{bottom:833.474700px;}
.y1d1{bottom:833.566200px;}
.y5a{bottom:833.611500px;}
.y88{bottom:833.908650px;}
.y192{bottom:833.923350px;}
.y116{bottom:833.992650px;}
.y292{bottom:834.527850px;}
.y2c1{bottom:835.032750px;}
.y32{bottom:835.061100px;}
.yd7{bottom:848.292300px;}
.yf5{bottom:848.306850px;}
.y1ba{bottom:848.964450px;}
.y174{bottom:849.455250px;}
.yb3{bottom:849.659400px;}
.y266{bottom:849.984900px;}
.y239{bottom:850.115850px;}
.y31{bottom:850.314000px;}
.y20f{bottom:850.961700px;}
.y145{bottom:851.419800px;}
.y161{bottom:851.578350px;}
.y1d0{bottom:851.651400px;}
.y59{bottom:851.687700px;}
.y191{bottom:851.937150px;}
.y115{bottom:851.992650px;}
.y87{bottom:851.996100px;}
.y291{bottom:852.625800px;}
.y2c0{bottom:853.032750px;}
.y4{bottom:866.486400px;}
.yd6{bottom:867.217350px;}
.yf4{bottom:867.228300px;}
.y1b9{bottom:867.721500px;}
.y173{bottom:868.089600px;}
.yb2{bottom:868.242600px;}
.y265{bottom:868.486950px;}
.y238{bottom:868.585050px;}
.y20e{bottom:869.219400px;}
.y160{bottom:869.681850px;}
.y1cf{bottom:869.736750px;}
.y58{bottom:869.764050px;}
.y190{bottom:869.950950px;}
.y114{bottom:869.992650px;}
.y86{bottom:870.083550px;}
.y290{bottom:870.723900px;}
.y2bf{bottom:871.032750px;}
.yd5{bottom:886.142550px;}
.yf3{bottom:886.149750px;}
.y1b8{bottom:886.478550px;}
.y172{bottom:886.723950px;}
.yb1{bottom:886.825950px;}
.y264{bottom:886.988850px;}
.y237{bottom:887.054250px;}
.y20d{bottom:887.477100px;}
.y15f{bottom:887.785500px;}
.y1ce{bottom:887.821950px;}
.y144{bottom:887.839200px;}
.y57{bottom:887.840250px;}
.y18f{bottom:887.964900px;}
.y113{bottom:887.992650px;}
.y85{bottom:888.171000px;}
.y28f{bottom:888.822000px;}
.y2be{bottom:889.032750px;}
.y3{bottom:895.391700px;}
.y30{bottom:895.566900px;}
.yd4{bottom:905.067600px;}
.yf2{bottom:905.071200px;}
.y1b7{bottom:905.235600px;}
.y171{bottom:905.358300px;}
.yb0{bottom:905.409300px;}
.y263{bottom:905.490750px;}
.y236{bottom:905.523450px;}
.y20c{bottom:905.734950px;}
.y15e{bottom:905.889000px;}
.y1cd{bottom:905.907300px;}
.y56{bottom:905.916450px;}
.y18e{bottom:905.978700px;}
.y112{bottom:905.992650px;}
.y28e{bottom:906.919950px;}
.y2bd{bottom:907.032750px;}
.y2f{bottom:910.819950px;}
.y2{bottom:912.297000px;}
.y55{bottom:923.992650px;}
.y84{bottom:924.258450px;}
.y143{bottom:924.258600px;}
.y28d{bottom:925.018050px;}
.y2bc{bottom:925.032750px;}
.y2e{bottom:926.072700px;}
.y5{bottom:945.503700px;}
.y2d{bottom:961.951950px;}
.y2c{bottom:1023.565650px;}
.y2b{bottom:1041.565650px;}
.he{height:26.133188px;}
.h17{height:26.789437px;}
.h8{height:36.852539px;}
.h2{height:38.136000px;}
.h10{height:40.546875px;}
.hf{height:42.117188px;}
.h4{height:43.584000px;}
.h3{height:43.860000px;}
.h12{height:45.181641px;}
.hb{height:47.381836px;}
.ha{height:47.513672px;}
.h9{height:47.961914px;}
.h11{height:48.120117px;}
.h7{height:52.646484px;}
.h19{height:52.792969px;}
.h16{height:53.466797px;}
.h13{height:57.911133px;}
.h15{height:58.072266px;}
.h18{height:58.620117px;}
.h14{height:58.813477px;}
.hc{height:63.175781px;}
.hd{height:64.160156px;}
.h6{height:68.440430px;}
.h5{height:68.630859px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:85.039350px;}
.x2{left:94.606350px;}
.x5{left:106.299150px;}
.x10{left:108.365550px;}
.xc{left:111.306150px;}
.xb{left:123.581550px;}
.x6{left:127.559100px;}
.x13{left:136.080450px;}
.x12{left:137.959050px;}
.xf{left:141.588300px;}
.x11{left:148.818900px;}
.x9{left:163.114200px;}
.x7{left:184.592400px;}
.xe{left:205.594650px;}
.xa{left:242.743050px;}
.xd{left:271.439250px;}
.x8{left:287.274300px;}
.x3{left:555.477000px;}
.x1{left:614.443200px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.lsc{letter-spacing:-1.173333pt;}
.ls4{letter-spacing:-0.880000pt;}
.ls2{letter-spacing:-0.586667pt;}
.lse{letter-spacing:-0.533333pt;}
.ls3{letter-spacing:-0.293333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009067pt;}
.ls5{letter-spacing:0.293333pt;}
.ls6{letter-spacing:0.880000pt;}
.lsb{letter-spacing:0.957333pt;}
.lsd{letter-spacing:1.104533pt;}
.ls8{letter-spacing:1.173333pt;}
.lsa{letter-spacing:1.981333pt;}
.ls9{letter-spacing:4.964800pt;}
.ls7{letter-spacing:13.333333pt;}
.ws2{word-spacing:-17.333333pt;}
.ws19{word-spacing:-14.666667pt;}
.wse2{word-spacing:-13.333333pt;}
.wsef{word-spacing:-12.800000pt;}
.ws18{word-spacing:-12.000000pt;}
.ws4{word-spacing:-10.666667pt;}
.ws0{word-spacing:-10.378667pt;}
.ws5{word-spacing:-9.333333pt;}
.ws3{word-spacing:-7.773333pt;}
.wscd{word-spacing:-4.752000pt;}
.ws92{word-spacing:-3.989333pt;}
.wsc3{word-spacing:-3.696000pt;}
.ws53{word-spacing:-3.168000pt;}
.ws9d{word-spacing:-3.050667pt;}
.wsd5{word-spacing:-2.992000pt;}
.ws6c{word-spacing:-2.933333pt;}
.ws7f{word-spacing:-2.874667pt;}
.ws29{word-spacing:-2.816000pt;}
.ws61{word-spacing:-2.757333pt;}
.ws11{word-spacing:-2.736000pt;}
.wse7{word-spacing:-2.720000pt;}
.ws8{word-spacing:-2.688000pt;}
.wsc1{word-spacing:-2.666667pt;}
.ws38{word-spacing:-2.581333pt;}
.wsff{word-spacing:-2.560000pt;}
.wsdb{word-spacing:-2.522667pt;}
.wsa5{word-spacing:-2.464000pt;}
.wsfb{word-spacing:-2.453333pt;}
.ws81{word-spacing:-2.405333pt;}
.ws90{word-spacing:-2.346667pt;}
.ws9a{word-spacing:-2.288000pt;}
.ws4b{word-spacing:-2.229333pt;}
.wsb4{word-spacing:-2.186667pt;}
.ws51{word-spacing:-2.170667pt;}
.ws95{word-spacing:-2.112000pt;}
.ws33{word-spacing:-2.053333pt;}
.ws45{word-spacing:-1.936000pt;}
.ws26{word-spacing:-1.877333pt;}
.ws49{word-spacing:-1.818667pt;}
.wsbc{word-spacing:-1.760000pt;}
.ws108{word-spacing:-1.653333pt;}
.ws7c{word-spacing:-1.642667pt;}
.wsfe{word-spacing:-1.600000pt;}
.wse{word-spacing:-1.584000pt;}
.wsf1{word-spacing:-1.546667pt;}
.ws83{word-spacing:-1.525333pt;}
.ws2f{word-spacing:-1.466667pt;}
.ws4c{word-spacing:-1.408000pt;}
.wsfd{word-spacing:-1.386667pt;}
.ws37{word-spacing:-1.349333pt;}
.wse6{word-spacing:-1.333333pt;}
.ws7a{word-spacing:-1.290667pt;}
.ws36{word-spacing:-1.232000pt;}
.ws86{word-spacing:-1.173333pt;}
.ws47{word-spacing:-1.114667pt;}
.wsb6{word-spacing:-1.066667pt;}
.ws24{word-spacing:-1.056000pt;}
.wsaa{word-spacing:-1.013333pt;}
.wsa7{word-spacing:-0.997333pt;}
.wsa{word-spacing:-0.960000pt;}
.ws89{word-spacing:-0.938667pt;}
.ws22{word-spacing:-0.880000pt;}
.wsf3{word-spacing:-0.853333pt;}
.wsa9{word-spacing:-0.800000pt;}
.ws98{word-spacing:-0.762667pt;}
.wsc7{word-spacing:-0.746667pt;}
.ws43{word-spacing:-0.704000pt;}
.wsc6{word-spacing:-0.693333pt;}
.wse4{word-spacing:-0.645333pt;}
.ws55{word-spacing:-0.586667pt;}
.ws10{word-spacing:-0.576000pt;}
.wsde{word-spacing:-0.528000pt;}
.wsc0{word-spacing:-0.480000pt;}
.ws96{word-spacing:-0.469333pt;}
.ws1c{word-spacing:-0.432000pt;}
.wsab{word-spacing:-0.426667pt;}
.wsbb{word-spacing:-0.410667pt;}
.wsca{word-spacing:-0.373333pt;}
.ws75{word-spacing:-0.352000pt;}
.ws6e{word-spacing:-0.293333pt;}
.ws106{word-spacing:-0.266667pt;}
.ws9{word-spacing:-0.192000pt;}
.ws97{word-spacing:-0.176000pt;}
.wsc5{word-spacing:-0.160000pt;}
.ws44{word-spacing:-0.117333pt;}
.wsd3{word-spacing:-0.106667pt;}
.ws4e{word-spacing:-0.058667pt;}
.ws1a{word-spacing:-0.048000pt;}
.ws1{word-spacing:-0.037333pt;}
.ws6{word-spacing:0.000000pt;}
.ws13{word-spacing:0.048000pt;}
.ws100{word-spacing:0.053333pt;}
.ws77{word-spacing:0.058667pt;}
.wsbf{word-spacing:0.106667pt;}
.ws30{word-spacing:0.117333pt;}
.ws42{word-spacing:0.176000pt;}
.ws3d{word-spacing:0.234667pt;}
.ws109{word-spacing:0.266667pt;}
.ws2b{word-spacing:0.293333pt;}
.ws16{word-spacing:0.336000pt;}
.ws73{word-spacing:0.352000pt;}
.wse8{word-spacing:0.373333pt;}
.ws9f{word-spacing:0.410667pt;}
.ws87{word-spacing:0.469333pt;}
.wscb{word-spacing:0.480000pt;}
.ws6a{word-spacing:0.528000pt;}
.wsfa{word-spacing:0.533333pt;}
.ws2e{word-spacing:0.586667pt;}
.ws3b{word-spacing:0.645333pt;}
.wsa3{word-spacing:0.704000pt;}
.wsf4{word-spacing:0.746667pt;}
.wsd2{word-spacing:0.762667pt;}
.wse5{word-spacing:0.800000pt;}
.wsa0{word-spacing:0.821333pt;}
.wsf7{word-spacing:0.853333pt;}
.ws60{word-spacing:0.880000pt;}
.ws39{word-spacing:0.938667pt;}
.ws4f{word-spacing:0.997333pt;}
.wsb9{word-spacing:1.013333pt;}
.ws3c{word-spacing:1.056000pt;}
.wsb1{word-spacing:1.066667pt;}
.ws57{word-spacing:1.114667pt;}
.ws9b{word-spacing:1.173333pt;}
.ws76{word-spacing:1.232000pt;}
.wsd4{word-spacing:1.280000pt;}
.ws2a{word-spacing:1.290667pt;}
.wsb{word-spacing:1.296000pt;}
.ws4d{word-spacing:1.349333pt;}
.ws4a{word-spacing:1.408000pt;}
.ws54{word-spacing:1.466667pt;}
.wsed{word-spacing:1.493333pt;}
.ws50{word-spacing:1.525333pt;}
.wsc4{word-spacing:1.546667pt;}
.ws6b{word-spacing:1.584000pt;}
.ws5f{word-spacing:1.642667pt;}
.ws21{word-spacing:1.701333pt;}
.ws94{word-spacing:1.760000pt;}
.wsea{word-spacing:1.813333pt;}
.ws68{word-spacing:1.818667pt;}
.ws8d{word-spacing:1.877333pt;}
.ws1e{word-spacing:1.920000pt;}
.ws34{word-spacing:1.936000pt;}
.wsb3{word-spacing:1.973333pt;}
.ws35{word-spacing:1.994667pt;}
.ws3a{word-spacing:2.053333pt;}
.wsa1{word-spacing:2.112000pt;}
.ws8a{word-spacing:2.170667pt;}
.wsd6{word-spacing:2.229333pt;}
.ws5e{word-spacing:2.288000pt;}
.ws1f{word-spacing:2.346667pt;}
.ws64{word-spacing:2.405333pt;}
.wsf8{word-spacing:2.453333pt;}
.wsbd{word-spacing:2.464000pt;}
.wsf0{word-spacing:2.506667pt;}
.wsbe{word-spacing:2.522667pt;}
.wsf{word-spacing:2.544000pt;}
.ws3f{word-spacing:2.581333pt;}
.ws17{word-spacing:2.640000pt;}
.ws101{word-spacing:2.666667pt;}
.wsb0{word-spacing:2.720000pt;}
.ws9c{word-spacing:2.757333pt;}
.ws65{word-spacing:2.816000pt;}
.wsad{word-spacing:2.826667pt;}
.ws66{word-spacing:2.874667pt;}
.ws1b{word-spacing:2.928000pt;}
.ws107{word-spacing:2.986667pt;}
.ws72{word-spacing:3.109333pt;}
.wsd1{word-spacing:3.168000pt;}
.wse9{word-spacing:3.200000pt;}
.ws5d{word-spacing:3.226667pt;}
.wsda{word-spacing:3.285333pt;}
.ws7e{word-spacing:3.344000pt;}
.wsb5{word-spacing:3.413333pt;}
.ws105{word-spacing:3.466667pt;}
.wsdd{word-spacing:3.578667pt;}
.ws25{word-spacing:3.637333pt;}
.ws67{word-spacing:3.696000pt;}
.wsce{word-spacing:3.754667pt;}
.ws31{word-spacing:3.813333pt;}
.ws7b{word-spacing:3.872000pt;}
.ws48{word-spacing:3.989333pt;}
.ws56{word-spacing:4.048000pt;}
.ws88{word-spacing:4.106667pt;}
.wsee{word-spacing:4.160000pt;}
.ws32{word-spacing:4.224000pt;}
.ws15{word-spacing:4.272000pt;}
.ws84{word-spacing:4.282667pt;}
.ws79{word-spacing:4.341333pt;}
.wsf9{word-spacing:4.373333pt;}
.ws5c{word-spacing:4.400000pt;}
.wsec{word-spacing:4.426667pt;}
.wsc8{word-spacing:4.458667pt;}
.ws2c{word-spacing:4.576000pt;}
.wsac{word-spacing:4.586667pt;}
.wse1{word-spacing:4.634667pt;}
.wsa6{word-spacing:4.693333pt;}
.ws104{word-spacing:4.853333pt;}
.ws52{word-spacing:4.986667pt;}
.wsb8{word-spacing:5.013333pt;}
.wsd8{word-spacing:5.104000pt;}
.wsb2{word-spacing:5.120000pt;}
.wsf5{word-spacing:5.226667pt;}
.wsdc{word-spacing:5.280000pt;}
.wsae{word-spacing:5.386667pt;}
.ws59{word-spacing:5.456000pt;}
.ws58{word-spacing:5.514667pt;}
.ws23{word-spacing:5.573333pt;}
.ws103{word-spacing:5.600000pt;}
.ws7{word-spacing:5.664000pt;}
.ws12{word-spacing:5.808000pt;}
.wsb7{word-spacing:5.813333pt;}
.wsd7{word-spacing:5.866667pt;}
.wsaf{word-spacing:5.920000pt;}
.ws62{word-spacing:5.925333pt;}
.ws8b{word-spacing:5.984000pt;}
.wsf2{word-spacing:6.026667pt;}
.ws20{word-spacing:6.042667pt;}
.ws69{word-spacing:6.160000pt;}
.wsf6{word-spacing:6.240000pt;}
.ws99{word-spacing:6.277333pt;}
.ws14{word-spacing:6.288000pt;}
.ws78{word-spacing:6.336000pt;}
.ws6d{word-spacing:6.394667pt;}
.wscc{word-spacing:6.453333pt;}
.ws102{word-spacing:6.560000pt;}
.ws41{word-spacing:6.570667pt;}
.ws8f{word-spacing:6.629333pt;}
.wseb{word-spacing:6.666667pt;}
.ws46{word-spacing:6.688000pt;}
.ws27{word-spacing:6.864000pt;}
.ws5b{word-spacing:6.981333pt;}
.wse0{word-spacing:7.392000pt;}
.ws80{word-spacing:7.450667pt;}
.wsc9{word-spacing:7.466667pt;}
.ws8e{word-spacing:7.509333pt;}
.wsfc{word-spacing:7.733333pt;}
.ws7d{word-spacing:7.744000pt;}
.wsa8{word-spacing:7.802667pt;}
.wsc2{word-spacing:7.861333pt;}
.wsdf{word-spacing:7.920000pt;}
.wsa4{word-spacing:7.978667pt;}
.ws74{word-spacing:8.037333pt;}
.ws3e{word-spacing:8.096000pt;}
.wsd{word-spacing:8.160000pt;}
.ws91{word-spacing:8.330667pt;}
.ws85{word-spacing:8.448000pt;}
.ws70{word-spacing:8.506667pt;}
.ws8c{word-spacing:8.565333pt;}
.wscf{word-spacing:8.682667pt;}
.wse3{word-spacing:8.741333pt;}
.ws40{word-spacing:8.858667pt;}
.ws63{word-spacing:8.976000pt;}
.wsd0{word-spacing:9.034667pt;}
.wsba{word-spacing:9.093333pt;}
.wsa2{word-spacing:9.386667pt;}
.ws5a{word-spacing:9.445333pt;}
.ws28{word-spacing:9.504000pt;}
.wsd9{word-spacing:9.562667pt;}
.ws82{word-spacing:9.856000pt;}
.ws9e{word-spacing:10.090667pt;}
.ws2d{word-spacing:10.149333pt;}
.wsc{word-spacing:10.272000pt;}
.ws71{word-spacing:10.384000pt;}
.ws93{word-spacing:10.442667pt;}
.ws6f{word-spacing:11.322667pt;}
.ws1d{word-spacing:13.824000pt;}
._11{margin-left:-1965.354133pt;}
._c{margin-left:-7.785600pt;}
._10{margin-left:-6.560000pt;}
._5{margin-left:-5.521067pt;}
._12{margin-left:-4.540800pt;}
._1{margin-left:-3.438400pt;}
._2{margin-left:-2.120533pt;}
._0{margin-left:-1.049067pt;}
._f{width:1.070933pt;}
._14{width:1.965333pt;}
._b{width:2.902933pt;}
._e{width:4.688000pt;}
._3{width:5.668267pt;}
._13{width:6.622933pt;}
._d{width:8.102400pt;}
._15{width:9.233600pt;}
._6{width:22.560000pt;}
._16{width:31.590933pt;}
._4{width:56.934400pt;}
._9{width:131.726933pt;}
._8{width:136.420267pt;}
._7{width:157.796267pt;}
._a{width:255.209067pt;}
.fs7{font-size:24.874667pt;}
.fs4{font-size:31.093333pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:38.690400pt;}
.y2a{bottom:66.141733pt;}
.y10b{bottom:66.141867pt;}
.y170{bottom:69.693867pt;}
.y29{bottom:79.475067pt;}
.y1b6{bottom:80.820800pt;}
.y83{bottom:82.209600pt;}
.y20b{bottom:82.212667pt;}
.y1f5{bottom:82.217600pt;}
.yaf{bottom:82.219467pt;}
.y2bb{bottom:82.228933pt;}
.y142{bottom:82.337333pt;}
.y54{bottom:82.366533pt;}
.y235{bottom:82.370800pt;}
.y15d{bottom:82.514533pt;}
.y262{bottom:82.558800pt;}
.y28c{bottom:82.587867pt;}
.yd3{bottom:82.660267pt;}
.y18d{bottom:82.705600pt;}
.y1cc{bottom:82.814667pt;}
.y111{bottom:82.896267pt;}
.yf1{bottom:82.964000pt;}
.y10a{bottom:83.027200pt;}
.y1b5{bottom:95.499733pt;}
.y28{bottom:96.360400pt;}
.y82{bottom:98.277200pt;}
.y20a{bottom:98.283733pt;}
.y1f4{bottom:98.293467pt;}
.y2ba{bottom:98.316133pt;}
.y141{bottom:98.532933pt;}
.y234{bottom:98.600000pt;}
.y15c{bottom:98.887333pt;}
.y261{bottom:98.975867pt;}
.y28b{bottom:99.034133pt;}
.yd2{bottom:99.178800pt;}
.yf0{bottom:99.786400pt;}
.y16f{bottom:105.931867pt;}
.y27{bottom:106.141733pt;}
.y1b4{bottom:110.178800pt;}
.yae{bottom:114.297333pt;}
.y81{bottom:114.345067pt;}
.y209{bottom:114.354667pt;}
.y1f3{bottom:114.369333pt;}
.y2b9{bottom:114.403200pt;}
.y53{bottom:114.591333pt;}
.y233{bottom:114.829067pt;}
.y15b{bottom:115.260000pt;}
.y260{bottom:115.392933pt;}
.y28a{bottom:115.480267pt;}
.y110{bottom:115.650800pt;}
.yd1{bottom:115.697333pt;}
.yef{bottom:116.608667pt;}
.y2e8{bottom:118.251333pt;}
.y109{bottom:119.265200pt;}
.y26{bottom:119.475067pt;}
.y16e{bottom:122.024000pt;}
.y1b3{bottom:124.857867pt;}
.y80{bottom:130.412800pt;}
.y208{bottom:130.425600pt;}
.y1f2{bottom:130.445067pt;}
.y2b8{bottom:130.490400pt;}
.y140{bottom:130.728533pt;}
.y232{bottom:131.058133pt;}
.y15a{bottom:131.632800pt;}
.y25f{bottom:131.810000pt;}
.y289{bottom:131.926400pt;}
.yd0{bottom:132.215867pt;}
.yee{bottom:133.430933pt;}
.y2e7{bottom:134.251333pt;}
.y108{bottom:136.084267pt;}
.y25{bottom:136.360400pt;}
.y1b2{bottom:139.536800pt;}
.y24{bottom:146.141733pt;}
.yad{bottom:146.375067pt;}
.y7f{bottom:146.480667pt;}
.y207{bottom:146.496667pt;}
.y1f1{bottom:146.520933pt;}
.y2b7{bottom:146.577600pt;}
.y13f{bottom:146.924133pt;}
.y231{bottom:147.287333pt;}
.y159{bottom:148.005600pt;}
.y25e{bottom:148.227067pt;}
.y288{bottom:148.372533pt;}
.ycf{bottom:148.734400pt;}
.y2e6{bottom:150.251333pt;}
.yed{bottom:150.253333pt;}
.y107{bottom:152.903467pt;}
.y1b1{bottom:154.215867pt;}
.y23{bottom:159.475067pt;}
.yac{bottom:162.452800pt;}
.y7e{bottom:162.548400pt;}
.y206{bottom:162.567600pt;}
.y2b6{bottom:162.664667pt;}
.y52{bottom:162.816133pt;}
.y13e{bottom:163.119600pt;}
.y230{bottom:163.516400pt;}
.y158{bottom:164.378400pt;}
.y25d{bottom:164.644133pt;}
.y287{bottom:164.818800pt;}
.y2e5{bottom:166.251333pt;}
.yec{bottom:167.075600pt;}
.y106{bottom:169.722400pt;}
.y10f{bottom:175.072000pt;}
.y22{bottom:176.360400pt;}
.yab{bottom:178.530533pt;}
.y1f0{bottom:178.596800pt;}
.y7d{bottom:178.616133pt;}
.y205{bottom:178.638533pt;}
.y2b5{bottom:178.751867pt;}
.y51{bottom:179.040933pt;}
.y13d{bottom:179.315200pt;}
.y22f{bottom:179.745467pt;}
.y157{bottom:180.751067pt;}
.y25c{bottom:181.061200pt;}
.yce{bottom:181.252800pt;}
.y286{bottom:181.264933pt;}
.y137{bottom:181.326800pt;}
.y2e4{bottom:182.251333pt;}
.y1b0{bottom:183.561467pt;}
.yeb{bottom:183.897867pt;}
.y105{bottom:186.541467pt;}
.y10e{bottom:191.826400pt;}
.y1ef{bottom:193.339333pt;}
.yaa{bottom:194.608267pt;}
.y7c{bottom:194.683867pt;}
.y2b4{bottom:194.839067pt;}
.y50{bottom:195.265733pt;}
.y13c{bottom:195.510800pt;}
.y22e{bottom:195.974667pt;}
.y136{bottom:197.326800pt;}
.y25b{bottom:197.478267pt;}
.y285{bottom:197.711067pt;}
.y2e3{bottom:198.251333pt;}
.y1af{bottom:199.573867pt;}
.yea{bottom:200.720267pt;}
.y104{bottom:203.360533pt;}
.y1ee{bottom:208.081733pt;}
.ya9{bottom:210.686133pt;}
.y204{bottom:210.709600pt;}
.y7b{bottom:210.751733pt;}
.y2b3{bottom:210.926133pt;}
.y4f{bottom:211.490667pt;}
.y13b{bottom:211.706400pt;}
.y22d{bottom:212.203733pt;}
.y135{bottom:213.326800pt;}
.ycd{bottom:213.771333pt;}
.y25a{bottom:213.895333pt;}
.y284{bottom:214.157200pt;}
.y2e2{bottom:214.251333pt;}
.ye9{bottom:217.542533pt;}
.y103{bottom:220.179600pt;}
.y1ed{bottom:222.824267pt;}
.y156{bottom:223.790533pt;}
.y203{bottom:225.447200pt;}
.ya8{bottom:226.763867pt;}
.y7a{bottom:226.819467pt;}
.y2b2{bottom:227.013333pt;}
.y21{bottom:227.234133pt;}
.y4e{bottom:227.715333pt;}
.y22c{bottom:228.432800pt;}
.y134{bottom:229.326800pt;}
.y2e1{bottom:230.251333pt;}
.ycc{bottom:230.289867pt;}
.y259{bottom:230.312400pt;}
.y283{bottom:230.603333pt;}
.y1ae{bottom:231.586133pt;}
.ye8{bottom:234.364800pt;}
.y102{bottom:236.998667pt;}
.y155{bottom:240.163333pt;}
.y202{bottom:240.184800pt;}
.y20{bottom:240.567467pt;}
.ya7{bottom:242.841600pt;}
.y79{bottom:242.887200pt;}
.y2b1{bottom:243.100533pt;}
.y13a{bottom:243.902000pt;}
.y4d{bottom:243.940133pt;}
.y22b{bottom:244.662000pt;}
.y133{bottom:245.326800pt;}
.y2e0{bottom:246.251333pt;}
.y1ad{bottom:246.265200pt;}
.y258{bottom:246.729467pt;}
.ycb{bottom:246.808400pt;}
.y282{bottom:247.049600pt;}
.ye7{bottom:251.187200pt;}
.y1ec{bottom:253.566800pt;}
.y101{bottom:253.817733pt;}
.y1f{bottom:253.900800pt;}
.y201{bottom:254.922400pt;}
.ya6{bottom:258.919333pt;}
.y78{bottom:258.954933pt;}
.y2b0{bottom:259.187600pt;}
.y4c{bottom:260.164933pt;}
.y22a{bottom:260.891067pt;}
.y1ac{bottom:260.944267pt;}
.y132{bottom:261.326800pt;}
.y2df{bottom:262.251333pt;}
.y257{bottom:263.146533pt;}
.yca{bottom:263.326933pt;}
.y281{bottom:263.495733pt;}
.y1e{bottom:267.234133pt;}
.ye6{bottom:268.009467pt;}
.y100{bottom:270.636800pt;}
.ya5{bottom:274.997067pt;}
.y77{bottom:275.022800pt;}
.y2af{bottom:275.274800pt;}
.y1ab{bottom:275.623200pt;}
.y4b{bottom:276.389867pt;}
.y229{bottom:277.120133pt;}
.y131{bottom:277.326800pt;}
.y2de{bottom:278.251333pt;}
.y256{bottom:279.563600pt;}
.yc9{bottom:279.845467pt;}
.y280{bottom:279.941867pt;}
.y1d{bottom:280.567467pt;}
.y1eb{bottom:285.642667pt;}
.y200{bottom:285.660133pt;}
.y139{bottom:286.764133pt;}
.yff{bottom:287.455867pt;}
.y1aa{bottom:290.302267pt;}
.ya4{bottom:291.074933pt;}
.y76{bottom:291.090533pt;}
.y2ae{bottom:291.362000pt;}
.y4a{bottom:292.614667pt;}
.y130{bottom:293.326800pt;}
.y228{bottom:293.349333pt;}
.y1c{bottom:293.900800pt;}
.y2dd{bottom:294.251333pt;}
.y255{bottom:295.980667pt;}
.yc8{bottom:296.363867pt;}
.y27f{bottom:296.388000pt;}
.y1ea{bottom:300.385067pt;}
.ye5{bottom:300.831733pt;}
.y1ff{bottom:301.731067pt;}
.y138{bottom:302.959733pt;}
.yfe{bottom:304.274933pt;}
.y1a9{bottom:304.981200pt;}
.ya3{bottom:307.152667pt;}
.y75{bottom:307.158267pt;}
.y1b{bottom:307.234133pt;}
.y2ad{bottom:307.449200pt;}
.y49{bottom:308.839333pt;}
.y12f{bottom:309.326800pt;}
.y2dc{bottom:310.251333pt;}
.y254{bottom:312.397733pt;}
.y27e{bottom:312.834267pt;}
.yc7{bottom:312.882400pt;}
.y1e9{bottom:315.127600pt;}
.y1fe{bottom:317.802000pt;}
.y1a8{bottom:319.660267pt;}
.y1a{bottom:320.567467pt;}
.yfd{bottom:321.094000pt;}
.y74{bottom:323.226000pt;}
.ya2{bottom:323.230400pt;}
.y2ac{bottom:323.536400pt;}
.y48{bottom:325.064267pt;}
.y12e{bottom:325.326800pt;}
.y227{bottom:325.578400pt;}
.y2db{bottom:326.251333pt;}
.y253{bottom:328.814800pt;}
.y27d{bottom:329.280400pt;}
.yc6{bottom:329.400933pt;}
.ye4{bottom:333.654000pt;}
.y1fd{bottom:333.873067pt;}
.y1a7{bottom:334.339200pt;}
.yfc{bottom:337.913067pt;}
.y73{bottom:339.293867pt;}
.ya1{bottom:339.308133pt;}
.y2ab{bottom:339.623467pt;}
.y47{bottom:341.289067pt;}
.y12d{bottom:341.326800pt;}
.y2da{bottom:342.251333pt;}
.y252{bottom:345.231867pt;}
.y27c{bottom:345.726533pt;}
.y1e8{bottom:345.870133pt;}
.yc5{bottom:345.919467pt;}
.y19{bottom:347.234133pt;}
.y1a6{bottom:349.018267pt;}
.y1fc{bottom:349.944000pt;}
.ye3{bottom:350.476400pt;}
.y72{bottom:355.361600pt;}
.ya0{bottom:355.385867pt;}
.y2aa{bottom:355.710667pt;}
.y12c{bottom:357.326800pt;}
.y46{bottom:357.513867pt;}
.y18c{bottom:357.538400pt;}
.y2d9{bottom:358.251333pt;}
.y251{bottom:361.648933pt;}
.y1e7{bottom:361.946000pt;}
.y27b{bottom:362.172667pt;}
.yc4{bottom:362.438000pt;}
.y1a5{bottom:363.697200pt;}
.y1fb{bottom:366.014933pt;}
.y18{bottom:366.434133pt;}
.y71{bottom:371.429333pt;}
.y9f{bottom:371.463600pt;}
.y2a9{bottom:371.797867pt;}
.y12b{bottom:373.326800pt;}
.y45{bottom:373.738667pt;}
.y226{bottom:373.807600pt;}
.y18b{bottom:374.102267pt;}
.y2d8{bottom:374.251333pt;}
.y1e6{bottom:378.021733pt;}
.y250{bottom:378.066000pt;}
.y27a{bottom:378.618933pt;}
.yfb{bottom:381.398800pt;}
.y1fa{bottom:382.086000pt;}
.y17{bottom:385.634133pt;}
.y70{bottom:387.497067pt;}
.y9e{bottom:387.541467pt;}
.y2a8{bottom:387.884933pt;}
.y225{bottom:388.703333pt;}
.y12a{bottom:389.326800pt;}
.y44{bottom:389.963467pt;}
.y2d7{bottom:390.251333pt;}
.y18a{bottom:390.666133pt;}
.y1e5{bottom:394.097600pt;}
.y1a4{bottom:394.376267pt;}
.y24f{bottom:394.483067pt;}
.yc3{bottom:394.956533pt;}
.y279{bottom:395.065067pt;}
.y1f9{bottom:398.156933pt;}
.yfa{bottom:398.217867pt;}
.y6f{bottom:403.564800pt;}
.y224{bottom:403.599067pt;}
.y9d{bottom:403.619200pt;}
.y2a7{bottom:403.972133pt;}
.y129{bottom:405.326800pt;}
.y43{bottom:406.188267pt;}
.y2d6{bottom:406.251333pt;}
.y189{bottom:407.230000pt;}
.y1e4{bottom:410.173467pt;}
.y1a3{bottom:410.388667pt;}
.y24e{bottom:410.900133pt;}
.y278{bottom:411.511200pt;}
.y1f8{bottom:414.227867pt;}
.y223{bottom:418.494800pt;}
.y6e{bottom:419.632667pt;}
.y9c{bottom:419.696933pt;}
.y2a6{bottom:420.059333pt;}
.y128{bottom:421.326800pt;}
.y2d5{bottom:422.251333pt;}
.y42{bottom:422.413067pt;}
.y188{bottom:423.793867pt;}
.y1e3{bottom:426.249333pt;}
.y1a2{bottom:426.400933pt;}
.y24d{bottom:427.317200pt;}
.y277{bottom:427.957333pt;}
.y16{bottom:431.500800pt;}
.y222{bottom:433.390667pt;}
.y6d{bottom:435.700400pt;}
.y9b{bottom:435.774667pt;}
.y2a5{bottom:436.146400pt;}
.y2d4{bottom:438.251333pt;}
.y41{bottom:438.637867pt;}
.y187{bottom:440.357733pt;}
.y1e2{bottom:442.325067pt;}
.yc2{bottom:443.475067pt;}
.y24c{bottom:443.734267pt;}
.y276{bottom:444.403467pt;}
.y15{bottom:444.834133pt;}
.y6c{bottom:451.768133pt;}
.y9a{bottom:451.852400pt;}
.y2a4{bottom:452.233600pt;}
.y127{bottom:453.326800pt;}
.y2d3{bottom:454.251333pt;}
.y40{bottom:454.862667pt;}
.y186{bottom:456.921600pt;}
.y1f7{bottom:456.965600pt;}
.y14{bottom:458.167467pt;}
.y1e1{bottom:458.400933pt;}
.y1a1{bottom:458.413333pt;}
.yc1{bottom:459.993467pt;}
.y24b{bottom:460.151333pt;}
.y275{bottom:460.849733pt;}
.y221{bottom:464.286400pt;}
.y6b{bottom:467.836000pt;}
.y99{bottom:467.930267pt;}
.y2a3{bottom:468.320800pt;}
.y2d2{bottom:470.251333pt;}
.y3f{bottom:471.087467pt;}
.y1cb{bottom:471.195200pt;}
.y13{bottom:471.500800pt;}
.y1f6{bottom:473.036533pt;}
.y185{bottom:473.485467pt;}
.y1e0{bottom:474.476800pt;}
.yc0{bottom:476.512133pt;}
.y24a{bottom:476.568400pt;}
.y274{bottom:477.295867pt;}
.y220{bottom:480.515467pt;}
.y6a{bottom:483.903733pt;}
.y98{bottom:484.008000pt;}
.y2a2{bottom:484.407867pt;}
.y12{bottom:484.834133pt;}
.y126{bottom:485.326800pt;}
.y2d1{bottom:486.251333pt;}
.y3e{bottom:487.312267pt;}
.y1ca{bottom:487.868133pt;}
.y10d{bottom:489.648933pt;}
.y184{bottom:490.049333pt;}
.y1a0{bottom:490.425600pt;}
.y1df{bottom:490.552667pt;}
.y249{bottom:492.985467pt;}
.ybf{bottom:493.030533pt;}
.y273{bottom:493.742000pt;}
.y21f{bottom:496.744667pt;}
.y11{bottom:498.167467pt;}
.y69{bottom:499.971467pt;}
.y97{bottom:500.085733pt;}
.y2a1{bottom:500.495067pt;}
.y125{bottom:501.326800pt;}
.y2d0{bottom:502.251333pt;}
.y3d{bottom:503.537067pt;}
.y1c9{bottom:504.541067pt;}
.y10c{bottom:506.403467pt;}
.y19f{bottom:506.438000pt;}
.y183{bottom:506.613200pt;}
.y1de{bottom:506.628400pt;}
.y248{bottom:509.402533pt;}
.ybe{bottom:509.549067pt;}
.y272{bottom:510.188133pt;}
.y154{bottom:511.226133pt;}
.y10{bottom:511.500800pt;}
.y21e{bottom:512.973733pt;}
.y68{bottom:516.039200pt;}
.y96{bottom:516.163467pt;}
.y2a0{bottom:516.582267pt;}
.y124{bottom:517.326800pt;}
.y2cf{bottom:518.251333pt;}
.y3c{bottom:519.761867pt;}
.y1c8{bottom:521.214000pt;}
.y19e{bottom:522.450400pt;}
.y1dd{bottom:522.704267pt;}
.y182{bottom:523.177067pt;}
.yf{bottom:524.834133pt;}
.y247{bottom:525.819600pt;}
.ybd{bottom:526.067600pt;}
.y271{bottom:526.634400pt;}
.y153{bottom:527.598933pt;}
.y21d{bottom:529.202800pt;}
.y67{bottom:532.107067pt;}
.y95{bottom:532.241200pt;}
.y29f{bottom:532.669333pt;}
.y123{bottom:533.326800pt;}
.y2ce{bottom:534.251333pt;}
.y3b{bottom:535.986667pt;}
.ye2{bottom:536.992267pt;}
.y1c7{bottom:537.886933pt;}
.ye{bottom:538.167467pt;}
.y19d{bottom:538.462667pt;}
.y1dc{bottom:538.780133pt;}
.y181{bottom:539.740933pt;}
.y246{bottom:542.236667pt;}
.ybc{bottom:542.586133pt;}
.y270{bottom:543.080533pt;}
.y152{bottom:543.971733pt;}
.y21c{bottom:545.432000pt;}
.y66{bottom:548.174800pt;}
.y94{bottom:548.319067pt;}
.y29e{bottom:548.756533pt;}
.y122{bottom:549.326800pt;}
.y2cd{bottom:550.251333pt;}
.yd{bottom:551.500800pt;}
.ye1{bottom:553.814533pt;}
.y1c6{bottom:554.559867pt;}
.y1db{bottom:554.856000pt;}
.y180{bottom:556.304800pt;}
.y245{bottom:558.653733pt;}
.ybb{bottom:559.104667pt;}
.y26f{bottom:559.526667pt;}
.y151{bottom:560.344533pt;}
.y21b{bottom:561.661067pt;}
.y16d{bottom:563.853333pt;}
.y65{bottom:564.242533pt;}
.y93{bottom:564.396800pt;}
.yc{bottom:564.834133pt;}
.y29d{bottom:564.843733pt;}
.y121{bottom:565.326800pt;}
.y2cc{bottom:566.251333pt;}
.y3a{bottom:568.211467pt;}
.y19c{bottom:570.475067pt;}
.ye0{bottom:570.636800pt;}
.y1da{bottom:570.931867pt;}
.y1c5{bottom:571.232800pt;}
.y17f{bottom:572.868800pt;}
.y244{bottom:575.070800pt;}
.yba{bottom:575.623067pt;}
.y26e{bottom:575.972800pt;}
.y150{bottom:576.717200pt;}
.y21a{bottom:577.890133pt;}
.yb{bottom:578.167467pt;}
.y16c{bottom:579.945467pt;}
.y64{bottom:580.310267pt;}
.y92{bottom:580.474533pt;}
.y29c{bottom:580.930933pt;}
.y120{bottom:581.326800pt;}
.y2cb{bottom:582.251333pt;}
.y19b{bottom:585.154000pt;}
.y1d9{bottom:587.007600pt;}
.ydf{bottom:587.459200pt;}
.y1c4{bottom:587.905733pt;}
.y17e{bottom:589.432667pt;}
.y243{bottom:591.487867pt;}
.y14f{bottom:593.090000pt;}
.y219{bottom:594.119333pt;}
.y16b{bottom:596.037600pt;}
.y63{bottom:596.378133pt;}
.y91{bottom:596.552267pt;}
.y29b{bottom:597.018000pt;}
.y11f{bottom:597.326800pt;}
.y2ca{bottom:598.251333pt;}
.y19a{bottom:599.833067pt;}
.y1d8{bottom:603.083467pt;}
.yde{bottom:604.281467pt;}
.y1c3{bottom:604.578667pt;}
.ya{bottom:604.834133pt;}
.y17d{bottom:605.996400pt;}
.y242{bottom:607.904933pt;}
.yb9{bottom:608.141733pt;}
.y26d{bottom:608.419067pt;}
.y14e{bottom:609.462800pt;}
.y218{bottom:610.348400pt;}
.y16a{bottom:612.129600pt;}
.y62{bottom:612.445867pt;}
.y90{bottom:612.630000pt;}
.y29a{bottom:613.105200pt;}
.y11e{bottom:613.326800pt;}
.y2c9{bottom:614.251333pt;}
.y199{bottom:614.512000pt;}
.y1d7{bottom:619.159333pt;}
.ydd{bottom:621.103733pt;}
.y1c2{bottom:621.251600pt;}
.y17c{bottom:622.560400pt;}
.y241{bottom:624.322000pt;}
.yb8{bottom:624.660133pt;}
.y14d{bottom:625.835467pt;}
.y217{bottom:626.577467pt;}
.y169{bottom:628.221733pt;}
.y61{bottom:628.513600pt;}
.y8f{bottom:628.707867pt;}
.y299{bottom:629.192400pt;}
.y11d{bottom:629.326800pt;}
.y39{bottom:629.769600pt;}
.y2c8{bottom:630.251333pt;}
.y1c1{bottom:637.924533pt;}
.ydc{bottom:637.926000pt;}
.y17b{bottom:639.124133pt;}
.y240{bottom:640.739067pt;}
.yb7{bottom:641.178667pt;}
.y14c{bottom:642.208267pt;}
.y9{bottom:642.700800pt;}
.y216{bottom:642.806667pt;}
.y168{bottom:644.313867pt;}
.y38{bottom:644.394400pt;}
.y60{bottom:644.581333pt;}
.y8e{bottom:644.785600pt;}
.y198{bottom:645.191067pt;}
.y298{bottom:645.279600pt;}
.y11c{bottom:645.326800pt;}
.y2c7{bottom:646.251333pt;}
.y1d6{bottom:651.235200pt;}
.y1c0{bottom:654.597467pt;}
.y17a{bottom:655.688133pt;}
.y26c{bottom:656.865200pt;}
.y23f{bottom:657.156133pt;}
.yb6{bottom:657.697200pt;}
.y14b{bottom:658.581067pt;}
.y37{bottom:659.019200pt;}
.y215{bottom:659.035733pt;}
.y167{bottom:660.405867pt;}
.y5f{bottom:660.649200pt;}
.y8d{bottom:660.863333pt;}
.y197{bottom:661.203467pt;}
.y11b{bottom:661.326800pt;}
.y297{bottom:661.366667pt;}
.y2c6{bottom:662.251333pt;}
.y1d5{bottom:665.977600pt;}
.ydb{bottom:670.748400pt;}
.y1bf{bottom:671.270400pt;}
.y8{bottom:672.034133pt;}
.y179{bottom:672.252000pt;}
.y26b{bottom:673.311333pt;}
.y23e{bottom:673.573200pt;}
.y36{bottom:673.644000pt;}
.yb5{bottom:674.215733pt;}
.y14a{bottom:674.953867pt;}
.y214{bottom:675.264800pt;}
.y166{bottom:676.498000pt;}
.y5e{bottom:676.716933pt;}
.y8c{bottom:676.941067pt;}
.y196{bottom:677.215733pt;}
.y11a{bottom:677.326800pt;}
.y296{bottom:677.453867pt;}
.y2c5{bottom:678.251333pt;}
.y1d4{bottom:680.720133pt;}
.yf9{bottom:686.774267pt;}
.y1be{bottom:687.943333pt;}
.y178{bottom:688.815867pt;}
.y26a{bottom:689.757467pt;}
.y23d{bottom:689.990267pt;}
.y149{bottom:691.326533pt;}
.y213{bottom:691.494000pt;}
.y165{bottom:692.590133pt;}
.y5d{bottom:692.784667pt;}
.y7{bottom:692.834133pt;}
.y8b{bottom:693.018933pt;}
.y195{bottom:693.228133pt;}
.y119{bottom:693.326800pt;}
.y295{bottom:693.541067pt;}
.y2c4{bottom:694.251333pt;}
.y1d3{bottom:695.462667pt;}
.y35{bottom:701.602133pt;}
.yda{bottom:703.570667pt;}
.yf8{bottom:703.593333pt;}
.y1bd{bottom:704.616267pt;}
.y177{bottom:705.379733pt;}
.y269{bottom:706.203733pt;}
.y23c{bottom:706.407333pt;}
.yb4{bottom:706.734267pt;}
.y148{bottom:707.699333pt;}
.y212{bottom:707.723067pt;}
.y164{bottom:708.682267pt;}
.y5c{bottom:708.852400pt;}
.y8a{bottom:709.096533pt;}
.y194{bottom:709.240400pt;}
.y118{bottom:709.326800pt;}
.y294{bottom:709.628133pt;}
.y1d2{bottom:710.205200pt;}
.y2c3{bottom:710.251333pt;}
.y6{bottom:713.634133pt;}
.y34{bottom:715.160267pt;}
.yd9{bottom:720.392933pt;}
.yf7{bottom:720.412400pt;}
.y1bc{bottom:721.289200pt;}
.y176{bottom:721.943600pt;}
.y268{bottom:722.649867pt;}
.y23b{bottom:722.824400pt;}
.y211{bottom:723.952133pt;}
.y147{bottom:724.072133pt;}
.y163{bottom:724.774267pt;}
.y5b{bottom:724.920267pt;}
.y89{bottom:725.174267pt;}
.y193{bottom:725.252800pt;}
.y117{bottom:725.326800pt;}
.y293{bottom:725.715333pt;}
.y2c2{bottom:726.251333pt;}
.y33{bottom:728.718400pt;}
.yd8{bottom:737.215333pt;}
.yf6{bottom:737.231467pt;}
.y1bb{bottom:737.962133pt;}
.y175{bottom:738.507467pt;}
.y267{bottom:739.096000pt;}
.y23a{bottom:739.241467pt;}
.y210{bottom:740.181333pt;}
.y146{bottom:740.444800pt;}
.y162{bottom:740.866400pt;}
.y1d1{bottom:740.947733pt;}
.y5a{bottom:740.988000pt;}
.y88{bottom:741.252133pt;}
.y192{bottom:741.265200pt;}
.y116{bottom:741.326800pt;}
.y292{bottom:741.802533pt;}
.y2c1{bottom:742.251333pt;}
.y32{bottom:742.276533pt;}
.yd7{bottom:754.037600pt;}
.yf5{bottom:754.050533pt;}
.y1ba{bottom:754.635067pt;}
.y174{bottom:755.071333pt;}
.yb3{bottom:755.252800pt;}
.y266{bottom:755.542133pt;}
.y239{bottom:755.658533pt;}
.y31{bottom:755.834667pt;}
.y20f{bottom:756.410400pt;}
.y145{bottom:756.817600pt;}
.y161{bottom:756.958533pt;}
.y1d0{bottom:757.023467pt;}
.y59{bottom:757.055733pt;}
.y191{bottom:757.277467pt;}
.y115{bottom:757.326800pt;}
.y87{bottom:757.329867pt;}
.y291{bottom:757.889600pt;}
.y2c0{bottom:758.251333pt;}
.y4{bottom:770.210133pt;}
.yd6{bottom:770.859867pt;}
.yf4{bottom:770.869600pt;}
.y1b9{bottom:771.308000pt;}
.y173{bottom:771.635200pt;}
.yb2{bottom:771.771200pt;}
.y265{bottom:771.988400pt;}
.y238{bottom:772.075600pt;}
.y20e{bottom:772.639467pt;}
.y160{bottom:773.050533pt;}
.y1cf{bottom:773.099333pt;}
.y58{bottom:773.123600pt;}
.y190{bottom:773.289733pt;}
.y114{bottom:773.326800pt;}
.y86{bottom:773.407600pt;}
.y290{bottom:773.976800pt;}
.y2bf{bottom:774.251333pt;}
.yd5{bottom:787.682267pt;}
.yf3{bottom:787.688667pt;}
.y1b8{bottom:787.980933pt;}
.y172{bottom:788.199067pt;}
.yb1{bottom:788.289733pt;}
.y264{bottom:788.434533pt;}
.y237{bottom:788.492667pt;}
.y20d{bottom:788.868533pt;}
.y15f{bottom:789.142667pt;}
.y1ce{bottom:789.175067pt;}
.y144{bottom:789.190400pt;}
.y57{bottom:789.191333pt;}
.y18f{bottom:789.302133pt;}
.y113{bottom:789.326800pt;}
.y85{bottom:789.485333pt;}
.y28f{bottom:790.064000pt;}
.y2be{bottom:790.251333pt;}
.y3{bottom:795.903733pt;}
.y30{bottom:796.059467pt;}
.yd4{bottom:804.504533pt;}
.yf2{bottom:804.507733pt;}
.y1b7{bottom:804.653867pt;}
.y171{bottom:804.762933pt;}
.yb0{bottom:804.808267pt;}
.y263{bottom:804.880667pt;}
.y236{bottom:804.909733pt;}
.y20c{bottom:805.097733pt;}
.y15e{bottom:805.234667pt;}
.y1cd{bottom:805.250933pt;}
.y56{bottom:805.259067pt;}
.y18e{bottom:805.314400pt;}
.y112{bottom:805.326800pt;}
.y28e{bottom:806.151067pt;}
.y2bd{bottom:806.251333pt;}
.y2f{bottom:809.617733pt;}
.y2{bottom:810.930667pt;}
.y55{bottom:821.326800pt;}
.y84{bottom:821.563067pt;}
.y143{bottom:821.563200pt;}
.y28d{bottom:822.238267pt;}
.y2bc{bottom:822.251333pt;}
.y2e{bottom:823.175733pt;}
.y5{bottom:840.447733pt;}
.y2d{bottom:855.068400pt;}
.y2c{bottom:909.836133pt;}
.y2b{bottom:925.836133pt;}
.he{height:23.229500pt;}
.h17{height:23.812833pt;}
.h8{height:32.757812pt;}
.h2{height:33.898667pt;}
.h10{height:36.041667pt;}
.hf{height:37.437500pt;}
.h4{height:38.741333pt;}
.h3{height:38.986667pt;}
.h12{height:40.161458pt;}
.hb{height:42.117188pt;}
.ha{height:42.234375pt;}
.h9{height:42.632812pt;}
.h11{height:42.773438pt;}
.h7{height:46.796875pt;}
.h19{height:46.927083pt;}
.h16{height:47.526042pt;}
.h13{height:51.476562pt;}
.h15{height:51.619792pt;}
.h18{height:52.106771pt;}
.h14{height:52.278646pt;}
.hc{height:56.156250pt;}
.hd{height:57.031250pt;}
.h6{height:60.835938pt;}
.h5{height:61.005208pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:75.590533pt;}
.x2{left:84.094533pt;}
.x5{left:94.488133pt;}
.x10{left:96.324933pt;}
.xc{left:98.938800pt;}
.xb{left:109.850267pt;}
.x6{left:113.385867pt;}
.x13{left:120.960400pt;}
.x12{left:122.630267pt;}
.xf{left:125.856267pt;}
.x11{left:132.283467pt;}
.x9{left:144.990400pt;}
.x7{left:164.082133pt;}
.xe{left:182.750800pt;}
.xa{left:215.771600pt;}
.xd{left:241.279333pt;}
.x8{left:255.354933pt;}
.x3{left:493.757333pt;}
.x1{left:546.171733pt;}
}




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