
    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_509184aa469d4cd12c1ee43c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_a359a745e94216ede362bdf4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_5327607fdd3cbcf8f11f6f8d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_0646ea5eb274f0eb9d500299.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_c81710c3dae603b60ca9a698.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_61da8fdfd03c4ef2a796ae28.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_0ccac3669df41bb4387bec81.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_401672ac55ffaac0be227a73.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_c37261ad69e1acc8f99977b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.400000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{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);}
.m2{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m5{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:16.200000px;}
.v1{vertical-align:32.400000px;}
.v3{vertical-align:75.000000px;}
.ls5{letter-spacing:-6.000000px;}
.lsa{letter-spacing:-4.560000px;}
.lsb{letter-spacing:-4.260000px;}
.ls10{letter-spacing:-4.200000px;}
.lsc{letter-spacing:-3.600000px;}
.ls4{letter-spacing:-3.240000px;}
.lse{letter-spacing:-2.880000px;}
.ls6{letter-spacing:-2.520000px;}
.ls3{letter-spacing:-2.160000px;}
.lsd{letter-spacing:-1.680000px;}
.ls15{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-1.200000px;}
.ls0{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.300000px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000960px;}
.ls12{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.863460px;}
.ls2{letter-spacing:3.253800px;}
.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;}
}
.ws1{word-spacing:-37.269915px;}
.ws0{word-spacing:-26.892000px;}
.ws2{word-spacing:-26.496000px;}
.ws50{word-spacing:-25.812000px;}
.ws78{word-spacing:-24.732000px;}
.ws18{word-spacing:-20.088000px;}
.ws19{word-spacing:-19.872000px;}
.ws5{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.712000px;}
.ws95{word-spacing:-16.740000px;}
.ws80{word-spacing:-16.572600px;}
.ws8f{word-spacing:-16.560000px;}
.wsf9{word-spacing:-16.140000px;}
.ws92{word-spacing:-15.360000px;}
.ws151{word-spacing:-15.300000px;}
.ws82{word-spacing:-15.066000px;}
.ws132{word-spacing:-12.540000px;}
.ws10e{word-spacing:-12.480000px;}
.wseb{word-spacing:-12.180000px;}
.ws81{word-spacing:-8.286300px;}
.ws15c{word-spacing:-7.920000px;}
.ws163{word-spacing:-4.200000px;}
.ws164{word-spacing:-4.140000px;}
.ws7e{word-spacing:-4.032000px;}
.ws6b{word-spacing:-3.888000px;}
.wsa9{word-spacing:-3.780000px;}
.ws154{word-spacing:-3.744000px;}
.ws54{word-spacing:-3.672000px;}
.ws70{word-spacing:-3.600000px;}
.ws73{word-spacing:-3.456000px;}
.wse0{word-spacing:-3.180000px;}
.ws153{word-spacing:-3.168000px;}
.wse3{word-spacing:-3.120000px;}
.ws3d{word-spacing:-2.952000px;}
.ws89{word-spacing:-2.916000px;}
.ws51{word-spacing:-2.880000px;}
.ws71{word-spacing:-2.808000px;}
.ws155{word-spacing:-2.736000px;}
.wsd9{word-spacing:-2.700000px;}
.ws14d{word-spacing:-2.592000px;}
.ws57{word-spacing:-2.520000px;}
.ws9e{word-spacing:-2.460000px;}
.ws7a{word-spacing:-2.448000px;}
.ws9{word-spacing:-2.376000px;}
.wsa2{word-spacing:-2.340000px;}
.ws8{word-spacing:-2.310000px;}
.ws2c{word-spacing:-2.160000px;}
.ws7{word-spacing:-2.046000px;}
.wse1{word-spacing:-2.040000px;}
.ws157{word-spacing:-1.980000px;}
.wsd2{word-spacing:-1.860000px;}
.ws6d{word-spacing:-1.800000px;}
.ws15a{word-spacing:-1.740000px;}
.ws13{word-spacing:-1.716000px;}
.ws15b{word-spacing:-1.680000px;}
.wsc{word-spacing:-1.584000px;}
.ws72{word-spacing:-1.512000px;}
.ws75{word-spacing:-1.296000px;}
.ws46{word-spacing:-1.224000px;}
.ws86{word-spacing:-1.152000px;}
.ws1f{word-spacing:-1.080000px;}
.wse{word-spacing:-1.056000px;}
.ws2e{word-spacing:-1.008000px;}
.wsa7{word-spacing:-0.960000px;}
.wsa4{word-spacing:-0.900000px;}
.ws3a{word-spacing:-0.864000px;}
.ws56{word-spacing:-0.792000px;}
.ws58{word-spacing:-0.720000px;}
.ws27{word-spacing:-0.576000px;}
.wsa5{word-spacing:-0.480000px;}
.ws4a{word-spacing:-0.432000px;}
.wsbd{word-spacing:-0.420000px;}
.ws2b{word-spacing:-0.288000px;}
.ws31{word-spacing:-0.216000px;}
.wsd{word-spacing:-0.198000px;}
.wsbe{word-spacing:-0.180000px;}
.ws22{word-spacing:-0.144000px;}
.ws3{word-spacing:0.000000px;}
.wse6{word-spacing:0.060000px;}
.ws61{word-spacing:0.072000px;}
.ws8a{word-spacing:0.162000px;}
.wse2{word-spacing:0.180000px;}
.ws32{word-spacing:0.216000px;}
.wsc2{word-spacing:0.240000px;}
.ws6{word-spacing:0.264000px;}
.ws35{word-spacing:0.288000px;}
.ws25{word-spacing:0.360000px;}
.wsdf{word-spacing:0.420000px;}
.ws52{word-spacing:0.432000px;}
.ws2d{word-spacing:0.504000px;}
.ws159{word-spacing:0.540000px;}
.wsdc{word-spacing:0.576000px;}
.ws149{word-spacing:0.600000px;}
.ws39{word-spacing:0.648000px;}
.ws45{word-spacing:0.720000px;}
.ws11{word-spacing:0.726000px;}
.wsa{word-spacing:0.792000px;}
.ws5c{word-spacing:0.864000px;}
.ws156{word-spacing:0.900000px;}
.ws53{word-spacing:0.936000px;}
.ws14e{word-spacing:1.008000px;}
.wsdd{word-spacing:1.080000px;}
.ws160{word-spacing:1.140000px;}
.ws23{word-spacing:1.152000px;}
.ws64{word-spacing:1.224000px;}
.wsa8{word-spacing:1.260000px;}
.ws66{word-spacing:1.296000px;}
.wsb{word-spacing:1.320000px;}
.ws40{word-spacing:1.368000px;}
.ws9b{word-spacing:1.440000px;}
.wsd1{word-spacing:1.500000px;}
.ws21{word-spacing:1.512000px;}
.ws87{word-spacing:1.584000px;}
.ws5b{word-spacing:1.728000px;}
.ws5a{word-spacing:1.800000px;}
.wse4{word-spacing:1.860000px;}
.ws79{word-spacing:1.872000px;}
.ws3b{word-spacing:1.944000px;}
.ws7b{word-spacing:2.016000px;}
.ws158{word-spacing:2.040000px;}
.wsa6{word-spacing:2.160000px;}
.ws15d{word-spacing:2.220000px;}
.ws36{word-spacing:2.232000px;}
.ws14{word-spacing:2.244000px;}
.ws9c{word-spacing:2.340000px;}
.ws28{word-spacing:2.376000px;}
.wsac{word-spacing:2.400000px;}
.ws1d{word-spacing:2.448000px;}
.wsd6{word-spacing:2.460000px;}
.ws38{word-spacing:2.520000px;}
.ws15{word-spacing:2.574000px;}
.wsb9{word-spacing:2.580000px;}
.ws20{word-spacing:2.592000px;}
.wsb8{word-spacing:2.640000px;}
.ws63{word-spacing:2.664000px;}
.ws62{word-spacing:2.736000px;}
.wsda{word-spacing:2.760000px;}
.ws55{word-spacing:2.808000px;}
.ws9f{word-spacing:2.820000px;}
.ws150{word-spacing:2.880000px;}
.ws34{word-spacing:2.952000px;}
.wse5{word-spacing:3.000000px;}
.ws83{word-spacing:3.096000px;}
.ws2a{word-spacing:3.168000px;}
.ws2f{word-spacing:3.312000px;}
.ws6a{word-spacing:3.384000px;}
.ws5f{word-spacing:3.456000px;}
.wsc8{word-spacing:3.480000px;}
.wsde{word-spacing:3.528000px;}
.wsc7{word-spacing:3.540000px;}
.ws14f{word-spacing:3.672000px;}
.ws65{word-spacing:3.744000px;}
.ws4c{word-spacing:3.888000px;}
.ws14a{word-spacing:3.960000px;}
.ws15e{word-spacing:4.020000px;}
.ws6e{word-spacing:4.104000px;}
.ws47{word-spacing:4.176000px;}
.wsa3{word-spacing:4.260000px;}
.ws14c{word-spacing:4.320000px;}
.wsc1{word-spacing:4.380000px;}
.ws6c{word-spacing:4.392000px;}
.ws49{word-spacing:4.464000px;}
.ws48{word-spacing:4.536000px;}
.wsd7{word-spacing:4.560000px;}
.ws44{word-spacing:4.608000px;}
.wsa0{word-spacing:4.740000px;}
.ws30{word-spacing:4.752000px;}
.ws3f{word-spacing:4.896000px;}
.ws4d{word-spacing:4.968000px;}
.ws4f{word-spacing:5.040000px;}
.ws60{word-spacing:5.184000px;}
.ws85{word-spacing:5.256000px;}
.ws15f{word-spacing:5.280000px;}
.ws1b{word-spacing:5.328000px;}
.ws1c{word-spacing:5.400000px;}
.ws26{word-spacing:5.472000px;}
.wsa1{word-spacing:5.520000px;}
.wsd5{word-spacing:5.580000px;}
.ws7f{word-spacing:5.616000px;}
.ws59{word-spacing:5.688000px;}
.wsbc{word-spacing:5.700000px;}
.ws43{word-spacing:5.760000px;}
.ws68{word-spacing:6.048000px;}
.ws4e{word-spacing:6.120000px;}
.ws88{word-spacing:6.264000px;}
.wsd3{word-spacing:6.420000px;}
.ws4b{word-spacing:6.480000px;}
.ws29{word-spacing:6.552000px;}
.wsbb{word-spacing:6.660000px;}
.ws152{word-spacing:6.840000px;}
.ws41{word-spacing:6.912000px;}
.ws24{word-spacing:6.984000px;}
.ws3e{word-spacing:7.056000px;}
.ws6f{word-spacing:7.344000px;}
.ws162{word-spacing:7.500000px;}
.ws16{word-spacing:7.722000px;}
.wsba{word-spacing:7.800000px;}
.ws3c{word-spacing:7.920000px;}
.ws14b{word-spacing:8.136000px;}
.ws9d{word-spacing:8.160000px;}
.ws1e{word-spacing:8.280000px;}
.wsf{word-spacing:8.580000px;}
.ws10{word-spacing:8.712000px;}
.ws5e{word-spacing:8.856000px;}
.ws7d{word-spacing:9.000000px;}
.ws12{word-spacing:9.042000px;}
.ws161{word-spacing:9.060000px;}
.wsc0{word-spacing:9.180000px;}
.ws76{word-spacing:9.216000px;}
.wsbf{word-spacing:9.240000px;}
.ws7c{word-spacing:9.648000px;}
.wsaa{word-spacing:9.660000px;}
.ws17{word-spacing:9.702000px;}
.ws77{word-spacing:10.080000px;}
.ws42{word-spacing:10.296000px;}
.ws67{word-spacing:10.368000px;}
.ws84{word-spacing:10.512000px;}
.ws33{word-spacing:11.088000px;}
.ws74{word-spacing:11.160000px;}
.wsdb{word-spacing:11.376000px;}
.wsd8{word-spacing:11.520000px;}
.ws37{word-spacing:11.952000px;}
.ws5d{word-spacing:12.024000px;}
.wsab{word-spacing:12.840000px;}
.wse7{word-spacing:16.680000px;}
.wsc4{word-spacing:16.920000px;}
.wsc3{word-spacing:17.100000px;}
.wsd4{word-spacing:17.460000px;}
.wsc6{word-spacing:18.600000px;}
.ws11f{word-spacing:40.223940px;}
.wsfd{word-spacing:40.434900px;}
.wsf4{word-spacing:40.643520px;}
.ws140{word-spacing:40.645740px;}
.ws124{word-spacing:42.407412px;}
.ws13a{word-spacing:42.413562px;}
.wsf8{word-spacing:42.415524px;}
.wsf3{word-spacing:42.623562px;}
.ws146{word-spacing:42.624279px;}
.ws114{word-spacing:42.624879px;}
.ws123{word-spacing:42.627603px;}
.ws147{word-spacing:42.630879px;}
.ws121{word-spacing:42.893079px;}
.ws109{word-spacing:42.896124px;}
.wsf6{word-spacing:43.104279px;}
.ws115{word-spacing:44.602200px;}
.ws148{word-spacing:44.604600px;}
.ws12b{word-spacing:44.873724px;}
.ws10c{word-spacing:45.083412px;}
.ws107{word-spacing:45.623679px;}
.ws128{word-spacing:47.063562px;}
.ws111{word-spacing:47.603562px;}
.wsc5{word-spacing:48.660000px;}
.ws141{word-spacing:48.677076px;}
.ws11e{word-spacing:48.685446px;}
.ws122{word-spacing:48.685524px;}
.wsfb{word-spacing:48.893754px;}
.wsf7{word-spacing:48.896076px;}
.ws13f{word-spacing:49.104954px;}
.ws131{word-spacing:49.553412px;}
.wsfc{word-spacing:50.874162px;}
.wsf2{word-spacing:51.084876px;}
.ws106{word-spacing:51.084924px;}
.ws113{word-spacing:51.088476px;}
.wsf5{word-spacing:51.565800px;}
.ws108{word-spacing:52.732902px;}
.ws110{word-spacing:53.064762px;}
.wsf1{word-spacing:53.426766px;}
.ws10a{word-spacing:53.544000px;}
.ws10d{word-spacing:53.546400px;}
.ws142{word-spacing:54.924102px;}
.ws127{word-spacing:54.924306px;}
.ws119{word-spacing:54.927246px;}
.ws137{word-spacing:54.930702px;}
.ws125{word-spacing:55.015200px;}
.ws112{word-spacing:55.404804px;}
.ws103{word-spacing:55.404966px;}
.ws104{word-spacing:55.463046px;}
.ws12c{word-spacing:56.063562px;}
.ws135{word-spacing:56.065962px;}
.ws130{word-spacing:56.753412px;}
.ws120{word-spacing:56.993562px;}
.ws10b{word-spacing:56.994000px;}
.ws12f{word-spacing:57.234762px;}
.ws11d{word-spacing:57.262800px;}
.ws134{word-spacing:57.382902px;}
.ws13b{word-spacing:57.654324px;}
.ws129{word-spacing:58.013562px;}
.ws13c{word-spacing:58.642800px;}
.ws105{word-spacing:58.915800px;}
.ws143{word-spacing:59.452362px;}
.ws11a{word-spacing:59.453412px;}
.ws145{word-spacing:59.453562px;}
.ws12e{word-spacing:59.457000px;}
.ws136{word-spacing:59.992800px;}
.ws118{word-spacing:59.995800px;}
.ws102{word-spacing:62.208000px;}
.ws133{word-spacing:62.629200px;}
.wsfa{word-spacing:63.078600px;}
.ws101{word-spacing:63.263400px;}
.ws100{word-spacing:63.474600px;}
.wsfe{word-spacing:65.452362px;}
.ws144{word-spacing:65.463000px;}
.ws126{word-spacing:65.658600px;}
.ws10f{word-spacing:66.886200px;}
.ws12d{word-spacing:67.313502px;}
.wsee{word-spacing:67.614000px;}
.ws13e{word-spacing:67.796400px;}
.ws139{word-spacing:69.143400px;}
.wsec{word-spacing:69.414600px;}
.ws116{word-spacing:69.774102px;}
.ws12a{word-spacing:71.604162px;}
.wsff{word-spacing:71.845800px;}
.wsed{word-spacing:72.985800px;}
.ws13d{word-spacing:73.368000px;}
.ws138{word-spacing:74.334600px;}
.ws8b{word-spacing:75.963000px;}
.wsef{word-spacing:77.569800px;}
.ws11b{word-spacing:77.748000px;}
.ws117{word-spacing:77.844000px;}
.wsf0{word-spacing:79.702200px;}
.ws11c{word-spacing:81.534600px;}
.wsd0{word-spacing:123.362936px;}
.wscd{word-spacing:123.900000px;}
.wscf{word-spacing:123.991812px;}
.wscb{word-spacing:127.351776px;}
.wsb4{word-spacing:128.189739px;}
.wsc9{word-spacing:134.793091px;}
.wsb0{word-spacing:136.051800px;}
.ws9a{word-spacing:136.229400px;}
.ws94{word-spacing:136.292400px;}
.ws8e{word-spacing:137.941026px;}
.ws8d{word-spacing:138.271200px;}
.ws91{word-spacing:138.420416px;}
.wsb3{word-spacing:140.069838px;}
.wsae{word-spacing:140.249988px;}
.wsb1{word-spacing:141.180222px;}
.ws98{word-spacing:141.210048px;}
.wsb6{word-spacing:142.680222px;}
.wsca{word-spacing:143.220780px;}
.ws90{word-spacing:143.402790px;}
.wsb7{word-spacing:151.503000px;}
.wsb2{word-spacing:151.921200px;}
.wsad{word-spacing:152.100600px;}
.wsaf{word-spacing:153.030600px;}
.ws96{word-spacing:153.061200px;}
.ws93{word-spacing:153.271200px;}
.wsb5{word-spacing:154.530600px;}
.ws8c{word-spacing:155.253000px;}
.wse8{word-spacing:240.300000px;}
.ws97{word-spacing:324.029464px;}
.wse9{word-spacing:386.758535px;}
.wsea{word-spacing:405.240000px;}
.wscc{word-spacing:1332.271758px;}
.wsce{word-spacing:1407.096402px;}
.ws99{word-spacing:1413.991986px;}
.ws69{word-spacing:3368.341200px;}
._3b{margin-left:-32.360234px;}
._4d{margin-left:-19.356539px;}
._7{margin-left:-12.192888px;}
._8{margin-left:-10.591536px;}
._5{margin-left:-8.738639px;}
._6{margin-left:-6.924642px;}
._b{margin-left:-5.771780px;}
._4{margin-left:-4.320706px;}
._2{margin-left:-2.944556px;}
._1{margin-left:-1.932350px;}
._0{width:1.080940px;}
._a{width:2.916145px;}
._9{width:4.178043px;}
._3{width:5.711855px;}
._d{width:6.810843px;}
._15{width:9.107680px;}
._c{width:10.720584px;}
._45{width:43.757501px;}
._40{width:54.415268px;}
._4b{width:57.378259px;}
._42{width:59.167749px;}
._41{width:60.385132px;}
._46{width:62.028253px;}
._4a{width:64.269774px;}
._48{width:69.634191px;}
._49{width:70.690846px;}
._4c{width:71.740959px;}
._47{width:73.937614px;}
._44{width:76.614552px;}
._43{width:79.179260px;}
._36{width:81.358511px;}
._3f{width:85.734000px;}
._3e{width:95.034600px;}
._3d{width:107.415993px;}
._35{width:109.619385px;}
._29{width:111.429282px;}
._3c{width:112.704600px;}
._2c{width:138.511200px;}
._34{width:140.550680px;}
._31{width:142.261020px;}
._2b{width:144.415842px;}
._33{width:146.545842px;}
._1c{width:151.861800px;}
._16{width:152.940466px;}
._12{width:155.071572px;}
._19{width:181.212923px;}
._2a{width:199.232400px;}
._38{width:201.150000px;}
._32{width:203.492400px;}
._2f{width:207.450000px;}
._26{width:224.730000px;}
._1a{width:225.932400px;}
._14{width:228.272400px;}
._24{width:230.792400px;}
._10{width:232.230000px;}
._39{width:381.121357px;}
._e{width:707.232000px;}
._21{width:709.627169px;}
._20{width:711.754553px;}
._f{width:712.891556px;}
._1e{width:725.745778px;}
._2d{width:726.769711px;}
._30{width:729.744446px;}
._27{width:731.161169px;}
._13{width:734.471015px;}
._22{width:747.174976px;}
._18{width:753.283047px;}
._11{width:835.699364px;}
._1d{width:928.248112px;}
._25{width:929.394690px;}
._1b{width:946.770256px;}
._37{width:982.332369px;}
._3a{width:1003.823861px;}
._17{width:1045.769534px;}
._28{width:1047.100550px;}
._2e{width:1050.243356px;}
._1f{width:1051.266817px;}
._23{width:1186.512350px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,93,168);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:29.700000px;}
.fs1{font-size:42.000000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:59.400000px;}
.fs2{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:96.000000px;}
.fs0{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.fs4{font-size:149.079662px;}
.y0{bottom:0.000000px;}
.y1a{bottom:42.520380px;}
.y4{bottom:43.249200px;}
.y3{bottom:55.849200px;}
.y19{bottom:56.255340px;}
.y2{bottom:68.449200px;}
.y18{bottom:69.990300px;}
.ya3{bottom:130.296300px;}
.ye2{bottom:138.173250px;}
.yaf{bottom:143.026200px;}
.y87{bottom:144.922380px;}
.y5e{bottom:149.422380px;}
.ya2{bottom:152.796300px;}
.ye1{bottom:156.923250px;}
.yae{bottom:165.526200px;}
.y86{bottom:167.422380px;}
.y5d{bottom:171.922380px;}
.ya1{bottom:175.296300px;}
.y170{bottom:176.544000px;}
.y10b{bottom:179.637300px;}
.ye0{bottom:183.704100px;}
.y149{bottom:186.368850px;}
.yad{bottom:188.026200px;}
.y85{bottom:189.922380px;}
.ybd{bottom:190.909680px;}
.y5c{bottom:194.422380px;}
.y5{bottom:197.515500px;}
.ya0{bottom:197.796300px;}
.y148{bottom:205.118850px;}
.y10a{bottom:206.418150px;}
.y190{bottom:207.172500px;}
.ydf{bottom:210.484950px;}
.yac{bottom:210.526200px;}
.y16f{bottom:212.304300px;}
.y84{bottom:212.422380px;}
.y5b{bottom:216.922380px;}
.y9f{bottom:220.296300px;}
.ybc{bottom:221.665530px;}
.y147{bottom:223.868850px;}
.y18f{bottom:225.922500px;}
.yde{bottom:229.234950px;}
.y98{bottom:230.422380px;}
.yab{bottom:233.026200px;}
.y109{bottom:233.198400px;}
.y83{bottom:234.922380px;}
.ybb{bottom:238.915530px;}
.y16e{bottom:239.085150px;}
.y5a{bottom:239.422380px;}
.y18e{bottom:244.672500px;}
.y97{bottom:252.922380px;}
.y146{bottom:254.901300px;}
.yaa{bottom:255.526200px;}
.ydd{bottom:256.015800px;}
.yba{bottom:256.165530px;}
.y12b{bottom:257.326050px;}
.y82{bottom:257.422380px;}
.y108{bottom:259.979250px;}
.y9e{bottom:260.796300px;}
.y59{bottom:261.922380px;}
.y18d{bottom:263.422500px;}
.y16d{bottom:265.866150px;}
.yb9{bottom:273.415530px;}
.y145{bottom:273.651300px;}
.y96{bottom:275.422380px;}
.ya9{bottom:278.026200px;}
.y81{bottom:279.922380px;}
.y18c{bottom:282.172500px;}
.ydc{bottom:282.796650px;}
.y12a{bottom:284.107500px;}
.y58{bottom:284.422380px;}
.y107{bottom:286.760100px;}
.yb8{bottom:290.665530px;}
.y144{bottom:292.401300px;}
.y16c{bottom:292.645800px;}
.y95{bottom:297.922380px;}
.ya8{bottom:300.526200px;}
.y18b{bottom:300.922500px;}
.y9d{bottom:301.296300px;}
.y80{bottom:302.422380px;}
.y57{bottom:306.922380px;}
.ydb{bottom:309.577500px;}
.y129{bottom:310.888350px;}
.y106{bottom:313.540950px;}
.y16b{bottom:319.426650px;}
.y18a{bottom:319.672500px;}
.y94{bottom:320.422380px;}
.ya7{bottom:323.026200px;}
.y143{bottom:323.433750px;}
.y9c{bottom:323.796300px;}
.y7f{bottom:324.922380px;}
.yb7{bottom:324.923580px;}
.yda{bottom:328.327200px;}
.y56{bottom:329.422380px;}
.y128{bottom:337.669200px;}
.y189{bottom:338.422500px;}
.y105{bottom:340.321800px;}
.y142{bottom:342.183750px;}
.y93{bottom:342.922380px;}
.ya6{bottom:345.526200px;}
.y16a{bottom:346.207650px;}
.y9b{bottom:346.296300px;}
.y7e{bottom:347.422380px;}
.y55{bottom:351.922380px;}
.yd9{bottom:355.108650px;}
.y127{bottom:356.419200px;}
.y16{bottom:356.472000px;}
.y188{bottom:357.172500px;}
.y104{bottom:359.071800px;}
.y92{bottom:365.422380px;}
.y7d{bottom:369.922380px;}
.y169{bottom:372.988650px;}
.y141{bottom:373.216200px;}
.y54{bottom:374.422380px;}
.y187{bottom:375.922500px;}
.yd7{bottom:381.889500px;}
.y126{bottom:383.200050px;}
.y15{bottom:385.272000px;}
.y103{bottom:385.852650px;}
.ya5{bottom:386.026200px;}
.y9a{bottom:386.796300px;}
.y91{bottom:387.922380px;}
.y36{bottom:388.655430px;}
.y140{bottom:391.966200px;}
.y7c{bottom:392.422380px;}
.y186{bottom:394.672500px;}
.y53{bottom:396.922380px;}
.y168{bottom:399.769500px;}
.yd6{bottom:400.639500px;}
.y102{bottom:404.602650px;}
.y35{bottom:409.655430px;}
.y125{bottom:409.980300px;}
.y90{bottom:410.422380px;}
.y13f{bottom:410.716200px;}
.y185{bottom:413.422500px;}
.y14{bottom:414.072000px;}
.y7b{bottom:414.922380px;}
.yd5{bottom:419.390700px;}
.y52{bottom:419.422380px;}
.y167{bottom:426.552000px;}
.y101{bottom:431.384100px;}
.y184{bottom:432.172500px;}
.y8f{bottom:432.922380px;}
.y124{bottom:436.761750px;}
.y7a{bottom:437.422380px;}
.yd4{bottom:438.140700px;}
.y6{bottom:440.467350px;}
.y13e{bottom:441.749250px;}
.y51{bottom:441.922380px;}
.y13{bottom:442.872000px;}
.y34{bottom:443.411280px;}
.ya4{bottom:446.328000px;}
.y183{bottom:450.922500px;}
.y166{bottom:453.331650px;}
.y8e{bottom:455.422380px;}
.yd8{bottom:456.889500px;}
.yd3{bottom:456.890700px;}
.y100{bottom:458.164950px;}
.y79{bottom:459.922380px;}
.y13d{bottom:460.499250px;}
.y123{bottom:463.542000px;}
.y33{bottom:464.411280px;}
.y50{bottom:464.422380px;}
.y99{bottom:465.097500px;}
.y182{bottom:469.672500px;}
.y12{bottom:471.672000px;}
.y8d{bottom:477.922380px;}
.y13c{bottom:479.249250px;}
.y165{bottom:480.112500px;}
.y122{bottom:482.292000px;}
.y78{bottom:482.422380px;}
.yd2{bottom:483.671550px;}
.yff{bottom:484.945800px;}
.y32{bottom:485.411280px;}
.y4f{bottom:486.922380px;}
.y181{bottom:488.422500px;}
.y13b{bottom:497.999250px;}
.y8c{bottom:500.422380px;}
.y11{bottom:500.472900px;}
.y77{bottom:504.922380px;}
.y31{bottom:506.411280px;}
.y180{bottom:507.172500px;}
.y121{bottom:509.072850px;}
.y4e{bottom:509.422380px;}
.yd1{bottom:510.452400px;}
.yfe{bottom:511.726650px;}
.y8b{bottom:522.922380px;}
.y17f{bottom:525.922500px;}
.y30{bottom:527.411280px;}
.y76{bottom:527.422380px;}
.y13a{bottom:529.032300px;}
.yd0{bottom:529.202400px;}
.y10{bottom:529.272900px;}
.y4d{bottom:531.922380px;}
.y120{bottom:535.853700px;}
.yfc{bottom:538.507500px;}
.y17e{bottom:544.672500px;}
.y8a{bottom:545.422380px;}
.y139{bottom:547.782300px;}
.ycf{bottom:547.952400px;}
.y2f{bottom:548.411280px;}
.y75{bottom:549.922380px;}
.y4c{bottom:554.422380px;}
.y11f{bottom:554.603700px;}
.yfb{bottom:557.257500px;}
.y17d{bottom:563.422500px;}
.y164{bottom:566.290950px;}
.y2e{bottom:569.411280px;}
.y74{bottom:572.422380px;}
.yce{bottom:574.733250px;}
.yfa{bottom:576.007500px;}
.y4b{bottom:576.922380px;}
.y138{bottom:578.815350px;}
.y11e{bottom:581.385150px;}
.y17c{bottom:582.172500px;}
.y89{bottom:585.922380px;}
.y2d{bottom:590.411280px;}
.yf9{bottom:594.757500px;}
.y73{bottom:594.922380px;}
.y137{bottom:597.565350px;}
.y4a{bottom:599.422380px;}
.y11d{bottom:600.135150px;}
.y17b{bottom:600.922500px;}
.ycd{bottom:601.514100px;}
.y163{bottom:602.049000px;}
.y2c{bottom:611.411280px;}
.yf8{bottom:613.508400px;}
.y72{bottom:617.422380px;}
.y11c{bottom:618.885150px;}
.y17a{bottom:619.672500px;}
.ycc{bottom:620.264100px;}
.y162{bottom:620.799000px;}
.y49{bottom:621.922380px;}
.y88{bottom:626.422380px;}
.y136{bottom:628.598400px;}
.yfd{bottom:632.257500px;}
.yf7{bottom:632.258400px;}
.y2b{bottom:632.411280px;}
.y11b{bottom:637.635150px;}
.y179{bottom:638.422500px;}
.ycb{bottom:639.014100px;}
.y71{bottom:639.922380px;}
.y48{bottom:644.422380px;}
.y161{bottom:646.824000px;}
.y135{bottom:647.348400px;}
.y2a{bottom:653.411280px;}
.y11a{bottom:656.385150px;}
.y178{bottom:657.172500px;}
.yca{bottom:657.764100px;}
.yf6{bottom:659.039250px;}
.y70{bottom:662.422380px;}
.y160{bottom:665.574000px;}
.y47{bottom:666.922380px;}
.y177{bottom:675.922500px;}
.y158{bottom:677.349000px;}
.y134{bottom:678.381450px;}
.y119{bottom:683.166000px;}
.y15f{bottom:684.324000px;}
.yc9{bottom:684.544950px;}
.y6f{bottom:684.922380px;}
.yf5{bottom:685.820250px;}
.yf{bottom:688.791900px;}
.y46{bottom:689.422380px;}
.y29{bottom:692.411280px;}
.y176{bottom:694.672380px;}
.y157{bottom:696.099000px;}
.y133{bottom:697.131450px;}
.y15d{bottom:698.274000px;}
.y118{bottom:701.916000px;}
.y15e{bottom:703.074000px;}
.yc8{bottom:703.294950px;}
.yf4{bottom:704.570250px;}
.y6e{bottom:707.422380px;}
.y45{bottom:711.922380px;}
.y175{bottom:713.422380px;}
.y156{bottom:714.849000px;}
.y15c{bottom:717.024000px;}
.yc7{bottom:722.044950px;}
.yf3{bottom:723.320250px;}
.y132{bottom:728.164500px;}
.y117{bottom:728.696850px;}
.y6d{bottom:729.922380px;}
.ye{bottom:731.991900px;}
.y174{bottom:732.172380px;}
.y155{bottom:733.599000px;}
.y44{bottom:734.422380px;}
.y15b{bottom:735.774000px;}
.yc6{bottom:740.794950px;}
.yf2{bottom:742.070250px;}
.y131{bottom:746.914500px;}
.y173{bottom:750.922380px;}
.y154{bottom:752.349000px;}
.y6c{bottom:752.422380px;}
.y15a{bottom:754.524000px;}
.y116{bottom:755.477700px;}
.y43{bottom:756.922380px;}
.yc5{bottom:759.544950px;}
.yf1{bottom:760.820250px;}
.y28{bottom:763.666530px;}
.y130{bottom:765.664500px;}
.y172{bottom:769.672380px;}
.y153{bottom:771.099000px;}
.y159{bottom:773.274000px;}
.y6b{bottom:774.922380px;}
.yd{bottom:775.191900px;}
.yc4{bottom:778.294950px;}
.y42{bottom:779.422380px;}
.yf0{bottom:779.570250px;}
.y115{bottom:782.258550px;}
.y27{bottom:784.666530px;}
.yb6{bottom:788.422380px;}
.y152{bottom:789.849000px;}
.y6a{bottom:797.422380px;}
.yef{bottom:798.320250px;}
.y14f{bottom:799.299000px;}
.y41{bottom:801.922380px;}
.yc3{bottom:805.075800px;}
.y171{bottom:806.422380px;}
.y12f{bottom:807.323700px;}
.y151{bottom:808.599000px;}
.y114{bottom:809.039400px;}
.yb5{bottom:810.922380px;}
.yee{bottom:817.070250px;}
.y14e{bottom:818.049000px;}
.yc{bottom:818.392500px;}
.y26{bottom:818.422380px;}
.y69{bottom:819.922380px;}
.yc2{bottom:823.825800px;}
.y40{bottom:824.422380px;}
.y150{bottom:827.349000px;}
.yb4{bottom:833.422380px;}
.yed{bottom:835.820250px;}
.y14d{bottom:836.799000px;}
.y25{bottom:839.422380px;}
.y68{bottom:842.422380px;}
.yc1{bottom:842.575800px;}
.y3f{bottom:846.922380px;}
.y14c{bottom:855.549000px;}
.yb3{bottom:855.922380px;}
.y24{bottom:860.422380px;}
.yec{bottom:862.601100px;}
.y67{bottom:864.922380px;}
.yc0{bottom:869.356650px;}
.y3e{bottom:869.422380px;}
.y12e{bottom:869.422500px;}
.y14b{bottom:874.299000px;}
.yb2{bottom:878.422380px;}
.yeb{bottom:881.351100px;}
.y23{bottom:881.422380px;}
.y66{bottom:887.422380px;}
.y113{bottom:889.381950px;}
.y3d{bottom:891.922380px;}
.y12d{bottom:891.922500px;}
.y14a{bottom:893.049000px;}
.ybf{bottom:896.137500px;}
.yea{bottom:900.101100px;}
.yb1{bottom:900.922380px;}
.y22{bottom:902.422380px;}
.y65{bottom:909.922380px;}
.y3c{bottom:914.422380px;}
.y12c{bottom:914.422500px;}
.y112{bottom:916.162800px;}
.ye9{bottom:918.851100px;}
.yb{bottom:920.991900px;}
.y21{bottom:923.422380px;}
.y64{bottom:932.422380px;}
.y111{bottom:934.912800px;}
.ybe{bottom:935.670780px;}
.y3b{bottom:936.922380px;}
.ye8{bottom:937.601100px;}
.y20{bottom:944.422380px;}
.y63{bottom:954.922380px;}
.ye7{bottom:956.351100px;}
.y3a{bottom:959.422380px;}
.y110{bottom:961.693650px;}
.yb0{bottom:963.922380px;}
.ya{bottom:964.191900px;}
.y1f{bottom:965.422380px;}
.y62{bottom:977.422380px;}
.y39{bottom:981.922380px;}
.ye6{bottom:983.131950px;}
.y1e{bottom:986.422380px;}
.y10f{bottom:988.474500px;}
.y61{bottom:999.922380px;}
.y38{bottom:1004.422380px;}
.y10e{bottom:1007.224500px;}
.y8{bottom:1007.392426px;}
.y9{bottom:1007.392500px;}
.y1d{bottom:1007.422380px;}
.ye5{bottom:1009.912800px;}
.y60{bottom:1022.422380px;}
.y10d{bottom:1025.974500px;}
.y37{bottom:1026.922380px;}
.y1c{bottom:1028.422380px;}
.ye4{bottom:1036.693650px;}
.y10c{bottom:1044.724500px;}
.y5f{bottom:1044.922380px;}
.y7{bottom:1050.592500px;}
.ye3{bottom:1063.474500px;}
.y1b{bottom:1067.422380px;}
.y17{bottom:1135.408500px;}
.y1{bottom:1137.433500px;}
.h3{height:44.100000px;}
.ha{height:56.700000px;}
.h4{height:63.000000px;}
.he{height:63.000480px;}
.hd{height:63.004800px;}
.h9{height:69.300000px;}
.h8{height:75.600000px;}
.hc{height:75.600480px;}
.h7{height:100.800000px;}
.h2{height:113.400000px;}
.hb{height:138.000000px;}
.h5{height:151.200000px;}
.h6{height:156.533645px;}
.h1{height:1190.250000px;}
.h0{height:1190.550000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:21.189900px;}
.x12{left:22.351200px;}
.x14{left:24.227400px;}
.x3{left:45.779250px;}
.x4{left:72.283500px;}
.xe{left:148.818150px;}
.x25{left:154.782000px;}
.x29{left:156.116400px;}
.x21{left:157.698000px;}
.x28{left:160.243950px;}
.x18{left:162.091500px;}
.x1e{left:172.784522px;}
.x20{left:173.845312px;}
.x19{left:176.704733px;}
.x10{left:178.583100px;}
.x27{left:200.995500px;}
.xc{left:206.078100px;}
.x15{left:210.276900px;}
.x1f{left:243.742682px;}
.x1d{left:245.271054px;}
.x1a{left:247.663035px;}
.xb{left:253.848450px;}
.x13{left:275.640000px;}
.x2a{left:281.328000px;}
.xa{left:290.604900px;}
.x24{left:293.007000px;}
.xf{left:296.319000px;}
.x2{left:299.506500px;}
.x26{left:305.436000px;}
.x5{left:306.913500px;}
.x9{left:310.440000px;}
.x17{left:313.221600px;}
.x16{left:314.687790px;}
.x11{left:348.321000px;}
.x7{left:355.477515px;}
.xd{left:407.712150px;}
.x23{left:441.882000px;}
.x8{left:546.816000px;}
.x6{left:557.040000px;}
.x22{left:590.682000px;}
.x1b{left:688.972995px;}
.x1c{left:692.833748px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.400000pt;}
.v1{vertical-align:28.800000pt;}
.v3{vertical-align:66.666667pt;}
.ls5{letter-spacing:-5.333333pt;}
.lsa{letter-spacing:-4.053333pt;}
.lsb{letter-spacing:-3.786667pt;}
.ls10{letter-spacing:-3.733333pt;}
.lsc{letter-spacing:-3.200000pt;}
.ls4{letter-spacing:-2.880000pt;}
.lse{letter-spacing:-2.560000pt;}
.ls6{letter-spacing:-2.240000pt;}
.ls3{letter-spacing:-1.920000pt;}
.lsd{letter-spacing:-1.493333pt;}
.ls15{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls0{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000853pt;}
.ls12{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.767520pt;}
.ls2{letter-spacing:2.892267pt;}
.ws1{word-spacing:-33.128814pt;}
.ws0{word-spacing:-23.904000pt;}
.ws2{word-spacing:-23.552000pt;}
.ws50{word-spacing:-22.944000pt;}
.ws78{word-spacing:-21.984000pt;}
.ws18{word-spacing:-17.856000pt;}
.ws19{word-spacing:-17.664000pt;}
.ws5{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.744000pt;}
.ws95{word-spacing:-14.880000pt;}
.ws80{word-spacing:-14.731200pt;}
.ws8f{word-spacing:-14.720000pt;}
.wsf9{word-spacing:-14.346667pt;}
.ws92{word-spacing:-13.653333pt;}
.ws151{word-spacing:-13.600000pt;}
.ws82{word-spacing:-13.392000pt;}
.ws132{word-spacing:-11.146667pt;}
.ws10e{word-spacing:-11.093333pt;}
.wseb{word-spacing:-10.826667pt;}
.ws81{word-spacing:-7.365600pt;}
.ws15c{word-spacing:-7.040000pt;}
.ws163{word-spacing:-3.733333pt;}
.ws164{word-spacing:-3.680000pt;}
.ws7e{word-spacing:-3.584000pt;}
.ws6b{word-spacing:-3.456000pt;}
.wsa9{word-spacing:-3.360000pt;}
.ws154{word-spacing:-3.328000pt;}
.ws54{word-spacing:-3.264000pt;}
.ws70{word-spacing:-3.200000pt;}
.ws73{word-spacing:-3.072000pt;}
.wse0{word-spacing:-2.826667pt;}
.ws153{word-spacing:-2.816000pt;}
.wse3{word-spacing:-2.773333pt;}
.ws3d{word-spacing:-2.624000pt;}
.ws89{word-spacing:-2.592000pt;}
.ws51{word-spacing:-2.560000pt;}
.ws71{word-spacing:-2.496000pt;}
.ws155{word-spacing:-2.432000pt;}
.wsd9{word-spacing:-2.400000pt;}
.ws14d{word-spacing:-2.304000pt;}
.ws57{word-spacing:-2.240000pt;}
.ws9e{word-spacing:-2.186667pt;}
.ws7a{word-spacing:-2.176000pt;}
.ws9{word-spacing:-2.112000pt;}
.wsa2{word-spacing:-2.080000pt;}
.ws8{word-spacing:-2.053333pt;}
.ws2c{word-spacing:-1.920000pt;}
.ws7{word-spacing:-1.818667pt;}
.wse1{word-spacing:-1.813333pt;}
.ws157{word-spacing:-1.760000pt;}
.wsd2{word-spacing:-1.653333pt;}
.ws6d{word-spacing:-1.600000pt;}
.ws15a{word-spacing:-1.546667pt;}
.ws13{word-spacing:-1.525333pt;}
.ws15b{word-spacing:-1.493333pt;}
.wsc{word-spacing:-1.408000pt;}
.ws72{word-spacing:-1.344000pt;}
.ws75{word-spacing:-1.152000pt;}
.ws46{word-spacing:-1.088000pt;}
.ws86{word-spacing:-1.024000pt;}
.ws1f{word-spacing:-0.960000pt;}
.wse{word-spacing:-0.938667pt;}
.ws2e{word-spacing:-0.896000pt;}
.wsa7{word-spacing:-0.853333pt;}
.wsa4{word-spacing:-0.800000pt;}
.ws3a{word-spacing:-0.768000pt;}
.ws56{word-spacing:-0.704000pt;}
.ws58{word-spacing:-0.640000pt;}
.ws27{word-spacing:-0.512000pt;}
.wsa5{word-spacing:-0.426667pt;}
.ws4a{word-spacing:-0.384000pt;}
.wsbd{word-spacing:-0.373333pt;}
.ws2b{word-spacing:-0.256000pt;}
.ws31{word-spacing:-0.192000pt;}
.wsd{word-spacing:-0.176000pt;}
.wsbe{word-spacing:-0.160000pt;}
.ws22{word-spacing:-0.128000pt;}
.ws3{word-spacing:0.000000pt;}
.wse6{word-spacing:0.053333pt;}
.ws61{word-spacing:0.064000pt;}
.ws8a{word-spacing:0.144000pt;}
.wse2{word-spacing:0.160000pt;}
.ws32{word-spacing:0.192000pt;}
.wsc2{word-spacing:0.213333pt;}
.ws6{word-spacing:0.234667pt;}
.ws35{word-spacing:0.256000pt;}
.ws25{word-spacing:0.320000pt;}
.wsdf{word-spacing:0.373333pt;}
.ws52{word-spacing:0.384000pt;}
.ws2d{word-spacing:0.448000pt;}
.ws159{word-spacing:0.480000pt;}
.wsdc{word-spacing:0.512000pt;}
.ws149{word-spacing:0.533333pt;}
.ws39{word-spacing:0.576000pt;}
.ws45{word-spacing:0.640000pt;}
.ws11{word-spacing:0.645333pt;}
.wsa{word-spacing:0.704000pt;}
.ws5c{word-spacing:0.768000pt;}
.ws156{word-spacing:0.800000pt;}
.ws53{word-spacing:0.832000pt;}
.ws14e{word-spacing:0.896000pt;}
.wsdd{word-spacing:0.960000pt;}
.ws160{word-spacing:1.013333pt;}
.ws23{word-spacing:1.024000pt;}
.ws64{word-spacing:1.088000pt;}
.wsa8{word-spacing:1.120000pt;}
.ws66{word-spacing:1.152000pt;}
.wsb{word-spacing:1.173333pt;}
.ws40{word-spacing:1.216000pt;}
.ws9b{word-spacing:1.280000pt;}
.wsd1{word-spacing:1.333333pt;}
.ws21{word-spacing:1.344000pt;}
.ws87{word-spacing:1.408000pt;}
.ws5b{word-spacing:1.536000pt;}
.ws5a{word-spacing:1.600000pt;}
.wse4{word-spacing:1.653333pt;}
.ws79{word-spacing:1.664000pt;}
.ws3b{word-spacing:1.728000pt;}
.ws7b{word-spacing:1.792000pt;}
.ws158{word-spacing:1.813333pt;}
.wsa6{word-spacing:1.920000pt;}
.ws15d{word-spacing:1.973333pt;}
.ws36{word-spacing:1.984000pt;}
.ws14{word-spacing:1.994667pt;}
.ws9c{word-spacing:2.080000pt;}
.ws28{word-spacing:2.112000pt;}
.wsac{word-spacing:2.133333pt;}
.ws1d{word-spacing:2.176000pt;}
.wsd6{word-spacing:2.186667pt;}
.ws38{word-spacing:2.240000pt;}
.ws15{word-spacing:2.288000pt;}
.wsb9{word-spacing:2.293333pt;}
.ws20{word-spacing:2.304000pt;}
.wsb8{word-spacing:2.346667pt;}
.ws63{word-spacing:2.368000pt;}
.ws62{word-spacing:2.432000pt;}
.wsda{word-spacing:2.453333pt;}
.ws55{word-spacing:2.496000pt;}
.ws9f{word-spacing:2.506667pt;}
.ws150{word-spacing:2.560000pt;}
.ws34{word-spacing:2.624000pt;}
.wse5{word-spacing:2.666667pt;}
.ws83{word-spacing:2.752000pt;}
.ws2a{word-spacing:2.816000pt;}
.ws2f{word-spacing:2.944000pt;}
.ws6a{word-spacing:3.008000pt;}
.ws5f{word-spacing:3.072000pt;}
.wsc8{word-spacing:3.093333pt;}
.wsde{word-spacing:3.136000pt;}
.wsc7{word-spacing:3.146667pt;}
.ws14f{word-spacing:3.264000pt;}
.ws65{word-spacing:3.328000pt;}
.ws4c{word-spacing:3.456000pt;}
.ws14a{word-spacing:3.520000pt;}
.ws15e{word-spacing:3.573333pt;}
.ws6e{word-spacing:3.648000pt;}
.ws47{word-spacing:3.712000pt;}
.wsa3{word-spacing:3.786667pt;}
.ws14c{word-spacing:3.840000pt;}
.wsc1{word-spacing:3.893333pt;}
.ws6c{word-spacing:3.904000pt;}
.ws49{word-spacing:3.968000pt;}
.ws48{word-spacing:4.032000pt;}
.wsd7{word-spacing:4.053333pt;}
.ws44{word-spacing:4.096000pt;}
.wsa0{word-spacing:4.213333pt;}
.ws30{word-spacing:4.224000pt;}
.ws3f{word-spacing:4.352000pt;}
.ws4d{word-spacing:4.416000pt;}
.ws4f{word-spacing:4.480000pt;}
.ws60{word-spacing:4.608000pt;}
.ws85{word-spacing:4.672000pt;}
.ws15f{word-spacing:4.693333pt;}
.ws1b{word-spacing:4.736000pt;}
.ws1c{word-spacing:4.800000pt;}
.ws26{word-spacing:4.864000pt;}
.wsa1{word-spacing:4.906667pt;}
.wsd5{word-spacing:4.960000pt;}
.ws7f{word-spacing:4.992000pt;}
.ws59{word-spacing:5.056000pt;}
.wsbc{word-spacing:5.066667pt;}
.ws43{word-spacing:5.120000pt;}
.ws68{word-spacing:5.376000pt;}
.ws4e{word-spacing:5.440000pt;}
.ws88{word-spacing:5.568000pt;}
.wsd3{word-spacing:5.706667pt;}
.ws4b{word-spacing:5.760000pt;}
.ws29{word-spacing:5.824000pt;}
.wsbb{word-spacing:5.920000pt;}
.ws152{word-spacing:6.080000pt;}
.ws41{word-spacing:6.144000pt;}
.ws24{word-spacing:6.208000pt;}
.ws3e{word-spacing:6.272000pt;}
.ws6f{word-spacing:6.528000pt;}
.ws162{word-spacing:6.666667pt;}
.ws16{word-spacing:6.864000pt;}
.wsba{word-spacing:6.933333pt;}
.ws3c{word-spacing:7.040000pt;}
.ws14b{word-spacing:7.232000pt;}
.ws9d{word-spacing:7.253333pt;}
.ws1e{word-spacing:7.360000pt;}
.wsf{word-spacing:7.626667pt;}
.ws10{word-spacing:7.744000pt;}
.ws5e{word-spacing:7.872000pt;}
.ws7d{word-spacing:8.000000pt;}
.ws12{word-spacing:8.037333pt;}
.ws161{word-spacing:8.053333pt;}
.wsc0{word-spacing:8.160000pt;}
.ws76{word-spacing:8.192000pt;}
.wsbf{word-spacing:8.213333pt;}
.ws7c{word-spacing:8.576000pt;}
.wsaa{word-spacing:8.586667pt;}
.ws17{word-spacing:8.624000pt;}
.ws77{word-spacing:8.960000pt;}
.ws42{word-spacing:9.152000pt;}
.ws67{word-spacing:9.216000pt;}
.ws84{word-spacing:9.344000pt;}
.ws33{word-spacing:9.856000pt;}
.ws74{word-spacing:9.920000pt;}
.wsdb{word-spacing:10.112000pt;}
.wsd8{word-spacing:10.240000pt;}
.ws37{word-spacing:10.624000pt;}
.ws5d{word-spacing:10.688000pt;}
.wsab{word-spacing:11.413333pt;}
.wse7{word-spacing:14.826667pt;}
.wsc4{word-spacing:15.040000pt;}
.wsc3{word-spacing:15.200000pt;}
.wsd4{word-spacing:15.520000pt;}
.wsc6{word-spacing:16.533333pt;}
.ws11f{word-spacing:35.754613pt;}
.wsfd{word-spacing:35.942133pt;}
.wsf4{word-spacing:36.127573pt;}
.ws140{word-spacing:36.129547pt;}
.ws124{word-spacing:37.695477pt;}
.ws13a{word-spacing:37.700944pt;}
.wsf8{word-spacing:37.702688pt;}
.wsf3{word-spacing:37.887611pt;}
.ws146{word-spacing:37.888248pt;}
.ws114{word-spacing:37.888781pt;}
.ws123{word-spacing:37.891203pt;}
.ws147{word-spacing:37.894115pt;}
.ws121{word-spacing:38.127181pt;}
.ws109{word-spacing:38.129888pt;}
.wsf6{word-spacing:38.314915pt;}
.ws115{word-spacing:39.646400pt;}
.ws148{word-spacing:39.648533pt;}
.ws12b{word-spacing:39.887755pt;}
.ws10c{word-spacing:40.074144pt;}
.ws107{word-spacing:40.554381pt;}
.ws128{word-spacing:41.834277pt;}
.ws111{word-spacing:42.314277pt;}
.wsc5{word-spacing:43.253333pt;}
.ws141{word-spacing:43.268512pt;}
.ws11e{word-spacing:43.275952pt;}
.ws122{word-spacing:43.276021pt;}
.wsfb{word-spacing:43.461115pt;}
.wsf7{word-spacing:43.463179pt;}
.ws13f{word-spacing:43.648848pt;}
.ws131{word-spacing:44.047477pt;}
.wsfc{word-spacing:45.221477pt;}
.wsf2{word-spacing:45.408779pt;}
.ws106{word-spacing:45.408821pt;}
.ws113{word-spacing:45.411979pt;}
.wsf5{word-spacing:45.836267pt;}
.ws108{word-spacing:46.873691pt;}
.ws110{word-spacing:47.168677pt;}
.wsf1{word-spacing:47.490459pt;}
.ws10a{word-spacing:47.594667pt;}
.ws10d{word-spacing:47.596800pt;}
.ws142{word-spacing:48.821424pt;}
.ws127{word-spacing:48.821605pt;}
.ws119{word-spacing:48.824219pt;}
.ws137{word-spacing:48.827291pt;}
.ws125{word-spacing:48.902400pt;}
.ws112{word-spacing:49.248715pt;}
.ws103{word-spacing:49.248859pt;}
.ws104{word-spacing:49.300485pt;}
.ws12c{word-spacing:49.834277pt;}
.ws135{word-spacing:49.836411pt;}
.ws130{word-spacing:50.447477pt;}
.ws120{word-spacing:50.660944pt;}
.ws10b{word-spacing:50.661333pt;}
.ws12f{word-spacing:50.875344pt;}
.ws11d{word-spacing:50.900267pt;}
.ws134{word-spacing:51.007024pt;}
.ws13b{word-spacing:51.248288pt;}
.ws129{word-spacing:51.567611pt;}
.ws13c{word-spacing:52.126933pt;}
.ws105{word-spacing:52.369600pt;}
.ws143{word-spacing:52.846544pt;}
.ws11a{word-spacing:52.847477pt;}
.ws145{word-spacing:52.847611pt;}
.ws12e{word-spacing:52.850667pt;}
.ws136{word-spacing:53.326933pt;}
.ws118{word-spacing:53.329600pt;}
.ws102{word-spacing:55.296000pt;}
.ws133{word-spacing:55.670400pt;}
.wsfa{word-spacing:56.069867pt;}
.ws101{word-spacing:56.234133pt;}
.ws100{word-spacing:56.421867pt;}
.wsfe{word-spacing:58.179877pt;}
.ws144{word-spacing:58.189333pt;}
.ws126{word-spacing:58.363200pt;}
.ws10f{word-spacing:59.454400pt;}
.ws12d{word-spacing:59.834224pt;}
.wsee{word-spacing:60.101333pt;}
.ws13e{word-spacing:60.263467pt;}
.ws139{word-spacing:61.460800pt;}
.wsec{word-spacing:61.701867pt;}
.ws116{word-spacing:62.021424pt;}
.ws12a{word-spacing:63.648144pt;}
.wsff{word-spacing:63.862933pt;}
.wsed{word-spacing:64.876267pt;}
.ws13d{word-spacing:65.216000pt;}
.ws138{word-spacing:66.075200pt;}
.ws8b{word-spacing:67.522667pt;}
.wsef{word-spacing:68.950933pt;}
.ws11b{word-spacing:69.109333pt;}
.ws117{word-spacing:69.194667pt;}
.wsf0{word-spacing:70.846400pt;}
.ws11c{word-spacing:72.475200pt;}
.wsd0{word-spacing:109.655943pt;}
.wscd{word-spacing:110.133333pt;}
.wscf{word-spacing:110.214944pt;}
.wscb{word-spacing:113.201579pt;}
.wsb4{word-spacing:113.946435pt;}
.wsc9{word-spacing:119.816081pt;}
.wsb0{word-spacing:120.934933pt;}
.ws9a{word-spacing:121.092800pt;}
.ws94{word-spacing:121.148800pt;}
.ws8e{word-spacing:122.614245pt;}
.ws8d{word-spacing:122.907733pt;}
.ws91{word-spacing:123.040370pt;}
.wsb3{word-spacing:124.506523pt;}
.wsae{word-spacing:124.666656pt;}
.wsb1{word-spacing:125.493531pt;}
.ws98{word-spacing:125.520043pt;}
.wsb6{word-spacing:126.826864pt;}
.wsca{word-spacing:127.307360pt;}
.ws90{word-spacing:127.469147pt;}
.wsb7{word-spacing:134.669333pt;}
.wsb2{word-spacing:135.041067pt;}
.wsad{word-spacing:135.200533pt;}
.wsaf{word-spacing:136.027200pt;}
.ws96{word-spacing:136.054400pt;}
.ws93{word-spacing:136.241067pt;}
.wsb5{word-spacing:137.360533pt;}
.ws8c{word-spacing:138.002667pt;}
.wse8{word-spacing:213.600000pt;}
.ws97{word-spacing:288.026190pt;}
.wse9{word-spacing:343.785364pt;}
.wsea{word-spacing:360.213333pt;}
.wscc{word-spacing:1184.241563pt;}
.wsce{word-spacing:1250.752357pt;}
.ws99{word-spacing:1256.881765pt;}
.ws69{word-spacing:2994.081067pt;}
._3b{margin-left:-28.764652pt;}
._4d{margin-left:-17.205813pt;}
._7{margin-left:-10.838123pt;}
._8{margin-left:-9.414699pt;}
._5{margin-left:-7.767680pt;}
._6{margin-left:-6.155237pt;}
._b{margin-left:-5.130471pt;}
._4{margin-left:-3.840627pt;}
._2{margin-left:-2.617383pt;}
._1{margin-left:-1.717644pt;}
._0{width:0.960835pt;}
._a{width:2.592129pt;}
._9{width:3.713816pt;}
._3{width:5.077205pt;}
._d{width:6.054083pt;}
._15{width:8.095716pt;}
._c{width:9.529408pt;}
._45{width:38.895556pt;}
._40{width:48.369127pt;}
._4b{width:51.002897pt;}
._42{width:52.593555pt;}
._41{width:53.675673pt;}
._46{width:55.136225pt;}
._4a{width:57.128688pt;}
._48{width:61.897059pt;}
._49{width:62.836308pt;}
._4c{width:63.769741pt;}
._47{width:65.722323pt;}
._44{width:68.101824pt;}
._43{width:70.381564pt;}
._36{width:72.318676pt;}
._3f{width:76.208000pt;}
._3e{width:84.475200pt;}
._3d{width:95.480882pt;}
._35{width:97.439453pt;}
._29{width:99.048251pt;}
._3c{width:100.181867pt;}
._2c{width:123.121067pt;}
._34{width:124.933938pt;}
._31{width:126.454240pt;}
._2b{width:128.369637pt;}
._33{width:130.262971pt;}
._1c{width:134.988267pt;}
._16{width:135.947081pt;}
._12{width:137.841397pt;}
._19{width:161.078153pt;}
._2a{width:177.095467pt;}
._38{width:178.800000pt;}
._32{width:180.882133pt;}
._2f{width:184.400000pt;}
._26{width:199.760000pt;}
._1a{width:200.828800pt;}
._14{width:202.908800pt;}
._24{width:205.148800pt;}
._10{width:206.426667pt;}
._39{width:338.774540pt;}
._e{width:628.650667pt;}
._21{width:630.779706pt;}
._20{width:632.670714pt;}
._f{width:633.681383pt;}
._1e{width:645.107358pt;}
._2d{width:646.017521pt;}
._30{width:648.661729pt;}
._27{width:649.921039pt;}
._13{width:652.863124pt;}
._22{width:664.155535pt;}
._18{width:669.584931pt;}
._11{width:742.843879pt;}
._1d{width:825.109433pt;}
._25{width:826.128613pt;}
._1b{width:841.573561pt;}
._37{width:873.184328pt;}
._3a{width:892.287877pt;}
._17{width:929.572919pt;}
._28{width:930.756044pt;}
._2e{width:933.549650pt;}
._1f{width:934.459393pt;}
._23{width:1054.677644pt;}
.fsa{font-size:26.400000pt;}
.fs1{font-size:37.333333pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:52.800000pt;}
.fs2{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:85.333333pt;}
.fs0{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.fs4{font-size:132.515255pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:37.795893pt;}
.y4{bottom:38.443733pt;}
.y3{bottom:49.643733pt;}
.y19{bottom:50.004747pt;}
.y2{bottom:60.843733pt;}
.y18{bottom:62.213600pt;}
.ya3{bottom:115.818933pt;}
.ye2{bottom:122.820667pt;}
.yaf{bottom:127.134400pt;}
.y87{bottom:128.819893pt;}
.y5e{bottom:132.819893pt;}
.ya2{bottom:135.818933pt;}
.ye1{bottom:139.487333pt;}
.yae{bottom:147.134400pt;}
.y86{bottom:148.819893pt;}
.y5d{bottom:152.819893pt;}
.ya1{bottom:155.818933pt;}
.y170{bottom:156.928000pt;}
.y10b{bottom:159.677600pt;}
.ye0{bottom:163.292533pt;}
.y149{bottom:165.661200pt;}
.yad{bottom:167.134400pt;}
.y85{bottom:168.819893pt;}
.ybd{bottom:169.697493pt;}
.y5c{bottom:172.819893pt;}
.y5{bottom:175.569333pt;}
.ya0{bottom:175.818933pt;}
.y148{bottom:182.327867pt;}
.y10a{bottom:183.482800pt;}
.y190{bottom:184.153333pt;}
.ydf{bottom:187.097733pt;}
.yac{bottom:187.134400pt;}
.y16f{bottom:188.714933pt;}
.y84{bottom:188.819893pt;}
.y5b{bottom:192.819893pt;}
.y9f{bottom:195.818933pt;}
.ybc{bottom:197.036027pt;}
.y147{bottom:198.994533pt;}
.y18f{bottom:200.820000pt;}
.yde{bottom:203.764400pt;}
.y98{bottom:204.819893pt;}
.yab{bottom:207.134400pt;}
.y109{bottom:207.287467pt;}
.y83{bottom:208.819893pt;}
.ybb{bottom:212.369360pt;}
.y16e{bottom:212.520133pt;}
.y5a{bottom:212.819893pt;}
.y18e{bottom:217.486667pt;}
.y97{bottom:224.819893pt;}
.y146{bottom:226.578933pt;}
.yaa{bottom:227.134400pt;}
.ydd{bottom:227.569600pt;}
.yba{bottom:227.702693pt;}
.y12b{bottom:228.734267pt;}
.y82{bottom:228.819893pt;}
.y108{bottom:231.092667pt;}
.y9e{bottom:231.818933pt;}
.y59{bottom:232.819893pt;}
.y18d{bottom:234.153333pt;}
.y16d{bottom:236.325467pt;}
.yb9{bottom:243.036027pt;}
.y145{bottom:243.245600pt;}
.y96{bottom:244.819893pt;}
.ya9{bottom:247.134400pt;}
.y81{bottom:248.819893pt;}
.y18c{bottom:250.820000pt;}
.ydc{bottom:251.374800pt;}
.y12a{bottom:252.540000pt;}
.y58{bottom:252.819893pt;}
.y107{bottom:254.897867pt;}
.yb8{bottom:258.369360pt;}
.y144{bottom:259.912267pt;}
.y16c{bottom:260.129600pt;}
.y95{bottom:264.819893pt;}
.ya8{bottom:267.134400pt;}
.y18b{bottom:267.486667pt;}
.y9d{bottom:267.818933pt;}
.y80{bottom:268.819893pt;}
.y57{bottom:272.819893pt;}
.ydb{bottom:275.180000pt;}
.y129{bottom:276.345200pt;}
.y106{bottom:278.703067pt;}
.y16b{bottom:283.934800pt;}
.y18a{bottom:284.153333pt;}
.y94{bottom:284.819893pt;}
.ya7{bottom:287.134400pt;}
.y143{bottom:287.496667pt;}
.y9c{bottom:287.818933pt;}
.y7f{bottom:288.819893pt;}
.yb7{bottom:288.820960pt;}
.yda{bottom:291.846400pt;}
.y56{bottom:292.819893pt;}
.y128{bottom:300.150400pt;}
.y189{bottom:300.820000pt;}
.y105{bottom:302.508267pt;}
.y142{bottom:304.163333pt;}
.y93{bottom:304.819893pt;}
.ya6{bottom:307.134400pt;}
.y16a{bottom:307.740133pt;}
.y9b{bottom:307.818933pt;}
.y7e{bottom:308.819893pt;}
.y55{bottom:312.819893pt;}
.yd9{bottom:315.652133pt;}
.y127{bottom:316.817067pt;}
.y16{bottom:316.864000pt;}
.y188{bottom:317.486667pt;}
.y104{bottom:319.174933pt;}
.y92{bottom:324.819893pt;}
.y7d{bottom:328.819893pt;}
.y169{bottom:331.545467pt;}
.y141{bottom:331.747733pt;}
.y54{bottom:332.819893pt;}
.y187{bottom:334.153333pt;}
.yd7{bottom:339.457333pt;}
.y126{bottom:340.622267pt;}
.y15{bottom:342.464000pt;}
.y103{bottom:342.980133pt;}
.ya5{bottom:343.134400pt;}
.y9a{bottom:343.818933pt;}
.y91{bottom:344.819893pt;}
.y36{bottom:345.471493pt;}
.y140{bottom:348.414400pt;}
.y7c{bottom:348.819893pt;}
.y186{bottom:350.820000pt;}
.y53{bottom:352.819893pt;}
.y168{bottom:355.350667pt;}
.yd6{bottom:356.124000pt;}
.y102{bottom:359.646800pt;}
.y35{bottom:364.138160pt;}
.y125{bottom:364.426933pt;}
.y90{bottom:364.819893pt;}
.y13f{bottom:365.081067pt;}
.y185{bottom:367.486667pt;}
.y14{bottom:368.064000pt;}
.y7b{bottom:368.819893pt;}
.yd5{bottom:372.791733pt;}
.y52{bottom:372.819893pt;}
.y167{bottom:379.157333pt;}
.y101{bottom:383.452533pt;}
.y184{bottom:384.153333pt;}
.y8f{bottom:384.819893pt;}
.y124{bottom:388.232667pt;}
.y7a{bottom:388.819893pt;}
.yd4{bottom:389.458400pt;}
.y6{bottom:391.526533pt;}
.y13e{bottom:392.666000pt;}
.y51{bottom:392.819893pt;}
.y13{bottom:393.664000pt;}
.y34{bottom:394.143360pt;}
.ya4{bottom:396.736000pt;}
.y183{bottom:400.820000pt;}
.y166{bottom:402.961467pt;}
.y8e{bottom:404.819893pt;}
.yd8{bottom:406.124000pt;}
.yd3{bottom:406.125067pt;}
.y100{bottom:407.257733pt;}
.y79{bottom:408.819893pt;}
.y13d{bottom:409.332667pt;}
.y123{bottom:412.037333pt;}
.y33{bottom:412.810027pt;}
.y50{bottom:412.819893pt;}
.y99{bottom:413.420000pt;}
.y182{bottom:417.486667pt;}
.y12{bottom:419.264000pt;}
.y8d{bottom:424.819893pt;}
.y13c{bottom:425.999333pt;}
.y165{bottom:426.766667pt;}
.y122{bottom:428.704000pt;}
.y78{bottom:428.819893pt;}
.yd2{bottom:429.930267pt;}
.yff{bottom:431.062933pt;}
.y32{bottom:431.476693pt;}
.y4f{bottom:432.819893pt;}
.y181{bottom:434.153333pt;}
.y13b{bottom:442.666000pt;}
.y8c{bottom:444.819893pt;}
.y11{bottom:444.864800pt;}
.y77{bottom:448.819893pt;}
.y31{bottom:450.143360pt;}
.y180{bottom:450.820000pt;}
.y121{bottom:452.509200pt;}
.y4e{bottom:452.819893pt;}
.yd1{bottom:453.735467pt;}
.yfe{bottom:454.868133pt;}
.y8b{bottom:464.819893pt;}
.y17f{bottom:467.486667pt;}
.y30{bottom:468.810027pt;}
.y76{bottom:468.819893pt;}
.y13a{bottom:470.250933pt;}
.yd0{bottom:470.402133pt;}
.y10{bottom:470.464800pt;}
.y4d{bottom:472.819893pt;}
.y120{bottom:476.314400pt;}
.yfc{bottom:478.673333pt;}
.y17e{bottom:484.153333pt;}
.y8a{bottom:484.819893pt;}
.y139{bottom:486.917600pt;}
.ycf{bottom:487.068800pt;}
.y2f{bottom:487.476693pt;}
.y75{bottom:488.819893pt;}
.y4c{bottom:492.819893pt;}
.y11f{bottom:492.981067pt;}
.yfb{bottom:495.340000pt;}
.y17d{bottom:500.820000pt;}
.y164{bottom:503.369733pt;}
.y2e{bottom:506.143360pt;}
.y74{bottom:508.819893pt;}
.yce{bottom:510.874000pt;}
.yfa{bottom:512.006667pt;}
.y4b{bottom:512.819893pt;}
.y138{bottom:514.502533pt;}
.y11e{bottom:516.786800pt;}
.y17c{bottom:517.486667pt;}
.y89{bottom:520.819893pt;}
.y2d{bottom:524.810027pt;}
.yf9{bottom:528.673333pt;}
.y73{bottom:528.819893pt;}
.y137{bottom:531.169200pt;}
.y4a{bottom:532.819893pt;}
.y11d{bottom:533.453467pt;}
.y17b{bottom:534.153333pt;}
.ycd{bottom:534.679200pt;}
.y163{bottom:535.154667pt;}
.y2c{bottom:543.476693pt;}
.yf8{bottom:545.340800pt;}
.y72{bottom:548.819893pt;}
.y11c{bottom:550.120133pt;}
.y17a{bottom:550.820000pt;}
.ycc{bottom:551.345867pt;}
.y162{bottom:551.821333pt;}
.y49{bottom:552.819893pt;}
.y88{bottom:556.819893pt;}
.y136{bottom:558.754133pt;}
.yfd{bottom:562.006667pt;}
.yf7{bottom:562.007467pt;}
.y2b{bottom:562.143360pt;}
.y11b{bottom:566.786800pt;}
.y179{bottom:567.486667pt;}
.ycb{bottom:568.012533pt;}
.y71{bottom:568.819893pt;}
.y48{bottom:572.819893pt;}
.y161{bottom:574.954667pt;}
.y135{bottom:575.420800pt;}
.y2a{bottom:580.810027pt;}
.y11a{bottom:583.453467pt;}
.y178{bottom:584.153333pt;}
.yca{bottom:584.679200pt;}
.yf6{bottom:585.812667pt;}
.y70{bottom:588.819893pt;}
.y160{bottom:591.621333pt;}
.y47{bottom:592.819893pt;}
.y177{bottom:600.820000pt;}
.y158{bottom:602.088000pt;}
.y134{bottom:603.005733pt;}
.y119{bottom:607.258667pt;}
.y15f{bottom:608.288000pt;}
.yc9{bottom:608.484400pt;}
.y6f{bottom:608.819893pt;}
.yf5{bottom:609.618000pt;}
.yf{bottom:612.259467pt;}
.y46{bottom:612.819893pt;}
.y29{bottom:615.476693pt;}
.y176{bottom:617.486560pt;}
.y157{bottom:618.754667pt;}
.y133{bottom:619.672400pt;}
.y15d{bottom:620.688000pt;}
.y118{bottom:623.925333pt;}
.y15e{bottom:624.954667pt;}
.yc8{bottom:625.151067pt;}
.yf4{bottom:626.284667pt;}
.y6e{bottom:628.819893pt;}
.y45{bottom:632.819893pt;}
.y175{bottom:634.153227pt;}
.y156{bottom:635.421333pt;}
.y15c{bottom:637.354667pt;}
.yc7{bottom:641.817733pt;}
.yf3{bottom:642.951333pt;}
.y132{bottom:647.257333pt;}
.y117{bottom:647.730533pt;}
.y6d{bottom:648.819893pt;}
.ye{bottom:650.659467pt;}
.y174{bottom:650.819893pt;}
.y155{bottom:652.088000pt;}
.y44{bottom:652.819893pt;}
.y15b{bottom:654.021333pt;}
.yc6{bottom:658.484400pt;}
.yf2{bottom:659.618000pt;}
.y131{bottom:663.924000pt;}
.y173{bottom:667.486560pt;}
.y154{bottom:668.754667pt;}
.y6c{bottom:668.819893pt;}
.y15a{bottom:670.688000pt;}
.y116{bottom:671.535733pt;}
.y43{bottom:672.819893pt;}
.yc5{bottom:675.151067pt;}
.yf1{bottom:676.284667pt;}
.y28{bottom:678.814693pt;}
.y130{bottom:680.590667pt;}
.y172{bottom:684.153227pt;}
.y153{bottom:685.421333pt;}
.y159{bottom:687.354667pt;}
.y6b{bottom:688.819893pt;}
.yd{bottom:689.059467pt;}
.yc4{bottom:691.817733pt;}
.y42{bottom:692.819893pt;}
.yf0{bottom:692.951333pt;}
.y115{bottom:695.340933pt;}
.y27{bottom:697.481360pt;}
.yb6{bottom:700.819893pt;}
.y152{bottom:702.088000pt;}
.y6a{bottom:708.819893pt;}
.yef{bottom:709.618000pt;}
.y14f{bottom:710.488000pt;}
.y41{bottom:712.819893pt;}
.yc3{bottom:715.622933pt;}
.y171{bottom:716.819893pt;}
.y12f{bottom:717.621067pt;}
.y151{bottom:718.754667pt;}
.y114{bottom:719.146133pt;}
.yb5{bottom:720.819893pt;}
.yee{bottom:726.284667pt;}
.y14e{bottom:727.154667pt;}
.yc{bottom:727.460000pt;}
.y26{bottom:727.486560pt;}
.y69{bottom:728.819893pt;}
.yc2{bottom:732.289600pt;}
.y40{bottom:732.819893pt;}
.y150{bottom:735.421333pt;}
.yb4{bottom:740.819893pt;}
.yed{bottom:742.951333pt;}
.y14d{bottom:743.821333pt;}
.y25{bottom:746.153227pt;}
.y68{bottom:748.819893pt;}
.yc1{bottom:748.956267pt;}
.y3f{bottom:752.819893pt;}
.y14c{bottom:760.488000pt;}
.yb3{bottom:760.819893pt;}
.y24{bottom:764.819893pt;}
.yec{bottom:766.756533pt;}
.y67{bottom:768.819893pt;}
.yc0{bottom:772.761467pt;}
.y3e{bottom:772.819893pt;}
.y12e{bottom:772.820000pt;}
.y14b{bottom:777.154667pt;}
.yb2{bottom:780.819893pt;}
.yeb{bottom:783.423200pt;}
.y23{bottom:783.486560pt;}
.y66{bottom:788.819893pt;}
.y113{bottom:790.561733pt;}
.y3d{bottom:792.819893pt;}
.y12d{bottom:792.820000pt;}
.y14a{bottom:793.821333pt;}
.ybf{bottom:796.566667pt;}
.yea{bottom:800.089867pt;}
.yb1{bottom:800.819893pt;}
.y22{bottom:802.153227pt;}
.y65{bottom:808.819893pt;}
.y3c{bottom:812.819893pt;}
.y12c{bottom:812.820000pt;}
.y112{bottom:814.366933pt;}
.ye9{bottom:816.756533pt;}
.yb{bottom:818.659467pt;}
.y21{bottom:820.819893pt;}
.y64{bottom:828.819893pt;}
.y111{bottom:831.033600pt;}
.ybe{bottom:831.707360pt;}
.y3b{bottom:832.819893pt;}
.ye8{bottom:833.423200pt;}
.y20{bottom:839.486560pt;}
.y63{bottom:848.819893pt;}
.ye7{bottom:850.089867pt;}
.y3a{bottom:852.819893pt;}
.y110{bottom:854.838800pt;}
.yb0{bottom:856.819893pt;}
.ya{bottom:857.059467pt;}
.y1f{bottom:858.153227pt;}
.y62{bottom:868.819893pt;}
.y39{bottom:872.819893pt;}
.ye6{bottom:873.895067pt;}
.y1e{bottom:876.819893pt;}
.y10f{bottom:878.644000pt;}
.y61{bottom:888.819893pt;}
.y38{bottom:892.819893pt;}
.y10e{bottom:895.310667pt;}
.y8{bottom:895.459934pt;}
.y9{bottom:895.460000pt;}
.y1d{bottom:895.486560pt;}
.ye5{bottom:897.700267pt;}
.y60{bottom:908.819893pt;}
.y10d{bottom:911.977333pt;}
.y37{bottom:912.819893pt;}
.y1c{bottom:914.153227pt;}
.ye4{bottom:921.505467pt;}
.y10c{bottom:928.644000pt;}
.y5f{bottom:928.819893pt;}
.y7{bottom:933.860000pt;}
.ye3{bottom:945.310667pt;}
.y1b{bottom:948.819893pt;}
.y17{bottom:1009.252000pt;}
.y1{bottom:1011.052000pt;}
.h3{height:39.200000pt;}
.ha{height:50.400000pt;}
.h4{height:56.000000pt;}
.he{height:56.000427pt;}
.hd{height:56.004267pt;}
.h9{height:61.600000pt;}
.h8{height:67.200000pt;}
.hc{height:67.200427pt;}
.h7{height:89.600000pt;}
.h2{height:100.800000pt;}
.hb{height:122.666667pt;}
.h5{height:134.400000pt;}
.h6{height:139.141018pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.266667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:18.835467pt;}
.x12{left:19.867733pt;}
.x14{left:21.535467pt;}
.x3{left:40.692667pt;}
.x4{left:64.252000pt;}
.xe{left:132.282800pt;}
.x25{left:137.584000pt;}
.x29{left:138.770133pt;}
.x21{left:140.176000pt;}
.x28{left:142.439067pt;}
.x18{left:144.081333pt;}
.x1e{left:153.586242pt;}
.x20{left:154.529166pt;}
.x19{left:157.070873pt;}
.x10{left:158.740533pt;}
.x27{left:178.662667pt;}
.xc{left:183.180533pt;}
.x15{left:186.912800pt;}
.x1f{left:216.660162pt;}
.x1d{left:218.018715pt;}
.x1a{left:220.144920pt;}
.xb{left:225.643067pt;}
.x13{left:245.013333pt;}
.x2a{left:250.069333pt;}
.xa{left:258.315467pt;}
.x24{left:260.450667pt;}
.xf{left:263.394667pt;}
.x2{left:266.228000pt;}
.x26{left:271.498667pt;}
.x5{left:272.812000pt;}
.x9{left:275.946667pt;}
.x17{left:278.419200pt;}
.x16{left:279.722480pt;}
.x11{left:309.618667pt;}
.x7{left:315.980014pt;}
.xd{left:362.410800pt;}
.x23{left:392.784000pt;}
.x8{left:486.058667pt;}
.x6{left:495.146667pt;}
.x22{left:525.050667pt;}
.x1b{left:612.420440pt;}
.x1c{left:615.852220pt;}
}




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