
    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_be576724d33ec0d839c43b4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_d30c3688952e1f86b72fc740.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973000;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_05e01f14831bee109097a23d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971000;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_fe3d51001694c43fa7e227f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.930000;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_f240928273646639f5e58a7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.827000;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_c2d8a1ad0d56c4a5e1b3bf17.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.956000;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_7e96984f67980889a2304fb8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a757fb582a6b455a6f8adabc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.700000;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:-17.820000px;}
.v5{vertical-align:-15.000000px;}
.v4{vertical-align:-3.961800px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.961800px;}
.v9{vertical-align:17.820000px;}
.v1{vertical-align:20.790000px;}
.v8{vertical-align:27.819000px;}
.v6{vertical-align:30.000000px;}
.v7{vertical-align:32.181000px;}
.va{vertical-align:60.000000px;}
.ls35{letter-spacing:-6.588000px;}
.ls18{letter-spacing:-5.880000px;}
.ls3b{letter-spacing:-5.520000px;}
.ls23{letter-spacing:-5.292000px;}
.ls2d{letter-spacing:-5.238000px;}
.lsa{letter-spacing:-3.723000px;}
.ls2b{letter-spacing:-2.106000px;}
.ls4b{letter-spacing:-1.890000px;}
.ls36{letter-spacing:-1.566000px;}
.ls3d{letter-spacing:-1.260000px;}
.ls2f{letter-spacing:-1.134000px;}
.ls9{letter-spacing:-1.122000px;}
.ls32{letter-spacing:-1.080000px;}
.ls49{letter-spacing:-1.026000px;}
.ls22{letter-spacing:-0.918000px;}
.ls47{letter-spacing:-0.864000px;}
.ls4d{letter-spacing:-0.729000px;}
.ls2a{letter-spacing:-0.720000px;}
.ls41{letter-spacing:-0.702000px;}
.ls3c{letter-spacing:-0.660000px;}
.ls27{letter-spacing:-0.648000px;}
.ls17{letter-spacing:-0.600000px;}
.ls43{letter-spacing:-0.594000px;}
.ls20{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.510000px;}
.ls29{letter-spacing:-0.480000px;}
.ls21{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.408000px;}
.ls42{letter-spacing:-0.378000px;}
.ls3e{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.330000px;}
.ls4a{letter-spacing:-0.324000px;}
.ls28{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.255000px;}
.lse{letter-spacing:-0.240000px;}
.ls30{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.204000px;}
.ls16{letter-spacing:-0.180000px;}
.ls2c{letter-spacing:-0.162000px;}
.ls3a{letter-spacing:-0.132000px;}
.ls12{letter-spacing:-0.120000px;}
.ls48{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.054000px;}
.lsf{letter-spacing:0.060000px;}
.ls11{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.124200px;}
.ls3f{letter-spacing:0.162000px;}
.ls19{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.204000px;}
.ls37{letter-spacing:0.211800px;}
.ls10{letter-spacing:0.240000px;}
.ls31{letter-spacing:0.270000px;}
.ls13{letter-spacing:0.300000px;}
.ls46{letter-spacing:0.324000px;}
.ls1c{letter-spacing:0.360000px;}
.ls45{letter-spacing:0.363000px;}
.ls44{letter-spacing:0.378000px;}
.lsc{letter-spacing:0.420000px;}
.ls40{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.840000px;}
.ls1d{letter-spacing:1.456200px;}
.ls2{letter-spacing:2.213400px;}
.ls1f{letter-spacing:2.343000px;}
.ls25{letter-spacing:2.343600px;}
.ls38{letter-spacing:2.373600px;}
.ls1a{letter-spacing:2.884200px;}
.ls15{letter-spacing:2.907600px;}
.ls1b{letter-spacing:3.088200px;}
.ls1e{letter-spacing:5.482200px;}
.ls39{letter-spacing:5.483400px;}
.ls34{letter-spacing:58.987800px;}
.ls26{letter-spacing:74.487600px;}
.ls2e{letter-spacing:74.488200px;}
.ls33{letter-spacing:224.047800px;}
.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;}
}
.wsaa{word-spacing:-60.000000px;}
.ws86{word-spacing:-54.000000px;}
.ws9{word-spacing:-13.992000px;}
.ws71{word-spacing:-13.980000px;}
.ws59{word-spacing:-13.740000px;}
.ws58{word-spacing:-13.671000px;}
.ws83{word-spacing:-13.620000px;}
.wscd{word-spacing:-13.260000px;}
.wse9{word-spacing:-12.690000px;}
.wsa3{word-spacing:-12.528000px;}
.ws89{word-spacing:-12.366000px;}
.wscc{word-spacing:-12.360000px;}
.ws73{word-spacing:-12.258000px;}
.wse5{word-spacing:-12.204000px;}
.wse8{word-spacing:-12.150000px;}
.wsa2{word-spacing:-12.096000px;}
.wsa4{word-spacing:-11.826000px;}
.wsa6{word-spacing:-11.718000px;}
.wse4{word-spacing:-11.664000px;}
.ws8a{word-spacing:-11.610000px;}
.ws8{word-spacing:-11.577000px;}
.wsa5{word-spacing:-11.178000px;}
.ws6{word-spacing:-11.169000px;}
.wsba{word-spacing:-10.800000px;}
.ws4{word-spacing:-10.725750px;}
.wse6{word-spacing:-10.476000px;}
.ws69{word-spacing:-10.305000px;}
.ws5a{word-spacing:-10.215000px;}
.ws84{word-spacing:-10.152000px;}
.ws3{word-spacing:-9.540000px;}
.ws2{word-spacing:-9.522000px;}
.ws1{word-spacing:-9.397800px;}
.ws5{word-spacing:-9.274500px;}
.wse7{word-spacing:-8.545500px;}
.wsbd{word-spacing:-8.100000px;}
.ws7{word-spacing:-7.854000px;}
.wsb4{word-spacing:-5.670000px;}
.ws11{word-spacing:-3.915000px;}
.wsf8{word-spacing:-0.972000px;}
.wsff{word-spacing:-0.324000px;}
.ws17{word-spacing:-0.204000px;}
.ws55{word-spacing:-0.060000px;}
.wsb2{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.wsde{word-spacing:0.054000px;}
.ws6b{word-spacing:0.120000px;}
.ws21{word-spacing:0.153000px;}
.wsf6{word-spacing:0.162000px;}
.ws32{word-spacing:0.180000px;}
.ws92{word-spacing:0.240000px;}
.ws56{word-spacing:0.300000px;}
.wsf9{word-spacing:0.324000px;}
.ws28{word-spacing:0.360000px;}
.ws7c{word-spacing:0.420000px;}
.ws38{word-spacing:0.480000px;}
.wsd5{word-spacing:0.540000px;}
.ws4e{word-spacing:0.600000px;}
.wsdf{word-spacing:0.648000px;}
.ws50{word-spacing:0.660000px;}
.wsdc{word-spacing:0.702000px;}
.ws12{word-spacing:0.720000px;}
.wsa{word-spacing:0.768000px;}
.ws8f{word-spacing:0.780000px;}
.wsd4{word-spacing:0.810000px;}
.ws42{word-spacing:0.840000px;}
.wsf5{word-spacing:0.864000px;}
.ws66{word-spacing:0.900000px;}
.ws34{word-spacing:0.960000px;}
.wsea{word-spacing:0.972000px;}
.wsdd{word-spacing:1.026000px;}
.ws43{word-spacing:1.080000px;}
.ws1f{word-spacing:1.122000px;}
.ws5b{word-spacing:1.140000px;}
.ws6a{word-spacing:1.260000px;}
.wsd8{word-spacing:1.296000px;}
.ws70{word-spacing:1.320000px;}
.ws1e{word-spacing:1.377000px;}
.ws4a{word-spacing:1.380000px;}
.wsee{word-spacing:1.404000px;}
.ws31{word-spacing:1.440000px;}
.wsfa{word-spacing:1.458000px;}
.ws6f{word-spacing:1.500000px;}
.wseb{word-spacing:1.512000px;}
.ws27{word-spacing:1.560000px;}
.ws23{word-spacing:1.581000px;}
.ws52{word-spacing:1.620000px;}
.wsc8{word-spacing:1.680000px;}
.wsd6{word-spacing:1.728000px;}
.wsbc{word-spacing:1.740000px;}
.wsef{word-spacing:1.782000px;}
.wsc1{word-spacing:1.800000px;}
.ws4c{word-spacing:1.860000px;}
.wsf{word-spacing:1.863000px;}
.ws13{word-spacing:1.890000px;}
.ws47{word-spacing:1.920000px;}
.wscf{word-spacing:1.980000px;}
.wsbb{word-spacing:2.040000px;}
.ws1b{word-spacing:2.091000px;}
.ws41{word-spacing:2.100000px;}
.wse2{word-spacing:2.106000px;}
.wsb{word-spacing:2.160000px;}
.ws20{word-spacing:2.193000px;}
.wsc{word-spacing:2.208000px;}
.ws6d{word-spacing:2.220000px;}
.ws19{word-spacing:2.244000px;}
.ws37{word-spacing:2.280000px;}
.ws24{word-spacing:2.295000px;}
.ws61{word-spacing:2.340000px;}
.wse3{word-spacing:2.376000px;}
.ws25{word-spacing:2.397000px;}
.ws29{word-spacing:2.400000px;}
.ws79{word-spacing:2.430000px;}
.ws48{word-spacing:2.460000px;}
.ws16{word-spacing:2.484000px;}
.ws10{word-spacing:2.520000px;}
.ws2c{word-spacing:2.580000px;}
.wsf0{word-spacing:2.592000px;}
.ws5d{word-spacing:2.640000px;}
.wsfd{word-spacing:2.646000px;}
.ws3a{word-spacing:2.700000px;}
.ws3e{word-spacing:2.709000px;}
.ws49{word-spacing:2.760000px;}
.ws14{word-spacing:2.808000px;}
.wscb{word-spacing:2.820000px;}
.ws15{word-spacing:2.835000px;}
.ws3d{word-spacing:2.838000px;}
.wsd9{word-spacing:2.862000px;}
.ws35{word-spacing:2.880000px;}
.ws1c{word-spacing:2.907000px;}
.ws2d{word-spacing:2.940000px;}
.wsbe{word-spacing:2.970000px;}
.ws3b{word-spacing:3.000000px;}
.wsd7{word-spacing:3.024000px;}
.ws94{word-spacing:3.060000px;}
.ws22{word-spacing:3.111000px;}
.ws67{word-spacing:3.120000px;}
.wsf7{word-spacing:3.132000px;}
.ws54{word-spacing:3.180000px;}
.wsd3{word-spacing:3.186000px;}
.ws5c{word-spacing:3.300000px;}
.wsec{word-spacing:3.348000px;}
.wsc0{word-spacing:3.360000px;}
.wsda{word-spacing:3.402000px;}
.ws64{word-spacing:3.480000px;}
.wsce{word-spacing:3.498000px;}
.wsf1{word-spacing:3.510000px;}
.wsd2{word-spacing:3.540000px;}
.ws60{word-spacing:3.660000px;}
.wsd{word-spacing:3.684600px;}
.wse{word-spacing:3.726000px;}
.ws62{word-spacing:3.780000px;}
.wsd1{word-spacing:3.840000px;}
.wsc2{word-spacing:3.900000px;}
.ws6c{word-spacing:3.960000px;}
.ws7a{word-spacing:4.020000px;}
.ws4d{word-spacing:4.080000px;}
.ws36{word-spacing:4.200000px;}
.ws91{word-spacing:4.260000px;}
.wsd0{word-spacing:4.320000px;}
.wsc7{word-spacing:4.440000px;}
.wse1{word-spacing:4.482000px;}
.ws2f{word-spacing:4.500000px;}
.ws2e{word-spacing:4.560000px;}
.ws44{word-spacing:4.620000px;}
.ws1d{word-spacing:4.641000px;}
.wsca{word-spacing:4.680000px;}
.wsc4{word-spacing:4.740000px;}
.wsc9{word-spacing:4.800000px;}
.ws1a{word-spacing:4.845000px;}
.ws51{word-spacing:4.860000px;}
.wsdb{word-spacing:4.914000px;}
.ws30{word-spacing:4.920000px;}
.wsfc{word-spacing:4.968000px;}
.wsc6{word-spacing:4.980000px;}
.ws7b{word-spacing:5.040000px;}
.ws63{word-spacing:5.100000px;}
.wsbf{word-spacing:5.160000px;}
.ws65{word-spacing:5.280000px;}
.ws18{word-spacing:5.304000px;}
.ws2b{word-spacing:5.340000px;}
.ws53{word-spacing:5.400000px;}
.ws33{word-spacing:5.460000px;}
.ws40{word-spacing:5.520000px;}
.ws57{word-spacing:5.580000px;}
.ws39{word-spacing:5.640000px;}
.wsfb{word-spacing:5.670000px;}
.ws3c{word-spacing:5.700000px;}
.ws46{word-spacing:5.760000px;}
.ws4b{word-spacing:5.880000px;}
.wsed{word-spacing:5.940000px;}
.ws5f{word-spacing:6.000000px;}
.wsf2{word-spacing:6.048000px;}
.ws8e{word-spacing:6.060000px;}
.ws90{word-spacing:6.120000px;}
.wsf3{word-spacing:6.156000px;}
.ws93{word-spacing:6.180000px;}
.wsfe{word-spacing:6.264000px;}
.ws6e{word-spacing:6.300000px;}
.ws5e{word-spacing:6.360000px;}
.wsc3{word-spacing:6.540000px;}
.ws45{word-spacing:6.600000px;}
.wsc5{word-spacing:6.660000px;}
.wsf4{word-spacing:6.696000px;}
.wse0{word-spacing:6.858000px;}
.ws26{word-spacing:7.140000px;}
.ws68{word-spacing:7.200000px;}
.ws3f{word-spacing:7.560000px;}
.ws4f{word-spacing:8.760000px;}
.ws88{word-spacing:28.692000px;}
.ws98{word-spacing:45.968400px;}
.ws9b{word-spacing:48.884400px;}
.ws8b{word-spacing:51.803400px;}
.ws9a{word-spacing:51.804000px;}
.ws99{word-spacing:54.134400px;}
.ws95{word-spacing:64.794000px;}
.ws87{word-spacing:64.794600px;}
.wsa1{word-spacing:65.030400px;}
.ws97{word-spacing:67.094400px;}
.ws8d{word-spacing:67.095000px;}
.ws96{word-spacing:70.376400px;}
.ws8c{word-spacing:70.377000px;}
.ws9e{word-spacing:71.402400px;}
.ws9f{word-spacing:72.590400px;}
.ws9c{word-spacing:76.964400px;}
.wsb5{word-spacing:111.659400px;}
.wsaf{word-spacing:122.837400px;}
.wsad{word-spacing:141.555000px;}
.wsae{word-spacing:155.184600px;}
.wsb1{word-spacing:165.813600px;}
.wsb7{word-spacing:178.692000px;}
.ws2a{word-spacing:194.156400px;}
.wsb3{word-spacing:202.819800px;}
.wsb0{word-spacing:206.407200px;}
.wsb9{word-spacing:212.364000px;}
.wsb8{word-spacing:215.698200px;}
.wsa7{word-spacing:246.560400px;}
.wsa8{word-spacing:248.281800px;}
.wsa9{word-spacing:259.170000px;}
.wsb6{word-spacing:307.111800px;}
.wsab{word-spacing:339.562800px;}
.ws85{word-spacing:383.503800px;}
.wsac{word-spacing:419.964600px;}
.ws72{word-spacing:420.308400px;}
.ws74{word-spacing:619.722000px;}
.ws78{word-spacing:625.878000px;}
.ws7d{word-spacing:632.682600px;}
.ws7f{word-spacing:638.837400px;}
.ws76{word-spacing:638.838000px;}
.ws7e{word-spacing:651.798000px;}
.ws81{word-spacing:664.758000px;}
.ws80{word-spacing:860.821200px;}
.ws75{word-spacing:930.368400px;}
.ws77{word-spacing:937.496400px;}
.ws82{word-spacing:951.157800px;}
.wsa0{word-spacing:1255.910400px;}
.ws9d{word-spacing:1278.369000px;}
._36{margin-left:-13.867800px;}
._b{margin-left:-9.697200px;}
._3{margin-left:-7.552800px;}
._4{margin-left:-6.036000px;}
._5{margin-left:-4.240800px;}
._0{margin-left:-2.884800px;}
._1{margin-left:-1.056000px;}
._2{width:1.416000px;}
._7{width:3.111000px;}
._6{width:4.719000px;}
._9{width:5.880000px;}
._a{width:7.155000px;}
._16{width:75.003000px;}
._35{width:180.374400px;}
._34{width:261.725400px;}
._32{width:271.428000px;}
._17{width:313.555800px;}
._2d{width:335.580000px;}
._2e{width:338.891400px;}
._2f{width:342.274200px;}
._30{width:364.797000px;}
._1c{width:374.625000px;}
._2a{width:403.999800px;}
._14{width:416.103000px;}
._c{width:417.903000px;}
._31{width:453.711000px;}
._1f{width:500.253000px;}
._19{width:516.201000px;}
._33{width:542.481000px;}
._12{width:660.440400px;}
._29{width:677.121000px;}
._11{width:689.125800px;}
._13{width:702.091800px;}
._8{width:712.654200px;}
._18{width:760.196400px;}
._10{width:765.241800px;}
._27{width:769.185000px;}
._15{width:789.111000px;}
._1b{width:800.420400px;}
._26{width:825.621000px;}
._28{width:835.143000px;}
._1e{width:887.918400px;}
._d{width:893.570400px;}
._2b{width:898.041000px;}
._2c{width:904.574400px;}
._f{width:913.574400px;}
._e{width:926.533800px;}
._22{width:934.131000px;}
._23{width:978.104400px;}
._25{width:1069.095000px;}
._1d{width:1134.129000px;}
._20{width:1140.573000px;}
._21{width:1170.115800px;}
._1a{width:1194.753000px;}
._24{width:1255.461000px;}
.fc2{color:rgb(42,62,146);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:40.500000px;}
.fs6{font-size:41.400000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fs8{font-size:47.250000px;}
.fs5{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsc{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y28{bottom:51.826800px;}
.y16c{bottom:59.534100px;}
.y27{bottom:63.826800px;}
.y14b{bottom:66.317850px;}
.y5{bottom:66.525004px;}
.y16b{bottom:74.534100px;}
.y26{bottom:75.826800px;}
.y1cd{bottom:76.903050px;}
.y1a8{bottom:78.925950px;}
.y14a{bottom:80.567850px;}
.y112{bottom:82.936650px;}
.yb5{bottom:83.857950px;}
.y111{bottom:90.436650px;}
.y147{bottom:90.577350px;}
.y1cc{bottom:93.103050px;}
.ye8{bottom:95.302200px;}
.y4{bottom:97.125005px;}
.y24{bottom:97.562700px;}
.y196{bottom:98.425950px;}
.y149{bottom:100.586850px;}
.y73{bottom:101.748750px;}
.yb4{bottom:103.357950px;}
.y8e{bottom:105.740850px;}
.y1cb{bottom:109.303050px;}
.y1fa{bottom:111.579300px;}
.y148{bottom:114.836850px;}
.ye7{bottom:115.746450px;}
.y195{bottom:117.925950px;}
.y110{bottom:118.380900px;}
.y1a7{bottom:118.756500px;}
.y72{bottom:121.248750px;}
.y8d{bottom:125.240850px;}
.y1f9{bottom:127.779300px;}
.y1ca{bottom:129.754950px;}
.yb3{bottom:133.487850px;}
.y146{bottom:134.856000px;}
.y25{bottom:136.099500px;}
.ye6{bottom:136.190700px;}
.y194{bottom:137.425950px;}
.y1a6{bottom:138.256500px;}
.y10f{bottom:138.825150px;}
.y23{bottom:139.264499px;}
.y71{bottom:140.748750px;}
.y1f8{bottom:143.979300px;}
.y8c{bottom:144.740850px;}
.y1c9{bottom:145.954950px;}
.y10b{bottom:146.325150px;}
.y10c{bottom:146.870400px;}
.y145{bottom:149.106000px;}
.ycc{bottom:151.225050px;}
.y10e{bottom:153.825150px;}
.ye5{bottom:156.635100px;}
.y193{bottom:156.925950px;}
.y1a5{bottom:157.756650px;}
.y70{bottom:160.248750px;}
.y10a{bottom:161.325150px;}
.y144{bottom:163.356000px;}
.y8b{bottom:164.240850px;}
.y1f7{bottom:164.431200px;}
.y1c8{bottom:166.407000px;}
.y10d{bottom:168.825150px;}
.ycb{bottom:170.725050px;}
.y4a{bottom:174.303150px;}
.yb2{bottom:174.873600px;}
.y192{bottom:176.425950px;}
.y1a4{bottom:177.256650px;}
.y6f{bottom:179.748750px;}
.ye4{bottom:180.055650px;}
.y1f6{bottom:180.631350px;}
.y1c7{bottom:182.607000px;}
.y143{bottom:183.375000px;}
.y8a{bottom:183.740850px;}
.yca{bottom:190.225050px;}
.y13e{bottom:190.500000px;}
.y49{bottom:193.803150px;}
.yb1{bottom:194.373600px;}
.y191{bottom:195.925950px;}
.y1a3{bottom:196.756650px;}
.y1f5{bottom:196.831350px;}
.y1a{bottom:196.933500px;}
.y142{bottom:197.625000px;}
.y1c6{bottom:198.807000px;}
.y109{bottom:199.971450px;}
.y89{bottom:203.240850px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.yc9{bottom:209.725050px;}
.y6e{bottom:209.878650px;}
.ye3{bottom:211.201950px;}
.y141{bottom:211.875000px;}
.y1f4{bottom:213.031350px;}
.y48{bottom:213.303150px;}
.yb0{bottom:213.873600px;}
.y190{bottom:215.425950px;}
.y1a2{bottom:216.256650px;}
.y1c5{bottom:219.258900px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y88{bottom:222.740850px;}
.yc8{bottom:229.225050px;}
.y140{bottom:231.894150px;}
.y47{bottom:232.803150px;}
.yaf{bottom:233.373600px;}
.y1f3{bottom:233.483250px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y18f{bottom:234.925950px;}
.y1c4{bottom:235.458900px;}
.y1a1{bottom:235.756650px;}
.y108{bottom:235.931250px;}
.y6d{bottom:240.634500px;}
.y87{bottom:242.240850px;}
.y16a{bottom:243.510450px;}
.y13f{bottom:246.144150px;}
.ye2{bottom:247.161750px;}
.yc7{bottom:248.725050px;}
.y1f2{bottom:249.683250px;}
.y1c3{bottom:251.658900px;}
.y46{bottom:252.303150px;}
.yae{bottom:252.873600px;}
.y18e{bottom:254.425950px;}
.y1a0{bottom:255.256650px;}
.y107{bottom:255.431250px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y86{bottom:261.740850px;}
.y1f1{bottom:265.883250px;}
.y13d{bottom:266.163150px;}
.ye1{bottom:266.661750px;}
.y169{bottom:267.654750px;}
.yc6{bottom:268.225050px;}
.y13b{bottom:269.047650px;}
.y45{bottom:271.803150px;}
.y1c2{bottom:272.110950px;}
.yad{bottom:272.373600px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y18d{bottom:273.925950px;}
.y19f{bottom:274.756650px;}
.y106{bottom:274.931250px;}
.y168{bottom:275.154750px;}
.y85{bottom:281.240850px;}
.y13a{bottom:283.297650px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.ye0{bottom:286.161750px;}
.y13c{bottom:286.182300px;}
.y1f0{bottom:286.335300px;}
.yc5{bottom:287.725050px;}
.y6c{bottom:287.772300px;}
.y1c1{bottom:288.310950px;}
.y44{bottom:291.303150px;}
.yac{bottom:291.873600px;}
.y18c{bottom:293.425950px;}
.y19e{bottom:294.256650px;}
.y105{bottom:294.431250px;}
.y84{bottom:300.740850px;}
.y1ef{bottom:302.535300px;}
.y167{bottom:303.099000px;}
.y1c0{bottom:304.510950px;}
.ydf{bottom:305.661750px;}
.y139{bottom:306.201300px;}
.y6b{bottom:307.272300px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y166{bottom:310.599000px;}
.yab{bottom:311.373600px;}
.y18b{bottom:312.925950px;}
.y19d{bottom:313.756650px;}
.y104{bottom:313.931250px;}
.yc4{bottom:317.854950px;}
.y83{bottom:320.240850px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y1ee{bottom:322.987200px;}
.y43{bottom:323.559150px;}
.y1bf{bottom:324.962850px;}
.yde{bottom:325.161750px;}
.y136{bottom:326.220450px;}
.y6a{bottom:326.772300px;}
.yaa{bottom:330.873600px;}
.y18a{bottom:332.425950px;}
.y19c{bottom:333.256650px;}
.y103{bottom:333.431250px;}
.y165{bottom:338.543400px;}
.y1ed{bottom:339.187200px;}
.y82{bottom:339.740850px;}
.y135{bottom:340.470450px;}
.y1be{bottom:341.162850px;}
.ydd{bottom:344.661750px;}
.y164{bottom:346.043400px;}
.y138{bottom:346.239600px;}
.y69{bottom:346.272300px;}
.y11{bottom:348.133500px;}
.ya9{bottom:350.373600px;}
.y189{bottom:351.925950px;}
.y19b{bottom:352.756650px;}
.y102{bottom:352.931250px;}
.y1ec{bottom:355.387200px;}
.y1bd{bottom:357.362850px;}
.y81{bottom:359.240850px;}
.y137{bottom:360.489600px;}
.ydc{bottom:364.161750px;}
.y68{bottom:365.772300px;}
.ya8{bottom:369.873600px;}
.y188{bottom:371.425950px;}
.y19a{bottom:372.256650px;}
.y101{bottom:372.431250px;}
.y163{bottom:373.987650px;}
.y1eb{bottom:375.839100px;}
.y1bc{bottom:377.814900px;}
.yc3{bottom:378.740850px;}
.y134{bottom:380.508600px;}
.y162{bottom:381.487650px;}
.y42{bottom:383.452800px;}
.ydb{bottom:383.661750px;}
.y67{bottom:385.272300px;}
.y10{bottom:386.785499px;}
.y80{bottom:389.370750px;}
.ya7{bottom:389.373600px;}
.y187{bottom:390.925950px;}
.y199{bottom:391.756650px;}
.y100{bottom:391.931250px;}
.y1ea{bottom:392.039100px;}
.y1bb{bottom:394.014750px;}
.yc2{bottom:398.240850px;}
.y133{bottom:400.527750px;}
.yda{bottom:403.161750px;}
.y66{bottom:404.772300px;}
.y132{bottom:407.652750px;}
.yf{bottom:408.044999px;}
.y161{bottom:409.431900px;}
.y1ba{bottom:410.214900px;}
.y186{bottom:410.425950px;}
.y198{bottom:411.256650px;}
.yff{bottom:411.431250px;}
.y41{bottom:411.508650px;}
.y1e9{bottom:412.491150px;}
.y160{bottom:416.931900px;}
.yc1{bottom:417.740850px;}
.ya6{bottom:419.503500px;}
.yd9{bottom:422.661750px;}
.y65{bottom:424.272300px;}
.y40{bottom:426.808650px;}
.y1e8{bottom:428.691150px;}
.y185{bottom:429.925950px;}
.y1b9{bottom:430.666800px;}
.y7f{bottom:430.756650px;}
.yfe{bottom:430.931250px;}
.y131{bottom:434.796750px;}
.yc0{bottom:437.240850px;}
.y130{bottom:441.921750px;}
.yd8{bottom:442.161750px;}
.y64{bottom:443.772300px;}
.y15f{bottom:444.876150px;}
.y1e7{bottom:444.891150px;}
.y1b8{bottom:446.866800px;}
.y184{bottom:449.425950px;}
.y7e{bottom:450.256650px;}
.ya5{bottom:450.259500px;}
.yfd{bottom:450.431250px;}
.y15e{bottom:452.376150px;}
.y3f{bottom:454.864650px;}
.ybf{bottom:456.740850px;}
.yd7{bottom:461.661750px;}
.y1b7{bottom:463.066800px;}
.y63{bottom:463.272300px;}
.y1e6{bottom:465.343050px;}
.y183{bottom:468.925950px;}
.y12f{bottom:469.065900px;}
.y7d{bottom:469.756650px;}
.yfc{bottom:469.931250px;}
.y3e{bottom:470.164650px;}
.y12e{bottom:476.190900px;}
.ybe{bottom:476.240850px;}
.yd6{bottom:481.161750px;}
.y1e5{bottom:481.543050px;}
.y62{bottom:482.772300px;}
.y15d{bottom:483.296850px;}
.y1b6{bottom:483.518850px;}
.ye{bottom:484.864502px;}
.y3d{bottom:485.464650px;}
.y182{bottom:488.425950px;}
.y7c{bottom:489.256650px;}
.yfb{bottom:489.431250px;}
.ybd{bottom:495.740850px;}
.ya4{bottom:497.397150px;}
.y1b5{bottom:499.718700px;}
.yd5{bottom:500.661750px;}
.y3c{bottom:500.764650px;}
.y1e4{bottom:501.995100px;}
.y61{bottom:502.272300px;}
.yd{bottom:502.864502px;}
.y12d{bottom:503.334900px;}
.y181{bottom:507.925950px;}
.y7b{bottom:508.756650px;}
.yfa{bottom:508.931250px;}
.y12c{bottom:510.459900px;}
.y15c{bottom:514.443000px;}
.y1b4{bottom:515.918700px;}
.y3b{bottom:516.064650px;}
.ya3{bottom:516.597300px;}
.y1e3{bottom:518.195100px;}
.yc{bottom:520.864502px;}
.y60{bottom:521.772300px;}
.ybc{bottom:525.870750px;}
.y180{bottom:527.425950px;}
.y7a{bottom:528.256650px;}
.yf9{bottom:528.431250px;}
.yd4{bottom:530.791650px;}
.y3a{bottom:531.364650px;}
.ya2{bottom:535.797300px;}
.y1b3{bottom:536.370750px;}
.y12b{bottom:537.604050px;}
.y1e2{bottom:538.647000px;}
.yb{bottom:538.864499px;}
.y5f{bottom:541.272300px;}
.y12a{bottom:544.729050px;}
.y39{bottom:546.664650px;}
.y17f{bottom:546.925950px;}
.y79{bottom:547.756500px;}
.yf8{bottom:547.931250px;}
.y15b{bottom:550.402800px;}
.y1b2{bottom:552.570750px;}
.y1e1{bottom:554.847000px;}
.ya1{bottom:554.997300px;}
.ya{bottom:556.864499px;}
.y5e{bottom:560.772300px;}
.yd3{bottom:561.547650px;}
.y38{bottom:561.964650px;}
.y17e{bottom:566.425950px;}
.y78{bottom:567.256500px;}
.y1b1{bottom:568.770750px;}
.y15a{bottom:569.902800px;}
.y1e0{bottom:571.047000px;}
.y129{bottom:571.873200px;}
.ya0{bottom:574.197300px;}
.y37{bottom:577.264650px;}
.yf7{bottom:578.061150px;}
.y5d{bottom:580.272300px;}
.y17d{bottom:585.925950px;}
.y77{bottom:586.756500px;}
.y1b0{bottom:589.222650px;}
.y159{bottom:589.402800px;}
.y1df{bottom:591.499050px;}
.y128{bottom:591.892200px;}
.y36{bottom:592.564650px;}
.y9f{bottom:593.397150px;}
.y5c{bottom:599.772300px;}
.y1af{bottom:605.422650px;}
.y17c{bottom:605.425950px;}
.y76{bottom:606.256500px;}
.y1de{bottom:607.699050px;}
.y35{bottom:607.864650px;}
.y158{bottom:608.902800px;}
.y127{bottom:611.911350px;}
.y9e{bottom:612.597300px;}
.yd2{bottom:617.189400px;}
.y126{bottom:619.036350px;}
.y5b{bottom:619.272300px;}
.yf6{bottom:620.087400px;}
.y1ae{bottom:621.622650px;}
.y34{bottom:623.164650px;}
.y17b{bottom:624.925950px;}
.ybb{bottom:625.756500px;}
.y1dd{bottom:628.150950px;}
.y157{bottom:628.402800px;}
.y9d{bottom:631.797300px;}
.y75{bottom:636.386550px;}
.y5a{bottom:638.772300px;}
.yf5{bottom:640.531650px;}
.y1ad{bottom:642.074700px;}
.y1dc{bottom:644.350950px;}
.y17a{bottom:644.425950px;}
.yba{bottom:645.256500px;}
.y9{bottom:645.510000px;}
.y125{bottom:646.180350px;}
.y156{bottom:647.902800px;}
.y9c{bottom:650.997300px;}
.y124{bottom:653.305350px;}
.y59{bottom:658.272300px;}
.y1ac{bottom:658.274700px;}
.y33{bottom:659.724450px;}
.y1db{bottom:660.550950px;}
.yf4{bottom:660.976050px;}
.y179{bottom:663.925950px;}
.yb9{bottom:664.756500px;}
.y8{bottom:666.771000px;}
.y155{bottom:667.402800px;}
.y9b{bottom:670.197300px;}
.y1ab{bottom:674.474700px;}
.y1da{bottom:676.750950px;}
.y58{bottom:677.772300px;}
.y123{bottom:680.449500px;}
.yf3{bottom:681.420300px;}
.y178{bottom:683.425950px;}
.yb8{bottom:684.256500px;}
.y154{bottom:686.902800px;}
.y9a{bottom:689.397150px;}
.y32{bottom:691.335300px;}
.y121{bottom:694.699500px;}
.y197{bottom:694.886550px;}
.y1aa{bottom:694.926600px;}
.y1d9{bottom:697.203000px;}
.y57{bottom:697.272300px;}
.yf2{bottom:701.864550px;}
.y177{bottom:702.925950px;}
.yb7{bottom:703.756500px;}
.y31{bottom:707.835300px;}
.y99{bottom:708.597300px;}
.y122{bottom:708.949500px;}
.y1d8{bottom:713.403000px;}
.y56{bottom:716.772300px;}
.y153{bottom:717.032850px;}
.yf1{bottom:722.308800px;}
.y176{bottom:722.425950px;}
.y7{bottom:726.298500px;}
.y98{bottom:727.797300px;}
.y1a9{bottom:728.134500px;}
.y120{bottom:728.968500px;}
.y1d7{bottom:729.603000px;}
.y30{bottom:732.636300px;}
.yb6{bottom:733.886550px;}
.y55{bottom:736.272300px;}
.y175{bottom:741.925950px;}
.yf0{bottom:742.753200px;}
.y97{bottom:746.997300px;}
.y11f{bottom:748.987650px;}
.y1d6{bottom:750.054900px;}
.y3{bottom:752.599495px;}
.y54{bottom:755.772300px;}
.y152{bottom:758.418600px;}
.y174{bottom:761.425950px;}
.yef{bottom:763.197450px;}
.y96{bottom:766.197300px;}
.y11e{bottom:769.006650px;}
.y1d5{bottom:770.506950px;}
.y151{bottom:773.118600px;}
.y53{bottom:775.272300px;}
.y11d{bottom:776.131650px;}
.y2f{bottom:777.048000px;}
.y173{bottom:780.925950px;}
.yee{bottom:783.641700px;}
.y95{bottom:785.397150px;}
.y1d4{bottom:786.706950px;}
.y52{bottom:794.772300px;}
.y2e{bottom:796.548000px;}
.y150{bottom:796.963050px;}
.y172{bottom:800.425950px;}
.y1d3{bottom:802.906800px;}
.yd1{bottom:803.097150px;}
.y11c{bottom:803.275800px;}
.yed{bottom:804.085950px;}
.y94{bottom:804.597150px;}
.y11b{bottom:810.400800px;}
.y51{bottom:814.272300px;}
.y2d{bottom:816.048000px;}
.y14f{bottom:817.407300px;}
.y171{bottom:819.925950px;}
.yd0{bottom:822.597150px;}
.y1d2{bottom:823.358850px;}
.y93{bottom:823.797300px;}
.yec{bottom:824.530200px;}
.y50{bottom:833.772300px;}
.y11a{bottom:837.544950px;}
.y14e{bottom:837.851550px;}
.y170{bottom:839.425950px;}
.ycf{bottom:842.097150px;}
.y92{bottom:842.997300px;}
.y1d1{bottom:843.810750px;}
.yeb{bottom:844.974450px;}
.y4f{bottom:853.272300px;}
.y14d{bottom:858.295800px;}
.y16f{bottom:858.925950px;}
.y119{bottom:859.027200px;}
.y1d0{bottom:860.010900px;}
.yce{bottom:861.597150px;}
.y91{bottom:862.197300px;}
.yea{bottom:865.418850px;}
.y115{bottom:866.527050px;}
.y116{bottom:867.072300px;}
.y4e{bottom:872.772300px;}
.y118{bottom:874.027200px;}
.y1cf{bottom:876.210900px;}
.y16e{bottom:878.425950px;}
.y2{bottom:879.369000px;}
.ycd{bottom:881.097150px;}
.y90{bottom:881.397150px;}
.y114{bottom:881.527050px;}
.y14c{bottom:881.716500px;}
.ye9{bottom:889.027050px;}
.y117{bottom:889.027200px;}
.y4d{bottom:892.272300px;}
.y1ce{bottom:896.662800px;}
.y2c{bottom:909.603000px;}
.y16d{bottom:910.681800px;}
.y8f{bottom:911.227050px;}
.y4c{bottom:911.772300px;}
.y113{bottom:912.862800px;}
.y2b{bottom:927.603000px;}
.y2a{bottom:945.603000px;}
.y4b{bottom:949.694850px;}
.y74{bottom:950.685300px;}
.y29{bottom:965.728950px;}
.y1{bottom:966.726000px;}
.h10{height:28.917000px;}
.hb{height:29.642400px;}
.h7{height:32.130000px;}
.hd{height:32.445000px;}
.ha{height:34.368000px;}
.h11{height:36.516000px;}
.h1c{height:38.556000px;}
.h18{height:38.664000px;}
.h15{height:39.298200px;}
.h17{height:42.840000px;}
.h13{height:42.960000px;}
.hc{height:43.260000px;}
.h14{height:44.793000px;}
.h16{height:44.982000px;}
.h6{height:45.900000px;}
.h22{height:46.737000px;}
.h20{height:46.817400px;}
.h1f{height:46.818000px;}
.h12{height:46.926000px;}
.h3{height:48.195000px;}
.he{height:50.400000px;}
.hf{height:54.621000px;}
.h2{height:55.080000px;}
.h1a{height:66.483000px;}
.h1d{height:66.483600px;}
.h1e{height:67.164000px;}
.h1b{height:68.664000px;}
.h5{height:78.030000px;}
.h19{height:96.549000px;}
.h21{height:98.664000px;}
.h4{height:119.055004px;}
.h8{height:1020.472500px;}
.h9{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:714.000000px;}
.w3{width:714.330000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:76.535400px;}
.x15{left:81.237450px;}
.x5{left:85.433550px;}
.x1e{left:86.457750px;}
.x17{left:89.741400px;}
.x18{left:94.961700px;}
.x12{left:97.795200px;}
.x1{left:102.045000px;}
.xb{left:104.595750px;}
.x2{left:106.297500px;}
.x10{left:114.803250px;}
.xa{left:122.435100px;}
.x22{left:125.089050px;}
.x1c{left:133.593150px;}
.xe{left:141.255300px;}
.x14{left:152.196450px;}
.xc{left:157.383000px;}
.x16{left:160.700400px;}
.xd{left:169.789950px;}
.x25{left:181.779750px;}
.x4{left:203.484001px;}
.x13{left:223.862250px;}
.xf{left:250.162650px;}
.x27{left:270.557250px;}
.x26{left:301.889700px;}
.x6{left:330.893550px;}
.x9{left:450.054450px;}
.x3{left:454.959000px;}
.x1f{left:473.626950px;}
.x7{left:478.146900px;}
.x23{left:479.389800px;}
.x8{left:480.844650px;}
.x19{left:482.131050px;}
.x24{left:552.309600px;}
.x1d{left:560.813550px;}
.x21{left:572.527800px;}
.x1b{left:581.031900px;}
.x20{left:582.153000px;}
.x1a{left:590.657100px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v5{vertical-align:-13.333333pt;}
.v4{vertical-align:-3.521600pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.521600pt;}
.v9{vertical-align:15.840000pt;}
.v1{vertical-align:18.480000pt;}
.v8{vertical-align:24.728000pt;}
.v6{vertical-align:26.666667pt;}
.v7{vertical-align:28.605333pt;}
.va{vertical-align:53.333333pt;}
.ls35{letter-spacing:-5.856000pt;}
.ls18{letter-spacing:-5.226667pt;}
.ls3b{letter-spacing:-4.906667pt;}
.ls23{letter-spacing:-4.704000pt;}
.ls2d{letter-spacing:-4.656000pt;}
.lsa{letter-spacing:-3.309333pt;}
.ls2b{letter-spacing:-1.872000pt;}
.ls4b{letter-spacing:-1.680000pt;}
.ls36{letter-spacing:-1.392000pt;}
.ls3d{letter-spacing:-1.120000pt;}
.ls2f{letter-spacing:-1.008000pt;}
.ls9{letter-spacing:-0.997333pt;}
.ls32{letter-spacing:-0.960000pt;}
.ls49{letter-spacing:-0.912000pt;}
.ls22{letter-spacing:-0.816000pt;}
.ls47{letter-spacing:-0.768000pt;}
.ls4d{letter-spacing:-0.648000pt;}
.ls2a{letter-spacing:-0.640000pt;}
.ls41{letter-spacing:-0.624000pt;}
.ls3c{letter-spacing:-0.586667pt;}
.ls27{letter-spacing:-0.576000pt;}
.ls17{letter-spacing:-0.533333pt;}
.ls43{letter-spacing:-0.528000pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.453333pt;}
.ls29{letter-spacing:-0.426667pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.362667pt;}
.ls42{letter-spacing:-0.336000pt;}
.ls3e{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.293333pt;}
.ls4a{letter-spacing:-0.288000pt;}
.ls28{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.226667pt;}
.lse{letter-spacing:-0.213333pt;}
.ls30{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.181333pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls2c{letter-spacing:-0.144000pt;}
.ls3a{letter-spacing:-0.117333pt;}
.ls12{letter-spacing:-0.106667pt;}
.ls48{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.048000pt;}
.lsf{letter-spacing:0.053333pt;}
.ls11{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.110400pt;}
.ls3f{letter-spacing:0.144000pt;}
.ls19{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.181333pt;}
.ls37{letter-spacing:0.188267pt;}
.ls10{letter-spacing:0.213333pt;}
.ls31{letter-spacing:0.240000pt;}
.ls13{letter-spacing:0.266667pt;}
.ls46{letter-spacing:0.288000pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls45{letter-spacing:0.322667pt;}
.ls44{letter-spacing:0.336000pt;}
.lsc{letter-spacing:0.373333pt;}
.ls40{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.746667pt;}
.ls1d{letter-spacing:1.294400pt;}
.ls2{letter-spacing:1.967467pt;}
.ls1f{letter-spacing:2.082667pt;}
.ls25{letter-spacing:2.083200pt;}
.ls38{letter-spacing:2.109867pt;}
.ls1a{letter-spacing:2.563733pt;}
.ls15{letter-spacing:2.584533pt;}
.ls1b{letter-spacing:2.745067pt;}
.ls1e{letter-spacing:4.873067pt;}
.ls39{letter-spacing:4.874133pt;}
.ls34{letter-spacing:52.433600pt;}
.ls26{letter-spacing:66.211200pt;}
.ls2e{letter-spacing:66.211733pt;}
.ls33{letter-spacing:199.153600pt;}
.wsaa{word-spacing:-53.333333pt;}
.ws86{word-spacing:-48.000000pt;}
.ws9{word-spacing:-12.437333pt;}
.ws71{word-spacing:-12.426667pt;}
.ws59{word-spacing:-12.213333pt;}
.ws58{word-spacing:-12.152000pt;}
.ws83{word-spacing:-12.106667pt;}
.wscd{word-spacing:-11.786667pt;}
.wse9{word-spacing:-11.280000pt;}
.wsa3{word-spacing:-11.136000pt;}
.ws89{word-spacing:-10.992000pt;}
.wscc{word-spacing:-10.986667pt;}
.ws73{word-spacing:-10.896000pt;}
.wse5{word-spacing:-10.848000pt;}
.wse8{word-spacing:-10.800000pt;}
.wsa2{word-spacing:-10.752000pt;}
.wsa4{word-spacing:-10.512000pt;}
.wsa6{word-spacing:-10.416000pt;}
.wse4{word-spacing:-10.368000pt;}
.ws8a{word-spacing:-10.320000pt;}
.ws8{word-spacing:-10.290667pt;}
.wsa5{word-spacing:-9.936000pt;}
.ws6{word-spacing:-9.928000pt;}
.wsba{word-spacing:-9.600000pt;}
.ws4{word-spacing:-9.534000pt;}
.wse6{word-spacing:-9.312000pt;}
.ws69{word-spacing:-9.160000pt;}
.ws5a{word-spacing:-9.080000pt;}
.ws84{word-spacing:-9.024000pt;}
.ws3{word-spacing:-8.480000pt;}
.ws2{word-spacing:-8.464000pt;}
.ws1{word-spacing:-8.353600pt;}
.ws5{word-spacing:-8.244000pt;}
.wse7{word-spacing:-7.596000pt;}
.wsbd{word-spacing:-7.200000pt;}
.ws7{word-spacing:-6.981333pt;}
.wsb4{word-spacing:-5.040000pt;}
.ws11{word-spacing:-3.480000pt;}
.wsf8{word-spacing:-0.864000pt;}
.wsff{word-spacing:-0.288000pt;}
.ws17{word-spacing:-0.181333pt;}
.ws55{word-spacing:-0.053333pt;}
.wsb2{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.wsde{word-spacing:0.048000pt;}
.ws6b{word-spacing:0.106667pt;}
.ws21{word-spacing:0.136000pt;}
.wsf6{word-spacing:0.144000pt;}
.ws32{word-spacing:0.160000pt;}
.ws92{word-spacing:0.213333pt;}
.ws56{word-spacing:0.266667pt;}
.wsf9{word-spacing:0.288000pt;}
.ws28{word-spacing:0.320000pt;}
.ws7c{word-spacing:0.373333pt;}
.ws38{word-spacing:0.426667pt;}
.wsd5{word-spacing:0.480000pt;}
.ws4e{word-spacing:0.533333pt;}
.wsdf{word-spacing:0.576000pt;}
.ws50{word-spacing:0.586667pt;}
.wsdc{word-spacing:0.624000pt;}
.ws12{word-spacing:0.640000pt;}
.wsa{word-spacing:0.682667pt;}
.ws8f{word-spacing:0.693333pt;}
.wsd4{word-spacing:0.720000pt;}
.ws42{word-spacing:0.746667pt;}
.wsf5{word-spacing:0.768000pt;}
.ws66{word-spacing:0.800000pt;}
.ws34{word-spacing:0.853333pt;}
.wsea{word-spacing:0.864000pt;}
.wsdd{word-spacing:0.912000pt;}
.ws43{word-spacing:0.960000pt;}
.ws1f{word-spacing:0.997333pt;}
.ws5b{word-spacing:1.013333pt;}
.ws6a{word-spacing:1.120000pt;}
.wsd8{word-spacing:1.152000pt;}
.ws70{word-spacing:1.173333pt;}
.ws1e{word-spacing:1.224000pt;}
.ws4a{word-spacing:1.226667pt;}
.wsee{word-spacing:1.248000pt;}
.ws31{word-spacing:1.280000pt;}
.wsfa{word-spacing:1.296000pt;}
.ws6f{word-spacing:1.333333pt;}
.wseb{word-spacing:1.344000pt;}
.ws27{word-spacing:1.386667pt;}
.ws23{word-spacing:1.405333pt;}
.ws52{word-spacing:1.440000pt;}
.wsc8{word-spacing:1.493333pt;}
.wsd6{word-spacing:1.536000pt;}
.wsbc{word-spacing:1.546667pt;}
.wsef{word-spacing:1.584000pt;}
.wsc1{word-spacing:1.600000pt;}
.ws4c{word-spacing:1.653333pt;}
.wsf{word-spacing:1.656000pt;}
.ws13{word-spacing:1.680000pt;}
.ws47{word-spacing:1.706667pt;}
.wscf{word-spacing:1.760000pt;}
.wsbb{word-spacing:1.813333pt;}
.ws1b{word-spacing:1.858667pt;}
.ws41{word-spacing:1.866667pt;}
.wse2{word-spacing:1.872000pt;}
.wsb{word-spacing:1.920000pt;}
.ws20{word-spacing:1.949333pt;}
.wsc{word-spacing:1.962667pt;}
.ws6d{word-spacing:1.973333pt;}
.ws19{word-spacing:1.994667pt;}
.ws37{word-spacing:2.026667pt;}
.ws24{word-spacing:2.040000pt;}
.ws61{word-spacing:2.080000pt;}
.wse3{word-spacing:2.112000pt;}
.ws25{word-spacing:2.130667pt;}
.ws29{word-spacing:2.133333pt;}
.ws79{word-spacing:2.160000pt;}
.ws48{word-spacing:2.186667pt;}
.ws16{word-spacing:2.208000pt;}
.ws10{word-spacing:2.240000pt;}
.ws2c{word-spacing:2.293333pt;}
.wsf0{word-spacing:2.304000pt;}
.ws5d{word-spacing:2.346667pt;}
.wsfd{word-spacing:2.352000pt;}
.ws3a{word-spacing:2.400000pt;}
.ws3e{word-spacing:2.408000pt;}
.ws49{word-spacing:2.453333pt;}
.ws14{word-spacing:2.496000pt;}
.wscb{word-spacing:2.506667pt;}
.ws15{word-spacing:2.520000pt;}
.ws3d{word-spacing:2.522667pt;}
.wsd9{word-spacing:2.544000pt;}
.ws35{word-spacing:2.560000pt;}
.ws1c{word-spacing:2.584000pt;}
.ws2d{word-spacing:2.613333pt;}
.wsbe{word-spacing:2.640000pt;}
.ws3b{word-spacing:2.666667pt;}
.wsd7{word-spacing:2.688000pt;}
.ws94{word-spacing:2.720000pt;}
.ws22{word-spacing:2.765333pt;}
.ws67{word-spacing:2.773333pt;}
.wsf7{word-spacing:2.784000pt;}
.ws54{word-spacing:2.826667pt;}
.wsd3{word-spacing:2.832000pt;}
.ws5c{word-spacing:2.933333pt;}
.wsec{word-spacing:2.976000pt;}
.wsc0{word-spacing:2.986667pt;}
.wsda{word-spacing:3.024000pt;}
.ws64{word-spacing:3.093333pt;}
.wsce{word-spacing:3.109333pt;}
.wsf1{word-spacing:3.120000pt;}
.wsd2{word-spacing:3.146667pt;}
.ws60{word-spacing:3.253333pt;}
.wsd{word-spacing:3.275200pt;}
.wse{word-spacing:3.312000pt;}
.ws62{word-spacing:3.360000pt;}
.wsd1{word-spacing:3.413333pt;}
.wsc2{word-spacing:3.466667pt;}
.ws6c{word-spacing:3.520000pt;}
.ws7a{word-spacing:3.573333pt;}
.ws4d{word-spacing:3.626667pt;}
.ws36{word-spacing:3.733333pt;}
.ws91{word-spacing:3.786667pt;}
.wsd0{word-spacing:3.840000pt;}
.wsc7{word-spacing:3.946667pt;}
.wse1{word-spacing:3.984000pt;}
.ws2f{word-spacing:4.000000pt;}
.ws2e{word-spacing:4.053333pt;}
.ws44{word-spacing:4.106667pt;}
.ws1d{word-spacing:4.125333pt;}
.wsca{word-spacing:4.160000pt;}
.wsc4{word-spacing:4.213333pt;}
.wsc9{word-spacing:4.266667pt;}
.ws1a{word-spacing:4.306667pt;}
.ws51{word-spacing:4.320000pt;}
.wsdb{word-spacing:4.368000pt;}
.ws30{word-spacing:4.373333pt;}
.wsfc{word-spacing:4.416000pt;}
.wsc6{word-spacing:4.426667pt;}
.ws7b{word-spacing:4.480000pt;}
.ws63{word-spacing:4.533333pt;}
.wsbf{word-spacing:4.586667pt;}
.ws65{word-spacing:4.693333pt;}
.ws18{word-spacing:4.714667pt;}
.ws2b{word-spacing:4.746667pt;}
.ws53{word-spacing:4.800000pt;}
.ws33{word-spacing:4.853333pt;}
.ws40{word-spacing:4.906667pt;}
.ws57{word-spacing:4.960000pt;}
.ws39{word-spacing:5.013333pt;}
.wsfb{word-spacing:5.040000pt;}
.ws3c{word-spacing:5.066667pt;}
.ws46{word-spacing:5.120000pt;}
.ws4b{word-spacing:5.226667pt;}
.wsed{word-spacing:5.280000pt;}
.ws5f{word-spacing:5.333333pt;}
.wsf2{word-spacing:5.376000pt;}
.ws8e{word-spacing:5.386667pt;}
.ws90{word-spacing:5.440000pt;}
.wsf3{word-spacing:5.472000pt;}
.ws93{word-spacing:5.493333pt;}
.wsfe{word-spacing:5.568000pt;}
.ws6e{word-spacing:5.600000pt;}
.ws5e{word-spacing:5.653333pt;}
.wsc3{word-spacing:5.813333pt;}
.ws45{word-spacing:5.866667pt;}
.wsc5{word-spacing:5.920000pt;}
.wsf4{word-spacing:5.952000pt;}
.wse0{word-spacing:6.096000pt;}
.ws26{word-spacing:6.346667pt;}
.ws68{word-spacing:6.400000pt;}
.ws3f{word-spacing:6.720000pt;}
.ws4f{word-spacing:7.786667pt;}
.ws88{word-spacing:25.504000pt;}
.ws98{word-spacing:40.860800pt;}
.ws9b{word-spacing:43.452800pt;}
.ws8b{word-spacing:46.047467pt;}
.ws9a{word-spacing:46.048000pt;}
.ws99{word-spacing:48.119467pt;}
.ws95{word-spacing:57.594667pt;}
.ws87{word-spacing:57.595200pt;}
.wsa1{word-spacing:57.804800pt;}
.ws97{word-spacing:59.639467pt;}
.ws8d{word-spacing:59.640000pt;}
.ws96{word-spacing:62.556800pt;}
.ws8c{word-spacing:62.557333pt;}
.ws9e{word-spacing:63.468800pt;}
.ws9f{word-spacing:64.524800pt;}
.ws9c{word-spacing:68.412800pt;}
.wsb5{word-spacing:99.252800pt;}
.wsaf{word-spacing:109.188800pt;}
.wsad{word-spacing:125.826667pt;}
.wsae{word-spacing:137.941867pt;}
.wsb1{word-spacing:147.389867pt;}
.wsb7{word-spacing:158.837333pt;}
.ws2a{word-spacing:172.583467pt;}
.wsb3{word-spacing:180.284267pt;}
.wsb0{word-spacing:183.473067pt;}
.wsb9{word-spacing:188.768000pt;}
.wsb8{word-spacing:191.731733pt;}
.wsa7{word-spacing:219.164800pt;}
.wsa8{word-spacing:220.694933pt;}
.wsa9{word-spacing:230.373333pt;}
.wsb6{word-spacing:272.988267pt;}
.wsab{word-spacing:301.833600pt;}
.ws85{word-spacing:340.892267pt;}
.wsac{word-spacing:373.301867pt;}
.ws72{word-spacing:373.607467pt;}
.ws74{word-spacing:550.864000pt;}
.ws78{word-spacing:556.336000pt;}
.ws7d{word-spacing:562.384533pt;}
.ws7f{word-spacing:567.855467pt;}
.ws76{word-spacing:567.856000pt;}
.ws7e{word-spacing:579.376000pt;}
.ws81{word-spacing:590.896000pt;}
.ws80{word-spacing:765.174400pt;}
.ws75{word-spacing:826.994133pt;}
.ws77{word-spacing:833.330133pt;}
.ws82{word-spacing:845.473600pt;}
.wsa0{word-spacing:1116.364800pt;}
.ws9d{word-spacing:1136.328000pt;}
._36{margin-left:-12.326933pt;}
._b{margin-left:-8.619733pt;}
._3{margin-left:-6.713600pt;}
._4{margin-left:-5.365333pt;}
._5{margin-left:-3.769600pt;}
._0{margin-left:-2.564267pt;}
._1{margin-left:-0.938667pt;}
._2{width:1.258667pt;}
._7{width:2.765333pt;}
._6{width:4.194667pt;}
._9{width:5.226667pt;}
._a{width:6.360000pt;}
._16{width:66.669333pt;}
._35{width:160.332800pt;}
._34{width:232.644800pt;}
._32{width:241.269333pt;}
._17{width:278.716267pt;}
._2d{width:298.293333pt;}
._2e{width:301.236800pt;}
._2f{width:304.243733pt;}
._30{width:324.264000pt;}
._1c{width:333.000000pt;}
._2a{width:359.110933pt;}
._14{width:369.869333pt;}
._c{width:371.469333pt;}
._31{width:403.298667pt;}
._1f{width:444.669333pt;}
._19{width:458.845333pt;}
._33{width:482.205333pt;}
._12{width:587.058133pt;}
._29{width:601.885333pt;}
._11{width:612.556267pt;}
._13{width:624.081600pt;}
._8{width:633.470400pt;}
._18{width:675.730133pt;}
._10{width:680.214933pt;}
._27{width:683.720000pt;}
._15{width:701.432000pt;}
._1b{width:711.484800pt;}
._26{width:733.885333pt;}
._28{width:742.349333pt;}
._1e{width:789.260800pt;}
._d{width:794.284800pt;}
._2b{width:798.258667pt;}
._2c{width:804.066133pt;}
._f{width:812.066133pt;}
._e{width:823.585600pt;}
._22{width:830.338667pt;}
._23{width:869.426133pt;}
._25{width:950.306667pt;}
._1d{width:1008.114667pt;}
._20{width:1013.842667pt;}
._21{width:1040.102933pt;}
._1a{width:1062.002667pt;}
._24{width:1115.965333pt;}
.fs9{font-size:36.000000pt;}
.fs6{font-size:36.800000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fs8{font-size:42.000000pt;}
.fs5{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsc{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y28{bottom:46.068267pt;}
.y16c{bottom:52.919200pt;}
.y27{bottom:56.734933pt;}
.y14b{bottom:58.949200pt;}
.y5{bottom:59.133337pt;}
.y16b{bottom:66.252533pt;}
.y26{bottom:67.401600pt;}
.y1cd{bottom:68.358267pt;}
.y1a8{bottom:70.156400pt;}
.y14a{bottom:71.615867pt;}
.y112{bottom:73.721467pt;}
.yb5{bottom:74.540400pt;}
.y111{bottom:80.388133pt;}
.y147{bottom:80.513200pt;}
.y1cc{bottom:82.758267pt;}
.ye8{bottom:84.713067pt;}
.y4{bottom:86.333337pt;}
.y24{bottom:86.722400pt;}
.y196{bottom:87.489733pt;}
.y149{bottom:89.410533pt;}
.y73{bottom:90.443333pt;}
.yb4{bottom:91.873733pt;}
.y8e{bottom:93.991867pt;}
.y1cb{bottom:97.158267pt;}
.y1fa{bottom:99.181600pt;}
.y148{bottom:102.077200pt;}
.ye7{bottom:102.885733pt;}
.y195{bottom:104.823067pt;}
.y110{bottom:105.227467pt;}
.y1a7{bottom:105.561333pt;}
.y72{bottom:107.776667pt;}
.y8d{bottom:111.325200pt;}
.y1f9{bottom:113.581600pt;}
.y1ca{bottom:115.337733pt;}
.yb3{bottom:118.655867pt;}
.y146{bottom:119.872000pt;}
.y25{bottom:120.977333pt;}
.ye6{bottom:121.058400pt;}
.y194{bottom:122.156400pt;}
.y1a6{bottom:122.894667pt;}
.y10f{bottom:123.400133pt;}
.y23{bottom:123.790666pt;}
.y71{bottom:125.110000pt;}
.y1f8{bottom:127.981600pt;}
.y8c{bottom:128.658533pt;}
.y1c9{bottom:129.737733pt;}
.y10b{bottom:130.066800pt;}
.y10c{bottom:130.551467pt;}
.y145{bottom:132.538667pt;}
.ycc{bottom:134.422267pt;}
.y10e{bottom:136.733467pt;}
.ye5{bottom:139.231200pt;}
.y193{bottom:139.489733pt;}
.y1a5{bottom:140.228133pt;}
.y70{bottom:142.443333pt;}
.y10a{bottom:143.400133pt;}
.y144{bottom:145.205333pt;}
.y8b{bottom:145.991867pt;}
.y1f7{bottom:146.161067pt;}
.y1c8{bottom:147.917333pt;}
.y10d{bottom:150.066800pt;}
.ycb{bottom:151.755600pt;}
.y4a{bottom:154.936133pt;}
.yb2{bottom:155.443200pt;}
.y192{bottom:156.823067pt;}
.y1a4{bottom:157.561467pt;}
.y6f{bottom:159.776667pt;}
.ye4{bottom:160.049467pt;}
.y1f6{bottom:160.561200pt;}
.y1c7{bottom:162.317333pt;}
.y143{bottom:163.000000pt;}
.y8a{bottom:163.325200pt;}
.yca{bottom:169.088933pt;}
.y13e{bottom:169.333333pt;}
.y49{bottom:172.269467pt;}
.yb1{bottom:172.776533pt;}
.y191{bottom:174.156400pt;}
.y1a3{bottom:174.894800pt;}
.y1f5{bottom:174.961200pt;}
.y1a{bottom:175.052000pt;}
.y142{bottom:175.666667pt;}
.y1c6{bottom:176.717333pt;}
.y109{bottom:177.752400pt;}
.y89{bottom:180.658533pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.yc9{bottom:186.422267pt;}
.y6e{bottom:186.558800pt;}
.ye3{bottom:187.735067pt;}
.y141{bottom:188.333333pt;}
.y1f4{bottom:189.361200pt;}
.y48{bottom:189.602800pt;}
.yb0{bottom:190.109867pt;}
.y190{bottom:191.489733pt;}
.y1a2{bottom:192.228133pt;}
.y1c5{bottom:194.896800pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y88{bottom:197.991867pt;}
.yc8{bottom:203.755600pt;}
.y140{bottom:206.128133pt;}
.y47{bottom:206.936133pt;}
.yaf{bottom:207.443200pt;}
.y1f3{bottom:207.540667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y18f{bottom:208.823067pt;}
.y1c4{bottom:209.296800pt;}
.y1a1{bottom:209.561467pt;}
.y108{bottom:209.716667pt;}
.y6d{bottom:213.897333pt;}
.y87{bottom:215.325200pt;}
.y16a{bottom:216.453733pt;}
.y13f{bottom:218.794800pt;}
.ye2{bottom:219.699333pt;}
.yc7{bottom:221.088933pt;}
.y1f2{bottom:221.940667pt;}
.y1c3{bottom:223.696800pt;}
.y46{bottom:224.269467pt;}
.yae{bottom:224.776533pt;}
.y18e{bottom:226.156400pt;}
.y1a0{bottom:226.894800pt;}
.y107{bottom:227.050000pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y86{bottom:232.658533pt;}
.y1f1{bottom:236.340667pt;}
.y13d{bottom:236.589467pt;}
.ye1{bottom:237.032667pt;}
.y169{bottom:237.915333pt;}
.yc6{bottom:238.422267pt;}
.y13b{bottom:239.153467pt;}
.y45{bottom:241.602800pt;}
.y1c2{bottom:241.876400pt;}
.yad{bottom:242.109867pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y18d{bottom:243.489733pt;}
.y19f{bottom:244.228133pt;}
.y106{bottom:244.383333pt;}
.y168{bottom:244.582000pt;}
.y85{bottom:249.991867pt;}
.y13a{bottom:251.820133pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.ye0{bottom:254.366000pt;}
.y13c{bottom:254.384267pt;}
.y1f0{bottom:254.520267pt;}
.yc5{bottom:255.755600pt;}
.y6c{bottom:255.797600pt;}
.y1c1{bottom:256.276400pt;}
.y44{bottom:258.936133pt;}
.yac{bottom:259.443200pt;}
.y18c{bottom:260.823067pt;}
.y19e{bottom:261.561467pt;}
.y105{bottom:261.716667pt;}
.y84{bottom:267.325200pt;}
.y1ef{bottom:268.920267pt;}
.y167{bottom:269.421333pt;}
.y1c0{bottom:270.676400pt;}
.ydf{bottom:271.699333pt;}
.y139{bottom:272.178933pt;}
.y6b{bottom:273.130933pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y166{bottom:276.088000pt;}
.yab{bottom:276.776533pt;}
.y18b{bottom:278.156400pt;}
.y19d{bottom:278.894800pt;}
.y104{bottom:279.050000pt;}
.yc4{bottom:282.537733pt;}
.y83{bottom:284.658533pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y1ee{bottom:287.099733pt;}
.y43{bottom:287.608133pt;}
.y1bf{bottom:288.855867pt;}
.yde{bottom:289.032667pt;}
.y136{bottom:289.973733pt;}
.y6a{bottom:290.464267pt;}
.yaa{bottom:294.109867pt;}
.y18a{bottom:295.489733pt;}
.y19c{bottom:296.228133pt;}
.y103{bottom:296.383333pt;}
.y165{bottom:300.927467pt;}
.y1ed{bottom:301.499733pt;}
.y82{bottom:301.991867pt;}
.y135{bottom:302.640400pt;}
.y1be{bottom:303.255867pt;}
.ydd{bottom:306.366000pt;}
.y164{bottom:307.594133pt;}
.y138{bottom:307.768533pt;}
.y69{bottom:307.797600pt;}
.y11{bottom:309.452000pt;}
.ya9{bottom:311.443200pt;}
.y189{bottom:312.823067pt;}
.y19b{bottom:313.561467pt;}
.y102{bottom:313.716667pt;}
.y1ec{bottom:315.899733pt;}
.y1bd{bottom:317.655867pt;}
.y81{bottom:319.325200pt;}
.y137{bottom:320.435200pt;}
.ydc{bottom:323.699333pt;}
.y68{bottom:325.130933pt;}
.ya8{bottom:328.776533pt;}
.y188{bottom:330.156400pt;}
.y19a{bottom:330.894800pt;}
.y101{bottom:331.050000pt;}
.y163{bottom:332.433467pt;}
.y1eb{bottom:334.079200pt;}
.y1bc{bottom:335.835467pt;}
.yc3{bottom:336.658533pt;}
.y134{bottom:338.229867pt;}
.y162{bottom:339.100133pt;}
.y42{bottom:340.846933pt;}
.ydb{bottom:341.032667pt;}
.y67{bottom:342.464267pt;}
.y10{bottom:343.809333pt;}
.y80{bottom:346.107333pt;}
.ya7{bottom:346.109867pt;}
.y187{bottom:347.489733pt;}
.y199{bottom:348.228133pt;}
.y100{bottom:348.383333pt;}
.y1ea{bottom:348.479200pt;}
.y1bb{bottom:350.235333pt;}
.yc2{bottom:353.991867pt;}
.y133{bottom:356.024667pt;}
.yda{bottom:358.366000pt;}
.y66{bottom:359.797600pt;}
.y132{bottom:362.358000pt;}
.yf{bottom:362.706666pt;}
.y161{bottom:363.939467pt;}
.y1ba{bottom:364.635467pt;}
.y186{bottom:364.823067pt;}
.y198{bottom:365.561467pt;}
.yff{bottom:365.716667pt;}
.y41{bottom:365.785467pt;}
.y1e9{bottom:366.658800pt;}
.y160{bottom:370.606133pt;}
.yc1{bottom:371.325200pt;}
.ya6{bottom:372.892000pt;}
.yd9{bottom:375.699333pt;}
.y65{bottom:377.130933pt;}
.y40{bottom:379.385467pt;}
.y1e8{bottom:381.058800pt;}
.y185{bottom:382.156400pt;}
.y1b9{bottom:382.814933pt;}
.y7f{bottom:382.894800pt;}
.yfe{bottom:383.050000pt;}
.y131{bottom:386.486000pt;}
.yc0{bottom:388.658533pt;}
.y130{bottom:392.819333pt;}
.yd8{bottom:393.032667pt;}
.y64{bottom:394.464267pt;}
.y15f{bottom:395.445467pt;}
.y1e7{bottom:395.458800pt;}
.y1b8{bottom:397.214933pt;}
.y184{bottom:399.489733pt;}
.y7e{bottom:400.228133pt;}
.ya5{bottom:400.230667pt;}
.yfd{bottom:400.383333pt;}
.y15e{bottom:402.112133pt;}
.y3f{bottom:404.324133pt;}
.ybf{bottom:405.991867pt;}
.yd7{bottom:410.366000pt;}
.y1b7{bottom:411.614933pt;}
.y63{bottom:411.797600pt;}
.y1e6{bottom:413.638267pt;}
.y183{bottom:416.823067pt;}
.y12f{bottom:416.947467pt;}
.y7d{bottom:417.561467pt;}
.yfc{bottom:417.716667pt;}
.y3e{bottom:417.924133pt;}
.y12e{bottom:423.280800pt;}
.ybe{bottom:423.325200pt;}
.yd6{bottom:427.699333pt;}
.y1e5{bottom:428.038267pt;}
.y62{bottom:429.130933pt;}
.y15d{bottom:429.597200pt;}
.y1b6{bottom:429.794533pt;}
.ye{bottom:430.990669pt;}
.y3d{bottom:431.524133pt;}
.y182{bottom:434.156400pt;}
.y7c{bottom:434.894800pt;}
.yfb{bottom:435.050000pt;}
.ybd{bottom:440.658533pt;}
.ya4{bottom:442.130800pt;}
.y1b5{bottom:444.194400pt;}
.yd5{bottom:445.032667pt;}
.y3c{bottom:445.124133pt;}
.y1e4{bottom:446.217867pt;}
.y61{bottom:446.464267pt;}
.yd{bottom:446.990669pt;}
.y12d{bottom:447.408800pt;}
.y181{bottom:451.489733pt;}
.y7b{bottom:452.228133pt;}
.yfa{bottom:452.383333pt;}
.y12c{bottom:453.742133pt;}
.y15c{bottom:457.282667pt;}
.y1b4{bottom:458.594400pt;}
.y3b{bottom:458.724133pt;}
.ya3{bottom:459.197600pt;}
.y1e3{bottom:460.617867pt;}
.yc{bottom:462.990669pt;}
.y60{bottom:463.797600pt;}
.ybc{bottom:467.440667pt;}
.y180{bottom:468.823067pt;}
.y7a{bottom:469.561467pt;}
.yf9{bottom:469.716667pt;}
.yd4{bottom:471.814800pt;}
.y3a{bottom:472.324133pt;}
.ya2{bottom:476.264267pt;}
.y1b3{bottom:476.774000pt;}
.y12b{bottom:477.870267pt;}
.y1e2{bottom:478.797333pt;}
.yb{bottom:478.990666pt;}
.y5f{bottom:481.130933pt;}
.y12a{bottom:484.203600pt;}
.y39{bottom:485.924133pt;}
.y17f{bottom:486.156400pt;}
.y79{bottom:486.894667pt;}
.yf8{bottom:487.050000pt;}
.y15b{bottom:489.246933pt;}
.y1b2{bottom:491.174000pt;}
.y1e1{bottom:493.197333pt;}
.ya1{bottom:493.330933pt;}
.ya{bottom:494.990666pt;}
.y5e{bottom:498.464267pt;}
.yd3{bottom:499.153467pt;}
.y38{bottom:499.524133pt;}
.y17e{bottom:503.489733pt;}
.y78{bottom:504.228000pt;}
.y1b1{bottom:505.574000pt;}
.y15a{bottom:506.580267pt;}
.y1e0{bottom:507.597333pt;}
.y129{bottom:508.331733pt;}
.ya0{bottom:510.397600pt;}
.y37{bottom:513.124133pt;}
.yf7{bottom:513.832133pt;}
.y5d{bottom:515.797600pt;}
.y17d{bottom:520.823067pt;}
.y77{bottom:521.561333pt;}
.y1b0{bottom:523.753467pt;}
.y159{bottom:523.913600pt;}
.y1df{bottom:525.776933pt;}
.y128{bottom:526.126400pt;}
.y36{bottom:526.724133pt;}
.y9f{bottom:527.464133pt;}
.y5c{bottom:533.130933pt;}
.y1af{bottom:538.153467pt;}
.y17c{bottom:538.156400pt;}
.y76{bottom:538.894667pt;}
.y1de{bottom:540.176933pt;}
.y35{bottom:540.324133pt;}
.y158{bottom:541.246933pt;}
.y127{bottom:543.921200pt;}
.y9e{bottom:544.530933pt;}
.yd2{bottom:548.612800pt;}
.y126{bottom:550.254533pt;}
.y5b{bottom:550.464267pt;}
.yf6{bottom:551.188800pt;}
.y1ae{bottom:552.553467pt;}
.y34{bottom:553.924133pt;}
.y17b{bottom:555.489733pt;}
.ybb{bottom:556.228000pt;}
.y1dd{bottom:558.356400pt;}
.y157{bottom:558.580267pt;}
.y9d{bottom:561.597600pt;}
.y75{bottom:565.676933pt;}
.y5a{bottom:567.797600pt;}
.yf5{bottom:569.361467pt;}
.y1ad{bottom:570.733067pt;}
.y1dc{bottom:572.756400pt;}
.y17a{bottom:572.823067pt;}
.yba{bottom:573.561333pt;}
.y9{bottom:573.786667pt;}
.y125{bottom:574.382533pt;}
.y156{bottom:575.913600pt;}
.y9c{bottom:578.664267pt;}
.y124{bottom:580.715867pt;}
.y59{bottom:585.130933pt;}
.y1ac{bottom:585.133067pt;}
.y33{bottom:586.421733pt;}
.y1db{bottom:587.156400pt;}
.yf4{bottom:587.534267pt;}
.y179{bottom:590.156400pt;}
.yb9{bottom:590.894667pt;}
.y8{bottom:592.685334pt;}
.y155{bottom:593.246933pt;}
.y9b{bottom:595.730933pt;}
.y1ab{bottom:599.533067pt;}
.y1da{bottom:601.556400pt;}
.y58{bottom:602.464267pt;}
.y123{bottom:604.844000pt;}
.yf3{bottom:605.706933pt;}
.y178{bottom:607.489733pt;}
.yb8{bottom:608.228000pt;}
.y154{bottom:610.580267pt;}
.y9a{bottom:612.797467pt;}
.y32{bottom:614.520267pt;}
.y121{bottom:617.510667pt;}
.y197{bottom:617.676933pt;}
.y1aa{bottom:617.712533pt;}
.y1d9{bottom:619.736000pt;}
.y57{bottom:619.797600pt;}
.yf2{bottom:623.879600pt;}
.y177{bottom:624.823067pt;}
.yb7{bottom:625.561333pt;}
.y31{bottom:629.186933pt;}
.y99{bottom:629.864267pt;}
.y122{bottom:630.177333pt;}
.y1d8{bottom:634.136000pt;}
.y56{bottom:637.130933pt;}
.y153{bottom:637.362533pt;}
.yf1{bottom:642.052267pt;}
.y176{bottom:642.156400pt;}
.y7{bottom:645.598667pt;}
.y98{bottom:646.930933pt;}
.y1a9{bottom:647.230667pt;}
.y120{bottom:647.972000pt;}
.y1d7{bottom:648.536000pt;}
.y30{bottom:651.232267pt;}
.yb6{bottom:652.343600pt;}
.y55{bottom:654.464267pt;}
.y175{bottom:659.489733pt;}
.yf0{bottom:660.225067pt;}
.y97{bottom:663.997600pt;}
.y11f{bottom:665.766800pt;}
.y1d6{bottom:666.715467pt;}
.y3{bottom:668.977329pt;}
.y54{bottom:671.797600pt;}
.y152{bottom:674.149867pt;}
.y174{bottom:676.823067pt;}
.yef{bottom:678.397733pt;}
.y96{bottom:681.064267pt;}
.y11e{bottom:683.561467pt;}
.y1d5{bottom:684.895067pt;}
.y151{bottom:687.216533pt;}
.y53{bottom:689.130933pt;}
.y11d{bottom:689.894800pt;}
.y2f{bottom:690.709333pt;}
.y173{bottom:694.156400pt;}
.yee{bottom:696.570400pt;}
.y95{bottom:698.130800pt;}
.y1d4{bottom:699.295067pt;}
.y52{bottom:706.464267pt;}
.y2e{bottom:708.042667pt;}
.y150{bottom:708.411600pt;}
.y172{bottom:711.489733pt;}
.y1d3{bottom:713.694933pt;}
.yd1{bottom:713.864133pt;}
.y11c{bottom:714.022933pt;}
.yed{bottom:714.743067pt;}
.y94{bottom:715.197467pt;}
.y11b{bottom:720.356267pt;}
.y51{bottom:723.797600pt;}
.y2d{bottom:725.376000pt;}
.y14f{bottom:726.584267pt;}
.y171{bottom:728.823067pt;}
.yd0{bottom:731.197467pt;}
.y1d2{bottom:731.874533pt;}
.y93{bottom:732.264267pt;}
.yec{bottom:732.915733pt;}
.y50{bottom:741.130933pt;}
.y11a{bottom:744.484400pt;}
.y14e{bottom:744.756933pt;}
.y170{bottom:746.156400pt;}
.ycf{bottom:748.530800pt;}
.y92{bottom:749.330933pt;}
.y1d1{bottom:750.054000pt;}
.yeb{bottom:751.088400pt;}
.y4f{bottom:758.464267pt;}
.y14d{bottom:762.929600pt;}
.y16f{bottom:763.489733pt;}
.y119{bottom:763.579733pt;}
.y1d0{bottom:764.454133pt;}
.yce{bottom:765.864133pt;}
.y91{bottom:766.397600pt;}
.yea{bottom:769.261200pt;}
.y115{bottom:770.246267pt;}
.y116{bottom:770.730933pt;}
.y4e{bottom:775.797600pt;}
.y118{bottom:776.913067pt;}
.y1cf{bottom:778.854133pt;}
.y16e{bottom:780.823067pt;}
.y2{bottom:781.661334pt;}
.ycd{bottom:783.197467pt;}
.y90{bottom:783.464133pt;}
.y114{bottom:783.579600pt;}
.y14c{bottom:783.748000pt;}
.ye9{bottom:790.246267pt;}
.y117{bottom:790.246400pt;}
.y4d{bottom:793.130933pt;}
.y1ce{bottom:797.033600pt;}
.y2c{bottom:808.536000pt;}
.y16d{bottom:809.494933pt;}
.y8f{bottom:809.979600pt;}
.y4c{bottom:810.464267pt;}
.y113{bottom:811.433600pt;}
.y2b{bottom:824.536000pt;}
.y2a{bottom:840.536000pt;}
.y4b{bottom:844.173200pt;}
.y74{bottom:845.053600pt;}
.y29{bottom:858.425733pt;}
.y1{bottom:859.312000pt;}
.h10{height:25.704000pt;}
.hb{height:26.348800pt;}
.h7{height:28.560000pt;}
.hd{height:28.840000pt;}
.ha{height:30.549333pt;}
.h11{height:32.458667pt;}
.h1c{height:34.272000pt;}
.h18{height:34.368000pt;}
.h15{height:34.931733pt;}
.h17{height:38.080000pt;}
.h13{height:38.186667pt;}
.hc{height:38.453333pt;}
.h14{height:39.816000pt;}
.h16{height:39.984000pt;}
.h6{height:40.800000pt;}
.h22{height:41.544000pt;}
.h20{height:41.615467pt;}
.h1f{height:41.616000pt;}
.h12{height:41.712000pt;}
.h3{height:42.840000pt;}
.he{height:44.800000pt;}
.hf{height:48.552000pt;}
.h2{height:48.960000pt;}
.h1a{height:59.096000pt;}
.h1d{height:59.096533pt;}
.h1e{height:59.701333pt;}
.h1b{height:61.034667pt;}
.h5{height:69.360000pt;}
.h19{height:85.821333pt;}
.h21{height:87.701333pt;}
.h4{height:105.826671pt;}
.h8{height:907.086667pt;}
.h9{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:634.666667pt;}
.w3{width:634.960000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:68.031467pt;}
.x15{left:72.211067pt;}
.x5{left:75.940933pt;}
.x1e{left:76.851333pt;}
.x17{left:79.770133pt;}
.x18{left:84.410400pt;}
.x12{left:86.929067pt;}
.x1{left:90.706667pt;}
.xb{left:92.974000pt;}
.x2{left:94.486667pt;}
.x10{left:102.047333pt;}
.xa{left:108.831200pt;}
.x22{left:111.190267pt;}
.x1c{left:118.749467pt;}
.xe{left:125.560267pt;}
.x14{left:135.285733pt;}
.xc{left:139.896000pt;}
.x16{left:142.844800pt;}
.xd{left:150.924400pt;}
.x25{left:161.582000pt;}
.x4{left:180.874667pt;}
.x13{left:198.988667pt;}
.xf{left:222.366800pt;}
.x27{left:240.495333pt;}
.x26{left:268.346400pt;}
.x6{left:294.127600pt;}
.x9{left:400.048400pt;}
.x3{left:404.408000pt;}
.x1f{left:421.001733pt;}
.x7{left:425.019467pt;}
.x23{left:426.124267pt;}
.x8{left:427.417467pt;}
.x19{left:428.560933pt;}
.x24{left:490.941867pt;}
.x1d{left:498.500933pt;}
.x21{left:508.913600pt;}
.x1b{left:516.472800pt;}
.x20{left:517.469333pt;}
.x1a{left:525.028533pt;}
}




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