
    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_28fd0ecb36ea8b988772699f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.675293;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_139308b825bc5608a684001b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.984863;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_20d69f7877effe601d2e8a12.woff')format("woff");}.ff3{font-family:ff3;line-height:1.008000;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_2a7e1d6e38169e49f3e01470.woff')format("woff");}.ff4{font-family:ff4;line-height:1.056000;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_19e2036c2e8d70628bfa4d53.woff')format("woff");}.ff5{font-family:ff5;line-height:1.056000;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_acfe4353ece538aa03a65056.woff')format("woff");}.ff6{font-family:ff6;line-height:0.979004;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_c474f4a57476bb9653bf14f1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.008000;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_08eeff4861e7c376b31f6785.woff')format("woff");}.ff8{font-family:ff8;line-height:1.050000;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_ea8fe425ea5a4d7e9d99efbc.woff')format("woff");}.ff9{font-family:ff9;line-height:1.050000;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_5ee276fdf90cc84b69ceb249.woff')format("woff");}.ffa{font-family:ffa;line-height:1.008000;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_d863dcee74387cceea3b485c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.780000;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_c9a430a430ad1884caa890e5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.895508;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3db90ffa64abb073657d95d1.woff')format("woff");}.ffd{font-family:ffd;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:41.526000px;}
.v2{vertical-align:42.930000px;}
.ls0{letter-spacing:-7.812000px;}
.ls2{letter-spacing:-5.994000px;}
.ls3{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.660000px;}
.ls4{letter-spacing:-0.540000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.396000px;}
.ls9{letter-spacing:3.102000px;}
.ls7{letter-spacing:5.214000px;}
.ls6{letter-spacing:443.232000px;}
.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;}
}
.ws7{word-spacing:-24.948000px;}
.ws1{word-spacing:-18.348000px;}
.ws24{word-spacing:-15.984000px;}
.ws42{word-spacing:-15.012000px;}
.wsba{word-spacing:-7.260000px;}
.ws4{word-spacing:-6.864000px;}
.wsc7{word-spacing:-6.600000px;}
.ws66{word-spacing:-6.534000px;}
.ws94{word-spacing:-5.280000px;}
.wscb{word-spacing:-4.818000px;}
.wsc9{word-spacing:-4.290000px;}
.wsca{word-spacing:-4.224000px;}
.ws9e{word-spacing:-4.158000px;}
.wsc5{word-spacing:-4.092000px;}
.ws5{word-spacing:-3.696000px;}
.ws6e{word-spacing:-3.630000px;}
.ws7b{word-spacing:-3.564000px;}
.ws4a{word-spacing:-3.186000px;}
.ws8d{word-spacing:-3.102000px;}
.ws2d{word-spacing:-2.970000px;}
.ws33{word-spacing:-2.916000px;}
.ws16{word-spacing:-2.904000px;}
.ws83{word-spacing:-2.862000px;}
.ws20{word-spacing:-2.772000px;}
.ws34{word-spacing:-2.700000px;}
.ws9d{word-spacing:-2.640000px;}
.wsb6{word-spacing:-2.574000px;}
.ws50{word-spacing:-2.484000px;}
.ws8f{word-spacing:-2.442000px;}
.ws3f{word-spacing:-2.376000px;}
.ws1a{word-spacing:-2.178000px;}
.ws74{word-spacing:-2.112000px;}
.ws1e{word-spacing:-2.046000px;}
.ws95{word-spacing:-1.980000px;}
.ws98{word-spacing:-1.914000px;}
.ws5a{word-spacing:-1.848000px;}
.ws28{word-spacing:-1.782000px;}
.ws79{word-spacing:-1.716000px;}
.ws56{word-spacing:-1.620000px;}
.ws78{word-spacing:-1.584000px;}
.ws69{word-spacing:-1.518000px;}
.ws44{word-spacing:-1.512000px;}
.ws49{word-spacing:-1.404000px;}
.ws4b{word-spacing:-1.350000px;}
.ws6b{word-spacing:-1.320000px;}
.ws51{word-spacing:-1.242000px;}
.ws25{word-spacing:-1.188000px;}
.ws2a{word-spacing:-1.122000px;}
.ws2f{word-spacing:-1.080000px;}
.ws30{word-spacing:-1.026000px;}
.wsb5{word-spacing:-0.990000px;}
.wsc8{word-spacing:-0.924000px;}
.ws84{word-spacing:-0.918000px;}
.wsad{word-spacing:-0.726000px;}
.ws8e{word-spacing:-0.660000px;}
.ws1f{word-spacing:-0.528000px;}
.ws6a{word-spacing:-0.462000px;}
.ws82{word-spacing:-0.432000px;}
.wsc2{word-spacing:-0.330000px;}
.ws18{word-spacing:-0.264000px;}
.ws5b{word-spacing:-0.198000px;}
.wsa1{word-spacing:-0.132000px;}
.ws29{word-spacing:-0.066000px;}
.ws40{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws5f{word-spacing:0.066000px;}
.ws5e{word-spacing:0.132000px;}
.ws90{word-spacing:0.198000px;}
.ws76{word-spacing:0.264000px;}
.ws52{word-spacing:0.270000px;}
.ws6f{word-spacing:0.330000px;}
.ws53{word-spacing:0.432000px;}
.ws7c{word-spacing:0.462000px;}
.ws4d{word-spacing:0.648000px;}
.ws26{word-spacing:0.660000px;}
.wsab{word-spacing:0.726000px;}
.ws39{word-spacing:0.756000px;}
.ws55{word-spacing:0.864000px;}
.ws60{word-spacing:0.990000px;}
.ws7a{word-spacing:1.056000px;}
.ws1c{word-spacing:1.188000px;}
.wsc{word-spacing:1.254000px;}
.ws47{word-spacing:1.296000px;}
.wsbf{word-spacing:1.320000px;}
.ws32{word-spacing:1.350000px;}
.wsb4{word-spacing:1.386000px;}
.ws3a{word-spacing:1.404000px;}
.ws63{word-spacing:1.452000px;}
.wsbe{word-spacing:1.518000px;}
.ws36{word-spacing:1.620000px;}
.ws43{word-spacing:1.728000px;}
.ws2b{word-spacing:1.782000px;}
.ws7e{word-spacing:1.848000px;}
.ws70{word-spacing:1.914000px;}
.wse{word-spacing:1.980000px;}
.ws21{word-spacing:2.178000px;}
.ws11{word-spacing:2.310000px;}
.ws35{word-spacing:2.376000px;}
.ws57{word-spacing:2.442000px;}
.ws4c{word-spacing:2.484000px;}
.ws22{word-spacing:2.508000px;}
.ws93{word-spacing:2.574000px;}
.ws31{word-spacing:2.592000px;}
.ws3e{word-spacing:2.646000px;}
.wsc3{word-spacing:2.706000px;}
.wsc6{word-spacing:2.838000px;}
.ws9{word-spacing:2.970000px;}
.ws3d{word-spacing:3.024000px;}
.wsa0{word-spacing:3.036000px;}
.ws3c{word-spacing:3.078000px;}
.wsbb{word-spacing:3.102000px;}
.ws4e{word-spacing:3.132000px;}
.ws41{word-spacing:3.186000px;}
.ws58{word-spacing:3.234000px;}
.wsb8{word-spacing:3.300000px;}
.ws97{word-spacing:3.366000px;}
.ws17{word-spacing:3.432000px;}
.ws5d{word-spacing:3.498000px;}
.wsc4{word-spacing:3.564000px;}
.wsb{word-spacing:3.696000px;}
.ws7d{word-spacing:3.762000px;}
.wsa4{word-spacing:3.894000px;}
.ws2c{word-spacing:3.960000px;}
.wsac{word-spacing:4.026000px;}
.ws6d{word-spacing:4.092000px;}
.ws75{word-spacing:4.158000px;}
.wsa2{word-spacing:4.224000px;}
.wsd{word-spacing:4.290000px;}
.wsa6{word-spacing:4.356000px;}
.ws99{word-spacing:4.422000px;}
.ws48{word-spacing:4.428000px;}
.ws10{word-spacing:4.620000px;}
.wsf{word-spacing:4.752000px;}
.wsb3{word-spacing:4.818000px;}
.ws6c{word-spacing:4.884000px;}
.ws37{word-spacing:4.914000px;}
.ws12{word-spacing:4.950000px;}
.wsbc{word-spacing:5.148000px;}
.wsb7{word-spacing:5.214000px;}
.ws38{word-spacing:5.238000px;}
.wsb1{word-spacing:5.346000px;}
.ws1b{word-spacing:5.412000px;}
.ws77{word-spacing:5.544000px;}
.ws61{word-spacing:5.610000px;}
.ws85{word-spacing:5.724000px;}
.ws68{word-spacing:5.808000px;}
.wsa3{word-spacing:5.940000px;}
.ws54{word-spacing:5.994000px;}
.ws2e{word-spacing:6.006000px;}
.ws27{word-spacing:6.138000px;}
.ws72{word-spacing:6.402000px;}
.ws19{word-spacing:6.468000px;}
.wsb2{word-spacing:6.534000px;}
.ws62{word-spacing:6.600000px;}
.ws73{word-spacing:6.732000px;}
.ws59{word-spacing:6.798000px;}
.ws8{word-spacing:7.392000px;}
.ws4f{word-spacing:7.506000px;}
.wsa5{word-spacing:7.656000px;}
.ws3b{word-spacing:7.668000px;}
.wsbd{word-spacing:7.722000px;}
.ws0{word-spacing:7.728000px;}
.ws14{word-spacing:7.986000px;}
.ws46{word-spacing:8.100000px;}
.wsb0{word-spacing:8.184000px;}
.wsa8{word-spacing:8.316000px;}
.wsa{word-spacing:8.382000px;}
.ws6{word-spacing:8.448000px;}
.wsaa{word-spacing:8.514000px;}
.ws5c{word-spacing:8.646000px;}
.ws64{word-spacing:8.844000px;}
.ws67{word-spacing:8.976000px;}
.ws71{word-spacing:9.108000px;}
.ws9f{word-spacing:9.240000px;}
.ws3{word-spacing:9.438000px;}
.ws65{word-spacing:9.768000px;}
.ws13{word-spacing:10.032000px;}
.wsa7{word-spacing:10.230000px;}
.ws1d{word-spacing:10.692000px;}
.wsaf{word-spacing:10.956000px;}
.wsa9{word-spacing:11.286000px;}
.ws9a{word-spacing:12.870000px;}
.wsae{word-spacing:13.002000px;}
.ws9b{word-spacing:13.332000px;}
.ws9c{word-spacing:13.596000px;}
.ws15{word-spacing:13.794000px;}
.ws96{word-spacing:14.586000px;}
.wsb9{word-spacing:15.906000px;}
.wsc1{word-spacing:17.358000px;}
.wsc0{word-spacing:17.952000px;}
.ws45{word-spacing:36.396000px;}
.ws7f{word-spacing:93.150000px;}
.ws80{word-spacing:100.656000px;}
.ws86{word-spacing:118.530000px;}
.ws87{word-spacing:133.542000px;}
.ws81{word-spacing:133.817400px;}
.ws92{word-spacing:196.722000px;}
.ws88{word-spacing:207.527400px;}
.ws8b{word-spacing:225.612000px;}
.ws8c{word-spacing:233.118000px;}
.ws8a{word-spacing:835.650000px;}
.ws89{word-spacing:1016.069400px;}
.ws23{word-spacing:1143.617400px;}
.ws91{word-spacing:1793.772000px;}
._27{margin-left:-443.232000px;}
._26{margin-left:-17.766000px;}
._4{margin-left:-10.091400px;}
._a{margin-left:-8.515800px;}
._8{margin-left:-7.171200px;}
._0{margin-left:-6.134400px;}
._7{margin-left:-4.714200px;}
._5{margin-left:-3.706200px;}
._2{margin-left:-2.203200px;}
._3{margin-left:-1.194600px;}
._6{width:1.053000px;}
._1{width:2.246400px;}
._9{width:5.994000px;}
._28{width:14.793600px;}
._2c{width:15.846600px;}
._2a{width:37.290000px;}
._29{width:46.200000px;}
._e{width:48.708000px;}
._d{width:51.282000px;}
._f{width:52.734000px;}
._2b{width:54.780000px;}
._c{width:118.098000px;}
._15{width:133.542000px;}
._10{width:154.602000px;}
._12{width:180.144000px;}
._22{width:194.346000px;}
._16{width:229.710600px;}
._23{width:232.956000px;}
._19{width:240.624000px;}
._24{width:243.756000px;}
._25{width:254.286000px;}
._17{width:302.832000px;}
._b{width:416.124000px;}
._14{width:650.680200px;}
._13{width:656.424000px;}
._11{width:718.416000px;}
._18{width:899.856000px;}
._1d{width:1282.122000px;}
._1f{width:1318.237200px;}
._1b{width:1335.852000px;}
._1c{width:1379.970000px;}
._1e{width:1416.042000px;}
._20{width:1433.970000px;}
._21{width:1451.770200px;}
._1a{width:1496.016000px;}
.fc7{color:rgb(71,73,75);}
.fc6{color:rgb(22,93,167);}
.fc3{color:rgb(111,144,202);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(46,42,43);}
.fc8{color:rgb(238,39,46);}
.fc4{color:rgb(124,153,207);}
.fc1{color:rgb(31,97,171);}
.fc0{color:rgb(41,102,175);}
.fs3{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:71.467650px;}
.y1b9{bottom:124.116450px;}
.y175{bottom:124.350150px;}
.y41{bottom:129.863250px;}
.yd1{bottom:132.929400px;}
.y17{bottom:133.352550px;}
.y1{bottom:136.896000px;}
.y198{bottom:137.658600px;}
.y1df{bottom:138.296100px;}
.y75{bottom:144.082200px;}
.y1b8{bottom:145.120950px;}
.y174{bottom:145.354650px;}
.y40{bottom:150.867750px;}
.yd0{bottom:153.933900px;}
.y151{bottom:158.158800px;}
.y197{bottom:158.663100px;}
.y1de{bottom:159.300600px;}
.ya7{bottom:159.678000px;}
.y1b7{bottom:166.125450px;}
.y74{bottom:171.824700px;}
.y3f{bottom:171.872250px;}
.y173{bottom:174.856650px;}
.ycf{bottom:174.938400px;}
.y150{bottom:179.623800px;}
.y196{bottom:179.667600px;}
.y1dd{bottom:180.305100px;}
.y73{bottom:188.321700px;}
.ya6{bottom:189.180000px;}
.y3e{bottom:192.876750px;}
.y172{bottom:195.861150px;}
.yce{bottom:195.942900px;}
.y1b6{bottom:199.884450px;}
.y195{bottom:200.672100px;}
.y14f{bottom:201.088800px;}
.y1dc{bottom:201.309600px;}
.y72{bottom:204.818700px;}
.ya5{bottom:210.184500px;}
.y6e{bottom:213.053700px;}
.y3d{bottom:213.881250px;}
.y171{bottom:216.865650px;}
.ycd{bottom:216.947400px;}
.y1b5{bottom:220.888950px;}
.y71{bottom:221.315700px;}
.y194{bottom:221.676600px;}
.y14e{bottom:222.553800px;}
.y16{bottom:229.024200px;}
.ya4{bottom:231.189000px;}
.y1db{bottom:235.068600px;}
.y70{bottom:237.812700px;}
.y193{bottom:242.681100px;}
.y14d{bottom:244.018800px;}
.y3c{bottom:247.640250px;}
.y15{bottom:250.028700px;}
.ycc{bottom:250.706400px;}
.yf1{bottom:251.180550px;}
.y6f{bottom:254.309700px;}
.y1b4{bottom:254.647950px;}
.y1da{bottom:256.073100px;}
.y170{bottom:259.125600px;}
.ya3{bottom:264.948000px;}
.y14c{bottom:265.483800px;}
.y3b{bottom:268.644750px;}
.y14{bottom:271.033200px;}
.ycb{bottom:271.710900px;}
.yf0{bottom:272.185050px;}
.y1b3{bottom:275.652450px;}
.y6d{bottom:275.761200px;}
.y1d9{bottom:277.077600px;}
.y192{bottom:284.940900px;}
.y126{bottom:284.954250px;}
.y14b{bottom:286.948800px;}
.y3a{bottom:289.649250px;}
.ya2{bottom:290.193000px;}
.y13{bottom:292.037700px;}
.y6b{bottom:292.258200px;}
.yca{bottom:292.715400px;}
.y1b2{bottom:296.656950px;}
.y125{bottom:301.451250px;}
.y123{bottom:303.570750px;}
.y16f{bottom:305.644350px;}
.y14a{bottom:308.413800px;}
.y6c{bottom:308.755200px;}
.y39{bottom:310.653750px;}
.y1d8{bottom:310.836600px;}
.y12{bottom:313.042200px;}
.yc9{bottom:313.719900px;}
.yef{bottom:314.444850px;}
.ya1{bottom:315.438000px;}
.y124{bottom:322.200750px;}
.y16e{bottom:326.648850px;}
.y149{bottom:329.878800px;}
.y6a{bottom:330.220200px;}
.y1b1{bottom:330.415950px;}
.y191{bottom:331.434600px;}
.y38{bottom:331.658250px;}
.y1d7{bottom:331.841100px;}
.yc8{bottom:334.724400px;}
.ya0{bottom:344.940000px;}
.y69{bottom:346.717200px;}
.y148{bottom:351.343800px;}
.y1b0{bottom:351.420450px;}
.y16d{bottom:351.893850px;}
.y190{bottom:352.439100px;}
.y37{bottom:352.662750px;}
.y122{bottom:352.724250px;}
.y1d6{bottom:352.845600px;}
.y66{bottom:354.965700px;}
.yee{bottom:360.926550px;}
.y121{bottom:363.092250px;}
.y68{bottom:363.214200px;}
.y9f{bottom:365.944500px;}
.y1af{bottom:372.424950px;}
.y147{bottom:372.808800px;}
.y18f{bottom:373.443600px;}
.y36{bottom:373.667250px;}
.yc7{bottom:376.984200px;}
.y16c{bottom:377.138850px;}
.y67{bottom:379.711200px;}
.yed{bottom:381.931050px;}
.y11c{bottom:384.597750px;}
.y1d5{bottom:386.604600px;}
.y146{bottom:394.273800px;}
.y18e{bottom:394.448100px;}
.y35{bottom:394.671750px;}
.y11b{bottom:401.094750px;}
.y65{bottom:401.176200px;}
.yec{bottom:402.935550px;}
.y120{bottom:403.997250px;}
.y1ae{bottom:406.183950px;}
.y16b{bottom:406.640850px;}
.y1d4{bottom:407.609100px;}
.y11{bottom:407.768700px;}
.y9e{bottom:408.204300px;}
.y18d{bottom:415.452600px;}
.y64{bottom:417.673200px;}
.y145{bottom:420.414450px;}
.y11f{bottom:420.494250px;}
.y11d{bottom:422.613750px;}
.yc6{bottom:423.430800px;}
.y1ad{bottom:427.188450px;}
.y16a{bottom:427.645350px;}
.y34{bottom:428.430750px;}
.y1d3{bottom:428.613600px;}
.y10{bottom:428.773200px;}
.y63{bottom:434.170200px;}
.yeb{bottom:436.694550px;}
.y144{bottom:436.911450px;}
.y11e{bottom:441.243750px;}
.y5f{bottom:442.405200px;}
.yc5{bottom:444.435300px;}
.y1ac{bottom:448.192950px;}
.y33{bottom:449.435250px;}
.y1d2{bottom:449.618100px;}
.yf{bottom:449.777700px;}
.y62{bottom:450.667200px;}
.yea{bottom:457.699050px;}
.y18c{bottom:457.712550px;}
.y11a{bottom:463.505250px;}
.y61{bottom:467.164200px;}
.yc4{bottom:469.680300px;}
.y169{bottom:469.905150px;}
.y32{bottom:470.439750px;}
.y9d{bottom:470.558250px;}
.y143{bottom:474.653250px;}
.ye9{bottom:478.703550px;}
.ye{bottom:479.279700px;}
.y119{bottom:480.002250px;}
.y117{bottom:482.121750px;}
.y1d1{bottom:483.377100px;}
.y60{bottom:483.661200px;}
.y1ab{bottom:490.452750px;}
.yc3{bottom:490.684800px;}
.y142{bottom:495.657750px;}
.y9c{bottom:495.884250px;}
.ye8{bottom:499.708050px;}
.yd{bottom:500.284200px;}
.y118{bottom:500.751750px;}
.y18b{bottom:504.183900px;}
.y31{bottom:504.198750px;}
.y1d0{bottom:504.381600px;}
.y5e{bottom:505.112700px;}
.yc2{bottom:511.689300px;}
.y9b{bottom:512.381250px;}
.y168{bottom:516.391350px;}
.y141{bottom:516.662250px;}
.y98{bottom:520.629750px;}
.ye7{bottom:520.712550px;}
.yc{bottom:521.288700px;}
.y5d{bottom:521.609700px;}
.y18a{bottom:525.188400px;}
.y30{bottom:525.203250px;}
.y1cf{bottom:525.386100px;}
.y9a{bottom:528.878250px;}
.y5a{bottom:529.858200px;}
.y116{bottom:531.275250px;}
.yc1{bottom:536.934300px;}
.y167{bottom:537.395850px;}
.y140{bottom:537.666750px;}
.y5c{bottom:538.106700px;}
.y1aa{bottom:539.955600px;}
.y115{bottom:541.643250px;}
.y99{bottom:545.375250px;}
.y189{bottom:546.192900px;}
.y2f{bottom:546.207750px;}
.yb{bottom:550.790700px;}
.y5b{bottom:554.603700px;}
.yc0{bottom:557.938800px;}
.y166{bottom:558.400350px;}
.y13f{bottom:558.671250px;}
.y1ce{bottom:559.145100px;}
.y1a9{bottom:560.960100px;}
.ye6{bottom:562.972350px;}
.y97{bottom:566.840250px;}
.y188{bottom:567.197400px;}
.ya{bottom:571.795200px;}
.y59{bottom:576.068700px;}
.ybf{bottom:578.943300px;}
.y2e{bottom:579.966750px;}
.y1cd{bottom:580.149600px;}
.y1a8{bottom:581.964600px;}
.y114{bottom:582.143250px;}
.y95{bottom:583.337250px;}
.y187{bottom:588.201900px;}
.y10d{bottom:589.608750px;}
.y165{bottom:592.159350px;}
.y57{bottom:592.565700px;}
.y9{bottom:592.799700px;}
.y13e{bottom:598.262400px;}
.y113{bottom:598.640250px;}
.y96{bottom:599.834250px;}
.ybe{bottom:599.947800px;}
.y2d{bottom:600.971250px;}
.y1cc{bottom:601.154100px;}
.y58{bottom:609.062700px;}
.y186{bottom:609.206400px;}
.ye5{bottom:609.465600px;}
.y164{bottom:613.163850px;}
.y110{bottom:619.389750px;}
.y94{bottom:621.299250px;}
.y8{bottom:622.301700px;}
.y13d{bottom:623.777400px;}
.y1a7{bottom:624.224400px;}
.ybd{bottom:625.192800px;}
.y185{bottom:630.210900px;}
.ye4{bottom:630.470100px;}
.y56{bottom:630.527700px;}
.y163{bottom:634.168350px;}
.y1cb{bottom:634.913100px;}
.y112{bottom:635.886750px;}
.y92{bottom:637.796250px;}
.y2c{bottom:643.231050px;}
.y7{bottom:643.306200px;}
.ybc{bottom:646.197300px;}
.y54{bottom:647.024700px;}
.y13c{bottom:649.292400px;}
.y184{bottom:651.215400px;}
.y93{bottom:654.293250px;}
.y162{bottom:655.172850px;}
.ye3{bottom:655.715100px;}
.y1ca{bottom:655.917600px;}
.y111{bottom:656.636250px;}
.y55{bottom:663.521700px;}
.y6{bottom:664.310700px;}
.ybb{bottom:667.201800px;}
.y183{bottom:672.219900px;}
.y1a6{bottom:673.686450px;}
.y13b{bottom:674.807400px;}
.y91{bottom:675.758250px;}
.ye2{bottom:676.719600px;}
.y10f{bottom:686.754750px;}
.y53{bottom:687.673200px;}
.yba{bottom:688.206300px;}
.y1c9{bottom:689.676600px;}
.y90{bottom:692.255250px;}
.y182{bottom:693.224400px;}
.y1a5{bottom:694.690950px;}
.y10e{bottom:697.122750px;}
.y161{bottom:697.432650px;}
.y13a{bottom:700.322400px;}
.y8d{bottom:700.503750px;}
.y8f{bottom:708.752250px;}
.yb9{bottom:709.210800px;}
.ye1{bottom:710.478600px;}
.y1c8{bottom:710.681100px;}
.y1a4{bottom:715.695450px;}
.y52{bottom:716.495100px;}
.y8e{bottom:725.249250px;}
.y2b{bottom:730.840650px;}
.ye0{bottom:731.483100px;}
.y1c7{bottom:731.685600px;}
.y51{bottom:732.992100px;}
.yb8{bottom:734.455800px;}
.y181{bottom:735.484200px;}
.y139{bottom:736.979250px;}
.y10c{bottom:738.027750px;}
.y5{bottom:740.622300px;}
.y160{bottom:743.940000px;}
.y8c{bottom:746.714250px;}
.y1a3{bottom:749.454450px;}
.y2a{bottom:751.845150px;}
.ydf{bottom:752.487600px;}
.y10b{bottom:754.524750px;}
.yb7{bottom:755.460300px;}
.y109{bottom:756.644250px;}
.y138{bottom:757.983750px;}
.y50{bottom:762.243450px;}
.y8b{bottom:763.211250px;}
.y15f{bottom:764.944500px;}
.y1c6{bottom:765.444600px;}
.y1a2{bottom:770.458950px;}
.yde{bottom:773.492100px;}
.y10a{bottom:775.274250px;}
.yb6{bottom:776.464800px;}
.y137{bottom:778.988250px;}
.y4{bottom:779.610300px;}
.y88{bottom:779.708250px;}
.y180{bottom:781.978050px;}
.y4f{bottom:783.247950px;}
.y29{bottom:785.601000px;}
.y1c5{bottom:786.449100px;}
.y1a1{bottom:791.463450px;}
.y1e3{bottom:794.699100px;}
.y8a{bottom:796.205250px;}
.y108{bottom:797.144250px;}
.yb5{bottom:801.709800px;}
.y17f{bottom:802.982550px;}
.y1c4{bottom:807.453600px;}
.y89{bottom:812.702250px;}
.y15e{bottom:813.795450px;}
.y1e2{bottom:815.703600px;}
.ydd{bottom:815.751900px;}
.y107{bottom:817.893750px;}
.y3{bottom:818.598300px;}
.yb4{bottom:822.714300px;}
.y17e{bottom:823.987050px;}
.y1a0{bottom:825.222450px;}
.y4e{bottom:825.507750px;}
.y136{bottom:825.823350px;}
.y104{bottom:826.142250px;}
.y1c3{bottom:828.458100px;}
.y87{bottom:834.167250px;}
.y106{bottom:834.390750px;}
.y28{bottom:835.058850px;}
.y1e1{bottom:836.708100px;}
.y15d{bottom:839.310450px;}
.yb3{bottom:843.718800px;}
.y17d{bottom:844.991550px;}
.y19f{bottom:846.226950px;}
.y135{bottom:847.288350px;}
.y1c2{bottom:849.462600px;}
.y86{bottom:850.664250px;}
.y105{bottom:855.140250px;}
.y27{bottom:856.063350px;}
.y2{bottom:857.586300px;}
.y134{bottom:858.020850px;}
.ydc{bottom:862.233600px;}
.yb2{bottom:864.723300px;}
.y15c{bottom:864.825450px;}
.y17c{bottom:865.996050px;}
.y83{bottom:867.161250px;}
.y19e{bottom:867.231450px;}
.y1c1{bottom:870.467100px;}
.y4d{bottom:874.971600px;}
.y103{bottom:876.605250px;}
.y26{bottom:877.067850px;}
.ydb{bottom:883.238100px;}
.y85{bottom:883.658250px;}
.yf6{bottom:885.231750px;}
.yb1{bottom:885.727800px;}
.y133{bottom:890.218350px;}
.y15b{bottom:890.340450px;}
.y1e0{bottom:891.471600px;}
.y102{bottom:893.102250px;}
.y4c{bottom:895.976100px;}
.y25{bottom:898.072350px;}
.y84{bottom:900.155250px;}
.y19d{bottom:900.990450px;}
.yf5{bottom:901.728750px;}
.yff{bottom:903.470250px;}
.y1c0{bottom:904.226100px;}
.yda{bottom:904.242600px;}
.y17b{bottom:908.256000px;}
.y101{bottom:909.599250px;}
.y132{bottom:911.683350px;}
.yb0{bottom:915.229800px;}
.y15a{bottom:915.855450px;}
.y4b{bottom:916.980600px;}
.y24{bottom:919.076850px;}
.y82{bottom:921.620250px;}
.y19c{bottom:921.994950px;}
.y130{bottom:922.415850px;}
.y1bf{bottom:925.230600px;}
.y100{bottom:930.348750px;}
.y131{bottom:933.148350px;}
.yaf{bottom:936.234300px;}
.yd9{bottom:938.001600px;}
.y81{bottom:938.117250px;}
.y23{bottom:940.081350px;}
.y19b{bottom:942.999450px;}
.y159{bottom:944.011350px;}
.y1be{bottom:946.235100px;}
.y4a{bottom:950.739600px;}
.yfe{bottom:952.218750px;}
.y7c{bottom:954.600750px;}
.y12b{bottom:954.613350px;}
.y80{bottom:954.614250px;}
.y17a{bottom:954.749100px;}
.yd8{bottom:959.006100px;}
.y22{bottom:961.085850px;}
.y19a{bottom:964.003950px;}
.yfd{bottom:968.715750px;}
.yae{bottom:969.993300px;}
.yfb{bottom:970.835250px;}
.y7b{bottom:971.097750px;}
.y7f{bottom:971.111250px;}
.y49{bottom:971.744100px;}
.y179{bottom:975.753600px;}
.y12f{bottom:976.078350px;}
.y1bd{bottom:979.994100px;}
.y21{bottom:982.090350px;}
.yd7{bottom:984.251100px;}
.y7e{bottom:987.608250px;}
.yfc{bottom:989.465250px;}
.y158{bottom:990.599850px;}
.yad{bottom:990.997800px;}
.y48{bottom:992.748600px;}
.y178{bottom:996.758100px;}
.y12e{bottom:997.543350px;}
.y1bc{bottom:1000.998600px;}
.y20{bottom:1003.094850px;}
.y7d{bottom:1004.105250px;}
.yd6{bottom:1005.255600px;}
.y199{bottom:1006.263750px;}
.yfa{bottom:1011.740250px;}
.yac{bottom:1012.002300px;}
.y157{bottom:1012.064850px;}
.y47{bottom:1013.753100px;}
.y129{bottom:1018.994850px;}
.y12d{bottom:1019.008350px;}
.y1bb{bottom:1022.003100px;}
.y1f{bottom:1024.099350px;}
.y7a{bottom:1025.556750px;}
.yd5{bottom:1026.260100px;}
.yf9{bottom:1028.237250px;}
.yf7{bottom:1030.356750px;}
.y177{bottom:1030.517100px;}
.yab{bottom:1033.006800px;}
.y156{bottom:1033.529850px;}
.y46{bottom:1034.757600px;}
.y12c{bottom:1040.473350px;}
.y78{bottom:1042.053750px;}
.y1ba{bottom:1043.007600px;}
.y1e{bottom:1045.103850px;}
.yd4{bottom:1047.264600px;}
.yf8{bottom:1048.986750px;}
.y176{bottom:1051.521600px;}
.yaa{bottom:1054.011300px;}
.y155{bottom:1054.994850px;}
.y45{bottom:1055.762100px;}
.y79{bottom:1058.550750px;}
.y12a{bottom:1061.924850px;}
.y1d{bottom:1066.108350px;}
.yd3{bottom:1068.269100px;}
.yf4{bottom:1074.987750px;}
.ya9{bottom:1075.015800px;}
.y154{bottom:1076.459850px;}
.y44{bottom:1076.766600px;}
.y128{bottom:1083.389850px;}
.y77{bottom:1086.293250px;}
.y1c{bottom:1087.112850px;}
.yd2{bottom:1089.273600px;}
.y43{bottom:1097.771100px;}
.y153{bottom:1097.924850px;}
.yf3{bottom:1101.026100px;}
.y127{bottom:1105.278600px;}
.y76{bottom:1116.708750px;}
.ya8{bottom:1117.275600px;}
.y42{bottom:1118.775600px;}
.y152{bottom:1119.389850px;}
.y1b{bottom:1120.868850px;}
.yf2{bottom:1121.775600px;}
.y19{bottom:1180.236150px;}
.y18{bottom:1198.231650px;}
.h5{height:40.500000px;}
.h7{height:41.472000px;}
.hb{height:49.896000px;}
.h4{height:50.688000px;}
.h8{height:55.296000px;}
.h2{height:55.986328px;}
.h6{height:63.000000px;}
.h9{height:82.998000px;}
.ha{height:84.402000px;}
.h3{height:108.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:106.299150px;}
.x4{left:108.399750px;}
.xb{left:112.627950px;}
.xe{left:125.802150px;}
.x7{left:126.858150px;}
.xd{left:128.805150px;}
.x10{left:131.725050px;}
.x1d{left:136.889250px;}
.x14{left:142.502250px;}
.x8{left:144.408300px;}
.x1c{left:149.132250px;}
.xf{left:151.294650px;}
.x18{left:155.274750px;}
.x1a{left:160.877250px;}
.x1b{left:162.753750px;}
.xa{left:165.304950px;}
.x17{left:176.428500px;}
.x19{left:239.798250px;}
.x11{left:243.599550px;}
.x13{left:245.462550px;}
.x15{left:250.029750px;}
.x2{left:253.047750px;}
.xc{left:261.127950px;}
.x12{left:289.405050px;}
.x3{left:299.559750px;}
.x5{left:321.123750px;}
.x9{left:425.950800px;}
.x16{left:715.023750px;}
.x1{left:816.378000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:36.912000pt;}
.v2{vertical-align:38.160000pt;}
.ls0{letter-spacing:-6.944000pt;}
.ls2{letter-spacing:-5.328000pt;}
.ls3{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.586667pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.352000pt;}
.ls9{letter-spacing:2.757333pt;}
.ls7{letter-spacing:4.634667pt;}
.ls6{letter-spacing:393.984000pt;}
.ws7{word-spacing:-22.176000pt;}
.ws1{word-spacing:-16.309333pt;}
.ws24{word-spacing:-14.208000pt;}
.ws42{word-spacing:-13.344000pt;}
.wsba{word-spacing:-6.453333pt;}
.ws4{word-spacing:-6.101333pt;}
.wsc7{word-spacing:-5.866667pt;}
.ws66{word-spacing:-5.808000pt;}
.ws94{word-spacing:-4.693333pt;}
.wscb{word-spacing:-4.282667pt;}
.wsc9{word-spacing:-3.813333pt;}
.wsca{word-spacing:-3.754667pt;}
.ws9e{word-spacing:-3.696000pt;}
.wsc5{word-spacing:-3.637333pt;}
.ws5{word-spacing:-3.285333pt;}
.ws6e{word-spacing:-3.226667pt;}
.ws7b{word-spacing:-3.168000pt;}
.ws4a{word-spacing:-2.832000pt;}
.ws8d{word-spacing:-2.757333pt;}
.ws2d{word-spacing:-2.640000pt;}
.ws33{word-spacing:-2.592000pt;}
.ws16{word-spacing:-2.581333pt;}
.ws83{word-spacing:-2.544000pt;}
.ws20{word-spacing:-2.464000pt;}
.ws34{word-spacing:-2.400000pt;}
.ws9d{word-spacing:-2.346667pt;}
.wsb6{word-spacing:-2.288000pt;}
.ws50{word-spacing:-2.208000pt;}
.ws8f{word-spacing:-2.170667pt;}
.ws3f{word-spacing:-2.112000pt;}
.ws1a{word-spacing:-1.936000pt;}
.ws74{word-spacing:-1.877333pt;}
.ws1e{word-spacing:-1.818667pt;}
.ws95{word-spacing:-1.760000pt;}
.ws98{word-spacing:-1.701333pt;}
.ws5a{word-spacing:-1.642667pt;}
.ws28{word-spacing:-1.584000pt;}
.ws79{word-spacing:-1.525333pt;}
.ws56{word-spacing:-1.440000pt;}
.ws78{word-spacing:-1.408000pt;}
.ws69{word-spacing:-1.349333pt;}
.ws44{word-spacing:-1.344000pt;}
.ws49{word-spacing:-1.248000pt;}
.ws4b{word-spacing:-1.200000pt;}
.ws6b{word-spacing:-1.173333pt;}
.ws51{word-spacing:-1.104000pt;}
.ws25{word-spacing:-1.056000pt;}
.ws2a{word-spacing:-0.997333pt;}
.ws2f{word-spacing:-0.960000pt;}
.ws30{word-spacing:-0.912000pt;}
.wsb5{word-spacing:-0.880000pt;}
.wsc8{word-spacing:-0.821333pt;}
.ws84{word-spacing:-0.816000pt;}
.wsad{word-spacing:-0.645333pt;}
.ws8e{word-spacing:-0.586667pt;}
.ws1f{word-spacing:-0.469333pt;}
.ws6a{word-spacing:-0.410667pt;}
.ws82{word-spacing:-0.384000pt;}
.wsc2{word-spacing:-0.293333pt;}
.ws18{word-spacing:-0.234667pt;}
.ws5b{word-spacing:-0.176000pt;}
.wsa1{word-spacing:-0.117333pt;}
.ws29{word-spacing:-0.058667pt;}
.ws40{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.058667pt;}
.ws5e{word-spacing:0.117333pt;}
.ws90{word-spacing:0.176000pt;}
.ws76{word-spacing:0.234667pt;}
.ws52{word-spacing:0.240000pt;}
.ws6f{word-spacing:0.293333pt;}
.ws53{word-spacing:0.384000pt;}
.ws7c{word-spacing:0.410667pt;}
.ws4d{word-spacing:0.576000pt;}
.ws26{word-spacing:0.586667pt;}
.wsab{word-spacing:0.645333pt;}
.ws39{word-spacing:0.672000pt;}
.ws55{word-spacing:0.768000pt;}
.ws60{word-spacing:0.880000pt;}
.ws7a{word-spacing:0.938667pt;}
.ws1c{word-spacing:1.056000pt;}
.wsc{word-spacing:1.114667pt;}
.ws47{word-spacing:1.152000pt;}
.wsbf{word-spacing:1.173333pt;}
.ws32{word-spacing:1.200000pt;}
.wsb4{word-spacing:1.232000pt;}
.ws3a{word-spacing:1.248000pt;}
.ws63{word-spacing:1.290667pt;}
.wsbe{word-spacing:1.349333pt;}
.ws36{word-spacing:1.440000pt;}
.ws43{word-spacing:1.536000pt;}
.ws2b{word-spacing:1.584000pt;}
.ws7e{word-spacing:1.642667pt;}
.ws70{word-spacing:1.701333pt;}
.wse{word-spacing:1.760000pt;}
.ws21{word-spacing:1.936000pt;}
.ws11{word-spacing:2.053333pt;}
.ws35{word-spacing:2.112000pt;}
.ws57{word-spacing:2.170667pt;}
.ws4c{word-spacing:2.208000pt;}
.ws22{word-spacing:2.229333pt;}
.ws93{word-spacing:2.288000pt;}
.ws31{word-spacing:2.304000pt;}
.ws3e{word-spacing:2.352000pt;}
.wsc3{word-spacing:2.405333pt;}
.wsc6{word-spacing:2.522667pt;}
.ws9{word-spacing:2.640000pt;}
.ws3d{word-spacing:2.688000pt;}
.wsa0{word-spacing:2.698667pt;}
.ws3c{word-spacing:2.736000pt;}
.wsbb{word-spacing:2.757333pt;}
.ws4e{word-spacing:2.784000pt;}
.ws41{word-spacing:2.832000pt;}
.ws58{word-spacing:2.874667pt;}
.wsb8{word-spacing:2.933333pt;}
.ws97{word-spacing:2.992000pt;}
.ws17{word-spacing:3.050667pt;}
.ws5d{word-spacing:3.109333pt;}
.wsc4{word-spacing:3.168000pt;}
.wsb{word-spacing:3.285333pt;}
.ws7d{word-spacing:3.344000pt;}
.wsa4{word-spacing:3.461333pt;}
.ws2c{word-spacing:3.520000pt;}
.wsac{word-spacing:3.578667pt;}
.ws6d{word-spacing:3.637333pt;}
.ws75{word-spacing:3.696000pt;}
.wsa2{word-spacing:3.754667pt;}
.wsd{word-spacing:3.813333pt;}
.wsa6{word-spacing:3.872000pt;}
.ws99{word-spacing:3.930667pt;}
.ws48{word-spacing:3.936000pt;}
.ws10{word-spacing:4.106667pt;}
.wsf{word-spacing:4.224000pt;}
.wsb3{word-spacing:4.282667pt;}
.ws6c{word-spacing:4.341333pt;}
.ws37{word-spacing:4.368000pt;}
.ws12{word-spacing:4.400000pt;}
.wsbc{word-spacing:4.576000pt;}
.wsb7{word-spacing:4.634667pt;}
.ws38{word-spacing:4.656000pt;}
.wsb1{word-spacing:4.752000pt;}
.ws1b{word-spacing:4.810667pt;}
.ws77{word-spacing:4.928000pt;}
.ws61{word-spacing:4.986667pt;}
.ws85{word-spacing:5.088000pt;}
.ws68{word-spacing:5.162667pt;}
.wsa3{word-spacing:5.280000pt;}
.ws54{word-spacing:5.328000pt;}
.ws2e{word-spacing:5.338667pt;}
.ws27{word-spacing:5.456000pt;}
.ws72{word-spacing:5.690667pt;}
.ws19{word-spacing:5.749333pt;}
.wsb2{word-spacing:5.808000pt;}
.ws62{word-spacing:5.866667pt;}
.ws73{word-spacing:5.984000pt;}
.ws59{word-spacing:6.042667pt;}
.ws8{word-spacing:6.570667pt;}
.ws4f{word-spacing:6.672000pt;}
.wsa5{word-spacing:6.805333pt;}
.ws3b{word-spacing:6.816000pt;}
.wsbd{word-spacing:6.864000pt;}
.ws0{word-spacing:6.869333pt;}
.ws14{word-spacing:7.098667pt;}
.ws46{word-spacing:7.200000pt;}
.wsb0{word-spacing:7.274667pt;}
.wsa8{word-spacing:7.392000pt;}
.wsa{word-spacing:7.450667pt;}
.ws6{word-spacing:7.509333pt;}
.wsaa{word-spacing:7.568000pt;}
.ws5c{word-spacing:7.685333pt;}
.ws64{word-spacing:7.861333pt;}
.ws67{word-spacing:7.978667pt;}
.ws71{word-spacing:8.096000pt;}
.ws9f{word-spacing:8.213333pt;}
.ws3{word-spacing:8.389333pt;}
.ws65{word-spacing:8.682667pt;}
.ws13{word-spacing:8.917333pt;}
.wsa7{word-spacing:9.093333pt;}
.ws1d{word-spacing:9.504000pt;}
.wsaf{word-spacing:9.738667pt;}
.wsa9{word-spacing:10.032000pt;}
.ws9a{word-spacing:11.440000pt;}
.wsae{word-spacing:11.557333pt;}
.ws9b{word-spacing:11.850667pt;}
.ws9c{word-spacing:12.085333pt;}
.ws15{word-spacing:12.261333pt;}
.ws96{word-spacing:12.965333pt;}
.wsb9{word-spacing:14.138667pt;}
.wsc1{word-spacing:15.429333pt;}
.wsc0{word-spacing:15.957333pt;}
.ws45{word-spacing:32.352000pt;}
.ws7f{word-spacing:82.800000pt;}
.ws80{word-spacing:89.472000pt;}
.ws86{word-spacing:105.360000pt;}
.ws87{word-spacing:118.704000pt;}
.ws81{word-spacing:118.948800pt;}
.ws92{word-spacing:174.864000pt;}
.ws88{word-spacing:184.468800pt;}
.ws8b{word-spacing:200.544000pt;}
.ws8c{word-spacing:207.216000pt;}
.ws8a{word-spacing:742.800000pt;}
.ws89{word-spacing:903.172800pt;}
.ws23{word-spacing:1016.548800pt;}
.ws91{word-spacing:1594.464000pt;}
._27{margin-left:-393.984000pt;}
._26{margin-left:-15.792000pt;}
._4{margin-left:-8.970133pt;}
._a{margin-left:-7.569600pt;}
._8{margin-left:-6.374400pt;}
._0{margin-left:-5.452800pt;}
._7{margin-left:-4.190400pt;}
._5{margin-left:-3.294400pt;}
._2{margin-left:-1.958400pt;}
._3{margin-left:-1.061867pt;}
._6{width:0.936000pt;}
._1{width:1.996800pt;}
._9{width:5.328000pt;}
._28{width:13.149867pt;}
._2c{width:14.085867pt;}
._2a{width:33.146667pt;}
._29{width:41.066667pt;}
._e{width:43.296000pt;}
._d{width:45.584000pt;}
._f{width:46.874667pt;}
._2b{width:48.693333pt;}
._c{width:104.976000pt;}
._15{width:118.704000pt;}
._10{width:137.424000pt;}
._12{width:160.128000pt;}
._22{width:172.752000pt;}
._16{width:204.187200pt;}
._23{width:207.072000pt;}
._19{width:213.888000pt;}
._24{width:216.672000pt;}
._25{width:226.032000pt;}
._17{width:269.184000pt;}
._b{width:369.888000pt;}
._14{width:578.382400pt;}
._13{width:583.488000pt;}
._11{width:638.592000pt;}
._18{width:799.872000pt;}
._1d{width:1139.664000pt;}
._1f{width:1171.766400pt;}
._1b{width:1187.424000pt;}
._1c{width:1226.640000pt;}
._1e{width:1258.704000pt;}
._20{width:1274.640000pt;}
._21{width:1290.462400pt;}
._1a{width:1329.792000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:63.526800pt;}
.y1b9{bottom:110.325733pt;}
.y175{bottom:110.533467pt;}
.y41{bottom:115.434000pt;}
.yd1{bottom:118.159467pt;}
.y17{bottom:118.535600pt;}
.y1{bottom:121.685333pt;}
.y198{bottom:122.363200pt;}
.y1df{bottom:122.929867pt;}
.y75{bottom:128.073067pt;}
.y1b8{bottom:128.996400pt;}
.y174{bottom:129.204133pt;}
.y40{bottom:134.104667pt;}
.yd0{bottom:136.830133pt;}
.y151{bottom:140.585600pt;}
.y197{bottom:141.033867pt;}
.y1de{bottom:141.600533pt;}
.ya7{bottom:141.936000pt;}
.y1b7{bottom:147.667067pt;}
.y74{bottom:152.733067pt;}
.y3f{bottom:152.775333pt;}
.y173{bottom:155.428133pt;}
.ycf{bottom:155.500800pt;}
.y150{bottom:159.665600pt;}
.y196{bottom:159.704533pt;}
.y1dd{bottom:160.271200pt;}
.y73{bottom:167.397067pt;}
.ya6{bottom:168.160000pt;}
.y3e{bottom:171.446000pt;}
.y172{bottom:174.098800pt;}
.yce{bottom:174.171467pt;}
.y1b6{bottom:177.675067pt;}
.y195{bottom:178.375200pt;}
.y14f{bottom:178.745600pt;}
.y1dc{bottom:178.941867pt;}
.y72{bottom:182.061067pt;}
.ya5{bottom:186.830667pt;}
.y6e{bottom:189.381067pt;}
.y3d{bottom:190.116667pt;}
.y171{bottom:192.769467pt;}
.ycd{bottom:192.842133pt;}
.y1b5{bottom:196.345733pt;}
.y71{bottom:196.725067pt;}
.y194{bottom:197.045867pt;}
.y14e{bottom:197.825600pt;}
.y16{bottom:203.577067pt;}
.ya4{bottom:205.501333pt;}
.y1db{bottom:208.949867pt;}
.y70{bottom:211.389067pt;}
.y193{bottom:215.716533pt;}
.y14d{bottom:216.905600pt;}
.y3c{bottom:220.124667pt;}
.y15{bottom:222.247733pt;}
.ycc{bottom:222.850133pt;}
.yf1{bottom:223.271600pt;}
.y6f{bottom:226.053067pt;}
.y1b4{bottom:226.353733pt;}
.y1da{bottom:227.620533pt;}
.y170{bottom:230.333867pt;}
.ya3{bottom:235.509333pt;}
.y14c{bottom:235.985600pt;}
.y3b{bottom:238.795333pt;}
.y14{bottom:240.918400pt;}
.ycb{bottom:241.520800pt;}
.yf0{bottom:241.942267pt;}
.y1b3{bottom:245.024400pt;}
.y6d{bottom:245.121067pt;}
.y1d9{bottom:246.291200pt;}
.y192{bottom:253.280800pt;}
.y126{bottom:253.292667pt;}
.y14b{bottom:255.065600pt;}
.y3a{bottom:257.466000pt;}
.ya2{bottom:257.949333pt;}
.y13{bottom:259.589067pt;}
.y6b{bottom:259.785067pt;}
.yca{bottom:260.191467pt;}
.y1b2{bottom:263.695067pt;}
.y125{bottom:267.956667pt;}
.y123{bottom:269.840667pt;}
.y16f{bottom:271.683867pt;}
.y14a{bottom:274.145600pt;}
.y6c{bottom:274.449067pt;}
.y39{bottom:276.136667pt;}
.y1d8{bottom:276.299200pt;}
.y12{bottom:278.259733pt;}
.yc9{bottom:278.862133pt;}
.yef{bottom:279.506533pt;}
.ya1{bottom:280.389333pt;}
.y124{bottom:286.400667pt;}
.y16e{bottom:290.354533pt;}
.y149{bottom:293.225600pt;}
.y6a{bottom:293.529067pt;}
.y1b1{bottom:293.703067pt;}
.y191{bottom:294.608533pt;}
.y38{bottom:294.807333pt;}
.y1d7{bottom:294.969867pt;}
.yc8{bottom:297.532800pt;}
.ya0{bottom:306.613333pt;}
.y69{bottom:308.193067pt;}
.y148{bottom:312.305600pt;}
.y1b0{bottom:312.373733pt;}
.y16d{bottom:312.794533pt;}
.y190{bottom:313.279200pt;}
.y37{bottom:313.478000pt;}
.y122{bottom:313.532667pt;}
.y1d6{bottom:313.640533pt;}
.y66{bottom:315.525067pt;}
.yee{bottom:320.823600pt;}
.y121{bottom:322.748667pt;}
.y68{bottom:322.857067pt;}
.y9f{bottom:325.284000pt;}
.y1af{bottom:331.044400pt;}
.y147{bottom:331.385600pt;}
.y18f{bottom:331.949867pt;}
.y36{bottom:332.148667pt;}
.yc7{bottom:335.097067pt;}
.y16c{bottom:335.234533pt;}
.y67{bottom:337.521067pt;}
.yed{bottom:339.494267pt;}
.y11c{bottom:341.864667pt;}
.y1d5{bottom:343.648533pt;}
.y146{bottom:350.465600pt;}
.y18e{bottom:350.620533pt;}
.y35{bottom:350.819333pt;}
.y11b{bottom:356.528667pt;}
.y65{bottom:356.601067pt;}
.yec{bottom:358.164933pt;}
.y120{bottom:359.108667pt;}
.y1ae{bottom:361.052400pt;}
.y16b{bottom:361.458533pt;}
.y1d4{bottom:362.319200pt;}
.y11{bottom:362.461067pt;}
.y9e{bottom:362.848267pt;}
.y18d{bottom:369.291200pt;}
.y64{bottom:371.265067pt;}
.y145{bottom:373.701733pt;}
.y11f{bottom:373.772667pt;}
.y11d{bottom:375.656667pt;}
.yc6{bottom:376.382933pt;}
.y1ad{bottom:379.723067pt;}
.y16a{bottom:380.129200pt;}
.y34{bottom:380.827333pt;}
.y1d3{bottom:380.989867pt;}
.y10{bottom:381.131733pt;}
.y63{bottom:385.929067pt;}
.yeb{bottom:388.172933pt;}
.y144{bottom:388.365733pt;}
.y11e{bottom:392.216667pt;}
.y5f{bottom:393.249067pt;}
.yc5{bottom:395.053600pt;}
.y1ac{bottom:398.393733pt;}
.y33{bottom:399.498000pt;}
.y1d2{bottom:399.660533pt;}
.yf{bottom:399.802400pt;}
.y62{bottom:400.593067pt;}
.yea{bottom:406.843600pt;}
.y18c{bottom:406.855600pt;}
.y11a{bottom:412.004667pt;}
.y61{bottom:415.257067pt;}
.yc4{bottom:417.493600pt;}
.y169{bottom:417.693467pt;}
.y32{bottom:418.168667pt;}
.y9d{bottom:418.274000pt;}
.y143{bottom:421.914000pt;}
.ye9{bottom:425.514267pt;}
.ye{bottom:426.026400pt;}
.y119{bottom:426.668667pt;}
.y117{bottom:428.552667pt;}
.y1d1{bottom:429.668533pt;}
.y60{bottom:429.921067pt;}
.y1ab{bottom:435.958000pt;}
.yc3{bottom:436.164267pt;}
.y142{bottom:440.584667pt;}
.y9c{bottom:440.786000pt;}
.ye8{bottom:444.184933pt;}
.yd{bottom:444.697067pt;}
.y118{bottom:445.112667pt;}
.y18b{bottom:448.163467pt;}
.y31{bottom:448.176667pt;}
.y1d0{bottom:448.339200pt;}
.y5e{bottom:448.989067pt;}
.yc2{bottom:454.834933pt;}
.y9b{bottom:455.450000pt;}
.y168{bottom:459.014533pt;}
.y141{bottom:459.255333pt;}
.y98{bottom:462.782000pt;}
.ye7{bottom:462.855600pt;}
.yc{bottom:463.367733pt;}
.y5d{bottom:463.653067pt;}
.y18a{bottom:466.834133pt;}
.y30{bottom:466.847333pt;}
.y1cf{bottom:467.009867pt;}
.y9a{bottom:470.114000pt;}
.y5a{bottom:470.985067pt;}
.y116{bottom:472.244667pt;}
.yc1{bottom:477.274933pt;}
.y167{bottom:477.685200pt;}
.y140{bottom:477.926000pt;}
.y5c{bottom:478.317067pt;}
.y1aa{bottom:479.960533pt;}
.y115{bottom:481.460667pt;}
.y99{bottom:484.778000pt;}
.y189{bottom:485.504800pt;}
.y2f{bottom:485.518000pt;}
.yb{bottom:489.591733pt;}
.y5b{bottom:492.981067pt;}
.yc0{bottom:495.945600pt;}
.y166{bottom:496.355867pt;}
.y13f{bottom:496.596667pt;}
.y1ce{bottom:497.017867pt;}
.y1a9{bottom:498.631200pt;}
.ye6{bottom:500.419867pt;}
.y97{bottom:503.858000pt;}
.y188{bottom:504.175467pt;}
.ya{bottom:508.262400pt;}
.y59{bottom:512.061067pt;}
.ybf{bottom:514.616267pt;}
.y2e{bottom:515.526000pt;}
.y1cd{bottom:515.688533pt;}
.y1a8{bottom:517.301867pt;}
.y114{bottom:517.460667pt;}
.y95{bottom:518.522000pt;}
.y187{bottom:522.846133pt;}
.y10d{bottom:524.096667pt;}
.y165{bottom:526.363867pt;}
.y57{bottom:526.725067pt;}
.y9{bottom:526.933067pt;}
.y13e{bottom:531.788800pt;}
.y113{bottom:532.124667pt;}
.y96{bottom:533.186000pt;}
.ybe{bottom:533.286933pt;}
.y2d{bottom:534.196667pt;}
.y1cc{bottom:534.359200pt;}
.y58{bottom:541.389067pt;}
.y186{bottom:541.516800pt;}
.ye5{bottom:541.747200pt;}
.y164{bottom:545.034533pt;}
.y110{bottom:550.568667pt;}
.y94{bottom:552.266000pt;}
.y8{bottom:553.157067pt;}
.y13d{bottom:554.468800pt;}
.y1a7{bottom:554.866133pt;}
.ybd{bottom:555.726933pt;}
.y185{bottom:560.187467pt;}
.ye4{bottom:560.417867pt;}
.y56{bottom:560.469067pt;}
.y163{bottom:563.705200pt;}
.y1cb{bottom:564.367200pt;}
.y112{bottom:565.232667pt;}
.y92{bottom:566.930000pt;}
.y2c{bottom:571.760933pt;}
.y7{bottom:571.827733pt;}
.ybc{bottom:574.397600pt;}
.y54{bottom:575.133067pt;}
.y13c{bottom:577.148800pt;}
.y184{bottom:578.858133pt;}
.y93{bottom:581.594000pt;}
.y162{bottom:582.375867pt;}
.ye3{bottom:582.857867pt;}
.y1ca{bottom:583.037867pt;}
.y111{bottom:583.676667pt;}
.y55{bottom:589.797067pt;}
.y6{bottom:590.498400pt;}
.ybb{bottom:593.068267pt;}
.y183{bottom:597.528800pt;}
.y1a6{bottom:598.832400pt;}
.y13b{bottom:599.828800pt;}
.y91{bottom:600.674000pt;}
.ye2{bottom:601.528533pt;}
.y10f{bottom:610.448667pt;}
.y53{bottom:611.265067pt;}
.yba{bottom:611.738933pt;}
.y1c9{bottom:613.045867pt;}
.y90{bottom:615.338000pt;}
.y182{bottom:616.199467pt;}
.y1a5{bottom:617.503067pt;}
.y10e{bottom:619.664667pt;}
.y161{bottom:619.940133pt;}
.y13a{bottom:622.508800pt;}
.y8d{bottom:622.670000pt;}
.y8f{bottom:630.002000pt;}
.yb9{bottom:630.409600pt;}
.ye1{bottom:631.536533pt;}
.y1c8{bottom:631.716533pt;}
.y1a4{bottom:636.173733pt;}
.y52{bottom:636.884533pt;}
.y8e{bottom:644.666000pt;}
.y2b{bottom:649.636133pt;}
.ye0{bottom:650.207200pt;}
.y1c7{bottom:650.387200pt;}
.y51{bottom:651.548533pt;}
.yb8{bottom:652.849600pt;}
.y181{bottom:653.763733pt;}
.y139{bottom:655.092667pt;}
.y10c{bottom:656.024667pt;}
.y5{bottom:658.330933pt;}
.y160{bottom:661.280000pt;}
.y8c{bottom:663.746000pt;}
.y1a3{bottom:666.181733pt;}
.y2a{bottom:668.306800pt;}
.ydf{bottom:668.877867pt;}
.y10b{bottom:670.688667pt;}
.yb7{bottom:671.520267pt;}
.y109{bottom:672.572667pt;}
.y138{bottom:673.763333pt;}
.y50{bottom:677.549733pt;}
.y8b{bottom:678.410000pt;}
.y15f{bottom:679.950667pt;}
.y1c6{bottom:680.395200pt;}
.y1a2{bottom:684.852400pt;}
.yde{bottom:687.548533pt;}
.y10a{bottom:689.132667pt;}
.yb6{bottom:690.190933pt;}
.y137{bottom:692.434000pt;}
.y4{bottom:692.986933pt;}
.y88{bottom:693.074000pt;}
.y180{bottom:695.091600pt;}
.y4f{bottom:696.220400pt;}
.y29{bottom:698.312000pt;}
.y1c5{bottom:699.065867pt;}
.y1a1{bottom:703.523067pt;}
.y1e3{bottom:706.399200pt;}
.y8a{bottom:707.738000pt;}
.y108{bottom:708.572667pt;}
.yb5{bottom:712.630933pt;}
.y17f{bottom:713.762267pt;}
.y1c4{bottom:717.736533pt;}
.y89{bottom:722.402000pt;}
.y15e{bottom:723.373733pt;}
.y1e2{bottom:725.069867pt;}
.ydd{bottom:725.112800pt;}
.y107{bottom:727.016667pt;}
.y3{bottom:727.642933pt;}
.yb4{bottom:731.301600pt;}
.y17e{bottom:732.432933pt;}
.y1a0{bottom:733.531067pt;}
.y4e{bottom:733.784667pt;}
.y136{bottom:734.065200pt;}
.y104{bottom:734.348667pt;}
.y1c3{bottom:736.407200pt;}
.y87{bottom:741.482000pt;}
.y106{bottom:741.680667pt;}
.y28{bottom:742.274533pt;}
.y1e1{bottom:743.740533pt;}
.y15d{bottom:746.053733pt;}
.yb3{bottom:749.972267pt;}
.y17d{bottom:751.103600pt;}
.y19f{bottom:752.201733pt;}
.y135{bottom:753.145200pt;}
.y1c2{bottom:755.077867pt;}
.y86{bottom:756.146000pt;}
.y105{bottom:760.124667pt;}
.y27{bottom:760.945200pt;}
.y2{bottom:762.298933pt;}
.y134{bottom:762.685200pt;}
.ydc{bottom:766.429867pt;}
.yb2{bottom:768.642933pt;}
.y15c{bottom:768.733733pt;}
.y17c{bottom:769.774267pt;}
.y83{bottom:770.810000pt;}
.y19e{bottom:770.872400pt;}
.y1c1{bottom:773.748533pt;}
.y4d{bottom:777.752533pt;}
.y103{bottom:779.204667pt;}
.y26{bottom:779.615867pt;}
.ydb{bottom:785.100533pt;}
.y85{bottom:785.474000pt;}
.yf6{bottom:786.872667pt;}
.yb1{bottom:787.313600pt;}
.y133{bottom:791.305200pt;}
.y15b{bottom:791.413733pt;}
.y1e0{bottom:792.419200pt;}
.y102{bottom:793.868667pt;}
.y4c{bottom:796.423200pt;}
.y25{bottom:798.286533pt;}
.y84{bottom:800.138000pt;}
.y19d{bottom:800.880400pt;}
.yf5{bottom:801.536667pt;}
.yff{bottom:803.084667pt;}
.y1c0{bottom:803.756533pt;}
.yda{bottom:803.771200pt;}
.y17b{bottom:807.338667pt;}
.y101{bottom:808.532667pt;}
.y132{bottom:810.385200pt;}
.yb0{bottom:813.537600pt;}
.y15a{bottom:814.093733pt;}
.y4b{bottom:815.093867pt;}
.y24{bottom:816.957200pt;}
.y82{bottom:819.218000pt;}
.y19c{bottom:819.551067pt;}
.y130{bottom:819.925200pt;}
.y1bf{bottom:822.427200pt;}
.y100{bottom:826.976667pt;}
.y131{bottom:829.465200pt;}
.yaf{bottom:832.208267pt;}
.yd9{bottom:833.779200pt;}
.y81{bottom:833.882000pt;}
.y23{bottom:835.627867pt;}
.y19b{bottom:838.221733pt;}
.y159{bottom:839.121200pt;}
.y1be{bottom:841.097867pt;}
.y4a{bottom:845.101867pt;}
.yfe{bottom:846.416667pt;}
.y7c{bottom:848.534000pt;}
.y12b{bottom:848.545200pt;}
.y80{bottom:848.546000pt;}
.y17a{bottom:848.665867pt;}
.yd8{bottom:852.449867pt;}
.y22{bottom:854.298533pt;}
.y19a{bottom:856.892400pt;}
.yfd{bottom:861.080667pt;}
.yae{bottom:862.216267pt;}
.yfb{bottom:862.964667pt;}
.y7b{bottom:863.198000pt;}
.y7f{bottom:863.210000pt;}
.y49{bottom:863.772533pt;}
.y179{bottom:867.336533pt;}
.y12f{bottom:867.625200pt;}
.y1bd{bottom:871.105867pt;}
.y21{bottom:872.969200pt;}
.yd7{bottom:874.889867pt;}
.y7e{bottom:877.874000pt;}
.yfc{bottom:879.524667pt;}
.y158{bottom:880.533200pt;}
.yad{bottom:880.886933pt;}
.y48{bottom:882.443200pt;}
.y178{bottom:886.007200pt;}
.y12e{bottom:886.705200pt;}
.y1bc{bottom:889.776533pt;}
.y20{bottom:891.639867pt;}
.y7d{bottom:892.538000pt;}
.yd6{bottom:893.560533pt;}
.y199{bottom:894.456667pt;}
.yfa{bottom:899.324667pt;}
.yac{bottom:899.557600pt;}
.y157{bottom:899.613200pt;}
.y47{bottom:901.113867pt;}
.y129{bottom:905.773200pt;}
.y12d{bottom:905.785200pt;}
.y1bb{bottom:908.447200pt;}
.y1f{bottom:910.310533pt;}
.y7a{bottom:911.606000pt;}
.yd5{bottom:912.231200pt;}
.yf9{bottom:913.988667pt;}
.yf7{bottom:915.872667pt;}
.y177{bottom:916.015200pt;}
.yab{bottom:918.228267pt;}
.y156{bottom:918.693200pt;}
.y46{bottom:919.784533pt;}
.y12c{bottom:924.865200pt;}
.y78{bottom:926.270000pt;}
.y1ba{bottom:927.117867pt;}
.y1e{bottom:928.981200pt;}
.yd4{bottom:930.901867pt;}
.yf8{bottom:932.432667pt;}
.y176{bottom:934.685867pt;}
.yaa{bottom:936.898933pt;}
.y155{bottom:937.773200pt;}
.y45{bottom:938.455200pt;}
.y79{bottom:940.934000pt;}
.y12a{bottom:943.933200pt;}
.y1d{bottom:947.651867pt;}
.yd3{bottom:949.572533pt;}
.yf4{bottom:955.544667pt;}
.ya9{bottom:955.569600pt;}
.y154{bottom:956.853200pt;}
.y44{bottom:957.125867pt;}
.y128{bottom:963.013200pt;}
.y77{bottom:965.594000pt;}
.y1c{bottom:966.322533pt;}
.yd2{bottom:968.243200pt;}
.y43{bottom:975.796533pt;}
.y153{bottom:975.933200pt;}
.yf3{bottom:978.689867pt;}
.y127{bottom:982.469867pt;}
.y76{bottom:992.630000pt;}
.ya8{bottom:993.133867pt;}
.y42{bottom:994.467200pt;}
.y152{bottom:995.013200pt;}
.y1b{bottom:996.327867pt;}
.yf2{bottom:997.133867pt;}
.y19{bottom:1049.098800pt;}
.y18{bottom:1065.094800pt;}
.h5{height:36.000000pt;}
.h7{height:36.864000pt;}
.hb{height:44.352000pt;}
.h4{height:45.056000pt;}
.h8{height:49.152000pt;}
.h2{height:49.765625pt;}
.h6{height:56.000000pt;}
.h9{height:73.776000pt;}
.ha{height:75.024000pt;}
.h3{height:96.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:94.488133pt;}
.x4{left:96.355333pt;}
.xb{left:100.113733pt;}
.xe{left:111.824133pt;}
.x7{left:112.762800pt;}
.xd{left:114.493467pt;}
.x10{left:117.088933pt;}
.x1d{left:121.679333pt;}
.x14{left:126.668667pt;}
.x8{left:128.362933pt;}
.x1c{left:132.562000pt;}
.xf{left:134.484133pt;}
.x18{left:138.022000pt;}
.x1a{left:143.002000pt;}
.x1b{left:144.670000pt;}
.xa{left:146.937733pt;}
.x17{left:156.825333pt;}
.x19{left:213.154000pt;}
.x11{left:216.532933pt;}
.x13{left:218.188933pt;}
.x15{left:222.248667pt;}
.x2{left:224.931333pt;}
.xc{left:232.113733pt;}
.x12{left:257.248933pt;}
.x3{left:266.275333pt;}
.x5{left:285.443333pt;}
.x9{left:378.622933pt;}
.x16{left:635.576667pt;}
.x1{left:725.669333pt;}
}




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