
    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_ceefc699e6caaca8627649fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.122000;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_17a6f1fe4d93661a4de0056d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_878650b8b777e09d3e8c1956.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_a11739805dabfceebc0e357e.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_17a6f1fe4d93661a4de0056d.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_d2ea1a6b0e8c23b6757c2d45.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.102000;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_dd76cc8466e953ab659a9a78.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.108000;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_fc984afdce55e0b0c88270f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.116000;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_e87b6e8045acb28fabe61562.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.116000;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_0075db218099f0261fc9b7cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.714000;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_522b1ffa0c1979acb58d508c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.728000;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_66685f8344de5c3d7dcd2e1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.m2{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;}
.v1{vertical-align:18.357000px;}
.ls5c{letter-spacing:-1.080000px;}
.ls3d{letter-spacing:-0.900000px;}
.ls5b{letter-spacing:-0.702000px;}
.ls2b{letter-spacing:-0.600000px;}
.ls3e{letter-spacing:-0.480000px;}
.ls2a{letter-spacing:-0.420000px;}
.ls37{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.300000px;}
.ls38{letter-spacing:-0.270000px;}
.ls18{letter-spacing:-0.240000px;}
.ls1a{letter-spacing:-0.120000px;}
.ls34{letter-spacing:-0.060000px;}
.ls7{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.024000px;}
.lsd{letter-spacing:0.030000px;}
.ls3{letter-spacing:0.048000px;}
.ls15{letter-spacing:0.060000px;}
.ls52{letter-spacing:0.078000px;}
.ls32{letter-spacing:0.090000px;}
.ls53{letter-spacing:0.117000px;}
.lsb{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls4c{letter-spacing:0.150000px;}
.ls30{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.210000px;}
.ls20{letter-spacing:0.240000px;}
.ls68{letter-spacing:0.270000px;}
.ls41{letter-spacing:0.282000px;}
.lsc{letter-spacing:0.300000px;}
.ls4a{letter-spacing:0.312000px;}
.ls61{letter-spacing:0.351000px;}
.lse{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.390000px;}
.ls1{letter-spacing:0.420000px;}
.ls5a{letter-spacing:0.429000px;}
.ls62{letter-spacing:0.468000px;}
.ls1c{letter-spacing:0.480000px;}
.ls5e{letter-spacing:0.510000px;}
.ls26{letter-spacing:0.540000px;}
.ls2f{letter-spacing:0.570000px;}
.ls13{letter-spacing:0.600000px;}
.ls5{letter-spacing:0.624000px;}
.ls47{letter-spacing:0.648000px;}
.ls31{letter-spacing:0.660000px;}
.ls2e{letter-spacing:0.690000px;}
.ls33{letter-spacing:0.702000px;}
.ls35{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.738600px;}
.ls1d{letter-spacing:0.750000px;}
.lsa{letter-spacing:0.780000px;}
.ls39{letter-spacing:0.810000px;}
.ls14{letter-spacing:0.840000px;}
.ls4f{letter-spacing:0.864000px;}
.ls27{letter-spacing:0.870000px;}
.ls4d{letter-spacing:0.891000px;}
.ls22{letter-spacing:0.900000px;}
.ls8{letter-spacing:0.912000px;}
.ls23{letter-spacing:0.960000px;}
.ls2c{letter-spacing:0.990000px;}
.ls45{letter-spacing:1.020000px;}
.ls2d{letter-spacing:1.080000px;}
.ls10{letter-spacing:1.140000px;}
.ls6{letter-spacing:1.152000px;}
.ls17{letter-spacing:1.200000px;}
.lsf{letter-spacing:1.260000px;}
.ls4e{letter-spacing:1.296000px;}
.ls44{letter-spacing:1.320000px;}
.ls63{letter-spacing:1.350000px;}
.ls3c{letter-spacing:1.380000px;}
.ls24{letter-spacing:1.440000px;}
.ls57{letter-spacing:1.458000px;}
.ls64{letter-spacing:1.470000px;}
.ls25{letter-spacing:1.500000px;}
.ls3a{letter-spacing:1.560000px;}
.ls40{letter-spacing:1.590000px;}
.ls3b{letter-spacing:1.620000px;}
.ls49{letter-spacing:1.674000px;}
.ls5d{letter-spacing:1.680000px;}
.ls67{letter-spacing:1.710000px;}
.ls58{letter-spacing:1.755000px;}
.ls21{letter-spacing:1.770000px;}
.ls1f{letter-spacing:1.800000px;}
.ls12{letter-spacing:1.860000px;}
.ls36{letter-spacing:1.920000px;}
.ls6a{letter-spacing:1.980000px;}
.ls4b{letter-spacing:2.100000px;}
.ls43{letter-spacing:2.130000px;}
.ls42{letter-spacing:2.160000px;}
.ls16{letter-spacing:2.190000px;}
.ls54{letter-spacing:2.280000px;}
.ls3f{letter-spacing:2.340000px;}
.ls66{letter-spacing:2.400000px;}
.ls65{letter-spacing:2.760000px;}
.ls69{letter-spacing:2.880000px;}
.ls46{letter-spacing:2.997000px;}
.ls60{letter-spacing:3.024000px;}
.ls48{letter-spacing:3.078000px;}
.ls59{letter-spacing:3.240000px;}
.ls50{letter-spacing:3.402000px;}
.ls51{letter-spacing:4.158000px;}
.ls55{letter-spacing:4.428000px;}
.ls5f{letter-spacing:5.076000px;}
.ls56{letter-spacing:6.156000px;}
.ls2{letter-spacing:12.510000px;}
.ls1b{letter-spacing:1965.048000px;}
.ls9{letter-spacing:2126.458200px;}
.ls0{letter-spacing:2802.100800px;}
.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:-30.024000px;}
.ws1{word-spacing:-22.518000px;}
.ws10{word-spacing:-18.348000px;}
.ws85{word-spacing:-18.009000px;}
.ws51{word-spacing:-17.340000px;}
.ws4f{word-spacing:-16.980000px;}
.wsa4{word-spacing:-16.767000px;}
.wsa3{word-spacing:-16.680000px;}
.ws4e{word-spacing:-16.380000px;}
.ws93{word-spacing:-15.903000px;}
.ws27{word-spacing:-14.178000px;}
.wsb7{word-spacing:-11.310000px;}
.wsa2{word-spacing:-11.271000px;}
.wsc1{word-spacing:-11.232000px;}
.wsb6{word-spacing:-11.193000px;}
.ws84{word-spacing:-11.154000px;}
.ws92{word-spacing:-10.959000px;}
.ws91{word-spacing:-10.920000px;}
.ws50{word-spacing:-10.842000px;}
.ws11{word-spacing:-9.757800px;}
.wsa5{word-spacing:-9.055800px;}
.wsab{word-spacing:-6.156000px;}
.wsbb{word-spacing:-5.076000px;}
.wsa9{word-spacing:-4.428000px;}
.wsa0{word-spacing:-4.158000px;}
.ws9d{word-spacing:-3.402000px;}
.wsae{word-spacing:-3.240000px;}
.ws8f{word-spacing:-3.078000px;}
.wsbf{word-spacing:-3.024000px;}
.wsd3{word-spacing:-2.880000px;}
.ws90{word-spacing:-1.674000px;}
.wsac{word-spacing:-1.458000px;}
.ws97{word-spacing:-1.296000px;}
.wsbd{word-spacing:-1.080000px;}
.wsb8{word-spacing:-0.960000px;}
.wsd6{word-spacing:-0.900000px;}
.ws9b{word-spacing:-0.864000px;}
.wscd{word-spacing:-0.840000px;}
.ws63{word-spacing:-0.720000px;}
.wsd7{word-spacing:-0.660000px;}
.ws8d{word-spacing:-0.648000px;}
.wsd4{word-spacing:-0.600000px;}
.ws5{word-spacing:-0.420000px;}
.wsa6{word-spacing:-0.390000px;}
.ws81{word-spacing:-0.120000px;}
.ws6{word-spacing:-0.048000px;}
.ws61{word-spacing:-0.045000px;}
.ws2{word-spacing:0.000000px;}
.ws39{word-spacing:0.060000px;}
.wsa1{word-spacing:0.108000px;}
.ws7e{word-spacing:0.120000px;}
.wsb2{word-spacing:0.162000px;}
.ws33{word-spacing:0.180000px;}
.wsce{word-spacing:0.240000px;}
.ws6c{word-spacing:0.270000px;}
.ws1b{word-spacing:0.300000px;}
.wsc7{word-spacing:0.324000px;}
.ws38{word-spacing:0.420000px;}
.ws57{word-spacing:0.480000px;}
.ws53{word-spacing:0.540000px;}
.ws55{word-spacing:0.600000px;}
.ws36{word-spacing:0.720000px;}
.wscf{word-spacing:0.780000px;}
.ws67{word-spacing:0.840000px;}
.wsf{word-spacing:0.912000px;}
.wsd5{word-spacing:0.960000px;}
.ws9{word-spacing:1.056000px;}
.ws24{word-spacing:1.080000px;}
.ws34{word-spacing:1.140000px;}
.wsb{word-spacing:1.200000px;}
.ws83{word-spacing:1.260000px;}
.ws47{word-spacing:1.320000px;}
.ws31{word-spacing:1.380000px;}
.ws43{word-spacing:1.440000px;}
.wsd9{word-spacing:1.500000px;}
.wsb1{word-spacing:1.512000px;}
.ws1d{word-spacing:1.560000px;}
.ws6d{word-spacing:1.620000px;}
.wsa{word-spacing:1.632000px;}
.ws99{word-spacing:1.674000px;}
.ws1a{word-spacing:1.680000px;}
.ws1f{word-spacing:1.740000px;}
.ws54{word-spacing:1.800000px;}
.ws3a{word-spacing:1.860000px;}
.ws18{word-spacing:1.920000px;}
.ws2e{word-spacing:2.040000px;}
.ws1c{word-spacing:2.100000px;}
.ws3d{word-spacing:2.160000px;}
.ws72{word-spacing:2.220000px;}
.ws66{word-spacing:2.280000px;}
.ws6a{word-spacing:2.340000px;}
.wsc3{word-spacing:2.400000px;}
.wsb3{word-spacing:2.430000px;}
.wsca{word-spacing:2.460000px;}
.ws20{word-spacing:2.520000px;}
.ws21{word-spacing:2.580000px;}
.wse{word-spacing:2.688000px;}
.ws16{word-spacing:2.700000px;}
.ws40{word-spacing:2.760000px;}
.wsc0{word-spacing:2.808000px;}
.ws42{word-spacing:2.820000px;}
.wsc5{word-spacing:2.862000px;}
.ws1e{word-spacing:2.880000px;}
.wsc2{word-spacing:2.940000px;}
.wscc{word-spacing:3.000000px;}
.ws28{word-spacing:3.060000px;}
.ws60{word-spacing:3.078000px;}
.wsa7{word-spacing:3.240000px;}
.ws87{word-spacing:3.300000px;}
.ws62{word-spacing:3.360000px;}
.ws3e{word-spacing:3.420000px;}
.ws6e{word-spacing:3.540000px;}
.ws95{word-spacing:3.600000px;}
.ws5c{word-spacing:3.660000px;}
.wsc8{word-spacing:3.720000px;}
.wsb4{word-spacing:3.726000px;}
.ws88{word-spacing:3.780000px;}
.ws19{word-spacing:3.840000px;}
.ws5d{word-spacing:3.900000px;}
.wsbc{word-spacing:3.942000px;}
.ws5a{word-spacing:3.960000px;}
.ws68{word-spacing:4.020000px;}
.ws44{word-spacing:4.080000px;}
.wsd2{word-spacing:4.140000px;}
.ws2a{word-spacing:4.200000px;}
.ws3f{word-spacing:4.260000px;}
.ws98{word-spacing:4.266000px;}
.wsb9{word-spacing:4.320000px;}
.wsc6{word-spacing:4.374000px;}
.wsd0{word-spacing:4.440000px;}
.ws22{word-spacing:4.500000px;}
.ws59{word-spacing:4.560000px;}
.ws37{word-spacing:4.620000px;}
.ws4{word-spacing:4.662000px;}
.ws86{word-spacing:4.740000px;}
.ws94{word-spacing:4.800000px;}
.ws73{word-spacing:4.860000px;}
.ws3b{word-spacing:4.920000px;}
.ws56{word-spacing:4.980000px;}
.wsd{word-spacing:4.992000px;}
.ws13{word-spacing:5.040000px;}
.wsb5{word-spacing:5.076000px;}
.ws96{word-spacing:5.100000px;}
.ws49{word-spacing:5.160000px;}
.ws23{word-spacing:5.220000px;}
.ws74{word-spacing:5.280000px;}
.ws29{word-spacing:5.340000px;}
.wsd8{word-spacing:5.400000px;}
.wsaf{word-spacing:5.454000px;}
.ws2b{word-spacing:5.460000px;}
.wsb0{word-spacing:5.508000px;}
.ws14{word-spacing:5.520000px;}
.ws17{word-spacing:5.580000px;}
.ws80{word-spacing:5.640000px;}
.ws45{word-spacing:5.700000px;}
.ws3c{word-spacing:5.760000px;}
.wsd1{word-spacing:5.820000px;}
.ws8a{word-spacing:5.880000px;}
.ws25{word-spacing:5.940000px;}
.wsc{word-spacing:5.952000px;}
.ws7d{word-spacing:6.000000px;}
.ws70{word-spacing:6.060000px;}
.ws48{word-spacing:6.120000px;}
.ws9a{word-spacing:6.264000px;}
.ws46{word-spacing:6.300000px;}
.ws8b{word-spacing:6.360000px;}
.ws58{word-spacing:6.420000px;}
.ws8{word-spacing:6.480000px;}
.ws30{word-spacing:6.540000px;}
.wsc9{word-spacing:6.600000px;}
.wscb{word-spacing:6.660000px;}
.ws7{word-spacing:6.672000px;}
.ws4b{word-spacing:6.720000px;}
.ws15{word-spacing:6.780000px;}
.ws69{word-spacing:6.840000px;}
.ws32{word-spacing:6.900000px;}
.ws35{word-spacing:6.960000px;}
.ws26{word-spacing:7.020000px;}
.ws64{word-spacing:7.080000px;}
.ws89{word-spacing:7.200000px;}
.ws2c{word-spacing:7.260000px;}
.ws5e{word-spacing:7.380000px;}
.ws52{word-spacing:7.440000px;}
.ws9e{word-spacing:7.452000px;}
.ws41{word-spacing:7.500000px;}
.ws5f{word-spacing:7.506000px;}
.ws82{word-spacing:7.560000px;}
.ws2f{word-spacing:7.620000px;}
.ws4a{word-spacing:7.680000px;}
.ws5b{word-spacing:7.740000px;}
.ws2d{word-spacing:7.800000px;}
.ws71{word-spacing:7.860000px;}
.wsc4{word-spacing:7.920000px;}
.ws6f{word-spacing:7.980000px;}
.ws6b{word-spacing:8.040000px;}
.ws65{word-spacing:8.160000px;}
.ws4d{word-spacing:8.280000px;}
.ws12{word-spacing:8.340000px;}
.ws4c{word-spacing:8.400000px;}
.ws8c{word-spacing:9.936000px;}
.ws3{word-spacing:10.008000px;}
.wsbe{word-spacing:10.152000px;}
.ws8e{word-spacing:10.206000px;}
.wsad{word-spacing:10.746000px;}
.ws9c{word-spacing:11.286000px;}
.ws9f{word-spacing:13.878000px;}
.wsa8{word-spacing:14.850000px;}
.ws78{word-spacing:16.680000px;}
.wsba{word-spacing:16.848000px;}
.ws7f{word-spacing:17.316000px;}
.wsaa{word-spacing:20.466000px;}
.ws75{word-spacing:416.934000px;}
.ws77{word-spacing:604.530000px;}
.ws79{word-spacing:605.394000px;}
.ws76{word-spacing:956.640000px;}
.ws7a{word-spacing:1159.140000px;}
.ws7b{word-spacing:1169.100000px;}
.ws7c{word-spacing:1283.640000px;}
._2e{margin-left:-27.720000px;}
._d{margin-left:-25.260000px;}
._e{margin-left:-23.580000px;}
._11{margin-left:-20.016000px;}
._2c{margin-left:-16.680000px;}
._3{margin-left:-15.535800px;}
._4{margin-left:-9.324000px;}
._7{margin-left:-2.436000px;}
._5{margin-left:-1.156800px;}
._b{width:1.692000px;}
._12{width:3.154200px;}
._2{width:4.657800px;}
._1{width:6.888000px;}
._c{width:8.274000px;}
._6{width:9.456000px;}
._2d{width:10.669800px;}
._0{width:11.676000px;}
._28{width:12.960000px;}
._a{width:15.984000px;}
._9{width:17.316000px;}
._23{width:21.816000px;}
._27{width:23.544000px;}
._26{width:24.732000px;}
._24{width:26.730000px;}
._2b{width:28.188000px;}
._25{width:29.322000px;}
._29{width:30.888000px;}
._2a{width:33.318000px;}
._22{width:37.557000px;}
._f{width:42.282000px;}
._8{width:44.550000px;}
._10{width:50.490000px;}
._1d{width:356.040000px;}
._21{width:430.560000px;}
._20{width:485.040000px;}
._18{width:571.620000px;}
._16{width:578.280000px;}
._1e{width:609.360000px;}
._1f{width:665.040000px;}
._19{width:718.140000px;}
._13{width:885.600000px;}
._1c{width:912.720000px;}
._14{width:920.100000px;}
._1b{width:1005.060000px;}
._15{width:1031.520000px;}
._1a{width:1039.380000px;}
._17{width:1193.940000px;}
.fc1{color:rgb(180,141,14);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.100000px;}
.fs2{font-size:36.000000px;}
.fsc{font-size:39.000000px;}
.fs3{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fse{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs10{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fsf{font-size:72.000000px;}
.fsb{font-size:78.000000px;}
.fs6{font-size:81.000000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y284{bottom:138.027600px;}
.y15b{bottom:138.195000px;}
.y5e{bottom:138.201000px;}
.y23a{bottom:138.206550px;}
.y260{bottom:138.377850px;}
.y116{bottom:138.570300px;}
.ya8{bottom:138.643050px;}
.y134{bottom:139.329000px;}
.y1f8{bottom:139.695450px;}
.y7d{bottom:140.255550px;}
.y214{bottom:140.308950px;}
.y9{bottom:140.313450px;}
.yf8{bottom:141.093600px;}
.ybd{bottom:142.239000px;}
.y8{bottom:152.314950px;}
.y5d{bottom:155.791500px;}
.ybc{bottom:155.797500px;}
.ya7{bottom:159.433050px;}
.y239{bottom:159.611550px;}
.y283{bottom:159.762600px;}
.ye2{bottom:159.835500px;}
.y25f{bottom:160.052850px;}
.y133{bottom:160.119000px;}
.y1f7{bottom:160.485450px;}
.y7c{bottom:161.045550px;}
.y213{bottom:161.098950px;}
.yf7{bottom:161.883600px;}
.y115{bottom:165.920100px;}
.y7{bottom:170.695350px;}
.ybb{bottom:173.388000px;}
.y5c{bottom:177.432000px;}
.ya6{bottom:180.223050px;}
.y132{bottom:180.909000px;}
.y1f6{bottom:181.275450px;}
.y25e{bottom:181.727850px;}
.y7b{bottom:181.835550px;}
.y212{bottom:181.888950px;}
.yf6{bottom:182.673600px;}
.y6{bottom:188.251350px;}
.y238{bottom:191.411550px;}
.y282{bottom:191.892600px;}
.y114{bottom:192.785100px;}
.yba{bottom:195.028500px;}
.ya5{bottom:201.013050px;}
.y131{bottom:201.699000px;}
.y1f5{bottom:202.065450px;}
.y7a{bottom:202.625550px;}
.yf5{bottom:203.463600px;}
.y5{bottom:205.807350px;}
.y181{bottom:208.581000px;}
.y15a{bottom:212.625000px;}
.y237{bottom:212.816550px;}
.y211{bottom:213.073950px;}
.y281{bottom:213.627600px;}
.y25d{bottom:213.797850px;}
.y4{bottom:216.989850px;}
.y113{bottom:219.650100px;}
.ye1{bottom:220.722300px;}
.ya4{bottom:221.803050px;}
.y130{bottom:222.489000px;}
.y1f4{bottom:222.855450px;}
.y79{bottom:223.415550px;}
.yf4{bottom:224.253600px;}
.y5b{bottom:226.771350px;}
.y159{bottom:230.221500px;}
.y3{bottom:232.424850px;}
.y210{bottom:233.863950px;}
.y25c{bottom:235.472850px;}
.ye0{bottom:241.512300px;}
.ya3{bottom:242.593050px;}
.y12f{bottom:243.279000px;}
.y1f3{bottom:243.645450px;}
.y158{bottom:243.774000px;}
.y78{bottom:244.205550px;}
.y236{bottom:244.616550px;}
.yf3{bottom:245.043600px;}
.y280{bottom:245.757600px;}
.y112{bottom:246.515100px;}
.y5a{bottom:247.561350px;}
.y20f{bottom:254.653950px;}
.yb9{bottom:255.281100px;}
.y25b{bottom:257.147850px;}
.ydf{bottom:262.302300px;}
.ya2{bottom:263.383050px;}
.y12e{bottom:264.069000px;}
.y1f2{bottom:264.435450px;}
.y77{bottom:264.995550px;}
.y157{bottom:265.414500px;}
.yf2{bottom:265.833600px;}
.y235{bottom:266.021550px;}
.y59{bottom:268.351350px;}
.y111{bottom:273.380100px;}
.yb8{bottom:276.071100px;}
.y27f{bottom:277.887600px;}
.y156{bottom:278.967000px;}
.yde{bottom:283.092300px;}
.ya1{bottom:284.173050px;}
.y1f1{bottom:285.225450px;}
.y76{bottom:285.785550px;}
.y20e{bottom:285.838950px;}
.yf1{bottom:286.623600px;}
.y58{bottom:289.141350px;}
.y25a{bottom:289.217850px;}
.y12d{bottom:295.254000px;}
.yb7{bottom:296.861100px;}
.y234{bottom:297.821550px;}
.y27e{bottom:299.622600px;}
.y110{bottom:300.245100px;}
.y155{bottom:300.607500px;}
.ydd{bottom:303.882300px;}
.ya0{bottom:304.963050px;}
.y1f0{bottom:306.015450px;}
.y20d{bottom:306.628950px;}
.yf0{bottom:307.413600px;}
.y57{bottom:309.931350px;}
.y259{bottom:310.892850px;}
.y180{bottom:314.160000px;}
.y12c{bottom:316.044000px;}
.y75{bottom:316.970550px;}
.yb6{bottom:317.623050px;}
.y233{bottom:319.226550px;}
.y27d{bottom:321.357600px;}
.ydc{bottom:324.672300px;}
.y9f{bottom:325.753050px;}
.y1ef{bottom:326.805450px;}
.y10f{bottom:327.110100px;}
.y20c{bottom:327.418950px;}
.yef{bottom:328.203600px;}
.y56{bottom:330.721350px;}
.y258{bottom:332.567850px;}
.y17f{bottom:335.800500px;}
.y12b{bottom:336.834000px;}
.y74{bottom:337.760550px;}
.yb5{bottom:338.413050px;}
.y232{bottom:340.631550px;}
.ydb{bottom:345.462300px;}
.y1ee{bottom:347.595450px;}
.y17e{bottom:349.353000px;}
.y55{bottom:351.511350px;}
.y27c{bottom:353.487600px;}
.y10e{bottom:353.975100px;}
.y9e{bottom:356.938050px;}
.y73{bottom:358.550550px;}
.y20b{bottom:358.603950px;}
.yb4{bottom:359.203050px;}
.y154{bottom:359.210100px;}
.y257{bottom:364.637850px;}
.yda{bottom:366.252300px;}
.y1cc{bottom:366.287550px;}
.y1ed{bottom:368.385450px;}
.y17d{bottom:370.993500px;}
.y12a{bottom:372.266850px;}
.y54{bottom:372.301350px;}
.y231{bottom:372.431550px;}
.yee{bottom:374.266350px;}
.y27b{bottom:375.222600px;}
.y9d{bottom:377.728050px;}
.y72{bottom:379.340550px;}
.y20a{bottom:379.393950px;}
.yb3{bottom:379.993050px;}
.y153{bottom:380.000100px;}
.y10d{bottom:380.840100px;}
.y17c{bottom:384.546000px;}
.y256{bottom:386.312850px;}
.y1cb{bottom:387.077550px;}
.y1ec{bottom:389.175450px;}
.y53{bottom:393.091350px;}
.yd9{bottom:397.437300px;}
.y1ae{bottom:397.487550px;}
.y9c{bottom:398.518050px;}
.y71{bottom:400.130550px;}
.y209{bottom:400.183950px;}
.yb2{bottom:400.783050px;}
.y152{bottom:400.790100px;}
.y230{bottom:404.231550px;}
.y17b{bottom:406.186500px;}
.y27a{bottom:407.352600px;}
.y10c{bottom:407.705100px;}
.y1ca{bottom:407.867550px;}
.y255{bottom:407.987850px;}
.y1eb{bottom:409.965450px;}
.y52{bottom:413.881350px;}
.yd8{bottom:418.227300px;}
.y1ad{bottom:418.271550px;}
.y9b{bottom:419.308050px;}
.y17a{bottom:419.739000px;}
.y70{bottom:420.920550px;}
.yb1{bottom:421.573050px;}
.y151{bottom:421.580100px;}
.y28{bottom:421.668300px;}
.y22f{bottom:425.636550px;}
.y1c9{bottom:428.657550px;}
.y279{bottom:429.087600px;}
.y1ea{bottom:430.755450px;}
.y208{bottom:431.368950px;}
.y2f{bottom:432.655200px;}
.y10b{bottom:434.570100px;}
.y51{bottom:434.582100px;}
.yd7{bottom:439.017300px;}
.y1ac{bottom:439.061550px;}
.y27{bottom:439.263300px;}
.y254{bottom:440.057850px;}
.y9a{bottom:440.098050px;}
.y199{bottom:441.379500px;}
.y179{bottom:441.379650px;}
.y6f{bottom:441.710550px;}
.yed{bottom:442.342050px;}
.yb0{bottom:442.363050px;}
.y150{bottom:442.370100px;}
.y129{bottom:444.056400px;}
.y22e{bottom:447.041550px;}
.y2e{bottom:447.043200px;}
.y1c8{bottom:449.447550px;}
.y1e9{bottom:451.545450px;}
.y207{bottom:452.158950px;}
.y178{bottom:454.932000px;}
.y50{bottom:455.372100px;}
.y26{bottom:456.858300px;}
.y1ab{bottom:459.798450px;}
.yd6{bottom:459.807300px;}
.y99{bottom:460.888050px;}
.y278{bottom:461.217600px;}
.y2d{bottom:461.431200px;}
.y10a{bottom:461.435100px;}
.y253{bottom:461.732850px;}
.y6e{bottom:462.500550px;}
.yec{bottom:463.132050px;}
.yaf{bottom:463.153050px;}
.y14f{bottom:463.157100px;}
.y128{bottom:464.846400px;}
.y1c7{bottom:470.237550px;}
.y206{bottom:472.948950px;}
.y25{bottom:474.453300px;}
.y2c{bottom:475.819200px;}
.y4f{bottom:476.162100px;}
.y198{bottom:476.572500px;}
.y177{bottom:476.572650px;}
.y22d{bottom:478.858200px;}
.y1aa{bottom:480.588450px;}
.yd5{bottom:480.597300px;}
.y98{bottom:481.678050px;}
.y1e8{bottom:482.730450px;}
.y277{bottom:482.952600px;}
.y6d{bottom:483.290550px;}
.yeb{bottom:483.922050px;}
.yae{bottom:483.943050px;}
.y14e{bottom:483.944100px;}
.y127{bottom:485.636400px;}
.y109{bottom:488.300100px;}
.y197{bottom:490.125000px;}
.y2b{bottom:490.207200px;}
.y1c6{bottom:491.027550px;}
.y24{bottom:492.048300px;}
.y252{bottom:493.802850px;}
.y1a9{bottom:501.378450px;}
.yd4{bottom:501.387300px;}
.y1e7{bottom:503.520450px;}
.y6c{bottom:504.080550px;}
.y205{bottom:504.133950px;}
.y2a{bottom:504.595200px;}
.y14d{bottom:504.659850px;}
.yea{bottom:504.712050px;}
.y126{bottom:506.426400px;}
.y4e{bottom:507.347100px;}
.y22c{bottom:510.658200px;}
.y196{bottom:511.765500px;}
.yad{bottom:515.042850px;}
.y276{bottom:515.082600px;}
.y108{bottom:515.165100px;}
.y251{bottom:515.477850px;}
.y23{bottom:516.841350px;}
.y29{bottom:518.983200px;}
.y97{bottom:521.362950px;}
.y1a8{bottom:522.168450px;}
.yd3{bottom:522.177300px;}
.y1c5{bottom:522.209550px;}
.y1e6{bottom:524.310450px;}
.y6b{bottom:524.870550px;}
.y195{bottom:525.318000px;}
.y14c{bottom:525.449850px;}
.ye9{bottom:525.502050px;}
.y125{bottom:527.216400px;}
.y4d{bottom:528.137100px;}
.y176{bottom:529.514250px;}
.y22b{bottom:532.063200px;}
.y204{bottom:535.318950px;}
.yac{bottom:535.832850px;}
.y107{bottom:542.032350px;}
.y1c4{bottom:542.953500px;}
.yd2{bottom:542.967300px;}
.y1e5{bottom:545.100450px;}
.y14b{bottom:546.239850px;}
.ye8{bottom:546.292050px;}
.y194{bottom:546.958500px;}
.y275{bottom:547.212600px;}
.y250{bottom:547.547850px;}
.y124{bottom:548.006400px;}
.y4c{bottom:548.927100px;}
.y175{bottom:550.304250px;}
.y1a7{bottom:553.353450px;}
.y22a{bottom:553.468200px;}
.y6a{bottom:556.055550px;}
.y203{bottom:556.108950px;}
.yab{bottom:556.622850px;}
.y22{bottom:557.346450px;}
.y193{bottom:560.511000px;}
.y1a{bottom:560.747400px;}
.y1c3{bottom:563.743500px;}
.yd1{bottom:563.757300px;}
.y1e4{bottom:565.890450px;}
.y14a{bottom:567.029850px;}
.ye7{bottom:567.082050px;}
.y123{bottom:568.796400px;}
.y274{bottom:568.947600px;}
.y24f{bottom:569.222850px;}
.y4b{bottom:569.717100px;}
.y174{bottom:571.091250px;}
.y21{bottom:571.734450px;}
.y1a6{bottom:574.143450px;}
.y69{bottom:576.845550px;}
.y106{bottom:576.890100px;}
.y202{bottom:576.898950px;}
.yaa{bottom:577.412850px;}
.y19{bottom:578.342400px;}
.y192{bottom:582.151500px;}
.y1c2{bottom:584.533500px;}
.yd0{bottom:584.547300px;}
.y229{bottom:585.268200px;}
.y20{bottom:586.122450px;}
.y1e3{bottom:586.680450px;}
.y149{bottom:587.819850px;}
.ye6{bottom:587.872050px;}
.y122{bottom:589.586400px;}
.y4a{bottom:590.507100px;}
.y24e{bottom:590.897850px;}
.y173{bottom:591.875100px;}
.y1a5{bottom:594.933450px;}
.y18{bottom:595.937400px;}
.y68{bottom:597.635550px;}
.y96{bottom:598.202850px;}
.y1f{bottom:600.510450px;}
.y273{bottom:601.077600px;}
.y105{bottom:602.011350px;}
.y1c1{bottom:605.323500px;}
.ycf{bottom:605.337300px;}
.y228{bottom:606.673200px;}
.y1e2{bottom:607.470450px;}
.y201{bottom:608.083950px;}
.y148{bottom:608.609850px;}
.ye5{bottom:608.662050px;}
.y49{bottom:611.297100px;}
.y172{bottom:612.665100px;}
.y17{bottom:613.532400px;}
.y1e{bottom:614.898450px;}
.y1a4{bottom:615.723450px;}
.y67{bottom:618.425550px;}
.y95{bottom:618.992850px;}
.y272{bottom:622.812600px;}
.y24d{bottom:622.967850px;}
.y1c0{bottom:626.113500px;}
.yce{bottom:626.127300px;}
.y1e1{bottom:628.260450px;}
.y200{bottom:628.873950px;}
.y1d{bottom:629.286450px;}
.y147{bottom:629.399850px;}
.ye4{bottom:629.452050px;}
.y16{bottom:631.127400px;}
.y48{bottom:632.087100px;}
.y171{bottom:633.442050px;}
.y121{bottom:635.649300px;}
.y1a3{bottom:636.513450px;}
.y227{bottom:638.473200px;}
.y66{bottom:639.215550px;}
.y94{bottom:639.782850px;}
.y1c{bottom:643.674450px;}
.y24c{bottom:644.642850px;}
.y1bf{bottom:646.903500px;}
.ycd{bottom:646.917300px;}
.y1e0{bottom:649.050450px;}
.y104{bottom:649.359600px;}
.y1ff{bottom:649.663950px;}
.y146{bottom:650.189850px;}
.y47{bottom:652.877100px;}
.y170{bottom:654.232050px;}
.y271{bottom:654.942600px;}
.y15{bottom:655.920450px;}
.y1a2{bottom:657.303450px;}
.y1b{bottom:658.062450px;}
.y226{bottom:659.878200px;}
.y65{bottom:660.005550px;}
.y93{bottom:660.572850px;}
.y191{bottom:660.634050px;}
.y24b{bottom:666.317850px;}
.y1be{bottom:667.693500px;}
.ycc{bottom:667.707300px;}
.y1df{bottom:669.840450px;}
.y103{bottom:670.149600px;}
.y145{bottom:670.979850px;}
.y46{bottom:673.667100px;}
.y16f{bottom:675.022050px;}
.y270{bottom:676.677600px;}
.y1a1{bottom:678.093450px;}
.y64{bottom:680.795550px;}
.y92{bottom:681.362850px;}
.y190{bottom:681.421050px;}
.y1bd{bottom:688.483500px;}
.ycb{bottom:688.497300px;}
.y1de{bottom:690.630450px;}
.y102{bottom:690.939600px;}
.y225{bottom:691.678200px;}
.y144{bottom:691.769850px;}
.y45{bottom:694.457100px;}
.y16e{bottom:695.812050px;}
.y24a{bottom:698.387850px;}
.y1a0{bottom:698.883450px;}
.y63{bottom:701.585550px;}
.y1fe{bottom:702.104700px;}
.y91{bottom:702.152850px;}
.y18f{bottom:702.188850px;}
.y120{bottom:703.750050px;}
.y26f{bottom:708.807600px;}
.y1bc{bottom:709.273500px;}
.yca{bottom:709.287300px;}
.y1dd{bottom:711.420450px;}
.y101{bottom:711.729600px;}
.y143{bottom:712.559850px;}
.y224{bottom:713.083200px;}
.y44{bottom:715.247100px;}
.y19f{bottom:719.673450px;}
.y249{bottom:720.062850px;}
.y62{bottom:722.375550px;}
.y90{bottom:722.942850px;}
.y18e{bottom:722.978850px;}
.y11f{bottom:724.540050px;}
.y16d{bottom:726.988200px;}
.y1bb{bottom:730.063500px;}
.yc9{bottom:730.077300px;}
.y26e{bottom:730.542600px;}
.y1dc{bottom:732.210450px;}
.y100{bottom:732.519600px;}
.y142{bottom:733.349850px;}
.y223{bottom:734.488200px;}
.y43{bottom:736.037100px;}
.y19e{bottom:740.463450px;}
.y248{bottom:741.737850px;}
.y61{bottom:743.165550px;}
.y8f{bottom:743.732850px;}
.y18d{bottom:743.768850px;}
.y11e{bottom:745.330050px;}
.y16c{bottom:747.778200px;}
.y1ba{bottom:750.853500px;}
.yc8{bottom:750.867300px;}
.y1db{bottom:753.000450px;}
.y141{bottom:754.139850px;}
.y42{bottom:756.827100px;}
.y19d{bottom:761.253450px;}
.y26d{bottom:762.672600px;}
.y60{bottom:763.955550px;}
.y8e{bottom:764.522850px;}
.y18c{bottom:764.558850px;}
.y14{bottom:765.544500px;}
.y222{bottom:766.288200px;}
.y16b{bottom:768.568200px;}
.yc7{bottom:771.651450px;}
.y1da{bottom:773.790450px;}
.y247{bottom:773.807850px;}
.y41{bottom:777.617100px;}
.y1b9{bottom:782.038500px;}
.y26c{bottom:784.407600px;}
.yff{bottom:784.960350px;}
.y8d{bottom:785.312850px;}
.y140{bottom:785.324850px;}
.y18b{bottom:785.348850px;}
.y1fd{bottom:785.515350px;}
.y13{bottom:786.334500px;}
.y221{bottom:787.712850px;}
.y16a{bottom:789.318000px;}
.y19c{bottom:792.438450px;}
.yc6{bottom:792.441450px;}
.y1d9{bottom:794.580450px;}
.y246{bottom:795.482850px;}
.y40{bottom:798.407100px;}
.y5f{bottom:799.388550px;}
.y11d{bottom:800.322000px;}
.y1b8{bottom:802.828500px;}
.y8c{bottom:806.102850px;}
.y13f{bottom:806.114850px;}
.y18a{bottom:806.138850px;}
.y26b{bottom:806.142600px;}
.y1fc{bottom:806.305350px;}
.y12{bottom:807.121650px;}
.y220{bottom:809.117850px;}
.y169{bottom:810.108000px;}
.yfe{bottom:812.700750px;}
.y19b{bottom:813.228450px;}
.yc5{bottom:813.231450px;}
.y1d8{bottom:815.370450px;}
.y3f{bottom:819.197100px;}
.y1b7{bottom:823.618500px;}
.y8b{bottom:826.892850px;}
.y13e{bottom:826.904850px;}
.y189{bottom:826.928850px;}
.y245{bottom:827.552850px;}
.y11c{bottom:828.062250px;}
.y168{bottom:830.898000px;}
.y19a{bottom:834.018450px;}
.y1d7{bottom:836.160450px;}
.y26a{bottom:838.272600px;}
.yfd{bottom:840.420750px;}
.y21f{bottom:840.917850px;}
.y1b6{bottom:844.408500px;}
.y8a{bottom:847.682850px;}
.y13d{bottom:847.694850px;}
.yc4{bottom:848.661300px;}
.y244{bottom:849.227850px;}
.y3e{bottom:850.382100px;}
.y11{bottom:851.503500px;}
.y167{bottom:851.688000px;}
.y1fb{bottom:852.368250px;}
.y11b{bottom:855.782250px;}
.y1d6{bottom:856.950450px;}
.y188{bottom:858.111000px;}
.y269{bottom:860.007600px;}
.y21e{bottom:862.322850px;}
.y1b5{bottom:865.198500px;}
.yfc{bottom:868.140750px;}
.y89{bottom:868.472850px;}
.y13c{bottom:868.484850px;}
.yc3{bottom:869.451300px;}
.y3d{bottom:871.172100px;}
.y10{bottom:872.293500px;}
.y166{bottom:872.478000px;}
.y1d5{bottom:877.740450px;}
.y187{bottom:878.897850px;}
.y243{bottom:881.297850px;}
.y11a{bottom:883.502250px;}
.y21d{bottom:883.727850px;}
.y88{bottom:889.262850px;}
.y13b{bottom:889.274850px;}
.y3c{bottom:891.962100px;}
.y268{bottom:892.137600px;}
.yf{bottom:893.080500px;}
.y165{bottom:893.268000px;}
.yfb{bottom:895.858500px;}
.y1d4{bottom:898.530450px;}
.y186{bottom:899.685000px;}
.y1b4{bottom:900.631350px;}
.y242{bottom:902.972850px;}
.y87{bottom:910.052850px;}
.y13a{bottom:910.064850px;}
.y119{bottom:911.219850px;}
.y3b{bottom:912.752100px;}
.y267{bottom:913.832850px;}
.y164{bottom:914.058000px;}
.y21c{bottom:915.527850px;}
.y185{bottom:920.463000px;}
.y1fa{bottom:920.471850px;}
.y1d3{bottom:929.715450px;}
.y86{bottom:930.842850px;}
.y139{bottom:930.854850px;}
.yfa{bottom:931.141350px;}
.y3a{bottom:933.542100px;}
.y163{bottom:934.848000px;}
.y241{bottom:935.042850px;}
.y21b{bottom:936.932850px;}
.ye{bottom:937.462350px;}
.y1f9{bottom:941.237850px;}
.yc2{bottom:941.249850px;}
.y184{bottom:941.253000px;}
.y266{bottom:945.962850px;}
.y118{bottom:946.502850px;}
.y1d2{bottom:950.505450px;}
.y85{bottom:951.632850px;}
.y138{bottom:951.644850px;}
.y39{bottom:954.332100px;}
.y162{bottom:955.638000px;}
.yf9{bottom:956.262600px;}
.y240{bottom:956.717850px;}
.yd{bottom:958.252350px;}
.ye3{bottom:962.027850px;}
.yc1{bottom:962.039850px;}
.y183{bottom:962.043000px;}
.y265{bottom:967.697850px;}
.y21a{bottom:968.732850px;}
.y1d1{bottom:971.295450px;}
.y117{bottom:971.624100px;}
.y84{bottom:972.422850px;}
.y1b3{bottom:972.426000px;}
.y137{bottom:972.434850px;}
.y38{bottom:975.122100px;}
.yc{bottom:979.047150px;}
.ya9{bottom:982.817850px;}
.yc0{bottom:982.829850px;}
.y182{bottom:982.833000px;}
.y161{bottom:986.823000px;}
.y23f{bottom:988.787850px;}
.y219{bottom:990.137850px;}
.y1d0{bottom:992.085450px;}
.y1b2{bottom:993.216000px;}
.y136{bottom:993.224850px;}
.y37{bottom:995.912100px;}
.y264{bottom:999.827850px;}
.y83{bottom:1003.607850px;}
.ybf{bottom:1003.619850px;}
.y160{bottom:1007.613000px;}
.y23e{bottom:1010.462850px;}
.y218{bottom:1011.542850px;}
.y1cf{bottom:1012.875450px;}
.y1b1{bottom:1014.006000px;}
.y36{bottom:1016.702100px;}
.y263{bottom:1021.562850px;}
.y82{bottom:1024.397850px;}
.ybe{bottom:1024.407000px;}
.y15f{bottom:1028.403000px;}
.y217{bottom:1032.947850px;}
.y1ce{bottom:1033.665450px;}
.y285{bottom:1034.792850px;}
.y1b0{bottom:1034.796000px;}
.y35{bottom:1037.492100px;}
.y23d{bottom:1042.532850px;}
.y81{bottom:1045.187850px;}
.y135{bottom:1045.193850px;}
.y15e{bottom:1049.193000px;}
.y262{bottom:1053.692850px;}
.y1cd{bottom:1054.455450px;}
.yb{bottom:1054.605150px;}
.y1af{bottom:1055.586000px;}
.y34{bottom:1058.282100px;}
.y23c{bottom:1064.207850px;}
.y216{bottom:1064.747850px;}
.y80{bottom:1065.977850px;}
.y15d{bottom:1069.983000px;}
.y261{bottom:1085.822850px;}
.y23b{bottom:1085.882850px;}
.y215{bottom:1086.152850px;}
.y7f{bottom:1086.767850px;}
.ya{bottom:1098.990000px;}
.y33{bottom:1104.345000px;}
.y15c{bottom:1105.416000px;}
.y7e{bottom:1107.557850px;}
.y2{bottom:1164.901350px;}
.y32{bottom:1172.943900px;}
.y31{bottom:1193.899200px;}
.y30{bottom:1207.399200px;}
.h3{height:26.496000px;}
.h6{height:30.912000px;}
.h4{height:31.206000px;}
.h26{height:32.831400px;}
.h12{height:32.832000px;}
.h5{height:33.435000px;}
.he{height:35.328000px;}
.hd{height:43.584000px;}
.hc{height:44.160000px;}
.hf{height:46.308000px;}
.h13{height:49.032000px;}
.h1d{height:49.680000px;}
.h2c{height:53.880000px;}
.ha{height:54.480000px;}
.h18{height:54.491400px;}
.h21{height:54.492000px;}
.h1f{height:54.492600px;}
.h19{height:54.503400px;}
.h1e{height:54.504000px;}
.h25{height:54.504600px;}
.h23{height:54.515400px;}
.h17{height:54.516600px;}
.h27{height:54.528000px;}
.h24{height:54.532200px;}
.h28{height:54.568800px;}
.h2b{height:54.576000px;}
.h16{height:54.592200px;}
.h2d{height:54.639000px;}
.h22{height:54.640800px;}
.h2a{height:54.664200px;}
.h29{height:54.692400px;}
.h1a{height:54.736800px;}
.h20{height:54.777000px;}
.h15{height:54.820800px;}
.h11{height:54.837000px;}
.hb{height:55.200000px;}
.h1c{height:57.204000px;}
.h1b{height:57.960000px;}
.h2{height:59.928000px;}
.h14{height:66.240000px;}
.h10{height:71.760000px;}
.h8{height:75.432000px;}
.h9{height:76.272000px;}
.h7{height:99.360000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x11{left:86.980500px;}
.xd{left:93.543300px;}
.x10{left:106.293750px;}
.x12{left:108.234900px;}
.x3{left:110.543850px;}
.x13{left:124.063350px;}
.x21{left:136.069350px;}
.x22{left:138.010500px;}
.x4{left:145.195650px;}
.x5{left:150.820650px;}
.x6{left:205.783050px;}
.x1c{left:212.598450px;}
.x1b{left:221.888100px;}
.x20{left:223.043550px;}
.x19{left:225.687450px;}
.x1f{left:232.333050px;}
.x18{left:250.866150px;}
.x15{left:253.438950px;}
.x17{left:260.155800px;}
.xe{left:263.622000px;}
.x16{left:340.479450px;}
.x7{left:344.244300px;}
.x1a{left:349.112700px;}
.x1e{left:359.774700px;}
.xf{left:404.113800px;}
.x14{left:419.034450px;}
.x1d{left:420.975600px;}
.xb{left:535.277550px;}
.xa{left:543.323250px;}
.xc{left:595.126350px;}
.x9{left:607.613250px;}
.x8{left:644.166300px;}
.x2{left:752.406450px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.317333pt;}
.ls5c{letter-spacing:-0.960000pt;}
.ls3d{letter-spacing:-0.800000pt;}
.ls5b{letter-spacing:-0.624000pt;}
.ls2b{letter-spacing:-0.533333pt;}
.ls3e{letter-spacing:-0.426667pt;}
.ls2a{letter-spacing:-0.373333pt;}
.ls37{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.266667pt;}
.ls38{letter-spacing:-0.240000pt;}
.ls18{letter-spacing:-0.213333pt;}
.ls1a{letter-spacing:-0.106667pt;}
.ls34{letter-spacing:-0.053333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.021333pt;}
.lsd{letter-spacing:0.026667pt;}
.ls3{letter-spacing:0.042667pt;}
.ls15{letter-spacing:0.053333pt;}
.ls52{letter-spacing:0.069333pt;}
.ls32{letter-spacing:0.080000pt;}
.ls53{letter-spacing:0.104000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls4c{letter-spacing:0.133333pt;}
.ls30{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.186667pt;}
.ls20{letter-spacing:0.213333pt;}
.ls68{letter-spacing:0.240000pt;}
.ls41{letter-spacing:0.250667pt;}
.lsc{letter-spacing:0.266667pt;}
.ls4a{letter-spacing:0.277333pt;}
.ls61{letter-spacing:0.312000pt;}
.lse{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.346667pt;}
.ls1{letter-spacing:0.373333pt;}
.ls5a{letter-spacing:0.381333pt;}
.ls62{letter-spacing:0.416000pt;}
.ls1c{letter-spacing:0.426667pt;}
.ls5e{letter-spacing:0.453333pt;}
.ls26{letter-spacing:0.480000pt;}
.ls2f{letter-spacing:0.506667pt;}
.ls13{letter-spacing:0.533333pt;}
.ls5{letter-spacing:0.554667pt;}
.ls47{letter-spacing:0.576000pt;}
.ls31{letter-spacing:0.586667pt;}
.ls2e{letter-spacing:0.613333pt;}
.ls33{letter-spacing:0.624000pt;}
.ls35{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.656533pt;}
.ls1d{letter-spacing:0.666667pt;}
.lsa{letter-spacing:0.693333pt;}
.ls39{letter-spacing:0.720000pt;}
.ls14{letter-spacing:0.746667pt;}
.ls4f{letter-spacing:0.768000pt;}
.ls27{letter-spacing:0.773333pt;}
.ls4d{letter-spacing:0.792000pt;}
.ls22{letter-spacing:0.800000pt;}
.ls8{letter-spacing:0.810667pt;}
.ls23{letter-spacing:0.853333pt;}
.ls2c{letter-spacing:0.880000pt;}
.ls45{letter-spacing:0.906667pt;}
.ls2d{letter-spacing:0.960000pt;}
.ls10{letter-spacing:1.013333pt;}
.ls6{letter-spacing:1.024000pt;}
.ls17{letter-spacing:1.066667pt;}
.lsf{letter-spacing:1.120000pt;}
.ls4e{letter-spacing:1.152000pt;}
.ls44{letter-spacing:1.173333pt;}
.ls63{letter-spacing:1.200000pt;}
.ls3c{letter-spacing:1.226667pt;}
.ls24{letter-spacing:1.280000pt;}
.ls57{letter-spacing:1.296000pt;}
.ls64{letter-spacing:1.306667pt;}
.ls25{letter-spacing:1.333333pt;}
.ls3a{letter-spacing:1.386667pt;}
.ls40{letter-spacing:1.413333pt;}
.ls3b{letter-spacing:1.440000pt;}
.ls49{letter-spacing:1.488000pt;}
.ls5d{letter-spacing:1.493333pt;}
.ls67{letter-spacing:1.520000pt;}
.ls58{letter-spacing:1.560000pt;}
.ls21{letter-spacing:1.573333pt;}
.ls1f{letter-spacing:1.600000pt;}
.ls12{letter-spacing:1.653333pt;}
.ls36{letter-spacing:1.706667pt;}
.ls6a{letter-spacing:1.760000pt;}
.ls4b{letter-spacing:1.866667pt;}
.ls43{letter-spacing:1.893333pt;}
.ls42{letter-spacing:1.920000pt;}
.ls16{letter-spacing:1.946667pt;}
.ls54{letter-spacing:2.026667pt;}
.ls3f{letter-spacing:2.080000pt;}
.ls66{letter-spacing:2.133333pt;}
.ls65{letter-spacing:2.453333pt;}
.ls69{letter-spacing:2.560000pt;}
.ls46{letter-spacing:2.664000pt;}
.ls60{letter-spacing:2.688000pt;}
.ls48{letter-spacing:2.736000pt;}
.ls59{letter-spacing:2.880000pt;}
.ls50{letter-spacing:3.024000pt;}
.ls51{letter-spacing:3.696000pt;}
.ls55{letter-spacing:3.936000pt;}
.ls5f{letter-spacing:4.512000pt;}
.ls56{letter-spacing:5.472000pt;}
.ls2{letter-spacing:11.120000pt;}
.ls1b{letter-spacing:1746.709333pt;}
.ls9{letter-spacing:1890.185067pt;}
.ls0{letter-spacing:2490.756267pt;}
.ws0{word-spacing:-26.688000pt;}
.ws1{word-spacing:-20.016000pt;}
.ws10{word-spacing:-16.309333pt;}
.ws85{word-spacing:-16.008000pt;}
.ws51{word-spacing:-15.413333pt;}
.ws4f{word-spacing:-15.093333pt;}
.wsa4{word-spacing:-14.904000pt;}
.wsa3{word-spacing:-14.826667pt;}
.ws4e{word-spacing:-14.560000pt;}
.ws93{word-spacing:-14.136000pt;}
.ws27{word-spacing:-12.602667pt;}
.wsb7{word-spacing:-10.053333pt;}
.wsa2{word-spacing:-10.018667pt;}
.wsc1{word-spacing:-9.984000pt;}
.wsb6{word-spacing:-9.949333pt;}
.ws84{word-spacing:-9.914667pt;}
.ws92{word-spacing:-9.741333pt;}
.ws91{word-spacing:-9.706667pt;}
.ws50{word-spacing:-9.637333pt;}
.ws11{word-spacing:-8.673600pt;}
.wsa5{word-spacing:-8.049600pt;}
.wsab{word-spacing:-5.472000pt;}
.wsbb{word-spacing:-4.512000pt;}
.wsa9{word-spacing:-3.936000pt;}
.wsa0{word-spacing:-3.696000pt;}
.ws9d{word-spacing:-3.024000pt;}
.wsae{word-spacing:-2.880000pt;}
.ws8f{word-spacing:-2.736000pt;}
.wsbf{word-spacing:-2.688000pt;}
.wsd3{word-spacing:-2.560000pt;}
.ws90{word-spacing:-1.488000pt;}
.wsac{word-spacing:-1.296000pt;}
.ws97{word-spacing:-1.152000pt;}
.wsbd{word-spacing:-0.960000pt;}
.wsb8{word-spacing:-0.853333pt;}
.wsd6{word-spacing:-0.800000pt;}
.ws9b{word-spacing:-0.768000pt;}
.wscd{word-spacing:-0.746667pt;}
.ws63{word-spacing:-0.640000pt;}
.wsd7{word-spacing:-0.586667pt;}
.ws8d{word-spacing:-0.576000pt;}
.wsd4{word-spacing:-0.533333pt;}
.ws5{word-spacing:-0.373333pt;}
.wsa6{word-spacing:-0.346667pt;}
.ws81{word-spacing:-0.106667pt;}
.ws6{word-spacing:-0.042667pt;}
.ws61{word-spacing:-0.040000pt;}
.ws2{word-spacing:0.000000pt;}
.ws39{word-spacing:0.053333pt;}
.wsa1{word-spacing:0.096000pt;}
.ws7e{word-spacing:0.106667pt;}
.wsb2{word-spacing:0.144000pt;}
.ws33{word-spacing:0.160000pt;}
.wsce{word-spacing:0.213333pt;}
.ws6c{word-spacing:0.240000pt;}
.ws1b{word-spacing:0.266667pt;}
.wsc7{word-spacing:0.288000pt;}
.ws38{word-spacing:0.373333pt;}
.ws57{word-spacing:0.426667pt;}
.ws53{word-spacing:0.480000pt;}
.ws55{word-spacing:0.533333pt;}
.ws36{word-spacing:0.640000pt;}
.wscf{word-spacing:0.693333pt;}
.ws67{word-spacing:0.746667pt;}
.wsf{word-spacing:0.810667pt;}
.wsd5{word-spacing:0.853333pt;}
.ws9{word-spacing:0.938667pt;}
.ws24{word-spacing:0.960000pt;}
.ws34{word-spacing:1.013333pt;}
.wsb{word-spacing:1.066667pt;}
.ws83{word-spacing:1.120000pt;}
.ws47{word-spacing:1.173333pt;}
.ws31{word-spacing:1.226667pt;}
.ws43{word-spacing:1.280000pt;}
.wsd9{word-spacing:1.333333pt;}
.wsb1{word-spacing:1.344000pt;}
.ws1d{word-spacing:1.386667pt;}
.ws6d{word-spacing:1.440000pt;}
.wsa{word-spacing:1.450667pt;}
.ws99{word-spacing:1.488000pt;}
.ws1a{word-spacing:1.493333pt;}
.ws1f{word-spacing:1.546667pt;}
.ws54{word-spacing:1.600000pt;}
.ws3a{word-spacing:1.653333pt;}
.ws18{word-spacing:1.706667pt;}
.ws2e{word-spacing:1.813333pt;}
.ws1c{word-spacing:1.866667pt;}
.ws3d{word-spacing:1.920000pt;}
.ws72{word-spacing:1.973333pt;}
.ws66{word-spacing:2.026667pt;}
.ws6a{word-spacing:2.080000pt;}
.wsc3{word-spacing:2.133333pt;}
.wsb3{word-spacing:2.160000pt;}
.wsca{word-spacing:2.186667pt;}
.ws20{word-spacing:2.240000pt;}
.ws21{word-spacing:2.293333pt;}
.wse{word-spacing:2.389333pt;}
.ws16{word-spacing:2.400000pt;}
.ws40{word-spacing:2.453333pt;}
.wsc0{word-spacing:2.496000pt;}
.ws42{word-spacing:2.506667pt;}
.wsc5{word-spacing:2.544000pt;}
.ws1e{word-spacing:2.560000pt;}
.wsc2{word-spacing:2.613333pt;}
.wscc{word-spacing:2.666667pt;}
.ws28{word-spacing:2.720000pt;}
.ws60{word-spacing:2.736000pt;}
.wsa7{word-spacing:2.880000pt;}
.ws87{word-spacing:2.933333pt;}
.ws62{word-spacing:2.986667pt;}
.ws3e{word-spacing:3.040000pt;}
.ws6e{word-spacing:3.146667pt;}
.ws95{word-spacing:3.200000pt;}
.ws5c{word-spacing:3.253333pt;}
.wsc8{word-spacing:3.306667pt;}
.wsb4{word-spacing:3.312000pt;}
.ws88{word-spacing:3.360000pt;}
.ws19{word-spacing:3.413333pt;}
.ws5d{word-spacing:3.466667pt;}
.wsbc{word-spacing:3.504000pt;}
.ws5a{word-spacing:3.520000pt;}
.ws68{word-spacing:3.573333pt;}
.ws44{word-spacing:3.626667pt;}
.wsd2{word-spacing:3.680000pt;}
.ws2a{word-spacing:3.733333pt;}
.ws3f{word-spacing:3.786667pt;}
.ws98{word-spacing:3.792000pt;}
.wsb9{word-spacing:3.840000pt;}
.wsc6{word-spacing:3.888000pt;}
.wsd0{word-spacing:3.946667pt;}
.ws22{word-spacing:4.000000pt;}
.ws59{word-spacing:4.053333pt;}
.ws37{word-spacing:4.106667pt;}
.ws4{word-spacing:4.144000pt;}
.ws86{word-spacing:4.213333pt;}
.ws94{word-spacing:4.266667pt;}
.ws73{word-spacing:4.320000pt;}
.ws3b{word-spacing:4.373333pt;}
.ws56{word-spacing:4.426667pt;}
.wsd{word-spacing:4.437333pt;}
.ws13{word-spacing:4.480000pt;}
.wsb5{word-spacing:4.512000pt;}
.ws96{word-spacing:4.533333pt;}
.ws49{word-spacing:4.586667pt;}
.ws23{word-spacing:4.640000pt;}
.ws74{word-spacing:4.693333pt;}
.ws29{word-spacing:4.746667pt;}
.wsd8{word-spacing:4.800000pt;}
.wsaf{word-spacing:4.848000pt;}
.ws2b{word-spacing:4.853333pt;}
.wsb0{word-spacing:4.896000pt;}
.ws14{word-spacing:4.906667pt;}
.ws17{word-spacing:4.960000pt;}
.ws80{word-spacing:5.013333pt;}
.ws45{word-spacing:5.066667pt;}
.ws3c{word-spacing:5.120000pt;}
.wsd1{word-spacing:5.173333pt;}
.ws8a{word-spacing:5.226667pt;}
.ws25{word-spacing:5.280000pt;}
.wsc{word-spacing:5.290667pt;}
.ws7d{word-spacing:5.333333pt;}
.ws70{word-spacing:5.386667pt;}
.ws48{word-spacing:5.440000pt;}
.ws9a{word-spacing:5.568000pt;}
.ws46{word-spacing:5.600000pt;}
.ws8b{word-spacing:5.653333pt;}
.ws58{word-spacing:5.706667pt;}
.ws8{word-spacing:5.760000pt;}
.ws30{word-spacing:5.813333pt;}
.wsc9{word-spacing:5.866667pt;}
.wscb{word-spacing:5.920000pt;}
.ws7{word-spacing:5.930667pt;}
.ws4b{word-spacing:5.973333pt;}
.ws15{word-spacing:6.026667pt;}
.ws69{word-spacing:6.080000pt;}
.ws32{word-spacing:6.133333pt;}
.ws35{word-spacing:6.186667pt;}
.ws26{word-spacing:6.240000pt;}
.ws64{word-spacing:6.293333pt;}
.ws89{word-spacing:6.400000pt;}
.ws2c{word-spacing:6.453333pt;}
.ws5e{word-spacing:6.560000pt;}
.ws52{word-spacing:6.613333pt;}
.ws9e{word-spacing:6.624000pt;}
.ws41{word-spacing:6.666667pt;}
.ws5f{word-spacing:6.672000pt;}
.ws82{word-spacing:6.720000pt;}
.ws2f{word-spacing:6.773333pt;}
.ws4a{word-spacing:6.826667pt;}
.ws5b{word-spacing:6.880000pt;}
.ws2d{word-spacing:6.933333pt;}
.ws71{word-spacing:6.986667pt;}
.wsc4{word-spacing:7.040000pt;}
.ws6f{word-spacing:7.093333pt;}
.ws6b{word-spacing:7.146667pt;}
.ws65{word-spacing:7.253333pt;}
.ws4d{word-spacing:7.360000pt;}
.ws12{word-spacing:7.413333pt;}
.ws4c{word-spacing:7.466667pt;}
.ws8c{word-spacing:8.832000pt;}
.ws3{word-spacing:8.896000pt;}
.wsbe{word-spacing:9.024000pt;}
.ws8e{word-spacing:9.072000pt;}
.wsad{word-spacing:9.552000pt;}
.ws9c{word-spacing:10.032000pt;}
.ws9f{word-spacing:12.336000pt;}
.wsa8{word-spacing:13.200000pt;}
.ws78{word-spacing:14.826667pt;}
.wsba{word-spacing:14.976000pt;}
.ws7f{word-spacing:15.392000pt;}
.wsaa{word-spacing:18.192000pt;}
.ws75{word-spacing:370.608000pt;}
.ws77{word-spacing:537.360000pt;}
.ws79{word-spacing:538.128000pt;}
.ws76{word-spacing:850.346667pt;}
.ws7a{word-spacing:1030.346667pt;}
.ws7b{word-spacing:1039.200000pt;}
.ws7c{word-spacing:1141.013333pt;}
._2e{margin-left:-24.640000pt;}
._d{margin-left:-22.453333pt;}
._e{margin-left:-20.960000pt;}
._11{margin-left:-17.792000pt;}
._2c{margin-left:-14.826667pt;}
._3{margin-left:-13.809600pt;}
._4{margin-left:-8.288000pt;}
._7{margin-left:-2.165333pt;}
._5{margin-left:-1.028267pt;}
._b{width:1.504000pt;}
._12{width:2.803733pt;}
._2{width:4.140267pt;}
._1{width:6.122667pt;}
._c{width:7.354667pt;}
._6{width:8.405333pt;}
._2d{width:9.484267pt;}
._0{width:10.378667pt;}
._28{width:11.520000pt;}
._a{width:14.208000pt;}
._9{width:15.392000pt;}
._23{width:19.392000pt;}
._27{width:20.928000pt;}
._26{width:21.984000pt;}
._24{width:23.760000pt;}
._2b{width:25.056000pt;}
._25{width:26.064000pt;}
._29{width:27.456000pt;}
._2a{width:29.616000pt;}
._22{width:33.384000pt;}
._f{width:37.584000pt;}
._8{width:39.600000pt;}
._10{width:44.880000pt;}
._1d{width:316.480000pt;}
._21{width:382.720000pt;}
._20{width:431.146667pt;}
._18{width:508.106667pt;}
._16{width:514.026667pt;}
._1e{width:541.653333pt;}
._1f{width:591.146667pt;}
._19{width:638.346667pt;}
._13{width:787.200000pt;}
._1c{width:811.306667pt;}
._14{width:817.866667pt;}
._1b{width:893.386667pt;}
._15{width:916.906667pt;}
._1a{width:923.893333pt;}
._17{width:1061.280000pt;}
.fsd{font-size:31.200000pt;}
.fs2{font-size:32.000000pt;}
.fsc{font-size:34.666667pt;}
.fs3{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fse{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs10{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fsf{font-size:64.000000pt;}
.fsb{font-size:69.333333pt;}
.fs6{font-size:72.000000pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y284{bottom:122.691200pt;}
.y15b{bottom:122.840000pt;}
.y5e{bottom:122.845333pt;}
.y23a{bottom:122.850267pt;}
.y260{bottom:123.002533pt;}
.y116{bottom:123.173600pt;}
.ya8{bottom:123.238267pt;}
.y134{bottom:123.848000pt;}
.y1f8{bottom:124.173733pt;}
.y7d{bottom:124.671600pt;}
.y214{bottom:124.719067pt;}
.y9{bottom:124.723067pt;}
.yf8{bottom:125.416533pt;}
.ybd{bottom:126.434667pt;}
.y8{bottom:135.391067pt;}
.y5d{bottom:138.481333pt;}
.ybc{bottom:138.486667pt;}
.ya7{bottom:141.718267pt;}
.y239{bottom:141.876933pt;}
.y283{bottom:142.011200pt;}
.ye2{bottom:142.076000pt;}
.y25f{bottom:142.269200pt;}
.y133{bottom:142.328000pt;}
.y1f7{bottom:142.653733pt;}
.y7c{bottom:143.151600pt;}
.y213{bottom:143.199067pt;}
.yf7{bottom:143.896533pt;}
.y115{bottom:147.484533pt;}
.y7{bottom:151.729200pt;}
.ybb{bottom:154.122667pt;}
.y5c{bottom:157.717333pt;}
.ya6{bottom:160.198267pt;}
.y132{bottom:160.808000pt;}
.y1f6{bottom:161.133733pt;}
.y25e{bottom:161.535867pt;}
.y7b{bottom:161.631600pt;}
.y212{bottom:161.679067pt;}
.yf6{bottom:162.376533pt;}
.y6{bottom:167.334533pt;}
.y238{bottom:170.143600pt;}
.y282{bottom:170.571200pt;}
.y114{bottom:171.364533pt;}
.yba{bottom:173.358667pt;}
.ya5{bottom:178.678267pt;}
.y131{bottom:179.288000pt;}
.y1f5{bottom:179.613733pt;}
.y7a{bottom:180.111600pt;}
.yf5{bottom:180.856533pt;}
.y5{bottom:182.939867pt;}
.y181{bottom:185.405333pt;}
.y15a{bottom:189.000000pt;}
.y237{bottom:189.170267pt;}
.y211{bottom:189.399067pt;}
.y281{bottom:189.891200pt;}
.y25d{bottom:190.042533pt;}
.y4{bottom:192.879867pt;}
.y113{bottom:195.244533pt;}
.ye1{bottom:196.197600pt;}
.ya4{bottom:197.158267pt;}
.y130{bottom:197.768000pt;}
.y1f4{bottom:198.093733pt;}
.y79{bottom:198.591600pt;}
.yf4{bottom:199.336533pt;}
.y5b{bottom:201.574533pt;}
.y159{bottom:204.641333pt;}
.y3{bottom:206.599867pt;}
.y210{bottom:207.879067pt;}
.y25c{bottom:209.309200pt;}
.ye0{bottom:214.677600pt;}
.ya3{bottom:215.638267pt;}
.y12f{bottom:216.248000pt;}
.y1f3{bottom:216.573733pt;}
.y158{bottom:216.688000pt;}
.y78{bottom:217.071600pt;}
.y236{bottom:217.436933pt;}
.yf3{bottom:217.816533pt;}
.y280{bottom:218.451200pt;}
.y112{bottom:219.124533pt;}
.y5a{bottom:220.054533pt;}
.y20f{bottom:226.359067pt;}
.yb9{bottom:226.916533pt;}
.y25b{bottom:228.575867pt;}
.ydf{bottom:233.157600pt;}
.ya2{bottom:234.118267pt;}
.y12e{bottom:234.728000pt;}
.y1f2{bottom:235.053733pt;}
.y77{bottom:235.551600pt;}
.y157{bottom:235.924000pt;}
.yf2{bottom:236.296533pt;}
.y235{bottom:236.463600pt;}
.y59{bottom:238.534533pt;}
.y111{bottom:243.004533pt;}
.yb8{bottom:245.396533pt;}
.y27f{bottom:247.011200pt;}
.y156{bottom:247.970667pt;}
.yde{bottom:251.637600pt;}
.ya1{bottom:252.598267pt;}
.y1f1{bottom:253.533733pt;}
.y76{bottom:254.031600pt;}
.y20e{bottom:254.079067pt;}
.yf1{bottom:254.776533pt;}
.y58{bottom:257.014533pt;}
.y25a{bottom:257.082533pt;}
.y12d{bottom:262.448000pt;}
.yb7{bottom:263.876533pt;}
.y234{bottom:264.730267pt;}
.y27e{bottom:266.331200pt;}
.y110{bottom:266.884533pt;}
.y155{bottom:267.206667pt;}
.ydd{bottom:270.117600pt;}
.ya0{bottom:271.078267pt;}
.y1f0{bottom:272.013733pt;}
.y20d{bottom:272.559067pt;}
.yf0{bottom:273.256533pt;}
.y57{bottom:275.494533pt;}
.y259{bottom:276.349200pt;}
.y180{bottom:279.253333pt;}
.y12c{bottom:280.928000pt;}
.y75{bottom:281.751600pt;}
.yb6{bottom:282.331600pt;}
.y233{bottom:283.756933pt;}
.y27d{bottom:285.651200pt;}
.ydc{bottom:288.597600pt;}
.y9f{bottom:289.558267pt;}
.y1ef{bottom:290.493733pt;}
.y10f{bottom:290.764533pt;}
.y20c{bottom:291.039067pt;}
.yef{bottom:291.736533pt;}
.y56{bottom:293.974533pt;}
.y258{bottom:295.615867pt;}
.y17f{bottom:298.489333pt;}
.y12b{bottom:299.408000pt;}
.y74{bottom:300.231600pt;}
.yb5{bottom:300.811600pt;}
.y232{bottom:302.783600pt;}
.ydb{bottom:307.077600pt;}
.y1ee{bottom:308.973733pt;}
.y17e{bottom:310.536000pt;}
.y55{bottom:312.454533pt;}
.y27c{bottom:314.211200pt;}
.y10e{bottom:314.644533pt;}
.y9e{bottom:317.278267pt;}
.y73{bottom:318.711600pt;}
.y20b{bottom:318.759067pt;}
.yb4{bottom:319.291600pt;}
.y154{bottom:319.297867pt;}
.y257{bottom:324.122533pt;}
.yda{bottom:325.557600pt;}
.y1cc{bottom:325.588933pt;}
.y1ed{bottom:327.453733pt;}
.y17d{bottom:329.772000pt;}
.y12a{bottom:330.903867pt;}
.y54{bottom:330.934533pt;}
.y231{bottom:331.050267pt;}
.yee{bottom:332.681200pt;}
.y27b{bottom:333.531200pt;}
.y9d{bottom:335.758267pt;}
.y72{bottom:337.191600pt;}
.y20a{bottom:337.239067pt;}
.yb3{bottom:337.771600pt;}
.y153{bottom:337.777867pt;}
.y10d{bottom:338.524533pt;}
.y17c{bottom:341.818667pt;}
.y256{bottom:343.389200pt;}
.y1cb{bottom:344.068933pt;}
.y1ec{bottom:345.933733pt;}
.y53{bottom:349.414533pt;}
.yd9{bottom:353.277600pt;}
.y1ae{bottom:353.322267pt;}
.y9c{bottom:354.238267pt;}
.y71{bottom:355.671600pt;}
.y209{bottom:355.719067pt;}
.yb2{bottom:356.251600pt;}
.y152{bottom:356.257867pt;}
.y230{bottom:359.316933pt;}
.y17b{bottom:361.054667pt;}
.y27a{bottom:362.091200pt;}
.y10c{bottom:362.404533pt;}
.y1ca{bottom:362.548933pt;}
.y255{bottom:362.655867pt;}
.y1eb{bottom:364.413733pt;}
.y52{bottom:367.894533pt;}
.yd8{bottom:371.757600pt;}
.y1ad{bottom:371.796933pt;}
.y9b{bottom:372.718267pt;}
.y17a{bottom:373.101333pt;}
.y70{bottom:374.151600pt;}
.yb1{bottom:374.731600pt;}
.y151{bottom:374.737867pt;}
.y28{bottom:374.816267pt;}
.y22f{bottom:378.343600pt;}
.y1c9{bottom:381.028933pt;}
.y279{bottom:381.411200pt;}
.y1ea{bottom:382.893733pt;}
.y208{bottom:383.439067pt;}
.y2f{bottom:384.582400pt;}
.y10b{bottom:386.284533pt;}
.y51{bottom:386.295200pt;}
.yd7{bottom:390.237600pt;}
.y1ac{bottom:390.276933pt;}
.y27{bottom:390.456267pt;}
.y254{bottom:391.162533pt;}
.y9a{bottom:391.198267pt;}
.y199{bottom:392.337333pt;}
.y179{bottom:392.337467pt;}
.y6f{bottom:392.631600pt;}
.yed{bottom:393.192933pt;}
.yb0{bottom:393.211600pt;}
.y150{bottom:393.217867pt;}
.y129{bottom:394.716800pt;}
.y22e{bottom:397.370267pt;}
.y2e{bottom:397.371733pt;}
.y1c8{bottom:399.508933pt;}
.y1e9{bottom:401.373733pt;}
.y207{bottom:401.919067pt;}
.y178{bottom:404.384000pt;}
.y50{bottom:404.775200pt;}
.y26{bottom:406.096267pt;}
.y1ab{bottom:408.709733pt;}
.yd6{bottom:408.717600pt;}
.y99{bottom:409.678267pt;}
.y278{bottom:409.971200pt;}
.y2d{bottom:410.161067pt;}
.y10a{bottom:410.164533pt;}
.y253{bottom:410.429200pt;}
.y6e{bottom:411.111600pt;}
.yec{bottom:411.672933pt;}
.yaf{bottom:411.691600pt;}
.y14f{bottom:411.695200pt;}
.y128{bottom:413.196800pt;}
.y1c7{bottom:417.988933pt;}
.y206{bottom:420.399067pt;}
.y25{bottom:421.736267pt;}
.y2c{bottom:422.950400pt;}
.y4f{bottom:423.255200pt;}
.y198{bottom:423.620000pt;}
.y177{bottom:423.620133pt;}
.y22d{bottom:425.651733pt;}
.y1aa{bottom:427.189733pt;}
.yd5{bottom:427.197600pt;}
.y98{bottom:428.158267pt;}
.y1e8{bottom:429.093733pt;}
.y277{bottom:429.291200pt;}
.y6d{bottom:429.591600pt;}
.yeb{bottom:430.152933pt;}
.yae{bottom:430.171600pt;}
.y14e{bottom:430.172533pt;}
.y127{bottom:431.676800pt;}
.y109{bottom:434.044533pt;}
.y197{bottom:435.666667pt;}
.y2b{bottom:435.739733pt;}
.y1c6{bottom:436.468933pt;}
.y24{bottom:437.376267pt;}
.y252{bottom:438.935867pt;}
.y1a9{bottom:445.669733pt;}
.yd4{bottom:445.677600pt;}
.y1e7{bottom:447.573733pt;}
.y6c{bottom:448.071600pt;}
.y205{bottom:448.119067pt;}
.y2a{bottom:448.529067pt;}
.y14d{bottom:448.586533pt;}
.yea{bottom:448.632933pt;}
.y126{bottom:450.156800pt;}
.y4e{bottom:450.975200pt;}
.y22c{bottom:453.918400pt;}
.y196{bottom:454.902667pt;}
.yad{bottom:457.815867pt;}
.y276{bottom:457.851200pt;}
.y108{bottom:457.924533pt;}
.y251{bottom:458.202533pt;}
.y23{bottom:459.414533pt;}
.y29{bottom:461.318400pt;}
.y97{bottom:463.433733pt;}
.y1a8{bottom:464.149733pt;}
.yd3{bottom:464.157600pt;}
.y1c5{bottom:464.186267pt;}
.y1e6{bottom:466.053733pt;}
.y6b{bottom:466.551600pt;}
.y195{bottom:466.949333pt;}
.y14c{bottom:467.066533pt;}
.ye9{bottom:467.112933pt;}
.y125{bottom:468.636800pt;}
.y4d{bottom:469.455200pt;}
.y176{bottom:470.679333pt;}
.y22b{bottom:472.945067pt;}
.y204{bottom:475.839067pt;}
.yac{bottom:476.295867pt;}
.y107{bottom:481.806533pt;}
.y1c4{bottom:482.625333pt;}
.yd2{bottom:482.637600pt;}
.y1e5{bottom:484.533733pt;}
.y14b{bottom:485.546533pt;}
.ye8{bottom:485.592933pt;}
.y194{bottom:486.185333pt;}
.y275{bottom:486.411200pt;}
.y250{bottom:486.709200pt;}
.y124{bottom:487.116800pt;}
.y4c{bottom:487.935200pt;}
.y175{bottom:489.159333pt;}
.y1a7{bottom:491.869733pt;}
.y22a{bottom:491.971733pt;}
.y6a{bottom:494.271600pt;}
.y203{bottom:494.319067pt;}
.yab{bottom:494.775867pt;}
.y22{bottom:495.419067pt;}
.y193{bottom:498.232000pt;}
.y1a{bottom:498.442133pt;}
.y1c3{bottom:501.105333pt;}
.yd1{bottom:501.117600pt;}
.y1e4{bottom:503.013733pt;}
.y14a{bottom:504.026533pt;}
.ye7{bottom:504.072933pt;}
.y123{bottom:505.596800pt;}
.y274{bottom:505.731200pt;}
.y24f{bottom:505.975867pt;}
.y4b{bottom:506.415200pt;}
.y174{bottom:507.636667pt;}
.y21{bottom:508.208400pt;}
.y1a6{bottom:510.349733pt;}
.y69{bottom:512.751600pt;}
.y106{bottom:512.791200pt;}
.y202{bottom:512.799067pt;}
.yaa{bottom:513.255867pt;}
.y19{bottom:514.082133pt;}
.y192{bottom:517.468000pt;}
.y1c2{bottom:519.585333pt;}
.yd0{bottom:519.597600pt;}
.y229{bottom:520.238400pt;}
.y20{bottom:520.997733pt;}
.y1e3{bottom:521.493733pt;}
.y149{bottom:522.506533pt;}
.ye6{bottom:522.552933pt;}
.y122{bottom:524.076800pt;}
.y4a{bottom:524.895200pt;}
.y24e{bottom:525.242533pt;}
.y173{bottom:526.111200pt;}
.y1a5{bottom:528.829733pt;}
.y18{bottom:529.722133pt;}
.y68{bottom:531.231600pt;}
.y96{bottom:531.735867pt;}
.y1f{bottom:533.787067pt;}
.y273{bottom:534.291200pt;}
.y105{bottom:535.121200pt;}
.y1c1{bottom:538.065333pt;}
.ycf{bottom:538.077600pt;}
.y228{bottom:539.265067pt;}
.y1e2{bottom:539.973733pt;}
.y201{bottom:540.519067pt;}
.y148{bottom:540.986533pt;}
.ye5{bottom:541.032933pt;}
.y49{bottom:543.375200pt;}
.y172{bottom:544.591200pt;}
.y17{bottom:545.362133pt;}
.y1e{bottom:546.576400pt;}
.y1a4{bottom:547.309733pt;}
.y67{bottom:549.711600pt;}
.y95{bottom:550.215867pt;}
.y272{bottom:553.611200pt;}
.y24d{bottom:553.749200pt;}
.y1c0{bottom:556.545333pt;}
.yce{bottom:556.557600pt;}
.y1e1{bottom:558.453733pt;}
.y200{bottom:558.999067pt;}
.y1d{bottom:559.365733pt;}
.y147{bottom:559.466533pt;}
.ye4{bottom:559.512933pt;}
.y16{bottom:561.002133pt;}
.y48{bottom:561.855200pt;}
.y171{bottom:563.059600pt;}
.y121{bottom:565.021600pt;}
.y1a3{bottom:565.789733pt;}
.y227{bottom:567.531733pt;}
.y66{bottom:568.191600pt;}
.y94{bottom:568.695867pt;}
.y1c{bottom:572.155067pt;}
.y24c{bottom:573.015867pt;}
.y1bf{bottom:575.025333pt;}
.ycd{bottom:575.037600pt;}
.y1e0{bottom:576.933733pt;}
.y104{bottom:577.208533pt;}
.y1ff{bottom:577.479067pt;}
.y146{bottom:577.946533pt;}
.y47{bottom:580.335200pt;}
.y170{bottom:581.539600pt;}
.y271{bottom:582.171200pt;}
.y15{bottom:583.040400pt;}
.y1a2{bottom:584.269733pt;}
.y1b{bottom:584.944400pt;}
.y226{bottom:586.558400pt;}
.y65{bottom:586.671600pt;}
.y93{bottom:587.175867pt;}
.y191{bottom:587.230267pt;}
.y24b{bottom:592.282533pt;}
.y1be{bottom:593.505333pt;}
.ycc{bottom:593.517600pt;}
.y1df{bottom:595.413733pt;}
.y103{bottom:595.688533pt;}
.y145{bottom:596.426533pt;}
.y46{bottom:598.815200pt;}
.y16f{bottom:600.019600pt;}
.y270{bottom:601.491200pt;}
.y1a1{bottom:602.749733pt;}
.y64{bottom:605.151600pt;}
.y92{bottom:605.655867pt;}
.y190{bottom:605.707600pt;}
.y1bd{bottom:611.985333pt;}
.ycb{bottom:611.997600pt;}
.y1de{bottom:613.893733pt;}
.y102{bottom:614.168533pt;}
.y225{bottom:614.825067pt;}
.y144{bottom:614.906533pt;}
.y45{bottom:617.295200pt;}
.y16e{bottom:618.499600pt;}
.y24a{bottom:620.789200pt;}
.y1a0{bottom:621.229733pt;}
.y63{bottom:623.631600pt;}
.y1fe{bottom:624.093067pt;}
.y91{bottom:624.135867pt;}
.y18f{bottom:624.167867pt;}
.y120{bottom:625.555600pt;}
.y26f{bottom:630.051200pt;}
.y1bc{bottom:630.465333pt;}
.yca{bottom:630.477600pt;}
.y1dd{bottom:632.373733pt;}
.y101{bottom:632.648533pt;}
.y143{bottom:633.386533pt;}
.y224{bottom:633.851733pt;}
.y44{bottom:635.775200pt;}
.y19f{bottom:639.709733pt;}
.y249{bottom:640.055867pt;}
.y62{bottom:642.111600pt;}
.y90{bottom:642.615867pt;}
.y18e{bottom:642.647867pt;}
.y11f{bottom:644.035600pt;}
.y16d{bottom:646.211733pt;}
.y1bb{bottom:648.945333pt;}
.yc9{bottom:648.957600pt;}
.y26e{bottom:649.371200pt;}
.y1dc{bottom:650.853733pt;}
.y100{bottom:651.128533pt;}
.y142{bottom:651.866533pt;}
.y223{bottom:652.878400pt;}
.y43{bottom:654.255200pt;}
.y19e{bottom:658.189733pt;}
.y248{bottom:659.322533pt;}
.y61{bottom:660.591600pt;}
.y8f{bottom:661.095867pt;}
.y18d{bottom:661.127867pt;}
.y11e{bottom:662.515600pt;}
.y16c{bottom:664.691733pt;}
.y1ba{bottom:667.425333pt;}
.yc8{bottom:667.437600pt;}
.y1db{bottom:669.333733pt;}
.y141{bottom:670.346533pt;}
.y42{bottom:672.735200pt;}
.y19d{bottom:676.669733pt;}
.y26d{bottom:677.931200pt;}
.y60{bottom:679.071600pt;}
.y8e{bottom:679.575867pt;}
.y18c{bottom:679.607867pt;}
.y14{bottom:680.484000pt;}
.y222{bottom:681.145067pt;}
.y16b{bottom:683.171733pt;}
.yc7{bottom:685.912400pt;}
.y1da{bottom:687.813733pt;}
.y247{bottom:687.829200pt;}
.y41{bottom:691.215200pt;}
.y1b9{bottom:695.145333pt;}
.y26c{bottom:697.251200pt;}
.yff{bottom:697.742533pt;}
.y8d{bottom:698.055867pt;}
.y140{bottom:698.066533pt;}
.y18b{bottom:698.087867pt;}
.y1fd{bottom:698.235867pt;}
.y13{bottom:698.964000pt;}
.y221{bottom:700.189200pt;}
.y16a{bottom:701.616000pt;}
.y19c{bottom:704.389733pt;}
.yc6{bottom:704.392400pt;}
.y1d9{bottom:706.293733pt;}
.y246{bottom:707.095867pt;}
.y40{bottom:709.695200pt;}
.y5f{bottom:710.567600pt;}
.y11d{bottom:711.397333pt;}
.y1b8{bottom:713.625333pt;}
.y8c{bottom:716.535867pt;}
.y13f{bottom:716.546533pt;}
.y18a{bottom:716.567867pt;}
.y26b{bottom:716.571200pt;}
.y1fc{bottom:716.715867pt;}
.y12{bottom:717.441467pt;}
.y220{bottom:719.215867pt;}
.y169{bottom:720.096000pt;}
.yfe{bottom:722.400667pt;}
.y19b{bottom:722.869733pt;}
.yc5{bottom:722.872400pt;}
.y1d8{bottom:724.773733pt;}
.y3f{bottom:728.175200pt;}
.y1b7{bottom:732.105333pt;}
.y8b{bottom:735.015867pt;}
.y13e{bottom:735.026533pt;}
.y189{bottom:735.047867pt;}
.y245{bottom:735.602533pt;}
.y11c{bottom:736.055333pt;}
.y168{bottom:738.576000pt;}
.y19a{bottom:741.349733pt;}
.y1d7{bottom:743.253733pt;}
.y26a{bottom:745.131200pt;}
.yfd{bottom:747.040667pt;}
.y21f{bottom:747.482533pt;}
.y1b6{bottom:750.585333pt;}
.y8a{bottom:753.495867pt;}
.y13d{bottom:753.506533pt;}
.yc4{bottom:754.365600pt;}
.y244{bottom:754.869200pt;}
.y3e{bottom:755.895200pt;}
.y11{bottom:756.892000pt;}
.y167{bottom:757.056000pt;}
.y1fb{bottom:757.660667pt;}
.y11b{bottom:760.695333pt;}
.y1d6{bottom:761.733733pt;}
.y188{bottom:762.765333pt;}
.y269{bottom:764.451200pt;}
.y21e{bottom:766.509200pt;}
.y1b5{bottom:769.065333pt;}
.yfc{bottom:771.680667pt;}
.y89{bottom:771.975867pt;}
.y13c{bottom:771.986533pt;}
.yc3{bottom:772.845600pt;}
.y3d{bottom:774.375200pt;}
.y10{bottom:775.372000pt;}
.y166{bottom:775.536000pt;}
.y1d5{bottom:780.213733pt;}
.y187{bottom:781.242533pt;}
.y243{bottom:783.375867pt;}
.y11a{bottom:785.335333pt;}
.y21d{bottom:785.535867pt;}
.y88{bottom:790.455867pt;}
.y13b{bottom:790.466533pt;}
.y3c{bottom:792.855200pt;}
.y268{bottom:793.011200pt;}
.yf{bottom:793.849333pt;}
.y165{bottom:794.016000pt;}
.yfb{bottom:796.318667pt;}
.y1d4{bottom:798.693733pt;}
.y186{bottom:799.720000pt;}
.y1b4{bottom:800.561200pt;}
.y242{bottom:802.642533pt;}
.y87{bottom:808.935867pt;}
.y13a{bottom:808.946533pt;}
.y119{bottom:809.973200pt;}
.y3b{bottom:811.335200pt;}
.y267{bottom:812.295867pt;}
.y164{bottom:812.496000pt;}
.y21c{bottom:813.802533pt;}
.y185{bottom:818.189333pt;}
.y1fa{bottom:818.197200pt;}
.y1d3{bottom:826.413733pt;}
.y86{bottom:827.415867pt;}
.y139{bottom:827.426533pt;}
.yfa{bottom:827.681200pt;}
.y3a{bottom:829.815200pt;}
.y163{bottom:830.976000pt;}
.y241{bottom:831.149200pt;}
.y21b{bottom:832.829200pt;}
.ye{bottom:833.299867pt;}
.y1f9{bottom:836.655867pt;}
.yc2{bottom:836.666533pt;}
.y184{bottom:836.669333pt;}
.y266{bottom:840.855867pt;}
.y118{bottom:841.335867pt;}
.y1d2{bottom:844.893733pt;}
.y85{bottom:845.895867pt;}
.y138{bottom:845.906533pt;}
.y39{bottom:848.295200pt;}
.y162{bottom:849.456000pt;}
.yf9{bottom:850.011200pt;}
.y240{bottom:850.415867pt;}
.yd{bottom:851.779867pt;}
.ye3{bottom:855.135867pt;}
.yc1{bottom:855.146533pt;}
.y183{bottom:855.149333pt;}
.y265{bottom:860.175867pt;}
.y21a{bottom:861.095867pt;}
.y1d1{bottom:863.373733pt;}
.y117{bottom:863.665867pt;}
.y84{bottom:864.375867pt;}
.y1b3{bottom:864.378667pt;}
.y137{bottom:864.386533pt;}
.y38{bottom:866.775200pt;}
.yc{bottom:870.264133pt;}
.ya9{bottom:873.615867pt;}
.yc0{bottom:873.626533pt;}
.y182{bottom:873.629333pt;}
.y161{bottom:877.176000pt;}
.y23f{bottom:878.922533pt;}
.y219{bottom:880.122533pt;}
.y1d0{bottom:881.853733pt;}
.y1b2{bottom:882.858667pt;}
.y136{bottom:882.866533pt;}
.y37{bottom:885.255200pt;}
.y264{bottom:888.735867pt;}
.y83{bottom:892.095867pt;}
.ybf{bottom:892.106533pt;}
.y160{bottom:895.656000pt;}
.y23e{bottom:898.189200pt;}
.y218{bottom:899.149200pt;}
.y1cf{bottom:900.333733pt;}
.y1b1{bottom:901.338667pt;}
.y36{bottom:903.735200pt;}
.y263{bottom:908.055867pt;}
.y82{bottom:910.575867pt;}
.ybe{bottom:910.584000pt;}
.y15f{bottom:914.136000pt;}
.y217{bottom:918.175867pt;}
.y1ce{bottom:918.813733pt;}
.y285{bottom:919.815867pt;}
.y1b0{bottom:919.818667pt;}
.y35{bottom:922.215200pt;}
.y23d{bottom:926.695867pt;}
.y81{bottom:929.055867pt;}
.y135{bottom:929.061200pt;}
.y15e{bottom:932.616000pt;}
.y262{bottom:936.615867pt;}
.y1cd{bottom:937.293733pt;}
.yb{bottom:937.426800pt;}
.y1af{bottom:938.298667pt;}
.y34{bottom:940.695200pt;}
.y23c{bottom:945.962533pt;}
.y216{bottom:946.442533pt;}
.y80{bottom:947.535867pt;}
.y15d{bottom:951.096000pt;}
.y261{bottom:965.175867pt;}
.y23b{bottom:965.229200pt;}
.y215{bottom:965.469200pt;}
.y7f{bottom:966.015867pt;}
.ya{bottom:976.880000pt;}
.y33{bottom:981.640000pt;}
.y15c{bottom:982.592000pt;}
.y7e{bottom:984.495867pt;}
.y2{bottom:1035.467867pt;}
.y32{bottom:1042.616800pt;}
.y31{bottom:1061.243733pt;}
.y30{bottom:1073.243733pt;}
.h3{height:23.552000pt;}
.h6{height:27.477333pt;}
.h4{height:27.738667pt;}
.h26{height:29.183467pt;}
.h12{height:29.184000pt;}
.h5{height:29.720000pt;}
.he{height:31.402667pt;}
.hd{height:38.741333pt;}
.hc{height:39.253333pt;}
.hf{height:41.162667pt;}
.h13{height:43.584000pt;}
.h1d{height:44.160000pt;}
.h2c{height:47.893333pt;}
.ha{height:48.426667pt;}
.h18{height:48.436800pt;}
.h21{height:48.437333pt;}
.h1f{height:48.437867pt;}
.h19{height:48.447467pt;}
.h1e{height:48.448000pt;}
.h25{height:48.448533pt;}
.h23{height:48.458133pt;}
.h17{height:48.459200pt;}
.h27{height:48.469333pt;}
.h24{height:48.473067pt;}
.h28{height:48.505600pt;}
.h2b{height:48.512000pt;}
.h16{height:48.526400pt;}
.h2d{height:48.568000pt;}
.h22{height:48.569600pt;}
.h2a{height:48.590400pt;}
.h29{height:48.615467pt;}
.h1a{height:48.654933pt;}
.h20{height:48.690667pt;}
.h15{height:48.729600pt;}
.h11{height:48.744000pt;}
.hb{height:49.066667pt;}
.h1c{height:50.848000pt;}
.h1b{height:51.520000pt;}
.h2{height:53.269333pt;}
.h14{height:58.880000pt;}
.h10{height:63.786667pt;}
.h8{height:67.050667pt;}
.h9{height:67.797333pt;}
.h7{height:88.320000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x11{left:77.316000pt;}
.xd{left:83.149600pt;}
.x10{left:94.483333pt;}
.x12{left:96.208800pt;}
.x3{left:98.261200pt;}
.x13{left:110.278533pt;}
.x21{left:120.950533pt;}
.x22{left:122.676000pt;}
.x4{left:129.062800pt;}
.x5{left:134.062800pt;}
.x6{left:182.918267pt;}
.x1c{left:188.976400pt;}
.x1b{left:197.233867pt;}
.x20{left:198.260933pt;}
.x19{left:200.611067pt;}
.x1f{left:206.518267pt;}
.x18{left:222.992133pt;}
.x15{left:225.279067pt;}
.x17{left:231.249600pt;}
.xe{left:234.330667pt;}
.x16{left:302.648400pt;}
.x7{left:305.994933pt;}
.x1a{left:310.322400pt;}
.x1e{left:319.799733pt;}
.xf{left:359.212267pt;}
.x14{left:372.475067pt;}
.x1d{left:374.200533pt;}
.xb{left:475.802267pt;}
.xa{left:482.954000pt;}
.xc{left:529.001200pt;}
.x9{left:540.100667pt;}
.x8{left:572.592267pt;}
.x2{left:668.805733pt;}
}




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