
    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_3133171dd8785de701a32dc8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_d963b48bb731b44b5975ef78.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734000;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_acafb09875e0ae39d03bb5ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_6794b2c020484fe4f1fd1286.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_ec56406f02711bb3b808e6b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_59bade1a99f9866dfc9f4d97.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4f6f86a5016253be6fb48fb6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.859000;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_d567ca3dec5d199def54b57f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.075000;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_234e2e74068e91afe834a8f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.984000;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_a668a1407199817eaeb4b2d2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8fcbe3193fc3a61bb2050775.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.166000;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:ffc;src:url('chunks/assets/font_c32fcde94571ee6d589513fa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.961000;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:ffd;src:url('chunks/assets/font_5b252b112e6bb669d9e3b2c0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.888672;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:ffe;src:url('chunks/assets/font_4f473d4f97c9a7bd3d8e7786.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.984000;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:fff;src:url('chunks/assets/font_a668a1407199817eaeb4b2d2.woff2')format("woff");}.fff{font-family:fff;line-height:1.011000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.988000px;}
.v1{vertical-align:19.922400px;}
.ls3{letter-spacing:-1.275000px;}
.ls6{letter-spacing:-1.122000px;}
.ls9{letter-spacing:-0.765000px;}
.ls8{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.330000px;}
.ls4{letter-spacing:-0.255000px;}
.ls5{letter-spacing:-0.204000px;}
.ls1a{letter-spacing:-0.132000px;}
.ls7{letter-spacing:-0.102000px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.054000px;}
.lsf{letter-spacing:0.056400px;}
.ls31{letter-spacing:0.060000px;}
.lse{letter-spacing:0.066000px;}
.ls3f{letter-spacing:0.090000px;}
.ls39{letter-spacing:0.099000px;}
.ls3d{letter-spacing:0.108000px;}
.ls3b{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.132000px;}
.ls2d{letter-spacing:0.165000px;}
.lsd{letter-spacing:0.178800px;}
.ls22{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.198000px;}
.ls1c{letter-spacing:0.214200px;}
.ls2c{letter-spacing:0.231000px;}
.ls21{letter-spacing:0.240000px;}
.lsc{letter-spacing:0.264000px;}
.ls18{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.306000px;}
.lsb{letter-spacing:0.330000px;}
.ls1e{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.363000px;}
.ls13{letter-spacing:0.396000px;}
.ls3a{letter-spacing:0.420000px;}
.ls1f{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.462000px;}
.ls30{letter-spacing:0.480000px;}
.ls26{letter-spacing:0.528000px;}
.ls47{letter-spacing:0.594000px;}
.ls23{letter-spacing:0.660000px;}
.ls46{letter-spacing:0.726000px;}
.ls27{letter-spacing:0.759000px;}
.ls29{letter-spacing:0.792000px;}
.ls20{letter-spacing:0.858000px;}
.ls3e{letter-spacing:0.900000px;}
.ls1d{letter-spacing:0.924000px;}
.ls28{letter-spacing:0.990000px;}
.ls2b{letter-spacing:1.056000px;}
.ls33{letter-spacing:1.122000px;}
.ls2e{letter-spacing:1.140000px;}
.ls25{letter-spacing:1.254000px;}
.ls32{letter-spacing:1.320000px;}
.ls36{letter-spacing:1.452000px;}
.ls3c{letter-spacing:1.560000px;}
.ls44{letter-spacing:1.716000px;}
.ls17{letter-spacing:1.848000px;}
.ls24{letter-spacing:1.914000px;}
.ls42{letter-spacing:1.980000px;}
.ls37{letter-spacing:2.046000px;}
.ls43{letter-spacing:2.178000px;}
.ls10{letter-spacing:2.970000px;}
.ls41{letter-spacing:3.300000px;}
.ls15{letter-spacing:5.742000px;}
.ls2a{letter-spacing:6.864000px;}
.ls38{letter-spacing:7.458000px;}
.ls40{letter-spacing:7.722000px;}
.ls45{letter-spacing:8.250000px;}
.ls0{letter-spacing:24.000000px;}
.ls35{letter-spacing:2038.568400px;}
.ls14{letter-spacing:2071.568400px;}
.ls34{letter-spacing:2134.018800px;}
.lsa{letter-spacing:2167.018800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-22.680000px;}
.ws1{word-spacing:-17.010000px;}
.ws26{word-spacing:-16.500000px;}
.wsc0{word-spacing:-15.312000px;}
.ws83{word-spacing:-14.520000px;}
.ws63{word-spacing:-14.190000px;}
.ws90{word-spacing:-14.091000px;}
.wsde{word-spacing:-13.959000px;}
.wscb{word-spacing:-13.860000px;}
.ws4b{word-spacing:-12.750000px;}
.ws3{word-spacing:-10.710000px;}
.ws6{word-spacing:-9.945000px;}
.ws5{word-spacing:-9.588000px;}
.ws4{word-spacing:-9.435000px;}
.ws27{word-spacing:-9.009000px;}
.wsdf{word-spacing:-8.190000px;}
.ws28{word-spacing:-7.371000px;}
.wse8{word-spacing:-2.178000px;}
.wsc7{word-spacing:-1.848000px;}
.wsc6{word-spacing:-1.452000px;}
.wsc5{word-spacing:-1.320000px;}
.ws9e{word-spacing:-1.122000px;}
.ws8a{word-spacing:-0.990000px;}
.ws8d{word-spacing:-0.924000px;}
.wsd4{word-spacing:-0.900000px;}
.wse3{word-spacing:-0.792000px;}
.wse9{word-spacing:-0.726000px;}
.ws84{word-spacing:-0.660000px;}
.wse1{word-spacing:-0.528000px;}
.wsa0{word-spacing:-0.462000px;}
.ws6a{word-spacing:-0.396000px;}
.ws6e{word-spacing:-0.330000px;}
.wsd8{word-spacing:-0.300000px;}
.ws67{word-spacing:-0.264000px;}
.wsb3{word-spacing:-0.240000px;}
.ws40{word-spacing:-0.198000px;}
.ws5f{word-spacing:-0.132000px;}
.ws2{word-spacing:-0.081000px;}
.ws34{word-spacing:-0.066000px;}
.ws97{word-spacing:-0.060000px;}
.ws4a{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
.ws3f{word-spacing:0.066000px;}
.wsc4{word-spacing:0.120000px;}
.ws88{word-spacing:0.132000px;}
.ws61{word-spacing:0.162000px;}
.wsb0{word-spacing:0.180000px;}
.ws4e{word-spacing:0.198000px;}
.wscf{word-spacing:0.240000px;}
.wsc{word-spacing:0.255000px;}
.ws2e{word-spacing:0.264000px;}
.ws7c{word-spacing:0.300000px;}
.ws50{word-spacing:0.330000px;}
.ws1e{word-spacing:0.357000px;}
.wsd9{word-spacing:0.360000px;}
.ws99{word-spacing:0.396000px;}
.wsb1{word-spacing:0.420000px;}
.ws4f{word-spacing:0.462000px;}
.wse7{word-spacing:0.528000px;}
.ws44{word-spacing:0.540000px;}
.ws24{word-spacing:0.561000px;}
.ws2d{word-spacing:0.594000px;}
.ws13{word-spacing:0.612000px;}
.ws58{word-spacing:0.660000px;}
.wsda{word-spacing:0.720000px;}
.ws5e{word-spacing:0.726000px;}
.ws1b{word-spacing:0.765000px;}
.ws66{word-spacing:0.792000px;}
.wsb9{word-spacing:0.858000px;}
.ws33{word-spacing:0.924000px;}
.wsd7{word-spacing:0.960000px;}
.ws22{word-spacing:0.969000px;}
.ws49{word-spacing:0.972000px;}
.ws2b{word-spacing:0.990000px;}
.wsd0{word-spacing:1.020000px;}
.ws62{word-spacing:1.026000px;}
.wsa5{word-spacing:1.056000px;}
.ws3e{word-spacing:1.122000px;}
.wse4{word-spacing:1.134000px;}
.wsb7{word-spacing:1.140000px;}
.ws2f{word-spacing:1.188000px;}
.wsa6{word-spacing:1.254000px;}
.ws20{word-spacing:1.275000px;}
.ws74{word-spacing:1.320000px;}
.ws59{word-spacing:1.386000px;}
.wsd2{word-spacing:1.440000px;}
.ws73{word-spacing:1.452000px;}
.ws75{word-spacing:1.518000px;}
.ws16{word-spacing:1.581000px;}
.ws38{word-spacing:1.584000px;}
.wsa2{word-spacing:1.620000px;}
.ws10{word-spacing:1.632000px;}
.ws3b{word-spacing:1.650000px;}
.wsd5{word-spacing:1.716000px;}
.ws2c{word-spacing:1.782000px;}
.wsf{word-spacing:1.836000px;}
.ws5b{word-spacing:1.848000px;}
.ws70{word-spacing:1.890000px;}
.ws4d{word-spacing:1.914000px;}
.wsbc{word-spacing:1.920000px;}
.ws98{word-spacing:1.980000px;}
.wsab{word-spacing:2.040000px;}
.wsc8{word-spacing:2.046000px;}
.wsaf{word-spacing:2.100000px;}
.ws71{word-spacing:2.106000px;}
.ws8e{word-spacing:2.112000px;}
.wsbf{word-spacing:2.160000px;}
.ws39{word-spacing:2.178000px;}
.ws92{word-spacing:2.244000px;}
.ws21{word-spacing:2.295000px;}
.ws52{word-spacing:2.310000px;}
.ws46{word-spacing:2.322000px;}
.wsd3{word-spacing:2.340000px;}
.ws7a{word-spacing:2.376000px;}
.wsb6{word-spacing:2.400000px;}
.wsa4{word-spacing:2.430000px;}
.wsa1{word-spacing:2.442000px;}
.wscd{word-spacing:2.508000px;}
.wsc1{word-spacing:2.520000px;}
.wsce{word-spacing:2.580000px;}
.wsad{word-spacing:2.640000px;}
.ws72{word-spacing:2.754000px;}
.wsb2{word-spacing:2.760000px;}
.ws5d{word-spacing:2.772000px;}
.ws31{word-spacing:2.838000px;}
.ws82{word-spacing:2.862000px;}
.ws9d{word-spacing:2.904000px;}
.ws41{word-spacing:2.916000px;}
.ws1f{word-spacing:2.958000px;}
.ws42{word-spacing:2.970000px;}
.wsdd{word-spacing:3.000000px;}
.ws15{word-spacing:3.009000px;}
.ws48{word-spacing:3.024000px;}
.ws76{word-spacing:3.036000px;}
.ws11{word-spacing:3.060000px;}
.ws9b{word-spacing:3.102000px;}
.ws5a{word-spacing:3.168000px;}
.ws36{word-spacing:3.234000px;}
.wsb4{word-spacing:3.240000px;}
.ws14{word-spacing:3.264000px;}
.ws9c{word-spacing:3.300000px;}
.wsbb{word-spacing:3.360000px;}
.wse0{word-spacing:3.366000px;}
.ws7e{word-spacing:3.420000px;}
.ws35{word-spacing:3.432000px;}
.ws43{word-spacing:3.456000px;}
.wsa8{word-spacing:3.498000px;}
.ws78{word-spacing:3.564000px;}
.wsd{word-spacing:3.570000px;}
.wsca{word-spacing:3.600000px;}
.ws17{word-spacing:3.621000px;}
.wsac{word-spacing:3.630000px;}
.wsa9{word-spacing:3.660000px;}
.ws23{word-spacing:3.672000px;}
.ws68{word-spacing:3.696000px;}
.ws69{word-spacing:3.762000px;}
.ws1a{word-spacing:3.774000px;}
.ws79{word-spacing:3.828000px;}
.wsc2{word-spacing:3.840000px;}
.wsba{word-spacing:3.894000px;}
.ws60{word-spacing:3.960000px;}
.ws12{word-spacing:3.978000px;}
.wsa3{word-spacing:3.996000px;}
.ws9a{word-spacing:4.026000px;}
.ws25{word-spacing:4.029000px;}
.wsa7{word-spacing:4.092000px;}
.wsb5{word-spacing:4.140000px;}
.wscc{word-spacing:4.158000px;}
.wsc9{word-spacing:4.200000px;}
.ws4c{word-spacing:4.224000px;}
.wse2{word-spacing:4.290000px;}
.ws9f{word-spacing:4.356000px;}
.ws1d{word-spacing:4.386000px;}
.ws53{word-spacing:4.422000px;}
.ws6f{word-spacing:4.428000px;}
.wse5{word-spacing:4.482000px;}
.ws18{word-spacing:4.488000px;}
.wsbe{word-spacing:4.500000px;}
.ws87{word-spacing:4.554000px;}
.ws95{word-spacing:4.620000px;}
.ws9{word-spacing:4.656000px;}
.wsdc{word-spacing:4.680000px;}
.ws51{word-spacing:4.686000px;}
.wsae{word-spacing:4.740000px;}
.ws3d{word-spacing:4.752000px;}
.ws57{word-spacing:4.818000px;}
.ws19{word-spacing:4.845000px;}
.ws8f{word-spacing:4.884000px;}
.wsb8{word-spacing:4.920000px;}
.ws3c{word-spacing:4.950000px;}
.ws93{word-spacing:5.016000px;}
.ws7b{word-spacing:5.082000px;}
.ws6c{word-spacing:5.148000px;}
.ws1c{word-spacing:5.202000px;}
.ws80{word-spacing:5.214000px;}
.ws85{word-spacing:5.280000px;}
.ws8{word-spacing:5.328000px;}
.wsaa{word-spacing:5.340000px;}
.ws6b{word-spacing:5.346000px;}
.wse{word-spacing:5.355000px;}
.ws3a{word-spacing:5.412000px;}
.wsc3{word-spacing:5.460000px;}
.ws37{word-spacing:5.478000px;}
.wsdb{word-spacing:5.520000px;}
.ws77{word-spacing:5.544000px;}
.ws47{word-spacing:5.562000px;}
.wsbd{word-spacing:5.580000px;}
.ws8c{word-spacing:5.610000px;}
.ws45{word-spacing:5.670000px;}
.ws56{word-spacing:5.676000px;}
.ws65{word-spacing:5.808000px;}
.ws7f{word-spacing:5.820000px;}
.ws30{word-spacing:5.940000px;}
.wsd6{word-spacing:6.000000px;}
.ws86{word-spacing:6.006000px;}
.ws55{word-spacing:6.072000px;}
.ws8b{word-spacing:6.204000px;}
.wsd1{word-spacing:6.270000px;}
.ws7d{word-spacing:6.300000px;}
.ws64{word-spacing:6.336000px;}
.ws91{word-spacing:6.402000px;}
.wse6{word-spacing:6.534000px;}
.ws5c{word-spacing:6.600000px;}
.ws2a{word-spacing:6.666000px;}
.ws96{word-spacing:6.732000px;}
.ws81{word-spacing:6.798000px;}
.ws6d{word-spacing:6.864000px;}
.ws32{word-spacing:6.930000px;}
.wsa{word-spacing:10.656000px;}
.ws29{word-spacing:12.750000px;}
.wsb{word-spacing:13.344000px;}
.ws94{word-spacing:15.660000px;}
.ws89{word-spacing:27.504000px;}
.ws54{word-spacing:84.708000px;}
._3{margin-left:-24.000000px;}
._4{margin-left:-22.680000px;}
._10{margin-left:-20.526000px;}
._18{margin-left:-13.860000px;}
._1a{margin-left:-2.640000px;}
._6{margin-left:-1.020000px;}
._19{width:1.023000px;}
._9{width:2.178000px;}
._5{width:3.264000px;}
._1{width:4.656000px;}
._8{width:6.006000px;}
._e{width:7.260000px;}
._0{width:8.448000px;}
._2{width:13.200000px;}
._13{width:15.660000px;}
._17{width:22.620000px;}
._d{width:27.504000px;}
._15{width:30.455400px;}
._12{width:31.481400px;}
._14{width:32.777400px;}
._16{width:33.911400px;}
._c{width:48.114000px;}
._f{width:49.409400px;}
._a{width:50.868000px;}
._11{width:52.218000px;}
._b{width:53.298000px;}
._7{width:84.708000px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(96,138,150);}
.fc1{color:rgb(157,194,227);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.100000px;}
.fsd{font-size:39.000000px;}
.fs9{font-size:42.900000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fsb{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fsc{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs3{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y97{bottom:138.191700px;}
.y13b{bottom:138.191850px;}
.yda{bottom:138.194550px;}
.y12c{bottom:138.194700px;}
.y70{bottom:138.200700px;}
.y24d{bottom:138.206100px;}
.y1ab{bottom:138.509550px;}
.y105{bottom:138.618750px;}
.y187{bottom:138.635850px;}
.y258{bottom:138.827850px;}
.y271{bottom:138.829350px;}
.yfd{bottom:138.881550px;}
.ya{bottom:140.316450px;}
.y160{bottom:141.718200px;}
.y1f3{bottom:142.238700px;}
.y9{bottom:153.108450px;}
.yd9{bottom:154.178550px;}
.y12b{bottom:154.178700px;}
.y6f{bottom:154.184700px;}
.y186{bottom:156.230850px;}
.y96{bottom:158.225700px;}
.y13a{bottom:158.225850px;}
.y24c{bottom:158.996100px;}
.y1aa{bottom:159.299550px;}
.y15f{bottom:159.313200px;}
.y257{bottom:159.617850px;}
.y270{bottom:159.619350px;}
.yfc{bottom:159.671550px;}
.y104{bottom:160.464000px;}
.y6e{bottom:170.168700px;}
.y8{bottom:172.270800px;}
.y185{bottom:173.825850px;}
.yd8{bottom:174.212550px;}
.y12a{bottom:174.212700px;}
.y15e{bottom:176.908200px;}
.y24b{bottom:179.786100px;}
.y26f{bottom:180.409350px;}
.yfb{bottom:180.461550px;}
.y6d{bottom:186.152700px;}
.y129{bottom:186.158700px;}
.y103{bottom:186.564450px;}
.y228{bottom:190.802850px;}
.y184{bottom:191.420850px;}
.y7{bottom:191.446800px;}
.y15d{bottom:194.503200px;}
.y1f2{bottom:198.366600px;}
.y26e{bottom:201.199350px;}
.yfa{bottom:201.251550px;}
.y128{bottom:202.142700px;}
.y1a9{bottom:205.362450px;}
.y6c{bottom:206.186550px;}
.y95{bottom:206.186700px;}
.y183{bottom:209.015850px;}
.y24a{bottom:210.608100px;}
.y6{bottom:210.622800px;}
.y227{bottom:211.592850px;}
.y15c{bottom:212.098200px;}
.y127{bottom:218.126700px;}
.y6b{bottom:218.129700px;}
.y139{bottom:218.158950px;}
.y1f1{bottom:219.156600px;}
.yf9{bottom:222.041550px;}
.y5{bottom:223.414800px;}
.yd7{bottom:226.843800px;}
.y1ca{bottom:229.221900px;}
.y15b{bottom:229.693200px;}
.y249{bottom:231.398100px;}
.y226{bottom:232.382850px;}
.y26d{bottom:232.384350px;}
.y6a{bottom:234.113700px;}
.y211{bottom:235.579950px;}
.y126{bottom:238.160700px;}
.y138{bottom:238.948950px;}
.y4{bottom:242.590800px;}
.y256{bottom:242.777850px;}
.yf8{bottom:242.831550px;}
.y1c9{bottom:246.816900px;}
.y15a{bottom:247.288200px;}
.yd6{bottom:247.633800px;}
.y182{bottom:251.649300px;}
.y248{bottom:252.188100px;}
.y225{bottom:253.172850px;}
.y26c{bottom:253.174350px;}
.y69{bottom:254.147550px;}
.y3{bottom:255.382800px;}
.y210{bottom:256.369950px;}
.yb0{bottom:259.477500px;}
.y1f0{bottom:260.737500px;}
.y255{bottom:263.567850px;}
.yf7{bottom:263.621550px;}
.y1c8{bottom:264.411900px;}
.y68{bottom:266.087550px;}
.y94{bottom:267.580350px;}
.y2{bottom:268.174800px;}
.yd5{bottom:268.423800px;}
.y181{bottom:272.439300px;}
.y224{bottom:273.962850px;}
.y26b{bottom:273.964350px;}
.y1a8{bottom:275.617500px;}
.y20f{bottom:277.159950px;}
.y1ef{bottom:278.332500px;}
.yaf{bottom:280.267500px;}
.y247{bottom:283.010100px;}
.yf6{bottom:284.411550px;}
.y137{bottom:285.011850px;}
.y67{bottom:286.121550px;}
.y93{bottom:288.370350px;}
.y159{bottom:289.909650px;}
.y125{bottom:293.964300px;}
.y223{bottom:294.752850px;}
.y1ee{bottom:295.927500px;}
.y1a7{bottom:296.407500px;}
.y20e{bottom:297.949950px;}
.y66{bottom:298.067550px;}
.yae{bottom:301.057500px;}
.y1c7{bottom:302.783400px;}
.y246{bottom:303.800100px;}
.y26a{bottom:305.149350px;}
.yf5{bottom:305.201550px;}
.y92{bottom:309.160350px;}
.yd4{bottom:310.003200px;}
.y158{bottom:310.699650px;}
.y1ed{bottom:313.522500px;}
.y65{bottom:314.051550px;}
.y124{bottom:314.754300px;}
.y222{bottom:315.542850px;}
.y1a6{bottom:317.197500px;}
.y180{bottom:318.274200px;}
.y20d{bottom:318.739950px;}
.y31{bottom:319.821900px;}
.y41{bottom:319.842900px;}
.yad{bottom:321.847500px;}
.y1c6{bottom:323.573400px;}
.y269{bottom:325.939350px;}
.yd3{bottom:327.598200px;}
.y91{bottom:329.950350px;}
.y64{bottom:330.035550px;}
.y1ec{bottom:331.117500px;}
.y157{bottom:331.489650px;}
.y245{bottom:334.622100px;}
.y30{bottom:335.019900px;}
.y40{bottom:335.040900px;}
.y123{bottom:335.544300px;}
.y17f{bottom:335.869200px;}
.y221{bottom:336.332850px;}
.yf4{bottom:336.386550px;}
.y1a5{bottom:337.987500px;}
.y20c{bottom:339.529950px;}
.y1c5{bottom:344.363400px;}
.yd2{bottom:345.193200px;}
.y268{bottom:346.729350px;}
.y63{bottom:350.069550px;}
.y2f{bottom:350.217900px;}
.y3f{bottom:350.238900px;}
.y90{bottom:350.740350px;}
.y156{bottom:352.279650px;}
.y17e{bottom:353.464200px;}
.y244{bottom:355.412100px;}
.y122{bottom:356.334300px;}
.y220{bottom:357.122850px;}
.yf3{bottom:357.176550px;}
.y20b{bottom:360.319950px;}
.yd1{bottom:362.788200px;}
.y1c4{bottom:365.153400px;}
.y2e{bottom:365.415900px;}
.y3e{bottom:365.436900px;}
.y254{bottom:367.517850px;}
.y267{bottom:367.519350px;}
.yac{bottom:367.910400px;}
.y1eb{bottom:369.492000px;}
.y136{bottom:370.120350px;}
.y17d{bottom:371.059200px;}
.y8f{bottom:371.530350px;}
.y155{bottom:373.069650px;}
.y121{bottom:377.124300px;}
.y21f{bottom:377.912850px;}
.yf2{bottom:377.966550px;}
.y2d{bottom:380.613900px;}
.y3d{bottom:380.634900px;}
.y1a4{bottom:383.820900px;}
.y1c3{bottom:385.943400px;}
.y243{bottom:386.234100px;}
.y253{bottom:388.307850px;}
.y17c{bottom:388.654200px;}
.y1ea{bottom:390.282000px;}
.y135{bottom:390.910350px;}
.y20a{bottom:391.504950px;}
.y8e{bottom:392.320350px;}
.y154{bottom:393.859650px;}
.y3c{bottom:395.832900px;}
.y120{bottom:397.914300px;}
.y21e{bottom:398.702850px;}
.y266{bottom:398.704350px;}
.yf1{bottom:398.756550px;}
.yd0{bottom:401.153700px;}
.y1a3{bottom:401.415900px;}
.y2c{bottom:403.793400px;}
.y242{bottom:407.024100px;}
.y62{bottom:407.988900px;}
.y3b{bottom:411.030900px;}
.y1e9{bottom:411.072000px;}
.y134{bottom:411.700350px;}
.y209{bottom:412.294950px;}
.y8d{bottom:413.110350px;}
.y11f{bottom:418.704300px;}
.y1a2{bottom:419.010900px;}
.y21d{bottom:419.492850px;}
.y265{bottom:419.494350px;}
.yf0{bottom:419.546550px;}
.ycf{bottom:421.943700px;}
.y3a{bottom:426.228900px;}
.y1c2{bottom:427.524300px;}
.y61{bottom:428.775900px;}
.y17b{bottom:431.266500px;}
.y1e8{bottom:431.862000px;}
.y208{bottom:433.084950px;}
.y8c{bottom:433.900350px;}
.yab{bottom:433.904400px;}
.y1a1{bottom:436.605900px;}
.y241{bottom:437.846100px;}
.y11e{bottom:439.494300px;}
.y153{bottom:439.694550px;}
.y21c{bottom:440.282850px;}
.y264{bottom:440.284350px;}
.yef{bottom:440.336550px;}
.y39{bottom:441.426900px;}
.yce{bottom:442.733700px;}
.y1c1{bottom:445.119300px;}
.y60{bottom:449.516850px;}
.y17a{bottom:452.056500px;}
.y207{bottom:453.874950px;}
.y8b{bottom:454.690350px;}
.yaa{bottom:454.694400px;}
.y38{bottom:456.624900px;}
.y152{bottom:457.289550px;}
.y240{bottom:458.636100px;}
.y11d{bottom:460.284300px;}
.y21b{bottom:461.072850px;}
.yee{bottom:461.126550px;}
.y1c0{bottom:462.714300px;}
.ycd{bottom:463.523700px;}
.y133{bottom:468.396300px;}
.y5f{bottom:470.306850px;}
.y263{bottom:471.469350px;}
.y37{bottom:471.822900px;}
.y179{bottom:472.846500px;}
.y1e7{bottom:473.441250px;}
.y206{bottom:474.664950px;}
.y151{bottom:474.884550px;}
.y1a0{bottom:474.953400px;}
.ya9{bottom:475.484400px;}
.y1bf{bottom:480.309300px;}
.y11c{bottom:481.074300px;}
.y21a{bottom:481.862850px;}
.yed{bottom:481.916550px;}
.ycc{bottom:484.313700px;}
.y8a{bottom:485.875350px;}
.y36{bottom:487.020900px;}
.y23f{bottom:489.458100px;}
.y132{bottom:490.241550px;}
.y1e6{bottom:491.036250px;}
.y5e{bottom:491.096850px;}
.y252{bottom:492.257850px;}
.y262{bottom:492.259350px;}
.y150{bottom:492.479550px;}
.y178{bottom:493.636500px;}
.y205{bottom:495.454950px;}
.y19f{bottom:495.743400px;}
.ya8{bottom:496.274400px;}
.y1be{bottom:497.904300px;}
.y11b{bottom:501.864300px;}
.y35{bottom:502.218900px;}
.yec{bottom:502.706550px;}
.ycb{bottom:505.103700px;}
.y89{bottom:506.665350px;}
.y1e5{bottom:508.631250px;}
.y14f{bottom:510.074550px;}
.y23e{bottom:510.248100px;}
.y5d{bottom:511.886850px;}
.y219{bottom:513.047850px;}
.y177{bottom:514.426500px;}
.y204{bottom:516.244950px;}
.y131{bottom:516.342000px;}
.y19e{bottom:516.533400px;}
.ya7{bottom:517.064400px;}
.y34{bottom:517.416900px;}
.y11a{bottom:522.654300px;}
.y261{bottom:523.444350px;}
.yeb{bottom:523.496550px;}
.yca{bottom:525.893700px;}
.y1e4{bottom:526.226250px;}
.y88{bottom:527.455350px;}
.y33{bottom:532.614900px;}
.y5c{bottom:532.676850px;}
.y218{bottom:533.837850px;}
.y176{bottom:535.216500px;}
.y1bd{bottom:536.248800px;}
.y203{bottom:537.034950px;}
.y19d{bottom:537.323400px;}
.ya6{bottom:537.854400px;}
.y130{bottom:539.982600px;}
.y23d{bottom:541.070100px;}
.y251{bottom:544.232850px;}
.y260{bottom:544.234350px;}
.yea{bottom:544.286550px;}
.y32{bottom:547.812900px;}
.y87{bottom:548.245350px;}
.y14e{bottom:552.704850px;}
.y119{bottom:553.839300px;}
.y217{bottom:554.627850px;}
.y175{bottom:556.006500px;}
.y1bc{bottom:557.038800px;}
.y19c{bottom:558.113400px;}
.ya5{bottom:558.644400px;}
.y23c{bottom:561.860100px;}
.y5b{bottom:563.861850px;}
.y1e3{bottom:564.582750px;}
.y250{bottom:565.022850px;}
.yc9{bottom:567.473100px;}
.y86{bottom:569.035350px;}
.y14d{bottom:573.494850px;}
.y118{bottom:574.629300px;}
.y216{bottom:575.417850px;}
.y25f{bottom:575.419350px;}
.y174{bottom:576.796500px;}
.y1bb{bottom:577.828800px;}
.y19b{bottom:578.903400px;}
.y202{bottom:583.097850px;}
.y5a{bottom:584.651850px;}
.yc8{bottom:585.068100px;}
.y1e2{bottom:585.372750px;}
.y85{bottom:589.810350px;}
.ye9{bottom:590.343450px;}
.y2b{bottom:591.549900px;}
.y1a{bottom:591.628200px;}
.y23b{bottom:592.682100px;}
.y14c{bottom:594.284850px;}
.y117{bottom:595.419300px;}
.y215{bottom:596.207850px;}
.y25e{bottom:596.209350px;}
.y173{bottom:597.586500px;}
.y1ba{bottom:598.618800px;}
.y19a{bottom:599.693400px;}
.yc7{bottom:602.663100px;}
.ya4{bottom:604.707300px;}
.y59{bottom:605.441850px;}
.y1e1{bottom:606.162750px;}
.y2a{bottom:606.747900px;}
.y19{bottom:606.826200px;}
.ye8{bottom:608.739450px;}
.y84{bottom:610.600350px;}
.y23a{bottom:613.472100px;}
.y116{bottom:616.209300px;}
.y214{bottom:616.997850px;}
.y1b9{bottom:619.408800px;}
.yc6{bottom:620.258100px;}
.y199{bottom:620.483400px;}
.y29{bottom:621.945900px;}
.y18{bottom:622.024200px;}
.y58{bottom:626.231850px;}
.y1e0{bottom:626.952750px;}
.y25d{bottom:627.394350px;}
.y83{bottom:631.390350px;}
.y115{bottom:636.999300px;}
.y28{bottom:637.143900px;}
.y17{bottom:637.222200px;}
.y213{bottom:637.787850px;}
.y102{bottom:637.789350px;}
.y14b{bottom:640.118400px;}
.y1b8{bottom:640.198800px;}
.y198{bottom:641.273400px;}
.y172{bottom:643.421550px;}
.y239{bottom:644.294100px;}
.y57{bottom:647.021850px;}
.y1df{bottom:647.742750px;}
.y25c{bottom:648.184350px;}
.y82{bottom:652.180350px;}
.y27{bottom:652.341900px;}
.y16{bottom:652.420500px;}
.y14a{bottom:657.713400px;}
.y114{bottom:657.789300px;}
.y212{bottom:658.577850px;}
.y101{bottom:658.579350px;}
.yc5{bottom:658.632600px;}
.y1b7{bottom:660.988800px;}
.y171{bottom:661.016550px;}
.y197{bottom:662.063400px;}
.y238{bottom:665.084100px;}
.y26{bottom:667.539900px;}
.y56{bottom:667.811850px;}
.y201{bottom:668.197350px;}
.y1de{bottom:668.532750px;}
.y24f{bottom:668.972850px;}
.y81{bottom:672.970350px;}
.y149{bottom:675.308400px;}
.y15{bottom:675.600000px;}
.y113{bottom:678.579300px;}
.y170{bottom:678.611550px;}
.ye7{bottom:679.367850px;}
.y100{bottom:679.369350px;}
.yc4{bottom:679.422600px;}
.y1b6{bottom:681.778800px;}
.y25{bottom:682.737900px;}
.y196{bottom:682.853400px;}
.y55{bottom:688.601850px;}
.y200{bottom:688.987350px;}
.y1dd{bottom:689.322750px;}
.ya3{bottom:689.762850px;}
.y148{bottom:692.903400px;}
.y80{bottom:693.760350px;}
.y237{bottom:695.906100px;}
.y16f{bottom:696.206550px;}
.y24{bottom:697.935900px;}
.y112{bottom:699.369300px;}
.ye6{bottom:700.157850px;}
.yff{bottom:700.159350px;}
.yc3{bottom:700.212600px;}
.y1b5{bottom:702.568800px;}
.y195{bottom:703.643400px;}
.y54{bottom:709.391850px;}
.y1ff{bottom:709.777350px;}
.y1dc{bottom:710.112750px;}
.ya2{bottom:710.552850px;}
.y23{bottom:713.133900px;}
.y16e{bottom:713.801550px;}
.y111{bottom:720.159300px;}
.ye5{bottom:720.947850px;}
.yc2{bottom:720.949350px;}
.y1b4{bottom:723.358800px;}
.y194{bottom:724.433400px;}
.y236{bottom:726.728100px;}
.y22{bottom:728.331900px;}
.y53{bottom:730.181850px;}
.y1fe{bottom:730.567350px;}
.y1db{bottom:730.902750px;}
.ya1{bottom:731.342850px;}
.y147{bottom:735.510150px;}
.y7f{bottom:739.823250px;}
.y110{bottom:740.949300px;}
.ye4{bottom:741.737850px;}
.yc1{bottom:741.739350px;}
.y21{bottom:743.529900px;}
.y1b3{bottom:744.148800px;}
.y235{bottom:747.518100px;}
.y52{bottom:750.971850px;}
.y1fd{bottom:751.357350px;}
.y1da{bottom:751.692750px;}
.ya0{bottom:752.132850px;}
.y146{bottom:756.300150px;}
.y16d{bottom:756.414150px;}
.y20{bottom:758.727900px;}
.y10f{bottom:761.739300px;}
.ye3{bottom:762.527850px;}
.yc0{bottom:762.529350px;}
.y1b2{bottom:764.938800px;}
.y193{bottom:770.266800px;}
.y51{bottom:771.761850px;}
.y1fc{bottom:772.147350px;}
.y9f{bottom:772.922850px;}
.y25b{bottom:772.924350px;}
.y1f{bottom:773.925900px;}
.y145{bottom:777.090150px;}
.y16c{bottom:777.204150px;}
.y234{bottom:778.340100px;}
.y10e{bottom:782.529300px;}
.ye2{bottom:783.317850px;}
.ybf{bottom:783.319350px;}
.y1b1{bottom:785.728800px;}
.y192{bottom:787.861800px;}
.y1e{bottom:789.123900px;}
.y50{bottom:792.549000px;}
.y1d9{bottom:793.272150px;}
.y9e{bottom:793.712850px;}
.y144{bottom:797.880150px;}
.y16b{bottom:797.994150px;}
.y233{bottom:799.130100px;}
.y10d{bottom:803.319300px;}
.ye1{bottom:804.107850px;}
.ybe{bottom:804.109350px;}
.y1d{bottom:804.321900px;}
.y191{bottom:805.456800px;}
.y1b0{bottom:806.518800px;}
.y1d8{bottom:810.867150px;}
.y4f{bottom:813.308250px;}
.y1fb{bottom:813.725250px;}
.y9d{bottom:814.502850px;}
.y143{bottom:818.670150px;}
.y16a{bottom:818.784150px;}
.y1c{bottom:819.519900px;}
.y190{bottom:823.051800px;}
.y10c{bottom:824.109300px;}
.y7e{bottom:824.897850px;}
.yfe{bottom:824.899350px;}
.y1d7{bottom:828.462150px;}
.y232{bottom:829.952100px;}
.y1fa{bottom:831.320250px;}
.y4e{bottom:834.098250px;}
.y1b{bottom:834.717900px;}
.y9c{bottom:835.292850px;}
.ybd{bottom:835.294350px;}
.y142{bottom:839.460150px;}
.y169{bottom:839.574150px;}
.y10b{bottom:844.899300px;}
.y7d{bottom:845.687850px;}
.y1d6{bottom:846.057150px;}
.y1af{bottom:848.098050px;}
.y1f9{bottom:848.915250px;}
.y231{bottom:850.742100px;}
.y9b{bottom:856.082850px;}
.ybc{bottom:856.084350px;}
.y141{bottom:860.250150px;}
.y168{bottom:860.364150px;}
.y18f{bottom:861.423450px;}
.y4d{bottom:865.283250px;}
.y10a{bottom:865.689300px;}
.y1ae{bottom:865.693050px;}
.y7c{bottom:866.477850px;}
.ye0{bottom:876.872850px;}
.ybb{bottom:876.874350px;}
.y140{bottom:881.040150px;}
.y167{bottom:881.154150px;}
.y230{bottom:881.564100px;}
.y18e{bottom:882.213450px;}
.y1ad{bottom:883.288050px;}
.y1d5{bottom:884.419950px;}
.y4c{bottom:886.073250px;}
.y7b{bottom:887.267850px;}
.y1f8{bottom:887.269350px;}
.ydf{bottom:897.662850px;}
.yba{bottom:897.664350px;}
.y14{bottom:897.921450px;}
.y1ac{bottom:900.883050px;}
.y13f{bottom:901.830150px;}
.y166{bottom:901.944150px;}
.y22f{bottom:902.354100px;}
.y18d{bottom:903.003450px;}
.y1d4{bottom:905.209950px;}
.y4b{bottom:906.863250px;}
.y109{bottom:907.267200px;}
.y7a{bottom:908.057850px;}
.y1f7{bottom:908.059350px;}
.yde{bottom:918.452850px;}
.yb9{bottom:918.454350px;}
.y13{bottom:918.699150px;}
.y13e{bottom:922.620150px;}
.y165{bottom:922.734150px;}
.y18c{bottom:923.793450px;}
.y108{bottom:924.862200px;}
.y1d3{bottom:925.999950px;}
.y4a{bottom:927.653250px;}
.y79{bottom:928.847850px;}
.y1f6{bottom:928.849350px;}
.y22e{bottom:933.176100px;}
.ydd{bottom:939.242850px;}
.yb8{bottom:939.244350px;}
.y107{bottom:942.457200px;}
.y13d{bottom:943.410150px;}
.y18b{bottom:944.583450px;}
.y1d2{bottom:946.789950px;}
.y49{bottom:948.443250px;}
.y78{bottom:949.637850px;}
.y1f5{bottom:949.639350px;}
.y22d{bottom:953.966100px;}
.ydc{bottom:960.032850px;}
.yb7{bottom:960.034350px;}
.y12{bottom:963.093150px;}
.y1d1{bottom:967.579950px;}
.y164{bottom:968.567550px;}
.y48{bottom:969.233250px;}
.y77{bottom:970.427850px;}
.y1f4{bottom:970.429350px;}
.y22c{bottom:974.756100px;}
.ydb{bottom:980.822850px;}
.yb6{bottom:980.824350px;}
.y106{bottom:980.837700px;}
.y163{bottom:986.162550px;}
.y11{bottom:988.293150px;}
.y1d0{bottom:988.369950px;}
.y13c{bottom:989.472900px;}
.y47{bottom:990.023250px;}
.y18a{bottom:990.415350px;}
.y9a{bottom:991.217850px;}
.y76{bottom:1001.612850px;}
.yb5{bottom:1001.614350px;}
.y12f{bottom:1001.618850px;}
.y162{bottom:1003.757550px;}
.y22b{bottom:1005.578100px;}
.y189{bottom:1008.010350px;}
.y1cf{bottom:1009.159950px;}
.y46{bottom:1010.813250px;}
.y99{bottom:1012.007850px;}
.y25a{bottom:1012.009350px;}
.y161{bottom:1021.352550px;}
.y75{bottom:1022.402850px;}
.yb4{bottom:1022.404350px;}
.y12e{bottom:1022.408850px;}
.y188{bottom:1025.605350px;}
.y1ce{bottom:1029.949950px;}
.y45{bottom:1031.603250px;}
.y10{bottom:1032.678000px;}
.y24e{bottom:1032.797850px;}
.y259{bottom:1032.799350px;}
.y22a{bottom:1036.400100px;}
.y74{bottom:1043.192850px;}
.yb3{bottom:1043.194350px;}
.y12d{bottom:1043.198850px;}
.y273{bottom:1053.587850px;}
.y229{bottom:1057.190100px;}
.y73{bottom:1063.982850px;}
.yb2{bottom:1063.984350px;}
.yf{bottom:1065.078000px;}
.y1cd{bottom:1071.527850px;}
.y272{bottom:1074.377850px;}
.y44{bottom:1077.669000px;}
.y72{bottom:1084.772850px;}
.yb1{bottom:1084.774350px;}
.y1cc{bottom:1089.122850px;}
.ye{bottom:1097.478000px;}
.y43{bottom:1103.253000px;}
.y98{bottom:1105.562850px;}
.y71{bottom:1105.564350px;}
.y1cb{bottom:1106.717850px;}
.yd{bottom:1162.740450px;}
.y42{bottom:1172.229900px;}
.yc{bottom:1193.880450px;}
.yb{bottom:1207.380450px;}
.h12{height:27.904500px;}
.h4{height:35.328000px;}
.h3{height:35.664000px;}
.ha{height:40.543800px;}
.hb{height:40.545000px;}
.h13{height:42.930000px;}
.h1a{height:45.315000px;}
.h2{height:45.342773px;}
.h8{height:47.700000px;}
.h9{height:48.144000px;}
.h1e{height:48.993000px;}
.hd{height:52.470000px;}
.h19{height:53.808000px;}
.h14{height:53.899500px;}
.hf{height:53.916900px;}
.h11{height:53.917500px;}
.h1d{height:53.923500px;}
.h17{height:53.941500px;}
.h1b{height:53.964900px;}
.h15{height:53.965500px;}
.he{height:54.027900px;}
.h10{height:54.101700px;}
.h18{height:54.118500px;}
.h1c{height:54.233100px;}
.h6{height:64.512000px;}
.h7{height:66.780000px;}
.h16{height:67.968000px;}
.hc{height:73.632000px;}
.h5{height:101.952000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x14{left:86.972550px;}
.xd{left:93.730500px;}
.x9{left:105.181800px;}
.x13{left:106.304550px;}
.x15{left:108.241650px;}
.x3{left:110.551350px;}
.x17{left:116.744250px;}
.x12{left:127.568850px;}
.x1d{left:136.057350px;}
.x1c{left:137.998500px;}
.x4{left:145.195650px;}
.x5{left:151.195650px;}
.x19{left:153.070800px;}
.x16{left:155.011950px;}
.x8{left:196.699500px;}
.xe{left:242.549700px;}
.x18{left:245.316450px;}
.x1b{left:252.925950px;}
.x10{left:312.130050px;}
.xf{left:313.260000px;}
.xb{left:409.072800px;}
.xa{left:415.498800px;}
.x1a{left:434.763150px;}
.xc{left:535.747350px;}
.x11{left:570.586950px;}
.x7{left:621.711750px;}
.x6{left:733.915650px;}
.x1{left:799.624050px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.989333pt;}
.v1{vertical-align:17.708800pt;}
.ls3{letter-spacing:-1.133333pt;}
.ls6{letter-spacing:-0.997333pt;}
.ls9{letter-spacing:-0.680000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.293333pt;}
.ls4{letter-spacing:-0.226667pt;}
.ls5{letter-spacing:-0.181333pt;}
.ls1a{letter-spacing:-0.117333pt;}
.ls7{letter-spacing:-0.090667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.048000pt;}
.lsf{letter-spacing:0.050133pt;}
.ls31{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.058667pt;}
.ls3f{letter-spacing:0.080000pt;}
.ls39{letter-spacing:0.088000pt;}
.ls3d{letter-spacing:0.096000pt;}
.ls3b{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.117333pt;}
.ls2d{letter-spacing:0.146667pt;}
.lsd{letter-spacing:0.158933pt;}
.ls22{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.176000pt;}
.ls1c{letter-spacing:0.190400pt;}
.ls2c{letter-spacing:0.205333pt;}
.ls21{letter-spacing:0.213333pt;}
.lsc{letter-spacing:0.234667pt;}
.ls18{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.272000pt;}
.lsb{letter-spacing:0.293333pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.322667pt;}
.ls13{letter-spacing:0.352000pt;}
.ls3a{letter-spacing:0.373333pt;}
.ls1f{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.410667pt;}
.ls30{letter-spacing:0.426667pt;}
.ls26{letter-spacing:0.469333pt;}
.ls47{letter-spacing:0.528000pt;}
.ls23{letter-spacing:0.586667pt;}
.ls46{letter-spacing:0.645333pt;}
.ls27{letter-spacing:0.674667pt;}
.ls29{letter-spacing:0.704000pt;}
.ls20{letter-spacing:0.762667pt;}
.ls3e{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:0.821333pt;}
.ls28{letter-spacing:0.880000pt;}
.ls2b{letter-spacing:0.938667pt;}
.ls33{letter-spacing:0.997333pt;}
.ls2e{letter-spacing:1.013333pt;}
.ls25{letter-spacing:1.114667pt;}
.ls32{letter-spacing:1.173333pt;}
.ls36{letter-spacing:1.290667pt;}
.ls3c{letter-spacing:1.386667pt;}
.ls44{letter-spacing:1.525333pt;}
.ls17{letter-spacing:1.642667pt;}
.ls24{letter-spacing:1.701333pt;}
.ls42{letter-spacing:1.760000pt;}
.ls37{letter-spacing:1.818667pt;}
.ls43{letter-spacing:1.936000pt;}
.ls10{letter-spacing:2.640000pt;}
.ls41{letter-spacing:2.933333pt;}
.ls15{letter-spacing:5.104000pt;}
.ls2a{letter-spacing:6.101333pt;}
.ls38{letter-spacing:6.629333pt;}
.ls40{letter-spacing:6.864000pt;}
.ls45{letter-spacing:7.333333pt;}
.ls0{letter-spacing:21.333333pt;}
.ls35{letter-spacing:1812.060800pt;}
.ls14{letter-spacing:1841.394133pt;}
.ls34{letter-spacing:1896.905600pt;}
.lsa{letter-spacing:1926.238933pt;}
.ws0{word-spacing:-20.160000pt;}
.ws1{word-spacing:-15.120000pt;}
.ws26{word-spacing:-14.666667pt;}
.wsc0{word-spacing:-13.610667pt;}
.ws83{word-spacing:-12.906667pt;}
.ws63{word-spacing:-12.613333pt;}
.ws90{word-spacing:-12.525333pt;}
.wsde{word-spacing:-12.408000pt;}
.wscb{word-spacing:-12.320000pt;}
.ws4b{word-spacing:-11.333333pt;}
.ws3{word-spacing:-9.520000pt;}
.ws6{word-spacing:-8.840000pt;}
.ws5{word-spacing:-8.522667pt;}
.ws4{word-spacing:-8.386667pt;}
.ws27{word-spacing:-8.008000pt;}
.wsdf{word-spacing:-7.280000pt;}
.ws28{word-spacing:-6.552000pt;}
.wse8{word-spacing:-1.936000pt;}
.wsc7{word-spacing:-1.642667pt;}
.wsc6{word-spacing:-1.290667pt;}
.wsc5{word-spacing:-1.173333pt;}
.ws9e{word-spacing:-0.997333pt;}
.ws8a{word-spacing:-0.880000pt;}
.ws8d{word-spacing:-0.821333pt;}
.wsd4{word-spacing:-0.800000pt;}
.wse3{word-spacing:-0.704000pt;}
.wse9{word-spacing:-0.645333pt;}
.ws84{word-spacing:-0.586667pt;}
.wse1{word-spacing:-0.469333pt;}
.wsa0{word-spacing:-0.410667pt;}
.ws6a{word-spacing:-0.352000pt;}
.ws6e{word-spacing:-0.293333pt;}
.wsd8{word-spacing:-0.266667pt;}
.ws67{word-spacing:-0.234667pt;}
.wsb3{word-spacing:-0.213333pt;}
.ws40{word-spacing:-0.176000pt;}
.ws5f{word-spacing:-0.117333pt;}
.ws2{word-spacing:-0.072000pt;}
.ws34{word-spacing:-0.058667pt;}
.ws97{word-spacing:-0.053333pt;}
.ws4a{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.058667pt;}
.wsc4{word-spacing:0.106667pt;}
.ws88{word-spacing:0.117333pt;}
.ws61{word-spacing:0.144000pt;}
.wsb0{word-spacing:0.160000pt;}
.ws4e{word-spacing:0.176000pt;}
.wscf{word-spacing:0.213333pt;}
.wsc{word-spacing:0.226667pt;}
.ws2e{word-spacing:0.234667pt;}
.ws7c{word-spacing:0.266667pt;}
.ws50{word-spacing:0.293333pt;}
.ws1e{word-spacing:0.317333pt;}
.wsd9{word-spacing:0.320000pt;}
.ws99{word-spacing:0.352000pt;}
.wsb1{word-spacing:0.373333pt;}
.ws4f{word-spacing:0.410667pt;}
.wse7{word-spacing:0.469333pt;}
.ws44{word-spacing:0.480000pt;}
.ws24{word-spacing:0.498667pt;}
.ws2d{word-spacing:0.528000pt;}
.ws13{word-spacing:0.544000pt;}
.ws58{word-spacing:0.586667pt;}
.wsda{word-spacing:0.640000pt;}
.ws5e{word-spacing:0.645333pt;}
.ws1b{word-spacing:0.680000pt;}
.ws66{word-spacing:0.704000pt;}
.wsb9{word-spacing:0.762667pt;}
.ws33{word-spacing:0.821333pt;}
.wsd7{word-spacing:0.853333pt;}
.ws22{word-spacing:0.861333pt;}
.ws49{word-spacing:0.864000pt;}
.ws2b{word-spacing:0.880000pt;}
.wsd0{word-spacing:0.906667pt;}
.ws62{word-spacing:0.912000pt;}
.wsa5{word-spacing:0.938667pt;}
.ws3e{word-spacing:0.997333pt;}
.wse4{word-spacing:1.008000pt;}
.wsb7{word-spacing:1.013333pt;}
.ws2f{word-spacing:1.056000pt;}
.wsa6{word-spacing:1.114667pt;}
.ws20{word-spacing:1.133333pt;}
.ws74{word-spacing:1.173333pt;}
.ws59{word-spacing:1.232000pt;}
.wsd2{word-spacing:1.280000pt;}
.ws73{word-spacing:1.290667pt;}
.ws75{word-spacing:1.349333pt;}
.ws16{word-spacing:1.405333pt;}
.ws38{word-spacing:1.408000pt;}
.wsa2{word-spacing:1.440000pt;}
.ws10{word-spacing:1.450667pt;}
.ws3b{word-spacing:1.466667pt;}
.wsd5{word-spacing:1.525333pt;}
.ws2c{word-spacing:1.584000pt;}
.wsf{word-spacing:1.632000pt;}
.ws5b{word-spacing:1.642667pt;}
.ws70{word-spacing:1.680000pt;}
.ws4d{word-spacing:1.701333pt;}
.wsbc{word-spacing:1.706667pt;}
.ws98{word-spacing:1.760000pt;}
.wsab{word-spacing:1.813333pt;}
.wsc8{word-spacing:1.818667pt;}
.wsaf{word-spacing:1.866667pt;}
.ws71{word-spacing:1.872000pt;}
.ws8e{word-spacing:1.877333pt;}
.wsbf{word-spacing:1.920000pt;}
.ws39{word-spacing:1.936000pt;}
.ws92{word-spacing:1.994667pt;}
.ws21{word-spacing:2.040000pt;}
.ws52{word-spacing:2.053333pt;}
.ws46{word-spacing:2.064000pt;}
.wsd3{word-spacing:2.080000pt;}
.ws7a{word-spacing:2.112000pt;}
.wsb6{word-spacing:2.133333pt;}
.wsa4{word-spacing:2.160000pt;}
.wsa1{word-spacing:2.170667pt;}
.wscd{word-spacing:2.229333pt;}
.wsc1{word-spacing:2.240000pt;}
.wsce{word-spacing:2.293333pt;}
.wsad{word-spacing:2.346667pt;}
.ws72{word-spacing:2.448000pt;}
.wsb2{word-spacing:2.453333pt;}
.ws5d{word-spacing:2.464000pt;}
.ws31{word-spacing:2.522667pt;}
.ws82{word-spacing:2.544000pt;}
.ws9d{word-spacing:2.581333pt;}
.ws41{word-spacing:2.592000pt;}
.ws1f{word-spacing:2.629333pt;}
.ws42{word-spacing:2.640000pt;}
.wsdd{word-spacing:2.666667pt;}
.ws15{word-spacing:2.674667pt;}
.ws48{word-spacing:2.688000pt;}
.ws76{word-spacing:2.698667pt;}
.ws11{word-spacing:2.720000pt;}
.ws9b{word-spacing:2.757333pt;}
.ws5a{word-spacing:2.816000pt;}
.ws36{word-spacing:2.874667pt;}
.wsb4{word-spacing:2.880000pt;}
.ws14{word-spacing:2.901333pt;}
.ws9c{word-spacing:2.933333pt;}
.wsbb{word-spacing:2.986667pt;}
.wse0{word-spacing:2.992000pt;}
.ws7e{word-spacing:3.040000pt;}
.ws35{word-spacing:3.050667pt;}
.ws43{word-spacing:3.072000pt;}
.wsa8{word-spacing:3.109333pt;}
.ws78{word-spacing:3.168000pt;}
.wsd{word-spacing:3.173333pt;}
.wsca{word-spacing:3.200000pt;}
.ws17{word-spacing:3.218667pt;}
.wsac{word-spacing:3.226667pt;}
.wsa9{word-spacing:3.253333pt;}
.ws23{word-spacing:3.264000pt;}
.ws68{word-spacing:3.285333pt;}
.ws69{word-spacing:3.344000pt;}
.ws1a{word-spacing:3.354667pt;}
.ws79{word-spacing:3.402667pt;}
.wsc2{word-spacing:3.413333pt;}
.wsba{word-spacing:3.461333pt;}
.ws60{word-spacing:3.520000pt;}
.ws12{word-spacing:3.536000pt;}
.wsa3{word-spacing:3.552000pt;}
.ws9a{word-spacing:3.578667pt;}
.ws25{word-spacing:3.581333pt;}
.wsa7{word-spacing:3.637333pt;}
.wsb5{word-spacing:3.680000pt;}
.wscc{word-spacing:3.696000pt;}
.wsc9{word-spacing:3.733333pt;}
.ws4c{word-spacing:3.754667pt;}
.wse2{word-spacing:3.813333pt;}
.ws9f{word-spacing:3.872000pt;}
.ws1d{word-spacing:3.898667pt;}
.ws53{word-spacing:3.930667pt;}
.ws6f{word-spacing:3.936000pt;}
.wse5{word-spacing:3.984000pt;}
.ws18{word-spacing:3.989333pt;}
.wsbe{word-spacing:4.000000pt;}
.ws87{word-spacing:4.048000pt;}
.ws95{word-spacing:4.106667pt;}
.ws9{word-spacing:4.138667pt;}
.wsdc{word-spacing:4.160000pt;}
.ws51{word-spacing:4.165333pt;}
.wsae{word-spacing:4.213333pt;}
.ws3d{word-spacing:4.224000pt;}
.ws57{word-spacing:4.282667pt;}
.ws19{word-spacing:4.306667pt;}
.ws8f{word-spacing:4.341333pt;}
.wsb8{word-spacing:4.373333pt;}
.ws3c{word-spacing:4.400000pt;}
.ws93{word-spacing:4.458667pt;}
.ws7b{word-spacing:4.517333pt;}
.ws6c{word-spacing:4.576000pt;}
.ws1c{word-spacing:4.624000pt;}
.ws80{word-spacing:4.634667pt;}
.ws85{word-spacing:4.693333pt;}
.ws8{word-spacing:4.736000pt;}
.wsaa{word-spacing:4.746667pt;}
.ws6b{word-spacing:4.752000pt;}
.wse{word-spacing:4.760000pt;}
.ws3a{word-spacing:4.810667pt;}
.wsc3{word-spacing:4.853333pt;}
.ws37{word-spacing:4.869333pt;}
.wsdb{word-spacing:4.906667pt;}
.ws77{word-spacing:4.928000pt;}
.ws47{word-spacing:4.944000pt;}
.wsbd{word-spacing:4.960000pt;}
.ws8c{word-spacing:4.986667pt;}
.ws45{word-spacing:5.040000pt;}
.ws56{word-spacing:5.045333pt;}
.ws65{word-spacing:5.162667pt;}
.ws7f{word-spacing:5.173333pt;}
.ws30{word-spacing:5.280000pt;}
.wsd6{word-spacing:5.333333pt;}
.ws86{word-spacing:5.338667pt;}
.ws55{word-spacing:5.397333pt;}
.ws8b{word-spacing:5.514667pt;}
.wsd1{word-spacing:5.573333pt;}
.ws7d{word-spacing:5.600000pt;}
.ws64{word-spacing:5.632000pt;}
.ws91{word-spacing:5.690667pt;}
.wse6{word-spacing:5.808000pt;}
.ws5c{word-spacing:5.866667pt;}
.ws2a{word-spacing:5.925333pt;}
.ws96{word-spacing:5.984000pt;}
.ws81{word-spacing:6.042667pt;}
.ws6d{word-spacing:6.101333pt;}
.ws32{word-spacing:6.160000pt;}
.wsa{word-spacing:9.472000pt;}
.ws29{word-spacing:11.333333pt;}
.wsb{word-spacing:11.861333pt;}
.ws94{word-spacing:13.920000pt;}
.ws89{word-spacing:24.448000pt;}
.ws54{word-spacing:75.296000pt;}
._3{margin-left:-21.333333pt;}
._4{margin-left:-20.160000pt;}
._10{margin-left:-18.245333pt;}
._18{margin-left:-12.320000pt;}
._1a{margin-left:-2.346667pt;}
._6{margin-left:-0.906667pt;}
._19{width:0.909333pt;}
._9{width:1.936000pt;}
._5{width:2.901333pt;}
._1{width:4.138667pt;}
._8{width:5.338667pt;}
._e{width:6.453333pt;}
._0{width:7.509333pt;}
._2{width:11.733333pt;}
._13{width:13.920000pt;}
._17{width:20.106667pt;}
._d{width:24.448000pt;}
._15{width:27.071467pt;}
._12{width:27.983467pt;}
._14{width:29.135467pt;}
._16{width:30.143467pt;}
._c{width:42.768000pt;}
._f{width:43.919467pt;}
._a{width:45.216000pt;}
._11{width:46.416000pt;}
._b{width:47.376000pt;}
._7{width:75.296000pt;}
.fsa{font-size:31.200000pt;}
.fsd{font-size:34.666667pt;}
.fs9{font-size:38.133333pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fsb{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fsc{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs3{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y97{bottom:122.837067pt;}
.y13b{bottom:122.837200pt;}
.yda{bottom:122.839600pt;}
.y12c{bottom:122.839733pt;}
.y70{bottom:122.845067pt;}
.y24d{bottom:122.849867pt;}
.y1ab{bottom:123.119600pt;}
.y105{bottom:123.216667pt;}
.y187{bottom:123.231867pt;}
.y258{bottom:123.402533pt;}
.y271{bottom:123.403867pt;}
.yfd{bottom:123.450267pt;}
.ya{bottom:124.725733pt;}
.y160{bottom:125.971733pt;}
.y1f3{bottom:126.434400pt;}
.y9{bottom:136.096400pt;}
.yd9{bottom:137.047600pt;}
.y12b{bottom:137.047733pt;}
.y6f{bottom:137.053067pt;}
.y186{bottom:138.871867pt;}
.y96{bottom:140.645067pt;}
.y13a{bottom:140.645200pt;}
.y24c{bottom:141.329867pt;}
.y1aa{bottom:141.599600pt;}
.y15f{bottom:141.611733pt;}
.y257{bottom:141.882533pt;}
.y270{bottom:141.883867pt;}
.yfc{bottom:141.930267pt;}
.y104{bottom:142.634667pt;}
.y6e{bottom:151.261067pt;}
.y8{bottom:153.129600pt;}
.y185{bottom:154.511867pt;}
.yd8{bottom:154.855600pt;}
.y12a{bottom:154.855733pt;}
.y15e{bottom:157.251733pt;}
.y24b{bottom:159.809867pt;}
.y26f{bottom:160.363867pt;}
.yfb{bottom:160.410267pt;}
.y6d{bottom:165.469067pt;}
.y129{bottom:165.474400pt;}
.y103{bottom:165.835067pt;}
.y228{bottom:169.602533pt;}
.y184{bottom:170.151867pt;}
.y7{bottom:170.174933pt;}
.y15d{bottom:172.891733pt;}
.y1f2{bottom:176.325867pt;}
.y26e{bottom:178.843867pt;}
.yfa{bottom:178.890267pt;}
.y128{bottom:179.682400pt;}
.y1a9{bottom:182.544400pt;}
.y6c{bottom:183.276933pt;}
.y95{bottom:183.277067pt;}
.y183{bottom:185.791867pt;}
.y24a{bottom:187.207200pt;}
.y6{bottom:187.220267pt;}
.y227{bottom:188.082533pt;}
.y15c{bottom:188.531733pt;}
.y127{bottom:193.890400pt;}
.y6b{bottom:193.893067pt;}
.y139{bottom:193.919067pt;}
.y1f1{bottom:194.805867pt;}
.yf9{bottom:197.370267pt;}
.y5{bottom:198.590933pt;}
.yd7{bottom:201.638933pt;}
.y1ca{bottom:203.752800pt;}
.y15b{bottom:204.171733pt;}
.y249{bottom:205.687200pt;}
.y226{bottom:206.562533pt;}
.y26d{bottom:206.563867pt;}
.y6a{bottom:208.101067pt;}
.y211{bottom:209.404400pt;}
.y126{bottom:211.698400pt;}
.y138{bottom:212.399067pt;}
.y4{bottom:215.636267pt;}
.y256{bottom:215.802533pt;}
.yf8{bottom:215.850267pt;}
.y1c9{bottom:219.392800pt;}
.y15a{bottom:219.811733pt;}
.yd6{bottom:220.118933pt;}
.y182{bottom:223.688267pt;}
.y248{bottom:224.167200pt;}
.y225{bottom:225.042533pt;}
.y26c{bottom:225.043867pt;}
.y69{bottom:225.908933pt;}
.y3{bottom:227.006933pt;}
.y210{bottom:227.884400pt;}
.yb0{bottom:230.646667pt;}
.y1f0{bottom:231.766667pt;}
.y255{bottom:234.282533pt;}
.yf7{bottom:234.330267pt;}
.y1c8{bottom:235.032800pt;}
.y68{bottom:236.522267pt;}
.y94{bottom:237.849200pt;}
.y2{bottom:238.377600pt;}
.yd5{bottom:238.598933pt;}
.y181{bottom:242.168267pt;}
.y224{bottom:243.522533pt;}
.y26b{bottom:243.523867pt;}
.y1a8{bottom:244.993333pt;}
.y20f{bottom:246.364400pt;}
.y1ef{bottom:247.406667pt;}
.yaf{bottom:249.126667pt;}
.y247{bottom:251.564533pt;}
.yf6{bottom:252.810267pt;}
.y137{bottom:253.343867pt;}
.y67{bottom:254.330267pt;}
.y93{bottom:256.329200pt;}
.y159{bottom:257.697467pt;}
.y125{bottom:261.301600pt;}
.y223{bottom:262.002533pt;}
.y1ee{bottom:263.046667pt;}
.y1a7{bottom:263.473333pt;}
.y20e{bottom:264.844400pt;}
.y66{bottom:264.948933pt;}
.yae{bottom:267.606667pt;}
.y1c7{bottom:269.140800pt;}
.y246{bottom:270.044533pt;}
.y26a{bottom:271.243867pt;}
.yf5{bottom:271.290267pt;}
.y92{bottom:274.809200pt;}
.yd4{bottom:275.558400pt;}
.y158{bottom:276.177467pt;}
.y1ed{bottom:278.686667pt;}
.y65{bottom:279.156933pt;}
.y124{bottom:279.781600pt;}
.y222{bottom:280.482533pt;}
.y1a6{bottom:281.953333pt;}
.y180{bottom:282.910400pt;}
.y20d{bottom:283.324400pt;}
.y31{bottom:284.286133pt;}
.y41{bottom:284.304800pt;}
.yad{bottom:286.086667pt;}
.y1c6{bottom:287.620800pt;}
.y269{bottom:289.723867pt;}
.yd3{bottom:291.198400pt;}
.y91{bottom:293.289200pt;}
.y64{bottom:293.364933pt;}
.y1ec{bottom:294.326667pt;}
.y157{bottom:294.657467pt;}
.y245{bottom:297.441867pt;}
.y30{bottom:297.795467pt;}
.y40{bottom:297.814133pt;}
.y123{bottom:298.261600pt;}
.y17f{bottom:298.550400pt;}
.y221{bottom:298.962533pt;}
.yf4{bottom:299.010267pt;}
.y1a5{bottom:300.433333pt;}
.y20c{bottom:301.804400pt;}
.y1c5{bottom:306.100800pt;}
.yd2{bottom:306.838400pt;}
.y268{bottom:308.203867pt;}
.y63{bottom:311.172933pt;}
.y2f{bottom:311.304800pt;}
.y3f{bottom:311.323467pt;}
.y90{bottom:311.769200pt;}
.y156{bottom:313.137467pt;}
.y17e{bottom:314.190400pt;}
.y244{bottom:315.921867pt;}
.y122{bottom:316.741600pt;}
.y220{bottom:317.442533pt;}
.yf3{bottom:317.490267pt;}
.y20b{bottom:320.284400pt;}
.yd1{bottom:322.478400pt;}
.y1c4{bottom:324.580800pt;}
.y2e{bottom:324.814133pt;}
.y3e{bottom:324.832800pt;}
.y254{bottom:326.682533pt;}
.y267{bottom:326.683867pt;}
.yac{bottom:327.031467pt;}
.y1eb{bottom:328.437333pt;}
.y136{bottom:328.995867pt;}
.y17d{bottom:329.830400pt;}
.y8f{bottom:330.249200pt;}
.y155{bottom:331.617467pt;}
.y121{bottom:335.221600pt;}
.y21f{bottom:335.922533pt;}
.yf2{bottom:335.970267pt;}
.y2d{bottom:338.323467pt;}
.y3d{bottom:338.342133pt;}
.y1a4{bottom:341.174133pt;}
.y1c3{bottom:343.060800pt;}
.y243{bottom:343.319200pt;}
.y253{bottom:345.162533pt;}
.y17c{bottom:345.470400pt;}
.y1ea{bottom:346.917333pt;}
.y135{bottom:347.475867pt;}
.y20a{bottom:348.004400pt;}
.y8e{bottom:348.729200pt;}
.y154{bottom:350.097467pt;}
.y3c{bottom:351.851467pt;}
.y120{bottom:353.701600pt;}
.y21e{bottom:354.402533pt;}
.y266{bottom:354.403867pt;}
.yf1{bottom:354.450267pt;}
.yd0{bottom:356.581067pt;}
.y1a3{bottom:356.814133pt;}
.y2c{bottom:358.927467pt;}
.y242{bottom:361.799200pt;}
.y62{bottom:362.656800pt;}
.y3b{bottom:365.360800pt;}
.y1e9{bottom:365.397333pt;}
.y134{bottom:365.955867pt;}
.y209{bottom:366.484400pt;}
.y8d{bottom:367.209200pt;}
.y11f{bottom:372.181600pt;}
.y1a2{bottom:372.454133pt;}
.y21d{bottom:372.882533pt;}
.y265{bottom:372.883867pt;}
.yf0{bottom:372.930267pt;}
.ycf{bottom:375.061067pt;}
.y3a{bottom:378.870133pt;}
.y1c2{bottom:380.021600pt;}
.y61{bottom:381.134133pt;}
.y17b{bottom:383.348000pt;}
.y1e8{bottom:383.877333pt;}
.y208{bottom:384.964400pt;}
.y8c{bottom:385.689200pt;}
.yab{bottom:385.692800pt;}
.y1a1{bottom:388.094133pt;}
.y241{bottom:389.196533pt;}
.y11e{bottom:390.661600pt;}
.y153{bottom:390.839600pt;}
.y21c{bottom:391.362533pt;}
.y264{bottom:391.363867pt;}
.yef{bottom:391.410267pt;}
.y39{bottom:392.379467pt;}
.yce{bottom:393.541067pt;}
.y1c1{bottom:395.661600pt;}
.y60{bottom:399.570533pt;}
.y17a{bottom:401.828000pt;}
.y207{bottom:403.444400pt;}
.y8b{bottom:404.169200pt;}
.yaa{bottom:404.172800pt;}
.y38{bottom:405.888800pt;}
.y152{bottom:406.479600pt;}
.y240{bottom:407.676533pt;}
.y11d{bottom:409.141600pt;}
.y21b{bottom:409.842533pt;}
.yee{bottom:409.890267pt;}
.y1c0{bottom:411.301600pt;}
.ycd{bottom:412.021067pt;}
.y133{bottom:416.352267pt;}
.y5f{bottom:418.050533pt;}
.y263{bottom:419.083867pt;}
.y37{bottom:419.398133pt;}
.y179{bottom:420.308000pt;}
.y1e7{bottom:420.836667pt;}
.y206{bottom:421.924400pt;}
.y151{bottom:422.119600pt;}
.y1a0{bottom:422.180800pt;}
.ya9{bottom:422.652800pt;}
.y1bf{bottom:426.941600pt;}
.y11c{bottom:427.621600pt;}
.y21a{bottom:428.322533pt;}
.yed{bottom:428.370267pt;}
.ycc{bottom:430.501067pt;}
.y8a{bottom:431.889200pt;}
.y36{bottom:432.907467pt;}
.y23f{bottom:435.073867pt;}
.y132{bottom:435.770267pt;}
.y1e6{bottom:436.476667pt;}
.y5e{bottom:436.530533pt;}
.y252{bottom:437.562533pt;}
.y262{bottom:437.563867pt;}
.y150{bottom:437.759600pt;}
.y178{bottom:438.788000pt;}
.y205{bottom:440.404400pt;}
.y19f{bottom:440.660800pt;}
.ya8{bottom:441.132800pt;}
.y1be{bottom:442.581600pt;}
.y11b{bottom:446.101600pt;}
.y35{bottom:446.416800pt;}
.yec{bottom:446.850267pt;}
.ycb{bottom:448.981067pt;}
.y89{bottom:450.369200pt;}
.y1e5{bottom:452.116667pt;}
.y14f{bottom:453.399600pt;}
.y23e{bottom:453.553867pt;}
.y5d{bottom:455.010533pt;}
.y219{bottom:456.042533pt;}
.y177{bottom:457.268000pt;}
.y204{bottom:458.884400pt;}
.y131{bottom:458.970667pt;}
.y19e{bottom:459.140800pt;}
.ya7{bottom:459.612800pt;}
.y34{bottom:459.926133pt;}
.y11a{bottom:464.581600pt;}
.y261{bottom:465.283867pt;}
.yeb{bottom:465.330267pt;}
.yca{bottom:467.461067pt;}
.y1e4{bottom:467.756667pt;}
.y88{bottom:468.849200pt;}
.y33{bottom:473.435467pt;}
.y5c{bottom:473.490533pt;}
.y218{bottom:474.522533pt;}
.y176{bottom:475.748000pt;}
.y1bd{bottom:476.665600pt;}
.y203{bottom:477.364400pt;}
.y19d{bottom:477.620800pt;}
.ya6{bottom:478.092800pt;}
.y130{bottom:479.984533pt;}
.y23d{bottom:480.951200pt;}
.y251{bottom:483.762533pt;}
.y260{bottom:483.763867pt;}
.yea{bottom:483.810267pt;}
.y32{bottom:486.944800pt;}
.y87{bottom:487.329200pt;}
.y14e{bottom:491.293200pt;}
.y119{bottom:492.301600pt;}
.y217{bottom:493.002533pt;}
.y175{bottom:494.228000pt;}
.y1bc{bottom:495.145600pt;}
.y19c{bottom:496.100800pt;}
.ya5{bottom:496.572800pt;}
.y23c{bottom:499.431200pt;}
.y5b{bottom:501.210533pt;}
.y1e3{bottom:501.851333pt;}
.y250{bottom:502.242533pt;}
.yc9{bottom:504.420533pt;}
.y86{bottom:505.809200pt;}
.y14d{bottom:509.773200pt;}
.y118{bottom:510.781600pt;}
.y216{bottom:511.482533pt;}
.y25f{bottom:511.483867pt;}
.y174{bottom:512.708000pt;}
.y1bb{bottom:513.625600pt;}
.y19b{bottom:514.580800pt;}
.y202{bottom:518.309200pt;}
.y5a{bottom:519.690533pt;}
.yc8{bottom:520.060533pt;}
.y1e2{bottom:520.331333pt;}
.y85{bottom:524.275867pt;}
.ye9{bottom:524.749733pt;}
.y2b{bottom:525.822133pt;}
.y1a{bottom:525.891733pt;}
.y23b{bottom:526.828533pt;}
.y14c{bottom:528.253200pt;}
.y117{bottom:529.261600pt;}
.y215{bottom:529.962533pt;}
.y25e{bottom:529.963867pt;}
.y173{bottom:531.188000pt;}
.y1ba{bottom:532.105600pt;}
.y19a{bottom:533.060800pt;}
.yc7{bottom:535.700533pt;}
.ya4{bottom:537.517600pt;}
.y59{bottom:538.170533pt;}
.y1e1{bottom:538.811333pt;}
.y2a{bottom:539.331467pt;}
.y19{bottom:539.401067pt;}
.ye8{bottom:541.101733pt;}
.y84{bottom:542.755867pt;}
.y23a{bottom:545.308533pt;}
.y116{bottom:547.741600pt;}
.y214{bottom:548.442533pt;}
.y1b9{bottom:550.585600pt;}
.yc6{bottom:551.340533pt;}
.y199{bottom:551.540800pt;}
.y29{bottom:552.840800pt;}
.y18{bottom:552.910400pt;}
.y58{bottom:556.650533pt;}
.y1e0{bottom:557.291333pt;}
.y25d{bottom:557.683867pt;}
.y83{bottom:561.235867pt;}
.y115{bottom:566.221600pt;}
.y28{bottom:566.350133pt;}
.y17{bottom:566.419733pt;}
.y213{bottom:566.922533pt;}
.y102{bottom:566.923867pt;}
.y14b{bottom:568.994133pt;}
.y1b8{bottom:569.065600pt;}
.y198{bottom:570.020800pt;}
.y172{bottom:571.930267pt;}
.y239{bottom:572.705867pt;}
.y57{bottom:575.130533pt;}
.y1df{bottom:575.771333pt;}
.y25c{bottom:576.163867pt;}
.y82{bottom:579.715867pt;}
.y27{bottom:579.859467pt;}
.y16{bottom:579.929333pt;}
.y14a{bottom:584.634133pt;}
.y114{bottom:584.701600pt;}
.y212{bottom:585.402533pt;}
.y101{bottom:585.403867pt;}
.yc5{bottom:585.451200pt;}
.y1b7{bottom:587.545600pt;}
.y171{bottom:587.570267pt;}
.y197{bottom:588.500800pt;}
.y238{bottom:591.185867pt;}
.y26{bottom:593.368800pt;}
.y56{bottom:593.610533pt;}
.y201{bottom:593.953200pt;}
.y1de{bottom:594.251333pt;}
.y24f{bottom:594.642533pt;}
.y81{bottom:598.195867pt;}
.y149{bottom:600.274133pt;}
.y15{bottom:600.533333pt;}
.y113{bottom:603.181600pt;}
.y170{bottom:603.210267pt;}
.ye7{bottom:603.882533pt;}
.y100{bottom:603.883867pt;}
.yc4{bottom:603.931200pt;}
.y1b6{bottom:606.025600pt;}
.y25{bottom:606.878133pt;}
.y196{bottom:606.980800pt;}
.y55{bottom:612.090533pt;}
.y200{bottom:612.433200pt;}
.y1dd{bottom:612.731333pt;}
.ya3{bottom:613.122533pt;}
.y148{bottom:615.914133pt;}
.y80{bottom:616.675867pt;}
.y237{bottom:618.583200pt;}
.y16f{bottom:618.850267pt;}
.y24{bottom:620.387467pt;}
.y112{bottom:621.661600pt;}
.ye6{bottom:622.362533pt;}
.yff{bottom:622.363867pt;}
.yc3{bottom:622.411200pt;}
.y1b5{bottom:624.505600pt;}
.y195{bottom:625.460800pt;}
.y54{bottom:630.570533pt;}
.y1ff{bottom:630.913200pt;}
.y1dc{bottom:631.211333pt;}
.ya2{bottom:631.602533pt;}
.y23{bottom:633.896800pt;}
.y16e{bottom:634.490267pt;}
.y111{bottom:640.141600pt;}
.ye5{bottom:640.842533pt;}
.yc2{bottom:640.843867pt;}
.y1b4{bottom:642.985600pt;}
.y194{bottom:643.940800pt;}
.y236{bottom:645.980533pt;}
.y22{bottom:647.406133pt;}
.y53{bottom:649.050533pt;}
.y1fe{bottom:649.393200pt;}
.y1db{bottom:649.691333pt;}
.ya1{bottom:650.082533pt;}
.y147{bottom:653.786800pt;}
.y7f{bottom:657.620667pt;}
.y110{bottom:658.621600pt;}
.ye4{bottom:659.322533pt;}
.yc1{bottom:659.323867pt;}
.y21{bottom:660.915467pt;}
.y1b3{bottom:661.465600pt;}
.y235{bottom:664.460533pt;}
.y52{bottom:667.530533pt;}
.y1fd{bottom:667.873200pt;}
.y1da{bottom:668.171333pt;}
.ya0{bottom:668.562533pt;}
.y146{bottom:672.266800pt;}
.y16d{bottom:672.368133pt;}
.y20{bottom:674.424800pt;}
.y10f{bottom:677.101600pt;}
.ye3{bottom:677.802533pt;}
.yc0{bottom:677.803867pt;}
.y1b2{bottom:679.945600pt;}
.y193{bottom:684.681600pt;}
.y51{bottom:686.010533pt;}
.y1fc{bottom:686.353200pt;}
.y9f{bottom:687.042533pt;}
.y25b{bottom:687.043867pt;}
.y1f{bottom:687.934133pt;}
.y145{bottom:690.746800pt;}
.y16c{bottom:690.848133pt;}
.y234{bottom:691.857867pt;}
.y10e{bottom:695.581600pt;}
.ye2{bottom:696.282533pt;}
.ybf{bottom:696.283867pt;}
.y1b1{bottom:698.425600pt;}
.y192{bottom:700.321600pt;}
.y1e{bottom:701.443467pt;}
.y50{bottom:704.488000pt;}
.y1d9{bottom:705.130800pt;}
.y9e{bottom:705.522533pt;}
.y144{bottom:709.226800pt;}
.y16b{bottom:709.328133pt;}
.y233{bottom:710.337867pt;}
.y10d{bottom:714.061600pt;}
.ye1{bottom:714.762533pt;}
.ybe{bottom:714.763867pt;}
.y1d{bottom:714.952800pt;}
.y191{bottom:715.961600pt;}
.y1b0{bottom:716.905600pt;}
.y1d8{bottom:720.770800pt;}
.y4f{bottom:722.940667pt;}
.y1fb{bottom:723.311333pt;}
.y9d{bottom:724.002533pt;}
.y143{bottom:727.706800pt;}
.y16a{bottom:727.808133pt;}
.y1c{bottom:728.462133pt;}
.y190{bottom:731.601600pt;}
.y10c{bottom:732.541600pt;}
.y7e{bottom:733.242533pt;}
.yfe{bottom:733.243867pt;}
.y1d7{bottom:736.410800pt;}
.y232{bottom:737.735200pt;}
.y1fa{bottom:738.951333pt;}
.y4e{bottom:741.420667pt;}
.y1b{bottom:741.971467pt;}
.y9c{bottom:742.482533pt;}
.ybd{bottom:742.483867pt;}
.y142{bottom:746.186800pt;}
.y169{bottom:746.288133pt;}
.y10b{bottom:751.021600pt;}
.y7d{bottom:751.722533pt;}
.y1d6{bottom:752.050800pt;}
.y1af{bottom:753.864933pt;}
.y1f9{bottom:754.591333pt;}
.y231{bottom:756.215200pt;}
.y9b{bottom:760.962533pt;}
.ybc{bottom:760.963867pt;}
.y141{bottom:764.666800pt;}
.y168{bottom:764.768133pt;}
.y18f{bottom:765.709733pt;}
.y4d{bottom:769.140667pt;}
.y10a{bottom:769.501600pt;}
.y1ae{bottom:769.504933pt;}
.y7c{bottom:770.202533pt;}
.ye0{bottom:779.442533pt;}
.ybb{bottom:779.443867pt;}
.y140{bottom:783.146800pt;}
.y167{bottom:783.248133pt;}
.y230{bottom:783.612533pt;}
.y18e{bottom:784.189733pt;}
.y1ad{bottom:785.144933pt;}
.y1d5{bottom:786.151067pt;}
.y4c{bottom:787.620667pt;}
.y7b{bottom:788.682533pt;}
.y1f8{bottom:788.683867pt;}
.ydf{bottom:797.922533pt;}
.yba{bottom:797.923867pt;}
.y14{bottom:798.152400pt;}
.y1ac{bottom:800.784933pt;}
.y13f{bottom:801.626800pt;}
.y166{bottom:801.728133pt;}
.y22f{bottom:802.092533pt;}
.y18d{bottom:802.669733pt;}
.y1d4{bottom:804.631067pt;}
.y4b{bottom:806.100667pt;}
.y109{bottom:806.459733pt;}
.y7a{bottom:807.162533pt;}
.y1f7{bottom:807.163867pt;}
.yde{bottom:816.402533pt;}
.yb9{bottom:816.403867pt;}
.y13{bottom:816.621467pt;}
.y13e{bottom:820.106800pt;}
.y165{bottom:820.208133pt;}
.y18c{bottom:821.149733pt;}
.y108{bottom:822.099733pt;}
.y1d3{bottom:823.111067pt;}
.y4a{bottom:824.580667pt;}
.y79{bottom:825.642533pt;}
.y1f6{bottom:825.643867pt;}
.y22e{bottom:829.489867pt;}
.ydd{bottom:834.882533pt;}
.yb8{bottom:834.883867pt;}
.y107{bottom:837.739733pt;}
.y13d{bottom:838.586800pt;}
.y18b{bottom:839.629733pt;}
.y1d2{bottom:841.591067pt;}
.y49{bottom:843.060667pt;}
.y78{bottom:844.122533pt;}
.y1f5{bottom:844.123867pt;}
.y22d{bottom:847.969867pt;}
.ydc{bottom:853.362533pt;}
.yb7{bottom:853.363867pt;}
.y12{bottom:856.082800pt;}
.y1d1{bottom:860.071067pt;}
.y164{bottom:860.948933pt;}
.y48{bottom:861.540667pt;}
.y77{bottom:862.602533pt;}
.y1f4{bottom:862.603867pt;}
.y22c{bottom:866.449867pt;}
.ydb{bottom:871.842533pt;}
.yb6{bottom:871.843867pt;}
.y106{bottom:871.855733pt;}
.y163{bottom:876.588933pt;}
.y11{bottom:878.482800pt;}
.y1d0{bottom:878.551067pt;}
.y13c{bottom:879.531467pt;}
.y47{bottom:880.020667pt;}
.y18a{bottom:880.369200pt;}
.y9a{bottom:881.082533pt;}
.y76{bottom:890.322533pt;}
.yb5{bottom:890.323867pt;}
.y12f{bottom:890.327867pt;}
.y162{bottom:892.228933pt;}
.y22b{bottom:893.847200pt;}
.y189{bottom:896.009200pt;}
.y1cf{bottom:897.031067pt;}
.y46{bottom:898.500667pt;}
.y99{bottom:899.562533pt;}
.y25a{bottom:899.563867pt;}
.y161{bottom:907.868933pt;}
.y75{bottom:908.802533pt;}
.yb4{bottom:908.803867pt;}
.y12e{bottom:908.807867pt;}
.y188{bottom:911.649200pt;}
.y1ce{bottom:915.511067pt;}
.y45{bottom:916.980667pt;}
.y10{bottom:917.936000pt;}
.y24e{bottom:918.042533pt;}
.y259{bottom:918.043867pt;}
.y22a{bottom:921.244533pt;}
.y74{bottom:927.282533pt;}
.yb3{bottom:927.283867pt;}
.y12d{bottom:927.287867pt;}
.y273{bottom:936.522533pt;}
.y229{bottom:939.724533pt;}
.y73{bottom:945.762533pt;}
.yb2{bottom:945.763867pt;}
.yf{bottom:946.736000pt;}
.y1cd{bottom:952.469200pt;}
.y272{bottom:955.002533pt;}
.y44{bottom:957.928000pt;}
.y72{bottom:964.242533pt;}
.yb1{bottom:964.243867pt;}
.y1cc{bottom:968.109200pt;}
.ye{bottom:975.536000pt;}
.y43{bottom:980.669333pt;}
.y98{bottom:982.722533pt;}
.y71{bottom:982.723867pt;}
.y1cb{bottom:983.749200pt;}
.yd{bottom:1033.547067pt;}
.y42{bottom:1041.982133pt;}
.yc{bottom:1061.227067pt;}
.yb{bottom:1073.227067pt;}
.h12{height:24.804000pt;}
.h4{height:31.402667pt;}
.h3{height:31.701333pt;}
.ha{height:36.038933pt;}
.hb{height:36.040000pt;}
.h13{height:38.160000pt;}
.h1a{height:40.280000pt;}
.h2{height:40.304688pt;}
.h8{height:42.400000pt;}
.h9{height:42.794667pt;}
.h1e{height:43.549333pt;}
.hd{height:46.640000pt;}
.h19{height:47.829333pt;}
.h14{height:47.910667pt;}
.hf{height:47.926133pt;}
.h11{height:47.926667pt;}
.h1d{height:47.932000pt;}
.h17{height:47.948000pt;}
.h1b{height:47.968800pt;}
.h15{height:47.969333pt;}
.he{height:48.024800pt;}
.h10{height:48.090400pt;}
.h18{height:48.105333pt;}
.h1c{height:48.207200pt;}
.h6{height:57.344000pt;}
.h7{height:59.360000pt;}
.h16{height:60.416000pt;}
.hc{height:65.450667pt;}
.h5{height:90.624000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x14{left:77.308933pt;}
.xd{left:83.316000pt;}
.x9{left:93.494933pt;}
.x13{left:94.492933pt;}
.x15{left:96.214800pt;}
.x3{left:98.267867pt;}
.x17{left:103.772667pt;}
.x12{left:113.394533pt;}
.x1d{left:120.939867pt;}
.x1c{left:122.665333pt;}
.x4{left:129.062800pt;}
.x5{left:134.396133pt;}
.x19{left:136.062933pt;}
.x16{left:137.788400pt;}
.x8{left:174.844000pt;}
.xe{left:215.599733pt;}
.x18{left:218.059067pt;}
.x1b{left:224.823067pt;}
.x10{left:277.448933pt;}
.xf{left:278.453333pt;}
.xb{left:363.620267pt;}
.xa{left:369.332267pt;}
.x1a{left:386.456133pt;}
.xc{left:476.219867pt;}
.x11{left:507.188400pt;}
.x7{left:552.632667pt;}
.x6{left:652.369467pt;}
.x1{left:710.776933pt;}
}




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