
    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_2d98d42505247a2e8cd03d69.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_5f7ecfc0d1be745ff960325e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_e738e503e4370c05a162d8e5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_7c5dd99d04d1cdda5cdfe235.woff')format("woff");}.ff4{font-family:ff4;line-height:0.840332;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_eecfa22d4f427ce496dd27f0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.887317;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_a4347b67853d3a0fbb1c9384.woff')format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_6a2e4bc666b484d7d823ca19.woff')format("woff");}.ff7{font-family:ff7;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;}
.m1{transform:matrix(0.237927,0.000000,-0.076751,0.237927,0,0);-ms-transform:matrix(0.237927,0.000000,-0.076751,0.237927,0,0);-webkit-transform:matrix(0.237927,0.000000,-0.076751,0.237927,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);}
.v7{vertical-align:-49.878000px;}
.v5{vertical-align:-22.980000px;}
.v1{vertical-align:-18.048000px;}
.v4{vertical-align:-13.452000px;}
.v9{vertical-align:-3.762000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.144000px;}
.va{vertical-align:15.834000px;}
.v2{vertical-align:17.952000px;}
.v8{vertical-align:30.072000px;}
.v3{vertical-align:32.166000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:7.908600px;}
.ls4{letter-spacing:15.501168px;}
.lsc{letter-spacing:36.033900px;}
.lsa{letter-spacing:39.424128px;}
.ls2{letter-spacing:79.798848px;}
.ls1{letter-spacing:81.585072px;}
.ls3{letter-spacing:89.294112px;}
.ls5{letter-spacing:97.965648px;}
.lsb{letter-spacing:147.642000px;}
.ls8{letter-spacing:259.572000px;}
.ls6{letter-spacing:283.467072px;}
.ls9{letter-spacing:298.668000px;}
.ls7{letter-spacing:427.887072px;}
.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;}
}
.ws4{word-spacing:-56.659200px;}
.ws1e7{word-spacing:-55.944000px;}
.wsb3{word-spacing:-55.496448px;}
.ws7{word-spacing:-46.386900px;}
.ws15{word-spacing:-41.242800px;}
.ws8{word-spacing:-39.600000px;}
.wsa4{word-spacing:-39.140352px;}
.ws85{word-spacing:-38.936700px;}
.ws0{word-spacing:-38.434800px;}
.ws1{word-spacing:-38.412300px;}
.ws52{word-spacing:-38.057400px;}
.wsc8{word-spacing:-38.052000px;}
.ws2{word-spacing:-37.944000px;}
.ws107{word-spacing:-37.529100px;}
.wsae{word-spacing:-35.862384px;}
.ws17d{word-spacing:-32.511600px;}
.ws19c{word-spacing:-32.499600px;}
.ws18f{word-spacing:-32.393700px;}
.wsa6{word-spacing:-32.372928px;}
.ws5e{word-spacing:-32.366400px;}
.ws1b4{word-spacing:-32.340600px;}
.ws136{word-spacing:-32.334600px;}
.ws84{word-spacing:-32.333100px;}
.ws163{word-spacing:-32.331900px;}
.ws177{word-spacing:-32.320800px;}
.ws1c7{word-spacing:-32.316600px;}
.ws157{word-spacing:-32.308200px;}
.ws78{word-spacing:-32.302200px;}
.ws160{word-spacing:-32.298000px;}
.ws110{word-spacing:-32.283300px;}
.ws1a5{word-spacing:-32.255400px;}
.ws15d{word-spacing:-32.240100px;}
.ws168{word-spacing:-32.238000px;}
.ws6c{word-spacing:-32.230200px;}
.ws158{word-spacing:-32.226600px;}
.ws16f{word-spacing:-32.213400px;}
.ws146{word-spacing:-32.192700px;}
.ws187{word-spacing:-32.189400px;}
.ws24{word-spacing:-32.186700px;}
.ws51{word-spacing:-32.181300px;}
.wsc7{word-spacing:-32.177700px;}
.ws1ba{word-spacing:-32.175300px;}
.ws30{word-spacing:-32.147400px;}
.ws156{word-spacing:-32.146500px;}
.ws104{word-spacing:-32.127000px;}
.ws2b{word-spacing:-32.125500px;}
.ws47{word-spacing:-32.123700px;}
.ws180{word-spacing:-32.109300px;}
.ws102{word-spacing:-32.036400px;}
.ws189{word-spacing:-32.035800px;}
.ws3d{word-spacing:-32.018400px;}
.ws135{word-spacing:-31.971900px;}
.ws175{word-spacing:-31.967400px;}
.ws178{word-spacing:-31.906500px;}
.ws137{word-spacing:-31.894500px;}
.ws96{word-spacing:-31.893600px;}
.wsdb{word-spacing:-31.798500px;}
.wse{word-spacing:-31.795200px;}
.ws1c1{word-spacing:-31.782600px;}
.ws134{word-spacing:-31.750200px;}
.ws94{word-spacing:-31.705500px;}
.wsd2{word-spacing:-31.672500px;}
.ws16{word-spacing:-31.667400px;}
.ws13f{word-spacing:-31.653600px;}
.ws105{word-spacing:-31.605600px;}
.wsb2{word-spacing:-31.581900px;}
.ws103{word-spacing:-31.553400px;}
.ws95{word-spacing:-31.551900px;}
.ws19b{word-spacing:-31.533300px;}
.wsba{word-spacing:-31.458300px;}
.ws1a3{word-spacing:-31.428000px;}
.ws27{word-spacing:-31.405500px;}
.ws173{word-spacing:-31.401300px;}
.wsca{word-spacing:-31.390200px;}
.ws6{word-spacing:-31.380900px;}
.ws106{word-spacing:-31.374900px;}
.wsb{word-spacing:-31.374600px;}
.wse4{word-spacing:-31.346700px;}
.wsb8{word-spacing:-31.338000px;}
.wsab{word-spacing:-31.336500px;}
.ws14d{word-spacing:-31.305000px;}
.ws116{word-spacing:-31.257600px;}
.wsc9{word-spacing:-31.236900px;}
.ws198{word-spacing:-31.167000px;}
.wsa0{word-spacing:-31.122000px;}
.ws141{word-spacing:-31.116000px;}
.ws54{word-spacing:-31.108200px;}
.wsbf{word-spacing:-31.106400px;}
.ws37{word-spacing:-31.029300px;}
.ws5{word-spacing:-30.975300px;}
.ws112{word-spacing:-30.862200px;}
.ws17e{word-spacing:-30.762000px;}
.ws16e{word-spacing:-30.691500px;}
.ws83{word-spacing:-30.667500px;}
.wsd9{word-spacing:-30.626700px;}
.ws9{word-spacing:-30.565200px;}
.ws6a{word-spacing:-30.440100px;}
.ws4e{word-spacing:-30.360000px;}
.ws10c{word-spacing:-30.342600px;}
.ws152{word-spacing:-30.336900px;}
.wsa8{word-spacing:-30.280500px;}
.ws93{word-spacing:-30.212100px;}
.ws32{word-spacing:-30.181200px;}
.wsce{word-spacing:-30.177000px;}
.ws126{word-spacing:-30.142200px;}
.ws11e{word-spacing:-30.113100px;}
.ws13{word-spacing:-30.103800px;}
.ws1e8{word-spacing:-30.032400px;}
.ws1b8{word-spacing:-29.971200px;}
.wscf{word-spacing:-29.912700px;}
.ws132{word-spacing:-29.824800px;}
.ws1d7{word-spacing:-29.624100px;}
.ws12d{word-spacing:-29.622600px;}
.ws11c{word-spacing:-29.616600px;}
.ws16a{word-spacing:-29.579700px;}
.wsc{word-spacing:-29.507400px;}
.ws10a{word-spacing:-29.493600px;}
.ws121{word-spacing:-29.440800px;}
.ws4f{word-spacing:-29.393100px;}
.ws3c{word-spacing:-29.218500px;}
.ws87{word-spacing:-29.182200px;}
.ws139{word-spacing:-28.902600px;}
.ws18d{word-spacing:-28.570200px;}
.ws62{word-spacing:-28.525500px;}
.ws111{word-spacing:-28.507800px;}
.ws128{word-spacing:-28.497900px;}
.ws16c{word-spacing:-28.459200px;}
.wsfb{word-spacing:-28.451700px;}
.ws127{word-spacing:-28.434600px;}
.wsfd{word-spacing:-28.403100px;}
.ws11{word-spacing:-28.310100px;}
.ws172{word-spacing:-28.281000px;}
.ws118{word-spacing:-28.250700px;}
.ws140{word-spacing:-28.188600px;}
.ws1d4{word-spacing:-28.153800px;}
.ws4c{word-spacing:-28.053600px;}
.ws183{word-spacing:-27.996600px;}
.wse8{word-spacing:-27.867000px;}
.ws129{word-spacing:-27.827400px;}
.ws72{word-spacing:-27.727800px;}
.ws49{word-spacing:-27.720000px;}
.ws48{word-spacing:-27.622500px;}
.ws4a{word-spacing:-27.480000px;}
.ws1bb{word-spacing:-27.465600px;}
.wse6{word-spacing:-27.456600px;}
.ws120{word-spacing:-27.389100px;}
.ws1b3{word-spacing:-27.369300px;}
.ws1a2{word-spacing:-27.363000px;}
.ws89{word-spacing:-27.342600px;}
.ws28{word-spacing:-27.189900px;}
.ws1e{word-spacing:-27.102900px;}
.ws9a{word-spacing:-26.945088px;}
.ws170{word-spacing:-26.916300px;}
.ws15f{word-spacing:-26.704800px;}
.wsb9{word-spacing:-26.680500px;}
.wsb6{word-spacing:-26.673000px;}
.ws186{word-spacing:-26.664600px;}
.wsb5{word-spacing:-26.604900px;}
.wsa9{word-spacing:-26.583000px;}
.ws80{word-spacing:-26.347500px;}
.ws209{word-spacing:-26.189100px;}
.ws12c{word-spacing:-26.127000px;}
.ws206{word-spacing:-26.123400px;}
.ws1ed{word-spacing:-26.104200px;}
.ws1fd{word-spacing:-26.090100px;}
.ws1fa{word-spacing:-26.084100px;}
.ws1a{word-spacing:-26.062200px;}
.ws1f4{word-spacing:-26.058000px;}
.ws1a0{word-spacing:-26.040900px;}
.ws154{word-spacing:-26.025600px;}
.ws1a1{word-spacing:-26.022600px;}
.ws20a{word-spacing:-26.014200px;}
.ws203{word-spacing:-26.008200px;}
.ws1f0{word-spacing:-25.943700px;}
.wsb4{word-spacing:-25.925856px;}
.ws208{word-spacing:-25.901400px;}
.ws1ea{word-spacing:-25.871700px;}
.ws200{word-spacing:-25.829100px;}
.ws9c{word-spacing:-25.799280px;}
.ws130{word-spacing:-25.755600px;}
.ws1fe{word-spacing:-25.728000px;}
.wsd3{word-spacing:-25.720800px;}
.ws1f7{word-spacing:-25.708200px;}
.ws21{word-spacing:-25.706700px;}
.ws1a8{word-spacing:-25.687200px;}
.ws7c{word-spacing:-25.645500px;}
.wsf9{word-spacing:-25.393800px;}
.ws1d6{word-spacing:-25.366200px;}
.ws6e{word-spacing:-25.365600px;}
.ws13a{word-spacing:-25.302600px;}
.ws164{word-spacing:-25.296900px;}
.ws176{word-spacing:-25.293300px;}
.ws12{word-spacing:-25.269600px;}
.wsf1{word-spacing:-25.232700px;}
.wsf3{word-spacing:-25.026300px;}
.wse5{word-spacing:-25.005000px;}
.ws97{word-spacing:-24.972000px;}
.ws1ec{word-spacing:-24.935700px;}
.wsfc{word-spacing:-24.916200px;}
.ws207{word-spacing:-24.881700px;}
.ws113{word-spacing:-24.849900px;}
.wsdd{word-spacing:-24.836700px;}
.ws131{word-spacing:-24.761400px;}
.ws75{word-spacing:-24.675000px;}
.ws114{word-spacing:-24.627900px;}
.ws1ab{word-spacing:-24.585600px;}
.wsea{word-spacing:-24.563700px;}
.wsc5{word-spacing:-24.552000px;}
.ws60{word-spacing:-24.532500px;}
.ws115{word-spacing:-24.479700px;}
.ws1cb{word-spacing:-24.394800px;}
.wsf2{word-spacing:-24.366600px;}
.ws181{word-spacing:-24.358800px;}
.wse9{word-spacing:-24.353700px;}
.wsfe{word-spacing:-24.329700px;}
.ws1f5{word-spacing:-24.099900px;}
.ws1cc{word-spacing:-24.037800px;}
.wsf6{word-spacing:-23.925600px;}
.ws81{word-spacing:-23.874000px;}
.ws138{word-spacing:-23.862600px;}
.ws9d{word-spacing:-23.793000px;}
.ws8f{word-spacing:-23.791500px;}
.ws202{word-spacing:-23.759100px;}
.ws1e1{word-spacing:-23.693400px;}
.ws9b{word-spacing:-23.568600px;}
.ws1e5{word-spacing:-23.546700px;}
.ws1d9{word-spacing:-23.540700px;}
.ws1e2{word-spacing:-23.518500px;}
.ws143{word-spacing:-23.460900px;}
.wsf7{word-spacing:-23.426700px;}
.ws50{word-spacing:-23.401800px;}
.ws161{word-spacing:-23.358900px;}
.ws205{word-spacing:-23.215500px;}
.ws1fb{word-spacing:-23.151000px;}
.ws25{word-spacing:-23.013600px;}
.wsda{word-spacing:-23.000100px;}
.ws3a{word-spacing:-22.995300px;}
.ws145{word-spacing:-22.958400px;}
.wsec{word-spacing:-22.953300px;}
.ws191{word-spacing:-22.920900px;}
.wsb1{word-spacing:-22.911300px;}
.ws147{word-spacing:-22.896600px;}
.ws14f{word-spacing:-22.815000px;}
.ws36{word-spacing:-22.781100px;}
.ws19{word-spacing:-22.555500px;}
.ws159{word-spacing:-22.549800px;}
.ws122{word-spacing:-22.488600px;}
.ws1b7{word-spacing:-22.477800px;}
.ws15a{word-spacing:-22.441200px;}
.ws185{word-spacing:-22.391400px;}
.wsc1{word-spacing:-22.302600px;}
.ws1c8{word-spacing:-22.245000px;}
.wsc2{word-spacing:-22.198800px;}
.ws2a{word-spacing:-22.115100px;}
.ws119{word-spacing:-22.106700px;}
.ws169{word-spacing:-22.062900px;}
.ws1b0{word-spacing:-22.061100px;}
.ws11b{word-spacing:-22.005000px;}
.ws5a{word-spacing:-21.962100px;}
.ws2c{word-spacing:-21.938400px;}
.wsf0{word-spacing:-21.891900px;}
.ws1a7{word-spacing:-21.702600px;}
.ws6f{word-spacing:-21.535200px;}
.wse2{word-spacing:-21.480600px;}
.wsff{word-spacing:-21.393000px;}
.ws1c2{word-spacing:-21.383700px;}
.ws15b{word-spacing:-21.325500px;}
.ws196{word-spacing:-21.325200px;}
.wsd4{word-spacing:-21.193200px;}
.wse7{word-spacing:-21.140700px;}
.ws144{word-spacing:-21.093000px;}
.ws17{word-spacing:-21.084000px;}
.ws11a{word-spacing:-21.081000px;}
.ws1d3{word-spacing:-20.982600px;}
.ws1e3{word-spacing:-20.951700px;}
.ws1e4{word-spacing:-20.910600px;}
.ws71{word-spacing:-20.904600px;}
.ws11f{word-spacing:-20.829900px;}
.ws5b{word-spacing:-20.712300px;}
.ws166{word-spacing:-20.694600px;}
.ws1f{word-spacing:-20.677800px;}
.ws65{word-spacing:-20.490600px;}
.ws44{word-spacing:-20.409600px;}
.ws1de{word-spacing:-20.391900px;}
.ws124{word-spacing:-20.383800px;}
.ws1c5{word-spacing:-20.380500px;}
.ws194{word-spacing:-20.361900px;}
.ws1aa{word-spacing:-20.310600px;}
.wscc{word-spacing:-20.278800px;}
.ws1c3{word-spacing:-20.267100px;}
.ws17c{word-spacing:-20.208300px;}
.ws64{word-spacing:-20.176800px;}
.ws12f{word-spacing:-20.165700px;}
.ws1fc{word-spacing:-20.159100px;}
.ws1ac{word-spacing:-20.083800px;}
.wsb0{word-spacing:-20.080200px;}
.ws4d{word-spacing:-19.946700px;}
.ws23{word-spacing:-19.885500px;}
.ws35{word-spacing:-19.844700px;}
.ws1ef{word-spacing:-19.702500px;}
.ws29{word-spacing:-19.475400px;}
.ws1da{word-spacing:-19.376100px;}
.wsa{word-spacing:-19.318800px;}
.ws197{word-spacing:-19.226700px;}
.wsd{word-spacing:-19.177500px;}
.ws6d{word-spacing:-19.143900px;}
.ws14{word-spacing:-19.106700px;}
.ws33{word-spacing:-19.059000px;}
.ws6b{word-spacing:-19.044900px;}
.ws201{word-spacing:-19.023900px;}
.ws17a{word-spacing:-18.927000px;}
.ws1ee{word-spacing:-18.898200px;}
.ws15e{word-spacing:-18.897000px;}
.ws10b{word-spacing:-18.861900px;}
.ws149{word-spacing:-18.836100px;}
.ws55{word-spacing:-18.816900px;}
.ws1c9{word-spacing:-18.729300px;}
.ws1af{word-spacing:-18.682200px;}
.ws41{word-spacing:-18.445500px;}
.ws1e9{word-spacing:-18.120300px;}
.ws12b{word-spacing:-18.120000px;}
.ws69{word-spacing:-18.085200px;}
.ws10e{word-spacing:-17.966400px;}
.ws117{word-spacing:-17.926800px;}
.ws2f{word-spacing:-17.725200px;}
.ws1f1{word-spacing:-17.675700px;}
.wsdf{word-spacing:-17.351100px;}
.ws59{word-spacing:-17.292600px;}
.ws66{word-spacing:-17.178000px;}
.ws76{word-spacing:-17.176800px;}
.ws1f6{word-spacing:-17.176500px;}
.ws2e{word-spacing:-17.116200px;}
.ws17b{word-spacing:-17.113500px;}
.ws26{word-spacing:-17.042100px;}
.ws40{word-spacing:-17.014800px;}
.wsaa{word-spacing:-17.004900px;}
.ws61{word-spacing:-16.981800px;}
.ws190{word-spacing:-16.847400px;}
.ws13b{word-spacing:-16.674000px;}
.ws90{word-spacing:-16.673700px;}
.wsc4{word-spacing:-16.600500px;}
.wsc3{word-spacing:-16.522200px;}
.ws1f9{word-spacing:-16.488300px;}
.ws18b{word-spacing:-16.405500px;}
.ws8b{word-spacing:-16.389900px;}
.ws195{word-spacing:-16.361700px;}
.ws1c6{word-spacing:-16.279500px;}
.ws1be{word-spacing:-16.231500px;}
.ws1ff{word-spacing:-16.159800px;}
.wsf{word-spacing:-16.050300px;}
.ws12a{word-spacing:-16.013700px;}
.ws1f3{word-spacing:-15.919800px;}
.wsde{word-spacing:-15.888600px;}
.ws43{word-spacing:-15.880500px;}
.ws1ad{word-spacing:-15.626700px;}
.wsd8{word-spacing:-15.445200px;}
.ws9f{word-spacing:-15.443700px;}
.ws133{word-spacing:-15.360300px;}
.ws1dd{word-spacing:-15.351900px;}
.ws1f2{word-spacing:-15.237600px;}
.ws73{word-spacing:-15.126600px;}
.wse0{word-spacing:-14.851500px;}
.ws1d5{word-spacing:-14.845500px;}
.ws42{word-spacing:-14.536800px;}
.wsb7{word-spacing:-14.382600px;}
.wscb{word-spacing:-14.329200px;}
.ws1a9{word-spacing:-14.320800px;}
.wseb{word-spacing:-14.278800px;}
.ws14b{word-spacing:-14.183700px;}
.ws18e{word-spacing:-14.147400px;}
.ws100{word-spacing:-14.068200px;}
.ws31{word-spacing:-14.040000px;}
.ws1f8{word-spacing:-13.708200px;}
.wsaf{word-spacing:-13.602900px;}
.ws88{word-spacing:-13.576500px;}
.ws82{word-spacing:-13.466700px;}
.ws1a4{word-spacing:-13.442400px;}
.ws1cf{word-spacing:-13.442100px;}
.ws204{word-spacing:-13.361700px;}
.wsef{word-spacing:-13.221600px;}
.ws18{word-spacing:-13.167000px;}
.ws148{word-spacing:-13.071600px;}
.wsd1{word-spacing:-12.960900px;}
.ws9e{word-spacing:-12.942600px;}
.ws1b2{word-spacing:-12.918300px;}
.ws101{word-spacing:-12.823800px;}
.ws67{word-spacing:-12.722100px;}
.wsc6{word-spacing:-12.628800px;}
.ws1e0{word-spacing:-12.578400px;}
.ws3{word-spacing:-12.543300px;}
.wsed{word-spacing:-12.505200px;}
.ws1eb{word-spacing:-12.268200px;}
.ws46{word-spacing:-12.213600px;}
.ws57{word-spacing:-12.087000px;}
.ws142{word-spacing:-12.081300px;}
.ws3e{word-spacing:-12.053400px;}
.ws1d0{word-spacing:-12.050400px;}
.ws11d{word-spacing:-12.026700px;}
.ws74{word-spacing:-11.996400px;}
.ws1b5{word-spacing:-11.734800px;}
.ws68{word-spacing:-11.718000px;}
.ws56{word-spacing:-11.631900px;}
.ws10d{word-spacing:-11.160000px;}
.ws14a{word-spacing:-10.977000px;}
.ws10{word-spacing:-10.825500px;}
.ws34{word-spacing:-10.610400px;}
.ws1d8{word-spacing:-10.560000px;}
.ws13d{word-spacing:-10.556400px;}
.ws162{word-spacing:-10.218000px;}
.ws8d{word-spacing:-10.194000px;}
.ws184{word-spacing:-10.187700px;}
.ws16d{word-spacing:-10.093500px;}
.ws13c{word-spacing:-10.085700px;}
.ws179{word-spacing:-9.966900px;}
.ws79{word-spacing:-9.805500px;}
.ws199{word-spacing:-9.471600px;}
.ws108{word-spacing:-9.462600px;}
.ws7b{word-spacing:-9.146700px;}
.ws7a{word-spacing:-9.140700px;}
.wse1{word-spacing:-9.102300px;}
.ws1b1{word-spacing:-8.748000px;}
.ws3b{word-spacing:-8.616300px;}
.ws17f{word-spacing:-8.540400px;}
.ws167{word-spacing:-8.371500px;}
.ws8c{word-spacing:-8.312700px;}
.ws5f{word-spacing:-8.151900px;}
.ws188{word-spacing:-7.806900px;}
.ws1dc{word-spacing:-7.666500px;}
.ws7f{word-spacing:-7.645500px;}
.ws1e6{word-spacing:-7.494000px;}
.wse3{word-spacing:-7.479900px;}
.ws1ce{word-spacing:-7.274700px;}
.ws192{word-spacing:-6.944700px;}
.ws91{word-spacing:-6.745200px;}
.ws1cd{word-spacing:-6.700500px;}
.ws1ae{word-spacing:-6.511500px;}
.ws5d{word-spacing:-6.497100px;}
.ws38{word-spacing:-6.360000px;}
.ws1d2{word-spacing:-6.211200px;}
.ws86{word-spacing:-6.045600px;}
.ws109{word-spacing:-5.922000px;}
.ws39{word-spacing:-5.846700px;}
.wsd6{word-spacing:-5.747400px;}
.ws193{word-spacing:-5.681100px;}
.ws165{word-spacing:-5.562000px;}
.ws153{word-spacing:-5.491500px;}
.ws1b{word-spacing:-5.406000px;}
.wsdc{word-spacing:-5.300700px;}
.ws18c{word-spacing:-5.013600px;}
.ws150{word-spacing:-4.942200px;}
.ws155{word-spacing:-4.866600px;}
.ws15c{word-spacing:-4.747500px;}
.ws7d{word-spacing:-4.587300px;}
.ws1b9{word-spacing:-4.546800px;}
.ws22{word-spacing:-4.527000px;}
.ws58{word-spacing:-4.505100px;}
.ws63{word-spacing:-4.278300px;}
.ws125{word-spacing:-3.459300px;}
.ws182{word-spacing:-3.319500px;}
.ws1c{word-spacing:-3.284700px;}
.ws151{word-spacing:-3.206700px;}
.ws16b{word-spacing:-2.717100px;}
.ws1b6{word-spacing:-2.466300px;}
.ws3f{word-spacing:-2.441700px;}
.ws12e{word-spacing:-2.367000px;}
.ws19e{word-spacing:-2.262600px;}
.ws19f{word-spacing:-2.171700px;}
.ws20{word-spacing:-1.358700px;}
.wsd7{word-spacing:-1.314000px;}
.ws53{word-spacing:-0.940500px;}
.ws174{word-spacing:-0.411900px;}
.ws4b{word-spacing:-0.345900px;}
.wsa5{word-spacing:0.000000px;}
.ws2d{word-spacing:0.037800px;}
.wsf8{word-spacing:0.193200px;}
.wsd5{word-spacing:0.833700px;}
.ws19a{word-spacing:0.933300px;}
.ws1d{word-spacing:0.943500px;}
.ws14e{word-spacing:1.472400px;}
.ws1df{word-spacing:2.023500px;}
.ws14c{word-spacing:2.054400px;}
.wsee{word-spacing:2.122200px;}
.ws7e{word-spacing:2.267100px;}
.ws1db{word-spacing:2.509200px;}
.ws1a6{word-spacing:2.692200px;}
.ws19d{word-spacing:4.168200px;}
.ws1c4{word-spacing:5.512200px;}
.ws13e{word-spacing:6.338100px;}
.ws1c0{word-spacing:6.450900px;}
.wsfa{word-spacing:6.532800px;}
.ws45{word-spacing:6.979500px;}
.ws5c{word-spacing:7.134600px;}
.ws171{word-spacing:7.452600px;}
.wsd0{word-spacing:7.533300px;}
.wscd{word-spacing:7.818000px;}
.ws77{word-spacing:8.003400px;}
.ws1bc{word-spacing:9.530100px;}
.ws1bf{word-spacing:10.346700px;}
.ws8e{word-spacing:10.822800px;}
.wsf5{word-spacing:11.471400px;}
.ws123{word-spacing:12.624600px;}
.ws18a{word-spacing:12.854400px;}
.ws8a{word-spacing:13.005000px;}
.ws1bd{word-spacing:14.347500px;}
.ws10f{word-spacing:16.585800px;}
.wsf4{word-spacing:17.674800px;}
.ws92{word-spacing:17.835900px;}
.ws1d1{word-spacing:22.001100px;}
.ws70{word-spacing:26.722800px;}
.wsbe{word-spacing:34.313760px;}
.ws1ca{word-spacing:37.014600px;}
.wsc0{word-spacing:46.740144px;}
.wsac{word-spacing:61.196610px;}
.ws98{word-spacing:61.863456px;}
.wsbb{word-spacing:66.609072px;}
.wsa7{word-spacing:125.103360px;}
.wsbc{word-spacing:140.112720px;}
.wsa1{word-spacing:171.501360px;}
.wsad{word-spacing:190.833072px;}
.ws99{word-spacing:194.907072px;}
.wsbd{word-spacing:224.565360px;}
.wsa3{word-spacing:394.821552px;}
.wsa2{word-spacing:460.452144px;}
._2a{margin-left:-454.802352px;}
._26{margin-left:-381.529152px;}
._41{margin-left:-357.254352px;}
._3f{margin-left:-332.661888px;}
._29{margin-left:-304.814352px;}
._23{margin-left:-301.704192px;}
._36{margin-left:-289.542000px;}
._34{margin-left:-278.526192px;}
._33{margin-left:-277.212192px;}
._28{margin-left:-268.992192px;}
._32{margin-left:-240.827664px;}
._44{margin-left:-232.374192px;}
._31{margin-left:-229.890000px;}
._2c{margin-left:-215.028384px;}
._3e{margin-left:-202.004640px;}
._1b{margin-left:-199.122096px;}
._2f{margin-left:-196.776000px;}
._1f{margin-left:-194.672832px;}
._21{margin-left:-189.410832px;}
._3d{margin-left:-184.020000px;}
._1c{margin-left:-180.186000px;}
._2d{margin-left:-178.092000px;}
._3c{margin-left:-177.068640px;}
._38{margin-left:-173.460000px;}
._22{margin-left:-167.738640px;}
._3b{margin-left:-159.810192px;}
._43{margin-left:-154.442832px;}
._27{margin-left:-150.996000px;}
._24{margin-left:-135.427152px;}
._42{margin-left:-134.342928px;}
._39{margin-left:-131.340000px;}
._2e{margin-left:-121.344000px;}
._30{margin-left:-116.622000px;}
._20{margin-left:-114.656832px;}
._3a{margin-left:-113.576832px;}
._1e{margin-left:-108.546000px;}
._1d{margin-left:-106.506000px;}
._2b{margin-left:-81.138000px;}
._40{margin-left:-73.313520px;}
._25{margin-left:-68.618928px;}
._35{margin-left:-61.748928px;}
._a{margin-left:-1.181400px;}
._2{width:1.092000px;}
._49{width:4.953600px;}
._4c{width:12.631800px;}
._4d{width:14.055900px;}
._11{width:15.394500px;}
._3{width:16.418400px;}
._9{width:17.491500px;}
._0{width:18.850800px;}
._7{width:19.954200px;}
._15{width:21.126600px;}
._8{width:22.236600px;}
._16{width:23.556300px;}
._f{width:25.169400px;}
._13{width:26.725500px;}
._4{width:28.604100px;}
._10{width:30.411900px;}
._5{width:31.802100px;}
._37{width:33.302100px;}
._b{width:34.437000px;}
._47{width:35.541900px;}
._6{width:36.745500px;}
._18{width:39.167400px;}
._12{width:41.136300px;}
._e{width:42.958500px;}
._c{width:44.131200px;}
._46{width:46.543500px;}
._d{width:48.335100px;}
._14{width:49.817100px;}
._4b{width:51.682200px;}
._48{width:54.221700px;}
._45{width:55.270500px;}
._19{width:58.302900px;}
._17{width:60.501000px;}
._4a{width:61.820700px;}
._1a{width:65.439000px;}
._1{width:72.771300px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.900000px;}
.fs4{font-size:41.664000px;}
.fs7{font-size:48.300000px;}
.fs2{font-size:59.700000px;}
.fs3{font-size:71.424000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:75.048180px;}
.fs5{font-size:107.136000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y11f{bottom:2.520000px;}
.y125{bottom:2.536500px;}
.y123{bottom:2.565000px;}
.y121{bottom:2.595000px;}
.y11d{bottom:2.671500px;}
.y127{bottom:3.330000px;}
.ybc{bottom:3.760500px;}
.yb4{bottom:3.876000px;}
.y1e0{bottom:3.915000px;}
.ya8{bottom:4.392000px;}
.yc2{bottom:4.404000px;}
.y96{bottom:4.425000px;}
.y9e{bottom:4.441500px;}
.y50{bottom:5.986500px;}
.ycf{bottom:6.910500px;}
.yb2{bottom:7.239000px;}
.y9a{bottom:7.474500px;}
.y75{bottom:8.205000px;}
.ya3{bottom:8.829000px;}
.yc3{bottom:8.853000px;}
.ya6{bottom:8.929500px;}
.y33{bottom:10.125000px;}
.y19e{bottom:10.486500px;}
.ye7{bottom:15.346500px;}
.ybf{bottom:16.501500px;}
.ybb{bottom:16.830000px;}
.y9d{bottom:16.971000px;}
.y1df{bottom:17.415000px;}
.yc9{bottom:19.090500px;}
.yb5{bottom:19.426500px;}
.ybd{bottom:21.015000px;}
.y95{bottom:21.705000px;}
.y4f{bottom:22.365000px;}
.yb8{bottom:23.863500px;}
.y74{bottom:24.586500px;}
.y32{bottom:26.325000px;}
.y19d{bottom:26.865000px;}
.yb3{bottom:28.347000px;}
.yd0{bottom:29.101500px;}
.y1de{bottom:30.915000px;}
.y9f{bottom:31.005000px;}
.yd1{bottom:32.392500px;}
.ye6{bottom:32.625000px;}
.yb6{bottom:35.211000px;}
.y4e{bottom:38.746500px;}
.y94{bottom:38.986500px;}
.ybe{bottom:39.349500px;}
.yb9{bottom:39.694500px;}
.y1d2{bottom:40.365000px;}
.y73{bottom:40.965000px;}
.y11b{bottom:41.446500px;}
.y19c{bottom:43.246500px;}
.y1e2{bottom:44.415000px;}
.yb7{bottom:47.727000px;}
.y1dd{bottom:48.195000px;}
.ye5{bottom:49.905000px;}
.y31{bottom:51.886500px;}
.y9b{bottom:53.865000px;}
.y4d{bottom:55.125000px;}
.y93{bottom:56.265000px;}
.y72{bottom:57.346500px;}
.y1e1{bottom:57.915000px;}
.y19b{bottom:59.625000px;}
.y1dc{bottom:61.695000px;}
.ye4{bottom:67.186500px;}
.y11a{bottom:67.365000px;}
.ya1{bottom:67.725000px;}
.y30{bottom:68.265000px;}
.y4c{bottom:71.505000px;}
.y92{bottom:73.365000px;}
.y71{bottom:73.725000px;}
.y1db{bottom:75.195000px;}
.y19a{bottom:76.005000px;}
.y156{bottom:79.786500px;}
.y98{bottom:80.865000px;}
.y119{bottom:83.746500px;}
.ye3{bottom:84.465000px;}
.y2f{bottom:84.645000px;}
.ya0{bottom:85.005000px;}
.y4b{bottom:87.886500px;}
.y1da{bottom:88.695000px;}
.y91{bottom:90.645000px;}
.y155{bottom:96.165000px;}
.y1d1{bottom:98.145000px;}
.y70{bottom:99.105000px;}
.y2e{bottom:101.025000px;}
.y199{bottom:101.925000px;}
.y4a{bottom:104.265000px;}
.ye2{bottom:104.625000px;}
.y1d9{bottom:105.975000px;}
.y17{bottom:106.800000px;}
.y90{bottom:107.925000px;}
.y1d0{bottom:111.645000px;}
.y178{bottom:112.005000px;}
.y154{bottom:112.546500px;}
.y11c{bottom:113.175000px;}
.y197{bottom:113.265000px;}
.y6f{bottom:115.486500px;}
.y2d{bottom:117.405000px;}
.y118{bottom:117.586500px;}
.y1d8{bottom:119.475000px;}
.y180{bottom:121.005000px;}
.ye1{bottom:121.905000px;}
.y1cf{bottom:125.145000px;}
.y8f{bottom:125.205000px;}
.y177{bottom:128.386500px;}
.y153{bottom:128.925000px;}
.y49{bottom:129.645000px;}
.y6e{bottom:131.865000px;}
.y1d7{bottom:132.975000px;}
.y2c{bottom:133.786500px;}
.y17f{bottom:137.386500px;}
.y1ce{bottom:138.645000px;}
.ye0{bottom:139.186500px;}
.ya2{bottom:141.675000px;}
.y8e{bottom:142.486500px;}
.y117{bottom:143.865000px;}
.y176{bottom:144.765000px;}
.y152{bottom:145.305000px;}
.y48{bottom:146.025000px;}
.y6d{bottom:148.246500px;}
.y1d6{bottom:150.075000px;}
.y2b{bottom:150.165000px;}
.y9c{bottom:151.725000px;}
.y1cd{bottom:152.145000px;}
.y17e{bottom:153.765000px;}
.ydf{bottom:156.465000px;}
.y8d{bottom:159.765000px;}
.y116{bottom:161.145000px;}
.y151{bottom:161.686500px;}
.y47{bottom:162.405000px;}
.y1d5{bottom:163.575000px;}
.y6c{bottom:164.625000px;}
.y2a{bottom:166.546500px;}
.y1cc{bottom:169.425000px;}
.y175{bottom:170.145000px;}
.yde{bottom:173.565000px;}
.y8c{bottom:176.865000px;}
.y1d4{bottom:177.075000px;}
.y150{bottom:178.065000px;}
.y115{bottom:178.425000px;}
.y46{bottom:178.786500px;}
.y99{bottom:180.150000px;}
.y6b{bottom:181.005000px;}
.y29{bottom:182.925000px;}
.y174{bottom:186.525000px;}
.ydd{bottom:190.846500px;}
.y8b{bottom:194.145000px;}
.y14f{bottom:194.446500px;}
.y45{bottom:195.165000px;}
.y114{bottom:195.525000px;}
.y1cb{bottom:196.425000px;}
.y6a{bottom:197.565000px;}
.y28{bottom:199.305000px;}
.y173{bottom:202.905000px;}
.ydc{bottom:208.125000px;}
.y14e{bottom:210.825000px;}
.y8a{bottom:211.425000px;}
.y44{bottom:211.546500px;}
.y97{bottom:211.965000px;}
.y113{bottom:212.805000px;}
.y69{bottom:213.765000px;}
.y27{bottom:215.686500px;}
.y172{bottom:219.465000px;}
.y1ca{bottom:219.825000px;}
.ydb{bottom:225.405000px;}
.y43{bottom:227.925000px;}
.y89{bottom:228.705000px;}
.y112{bottom:230.086500px;}
.y68{bottom:230.325000px;}
.y26{bottom:232.065000px;}
.y171{bottom:235.665000px;}
.y14d{bottom:236.205000px;}
.yda{bottom:242.686500px;}
.y42{bottom:244.305000px;}
.y88{bottom:245.986500px;}
.y67{bottom:246.525000px;}
.y111{bottom:247.365000px;}
.y170{bottom:252.046500px;}
.y14c{bottom:252.586500px;}
.y196{bottom:253.305000px;}
.y1c9{bottom:255.286500px;}
.y25{bottom:257.446500px;}
.y41{bottom:260.686500px;}
.y17d{bottom:261.046500px;}
.y66{bottom:263.086500px;}
.y110{bottom:264.645000px;}
.y16f{bottom:268.425000px;}
.y14b{bottom:268.965000px;}
.y195{bottom:269.686500px;}
.y1c8{bottom:271.665000px;}
.y87{bottom:272.625000px;}
.yd9{bottom:273.465000px;}
.y24{bottom:273.825000px;}
.y40{bottom:277.065000px;}
.y17c{bottom:277.425000px;}
.y65{bottom:279.465000px;}
.y10f{bottom:281.925000px;}
.y16e{bottom:284.805000px;}
.y14a{bottom:285.346500px;}
.y194{bottom:286.065000px;}
.y1c7{bottom:288.046500px;}
.y23{bottom:290.205000px;}
.y3f{bottom:293.446500px;}
.y17b{bottom:293.805000px;}
.y64{bottom:295.846500px;}
.yd8{bottom:300.286500px;}
.y10e{bottom:302.086500px;}
.y193{bottom:302.446500px;}
.y149{bottom:302.805000px;}
.y1c6{bottom:304.425000px;}
.y22{bottom:306.586500px;}
.y86{bottom:308.086500px;}
.y16d{bottom:310.365000px;}
.y63{bottom:312.225000px;}
.y3e{bottom:318.825000px;}
.y10d{bottom:319.365000px;}
.y148{bottom:320.265000px;}
.y1c5{bottom:320.805000px;}
.y21{bottom:322.965000px;}
.y85{bottom:324.465000px;}
.y16c{bottom:326.565000px;}
.y3d{bottom:335.205000px;}
.y10c{bottom:336.646500px;}
.y1c4{bottom:337.186500px;}
.yd7{bottom:337.545000px;}
.y62{bottom:337.605000px;}
.y20{bottom:339.346500px;}
.y84{bottom:340.845000px;}
.y16b{bottom:343.125000px;}
.y192{bottom:351.586500px;}
.y3c{bottom:351.765000px;}
.y147{bottom:353.025000px;}
.y1c3{bottom:353.565000px;}
.y10b{bottom:353.925000px;}
.y61{bottom:353.986500px;}
.yd6{bottom:354.825000px;}
.y1f{bottom:355.725000px;}
.y83{bottom:357.225000px;}
.y16a{bottom:359.325000px;}
.y3b{bottom:367.965000px;}
.y1c2{bottom:369.946500px;}
.y60{bottom:370.365000px;}
.y10a{bottom:371.025000px;}
.y1e{bottom:372.105000px;}
.y82{bottom:373.605000px;}
.y169{bottom:375.886500px;}
.y146{bottom:378.405000px;}
.y3a{bottom:384.525000px;}
.y1c1{bottom:386.325000px;}
.y5f{bottom:386.745000px;}
.y109{bottom:388.305000px;}
.y1d{bottom:388.486500px;}
.y81{bottom:389.986500px;}
.y168{bottom:392.265000px;}
.y191{bottom:393.346500px;}
.y145{bottom:394.786500px;}
.yd4{bottom:394.965000px;}
.y39{bottom:400.725000px;}
.y17a{bottom:401.265000px;}
.y1c0{bottom:402.705000px;}
.y5e{bottom:403.125000px;}
.y1c{bottom:404.865000px;}
.y108{bottom:405.586500px;}
.y80{bottom:406.365000px;}
.y167{bottom:408.645000px;}
.y190{bottom:409.725000px;}
.y144{bottom:411.165000px;}
.y38{bottom:417.286500px;}
.y179{bottom:417.645000px;}
.y1bf{bottom:419.265000px;}
.y5d{bottom:419.505000px;}
.y1b{bottom:421.246500px;}
.yd2{bottom:421.605000px;}
.y7f{bottom:422.745000px;}
.y107{bottom:422.865000px;}
.y18f{bottom:426.105000px;}
.y143{bottom:427.545000px;}
.y37{bottom:433.665000px;}
.y166{bottom:434.025000px;}
.y1be{bottom:435.465000px;}
.y5c{bottom:435.886500px;}
.y1a{bottom:437.625000px;}
.y7e{bottom:439.125000px;}
.y106{bottom:440.145000px;}
.y18e{bottom:442.665000px;}
.y142{bottom:443.925000px;}
.y36{bottom:450.045000px;}
.y165{bottom:450.405000px;}
.y1bd{bottom:452.025000px;}
.y5b{bottom:452.265000px;}
.y19{bottom:454.005000px;}
.y7d{bottom:455.505000px;}
.y105{bottom:457.425000px;}
.y18d{bottom:458.865000px;}
.y141{bottom:460.305000px;}
.y51{bottom:465.300000px;}
.y35{bottom:466.425000px;}
.y164{bottom:466.786500px;}
.y5a{bottom:468.645000px;}
.y7c{bottom:471.886500px;}
.y104{bottom:474.525000px;}
.y18c{bottom:475.425000px;}
.y140{bottom:476.865000px;}
.y1bc{bottom:477.225000px;}
.y18{bottom:480.105000px;}
.y34{bottom:482.625000px;}
.y163{bottom:483.165000px;}
.y59{bottom:485.025000px;}
.y7b{bottom:488.265000px;}
.y18b{bottom:491.625000px;}
.yd5{bottom:492.825000px;}
.y13f{bottom:493.065000px;}
.y1bb{bottom:493.786500px;}
.y103{bottom:494.865000px;}
.ycd{bottom:499.545000px;}
.y58{bottom:501.405000px;}
.y13e{bottom:509.625000px;}
.y1ba{bottom:510.165000px;}
.y102{bottom:512.145000px;}
.y7a{bottom:513.645000px;}
.y162{bottom:515.925000px;}
.ycc{bottom:516.825000px;}
.y18a{bottom:517.186500px;}
.y57{bottom:517.786500px;}
.yd3{bottom:519.300000px;}
.y13d{bottom:525.825000px;}
.y1b9{bottom:526.545000px;}
.y101{bottom:529.425000px;}
.y79{bottom:530.025000px;}
.y161{bottom:532.305000px;}
.y189{bottom:533.565000px;}
.y56{bottom:534.165000px;}
.yca{bottom:539.865000px;}
.y13c{bottom:542.205000px;}
.y1b8{bottom:542.925000px;}
.y78{bottom:546.405000px;}
.y100{bottom:546.525000px;}
.yce{bottom:549.000000px;}
.y188{bottom:549.946500px;}
.y160{bottom:557.686500px;}
.y1b7{bottom:559.125000px;}
.y55{bottom:560.265000px;}
.y77{bottom:562.965000px;}
.yff{bottom:563.805000px;}
.y187{bottom:566.325000px;}
.y13b{bottom:567.765000px;}
.y15f{bottom:574.065000px;}
.y1b6{bottom:575.686500px;}
.y76{bottom:579.165000px;}
.yfe{bottom:581.086500px;}
.y186{bottom:582.705000px;}
.y13a{bottom:583.965000px;}
.y15e{bottom:590.446500px;}
.y1b5{bottom:592.065000px;}
.yc7{bottom:595.125000px;}
.y54{bottom:595.725000px;}
.yfd{bottom:598.365000px;}
.y185{bottom:599.086500px;}
.y139{bottom:600.525000px;}
.y15d{bottom:606.825000px;}
.y1b4{bottom:608.446500px;}
.y53{bottom:611.925000px;}
.yc6{bottom:612.225000px;}
.y184{bottom:615.465000px;}
.yfc{bottom:615.645000px;}
.y138{bottom:616.725000px;}
.y15c{bottom:623.205000px;}
.y16{bottom:624.165000px;}
.y1b3{bottom:624.825000px;}
.y52{bottom:628.305000px;}
.y183{bottom:631.846500px;}
.yc5{bottom:632.565000px;}
.yfb{bottom:632.925000px;}
.y137{bottom:633.286500px;}
.ycb{bottom:637.575000px;}
.y15b{bottom:639.586500px;}
.y136{bottom:649.665000px;}
.yc4{bottom:649.846500px;}
.yfa{bottom:650.025000px;}
.y1b2{bottom:650.205000px;}
.y15a{bottom:655.965000px;}
.y182{bottom:657.225000px;}
.y15{bottom:659.086500px;}
.y135{bottom:666.045000px;}
.y1b1{bottom:666.586500px;}
.yf9{bottom:667.305000px;}
.yc8{bottom:669.075000px;}
.y159{bottom:672.346500px;}
.yc0{bottom:672.705000px;}
.y181{bottom:673.605000px;}
.y14{bottom:676.365000px;}
.y134{bottom:682.425000px;}
.y1b0{bottom:682.965000px;}
.yf8{bottom:684.586500px;}
.y198{bottom:688.725000px;}
.y13{bottom:693.646500px;}
.y158{bottom:697.725000px;}
.y133{bottom:698.805000px;}
.y1af{bottom:699.345000px;}
.yf7{bottom:701.865000px;}
.y12{bottom:710.925000px;}
.y157{bottom:714.105000px;}
.y132{bottom:715.186500px;}
.y1ae{bottom:715.725000px;}
.y11{bottom:728.025000px;}
.y131{bottom:731.565000px;}
.y1ad{bottom:732.105000px;}
.yf6{bottom:732.645000px;}
.y10{bottom:745.305000px;}
.y1ac{bottom:748.486500px;}
.y130{bottom:756.945000px;}
.yf5{bottom:758.925000px;}
.yf{bottom:762.586500px;}
.y1ab{bottom:764.865000px;}
.yc1{bottom:770.550000px;}
.y12f{bottom:773.325000px;}
.yf4{bottom:776.205000px;}
.ye{bottom:779.865000px;}
.y1aa{bottom:781.245000px;}
.y12e{bottom:789.705000px;}
.yf3{bottom:793.486500px;}
.yd{bottom:797.146500px;}
.y1a9{bottom:797.625000px;}
.yba{bottom:800.250000px;}
.y12d{bottom:806.086500px;}
.yf2{bottom:810.765000px;}
.yb0{bottom:813.465000px;}
.y1a8{bottom:814.005000px;}
.yc{bottom:814.425000px;}
.y12c{bottom:822.465000px;}
.yf1{bottom:828.045000px;}
.y1a7{bottom:830.386500px;}
.yaf{bottom:830.745000px;}
.yb{bottom:831.525000px;}
.y12b{bottom:838.845000px;}
.yf0{bottom:845.325000px;}
.y1a6{bottom:846.765000px;}
.yae{bottom:848.025000px;}
.ya{bottom:848.805000px;}
.yb1{bottom:854.250000px;}
.y12a{bottom:855.225000px;}
.yef{bottom:862.425000px;}
.yad{bottom:865.125000px;}
.y9{bottom:866.625000px;}
.y129{bottom:871.605000px;}
.y1a5{bottom:872.145000px;}
.yee{bottom:879.705000px;}
.y128{bottom:887.986500px;}
.y1a4{bottom:888.525000px;}
.yed{bottom:896.986500px;}
.y1a3{bottom:904.905000px;}
.y8{bottom:907.125000px;}
.yab{bottom:914.086500px;}
.yec{bottom:917.325000px;}
.y1d3{bottom:919.050000px;}
.y1a2{bottom:921.465000px;}
.y7{bottom:927.286500px;}
.yaa{bottom:931.186500px;}
.yeb{bottom:934.425000px;}
.y1a1{bottom:937.665000px;}
.y6{bottom:947.445000px;}
.yea{bottom:951.705000px;}
.ya9{bottom:954.225000px;}
.ye9{bottom:968.986500px;}
.y1a0{bottom:970.425000px;}
.ya4{bottom:980.686500px;}
.y5{bottom:984.705000px;}
.ye8{bottom:986.265000px;}
.y19f{bottom:986.805000px;}
.yac{bottom:989.100000px;}
.y4{bottom:1015.665000px;}
.y126{bottom:1033.575000px;}
.y124{bottom:1048.950000px;}
.ya7{bottom:1051.950000px;}
.y3{bottom:1055.265000px;}
.y122{bottom:1063.500000px;}
.y120{bottom:1078.050000px;}
.ya5{bottom:1078.575000px;}
.y2{bottom:1086.225000px;}
.y11e{bottom:1092.525000px;}
.y1{bottom:1117.186500px;}
.h22{height:14.475000px;}
.h1f{height:14.550000px;}
.h24{height:15.300000px;}
.h8{height:25.575000px;}
.he{height:26.625000px;}
.h1c{height:26.700000px;}
.hb{height:28.425000px;}
.hc{height:28.928813px;}
.h1b{height:28.949156px;}
.h19{height:30.861469px;}
.h20{height:32.734570px;}
.h23{height:33.560010px;}
.h21{height:36.775992px;}
.h3{height:40.460742px;}
.h15{height:41.072813px;}
.h4{height:41.481006px;}
.h25{height:44.954100px;}
.h1e{height:48.625459px;}
.h1{height:48.796875px;}
.h12{height:49.592250px;}
.h9{height:49.627125px;}
.h18{height:51.150000px;}
.ha{height:52.905375px;}
.h17{height:55.589888px;}
.h13{height:59.775000px;}
.h11{height:61.115156px;}
.h1a{height:67.646250px;}
.h1d{height:70.653375px;}
.hd{height:70.857375px;}
.h2{height:73.195313px;}
.h14{height:79.358063px;}
.h16{height:79.699125px;}
.h10{height:80.979469px;}
.h7{height:100.200000px;}
.h26{height:189.150000px;}
.h5{height:497.250000px;}
.h6{height:642.900000px;}
.hf{height:1001.400000px;}
.h0{height:1188.000000px;}
.w6{width:18.000000px;}
.we{width:19.800000px;}
.wa{width:20.850000px;}
.w3{width:56.850000px;}
.w5{width:76.650000px;}
.w12{width:79.575000px;}
.w9{width:82.425000px;}
.wb{width:90.000000px;}
.w10{width:91.200000px;}
.w11{width:95.175000px;}
.wf{width:121.350000px;}
.wc{width:126.000000px;}
.w2{width:130.725000px;}
.wd{width:142.050000px;}
.w8{width:146.850000px;}
.w4{width:160.200000px;}
.w7{width:171.600000px;}
.w1{width:460.200000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:2.157000px;}
.x35{left:3.271500px;}
.x2d{left:5.016000px;}
.x3f{left:8.055000px;}
.xe{left:11.314500px;}
.x3a{left:12.660000px;}
.x29{left:13.683000px;}
.x4{left:14.700000px;}
.x13{left:24.282000px;}
.x22{left:28.708500px;}
.x24{left:31.330500px;}
.x23{left:34.422000px;}
.x5{left:36.300000px;}
.x1b{left:38.725500px;}
.x26{left:40.603500px;}
.x47{left:41.700000px;}
.x6{left:44.760000px;}
.xd{left:46.798500px;}
.x27{left:48.940500px;}
.x33{left:51.540000px;}
.x34{left:54.343500px;}
.x1c{left:57.925500px;}
.x2f{left:62.016000px;}
.x36{left:63.268500px;}
.x1{left:66.960000px;}
.x30{left:68.157000px;}
.x25{left:73.948500px;}
.x2c{left:82.078500px;}
.x2{left:88.560000px;}
.x16{left:94.860000px;}
.x1f{left:97.822500px;}
.xa{left:105.087000px;}
.x2e{left:111.093000px;}
.x1e{left:113.977500px;}
.x1d{left:115.522500px;}
.x20{left:119.596500px;}
.x9{left:120.676500px;}
.x38{left:124.995000px;}
.x37{left:131.863500px;}
.x46{left:134.578500px;}
.x12{left:135.900000px;}
.x19{left:139.143000px;}
.xc{left:146.175000px;}
.x11{left:151.825500px;}
.x18{left:156.171000px;}
.x17{left:181.050000px;}
.x3c{left:182.700000px;}
.x43{left:183.975000px;}
.x1a{left:193.500000px;}
.x32{left:195.825000px;}
.xf{left:214.380000px;}
.x3d{left:217.620000px;}
.x14{left:220.500000px;}
.x2b{left:221.925000px;}
.x21{left:225.525000px;}
.x7{left:237.600000px;}
.x31{left:269.460000px;}
.x28{left:273.075000px;}
.x44{left:275.100000px;}
.x2a{left:303.838500px;}
.x8{left:309.225000px;}
.x39{left:324.150000px;}
.x3b{left:356.400000px;}
.x45{left:370.200000px;}
.xb{left:441.720000px;}
.x3{left:457.800000px;}
.x3e{left:468.225000px;}
.x40{left:589.500000px;}
.x10{left:592.200000px;}
.x41{left:680.625000px;}
.x42{left:775.725000px;}
@media print{
.v7{vertical-align:-44.336000pt;}
.v5{vertical-align:-20.426667pt;}
.v1{vertical-align:-16.042667pt;}
.v4{vertical-align:-11.957333pt;}
.v9{vertical-align:-3.344000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.794667pt;}
.va{vertical-align:14.074667pt;}
.v2{vertical-align:15.957333pt;}
.v8{vertical-align:26.730667pt;}
.v3{vertical-align:28.592000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:7.029867pt;}
.ls4{letter-spacing:13.778816pt;}
.lsc{letter-spacing:32.030133pt;}
.lsa{letter-spacing:35.043669pt;}
.ls2{letter-spacing:70.932309pt;}
.ls1{letter-spacing:72.520064pt;}
.ls3{letter-spacing:79.372544pt;}
.ls5{letter-spacing:87.080576pt;}
.lsb{letter-spacing:131.237333pt;}
.ls8{letter-spacing:230.730667pt;}
.ls6{letter-spacing:251.970731pt;}
.ls9{letter-spacing:265.482667pt;}
.ls7{letter-spacing:380.344064pt;}
.ws4{word-spacing:-50.363733pt;}
.ws1e7{word-spacing:-49.728000pt;}
.wsb3{word-spacing:-49.330176pt;}
.ws7{word-spacing:-41.232800pt;}
.ws15{word-spacing:-36.660267pt;}
.ws8{word-spacing:-35.200000pt;}
.wsa4{word-spacing:-34.791424pt;}
.ws85{word-spacing:-34.610400pt;}
.ws0{word-spacing:-34.164267pt;}
.ws1{word-spacing:-34.144267pt;}
.ws52{word-spacing:-33.828800pt;}
.wsc8{word-spacing:-33.824000pt;}
.ws2{word-spacing:-33.728000pt;}
.ws107{word-spacing:-33.359200pt;}
.wsae{word-spacing:-31.877675pt;}
.ws17d{word-spacing:-28.899200pt;}
.ws19c{word-spacing:-28.888533pt;}
.ws18f{word-spacing:-28.794400pt;}
.wsa6{word-spacing:-28.775936pt;}
.ws5e{word-spacing:-28.770133pt;}
.ws1b4{word-spacing:-28.747200pt;}
.ws136{word-spacing:-28.741867pt;}
.ws84{word-spacing:-28.740533pt;}
.ws163{word-spacing:-28.739467pt;}
.ws177{word-spacing:-28.729600pt;}
.ws1c7{word-spacing:-28.725867pt;}
.ws157{word-spacing:-28.718400pt;}
.ws78{word-spacing:-28.713067pt;}
.ws160{word-spacing:-28.709333pt;}
.ws110{word-spacing:-28.696267pt;}
.ws1a5{word-spacing:-28.671467pt;}
.ws15d{word-spacing:-28.657867pt;}
.ws168{word-spacing:-28.656000pt;}
.ws6c{word-spacing:-28.649067pt;}
.ws158{word-spacing:-28.645867pt;}
.ws16f{word-spacing:-28.634133pt;}
.ws146{word-spacing:-28.615733pt;}
.ws187{word-spacing:-28.612800pt;}
.ws24{word-spacing:-28.610400pt;}
.ws51{word-spacing:-28.605600pt;}
.wsc7{word-spacing:-28.602400pt;}
.ws1ba{word-spacing:-28.600267pt;}
.ws30{word-spacing:-28.575467pt;}
.ws156{word-spacing:-28.574667pt;}
.ws104{word-spacing:-28.557333pt;}
.ws2b{word-spacing:-28.556000pt;}
.ws47{word-spacing:-28.554400pt;}
.ws180{word-spacing:-28.541600pt;}
.ws102{word-spacing:-28.476800pt;}
.ws189{word-spacing:-28.476267pt;}
.ws3d{word-spacing:-28.460800pt;}
.ws135{word-spacing:-28.419467pt;}
.ws175{word-spacing:-28.415467pt;}
.ws178{word-spacing:-28.361333pt;}
.ws137{word-spacing:-28.350667pt;}
.ws96{word-spacing:-28.349867pt;}
.wsdb{word-spacing:-28.265333pt;}
.wse{word-spacing:-28.262400pt;}
.ws1c1{word-spacing:-28.251200pt;}
.ws134{word-spacing:-28.222400pt;}
.ws94{word-spacing:-28.182667pt;}
.wsd2{word-spacing:-28.153333pt;}
.ws16{word-spacing:-28.148800pt;}
.ws13f{word-spacing:-28.136533pt;}
.ws105{word-spacing:-28.093867pt;}
.wsb2{word-spacing:-28.072800pt;}
.ws103{word-spacing:-28.047467pt;}
.ws95{word-spacing:-28.046133pt;}
.ws19b{word-spacing:-28.029600pt;}
.wsba{word-spacing:-27.962933pt;}
.ws1a3{word-spacing:-27.936000pt;}
.ws27{word-spacing:-27.916000pt;}
.ws173{word-spacing:-27.912267pt;}
.wsca{word-spacing:-27.902400pt;}
.ws6{word-spacing:-27.894133pt;}
.ws106{word-spacing:-27.888800pt;}
.wsb{word-spacing:-27.888533pt;}
.wse4{word-spacing:-27.863733pt;}
.wsb8{word-spacing:-27.856000pt;}
.wsab{word-spacing:-27.854667pt;}
.ws14d{word-spacing:-27.826667pt;}
.ws116{word-spacing:-27.784533pt;}
.wsc9{word-spacing:-27.766133pt;}
.ws198{word-spacing:-27.704000pt;}
.wsa0{word-spacing:-27.664000pt;}
.ws141{word-spacing:-27.658667pt;}
.ws54{word-spacing:-27.651733pt;}
.wsbf{word-spacing:-27.650133pt;}
.ws37{word-spacing:-27.581600pt;}
.ws5{word-spacing:-27.533600pt;}
.ws112{word-spacing:-27.433067pt;}
.ws17e{word-spacing:-27.344000pt;}
.ws16e{word-spacing:-27.281333pt;}
.ws83{word-spacing:-27.260000pt;}
.wsd9{word-spacing:-27.223733pt;}
.ws9{word-spacing:-27.169067pt;}
.ws6a{word-spacing:-27.057867pt;}
.ws4e{word-spacing:-26.986667pt;}
.ws10c{word-spacing:-26.971200pt;}
.ws152{word-spacing:-26.966133pt;}
.wsa8{word-spacing:-26.916000pt;}
.ws93{word-spacing:-26.855200pt;}
.ws32{word-spacing:-26.827733pt;}
.wsce{word-spacing:-26.824000pt;}
.ws126{word-spacing:-26.793067pt;}
.ws11e{word-spacing:-26.767200pt;}
.ws13{word-spacing:-26.758933pt;}
.ws1e8{word-spacing:-26.695467pt;}
.ws1b8{word-spacing:-26.641067pt;}
.wscf{word-spacing:-26.589067pt;}
.ws132{word-spacing:-26.510933pt;}
.ws1d7{word-spacing:-26.332533pt;}
.ws12d{word-spacing:-26.331200pt;}
.ws11c{word-spacing:-26.325867pt;}
.ws16a{word-spacing:-26.293067pt;}
.wsc{word-spacing:-26.228800pt;}
.ws10a{word-spacing:-26.216533pt;}
.ws121{word-spacing:-26.169600pt;}
.ws4f{word-spacing:-26.127200pt;}
.ws3c{word-spacing:-25.972000pt;}
.ws87{word-spacing:-25.939733pt;}
.ws139{word-spacing:-25.691200pt;}
.ws18d{word-spacing:-25.395733pt;}
.ws62{word-spacing:-25.356000pt;}
.ws111{word-spacing:-25.340267pt;}
.ws128{word-spacing:-25.331467pt;}
.ws16c{word-spacing:-25.297067pt;}
.wsfb{word-spacing:-25.290400pt;}
.ws127{word-spacing:-25.275200pt;}
.wsfd{word-spacing:-25.247200pt;}
.ws11{word-spacing:-25.164533pt;}
.ws172{word-spacing:-25.138667pt;}
.ws118{word-spacing:-25.111733pt;}
.ws140{word-spacing:-25.056533pt;}
.ws1d4{word-spacing:-25.025600pt;}
.ws4c{word-spacing:-24.936533pt;}
.ws183{word-spacing:-24.885867pt;}
.wse8{word-spacing:-24.770667pt;}
.ws129{word-spacing:-24.735467pt;}
.ws72{word-spacing:-24.646933pt;}
.ws49{word-spacing:-24.640000pt;}
.ws48{word-spacing:-24.553333pt;}
.ws4a{word-spacing:-24.426667pt;}
.ws1bb{word-spacing:-24.413867pt;}
.wse6{word-spacing:-24.405867pt;}
.ws120{word-spacing:-24.345867pt;}
.ws1b3{word-spacing:-24.328267pt;}
.ws1a2{word-spacing:-24.322667pt;}
.ws89{word-spacing:-24.304533pt;}
.ws28{word-spacing:-24.168800pt;}
.ws1e{word-spacing:-24.091467pt;}
.ws9a{word-spacing:-23.951189pt;}
.ws170{word-spacing:-23.925600pt;}
.ws15f{word-spacing:-23.737600pt;}
.wsb9{word-spacing:-23.716000pt;}
.wsb6{word-spacing:-23.709333pt;}
.ws186{word-spacing:-23.701867pt;}
.wsb5{word-spacing:-23.648800pt;}
.wsa9{word-spacing:-23.629333pt;}
.ws80{word-spacing:-23.420000pt;}
.ws209{word-spacing:-23.279200pt;}
.ws12c{word-spacing:-23.224000pt;}
.ws206{word-spacing:-23.220800pt;}
.ws1ed{word-spacing:-23.203733pt;}
.ws1fd{word-spacing:-23.191200pt;}
.ws1fa{word-spacing:-23.185867pt;}
.ws1a{word-spacing:-23.166400pt;}
.ws1f4{word-spacing:-23.162667pt;}
.ws1a0{word-spacing:-23.147467pt;}
.ws154{word-spacing:-23.133867pt;}
.ws1a1{word-spacing:-23.131200pt;}
.ws20a{word-spacing:-23.123733pt;}
.ws203{word-spacing:-23.118400pt;}
.ws1f0{word-spacing:-23.061067pt;}
.wsb4{word-spacing:-23.045205pt;}
.ws208{word-spacing:-23.023467pt;}
.ws1ea{word-spacing:-22.997067pt;}
.ws200{word-spacing:-22.959200pt;}
.ws9c{word-spacing:-22.932693pt;}
.ws130{word-spacing:-22.893867pt;}
.ws1fe{word-spacing:-22.869333pt;}
.wsd3{word-spacing:-22.862933pt;}
.ws1f7{word-spacing:-22.851733pt;}
.ws21{word-spacing:-22.850400pt;}
.ws1a8{word-spacing:-22.833067pt;}
.ws7c{word-spacing:-22.796000pt;}
.wsf9{word-spacing:-22.572267pt;}
.ws1d6{word-spacing:-22.547733pt;}
.ws6e{word-spacing:-22.547200pt;}
.ws13a{word-spacing:-22.491200pt;}
.ws164{word-spacing:-22.486133pt;}
.ws176{word-spacing:-22.482933pt;}
.ws12{word-spacing:-22.461867pt;}
.wsf1{word-spacing:-22.429067pt;}
.wsf3{word-spacing:-22.245600pt;}
.wse5{word-spacing:-22.226667pt;}
.ws97{word-spacing:-22.197333pt;}
.ws1ec{word-spacing:-22.165067pt;}
.wsfc{word-spacing:-22.147733pt;}
.ws207{word-spacing:-22.117067pt;}
.ws113{word-spacing:-22.088800pt;}
.wsdd{word-spacing:-22.077067pt;}
.ws131{word-spacing:-22.010133pt;}
.ws75{word-spacing:-21.933333pt;}
.ws114{word-spacing:-21.891467pt;}
.ws1ab{word-spacing:-21.853867pt;}
.wsea{word-spacing:-21.834400pt;}
.wsc5{word-spacing:-21.824000pt;}
.ws60{word-spacing:-21.806667pt;}
.ws115{word-spacing:-21.759733pt;}
.ws1cb{word-spacing:-21.684267pt;}
.wsf2{word-spacing:-21.659200pt;}
.ws181{word-spacing:-21.652267pt;}
.wse9{word-spacing:-21.647733pt;}
.wsfe{word-spacing:-21.626400pt;}
.ws1f5{word-spacing:-21.422133pt;}
.ws1cc{word-spacing:-21.366933pt;}
.wsf6{word-spacing:-21.267200pt;}
.ws81{word-spacing:-21.221333pt;}
.ws138{word-spacing:-21.211200pt;}
.ws9d{word-spacing:-21.149333pt;}
.ws8f{word-spacing:-21.148000pt;}
.ws202{word-spacing:-21.119200pt;}
.ws1e1{word-spacing:-21.060800pt;}
.ws9b{word-spacing:-20.949867pt;}
.ws1e5{word-spacing:-20.930400pt;}
.ws1d9{word-spacing:-20.925067pt;}
.ws1e2{word-spacing:-20.905333pt;}
.ws143{word-spacing:-20.854133pt;}
.wsf7{word-spacing:-20.823733pt;}
.ws50{word-spacing:-20.801600pt;}
.ws161{word-spacing:-20.763467pt;}
.ws205{word-spacing:-20.636000pt;}
.ws1fb{word-spacing:-20.578667pt;}
.ws25{word-spacing:-20.456533pt;}
.wsda{word-spacing:-20.444533pt;}
.ws3a{word-spacing:-20.440267pt;}
.ws145{word-spacing:-20.407467pt;}
.wsec{word-spacing:-20.402933pt;}
.ws191{word-spacing:-20.374133pt;}
.wsb1{word-spacing:-20.365600pt;}
.ws147{word-spacing:-20.352533pt;}
.ws14f{word-spacing:-20.280000pt;}
.ws36{word-spacing:-20.249867pt;}
.ws19{word-spacing:-20.049333pt;}
.ws159{word-spacing:-20.044267pt;}
.ws122{word-spacing:-19.989867pt;}
.ws1b7{word-spacing:-19.980267pt;}
.ws15a{word-spacing:-19.947733pt;}
.ws185{word-spacing:-19.903467pt;}
.wsc1{word-spacing:-19.824533pt;}
.ws1c8{word-spacing:-19.773333pt;}
.wsc2{word-spacing:-19.732267pt;}
.ws2a{word-spacing:-19.657867pt;}
.ws119{word-spacing:-19.650400pt;}
.ws169{word-spacing:-19.611467pt;}
.ws1b0{word-spacing:-19.609867pt;}
.ws11b{word-spacing:-19.560000pt;}
.ws5a{word-spacing:-19.521867pt;}
.ws2c{word-spacing:-19.500800pt;}
.wsf0{word-spacing:-19.459467pt;}
.ws1a7{word-spacing:-19.291200pt;}
.ws6f{word-spacing:-19.142400pt;}
.wse2{word-spacing:-19.093867pt;}
.wsff{word-spacing:-19.016000pt;}
.ws1c2{word-spacing:-19.007733pt;}
.ws15b{word-spacing:-18.956000pt;}
.ws196{word-spacing:-18.955733pt;}
.wsd4{word-spacing:-18.838400pt;}
.wse7{word-spacing:-18.791733pt;}
.ws144{word-spacing:-18.749333pt;}
.ws17{word-spacing:-18.741333pt;}
.ws11a{word-spacing:-18.738667pt;}
.ws1d3{word-spacing:-18.651200pt;}
.ws1e3{word-spacing:-18.623733pt;}
.ws1e4{word-spacing:-18.587200pt;}
.ws71{word-spacing:-18.581867pt;}
.ws11f{word-spacing:-18.515467pt;}
.ws5b{word-spacing:-18.410933pt;}
.ws166{word-spacing:-18.395200pt;}
.ws1f{word-spacing:-18.380267pt;}
.ws65{word-spacing:-18.213867pt;}
.ws44{word-spacing:-18.141867pt;}
.ws1de{word-spacing:-18.126133pt;}
.ws124{word-spacing:-18.118933pt;}
.ws1c5{word-spacing:-18.116000pt;}
.ws194{word-spacing:-18.099467pt;}
.ws1aa{word-spacing:-18.053867pt;}
.wscc{word-spacing:-18.025600pt;}
.ws1c3{word-spacing:-18.015200pt;}
.ws17c{word-spacing:-17.962933pt;}
.ws64{word-spacing:-17.934933pt;}
.ws12f{word-spacing:-17.925067pt;}
.ws1fc{word-spacing:-17.919200pt;}
.ws1ac{word-spacing:-17.852267pt;}
.wsb0{word-spacing:-17.849067pt;}
.ws4d{word-spacing:-17.730400pt;}
.ws23{word-spacing:-17.676000pt;}
.ws35{word-spacing:-17.639733pt;}
.ws1ef{word-spacing:-17.513333pt;}
.ws29{word-spacing:-17.311467pt;}
.ws1da{word-spacing:-17.223200pt;}
.wsa{word-spacing:-17.172267pt;}
.ws197{word-spacing:-17.090400pt;}
.wsd{word-spacing:-17.046667pt;}
.ws6d{word-spacing:-17.016800pt;}
.ws14{word-spacing:-16.983733pt;}
.ws33{word-spacing:-16.941333pt;}
.ws6b{word-spacing:-16.928800pt;}
.ws201{word-spacing:-16.910133pt;}
.ws17a{word-spacing:-16.824000pt;}
.ws1ee{word-spacing:-16.798400pt;}
.ws15e{word-spacing:-16.797333pt;}
.ws10b{word-spacing:-16.766133pt;}
.ws149{word-spacing:-16.743200pt;}
.ws55{word-spacing:-16.726133pt;}
.ws1c9{word-spacing:-16.648267pt;}
.ws1af{word-spacing:-16.606400pt;}
.ws41{word-spacing:-16.396000pt;}
.ws1e9{word-spacing:-16.106933pt;}
.ws12b{word-spacing:-16.106667pt;}
.ws69{word-spacing:-16.075733pt;}
.ws10e{word-spacing:-15.970133pt;}
.ws117{word-spacing:-15.934933pt;}
.ws2f{word-spacing:-15.755733pt;}
.ws1f1{word-spacing:-15.711733pt;}
.wsdf{word-spacing:-15.423200pt;}
.ws59{word-spacing:-15.371200pt;}
.ws66{word-spacing:-15.269333pt;}
.ws76{word-spacing:-15.268267pt;}
.ws1f6{word-spacing:-15.268000pt;}
.ws2e{word-spacing:-15.214400pt;}
.ws17b{word-spacing:-15.212000pt;}
.ws26{word-spacing:-15.148533pt;}
.ws40{word-spacing:-15.124267pt;}
.wsaa{word-spacing:-15.115467pt;}
.ws61{word-spacing:-15.094933pt;}
.ws190{word-spacing:-14.975467pt;}
.ws13b{word-spacing:-14.821333pt;}
.ws90{word-spacing:-14.821067pt;}
.wsc4{word-spacing:-14.756000pt;}
.wsc3{word-spacing:-14.686400pt;}
.ws1f9{word-spacing:-14.656267pt;}
.ws18b{word-spacing:-14.582667pt;}
.ws8b{word-spacing:-14.568800pt;}
.ws195{word-spacing:-14.543733pt;}
.ws1c6{word-spacing:-14.470667pt;}
.ws1be{word-spacing:-14.428000pt;}
.ws1ff{word-spacing:-14.364267pt;}
.wsf{word-spacing:-14.266933pt;}
.ws12a{word-spacing:-14.234400pt;}
.ws1f3{word-spacing:-14.150933pt;}
.wsde{word-spacing:-14.123200pt;}
.ws43{word-spacing:-14.116000pt;}
.ws1ad{word-spacing:-13.890400pt;}
.wsd8{word-spacing:-13.729067pt;}
.ws9f{word-spacing:-13.727733pt;}
.ws133{word-spacing:-13.653600pt;}
.ws1dd{word-spacing:-13.646133pt;}
.ws1f2{word-spacing:-13.544533pt;}
.ws73{word-spacing:-13.445867pt;}
.wse0{word-spacing:-13.201333pt;}
.ws1d5{word-spacing:-13.196000pt;}
.ws42{word-spacing:-12.921600pt;}
.wsb7{word-spacing:-12.784533pt;}
.wscb{word-spacing:-12.737067pt;}
.ws1a9{word-spacing:-12.729600pt;}
.wseb{word-spacing:-12.692267pt;}
.ws14b{word-spacing:-12.607733pt;}
.ws18e{word-spacing:-12.575467pt;}
.ws100{word-spacing:-12.505067pt;}
.ws31{word-spacing:-12.480000pt;}
.ws1f8{word-spacing:-12.185067pt;}
.wsaf{word-spacing:-12.091467pt;}
.ws88{word-spacing:-12.068000pt;}
.ws82{word-spacing:-11.970400pt;}
.ws1a4{word-spacing:-11.948800pt;}
.ws1cf{word-spacing:-11.948533pt;}
.ws204{word-spacing:-11.877067pt;}
.wsef{word-spacing:-11.752533pt;}
.ws18{word-spacing:-11.704000pt;}
.ws148{word-spacing:-11.619200pt;}
.wsd1{word-spacing:-11.520800pt;}
.ws9e{word-spacing:-11.504533pt;}
.ws1b2{word-spacing:-11.482933pt;}
.ws101{word-spacing:-11.398933pt;}
.ws67{word-spacing:-11.308533pt;}
.wsc6{word-spacing:-11.225600pt;}
.ws1e0{word-spacing:-11.180800pt;}
.ws3{word-spacing:-11.149600pt;}
.wsed{word-spacing:-11.115733pt;}
.ws1eb{word-spacing:-10.905067pt;}
.ws46{word-spacing:-10.856533pt;}
.ws57{word-spacing:-10.744000pt;}
.ws142{word-spacing:-10.738933pt;}
.ws3e{word-spacing:-10.714133pt;}
.ws1d0{word-spacing:-10.711467pt;}
.ws11d{word-spacing:-10.690400pt;}
.ws74{word-spacing:-10.663467pt;}
.ws1b5{word-spacing:-10.430933pt;}
.ws68{word-spacing:-10.416000pt;}
.ws56{word-spacing:-10.339467pt;}
.ws10d{word-spacing:-9.920000pt;}
.ws14a{word-spacing:-9.757333pt;}
.ws10{word-spacing:-9.622667pt;}
.ws34{word-spacing:-9.431467pt;}
.ws1d8{word-spacing:-9.386667pt;}
.ws13d{word-spacing:-9.383467pt;}
.ws162{word-spacing:-9.082667pt;}
.ws8d{word-spacing:-9.061333pt;}
.ws184{word-spacing:-9.055733pt;}
.ws16d{word-spacing:-8.972000pt;}
.ws13c{word-spacing:-8.965067pt;}
.ws179{word-spacing:-8.859467pt;}
.ws79{word-spacing:-8.716000pt;}
.ws199{word-spacing:-8.419200pt;}
.ws108{word-spacing:-8.411200pt;}
.ws7b{word-spacing:-8.130400pt;}
.ws7a{word-spacing:-8.125067pt;}
.wse1{word-spacing:-8.090933pt;}
.ws1b1{word-spacing:-7.776000pt;}
.ws3b{word-spacing:-7.658933pt;}
.ws17f{word-spacing:-7.591467pt;}
.ws167{word-spacing:-7.441333pt;}
.ws8c{word-spacing:-7.389067pt;}
.ws5f{word-spacing:-7.246133pt;}
.ws188{word-spacing:-6.939467pt;}
.ws1dc{word-spacing:-6.814667pt;}
.ws7f{word-spacing:-6.796000pt;}
.ws1e6{word-spacing:-6.661333pt;}
.wse3{word-spacing:-6.648800pt;}
.ws1ce{word-spacing:-6.466400pt;}
.ws192{word-spacing:-6.173067pt;}
.ws91{word-spacing:-5.995733pt;}
.ws1cd{word-spacing:-5.956000pt;}
.ws1ae{word-spacing:-5.788000pt;}
.ws5d{word-spacing:-5.775200pt;}
.ws38{word-spacing:-5.653333pt;}
.ws1d2{word-spacing:-5.521067pt;}
.ws86{word-spacing:-5.373867pt;}
.ws109{word-spacing:-5.264000pt;}
.ws39{word-spacing:-5.197067pt;}
.wsd6{word-spacing:-5.108800pt;}
.ws193{word-spacing:-5.049867pt;}
.ws165{word-spacing:-4.944000pt;}
.ws153{word-spacing:-4.881333pt;}
.ws1b{word-spacing:-4.805333pt;}
.wsdc{word-spacing:-4.711733pt;}
.ws18c{word-spacing:-4.456533pt;}
.ws150{word-spacing:-4.393067pt;}
.ws155{word-spacing:-4.325867pt;}
.ws15c{word-spacing:-4.220000pt;}
.ws7d{word-spacing:-4.077600pt;}
.ws1b9{word-spacing:-4.041600pt;}
.ws22{word-spacing:-4.024000pt;}
.ws58{word-spacing:-4.004533pt;}
.ws63{word-spacing:-3.802933pt;}
.ws125{word-spacing:-3.074933pt;}
.ws182{word-spacing:-2.950667pt;}
.ws1c{word-spacing:-2.919733pt;}
.ws151{word-spacing:-2.850400pt;}
.ws16b{word-spacing:-2.415200pt;}
.ws1b6{word-spacing:-2.192267pt;}
.ws3f{word-spacing:-2.170400pt;}
.ws12e{word-spacing:-2.104000pt;}
.ws19e{word-spacing:-2.011200pt;}
.ws19f{word-spacing:-1.930400pt;}
.ws20{word-spacing:-1.207733pt;}
.wsd7{word-spacing:-1.168000pt;}
.ws53{word-spacing:-0.836000pt;}
.ws174{word-spacing:-0.366133pt;}
.ws4b{word-spacing:-0.307467pt;}
.wsa5{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.033600pt;}
.wsf8{word-spacing:0.171733pt;}
.wsd5{word-spacing:0.741067pt;}
.ws19a{word-spacing:0.829600pt;}
.ws1d{word-spacing:0.838667pt;}
.ws14e{word-spacing:1.308800pt;}
.ws1df{word-spacing:1.798667pt;}
.ws14c{word-spacing:1.826133pt;}
.wsee{word-spacing:1.886400pt;}
.ws7e{word-spacing:2.015200pt;}
.ws1db{word-spacing:2.230400pt;}
.ws1a6{word-spacing:2.393067pt;}
.ws19d{word-spacing:3.705067pt;}
.ws1c4{word-spacing:4.899733pt;}
.ws13e{word-spacing:5.633867pt;}
.ws1c0{word-spacing:5.734133pt;}
.wsfa{word-spacing:5.806933pt;}
.ws45{word-spacing:6.204000pt;}
.ws5c{word-spacing:6.341867pt;}
.ws171{word-spacing:6.624533pt;}
.wsd0{word-spacing:6.696267pt;}
.wscd{word-spacing:6.949333pt;}
.ws77{word-spacing:7.114133pt;}
.ws1bc{word-spacing:8.471200pt;}
.ws1bf{word-spacing:9.197067pt;}
.ws8e{word-spacing:9.620267pt;}
.wsf5{word-spacing:10.196800pt;}
.ws123{word-spacing:11.221867pt;}
.ws18a{word-spacing:11.426133pt;}
.ws8a{word-spacing:11.560000pt;}
.ws1bd{word-spacing:12.753333pt;}
.ws10f{word-spacing:14.742933pt;}
.wsf4{word-spacing:15.710933pt;}
.ws92{word-spacing:15.854133pt;}
.ws1d1{word-spacing:19.556533pt;}
.ws70{word-spacing:23.753600pt;}
.wsbe{word-spacing:30.501120pt;}
.ws1ca{word-spacing:32.901867pt;}
.wsc0{word-spacing:41.546795pt;}
.wsac{word-spacing:54.396987pt;}
.ws98{word-spacing:54.989739pt;}
.wsbb{word-spacing:59.208064pt;}
.wsa7{word-spacing:111.202987pt;}
.wsbc{word-spacing:124.544640pt;}
.wsa1{word-spacing:152.445653pt;}
.wsad{word-spacing:169.629397pt;}
.ws99{word-spacing:173.250731pt;}
.wsbd{word-spacing:199.613653pt;}
.wsa3{word-spacing:350.952491pt;}
.wsa2{word-spacing:409.290795pt;}
._2a{margin-left:-404.268757pt;}
._26{margin-left:-339.137024pt;}
._41{margin-left:-317.559424pt;}
._3f{margin-left:-295.699456pt;}
._29{margin-left:-270.946091pt;}
._23{margin-left:-268.181504pt;}
._36{margin-left:-257.370667pt;}
._34{margin-left:-247.578837pt;}
._33{margin-left:-246.410837pt;}
._28{margin-left:-239.104171pt;}
._32{margin-left:-214.069035pt;}
._44{margin-left:-206.554837pt;}
._31{margin-left:-204.346667pt;}
._2c{margin-left:-191.136341pt;}
._3e{margin-left:-179.559680pt;}
._1b{margin-left:-176.997419pt;}
._2f{margin-left:-174.912000pt;}
._1f{margin-left:-173.042517pt;}
._21{margin-left:-168.365184pt;}
._3d{margin-left:-163.573333pt;}
._1c{margin-left:-160.165333pt;}
._2d{margin-left:-158.304000pt;}
._3c{margin-left:-157.394347pt;}
._38{margin-left:-154.186667pt;}
._22{margin-left:-149.101013pt;}
._3b{margin-left:-142.053504pt;}
._43{margin-left:-137.282517pt;}
._27{margin-left:-134.218667pt;}
._24{margin-left:-120.379691pt;}
._42{margin-left:-119.415936pt;}
._39{margin-left:-116.746667pt;}
._2e{margin-left:-107.861333pt;}
._30{margin-left:-103.664000pt;}
._20{margin-left:-101.917184pt;}
._3a{margin-left:-100.957184pt;}
._1e{margin-left:-96.485333pt;}
._1d{margin-left:-94.672000pt;}
._2b{margin-left:-72.122667pt;}
._40{margin-left:-65.167573pt;}
._25{margin-left:-60.994603pt;}
._35{margin-left:-54.887936pt;}
._a{margin-left:-1.050133pt;}
._2{width:0.970667pt;}
._49{width:4.403200pt;}
._4c{width:11.228267pt;}
._4d{width:12.494133pt;}
._11{width:13.684000pt;}
._3{width:14.594133pt;}
._9{width:15.548000pt;}
._0{width:16.756267pt;}
._7{width:17.737067pt;}
._15{width:18.779200pt;}
._8{width:19.765867pt;}
._16{width:20.938933pt;}
._f{width:22.372800pt;}
._13{width:23.756000pt;}
._4{width:25.425867pt;}
._10{width:27.032800pt;}
._5{width:28.268533pt;}
._37{width:29.601867pt;}
._b{width:30.610667pt;}
._47{width:31.592800pt;}
._6{width:32.662667pt;}
._18{width:34.815467pt;}
._12{width:36.565600pt;}
._e{width:38.185333pt;}
._c{width:39.227733pt;}
._46{width:41.372000pt;}
._d{width:42.964533pt;}
._14{width:44.281867pt;}
._4b{width:45.939733pt;}
._48{width:48.197067pt;}
._45{width:49.129333pt;}
._19{width:51.824800pt;}
._17{width:53.778667pt;}
._4a{width:54.951733pt;}
._1a{width:58.168000pt;}
._1{width:64.685600pt;}
.fs8{font-size:27.466667pt;}
.fs4{font-size:37.034667pt;}
.fs7{font-size:42.933333pt;}
.fs2{font-size:53.066667pt;}
.fs3{font-size:63.488000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:66.709494pt;}
.fs5{font-size:95.232000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y11f{bottom:2.240000pt;}
.y125{bottom:2.254667pt;}
.y123{bottom:2.280000pt;}
.y121{bottom:2.306667pt;}
.y11d{bottom:2.374667pt;}
.y127{bottom:2.960000pt;}
.ybc{bottom:3.342667pt;}
.yb4{bottom:3.445333pt;}
.y1e0{bottom:3.480000pt;}
.ya8{bottom:3.904000pt;}
.yc2{bottom:3.914667pt;}
.y96{bottom:3.933333pt;}
.y9e{bottom:3.948000pt;}
.y50{bottom:5.321333pt;}
.ycf{bottom:6.142667pt;}
.yb2{bottom:6.434667pt;}
.y9a{bottom:6.644000pt;}
.y75{bottom:7.293333pt;}
.ya3{bottom:7.848000pt;}
.yc3{bottom:7.869333pt;}
.ya6{bottom:7.937333pt;}
.y33{bottom:9.000000pt;}
.y19e{bottom:9.321333pt;}
.ye7{bottom:13.641333pt;}
.ybf{bottom:14.668000pt;}
.ybb{bottom:14.960000pt;}
.y9d{bottom:15.085333pt;}
.y1df{bottom:15.480000pt;}
.yc9{bottom:16.969333pt;}
.yb5{bottom:17.268000pt;}
.ybd{bottom:18.680000pt;}
.y95{bottom:19.293333pt;}
.y4f{bottom:19.880000pt;}
.yb8{bottom:21.212000pt;}
.y74{bottom:21.854667pt;}
.y32{bottom:23.400000pt;}
.y19d{bottom:23.880000pt;}
.yb3{bottom:25.197333pt;}
.yd0{bottom:25.868000pt;}
.y1de{bottom:27.480000pt;}
.y9f{bottom:27.560000pt;}
.yd1{bottom:28.793333pt;}
.ye6{bottom:29.000000pt;}
.yb6{bottom:31.298667pt;}
.y4e{bottom:34.441333pt;}
.y94{bottom:34.654667pt;}
.ybe{bottom:34.977333pt;}
.yb9{bottom:35.284000pt;}
.y1d2{bottom:35.880000pt;}
.y73{bottom:36.413333pt;}
.y11b{bottom:36.841333pt;}
.y19c{bottom:38.441333pt;}
.y1e2{bottom:39.480000pt;}
.yb7{bottom:42.424000pt;}
.y1dd{bottom:42.840000pt;}
.ye5{bottom:44.360000pt;}
.y31{bottom:46.121333pt;}
.y9b{bottom:47.880000pt;}
.y4d{bottom:49.000000pt;}
.y93{bottom:50.013333pt;}
.y72{bottom:50.974667pt;}
.y1e1{bottom:51.480000pt;}
.y19b{bottom:53.000000pt;}
.y1dc{bottom:54.840000pt;}
.ye4{bottom:59.721333pt;}
.y11a{bottom:59.880000pt;}
.ya1{bottom:60.200000pt;}
.y30{bottom:60.680000pt;}
.y4c{bottom:63.560000pt;}
.y92{bottom:65.213333pt;}
.y71{bottom:65.533333pt;}
.y1db{bottom:66.840000pt;}
.y19a{bottom:67.560000pt;}
.y156{bottom:70.921333pt;}
.y98{bottom:71.880000pt;}
.y119{bottom:74.441333pt;}
.ye3{bottom:75.080000pt;}
.y2f{bottom:75.240000pt;}
.ya0{bottom:75.560000pt;}
.y4b{bottom:78.121333pt;}
.y1da{bottom:78.840000pt;}
.y91{bottom:80.573333pt;}
.y155{bottom:85.480000pt;}
.y1d1{bottom:87.240000pt;}
.y70{bottom:88.093333pt;}
.y2e{bottom:89.800000pt;}
.y199{bottom:90.600000pt;}
.y4a{bottom:92.680000pt;}
.ye2{bottom:93.000000pt;}
.y1d9{bottom:94.200000pt;}
.y17{bottom:94.933333pt;}
.y90{bottom:95.933333pt;}
.y1d0{bottom:99.240000pt;}
.y178{bottom:99.560000pt;}
.y154{bottom:100.041333pt;}
.y11c{bottom:100.600000pt;}
.y197{bottom:100.680000pt;}
.y6f{bottom:102.654667pt;}
.y2d{bottom:104.360000pt;}
.y118{bottom:104.521333pt;}
.y1d8{bottom:106.200000pt;}
.y180{bottom:107.560000pt;}
.ye1{bottom:108.360000pt;}
.y1cf{bottom:111.240000pt;}
.y8f{bottom:111.293333pt;}
.y177{bottom:114.121333pt;}
.y153{bottom:114.600000pt;}
.y49{bottom:115.240000pt;}
.y6e{bottom:117.213333pt;}
.y1d7{bottom:118.200000pt;}
.y2c{bottom:118.921333pt;}
.y17f{bottom:122.121333pt;}
.y1ce{bottom:123.240000pt;}
.ye0{bottom:123.721333pt;}
.ya2{bottom:125.933333pt;}
.y8e{bottom:126.654667pt;}
.y117{bottom:127.880000pt;}
.y176{bottom:128.680000pt;}
.y152{bottom:129.160000pt;}
.y48{bottom:129.800000pt;}
.y6d{bottom:131.774667pt;}
.y1d6{bottom:133.400000pt;}
.y2b{bottom:133.480000pt;}
.y9c{bottom:134.866667pt;}
.y1cd{bottom:135.240000pt;}
.y17e{bottom:136.680000pt;}
.ydf{bottom:139.080000pt;}
.y8d{bottom:142.013333pt;}
.y116{bottom:143.240000pt;}
.y151{bottom:143.721333pt;}
.y47{bottom:144.360000pt;}
.y1d5{bottom:145.400000pt;}
.y6c{bottom:146.333333pt;}
.y2a{bottom:148.041333pt;}
.y1cc{bottom:150.600000pt;}
.y175{bottom:151.240000pt;}
.yde{bottom:154.280000pt;}
.y8c{bottom:157.213333pt;}
.y1d4{bottom:157.400000pt;}
.y150{bottom:158.280000pt;}
.y115{bottom:158.600000pt;}
.y46{bottom:158.921333pt;}
.y99{bottom:160.133333pt;}
.y6b{bottom:160.893333pt;}
.y29{bottom:162.600000pt;}
.y174{bottom:165.800000pt;}
.ydd{bottom:169.641333pt;}
.y8b{bottom:172.573333pt;}
.y14f{bottom:172.841333pt;}
.y45{bottom:173.480000pt;}
.y114{bottom:173.800000pt;}
.y1cb{bottom:174.600000pt;}
.y6a{bottom:175.613333pt;}
.y28{bottom:177.160000pt;}
.y173{bottom:180.360000pt;}
.ydc{bottom:185.000000pt;}
.y14e{bottom:187.400000pt;}
.y8a{bottom:187.933333pt;}
.y44{bottom:188.041333pt;}
.y97{bottom:188.413333pt;}
.y113{bottom:189.160000pt;}
.y69{bottom:190.013333pt;}
.y27{bottom:191.721333pt;}
.y172{bottom:195.080000pt;}
.y1ca{bottom:195.400000pt;}
.ydb{bottom:200.360000pt;}
.y43{bottom:202.600000pt;}
.y89{bottom:203.293333pt;}
.y112{bottom:204.521333pt;}
.y68{bottom:204.733333pt;}
.y26{bottom:206.280000pt;}
.y171{bottom:209.480000pt;}
.y14d{bottom:209.960000pt;}
.yda{bottom:215.721333pt;}
.y42{bottom:217.160000pt;}
.y88{bottom:218.654667pt;}
.y67{bottom:219.133333pt;}
.y111{bottom:219.880000pt;}
.y170{bottom:224.041333pt;}
.y14c{bottom:224.521333pt;}
.y196{bottom:225.160000pt;}
.y1c9{bottom:226.921333pt;}
.y25{bottom:228.841333pt;}
.y41{bottom:231.721333pt;}
.y17d{bottom:232.041333pt;}
.y66{bottom:233.854667pt;}
.y110{bottom:235.240000pt;}
.y16f{bottom:238.600000pt;}
.y14b{bottom:239.080000pt;}
.y195{bottom:239.721333pt;}
.y1c8{bottom:241.480000pt;}
.y87{bottom:242.333333pt;}
.yd9{bottom:243.080000pt;}
.y24{bottom:243.400000pt;}
.y40{bottom:246.280000pt;}
.y17c{bottom:246.600000pt;}
.y65{bottom:248.413333pt;}
.y10f{bottom:250.600000pt;}
.y16e{bottom:253.160000pt;}
.y14a{bottom:253.641333pt;}
.y194{bottom:254.280000pt;}
.y1c7{bottom:256.041333pt;}
.y23{bottom:257.960000pt;}
.y3f{bottom:260.841333pt;}
.y17b{bottom:261.160000pt;}
.y64{bottom:262.974667pt;}
.yd8{bottom:266.921333pt;}
.y10e{bottom:268.521333pt;}
.y193{bottom:268.841333pt;}
.y149{bottom:269.160000pt;}
.y1c6{bottom:270.600000pt;}
.y22{bottom:272.521333pt;}
.y86{bottom:273.854667pt;}
.y16d{bottom:275.880000pt;}
.y63{bottom:277.533333pt;}
.y3e{bottom:283.400000pt;}
.y10d{bottom:283.880000pt;}
.y148{bottom:284.680000pt;}
.y1c5{bottom:285.160000pt;}
.y21{bottom:287.080000pt;}
.y85{bottom:288.413333pt;}
.y16c{bottom:290.280000pt;}
.y3d{bottom:297.960000pt;}
.y10c{bottom:299.241333pt;}
.y1c4{bottom:299.721333pt;}
.yd7{bottom:300.040000pt;}
.y62{bottom:300.093333pt;}
.y20{bottom:301.641333pt;}
.y84{bottom:302.973333pt;}
.y16b{bottom:305.000000pt;}
.y192{bottom:312.521333pt;}
.y3c{bottom:312.680000pt;}
.y147{bottom:313.800000pt;}
.y1c3{bottom:314.280000pt;}
.y10b{bottom:314.600000pt;}
.y61{bottom:314.654667pt;}
.yd6{bottom:315.400000pt;}
.y1f{bottom:316.200000pt;}
.y83{bottom:317.533333pt;}
.y16a{bottom:319.400000pt;}
.y3b{bottom:327.080000pt;}
.y1c2{bottom:328.841333pt;}
.y60{bottom:329.213333pt;}
.y10a{bottom:329.800000pt;}
.y1e{bottom:330.760000pt;}
.y82{bottom:332.093333pt;}
.y169{bottom:334.121333pt;}
.y146{bottom:336.360000pt;}
.y3a{bottom:341.800000pt;}
.y1c1{bottom:343.400000pt;}
.y5f{bottom:343.773333pt;}
.y109{bottom:345.160000pt;}
.y1d{bottom:345.321333pt;}
.y81{bottom:346.654667pt;}
.y168{bottom:348.680000pt;}
.y191{bottom:349.641333pt;}
.y145{bottom:350.921333pt;}
.yd4{bottom:351.080000pt;}
.y39{bottom:356.200000pt;}
.y17a{bottom:356.680000pt;}
.y1c0{bottom:357.960000pt;}
.y5e{bottom:358.333333pt;}
.y1c{bottom:359.880000pt;}
.y108{bottom:360.521333pt;}
.y80{bottom:361.213333pt;}
.y167{bottom:363.240000pt;}
.y190{bottom:364.200000pt;}
.y144{bottom:365.480000pt;}
.y38{bottom:370.921333pt;}
.y179{bottom:371.240000pt;}
.y1bf{bottom:372.680000pt;}
.y5d{bottom:372.893333pt;}
.y1b{bottom:374.441333pt;}
.yd2{bottom:374.760000pt;}
.y7f{bottom:375.773333pt;}
.y107{bottom:375.880000pt;}
.y18f{bottom:378.760000pt;}
.y143{bottom:380.040000pt;}
.y37{bottom:385.480000pt;}
.y166{bottom:385.800000pt;}
.y1be{bottom:387.080000pt;}
.y5c{bottom:387.454667pt;}
.y1a{bottom:389.000000pt;}
.y7e{bottom:390.333333pt;}
.y106{bottom:391.240000pt;}
.y18e{bottom:393.480000pt;}
.y142{bottom:394.600000pt;}
.y36{bottom:400.040000pt;}
.y165{bottom:400.360000pt;}
.y1bd{bottom:401.800000pt;}
.y5b{bottom:402.013333pt;}
.y19{bottom:403.560000pt;}
.y7d{bottom:404.893333pt;}
.y105{bottom:406.600000pt;}
.y18d{bottom:407.880000pt;}
.y141{bottom:409.160000pt;}
.y51{bottom:413.600000pt;}
.y35{bottom:414.600000pt;}
.y164{bottom:414.921333pt;}
.y5a{bottom:416.573333pt;}
.y7c{bottom:419.454667pt;}
.y104{bottom:421.800000pt;}
.y18c{bottom:422.600000pt;}
.y140{bottom:423.880000pt;}
.y1bc{bottom:424.200000pt;}
.y18{bottom:426.760000pt;}
.y34{bottom:429.000000pt;}
.y163{bottom:429.480000pt;}
.y59{bottom:431.133333pt;}
.y7b{bottom:434.013333pt;}
.y18b{bottom:437.000000pt;}
.yd5{bottom:438.066667pt;}
.y13f{bottom:438.280000pt;}
.y1bb{bottom:438.921333pt;}
.y103{bottom:439.880000pt;}
.ycd{bottom:444.040000pt;}
.y58{bottom:445.693333pt;}
.y13e{bottom:453.000000pt;}
.y1ba{bottom:453.480000pt;}
.y102{bottom:455.240000pt;}
.y7a{bottom:456.573333pt;}
.y162{bottom:458.600000pt;}
.ycc{bottom:459.400000pt;}
.y18a{bottom:459.721333pt;}
.y57{bottom:460.254667pt;}
.yd3{bottom:461.600000pt;}
.y13d{bottom:467.400000pt;}
.y1b9{bottom:468.040000pt;}
.y101{bottom:470.600000pt;}
.y79{bottom:471.133333pt;}
.y161{bottom:473.160000pt;}
.y189{bottom:474.280000pt;}
.y56{bottom:474.813333pt;}
.yca{bottom:479.880000pt;}
.y13c{bottom:481.960000pt;}
.y1b8{bottom:482.600000pt;}
.y78{bottom:485.693333pt;}
.y100{bottom:485.800000pt;}
.yce{bottom:488.000000pt;}
.y188{bottom:488.841333pt;}
.y160{bottom:495.721333pt;}
.y1b7{bottom:497.000000pt;}
.y55{bottom:498.013333pt;}
.y77{bottom:500.413333pt;}
.yff{bottom:501.160000pt;}
.y187{bottom:503.400000pt;}
.y13b{bottom:504.680000pt;}
.y15f{bottom:510.280000pt;}
.y1b6{bottom:511.721333pt;}
.y76{bottom:514.813333pt;}
.yfe{bottom:516.521333pt;}
.y186{bottom:517.960000pt;}
.y13a{bottom:519.080000pt;}
.y15e{bottom:524.841333pt;}
.y1b5{bottom:526.280000pt;}
.yc7{bottom:529.000000pt;}
.y54{bottom:529.533333pt;}
.yfd{bottom:531.880000pt;}
.y185{bottom:532.521333pt;}
.y139{bottom:533.800000pt;}
.y15d{bottom:539.400000pt;}
.y1b4{bottom:540.841333pt;}
.y53{bottom:543.933333pt;}
.yc6{bottom:544.200000pt;}
.y184{bottom:547.080000pt;}
.yfc{bottom:547.240000pt;}
.y138{bottom:548.200000pt;}
.y15c{bottom:553.960000pt;}
.y16{bottom:554.813333pt;}
.y1b3{bottom:555.400000pt;}
.y52{bottom:558.493333pt;}
.y183{bottom:561.641333pt;}
.yc5{bottom:562.280000pt;}
.yfb{bottom:562.600000pt;}
.y137{bottom:562.921333pt;}
.ycb{bottom:566.733333pt;}
.y15b{bottom:568.521333pt;}
.y136{bottom:577.480000pt;}
.yc4{bottom:577.641333pt;}
.yfa{bottom:577.800000pt;}
.y1b2{bottom:577.960000pt;}
.y15a{bottom:583.080000pt;}
.y182{bottom:584.200000pt;}
.y15{bottom:585.854667pt;}
.y135{bottom:592.040000pt;}
.y1b1{bottom:592.521333pt;}
.yf9{bottom:593.160000pt;}
.yc8{bottom:594.733333pt;}
.y159{bottom:597.641333pt;}
.yc0{bottom:597.960000pt;}
.y181{bottom:598.760000pt;}
.y14{bottom:601.213333pt;}
.y134{bottom:606.600000pt;}
.y1b0{bottom:607.080000pt;}
.yf8{bottom:608.521333pt;}
.y198{bottom:612.200000pt;}
.y13{bottom:616.574667pt;}
.y158{bottom:620.200000pt;}
.y133{bottom:621.160000pt;}
.y1af{bottom:621.640000pt;}
.yf7{bottom:623.880000pt;}
.y12{bottom:631.933333pt;}
.y157{bottom:634.760000pt;}
.y132{bottom:635.721333pt;}
.y1ae{bottom:636.200000pt;}
.y11{bottom:647.133333pt;}
.y131{bottom:650.280000pt;}
.y1ad{bottom:650.760000pt;}
.yf6{bottom:651.240000pt;}
.y10{bottom:662.493333pt;}
.y1ac{bottom:665.321333pt;}
.y130{bottom:672.840000pt;}
.yf5{bottom:674.600000pt;}
.yf{bottom:677.854667pt;}
.y1ab{bottom:679.880000pt;}
.yc1{bottom:684.933333pt;}
.y12f{bottom:687.400000pt;}
.yf4{bottom:689.960000pt;}
.ye{bottom:693.213333pt;}
.y1aa{bottom:694.440000pt;}
.y12e{bottom:701.960000pt;}
.yf3{bottom:705.321333pt;}
.yd{bottom:708.574667pt;}
.y1a9{bottom:709.000000pt;}
.yba{bottom:711.333333pt;}
.y12d{bottom:716.521333pt;}
.yf2{bottom:720.680000pt;}
.yb0{bottom:723.080000pt;}
.y1a8{bottom:723.560000pt;}
.yc{bottom:723.933333pt;}
.y12c{bottom:731.080000pt;}
.yf1{bottom:736.040000pt;}
.y1a7{bottom:738.121333pt;}
.yaf{bottom:738.440000pt;}
.yb{bottom:739.133333pt;}
.y12b{bottom:745.640000pt;}
.yf0{bottom:751.400000pt;}
.y1a6{bottom:752.680000pt;}
.yae{bottom:753.800000pt;}
.ya{bottom:754.493333pt;}
.yb1{bottom:759.333333pt;}
.y12a{bottom:760.200000pt;}
.yef{bottom:766.600000pt;}
.yad{bottom:769.000000pt;}
.y9{bottom:770.333333pt;}
.y129{bottom:774.760000pt;}
.y1a5{bottom:775.240000pt;}
.yee{bottom:781.960000pt;}
.y128{bottom:789.321333pt;}
.y1a4{bottom:789.800000pt;}
.yed{bottom:797.321333pt;}
.y1a3{bottom:804.360000pt;}
.y8{bottom:806.333333pt;}
.yab{bottom:812.521333pt;}
.yec{bottom:815.400000pt;}
.y1d3{bottom:816.933333pt;}
.y1a2{bottom:819.080000pt;}
.y7{bottom:824.254667pt;}
.yaa{bottom:827.721333pt;}
.yeb{bottom:830.600000pt;}
.y1a1{bottom:833.480000pt;}
.y6{bottom:842.173333pt;}
.yea{bottom:845.960000pt;}
.ya9{bottom:848.200000pt;}
.ye9{bottom:861.321333pt;}
.y1a0{bottom:862.600000pt;}
.ya4{bottom:871.721333pt;}
.y5{bottom:875.293333pt;}
.ye8{bottom:876.680000pt;}
.y19f{bottom:877.160000pt;}
.yac{bottom:879.200000pt;}
.y4{bottom:902.813333pt;}
.y126{bottom:918.733333pt;}
.y124{bottom:932.400000pt;}
.ya7{bottom:935.066667pt;}
.y3{bottom:938.013333pt;}
.y122{bottom:945.333333pt;}
.y120{bottom:958.266667pt;}
.ya5{bottom:958.733333pt;}
.y2{bottom:965.533333pt;}
.y11e{bottom:971.133333pt;}
.y1{bottom:993.054667pt;}
.h22{height:12.866667pt;}
.h1f{height:12.933333pt;}
.h24{height:13.600000pt;}
.h8{height:22.733333pt;}
.he{height:23.666667pt;}
.h1c{height:23.733333pt;}
.hb{height:25.266667pt;}
.hc{height:25.714500pt;}
.h1b{height:25.732583pt;}
.h19{height:27.432417pt;}
.h20{height:29.097396pt;}
.h23{height:29.831120pt;}
.h21{height:32.689771pt;}
.h3{height:35.965104pt;}
.h15{height:36.509167pt;}
.h4{height:36.872005pt;}
.h25{height:39.959200pt;}
.h1e{height:43.222630pt;}
.h1{height:43.375000pt;}
.h12{height:44.082000pt;}
.h9{height:44.113000pt;}
.h18{height:45.466667pt;}
.ha{height:47.027000pt;}
.h17{height:49.413233pt;}
.h13{height:53.133333pt;}
.h11{height:54.324583pt;}
.h1a{height:60.130000pt;}
.h1d{height:62.803000pt;}
.hd{height:62.984333pt;}
.h2{height:65.062500pt;}
.h14{height:70.540500pt;}
.h16{height:70.843667pt;}
.h10{height:71.981750pt;}
.h7{height:89.066667pt;}
.h26{height:168.133333pt;}
.h5{height:442.000000pt;}
.h6{height:571.466667pt;}
.hf{height:890.133333pt;}
.h0{height:1056.000000pt;}
.w6{width:16.000000pt;}
.we{width:17.600000pt;}
.wa{width:18.533333pt;}
.w3{width:50.533333pt;}
.w5{width:68.133333pt;}
.w12{width:70.733333pt;}
.w9{width:73.266667pt;}
.wb{width:80.000000pt;}
.w10{width:81.066667pt;}
.w11{width:84.600000pt;}
.wf{width:107.866667pt;}
.wc{width:112.000000pt;}
.w2{width:116.200000pt;}
.wd{width:126.266667pt;}
.w8{width:130.533333pt;}
.w4{width:142.400000pt;}
.w7{width:152.533333pt;}
.w1{width:409.066667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:1.917333pt;}
.x35{left:2.908000pt;}
.x2d{left:4.458667pt;}
.x3f{left:7.160000pt;}
.xe{left:10.057333pt;}
.x3a{left:11.253333pt;}
.x29{left:12.162667pt;}
.x4{left:13.066667pt;}
.x13{left:21.584000pt;}
.x22{left:25.518667pt;}
.x24{left:27.849333pt;}
.x23{left:30.597333pt;}
.x5{left:32.266667pt;}
.x1b{left:34.422667pt;}
.x26{left:36.092000pt;}
.x47{left:37.066667pt;}
.x6{left:39.786667pt;}
.xd{left:41.598667pt;}
.x27{left:43.502667pt;}
.x33{left:45.813333pt;}
.x34{left:48.305333pt;}
.x1c{left:51.489333pt;}
.x2f{left:55.125333pt;}
.x36{left:56.238667pt;}
.x1{left:59.520000pt;}
.x30{left:60.584000pt;}
.x25{left:65.732000pt;}
.x2c{left:72.958667pt;}
.x2{left:78.720000pt;}
.x16{left:84.320000pt;}
.x1f{left:86.953333pt;}
.xa{left:93.410667pt;}
.x2e{left:98.749333pt;}
.x1e{left:101.313333pt;}
.x1d{left:102.686667pt;}
.x20{left:106.308000pt;}
.x9{left:107.268000pt;}
.x38{left:111.106667pt;}
.x37{left:117.212000pt;}
.x46{left:119.625333pt;}
.x12{left:120.800000pt;}
.x19{left:123.682667pt;}
.xc{left:129.933333pt;}
.x11{left:134.956000pt;}
.x18{left:138.818667pt;}
.x17{left:160.933333pt;}
.x3c{left:162.400000pt;}
.x43{left:163.533333pt;}
.x1a{left:172.000000pt;}
.x32{left:174.066667pt;}
.xf{left:190.560000pt;}
.x3d{left:193.440000pt;}
.x14{left:196.000000pt;}
.x2b{left:197.266667pt;}
.x21{left:200.466667pt;}
.x7{left:211.200000pt;}
.x31{left:239.520000pt;}
.x28{left:242.733333pt;}
.x44{left:244.533333pt;}
.x2a{left:270.078667pt;}
.x8{left:274.866667pt;}
.x39{left:288.133333pt;}
.x3b{left:316.800000pt;}
.x45{left:329.066667pt;}
.xb{left:392.640000pt;}
.x3{left:406.933333pt;}
.x3e{left:416.200000pt;}
.x40{left:524.000000pt;}
.x10{left:526.400000pt;}
.x41{left:605.000000pt;}
.x42{left:689.533333pt;}
}




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