
    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_3d1ad563d2e0f1869048c605.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.920410;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_acc037424a9c449331875f3e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_94e60ff76836d4a24306d6b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.894531;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_1cb1cc1cbf19709355d255b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.115723;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_c42e549cecceff1b2a3d6aba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.928000;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_b91d15d6bfa652c59b82c2ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908691;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_2f63719c0af2dcd836ef6d9b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.667480;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_a18feaf3803b80b5ade8449c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.848145;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_0938c5ae5e9c71d8225d4fdb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.905762;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.808400px;}
.v2{vertical-align:32.400000px;}
.ls40{letter-spacing:-13.500000px;}
.ls36{letter-spacing:-9.760500px;}
.ls37{letter-spacing:-8.262000px;}
.ls30{letter-spacing:-8.140500px;}
.ls20{letter-spacing:-7.740000px;}
.ls3f{letter-spacing:-7.380000px;}
.ls3e{letter-spacing:-7.320000px;}
.ls1e{letter-spacing:-6.900000px;}
.ls21{letter-spacing:-4.440000px;}
.ls1f{letter-spacing:-4.080000px;}
.ls2e{letter-spacing:-1.350000px;}
.ls39{letter-spacing:-0.420000px;}
.ls46{letter-spacing:-0.300000px;}
.ls1b{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.000600px;}
.ls31{letter-spacing:0.009000px;}
.ls38{letter-spacing:0.054000px;}
.ls1d{letter-spacing:0.060000px;}
.ls23{letter-spacing:0.081000px;}
.ls2f{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.116400px;}
.ls10{letter-spacing:0.120000px;}
.ls57{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.240000px;}
.ls54{letter-spacing:0.270000px;}
.ls28{letter-spacing:0.300000px;}
.ls4c{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.360000px;}
.ls53{letter-spacing:0.378000px;}
.ls2{letter-spacing:0.420000px;}
.ls52{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.480000px;}
.ls5d{letter-spacing:0.486000px;}
.lsc{letter-spacing:0.540000px;}
.ls19{letter-spacing:0.594000px;}
.ls29{letter-spacing:0.600000px;}
.ls4e{letter-spacing:0.648000px;}
.ls12{letter-spacing:0.660000px;}
.ls4f{letter-spacing:0.702000px;}
.ls5{letter-spacing:0.720000px;}
.ls50{letter-spacing:0.756000px;}
.ls27{letter-spacing:0.780000px;}
.ls1a{letter-spacing:0.810000px;}
.ls15{letter-spacing:0.840000px;}
.ls2c{letter-spacing:0.864000px;}
.ls16{letter-spacing:0.900000px;}
.ls4d{letter-spacing:0.915600px;}
.ls2d{letter-spacing:0.918000px;}
.ls0{letter-spacing:0.960000px;}
.ls51{letter-spacing:0.972000px;}
.ls33{letter-spacing:1.020000px;}
.ls5e{letter-spacing:1.026000px;}
.lsd{letter-spacing:1.080000px;}
.ls5f{letter-spacing:1.134000px;}
.ls11{letter-spacing:1.140000px;}
.ls58{letter-spacing:1.188000px;}
.lsb{letter-spacing:1.200000px;}
.ls60{letter-spacing:1.242000px;}
.ls7{letter-spacing:1.260000px;}
.ls55{letter-spacing:1.296000px;}
.ls6{letter-spacing:1.320000px;}
.ls5b{letter-spacing:1.350000px;}
.lse{letter-spacing:1.380000px;}
.ls56{letter-spacing:1.404000px;}
.ls35{letter-spacing:1.440000px;}
.ls5a{letter-spacing:1.458000px;}
.ls14{letter-spacing:1.500000px;}
.ls62{letter-spacing:1.512000px;}
.ls34{letter-spacing:1.560000px;}
.ls66{letter-spacing:1.566000px;}
.ls26{letter-spacing:1.620000px;}
.ls63{letter-spacing:1.674000px;}
.ls8{letter-spacing:1.680000px;}
.ls5c{letter-spacing:1.728000px;}
.ls17{letter-spacing:1.740000px;}
.ls24{letter-spacing:1.800000px;}
.ls61{letter-spacing:1.836000px;}
.ls47{letter-spacing:1.860000px;}
.lsa{letter-spacing:1.920000px;}
.ls1c{letter-spacing:1.980000px;}
.ls65{letter-spacing:1.998000px;}
.ls45{letter-spacing:2.040000px;}
.ls67{letter-spacing:2.052000px;}
.ls32{letter-spacing:2.100000px;}
.ls4b{letter-spacing:2.106000px;}
.ls44{letter-spacing:2.160000px;}
.ls59{letter-spacing:2.214000px;}
.ls42{letter-spacing:2.220000px;}
.ls64{letter-spacing:2.268000px;}
.ls13{letter-spacing:2.340000px;}
.ls2a{letter-spacing:2.400000px;}
.ls3{letter-spacing:2.820000px;}
.ls43{letter-spacing:3.120000px;}
.ls41{letter-spacing:3.300000px;}
.ls4{letter-spacing:3.600000px;}
.ls3a{letter-spacing:215.406000px;}
.ls3b{letter-spacing:383.724000px;}
.ls3d{letter-spacing:393.768000px;}
.ls48{letter-spacing:408.024000px;}
.ls4a{letter-spacing:413.262000px;}
.ls3c{letter-spacing:424.224000px;}
.ls49{letter-spacing:457.218000px;}
.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;}
}
.ws9{word-spacing:-63.600000px;}
.ws5d{word-spacing:-63.120000px;}
.ws8{word-spacing:-62.820000px;}
.ws37{word-spacing:-62.400000px;}
.ws20{word-spacing:-62.340000px;}
.ws5c{word-spacing:-62.220000px;}
.ws5e{word-spacing:-62.160000px;}
.ws3d{word-spacing:-62.100000px;}
.ws10{word-spacing:-61.980000px;}
.ws3c{word-spacing:-61.920000px;}
.ws31{word-spacing:-61.800000px;}
.ws26{word-spacing:-61.740000px;}
.wsd{word-spacing:-61.680000px;}
.ws33{word-spacing:-61.620000px;}
.ws43{word-spacing:-61.560000px;}
.ws21{word-spacing:-61.500000px;}
.ws42{word-spacing:-61.440000px;}
.ws14{word-spacing:-61.380000px;}
.wsb{word-spacing:-61.320000px;}
.wsc{word-spacing:-61.260000px;}
.ws11{word-spacing:-61.200000px;}
.ws1b{word-spacing:-61.140000px;}
.ws13{word-spacing:-61.080000px;}
.ws3e{word-spacing:-61.020000px;}
.ws3{word-spacing:-60.960000px;}
.ws25{word-spacing:-60.900000px;}
.ws22{word-spacing:-60.840000px;}
.ws34{word-spacing:-60.780000px;}
.wsa{word-spacing:-60.720000px;}
.ws1f{word-spacing:-60.660000px;}
.ws36{word-spacing:-60.600000px;}
.ws12{word-spacing:-60.540000px;}
.ws3f{word-spacing:-60.480000px;}
.ws5{word-spacing:-60.420000px;}
.ws44{word-spacing:-60.360000px;}
.ws35{word-spacing:-60.300000px;}
.ws32{word-spacing:-60.240000px;}
.ws4{word-spacing:-60.180000px;}
.ws18{word-spacing:-60.120000px;}
.ws1d{word-spacing:-60.060000px;}
.ws7{word-spacing:-60.000000px;}
.ws97{word-spacing:-56.268000px;}
.ws89{word-spacing:-56.214000px;}
.ws75{word-spacing:-56.106000px;}
.ws9a{word-spacing:-56.052000px;}
.ws98{word-spacing:-55.998000px;}
.ws94{word-spacing:-55.836000px;}
.ws8e{word-spacing:-55.728000px;}
.ws96{word-spacing:-55.674000px;}
.ws87{word-spacing:-55.620000px;}
.ws99{word-spacing:-55.566000px;}
.ws95{word-spacing:-55.512000px;}
.ws8c{word-spacing:-55.458000px;}
.ws83{word-spacing:-55.404000px;}
.ws8d{word-spacing:-55.350000px;}
.ws79{word-spacing:-55.296000px;}
.ws93{word-spacing:-55.242000px;}
.ws88{word-spacing:-55.188000px;}
.ws92{word-spacing:-55.134000px;}
.ws77{word-spacing:-55.080000px;}
.ws90{word-spacing:-55.026000px;}
.ws7c{word-spacing:-54.972000px;}
.ws38{word-spacing:-54.864000px;}
.ws2b{word-spacing:-54.810000px;}
.ws7b{word-spacing:-54.756000px;}
.ws7a{word-spacing:-54.702000px;}
.ws78{word-spacing:-54.648000px;}
.ws8b{word-spacing:-54.594000px;}
.ws7d{word-spacing:-54.540000px;}
.ws8f{word-spacing:-54.486000px;}
.ws7e{word-spacing:-54.432000px;}
.ws81{word-spacing:-54.378000px;}
.ws76{word-spacing:-54.324000px;}
.ws82{word-spacing:-54.270000px;}
.ws29{word-spacing:-54.216000px;}
.ws86{word-spacing:-54.162000px;}
.ws8a{word-spacing:-54.108000px;}
.ws7f{word-spacing:-54.054000px;}
.ws1{word-spacing:-54.000000px;}
.ws62{word-spacing:-19.386000px;}
.ws47{word-spacing:-17.010000px;}
.wsf{word-spacing:-16.920000px;}
.ws5f{word-spacing:-16.740000px;}
.ws15{word-spacing:-16.380000px;}
.ws40{word-spacing:-16.320000px;}
.ws1a{word-spacing:-16.140000px;}
.ws41{word-spacing:-15.960000px;}
.ws23{word-spacing:-15.840000px;}
.ws61{word-spacing:-15.780000px;}
.ws17{word-spacing:-15.540000px;}
.ws16{word-spacing:-15.480000px;}
.ws6{word-spacing:-15.420000px;}
.wse{word-spacing:-15.360000px;}
.ws19{word-spacing:-15.120000px;}
.ws1e{word-spacing:-15.060000px;}
.ws1c{word-spacing:-15.000000px;}
.ws80{word-spacing:-14.310000px;}
.ws2a{word-spacing:-14.094000px;}
.ws91{word-spacing:-13.770000px;}
.ws2c{word-spacing:-13.716000px;}
.ws2f{word-spacing:-13.608000px;}
.ws3a{word-spacing:-13.500000px;}
.ws24{word-spacing:-10.920000px;}
.ws28{word-spacing:-10.560000px;}
.ws0{word-spacing:-10.500000px;}
.ws2e{word-spacing:-10.206000px;}
.ws2{word-spacing:-9.450000px;}
.ws27{word-spacing:-7.260000px;}
.ws46{word-spacing:-5.292000px;}
.ws2d{word-spacing:0.000000px;}
.ws30{word-spacing:6.237000px;}
.ws3b{word-spacing:6.398700px;}
.ws39{word-spacing:9.396000px;}
.ws63{word-spacing:10.908000px;}
.ws60{word-spacing:52.080000px;}
.ws4a{word-spacing:84.456000px;}
.ws4c{word-spacing:88.452000px;}
.ws48{word-spacing:104.706000px;}
.ws4d{word-spacing:111.456000px;}
.ws5b{word-spacing:117.288000px;}
.ws64{word-spacing:128.196000px;}
.ws6d{word-spacing:134.028000px;}
.ws4e{word-spacing:145.206000px;}
.ws69{word-spacing:146.124000px;}
.ws4f{word-spacing:150.660000px;}
.ws66{word-spacing:157.194000px;}
.ws56{word-spacing:157.950000px;}
.ws73{word-spacing:166.050000px;}
.ws67{word-spacing:170.694000px;}
.ws50{word-spacing:182.574000px;}
.ws6c{word-spacing:188.136000px;}
.ws5a{word-spacing:191.700000px;}
.ws4b{word-spacing:198.450000px;}
.ws74{word-spacing:201.420000px;}
.ws72{word-spacing:215.784000px;}
.ws6e{word-spacing:217.944000px;}
.ws53{word-spacing:220.212000px;}
.ws58{word-spacing:232.200000px;}
.ws52{word-spacing:239.706000px;}
.ws84{word-spacing:242.946000px;}
.ws51{word-spacing:246.456000px;}
.ws6f{word-spacing:256.284000px;}
.ws71{word-spacing:258.444000px;}
.ws85{word-spacing:269.946000px;}
.ws68{word-spacing:290.358000px;}
.ws55{word-spacing:293.706000px;}
.ws6a{word-spacing:326.700000px;}
.ws54{word-spacing:329.724000px;}
.ws6b{word-spacing:356.832000px;}
.ws59{word-spacing:370.224000px;}
.ws70{word-spacing:417.528000px;}
.ws57{word-spacing:418.878000px;}
.ws45{word-spacing:543.672000px;}
.ws65{word-spacing:584.658000px;}
.ws49{word-spacing:588.978000px;}
._e{margin-left:-8.784000px;}
._2{margin-left:-7.680000px;}
._a{margin-left:-6.396000px;}
._5{margin-left:-5.102400px;}
._3{margin-left:-4.066800px;}
._0{margin-left:-2.400000px;}
._1{margin-left:-1.056000px;}
._6{width:1.680000px;}
._7{width:2.760000px;}
._8{width:4.020000px;}
._9{width:5.196000px;}
._f{width:6.240000px;}
._4{width:8.586000px;}
._16{width:35.292000px;}
._34{width:36.804000px;}
._10{width:39.018000px;}
._15{width:44.310000px;}
._33{width:51.816000px;}
._44{width:61.266000px;}
._37{width:75.330000px;}
._13{width:77.382000px;}
._38{width:81.786000px;}
._14{width:83.298000px;}
._11{width:90.733200px;}
._47{width:107.970000px;}
._4a{width:153.930000px;}
._3c{width:184.950000px;}
._45{width:191.934000px;}
._21{width:193.212000px;}
._35{width:196.748400px;}
._46{width:198.936000px;}
._26{width:199.956000px;}
._36{width:201.960000px;}
._39{width:205.200000px;}
._19{width:206.712000px;}
._22{width:208.224000px;}
._12{width:221.400000px;}
._31{width:226.206000px;}
._49{width:230.286000px;}
._20{width:232.200000px;}
._2d{width:233.712000px;}
._1a{width:235.224000px;}
._17{width:236.898000px;}
._18{width:245.700000px;}
._28{width:249.318000px;}
._59{width:252.690000px;}
._48{width:257.610000px;}
._30{width:260.418000px;}
._2c{width:272.700000px;}
._1c{width:274.212000px;}
._1d{width:275.724000px;}
._5e{width:278.694000px;}
._61{width:282.180000px;}
._63{width:283.182000px;}
._2e{width:289.224000px;}
._51{width:302.832000px;}
._1b{width:312.906000px;}
._4c{width:316.332000px;}
._41{width:319.032000px;}
._3a{width:321.924000px;}
._55{width:323.082000px;}
._32{width:329.724000px;}
._52{width:343.740000px;}
._50{width:345.978000px;}
._4d{width:348.168000px;}
._57{width:355.674000px;}
._3d{width:363.714000px;}
._54{width:366.228000px;}
._4b{width:368.064000px;}
._56{width:373.326000px;}
._29{width:375.246000px;}
._4e{width:384.744000px;}
._53{width:385.752000px;}
._58{width:387.774000px;}
._43{width:393.768000px;}
._1e{width:401.706000px;}
._23{width:404.328000px;}
._3e{width:405.618000px;}
._5a{width:414.774000px;}
._2a{width:417.258000px;}
._40{width:425.034000px;}
._5c{width:432.246000px;}
._3f{width:437.430000px;}
._60{width:440.532000px;}
._24{width:446.340000px;}
._4f{width:451.740000px;}
._5d{width:457.674000px;}
._5b{width:463.674000px;}
._62{width:465.780000px;}
._2b{width:472.584000px;}
._2f{width:484.032000px;}
._3b{width:487.188000px;}
._25{width:510.762000px;}
._1f{width:512.328000px;}
._5f{width:517.242000px;}
._42{width:521.616000px;}
._27{width:524.262000px;}
._64{width:794.124000px;}
._b{width:1659.366000px;}
._d{width:1671.401700px;}
._c{width:2451.114000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs2{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:74.409450px;}
.y177{bottom:74.413800px;}
.ydc{bottom:74.414250px;}
.y52{bottom:74.414400px;}
.y226{bottom:74.414550px;}
.yd{bottom:118.011750px;}
.y1ed{bottom:120.914850px;}
.y1ac{bottom:120.944850px;}
.y193{bottom:121.019850px;}
.y266{bottom:121.143900px;}
.y73{bottom:121.181550px;}
.y21a{bottom:121.315050px;}
.y2a5{bottom:121.319400px;}
.y141{bottom:121.354950px;}
.ya7{bottom:121.355250px;}
.y175{bottom:121.534950px;}
.yda{bottom:121.550250px;}
.ye5{bottom:127.707900px;}
.yc{bottom:133.631250px;}
.y72{bottom:134.681550px;}
.y219{bottom:134.936550px;}
.y265{bottom:135.021900px;}
.y2a4{bottom:135.143400px;}
.y1ab{bottom:139.244850px;}
.y1ec{bottom:139.259850px;}
.y192{bottom:139.289850px;}
.y140{bottom:139.369950px;}
.ya6{bottom:139.370250px;}
.y174{bottom:139.549950px;}
.yd9{bottom:139.565250px;}
.ye4{bottom:145.707900px;}
.yb{bottom:147.131250px;}
.y71{bottom:148.181550px;}
.y2a3{bottom:148.967400px;}
.y218{bottom:152.810550px;}
.y264{bottom:153.152400px;}
.y13f{bottom:157.384950px;}
.ya5{bottom:157.385250px;}
.y1aa{bottom:157.544850px;}
.y191{bottom:157.559850px;}
.y173{bottom:157.564950px;}
.yd8{bottom:157.580250px;}
.y1eb{bottom:157.604850px;}
.ya{bottom:162.750750px;}
.y2a2{bottom:162.791400px;}
.ye3{bottom:163.707900px;}
.y217{bottom:166.432050px;}
.y263{bottom:167.030400px;}
.y13e{bottom:175.399950px;}
.ya4{bottom:175.400250px;}
.y172{bottom:175.579950px;}
.yd7{bottom:175.595250px;}
.y190{bottom:175.829850px;}
.y1a9{bottom:175.844850px;}
.y1ea{bottom:175.949850px;}
.y9{bottom:176.250750px;}
.y216{bottom:180.053550px;}
.y2a1{bottom:180.867900px;}
.y262{bottom:180.908400px;}
.ye2{bottom:181.707900px;}
.y8{bottom:191.870250px;}
.y13d{bottom:193.414950px;}
.ya3{bottom:193.415250px;}
.y171{bottom:193.594950px;}
.yd6{bottom:193.610250px;}
.y215{bottom:193.675050px;}
.y18f{bottom:194.099850px;}
.y1a8{bottom:194.144850px;}
.y1e9{bottom:194.294850px;}
.y2a0{bottom:194.691900px;}
.y261{bottom:199.038900px;}
.ye1{bottom:199.707900px;}
.y7{bottom:205.370250px;}
.y214{bottom:207.296550px;}
.y29f{bottom:208.515900px;}
.y13c{bottom:211.429950px;}
.ya2{bottom:211.430250px;}
.y170{bottom:211.609950px;}
.yd5{bottom:211.625250px;}
.y18e{bottom:212.369850px;}
.y1a7{bottom:212.444850px;}
.y1e8{bottom:212.639850px;}
.y260{bottom:212.916900px;}
.ye0{bottom:217.707900px;}
.y213{bottom:225.170550px;}
.y29e{bottom:226.592400px;}
.y25f{bottom:226.794900px;}
.y13b{bottom:229.444950px;}
.ya1{bottom:229.445250px;}
.y16f{bottom:229.624950px;}
.yd4{bottom:229.640250px;}
.y18d{bottom:230.639850px;}
.y1a6{bottom:230.744850px;}
.y1e7{bottom:230.984850px;}
.ydf{bottom:235.707900px;}
.y212{bottom:238.792050px;}
.y29d{bottom:240.416400px;}
.y25e{bottom:240.672900px;}
.y13a{bottom:247.459950px;}
.ya0{bottom:247.460250px;}
.y16e{bottom:247.639950px;}
.yd3{bottom:247.655250px;}
.y18c{bottom:248.909850px;}
.y1a5{bottom:249.044850px;}
.y1e6{bottom:249.329850px;}
.y211{bottom:252.413550px;}
.yde{bottom:253.707900px;}
.y29c{bottom:258.492900px;}
.y25d{bottom:258.803400px;}
.y3b{bottom:263.868450px;}
.y25{bottom:264.348450px;}
.y139{bottom:265.474950px;}
.y9f{bottom:265.475250px;}
.y16d{bottom:265.654950px;}
.yd2{bottom:265.670250px;}
.y18b{bottom:267.179850px;}
.y1a4{bottom:267.344850px;}
.y1e5{bottom:267.674850px;}
.ydd{bottom:271.707900px;}
.y29b{bottom:272.316900px;}
.y25c{bottom:272.681400px;}
.y210{bottom:279.292050px;}
.y24{bottom:282.348450px;}
.y3a{bottom:282.708450px;}
.y138{bottom:283.489950px;}
.y9e{bottom:283.490250px;}
.y16c{bottom:283.669950px;}
.yd1{bottom:283.685250px;}
.y18a{bottom:285.449850px;}
.y1a3{bottom:285.644850px;}
.y1e4{bottom:286.019850px;}
.y29a{bottom:286.140900px;}
.y25b{bottom:286.559400px;}
.y299{bottom:299.964900px;}
.y23{bottom:300.348450px;}
.y25a{bottom:300.437400px;}
.y137{bottom:301.504950px;}
.y9d{bottom:301.505250px;}
.y39{bottom:301.548450px;}
.y16b{bottom:301.684950px;}
.yd0{bottom:301.700250px;}
.y189{bottom:303.719850px;}
.y1a2{bottom:303.944850px;}
.y1e3{bottom:304.364850px;}
.y10d{bottom:308.957700px;}
.y298{bottom:318.041400px;}
.y22{bottom:318.348450px;}
.y259{bottom:318.567900px;}
.y136{bottom:319.519950px;}
.y9c{bottom:319.520250px;}
.y16a{bottom:319.699950px;}
.ycf{bottom:319.715250px;}
.y38{bottom:320.388450px;}
.y188{bottom:321.989850px;}
.y1a1{bottom:322.244850px;}
.y1e2{bottom:322.709850px;}
.y10c{bottom:327.628200px;}
.y20f{bottom:328.918050px;}
.y297{bottom:331.865400px;}
.y258{bottom:332.445900px;}
.y21{bottom:336.348450px;}
.y135{bottom:337.534950px;}
.y9b{bottom:337.535250px;}
.y169{bottom:337.714950px;}
.yce{bottom:337.730250px;}
.y37{bottom:339.228450px;}
.y187{bottom:340.259850px;}
.y1a0{bottom:340.544850px;}
.y1e1{bottom:341.054850px;}
.y20e{bottom:342.539550px;}
.y296{bottom:345.689400px;}
.y10b{bottom:346.298700px;}
.y257{bottom:346.323900px;}
.y20{bottom:354.348450px;}
.y134{bottom:355.549950px;}
.y9a{bottom:355.550250px;}
.y168{bottom:355.729950px;}
.ycd{bottom:355.745250px;}
.y20d{bottom:356.161050px;}
.y36{bottom:358.068450px;}
.y186{bottom:358.529850px;}
.y19f{bottom:358.844850px;}
.y1e0{bottom:359.399850px;}
.y295{bottom:359.513400px;}
.y256{bottom:360.201900px;}
.y10a{bottom:364.969200px;}
.y20c{bottom:369.782550px;}
.y1f{bottom:372.348450px;}
.y133{bottom:373.564950px;}
.y99{bottom:373.565250px;}
.ycc{bottom:373.760250px;}
.y255{bottom:374.079900px;}
.y185{bottom:376.799850px;}
.y35{bottom:376.908450px;}
.y19e{bottom:377.144850px;}
.y294{bottom:377.589900px;}
.y1df{bottom:377.744850px;}
.y20b{bottom:383.404050px;}
.y109{bottom:383.639700px;}
.y254{bottom:387.957900px;}
.y1e{bottom:390.348450px;}
.y293{bottom:391.413900px;}
.y132{bottom:391.579950px;}
.y98{bottom:391.580250px;}
.y167{bottom:391.744950px;}
.ycb{bottom:391.775250px;}
.y184{bottom:395.069850px;}
.y34{bottom:395.748450px;}
.y1de{bottom:396.089850px;}
.y20a{bottom:397.025550px;}
.y253{bottom:401.835900px;}
.y108{bottom:402.310200px;}
.y292{bottom:405.237900px;}
.y1d{bottom:408.348450px;}
.y131{bottom:409.594950px;}
.y97{bottom:409.595250px;}
.y166{bottom:409.759950px;}
.yca{bottom:409.790250px;}
.y209{bottom:410.647050px;}
.y183{bottom:413.339850px;}
.y19d{bottom:413.444850px;}
.y1dd{bottom:414.434850px;}
.y33{bottom:414.588450px;}
.y252{bottom:415.713900px;}
.y107{bottom:420.980700px;}
.y291{bottom:423.314400px;}
.y208{bottom:424.268550px;}
.y1c{bottom:426.348450px;}
.y130{bottom:427.609950px;}
.y96{bottom:427.610250px;}
.y165{bottom:427.774950px;}
.yc9{bottom:427.805250px;}
.y182{bottom:431.609850px;}
.y1dc{bottom:432.779850px;}
.y32{bottom:433.428450px;}
.y251{bottom:433.844400px;}
.y290{bottom:437.138400px;}
.y207{bottom:437.890050px;}
.y106{bottom:439.651200px;}
.y1b{bottom:444.348450px;}
.y12f{bottom:445.624950px;}
.y95{bottom:445.625250px;}
.y164{bottom:445.789950px;}
.yc8{bottom:445.820250px;}
.y250{bottom:447.722400px;}
.y181{bottom:449.879850px;}
.y1db{bottom:451.124850px;}
.y206{bottom:451.511550px;}
.y31{bottom:452.268450px;}
.y28f{bottom:455.214900px;}
.y105{bottom:458.321700px;}
.y24f{bottom:461.600400px;}
.y1a{bottom:462.348450px;}
.y12e{bottom:463.639950px;}
.y94{bottom:463.640250px;}
.y163{bottom:463.804950px;}
.yc7{bottom:463.835250px;}
.y205{bottom:465.133050px;}
.y19c{bottom:467.744850px;}
.y180{bottom:468.149850px;}
.y28e{bottom:469.038900px;}
.y1da{bottom:469.469850px;}
.y30{bottom:471.108450px;}
.y24e{bottom:475.478400px;}
.y104{bottom:476.992200px;}
.y204{bottom:478.754550px;}
.y19{bottom:480.348450px;}
.y93{bottom:481.655250px;}
.y162{bottom:481.819950px;}
.yc6{bottom:481.850250px;}
.y19b{bottom:486.044850px;}
.y17f{bottom:486.419850px;}
.y28d{bottom:487.115400px;}
.y1d9{bottom:487.814850px;}
.y2f{bottom:489.948450px;}
.y203{bottom:492.407550px;}
.y24d{bottom:493.608900px;}
.y103{bottom:495.662700px;}
.y18{bottom:498.348450px;}
.y12d{bottom:499.654950px;}
.y92{bottom:499.670250px;}
.y161{bottom:499.834950px;}
.yc5{bottom:499.865250px;}
.y28c{bottom:500.939400px;}
.y19a{bottom:504.344850px;}
.y17e{bottom:504.689850px;}
.y202{bottom:506.029050px;}
.y1d8{bottom:506.159850px;}
.y24c{bottom:507.486900px;}
.y2e{bottom:508.788450px;}
.y102{bottom:514.333200px;}
.y17{bottom:516.348450px;}
.y12c{bottom:517.669950px;}
.y91{bottom:517.685250px;}
.y160{bottom:517.849950px;}
.yc4{bottom:517.880250px;}
.y28b{bottom:519.015900px;}
.y201{bottom:519.650550px;}
.y24b{bottom:521.364900px;}
.y199{bottom:522.644850px;}
.y17d{bottom:522.959850px;}
.y1d7{bottom:524.504850px;}
.y2d{bottom:527.628450px;}
.y28a{bottom:532.839900px;}
.y101{bottom:533.003700px;}
.y200{bottom:533.272050px;}
.y16{bottom:534.348450px;}
.y24a{bottom:535.242900px;}
.y12b{bottom:535.684950px;}
.y90{bottom:535.700250px;}
.y15f{bottom:535.864950px;}
.yc3{bottom:535.895250px;}
.y198{bottom:540.944850px;}
.y17c{bottom:541.229850px;}
.y1d6{bottom:542.849850px;}
.y2c{bottom:546.468450px;}
.y289{bottom:546.663900px;}
.y1ff{bottom:546.893550px;}
.y100{bottom:551.674200px;}
.y15{bottom:552.348450px;}
.y249{bottom:553.373400px;}
.y12a{bottom:553.699950px;}
.y8f{bottom:553.715250px;}
.y15e{bottom:553.879950px;}
.yc2{bottom:553.910250px;}
.y197{bottom:559.244850px;}
.y17b{bottom:559.499850px;}
.y1fe{bottom:560.515050px;}
.y1d5{bottom:561.194850px;}
.y288{bottom:564.740400px;}
.y2b{bottom:565.308450px;}
.y248{bottom:567.251400px;}
.yff{bottom:570.344700px;}
.y14{bottom:570.348450px;}
.y129{bottom:571.714950px;}
.y8e{bottom:571.730250px;}
.y15d{bottom:571.894950px;}
.yc1{bottom:571.925250px;}
.y196{bottom:577.544850px;}
.y17a{bottom:577.769850px;}
.y287{bottom:578.564400px;}
.y1d4{bottom:579.539850px;}
.y247{bottom:581.129400px;}
.y6f{bottom:581.476200px;}
.y56{bottom:581.506200px;}
.y2a{bottom:584.148450px;}
.y13{bottom:588.348450px;}
.yfe{bottom:589.015200px;}
.y128{bottom:589.729950px;}
.y8d{bottom:589.745250px;}
.y15c{bottom:589.909950px;}
.yc0{bottom:589.940250px;}
.y286{bottom:592.388400px;}
.y50{bottom:595.232400px;}
.y195{bottom:595.844850px;}
.y179{bottom:596.039850px;}
.y1d3{bottom:597.884850px;}
.y246{bottom:599.259900px;}
.y55{bottom:599.686200px;}
.y1fd{bottom:600.764850px;}
.y6e{bottom:601.336200px;}
.y29{bottom:602.988450px;}
.y12{bottom:606.348450px;}
.yfd{bottom:607.685700px;}
.y127{bottom:607.744950px;}
.y8c{bottom:607.760250px;}
.y15b{bottom:607.924950px;}
.y4f{bottom:608.732400px;}
.y285{bottom:610.464900px;}
.y245{bottom:613.137900px;}
.y194{bottom:614.144850px;}
.y178{bottom:614.309850px;}
.y1d2{bottom:616.229850px;}
.y54{bottom:617.866200px;}
.y1fc{bottom:618.899850px;}
.y6d{bottom:621.196200px;}
.y28{bottom:621.828450px;}
.y4e{bottom:622.232400px;}
.y284{bottom:624.288900px;}
.y11{bottom:624.348450px;}
.y126{bottom:625.759950px;}
.y8b{bottom:625.775250px;}
.y15a{bottom:625.939950px;}
.ybf{bottom:625.955250px;}
.yfc{bottom:626.356200px;}
.y244{bottom:627.015900px;}
.y1d1{bottom:634.574850px;}
.y4d{bottom:635.732400px;}
.y1fb{bottom:637.034850px;}
.y27{bottom:640.668450px;}
.y6c{bottom:641.056200px;}
.y10{bottom:642.348450px;}
.y283{bottom:642.365400px;}
.y125{bottom:643.774950px;}
.y8a{bottom:643.790250px;}
.y159{bottom:643.954950px;}
.ybe{bottom:643.970250px;}
.yfb{bottom:645.026700px;}
.y243{bottom:645.146400px;}
.y4c{bottom:649.232400px;}
.y1c3{bottom:651.559650px;}
.y1d0{bottom:652.919850px;}
.y53{bottom:654.046200px;}
.y1fa{bottom:655.169850px;}
.y282{bottom:656.189400px;}
.y242{bottom:659.024400px;}
.y26{bottom:659.508450px;}
.yf{bottom:660.348450px;}
.y6b{bottom:660.916200px;}
.y124{bottom:661.789950px;}
.y89{bottom:661.805250px;}
.y158{bottom:661.969950px;}
.ybd{bottom:661.985250px;}
.y4b{bottom:662.732400px;}
.yfa{bottom:663.697200px;}
.y281{bottom:670.013400px;}
.y1c2{bottom:670.230150px;}
.y1cf{bottom:671.264850px;}
.y241{bottom:672.902400px;}
.y1f9{bottom:673.304850px;}
.ye{bottom:678.348450px;}
.y123{bottom:679.804950px;}
.y88{bottom:679.820250px;}
.y157{bottom:679.984950px;}
.ybc{bottom:680.000250px;}
.y4a{bottom:680.480400px;}
.y6a{bottom:680.776200px;}
.yf9{bottom:682.367700px;}
.y280{bottom:683.837400px;}
.y240{bottom:686.780400px;}
.y70{bottom:688.581300px;}
.y1c1{bottom:688.900650px;}
.y1ce{bottom:689.609850px;}
.y1f8{bottom:691.439850px;}
.y122{bottom:697.819950px;}
.y87{bottom:697.835250px;}
.y156{bottom:697.999950px;}
.ybb{bottom:698.015250px;}
.y69{bottom:700.636200px;}
.y23f{bottom:700.658400px;}
.y27f{bottom:701.913900px;}
.yf8{bottom:703.211100px;}
.y1c0{bottom:707.571150px;}
.y1cd{bottom:707.954850px;}
.y1f7{bottom:709.574850px;}
.y23e{bottom:714.536400px;}
.y27e{bottom:715.737900px;}
.y121{bottom:715.834950px;}
.y86{bottom:715.850250px;}
.y155{bottom:716.014950px;}
.yba{bottom:716.030250px;}
.y68{bottom:720.496200px;}
.y1bf{bottom:726.241650px;}
.y1cc{bottom:726.299850px;}
.y1f6{bottom:727.709850px;}
.y27d{bottom:729.561900px;}
.y23d{bottom:732.666900px;}
.y120{bottom:733.849950px;}
.y85{bottom:733.865250px;}
.y154{bottom:734.029950px;}
.yb9{bottom:734.045250px;}
.y49{bottom:734.748000px;}
.yf7{bottom:739.742100px;}
.y67{bottom:740.356200px;}
.y27c{bottom:743.385900px;}
.y1cb{bottom:744.644850px;}
.y1be{bottom:744.912150px;}
.y48{bottom:745.548000px;}
.y1f5{bottom:745.844850px;}
.y23c{bottom:746.544900px;}
.y11f{bottom:751.864950px;}
.y84{bottom:751.880250px;}
.y153{bottom:752.044950px;}
.yb8{bottom:752.060250px;}
.y45{bottom:752.868000px;}
.y47{bottom:756.348000px;}
.y27b{bottom:757.209900px;}
.yf6{bottom:758.412600px;}
.y66{bottom:760.216200px;}
.y23b{bottom:760.422900px;}
.y1ca{bottom:762.989850px;}
.y1bd{bottom:763.582650px;}
.y1f4{bottom:763.979850px;}
.y44{bottom:766.368000px;}
.y46{bottom:767.148000px;}
.y11e{bottom:769.879950px;}
.y83{bottom:769.895250px;}
.y152{bottom:770.059950px;}
.yb7{bottom:770.075250px;}
.y23a{bottom:774.300900px;}
.y27a{bottom:775.286400px;}
.yf5{bottom:777.083100px;}
.y43{bottom:779.868000px;}
.y65{bottom:780.076200px;}
.y1c9{bottom:781.334850px;}
.y1f3{bottom:782.114850px;}
.y1bc{bottom:782.253150px;}
.y11d{bottom:787.894950px;}
.y82{bottom:787.910250px;}
.y151{bottom:788.074950px;}
.yb6{bottom:788.090250px;}
.y279{bottom:789.110400px;}
.y239{bottom:792.431400px;}
.y42{bottom:793.368000px;}
.yf4{bottom:795.753600px;}
.y1c8{bottom:799.679850px;}
.y64{bottom:799.936200px;}
.y1f2{bottom:800.249850px;}
.y1bb{bottom:800.923650px;}
.y278{bottom:802.934400px;}
.y11c{bottom:805.909950px;}
.y81{bottom:805.925250px;}
.y150{bottom:806.089950px;}
.yb5{bottom:806.105250px;}
.y238{bottom:806.309400px;}
.yf3{bottom:814.424100px;}
.y41{bottom:815.346000px;}
.y1c7{bottom:818.024850px;}
.y1f1{bottom:818.384850px;}
.y1ba{bottom:819.594150px;}
.y63{bottom:819.796200px;}
.y237{bottom:820.187400px;}
.y277{bottom:821.010900px;}
.y11b{bottom:823.924950px;}
.y80{bottom:823.940250px;}
.y14f{bottom:824.104950px;}
.yb4{bottom:824.120250px;}
.y40{bottom:828.846000px;}
.yf2{bottom:833.094600px;}
.y236{bottom:834.065400px;}
.y276{bottom:834.834900px;}
.y1c6{bottom:836.369850px;}
.y1f0{bottom:836.519850px;}
.y1b9{bottom:838.264650px;}
.y62{bottom:839.656200px;}
.y11a{bottom:841.939950px;}
.y7f{bottom:841.955250px;}
.y14e{bottom:842.119950px;}
.yb3{bottom:842.135250px;}
.y275{bottom:848.658900px;}
.yf1{bottom:851.765100px;}
.y235{bottom:852.195900px;}
.y1ef{bottom:854.654850px;}
.y1c5{bottom:854.714850px;}
.y1b8{bottom:856.935150px;}
.y61{bottom:859.516200px;}
.y119{bottom:859.954950px;}
.y7e{bottom:859.970250px;}
.y14d{bottom:860.134950px;}
.yb2{bottom:860.150250px;}
.y234{bottom:866.073900px;}
.y274{bottom:866.735400px;}
.y3f{bottom:867.847500px;}
.yf0{bottom:870.435600px;}
.y1ee{bottom:872.789850px;}
.y1c4{bottom:873.059850px;}
.y1b7{bottom:875.605650px;}
.y118{bottom:877.969950px;}
.y7d{bottom:877.985250px;}
.y14c{bottom:878.149950px;}
.yb1{bottom:878.165250px;}
.y60{bottom:879.376200px;}
.y233{bottom:879.951900px;}
.y273{bottom:880.559400px;}
.y3e{bottom:881.347500px;}
.yef{bottom:889.106100px;}
.y1b6{bottom:894.276150px;}
.y272{bottom:894.383400px;}
.y3d{bottom:894.847500px;}
.y117{bottom:895.984950px;}
.y7c{bottom:896.000250px;}
.y14b{bottom:896.164950px;}
.yb0{bottom:896.180250px;}
.y232{bottom:898.082400px;}
.y5f{bottom:899.236200px;}
.yee{bottom:907.776600px;}
.y271{bottom:908.207400px;}
.y3c{bottom:908.347500px;}
.y224{bottom:910.246650px;}
.y231{bottom:911.960400px;}
.y1b5{bottom:912.946650px;}
.y116{bottom:913.999950px;}
.y7b{bottom:914.015250px;}
.y14a{bottom:914.179950px;}
.yaf{bottom:914.195250px;}
.y2af{bottom:915.740400px;}
.y5e{bottom:919.096200px;}
.y230{bottom:925.838400px;}
.y270{bottom:926.283900px;}
.yed{bottom:926.447100px;}
.y223{bottom:928.917150px;}
.y2ae{bottom:929.240400px;}
.y1b4{bottom:931.617150px;}
.y115{bottom:932.014950px;}
.y7a{bottom:932.030250px;}
.y149{bottom:932.194950px;}
.yae{bottom:932.210250px;}
.y5d{bottom:938.956200px;}
.y22f{bottom:939.716400px;}
.y26f{bottom:940.107900px;}
.y2ad{bottom:942.740400px;}
.yec{bottom:945.117600px;}
.y222{bottom:947.587650px;}
.y114{bottom:950.029950px;}
.y79{bottom:950.045250px;}
.y148{bottom:950.209950px;}
.yad{bottom:950.225250px;}
.y1b3{bottom:950.287650px;}
.y26e{bottom:953.931900px;}
.y2ac{bottom:956.240400px;}
.y22e{bottom:957.846900px;}
.y5c{bottom:958.816200px;}
.y5{bottom:960.992100px;}
.yeb{bottom:963.788100px;}
.y221{bottom:966.258150px;}
.y113{bottom:968.044950px;}
.y78{bottom:968.060250px;}
.y147{bottom:968.224950px;}
.yac{bottom:968.240250px;}
.y1b2{bottom:968.958150px;}
.y22d{bottom:971.724900px;}
.y26d{bottom:972.008400px;}
.y2ab{bottom:973.992900px;}
.y5b{bottom:978.676200px;}
.y4{bottom:978.990000px;}
.yea{bottom:982.458600px;}
.y220{bottom:984.928650px;}
.y22c{bottom:985.602900px;}
.y26c{bottom:985.832400px;}
.y112{bottom:986.059950px;}
.y77{bottom:986.075250px;}
.y146{bottom:986.239950px;}
.yab{bottom:986.255250px;}
.y2aa{bottom:987.492900px;}
.y1b1{bottom:987.628650px;}
.y5a{bottom:998.536200px;}
.y26b{bottom:999.656400px;}
.y2a9{bottom:1000.992900px;}
.ye9{bottom:1001.129100px;}
.y21f{bottom:1003.599150px;}
.y22b{bottom:1003.733400px;}
.y111{bottom:1004.074950px;}
.y76{bottom:1004.090250px;}
.y145{bottom:1004.254950px;}
.y1b0{bottom:1006.299150px;}
.y26a{bottom:1013.480400px;}
.y3{bottom:1014.000000px;}
.y2a8{bottom:1014.492900px;}
.y22a{bottom:1017.611400px;}
.y59{bottom:1018.396200px;}
.ye8{bottom:1019.799600px;}
.y110{bottom:1022.089950px;}
.y75{bottom:1022.105250px;}
.y21d{bottom:1022.269650px;}
.y144{bottom:1022.269950px;}
.yaa{bottom:1022.270250px;}
.y1af{bottom:1024.969650px;}
.y269{bottom:1027.304400px;}
.y2b0{bottom:1027.992900px;}
.y21c{bottom:1030.369650px;}
.y229{bottom:1031.489400px;}
.y2a7{bottom:1032.245400px;}
.y58{bottom:1038.256200px;}
.y21e{bottom:1038.469650px;}
.ye7{bottom:1038.470100px;}
.y10f{bottom:1040.104950px;}
.y143{bottom:1040.284950px;}
.ya9{bottom:1040.285250px;}
.y228{bottom:1045.367400px;}
.y268{bottom:1045.380900px;}
.y1ae{bottom:1045.744650px;}
.y2a6{bottom:1045.745400px;}
.y2{bottom:1049.007900px;}
.y57{bottom:1058.116200px;}
.y10e{bottom:1058.119950px;}
.y74{bottom:1058.120250px;}
.y142{bottom:1058.299950px;}
.ya8{bottom:1058.300250px;}
.y267{bottom:1059.204900px;}
.y1ad{bottom:1059.244650px;}
.ye6{bottom:1059.244950px;}
.y227{bottom:1059.245400px;}
.y21b{bottom:1059.376050px;}
.y1{bottom:1079.007900px;}
.y176{bottom:1106.016300px;}
.ydb{bottom:1106.016750px;}
.y51{bottom:1106.016900px;}
.y225{bottom:1106.017050px;}
.h9{height:26.316000px;}
.hc{height:32.929688px;}
.ha{height:34.218750px;}
.h5{height:37.045898px;}
.he{height:38.496094px;}
.hd{height:42.773438px;}
.hb{height:42.937500px;}
.h8{height:48.304688px;}
.h6{height:48.436523px;}
.h3{height:53.671875px;}
.h7{height:53.818359px;}
.h4{height:57.378712px;}
.h2{height:68.437500px;}
.hf{height:80.836523px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:74.408250px;}
.x1a{left:93.816750px;}
.x7{left:95.698650px;}
.x1{left:138.032850px;}
.x12{left:147.954750px;}
.xd{left:157.275300px;}
.x16{left:159.707250px;}
.x2{left:169.736850px;}
.x8{left:197.363550px;}
.x4{left:210.581250px;}
.xb{left:214.724400px;}
.xf{left:221.624400px;}
.x1b{left:225.876750px;}
.xc{left:236.121900px;}
.x19{left:257.787750px;}
.x18{left:261.864750px;}
.x5{left:306.260550px;}
.x11{left:313.073250px;}
.x10{left:317.177250px;}
.x15{left:324.299250px;}
.x14{left:328.389750px;}
.x1c{left:344.987250px;}
.x13{left:427.350750px;}
.x3{left:438.956250px;}
.x9{left:457.268550px;}
.x1e{left:458.967750px;}
.xe{left:465.803100px;}
.xa{left:478.613550px;}
.x1d{left:480.729750px;}
.x20{left:557.936250px;}
.x1f{left:560.217750px;}
.x17{left:592.119450px;}
.x22{left:620.184750px;}
.x21{left:626.678250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.607467pt;}
.v2{vertical-align:28.800000pt;}
.ls40{letter-spacing:-12.000000pt;}
.ls36{letter-spacing:-8.676000pt;}
.ls37{letter-spacing:-7.344000pt;}
.ls30{letter-spacing:-7.236000pt;}
.ls20{letter-spacing:-6.880000pt;}
.ls3f{letter-spacing:-6.560000pt;}
.ls3e{letter-spacing:-6.506667pt;}
.ls1e{letter-spacing:-6.133333pt;}
.ls21{letter-spacing:-3.946667pt;}
.ls1f{letter-spacing:-3.626667pt;}
.ls2e{letter-spacing:-1.200000pt;}
.ls39{letter-spacing:-0.373333pt;}
.ls46{letter-spacing:-0.266667pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.000533pt;}
.ls31{letter-spacing:0.008000pt;}
.ls38{letter-spacing:0.048000pt;}
.ls1d{letter-spacing:0.053333pt;}
.ls23{letter-spacing:0.072000pt;}
.ls2f{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.103467pt;}
.ls10{letter-spacing:0.106667pt;}
.ls57{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.213333pt;}
.ls54{letter-spacing:0.240000pt;}
.ls28{letter-spacing:0.266667pt;}
.ls4c{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls53{letter-spacing:0.336000pt;}
.ls2{letter-spacing:0.373333pt;}
.ls52{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.426667pt;}
.ls5d{letter-spacing:0.432000pt;}
.lsc{letter-spacing:0.480000pt;}
.ls19{letter-spacing:0.528000pt;}
.ls29{letter-spacing:0.533333pt;}
.ls4e{letter-spacing:0.576000pt;}
.ls12{letter-spacing:0.586667pt;}
.ls4f{letter-spacing:0.624000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls50{letter-spacing:0.672000pt;}
.ls27{letter-spacing:0.693333pt;}
.ls1a{letter-spacing:0.720000pt;}
.ls15{letter-spacing:0.746667pt;}
.ls2c{letter-spacing:0.768000pt;}
.ls16{letter-spacing:0.800000pt;}
.ls4d{letter-spacing:0.813867pt;}
.ls2d{letter-spacing:0.816000pt;}
.ls0{letter-spacing:0.853333pt;}
.ls51{letter-spacing:0.864000pt;}
.ls33{letter-spacing:0.906667pt;}
.ls5e{letter-spacing:0.912000pt;}
.lsd{letter-spacing:0.960000pt;}
.ls5f{letter-spacing:1.008000pt;}
.ls11{letter-spacing:1.013333pt;}
.ls58{letter-spacing:1.056000pt;}
.lsb{letter-spacing:1.066667pt;}
.ls60{letter-spacing:1.104000pt;}
.ls7{letter-spacing:1.120000pt;}
.ls55{letter-spacing:1.152000pt;}
.ls6{letter-spacing:1.173333pt;}
.ls5b{letter-spacing:1.200000pt;}
.lse{letter-spacing:1.226667pt;}
.ls56{letter-spacing:1.248000pt;}
.ls35{letter-spacing:1.280000pt;}
.ls5a{letter-spacing:1.296000pt;}
.ls14{letter-spacing:1.333333pt;}
.ls62{letter-spacing:1.344000pt;}
.ls34{letter-spacing:1.386667pt;}
.ls66{letter-spacing:1.392000pt;}
.ls26{letter-spacing:1.440000pt;}
.ls63{letter-spacing:1.488000pt;}
.ls8{letter-spacing:1.493333pt;}
.ls5c{letter-spacing:1.536000pt;}
.ls17{letter-spacing:1.546667pt;}
.ls24{letter-spacing:1.600000pt;}
.ls61{letter-spacing:1.632000pt;}
.ls47{letter-spacing:1.653333pt;}
.lsa{letter-spacing:1.706667pt;}
.ls1c{letter-spacing:1.760000pt;}
.ls65{letter-spacing:1.776000pt;}
.ls45{letter-spacing:1.813333pt;}
.ls67{letter-spacing:1.824000pt;}
.ls32{letter-spacing:1.866667pt;}
.ls4b{letter-spacing:1.872000pt;}
.ls44{letter-spacing:1.920000pt;}
.ls59{letter-spacing:1.968000pt;}
.ls42{letter-spacing:1.973333pt;}
.ls64{letter-spacing:2.016000pt;}
.ls13{letter-spacing:2.080000pt;}
.ls2a{letter-spacing:2.133333pt;}
.ls3{letter-spacing:2.506667pt;}
.ls43{letter-spacing:2.773333pt;}
.ls41{letter-spacing:2.933333pt;}
.ls4{letter-spacing:3.200000pt;}
.ls3a{letter-spacing:191.472000pt;}
.ls3b{letter-spacing:341.088000pt;}
.ls3d{letter-spacing:350.016000pt;}
.ls48{letter-spacing:362.688000pt;}
.ls4a{letter-spacing:367.344000pt;}
.ls3c{letter-spacing:377.088000pt;}
.ls49{letter-spacing:406.416000pt;}
.ws9{word-spacing:-56.533333pt;}
.ws5d{word-spacing:-56.106667pt;}
.ws8{word-spacing:-55.840000pt;}
.ws37{word-spacing:-55.466667pt;}
.ws20{word-spacing:-55.413333pt;}
.ws5c{word-spacing:-55.306667pt;}
.ws5e{word-spacing:-55.253333pt;}
.ws3d{word-spacing:-55.200000pt;}
.ws10{word-spacing:-55.093333pt;}
.ws3c{word-spacing:-55.040000pt;}
.ws31{word-spacing:-54.933333pt;}
.ws26{word-spacing:-54.880000pt;}
.wsd{word-spacing:-54.826667pt;}
.ws33{word-spacing:-54.773333pt;}
.ws43{word-spacing:-54.720000pt;}
.ws21{word-spacing:-54.666667pt;}
.ws42{word-spacing:-54.613333pt;}
.ws14{word-spacing:-54.560000pt;}
.wsb{word-spacing:-54.506667pt;}
.wsc{word-spacing:-54.453333pt;}
.ws11{word-spacing:-54.400000pt;}
.ws1b{word-spacing:-54.346667pt;}
.ws13{word-spacing:-54.293333pt;}
.ws3e{word-spacing:-54.240000pt;}
.ws3{word-spacing:-54.186667pt;}
.ws25{word-spacing:-54.133333pt;}
.ws22{word-spacing:-54.080000pt;}
.ws34{word-spacing:-54.026667pt;}
.wsa{word-spacing:-53.973333pt;}
.ws1f{word-spacing:-53.920000pt;}
.ws36{word-spacing:-53.866667pt;}
.ws12{word-spacing:-53.813333pt;}
.ws3f{word-spacing:-53.760000pt;}
.ws5{word-spacing:-53.706667pt;}
.ws44{word-spacing:-53.653333pt;}
.ws35{word-spacing:-53.600000pt;}
.ws32{word-spacing:-53.546667pt;}
.ws4{word-spacing:-53.493333pt;}
.ws18{word-spacing:-53.440000pt;}
.ws1d{word-spacing:-53.386667pt;}
.ws7{word-spacing:-53.333333pt;}
.ws97{word-spacing:-50.016000pt;}
.ws89{word-spacing:-49.968000pt;}
.ws75{word-spacing:-49.872000pt;}
.ws9a{word-spacing:-49.824000pt;}
.ws98{word-spacing:-49.776000pt;}
.ws94{word-spacing:-49.632000pt;}
.ws8e{word-spacing:-49.536000pt;}
.ws96{word-spacing:-49.488000pt;}
.ws87{word-spacing:-49.440000pt;}
.ws99{word-spacing:-49.392000pt;}
.ws95{word-spacing:-49.344000pt;}
.ws8c{word-spacing:-49.296000pt;}
.ws83{word-spacing:-49.248000pt;}
.ws8d{word-spacing:-49.200000pt;}
.ws79{word-spacing:-49.152000pt;}
.ws93{word-spacing:-49.104000pt;}
.ws88{word-spacing:-49.056000pt;}
.ws92{word-spacing:-49.008000pt;}
.ws77{word-spacing:-48.960000pt;}
.ws90{word-spacing:-48.912000pt;}
.ws7c{word-spacing:-48.864000pt;}
.ws38{word-spacing:-48.768000pt;}
.ws2b{word-spacing:-48.720000pt;}
.ws7b{word-spacing:-48.672000pt;}
.ws7a{word-spacing:-48.624000pt;}
.ws78{word-spacing:-48.576000pt;}
.ws8b{word-spacing:-48.528000pt;}
.ws7d{word-spacing:-48.480000pt;}
.ws8f{word-spacing:-48.432000pt;}
.ws7e{word-spacing:-48.384000pt;}
.ws81{word-spacing:-48.336000pt;}
.ws76{word-spacing:-48.288000pt;}
.ws82{word-spacing:-48.240000pt;}
.ws29{word-spacing:-48.192000pt;}
.ws86{word-spacing:-48.144000pt;}
.ws8a{word-spacing:-48.096000pt;}
.ws7f{word-spacing:-48.048000pt;}
.ws1{word-spacing:-48.000000pt;}
.ws62{word-spacing:-17.232000pt;}
.ws47{word-spacing:-15.120000pt;}
.wsf{word-spacing:-15.040000pt;}
.ws5f{word-spacing:-14.880000pt;}
.ws15{word-spacing:-14.560000pt;}
.ws40{word-spacing:-14.506667pt;}
.ws1a{word-spacing:-14.346667pt;}
.ws41{word-spacing:-14.186667pt;}
.ws23{word-spacing:-14.080000pt;}
.ws61{word-spacing:-14.026667pt;}
.ws17{word-spacing:-13.813333pt;}
.ws16{word-spacing:-13.760000pt;}
.ws6{word-spacing:-13.706667pt;}
.wse{word-spacing:-13.653333pt;}
.ws19{word-spacing:-13.440000pt;}
.ws1e{word-spacing:-13.386667pt;}
.ws1c{word-spacing:-13.333333pt;}
.ws80{word-spacing:-12.720000pt;}
.ws2a{word-spacing:-12.528000pt;}
.ws91{word-spacing:-12.240000pt;}
.ws2c{word-spacing:-12.192000pt;}
.ws2f{word-spacing:-12.096000pt;}
.ws3a{word-spacing:-12.000000pt;}
.ws24{word-spacing:-9.706667pt;}
.ws28{word-spacing:-9.386667pt;}
.ws0{word-spacing:-9.333333pt;}
.ws2e{word-spacing:-9.072000pt;}
.ws2{word-spacing:-8.400000pt;}
.ws27{word-spacing:-6.453333pt;}
.ws46{word-spacing:-4.704000pt;}
.ws2d{word-spacing:0.000000pt;}
.ws30{word-spacing:5.544000pt;}
.ws3b{word-spacing:5.687733pt;}
.ws39{word-spacing:8.352000pt;}
.ws63{word-spacing:9.696000pt;}
.ws60{word-spacing:46.293333pt;}
.ws4a{word-spacing:75.072000pt;}
.ws4c{word-spacing:78.624000pt;}
.ws48{word-spacing:93.072000pt;}
.ws4d{word-spacing:99.072000pt;}
.ws5b{word-spacing:104.256000pt;}
.ws64{word-spacing:113.952000pt;}
.ws6d{word-spacing:119.136000pt;}
.ws4e{word-spacing:129.072000pt;}
.ws69{word-spacing:129.888000pt;}
.ws4f{word-spacing:133.920000pt;}
.ws66{word-spacing:139.728000pt;}
.ws56{word-spacing:140.400000pt;}
.ws73{word-spacing:147.600000pt;}
.ws67{word-spacing:151.728000pt;}
.ws50{word-spacing:162.288000pt;}
.ws6c{word-spacing:167.232000pt;}
.ws5a{word-spacing:170.400000pt;}
.ws4b{word-spacing:176.400000pt;}
.ws74{word-spacing:179.040000pt;}
.ws72{word-spacing:191.808000pt;}
.ws6e{word-spacing:193.728000pt;}
.ws53{word-spacing:195.744000pt;}
.ws58{word-spacing:206.400000pt;}
.ws52{word-spacing:213.072000pt;}
.ws84{word-spacing:215.952000pt;}
.ws51{word-spacing:219.072000pt;}
.ws6f{word-spacing:227.808000pt;}
.ws71{word-spacing:229.728000pt;}
.ws85{word-spacing:239.952000pt;}
.ws68{word-spacing:258.096000pt;}
.ws55{word-spacing:261.072000pt;}
.ws6a{word-spacing:290.400000pt;}
.ws54{word-spacing:293.088000pt;}
.ws6b{word-spacing:317.184000pt;}
.ws59{word-spacing:329.088000pt;}
.ws70{word-spacing:371.136000pt;}
.ws57{word-spacing:372.336000pt;}
.ws45{word-spacing:483.264000pt;}
.ws65{word-spacing:519.696000pt;}
.ws49{word-spacing:523.536000pt;}
._e{margin-left:-7.808000pt;}
._2{margin-left:-6.826667pt;}
._a{margin-left:-5.685333pt;}
._5{margin-left:-4.535467pt;}
._3{margin-left:-3.614933pt;}
._0{margin-left:-2.133333pt;}
._1{margin-left:-0.938667pt;}
._6{width:1.493333pt;}
._7{width:2.453333pt;}
._8{width:3.573333pt;}
._9{width:4.618667pt;}
._f{width:5.546667pt;}
._4{width:7.632000pt;}
._16{width:31.370667pt;}
._34{width:32.714667pt;}
._10{width:34.682667pt;}
._15{width:39.386667pt;}
._33{width:46.058667pt;}
._44{width:54.458667pt;}
._37{width:66.960000pt;}
._13{width:68.784000pt;}
._38{width:72.698667pt;}
._14{width:74.042667pt;}
._11{width:80.651733pt;}
._47{width:95.973333pt;}
._4a{width:136.826667pt;}
._3c{width:164.400000pt;}
._45{width:170.608000pt;}
._21{width:171.744000pt;}
._35{width:174.887467pt;}
._46{width:176.832000pt;}
._26{width:177.738667pt;}
._36{width:179.520000pt;}
._39{width:182.400000pt;}
._19{width:183.744000pt;}
._22{width:185.088000pt;}
._12{width:196.800000pt;}
._31{width:201.072000pt;}
._49{width:204.698667pt;}
._20{width:206.400000pt;}
._2d{width:207.744000pt;}
._1a{width:209.088000pt;}
._17{width:210.576000pt;}
._18{width:218.400000pt;}
._28{width:221.616000pt;}
._59{width:224.613333pt;}
._48{width:228.986667pt;}
._30{width:231.482667pt;}
._2c{width:242.400000pt;}
._1c{width:243.744000pt;}
._1d{width:245.088000pt;}
._5e{width:247.728000pt;}
._61{width:250.826667pt;}
._63{width:251.717333pt;}
._2e{width:257.088000pt;}
._51{width:269.184000pt;}
._1b{width:278.138667pt;}
._4c{width:281.184000pt;}
._41{width:283.584000pt;}
._3a{width:286.154667pt;}
._55{width:287.184000pt;}
._32{width:293.088000pt;}
._52{width:305.546667pt;}
._50{width:307.536000pt;}
._4d{width:309.482667pt;}
._57{width:316.154667pt;}
._3d{width:323.301333pt;}
._54{width:325.536000pt;}
._4b{width:327.168000pt;}
._56{width:331.845333pt;}
._29{width:333.552000pt;}
._4e{width:341.994667pt;}
._53{width:342.890667pt;}
._58{width:344.688000pt;}
._43{width:350.016000pt;}
._1e{width:357.072000pt;}
._23{width:359.402667pt;}
._3e{width:360.549333pt;}
._5a{width:368.688000pt;}
._2a{width:370.896000pt;}
._40{width:377.808000pt;}
._5c{width:384.218667pt;}
._3f{width:388.826667pt;}
._60{width:391.584000pt;}
._24{width:396.746667pt;}
._4f{width:401.546667pt;}
._5d{width:406.821333pt;}
._5b{width:412.154667pt;}
._62{width:414.026667pt;}
._2b{width:420.074667pt;}
._2f{width:430.250667pt;}
._3b{width:433.056000pt;}
._25{width:454.010667pt;}
._1f{width:455.402667pt;}
._5f{width:459.770667pt;}
._42{width:463.658667pt;}
._27{width:466.010667pt;}
._64{width:705.888000pt;}
._b{width:1474.992000pt;}
._d{width:1485.690400pt;}
._c{width:2178.768000pt;}
.fs4{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs2{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:66.141733pt;}
.y177{bottom:66.145600pt;}
.ydc{bottom:66.146000pt;}
.y52{bottom:66.146133pt;}
.y226{bottom:66.146267pt;}
.yd{bottom:104.899333pt;}
.y1ed{bottom:107.479867pt;}
.y1ac{bottom:107.506533pt;}
.y193{bottom:107.573200pt;}
.y266{bottom:107.683467pt;}
.y73{bottom:107.716933pt;}
.y21a{bottom:107.835600pt;}
.y2a5{bottom:107.839467pt;}
.y141{bottom:107.871067pt;}
.ya7{bottom:107.871333pt;}
.y175{bottom:108.031067pt;}
.yda{bottom:108.044667pt;}
.ye5{bottom:113.518133pt;}
.yc{bottom:118.783333pt;}
.y72{bottom:119.716933pt;}
.y219{bottom:119.943600pt;}
.y265{bottom:120.019467pt;}
.y2a4{bottom:120.127467pt;}
.y1ab{bottom:123.773200pt;}
.y1ec{bottom:123.786533pt;}
.y192{bottom:123.813200pt;}
.y140{bottom:123.884400pt;}
.ya6{bottom:123.884667pt;}
.y174{bottom:124.044400pt;}
.yd9{bottom:124.058000pt;}
.ye4{bottom:129.518133pt;}
.yb{bottom:130.783333pt;}
.y71{bottom:131.716933pt;}
.y2a3{bottom:132.415467pt;}
.y218{bottom:135.831600pt;}
.y264{bottom:136.135467pt;}
.y13f{bottom:139.897733pt;}
.ya5{bottom:139.898000pt;}
.y1aa{bottom:140.039867pt;}
.y191{bottom:140.053200pt;}
.y173{bottom:140.057733pt;}
.yd8{bottom:140.071333pt;}
.y1eb{bottom:140.093200pt;}
.ya{bottom:144.667333pt;}
.y2a2{bottom:144.703467pt;}
.ye3{bottom:145.518133pt;}
.y217{bottom:147.939600pt;}
.y263{bottom:148.471467pt;}
.y13e{bottom:155.911067pt;}
.ya4{bottom:155.911333pt;}
.y172{bottom:156.071067pt;}
.yd7{bottom:156.084667pt;}
.y190{bottom:156.293200pt;}
.y1a9{bottom:156.306533pt;}
.y1ea{bottom:156.399867pt;}
.y9{bottom:156.667333pt;}
.y216{bottom:160.047600pt;}
.y2a1{bottom:160.771467pt;}
.y262{bottom:160.807467pt;}
.ye2{bottom:161.518133pt;}
.y8{bottom:170.551333pt;}
.y13d{bottom:171.924400pt;}
.ya3{bottom:171.924667pt;}
.y171{bottom:172.084400pt;}
.yd6{bottom:172.098000pt;}
.y215{bottom:172.155600pt;}
.y18f{bottom:172.533200pt;}
.y1a8{bottom:172.573200pt;}
.y1e9{bottom:172.706533pt;}
.y2a0{bottom:173.059467pt;}
.y261{bottom:176.923467pt;}
.ye1{bottom:177.518133pt;}
.y7{bottom:182.551333pt;}
.y214{bottom:184.263600pt;}
.y29f{bottom:185.347467pt;}
.y13c{bottom:187.937733pt;}
.ya2{bottom:187.938000pt;}
.y170{bottom:188.097733pt;}
.yd5{bottom:188.111333pt;}
.y18e{bottom:188.773200pt;}
.y1a7{bottom:188.839867pt;}
.y1e8{bottom:189.013200pt;}
.y260{bottom:189.259467pt;}
.ye0{bottom:193.518133pt;}
.y213{bottom:200.151600pt;}
.y29e{bottom:201.415467pt;}
.y25f{bottom:201.595467pt;}
.y13b{bottom:203.951067pt;}
.ya1{bottom:203.951333pt;}
.y16f{bottom:204.111067pt;}
.yd4{bottom:204.124667pt;}
.y18d{bottom:205.013200pt;}
.y1a6{bottom:205.106533pt;}
.y1e7{bottom:205.319867pt;}
.ydf{bottom:209.518133pt;}
.y212{bottom:212.259600pt;}
.y29d{bottom:213.703467pt;}
.y25e{bottom:213.931467pt;}
.y13a{bottom:219.964400pt;}
.ya0{bottom:219.964667pt;}
.y16e{bottom:220.124400pt;}
.yd3{bottom:220.138000pt;}
.y18c{bottom:221.253200pt;}
.y1a5{bottom:221.373200pt;}
.y1e6{bottom:221.626533pt;}
.y211{bottom:224.367600pt;}
.yde{bottom:225.518133pt;}
.y29c{bottom:229.771467pt;}
.y25d{bottom:230.047467pt;}
.y3b{bottom:234.549733pt;}
.y25{bottom:234.976400pt;}
.y139{bottom:235.977733pt;}
.y9f{bottom:235.978000pt;}
.y16d{bottom:236.137733pt;}
.yd2{bottom:236.151333pt;}
.y18b{bottom:237.493200pt;}
.y1a4{bottom:237.639867pt;}
.y1e5{bottom:237.933200pt;}
.ydd{bottom:241.518133pt;}
.y29b{bottom:242.059467pt;}
.y25c{bottom:242.383467pt;}
.y210{bottom:248.259600pt;}
.y24{bottom:250.976400pt;}
.y3a{bottom:251.296400pt;}
.y138{bottom:251.991067pt;}
.y9e{bottom:251.991333pt;}
.y16c{bottom:252.151067pt;}
.yd1{bottom:252.164667pt;}
.y18a{bottom:253.733200pt;}
.y1a3{bottom:253.906533pt;}
.y1e4{bottom:254.239867pt;}
.y29a{bottom:254.347467pt;}
.y25b{bottom:254.719467pt;}
.y299{bottom:266.635467pt;}
.y23{bottom:266.976400pt;}
.y25a{bottom:267.055467pt;}
.y137{bottom:268.004400pt;}
.y9d{bottom:268.004667pt;}
.y39{bottom:268.043067pt;}
.y16b{bottom:268.164400pt;}
.yd0{bottom:268.178000pt;}
.y189{bottom:269.973200pt;}
.y1a2{bottom:270.173200pt;}
.y1e3{bottom:270.546533pt;}
.y10d{bottom:274.629067pt;}
.y298{bottom:282.703467pt;}
.y22{bottom:282.976400pt;}
.y259{bottom:283.171467pt;}
.y136{bottom:284.017733pt;}
.y9c{bottom:284.018000pt;}
.y16a{bottom:284.177733pt;}
.ycf{bottom:284.191333pt;}
.y38{bottom:284.789733pt;}
.y188{bottom:286.213200pt;}
.y1a1{bottom:286.439867pt;}
.y1e2{bottom:286.853200pt;}
.y10c{bottom:291.225067pt;}
.y20f{bottom:292.371600pt;}
.y297{bottom:294.991467pt;}
.y258{bottom:295.507467pt;}
.y21{bottom:298.976400pt;}
.y135{bottom:300.031067pt;}
.y9b{bottom:300.031333pt;}
.y169{bottom:300.191067pt;}
.yce{bottom:300.204667pt;}
.y37{bottom:301.536400pt;}
.y187{bottom:302.453200pt;}
.y1a0{bottom:302.706533pt;}
.y1e1{bottom:303.159867pt;}
.y20e{bottom:304.479600pt;}
.y296{bottom:307.279467pt;}
.y10b{bottom:307.821067pt;}
.y257{bottom:307.843467pt;}
.y20{bottom:314.976400pt;}
.y134{bottom:316.044400pt;}
.y9a{bottom:316.044667pt;}
.y168{bottom:316.204400pt;}
.ycd{bottom:316.218000pt;}
.y20d{bottom:316.587600pt;}
.y36{bottom:318.283067pt;}
.y186{bottom:318.693200pt;}
.y19f{bottom:318.973200pt;}
.y1e0{bottom:319.466533pt;}
.y295{bottom:319.567467pt;}
.y256{bottom:320.179467pt;}
.y10a{bottom:324.417067pt;}
.y20c{bottom:328.695600pt;}
.y1f{bottom:330.976400pt;}
.y133{bottom:332.057733pt;}
.y99{bottom:332.058000pt;}
.ycc{bottom:332.231333pt;}
.y255{bottom:332.515467pt;}
.y185{bottom:334.933200pt;}
.y35{bottom:335.029733pt;}
.y19e{bottom:335.239867pt;}
.y294{bottom:335.635467pt;}
.y1df{bottom:335.773200pt;}
.y20b{bottom:340.803600pt;}
.y109{bottom:341.013067pt;}
.y254{bottom:344.851467pt;}
.y1e{bottom:346.976400pt;}
.y293{bottom:347.923467pt;}
.y132{bottom:348.071067pt;}
.y98{bottom:348.071333pt;}
.y167{bottom:348.217733pt;}
.ycb{bottom:348.244667pt;}
.y184{bottom:351.173200pt;}
.y34{bottom:351.776400pt;}
.y1de{bottom:352.079867pt;}
.y20a{bottom:352.911600pt;}
.y253{bottom:357.187467pt;}
.y108{bottom:357.609067pt;}
.y292{bottom:360.211467pt;}
.y1d{bottom:362.976400pt;}
.y131{bottom:364.084400pt;}
.y97{bottom:364.084667pt;}
.y166{bottom:364.231067pt;}
.yca{bottom:364.258000pt;}
.y209{bottom:365.019600pt;}
.y183{bottom:367.413200pt;}
.y19d{bottom:367.506533pt;}
.y1dd{bottom:368.386533pt;}
.y33{bottom:368.523067pt;}
.y252{bottom:369.523467pt;}
.y107{bottom:374.205067pt;}
.y291{bottom:376.279467pt;}
.y208{bottom:377.127600pt;}
.y1c{bottom:378.976400pt;}
.y130{bottom:380.097733pt;}
.y96{bottom:380.098000pt;}
.y165{bottom:380.244400pt;}
.yc9{bottom:380.271333pt;}
.y182{bottom:383.653200pt;}
.y1dc{bottom:384.693200pt;}
.y32{bottom:385.269733pt;}
.y251{bottom:385.639467pt;}
.y290{bottom:388.567467pt;}
.y207{bottom:389.235600pt;}
.y106{bottom:390.801067pt;}
.y1b{bottom:394.976400pt;}
.y12f{bottom:396.111067pt;}
.y95{bottom:396.111333pt;}
.y164{bottom:396.257733pt;}
.yc8{bottom:396.284667pt;}
.y250{bottom:397.975467pt;}
.y181{bottom:399.893200pt;}
.y1db{bottom:400.999867pt;}
.y206{bottom:401.343600pt;}
.y31{bottom:402.016400pt;}
.y28f{bottom:404.635467pt;}
.y105{bottom:407.397067pt;}
.y24f{bottom:410.311467pt;}
.y1a{bottom:410.976400pt;}
.y12e{bottom:412.124400pt;}
.y94{bottom:412.124667pt;}
.y163{bottom:412.271067pt;}
.yc7{bottom:412.298000pt;}
.y205{bottom:413.451600pt;}
.y19c{bottom:415.773200pt;}
.y180{bottom:416.133200pt;}
.y28e{bottom:416.923467pt;}
.y1da{bottom:417.306533pt;}
.y30{bottom:418.763067pt;}
.y24e{bottom:422.647467pt;}
.y104{bottom:423.993067pt;}
.y204{bottom:425.559600pt;}
.y19{bottom:426.976400pt;}
.y93{bottom:428.138000pt;}
.y162{bottom:428.284400pt;}
.yc6{bottom:428.311333pt;}
.y19b{bottom:432.039867pt;}
.y17f{bottom:432.373200pt;}
.y28d{bottom:432.991467pt;}
.y1d9{bottom:433.613200pt;}
.y2f{bottom:435.509733pt;}
.y203{bottom:437.695600pt;}
.y24d{bottom:438.763467pt;}
.y103{bottom:440.589067pt;}
.y18{bottom:442.976400pt;}
.y12d{bottom:444.137733pt;}
.y92{bottom:444.151333pt;}
.y161{bottom:444.297733pt;}
.yc5{bottom:444.324667pt;}
.y28c{bottom:445.279467pt;}
.y19a{bottom:448.306533pt;}
.y17e{bottom:448.613200pt;}
.y202{bottom:449.803600pt;}
.y1d8{bottom:449.919867pt;}
.y24c{bottom:451.099467pt;}
.y2e{bottom:452.256400pt;}
.y102{bottom:457.185067pt;}
.y17{bottom:458.976400pt;}
.y12c{bottom:460.151067pt;}
.y91{bottom:460.164667pt;}
.y160{bottom:460.311067pt;}
.yc4{bottom:460.338000pt;}
.y28b{bottom:461.347467pt;}
.y201{bottom:461.911600pt;}
.y24b{bottom:463.435467pt;}
.y199{bottom:464.573200pt;}
.y17d{bottom:464.853200pt;}
.y1d7{bottom:466.226533pt;}
.y2d{bottom:469.003067pt;}
.y28a{bottom:473.635467pt;}
.y101{bottom:473.781067pt;}
.y200{bottom:474.019600pt;}
.y16{bottom:474.976400pt;}
.y24a{bottom:475.771467pt;}
.y12b{bottom:476.164400pt;}
.y90{bottom:476.178000pt;}
.y15f{bottom:476.324400pt;}
.yc3{bottom:476.351333pt;}
.y198{bottom:480.839867pt;}
.y17c{bottom:481.093200pt;}
.y1d6{bottom:482.533200pt;}
.y2c{bottom:485.749733pt;}
.y289{bottom:485.923467pt;}
.y1ff{bottom:486.127600pt;}
.y100{bottom:490.377067pt;}
.y15{bottom:490.976400pt;}
.y249{bottom:491.887467pt;}
.y12a{bottom:492.177733pt;}
.y8f{bottom:492.191333pt;}
.y15e{bottom:492.337733pt;}
.yc2{bottom:492.364667pt;}
.y197{bottom:497.106533pt;}
.y17b{bottom:497.333200pt;}
.y1fe{bottom:498.235600pt;}
.y1d5{bottom:498.839867pt;}
.y288{bottom:501.991467pt;}
.y2b{bottom:502.496400pt;}
.y248{bottom:504.223467pt;}
.yff{bottom:506.973067pt;}
.y14{bottom:506.976400pt;}
.y129{bottom:508.191067pt;}
.y8e{bottom:508.204667pt;}
.y15d{bottom:508.351067pt;}
.yc1{bottom:508.378000pt;}
.y196{bottom:513.373200pt;}
.y17a{bottom:513.573200pt;}
.y287{bottom:514.279467pt;}
.y1d4{bottom:515.146533pt;}
.y247{bottom:516.559467pt;}
.y6f{bottom:516.867733pt;}
.y56{bottom:516.894400pt;}
.y2a{bottom:519.243067pt;}
.y13{bottom:522.976400pt;}
.yfe{bottom:523.569067pt;}
.y128{bottom:524.204400pt;}
.y8d{bottom:524.218000pt;}
.y15c{bottom:524.364400pt;}
.yc0{bottom:524.391333pt;}
.y286{bottom:526.567467pt;}
.y50{bottom:529.095467pt;}
.y195{bottom:529.639867pt;}
.y179{bottom:529.813200pt;}
.y1d3{bottom:531.453200pt;}
.y246{bottom:532.675467pt;}
.y55{bottom:533.054400pt;}
.y1fd{bottom:534.013200pt;}
.y6e{bottom:534.521067pt;}
.y29{bottom:535.989733pt;}
.y12{bottom:538.976400pt;}
.yfd{bottom:540.165067pt;}
.y127{bottom:540.217733pt;}
.y8c{bottom:540.231333pt;}
.y15b{bottom:540.377733pt;}
.y4f{bottom:541.095467pt;}
.y285{bottom:542.635467pt;}
.y245{bottom:545.011467pt;}
.y194{bottom:545.906533pt;}
.y178{bottom:546.053200pt;}
.y1d2{bottom:547.759867pt;}
.y54{bottom:549.214400pt;}
.y1fc{bottom:550.133200pt;}
.y6d{bottom:552.174400pt;}
.y28{bottom:552.736400pt;}
.y4e{bottom:553.095467pt;}
.y284{bottom:554.923467pt;}
.y11{bottom:554.976400pt;}
.y126{bottom:556.231067pt;}
.y8b{bottom:556.244667pt;}
.y15a{bottom:556.391067pt;}
.ybf{bottom:556.404667pt;}
.yfc{bottom:556.761067pt;}
.y244{bottom:557.347467pt;}
.y1d1{bottom:564.066533pt;}
.y4d{bottom:565.095467pt;}
.y1fb{bottom:566.253200pt;}
.y27{bottom:569.483067pt;}
.y6c{bottom:569.827733pt;}
.y10{bottom:570.976400pt;}
.y283{bottom:570.991467pt;}
.y125{bottom:572.244400pt;}
.y8a{bottom:572.258000pt;}
.y159{bottom:572.404400pt;}
.ybe{bottom:572.418000pt;}
.yfb{bottom:573.357067pt;}
.y243{bottom:573.463467pt;}
.y4c{bottom:577.095467pt;}
.y1c3{bottom:579.164133pt;}
.y1d0{bottom:580.373200pt;}
.y53{bottom:581.374400pt;}
.y1fa{bottom:582.373200pt;}
.y282{bottom:583.279467pt;}
.y242{bottom:585.799467pt;}
.y26{bottom:586.229733pt;}
.yf{bottom:586.976400pt;}
.y6b{bottom:587.481067pt;}
.y124{bottom:588.257733pt;}
.y89{bottom:588.271333pt;}
.y158{bottom:588.417733pt;}
.ybd{bottom:588.431333pt;}
.y4b{bottom:589.095467pt;}
.yfa{bottom:589.953067pt;}
.y281{bottom:595.567467pt;}
.y1c2{bottom:595.760133pt;}
.y1cf{bottom:596.679867pt;}
.y241{bottom:598.135467pt;}
.y1f9{bottom:598.493200pt;}
.ye{bottom:602.976400pt;}
.y123{bottom:604.271067pt;}
.y88{bottom:604.284667pt;}
.y157{bottom:604.431067pt;}
.ybc{bottom:604.444667pt;}
.y4a{bottom:604.871467pt;}
.y6a{bottom:605.134400pt;}
.yf9{bottom:606.549067pt;}
.y280{bottom:607.855467pt;}
.y240{bottom:610.471467pt;}
.y70{bottom:612.072267pt;}
.y1c1{bottom:612.356133pt;}
.y1ce{bottom:612.986533pt;}
.y1f8{bottom:614.613200pt;}
.y122{bottom:620.284400pt;}
.y87{bottom:620.298000pt;}
.y156{bottom:620.444400pt;}
.ybb{bottom:620.458000pt;}
.y69{bottom:622.787733pt;}
.y23f{bottom:622.807467pt;}
.y27f{bottom:623.923467pt;}
.yf8{bottom:625.076533pt;}
.y1c0{bottom:628.952133pt;}
.y1cd{bottom:629.293200pt;}
.y1f7{bottom:630.733200pt;}
.y23e{bottom:635.143467pt;}
.y27e{bottom:636.211467pt;}
.y121{bottom:636.297733pt;}
.y86{bottom:636.311333pt;}
.y155{bottom:636.457733pt;}
.yba{bottom:636.471333pt;}
.y68{bottom:640.441067pt;}
.y1bf{bottom:645.548133pt;}
.y1cc{bottom:645.599867pt;}
.y1f6{bottom:646.853200pt;}
.y27d{bottom:648.499467pt;}
.y23d{bottom:651.259467pt;}
.y120{bottom:652.311067pt;}
.y85{bottom:652.324667pt;}
.y154{bottom:652.471067pt;}
.yb9{bottom:652.484667pt;}
.y49{bottom:653.109333pt;}
.yf7{bottom:657.548533pt;}
.y67{bottom:658.094400pt;}
.y27c{bottom:660.787467pt;}
.y1cb{bottom:661.906533pt;}
.y1be{bottom:662.144133pt;}
.y48{bottom:662.709333pt;}
.y1f5{bottom:662.973200pt;}
.y23c{bottom:663.595467pt;}
.y11f{bottom:668.324400pt;}
.y84{bottom:668.338000pt;}
.y153{bottom:668.484400pt;}
.yb8{bottom:668.498000pt;}
.y45{bottom:669.216000pt;}
.y47{bottom:672.309333pt;}
.y27b{bottom:673.075467pt;}
.yf6{bottom:674.144533pt;}
.y66{bottom:675.747733pt;}
.y23b{bottom:675.931467pt;}
.y1ca{bottom:678.213200pt;}
.y1bd{bottom:678.740133pt;}
.y1f4{bottom:679.093200pt;}
.y44{bottom:681.216000pt;}
.y46{bottom:681.909333pt;}
.y11e{bottom:684.337733pt;}
.y83{bottom:684.351333pt;}
.y152{bottom:684.497733pt;}
.yb7{bottom:684.511333pt;}
.y23a{bottom:688.267467pt;}
.y27a{bottom:689.143467pt;}
.yf5{bottom:690.740533pt;}
.y43{bottom:693.216000pt;}
.y65{bottom:693.401067pt;}
.y1c9{bottom:694.519867pt;}
.y1f3{bottom:695.213200pt;}
.y1bc{bottom:695.336133pt;}
.y11d{bottom:700.351067pt;}
.y82{bottom:700.364667pt;}
.y151{bottom:700.511067pt;}
.yb6{bottom:700.524667pt;}
.y279{bottom:701.431467pt;}
.y239{bottom:704.383467pt;}
.y42{bottom:705.216000pt;}
.yf4{bottom:707.336533pt;}
.y1c8{bottom:710.826533pt;}
.y64{bottom:711.054400pt;}
.y1f2{bottom:711.333200pt;}
.y1bb{bottom:711.932133pt;}
.y278{bottom:713.719467pt;}
.y11c{bottom:716.364400pt;}
.y81{bottom:716.378000pt;}
.y150{bottom:716.524400pt;}
.yb5{bottom:716.538000pt;}
.y238{bottom:716.719467pt;}
.yf3{bottom:723.932533pt;}
.y41{bottom:724.752000pt;}
.y1c7{bottom:727.133200pt;}
.y1f1{bottom:727.453200pt;}
.y1ba{bottom:728.528133pt;}
.y63{bottom:728.707733pt;}
.y237{bottom:729.055467pt;}
.y277{bottom:729.787467pt;}
.y11b{bottom:732.377733pt;}
.y80{bottom:732.391333pt;}
.y14f{bottom:732.537733pt;}
.yb4{bottom:732.551333pt;}
.y40{bottom:736.752000pt;}
.yf2{bottom:740.528533pt;}
.y236{bottom:741.391467pt;}
.y276{bottom:742.075467pt;}
.y1c6{bottom:743.439867pt;}
.y1f0{bottom:743.573200pt;}
.y1b9{bottom:745.124133pt;}
.y62{bottom:746.361067pt;}
.y11a{bottom:748.391067pt;}
.y7f{bottom:748.404667pt;}
.y14e{bottom:748.551067pt;}
.yb3{bottom:748.564667pt;}
.y275{bottom:754.363467pt;}
.yf1{bottom:757.124533pt;}
.y235{bottom:757.507467pt;}
.y1ef{bottom:759.693200pt;}
.y1c5{bottom:759.746533pt;}
.y1b8{bottom:761.720133pt;}
.y61{bottom:764.014400pt;}
.y119{bottom:764.404400pt;}
.y7e{bottom:764.418000pt;}
.y14d{bottom:764.564400pt;}
.yb2{bottom:764.578000pt;}
.y234{bottom:769.843467pt;}
.y274{bottom:770.431467pt;}
.y3f{bottom:771.420000pt;}
.yf0{bottom:773.720533pt;}
.y1ee{bottom:775.813200pt;}
.y1c4{bottom:776.053200pt;}
.y1b7{bottom:778.316133pt;}
.y118{bottom:780.417733pt;}
.y7d{bottom:780.431333pt;}
.y14c{bottom:780.577733pt;}
.yb1{bottom:780.591333pt;}
.y60{bottom:781.667733pt;}
.y233{bottom:782.179467pt;}
.y273{bottom:782.719467pt;}
.y3e{bottom:783.420000pt;}
.yef{bottom:790.316533pt;}
.y1b6{bottom:794.912133pt;}
.y272{bottom:795.007467pt;}
.y3d{bottom:795.420000pt;}
.y117{bottom:796.431067pt;}
.y7c{bottom:796.444667pt;}
.y14b{bottom:796.591067pt;}
.yb0{bottom:796.604667pt;}
.y232{bottom:798.295467pt;}
.y5f{bottom:799.321067pt;}
.yee{bottom:806.912533pt;}
.y271{bottom:807.295467pt;}
.y3c{bottom:807.420000pt;}
.y224{bottom:809.108133pt;}
.y231{bottom:810.631467pt;}
.y1b5{bottom:811.508133pt;}
.y116{bottom:812.444400pt;}
.y7b{bottom:812.458000pt;}
.y14a{bottom:812.604400pt;}
.yaf{bottom:812.618000pt;}
.y2af{bottom:813.991467pt;}
.y5e{bottom:816.974400pt;}
.y230{bottom:822.967467pt;}
.y270{bottom:823.363467pt;}
.yed{bottom:823.508533pt;}
.y223{bottom:825.704133pt;}
.y2ae{bottom:825.991467pt;}
.y1b4{bottom:828.104133pt;}
.y115{bottom:828.457733pt;}
.y7a{bottom:828.471333pt;}
.y149{bottom:828.617733pt;}
.yae{bottom:828.631333pt;}
.y5d{bottom:834.627733pt;}
.y22f{bottom:835.303467pt;}
.y26f{bottom:835.651467pt;}
.y2ad{bottom:837.991467pt;}
.yec{bottom:840.104533pt;}
.y222{bottom:842.300133pt;}
.y114{bottom:844.471067pt;}
.y79{bottom:844.484667pt;}
.y148{bottom:844.631067pt;}
.yad{bottom:844.644667pt;}
.y1b3{bottom:844.700133pt;}
.y26e{bottom:847.939467pt;}
.y2ac{bottom:849.991467pt;}
.y22e{bottom:851.419467pt;}
.y5c{bottom:852.281067pt;}
.y5{bottom:854.215200pt;}
.yeb{bottom:856.700533pt;}
.y221{bottom:858.896133pt;}
.y113{bottom:860.484400pt;}
.y78{bottom:860.498000pt;}
.y147{bottom:860.644400pt;}
.yac{bottom:860.658000pt;}
.y1b2{bottom:861.296133pt;}
.y22d{bottom:863.755467pt;}
.y26d{bottom:864.007467pt;}
.y2ab{bottom:865.771467pt;}
.y5b{bottom:869.934400pt;}
.y4{bottom:870.213333pt;}
.yea{bottom:873.296533pt;}
.y220{bottom:875.492133pt;}
.y22c{bottom:876.091467pt;}
.y26c{bottom:876.295467pt;}
.y112{bottom:876.497733pt;}
.y77{bottom:876.511333pt;}
.y146{bottom:876.657733pt;}
.yab{bottom:876.671333pt;}
.y2aa{bottom:877.771467pt;}
.y1b1{bottom:877.892133pt;}
.y5a{bottom:887.587733pt;}
.y26b{bottom:888.583467pt;}
.y2a9{bottom:889.771467pt;}
.ye9{bottom:889.892533pt;}
.y21f{bottom:892.088133pt;}
.y22b{bottom:892.207467pt;}
.y111{bottom:892.511067pt;}
.y76{bottom:892.524667pt;}
.y145{bottom:892.671067pt;}
.y1b0{bottom:894.488133pt;}
.y26a{bottom:900.871467pt;}
.y3{bottom:901.333333pt;}
.y2a8{bottom:901.771467pt;}
.y22a{bottom:904.543467pt;}
.y59{bottom:905.241067pt;}
.ye8{bottom:906.488533pt;}
.y110{bottom:908.524400pt;}
.y75{bottom:908.538000pt;}
.y21d{bottom:908.684133pt;}
.y144{bottom:908.684400pt;}
.yaa{bottom:908.684667pt;}
.y1af{bottom:911.084133pt;}
.y269{bottom:913.159467pt;}
.y2b0{bottom:913.771467pt;}
.y21c{bottom:915.884133pt;}
.y229{bottom:916.879467pt;}
.y2a7{bottom:917.551467pt;}
.y58{bottom:922.894400pt;}
.y21e{bottom:923.084133pt;}
.ye7{bottom:923.084533pt;}
.y10f{bottom:924.537733pt;}
.y143{bottom:924.697733pt;}
.ya9{bottom:924.698000pt;}
.y228{bottom:929.215467pt;}
.y268{bottom:929.227467pt;}
.y1ae{bottom:929.550800pt;}
.y2a6{bottom:929.551467pt;}
.y2{bottom:932.451467pt;}
.y57{bottom:940.547733pt;}
.y10e{bottom:940.551067pt;}
.y74{bottom:940.551333pt;}
.y142{bottom:940.711067pt;}
.ya8{bottom:940.711333pt;}
.y267{bottom:941.515467pt;}
.y1ad{bottom:941.550800pt;}
.ye6{bottom:941.551067pt;}
.y227{bottom:941.551467pt;}
.y21b{bottom:941.667600pt;}
.y1{bottom:959.118133pt;}
.y176{bottom:983.125600pt;}
.ydb{bottom:983.126000pt;}
.y51{bottom:983.126133pt;}
.y225{bottom:983.126267pt;}
.h9{height:23.392000pt;}
.hc{height:29.270833pt;}
.ha{height:30.416667pt;}
.h5{height:32.929688pt;}
.he{height:34.218750pt;}
.hd{height:38.020833pt;}
.hb{height:38.166667pt;}
.h8{height:42.937500pt;}
.h6{height:43.054688pt;}
.h3{height:47.708333pt;}
.h7{height:47.838542pt;}
.h4{height:51.003300pt;}
.h2{height:60.833333pt;}
.hf{height:71.854687pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:66.140667pt;}
.x1a{left:83.392667pt;}
.x7{left:85.065467pt;}
.x1{left:122.695867pt;}
.x12{left:131.515333pt;}
.xd{left:139.800267pt;}
.x16{left:141.962000pt;}
.x2{left:150.877200pt;}
.x8{left:175.434267pt;}
.x4{left:187.183333pt;}
.xb{left:190.866133pt;}
.xf{left:196.999467pt;}
.x1b{left:200.779333pt;}
.xc{left:209.886133pt;}
.x19{left:229.144667pt;}
.x18{left:232.768667pt;}
.x5{left:272.231600pt;}
.x11{left:278.287333pt;}
.x10{left:281.935333pt;}
.x15{left:288.266000pt;}
.x14{left:291.902000pt;}
.x1c{left:306.655333pt;}
.x13{left:379.867333pt;}
.x3{left:390.183333pt;}
.x9{left:406.460933pt;}
.x1e{left:407.971333pt;}
.xe{left:414.047200pt;}
.xa{left:425.434267pt;}
.x1d{left:427.315333pt;}
.x20{left:495.943333pt;}
.x1f{left:497.971333pt;}
.x17{left:526.328400pt;}
.x22{left:551.275333pt;}
.x21{left:557.047333pt;}
}




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