
    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_54a11df65ea3aa6580e87df9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.925500;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_5f798b271b4bba9e8d2765ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.111000;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_713c5c3128a5c62bf0a444bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.930000;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_26ad9f03c7765aacbcc8f72b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_26975c39ae63d3f89d0477e4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.732500;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_d473d5cdd504bac837efe33a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.108500;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_48d0d3e733cc09ec33b624b6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.956500;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_e8bc1176828e555c1b395de7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c95682cd79825be271e0b59b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.918500;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_66bac4454b1400ff319ed34f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.251000;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_51ab2564dbcf5427e5d70b6f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.126000;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_a6ddd9437b85ac53e381f5c8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.925500;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_751667fd37290542e7afe1f3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.723000;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;}
.v2{vertical-align:15.984000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:35.964000px;}
.ls7{letter-spacing:-1.500000px;}
.ls6{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.513000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.120000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.096000px;}
.lsb{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.300000px;}
.lsc{letter-spacing:0.840000px;}
.lsf{letter-spacing:0.960000px;}
.lsd{letter-spacing:4.936200px;}
.lse{letter-spacing:12.976800px;}
.ls1{letter-spacing:31.485600px;}
.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;}
}
.ws141{word-spacing:-48.960000px;}
.ws132{word-spacing:-48.840000px;}
.ws13c{word-spacing:-48.240000px;}
.ws131{word-spacing:-48.120000px;}
.ws12e{word-spacing:-48.000000px;}
.ws4{word-spacing:-38.496000px;}
.ws3{word-spacing:-38.400000px;}
.ws13d{word-spacing:-38.160000px;}
.ws13f{word-spacing:-37.980000px;}
.ws13e{word-spacing:-35.460000px;}
.ws13b{word-spacing:-35.040000px;}
.ws12f{word-spacing:-34.380000px;}
.ws139{word-spacing:-34.320000px;}
.ws130{word-spacing:-33.720000px;}
.ws142{word-spacing:-30.540000px;}
.ws2{word-spacing:-25.632000px;}
.wse{word-spacing:-22.387200px;}
.ws140{word-spacing:-19.860000px;}
.wsb{word-spacing:-17.496000px;}
.ws12d{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.220000px;}
.ws13a{word-spacing:-14.040000px;}
.ws0{word-spacing:-13.104000px;}
.wsf{word-spacing:-11.232000px;}
.wsd{word-spacing:-8.290260px;}
.ws11a{word-spacing:-8.160000px;}
.ws1f{word-spacing:-8.100000px;}
.wsb2{word-spacing:-7.500000px;}
.ws12c{word-spacing:-7.380000px;}
.ws1{word-spacing:-7.163904px;}
.ws54{word-spacing:-6.960000px;}
.ws138{word-spacing:-6.840000px;}
.wsb5{word-spacing:-5.940000px;}
.wsf2{word-spacing:-5.400000px;}
.ws106{word-spacing:-5.358000px;}
.ws93{word-spacing:-5.220000px;}
.ws12{word-spacing:-5.100000px;}
.ws23{word-spacing:-4.980000px;}
.ws37{word-spacing:-4.860000px;}
.wsbc{word-spacing:-4.680000px;}
.wsf1{word-spacing:-4.620000px;}
.ws27{word-spacing:-4.560000px;}
.ws21{word-spacing:-4.500000px;}
.ws9d{word-spacing:-4.440000px;}
.wsc7{word-spacing:-4.320000px;}
.wsc0{word-spacing:-4.260000px;}
.ws9b{word-spacing:-4.200000px;}
.ws129{word-spacing:-4.140000px;}
.ws145{word-spacing:-4.080000px;}
.ws135{word-spacing:-3.960000px;}
.wsda{word-spacing:-3.900000px;}
.ws42{word-spacing:-3.780000px;}
.ws13{word-spacing:-3.720000px;}
.wsaf{word-spacing:-3.480000px;}
.ws136{word-spacing:-3.420000px;}
.ws18{word-spacing:-3.360000px;}
.ws6c{word-spacing:-3.300000px;}
.ws11e{word-spacing:-3.120000px;}
.ws3f{word-spacing:-3.060000px;}
.ws7b{word-spacing:-2.880000px;}
.ws65{word-spacing:-2.760000px;}
.wsa0{word-spacing:-2.640000px;}
.ws61{word-spacing:-2.520000px;}
.ws51{word-spacing:-2.460000px;}
.ws96{word-spacing:-2.340000px;}
.wsba{word-spacing:-2.280000px;}
.ws89{word-spacing:-2.220000px;}
.ws97{word-spacing:-2.040000px;}
.ws134{word-spacing:-1.980000px;}
.ws79{word-spacing:-1.938000px;}
.wse5{word-spacing:-1.920000px;}
.ws110{word-spacing:-1.860000px;}
.ws40{word-spacing:-1.800000px;}
.wsa{word-spacing:-1.782000px;}
.wsef{word-spacing:-1.680000px;}
.ws11c{word-spacing:-1.620000px;}
.ws14{word-spacing:-1.560000px;}
.ws7d{word-spacing:-1.500000px;}
.ws5f{word-spacing:-1.440000px;}
.ws56{word-spacing:-1.380000px;}
.wsc9{word-spacing:-1.320000px;}
.ws6a{word-spacing:-1.260000px;}
.ws29{word-spacing:-1.200000px;}
.ws88{word-spacing:-1.080000px;}
.ws5a{word-spacing:-1.020000px;}
.wsc3{word-spacing:-0.960000px;}
.ws144{word-spacing:-0.900000px;}
.wsc5{word-spacing:-0.840000px;}
.wsf6{word-spacing:-0.780000px;}
.ws38{word-spacing:-0.720000px;}
.wse9{word-spacing:-0.660000px;}
.ws10a{word-spacing:-0.627000px;}
.ws92{word-spacing:-0.600000px;}
.ws24{word-spacing:-0.540000px;}
.ws2d{word-spacing:-0.480000px;}
.wsad{word-spacing:-0.420000px;}
.wsde{word-spacing:-0.360000px;}
.ws10{word-spacing:-0.300000px;}
.ws50{word-spacing:-0.240000px;}
.ws77{word-spacing:-0.228000px;}
.ws55{word-spacing:-0.180000px;}
.ws91{word-spacing:-0.120000px;}
.ws116{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws3e{word-spacing:0.060000px;}
.ws69{word-spacing:0.120000px;}
.wsf5{word-spacing:0.180000px;}
.wsc6{word-spacing:0.240000px;}
.ws11f{word-spacing:0.300000px;}
.ws59{word-spacing:0.360000px;}
.wsd5{word-spacing:0.399000px;}
.ws2f{word-spacing:0.420000px;}
.ws82{word-spacing:0.480000px;}
.ws76{word-spacing:0.513000px;}
.wsa3{word-spacing:0.600000px;}
.ws8f{word-spacing:0.780000px;}
.ws95{word-spacing:0.840000px;}
.ws6b{word-spacing:0.900000px;}
.ws105{word-spacing:1.020000px;}
.wsfb{word-spacing:1.080000px;}
.wsa4{word-spacing:1.200000px;}
.wsc4{word-spacing:1.260000px;}
.wsf3{word-spacing:1.320000px;}
.ws78{word-spacing:1.368000px;}
.ws58{word-spacing:1.380000px;}
.ws104{word-spacing:1.440000px;}
.ws22{word-spacing:1.560000px;}
.ws107{word-spacing:1.596000px;}
.wscc{word-spacing:1.680000px;}
.wsd8{word-spacing:1.740000px;}
.wsae{word-spacing:1.800000px;}
.wsbd{word-spacing:1.860000px;}
.wsa7{word-spacing:1.920000px;}
.wsb3{word-spacing:1.980000px;}
.wsb0{word-spacing:2.040000px;}
.ws99{word-spacing:2.160000px;}
.ws8{word-spacing:2.220000px;}
.wsdf{word-spacing:2.340000px;}
.ws68{word-spacing:2.400000px;}
.wsb1{word-spacing:2.460000px;}
.wse7{word-spacing:2.520000px;}
.ws73{word-spacing:2.580000px;}
.ws28{word-spacing:2.700000px;}
.ws108{word-spacing:2.793000px;}
.wsdb{word-spacing:2.820000px;}
.ws102{word-spacing:2.880000px;}
.ws2e{word-spacing:2.940000px;}
.ws5d{word-spacing:3.000000px;}
.ws66{word-spacing:3.060000px;}
.ws71{word-spacing:3.120000px;}
.wse8{word-spacing:3.180000px;}
.ws109{word-spacing:3.192000px;}
.ws57{word-spacing:3.240000px;}
.ws3d{word-spacing:3.300000px;}
.ws63{word-spacing:3.360000px;}
.ws39{word-spacing:3.420000px;}
.wsb9{word-spacing:3.480000px;}
.ws6e{word-spacing:3.600000px;}
.ws87{word-spacing:3.660000px;}
.ws9f{word-spacing:3.720000px;}
.ws6d{word-spacing:3.780000px;}
.wse2{word-spacing:3.840000px;}
.ws34{word-spacing:3.900000px;}
.ws9{word-spacing:3.960000px;}
.ws7e{word-spacing:4.020000px;}
.ws127{word-spacing:4.080000px;}
.ws62{word-spacing:4.140000px;}
.ws3c{word-spacing:4.200000px;}
.wsea{word-spacing:4.260000px;}
.ws133{word-spacing:4.320000px;}
.ws8b{word-spacing:4.380000px;}
.wsdc{word-spacing:4.440000px;}
.ws8a{word-spacing:4.500000px;}
.wsf0{word-spacing:4.560000px;}
.ws26{word-spacing:4.620000px;}
.wsac{word-spacing:4.680000px;}
.ws85{word-spacing:4.740000px;}
.wsd1{word-spacing:4.800000px;}
.wsa2{word-spacing:4.920000px;}
.ws75{word-spacing:4.980000px;}
.ws2c{word-spacing:5.040000px;}
.ws1e{word-spacing:5.100000px;}
.wsfe{word-spacing:5.160000px;}
.ws1d{word-spacing:5.220000px;}
.wsa9{word-spacing:5.400000px;}
.wsed{word-spacing:5.520000px;}
.ws16{word-spacing:5.580000px;}
.ws17{word-spacing:5.640000px;}
.ws49{word-spacing:5.700000px;}
.ws67{word-spacing:5.760000px;}
.ws7a{word-spacing:5.820000px;}
.wse3{word-spacing:5.880000px;}
.ws43{word-spacing:5.940000px;}
.ws41{word-spacing:6.000000px;}
.wsfd{word-spacing:6.060000px;}
.wsa5{word-spacing:6.120000px;}
.ws30{word-spacing:6.180000px;}
.wsd7{word-spacing:6.240000px;}
.ws5b{word-spacing:6.360000px;}
.wsc8{word-spacing:6.420000px;}
.ws64{word-spacing:6.480000px;}
.ws7c{word-spacing:6.540000px;}
.ws7{word-spacing:6.600000px;}
.ws4a{word-spacing:6.720000px;}
.wse4{word-spacing:6.780000px;}
.wsd4{word-spacing:6.840000px;}
.wsca{word-spacing:6.900000px;}
.ws47{word-spacing:6.960000px;}
.ws72{word-spacing:7.020000px;}
.wse6{word-spacing:7.080000px;}
.ws4d{word-spacing:7.200000px;}
.ws2a{word-spacing:7.440000px;}
.ws36{word-spacing:7.500000px;}
.wsb8{word-spacing:7.560000px;}
.wsa6{word-spacing:7.620000px;}
.wsa1{word-spacing:7.680000px;}
.ws8e{word-spacing:7.740000px;}
.ws146{word-spacing:7.800000px;}
.ws60{word-spacing:7.860000px;}
.ws3b{word-spacing:7.920000px;}
.wsbf{word-spacing:7.980000px;}
.ws1b{word-spacing:8.040000px;}
.ws44{word-spacing:8.100000px;}
.wsfa{word-spacing:8.160000px;}
.wsaa{word-spacing:8.220000px;}
.ws2b{word-spacing:8.280000px;}
.ws10f{word-spacing:8.340000px;}
.wseb{word-spacing:8.580000px;}
.wsd6{word-spacing:8.700000px;}
.ws31{word-spacing:8.760000px;}
.ws111{word-spacing:8.820000px;}
.ws4b{word-spacing:8.880000px;}
.ws3a{word-spacing:8.940000px;}
.wscd{word-spacing:9.000000px;}
.ws86{word-spacing:9.060000px;}
.ws6{word-spacing:9.180000px;}
.wsbe{word-spacing:9.240000px;}
.wse1{word-spacing:9.300000px;}
.wsd9{word-spacing:9.420000px;}
.ws15{word-spacing:9.480000px;}
.wsfc{word-spacing:9.540000px;}
.ws114{word-spacing:9.660000px;}
.wsf8{word-spacing:9.720000px;}
.wsd0{word-spacing:9.780000px;}
.wsa8{word-spacing:9.840000px;}
.ws9e{word-spacing:9.900000px;}
.ws1c{word-spacing:9.960000px;}
.ws119{word-spacing:10.020000px;}
.ws53{word-spacing:10.200000px;}
.wsd3{word-spacing:10.203000px;}
.wscb{word-spacing:10.260000px;}
.wsb4{word-spacing:10.320000px;}
.ws128{word-spacing:10.380000px;}
.ws25{word-spacing:10.560000px;}
.ws11b{word-spacing:10.620000px;}
.ws112{word-spacing:10.680000px;}
.ws123{word-spacing:10.740000px;}
.ws33{word-spacing:10.800000px;}
.wsf7{word-spacing:11.040000px;}
.ws4c{word-spacing:11.220000px;}
.ws48{word-spacing:11.280000px;}
.ws8d{word-spacing:11.340000px;}
.ws100{word-spacing:11.580000px;}
.ws19{word-spacing:11.700000px;}
.ws115{word-spacing:11.760000px;}
.ws147{word-spacing:11.880000px;}
.ws126{word-spacing:11.940000px;}
.ws70{word-spacing:12.060000px;}
.wsd2{word-spacing:12.120000px;}
.ws81{word-spacing:12.180000px;}
.ws10d{word-spacing:12.240000px;}
.ws45{word-spacing:12.300000px;}
.ws90{word-spacing:12.420000px;}
.ws74{word-spacing:12.480000px;}
.ws10e{word-spacing:12.540000px;}
.wsce{word-spacing:12.600000px;}
.ws1a{word-spacing:12.660000px;}
.ws20{word-spacing:12.780000px;}
.ws137{word-spacing:12.900000px;}
.ws143{word-spacing:12.960000px;}
.ws10b{word-spacing:13.080000px;}
.wscf{word-spacing:13.140000px;}
.wsb6{word-spacing:13.500000px;}
.ws35{word-spacing:13.680000px;}
.ws10c{word-spacing:13.860000px;}
.ws8c{word-spacing:13.920000px;}
.wsbb{word-spacing:14.340000px;}
.ws121{word-spacing:14.520000px;}
.wsdd{word-spacing:14.640000px;}
.ws98{word-spacing:14.820000px;}
.wsee{word-spacing:15.060000px;}
.ws12b{word-spacing:15.240000px;}
.ws6f{word-spacing:15.420000px;}
.ws5e{word-spacing:15.540000px;}
.ws94{word-spacing:15.660000px;}
.ws120{word-spacing:15.780000px;}
.ws4e{word-spacing:15.960000px;}
.ws103{word-spacing:16.020000px;}
.ws11d{word-spacing:16.200000px;}
.ws7f{word-spacing:16.380000px;}
.wsff{word-spacing:16.620000px;}
.ws113{word-spacing:16.680000px;}
.wsc2{word-spacing:16.800000px;}
.ws46{word-spacing:16.860000px;}
.ws122{word-spacing:17.340000px;}
.ws52{word-spacing:17.520000px;}
.ws4f{word-spacing:17.580000px;}
.ws12a{word-spacing:17.640000px;}
.ws118{word-spacing:17.760000px;}
.wse0{word-spacing:18.000000px;}
.ws32{word-spacing:18.060000px;}
.ws80{word-spacing:18.600000px;}
.wsf9{word-spacing:18.660000px;}
.ws11{word-spacing:19.560000px;}
.wsab{word-spacing:19.740000px;}
.ws101{word-spacing:19.920000px;}
.ws84{word-spacing:20.460000px;}
.ws5c{word-spacing:21.480000px;}
.ws9c{word-spacing:21.660000px;}
.wsb7{word-spacing:22.080000px;}
.ws83{word-spacing:23.040000px;}
.ws117{word-spacing:23.520000px;}
.wsec{word-spacing:24.060000px;}
.ws124{word-spacing:24.420000px;}
.ws125{word-spacing:29.400000px;}
.ws9a{word-spacing:29.940000px;}
.wsf4{word-spacing:31.320000px;}
.wsc1{word-spacing:36.000000px;}
._12{margin-left:-13.561200px;}
._f{margin-left:-10.852200px;}
._15{margin-left:-9.463800px;}
._10{margin-left:-8.067600px;}
._3{margin-left:-6.180000px;}
._8{margin-left:-4.584000px;}
._0{margin-left:-3.456000px;}
._2{margin-left:-2.364000px;}
._1{margin-left:-1.080000px;}
._9{width:1.044000px;}
._a{width:2.052000px;}
._b{width:3.084000px;}
._13{width:4.096200px;}
._5{width:5.112000px;}
._4{width:6.204000px;}
._d{width:7.296000px;}
._14{width:8.340000px;}
._c{width:9.624000px;}
._11{width:10.905600px;}
._6{width:11.940000px;}
._7{width:13.080000px;}
._e{width:14.184000px;}
._16{width:27.300000px;}
._17{width:29.328000px;}
.fc2{color:rgb(52,72,136);}
.fc1{color:rgb(169,49,50);}
.fc0{color:rgb(46,42,43);}
.fs4{font-size:27.984000px;}
.fs5{font-size:30.000000px;}
.fs8{font-size:34.980000px;}
.fs2{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:62.964000px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:58.891350px;}
.y20{bottom:75.091350px;}
.y1f{bottom:89.491350px;}
.y1e{bottom:103.891350px;}
.y1d{bottom:118.291350px;}
.yf6{bottom:155.834550px;}
.yff{bottom:156.594300px;}
.yca{bottom:158.106150px;}
.yc0{bottom:161.421150px;}
.y91{bottom:167.586450px;}
.yaa{bottom:168.537750px;}
.y1c{bottom:168.667350px;}
.yf5{bottom:173.834550px;}
.y153{bottom:176.712450px;}
.y113{bottom:178.925100px;}
.yfe{bottom:180.594300px;}
.yc9{bottom:182.106150px;}
.y4a{bottom:184.960650px;}
.y6c{bottom:184.960800px;}
.y90{bottom:185.586450px;}
.yd8{bottom:186.358200px;}
.y1b{bottom:186.667350px;}
.yf4{bottom:191.834550px;}
.ya9{bottom:192.537750px;}
.y125{bottom:194.049450px;}
.y152{bottom:196.212450px;}
.y112{bottom:196.925100px;}
.ybf{bottom:201.854250px;}
.y49{bottom:202.960650px;}
.y6b{bottom:202.960800px;}
.yfd{bottom:204.594300px;}
.y1a{bottom:204.667350px;}
.yc8{bottom:206.106150px;}
.y12d{bottom:208.846350px;}
.yf3{bottom:209.834550px;}
.yd7{bottom:210.358200px;}
.y151{bottom:215.712450px;}
.ya8{bottom:216.537750px;}
.y124{bottom:218.049450px;}
.y48{bottom:220.960650px;}
.ybe{bottom:225.854250px;}
.yf2{bottom:227.834550px;}
.yfc{bottom:228.594300px;}
.y8f{bottom:230.106150px;}
.y12c{bottom:232.846350px;}
.yc7{bottom:234.358200px;}
.y111{bottom:238.610100px;}
.y123{bottom:242.049450px;}
.y150{bottom:243.716400px;}
.ybd{bottom:249.854250px;}
.yfb{bottom:252.594300px;}
.y8e{bottom:254.106150px;}
.y12b{bottom:256.846350px;}
.yc6{bottom:258.358200px;}
.ya7{bottom:258.566100px;}
.y110{bottom:262.610100px;}
.y14f{bottom:263.216400px;}
.y122{bottom:266.049450px;}
.yfa{bottom:276.594300px;}
.y8d{bottom:278.106150px;}
.y12a{bottom:280.846350px;}
.y6a{bottom:280.846500px;}
.y19{bottom:281.145600px;}
.yc5{bottom:282.358200px;}
.ya6{bottom:282.566100px;}
.y47{bottom:282.628200px;}
.y14e{bottom:282.716400px;}
.y10f{bottom:286.610100px;}
.y121{bottom:290.049450px;}
.yf1{bottom:294.301500px;}
.yf9{bottom:300.594300px;}
.y18{bottom:300.645600px;}
.ybc{bottom:302.106150px;}
.y129{bottom:304.846350px;}
.y69{bottom:304.846500px;}
.y8c{bottom:306.358200px;}
.ya5{bottom:306.566100px;}
.y46{bottom:306.628200px;}
.y10e{bottom:310.610100px;}
.y14d{bottom:310.720350px;}
.y120{bottom:314.049450px;}
.yf0{bottom:318.301500px;}
.y17{bottom:320.145600px;}
.yf8{bottom:324.594300px;}
.ybb{bottom:326.106150px;}
.y128{bottom:328.846350px;}
.y68{bottom:328.846500px;}
.y8b{bottom:330.358200px;}
.ya4{bottom:330.565950px;}
.y45{bottom:330.628200px;}
.y171{bottom:331.247850px;}
.y10d{bottom:334.610100px;}
.y11f{bottom:338.049450px;}
.y14c{bottom:338.724300px;}
.y16{bottom:339.645600px;}
.yef{bottom:342.301500px;}
.yf7{bottom:348.594300px;}
.yba{bottom:350.106150px;}
.y170{bottom:350.747850px;}
.y127{bottom:352.846350px;}
.y67{bottom:352.846500px;}
.y8a{bottom:354.358200px;}
.y44{bottom:354.628200px;}
.y10c{bottom:358.610100px;}
.y15{bottom:359.145600px;}
.y11e{bottom:362.049450px;}
.yee{bottom:366.301500px;}
.y14b{bottom:366.728250px;}
.yb9{bottom:374.106150px;}
.ya3{bottom:376.846350px;}
.y66{bottom:376.846500px;}
.y89{bottom:378.358200px;}
.y43{bottom:378.628200px;}
.y14{bottom:378.645600px;}
.y16f{bottom:378.751800px;}
.y10b{bottom:382.610100px;}
.y14a{bottom:386.228250px;}
.yed{bottom:390.301500px;}
.yb8{bottom:398.106150px;}
.y13{bottom:398.145600px;}
.y16e{bottom:398.251800px;}
.ya2{bottom:400.846350px;}
.y65{bottom:400.846500px;}
.y88{bottom:402.358200px;}
.y42{bottom:402.628200px;}
.y149{bottom:405.728250px;}
.y10a{bottom:406.610100px;}
.y11d{bottom:414.301500px;}
.y12{bottom:417.645600px;}
.y16d{bottom:417.751800px;}
.yec{bottom:418.553400px;}
.yb7{bottom:422.106150px;}
.ya1{bottom:424.846350px;}
.y64{bottom:424.846500px;}
.y87{bottom:426.358200px;}
.y41{bottom:426.628200px;}
.y109{bottom:430.610100px;}
.y148{bottom:433.732200px;}
.y11{bottom:437.145600px;}
.y16c{bottom:437.251800px;}
.y11c{bottom:438.301500px;}
.yeb{bottom:442.553400px;}
.yb6{bottom:446.106150px;}
.ya0{bottom:448.846350px;}
.y63{bottom:448.846500px;}
.y86{bottom:450.358200px;}
.y40{bottom:450.628200px;}
.y126{bottom:453.098400px;}
.y147{bottom:453.232200px;}
.y10{bottom:456.645600px;}
.y108{bottom:458.862150px;}
.y11b{bottom:462.301500px;}
.y16b{bottom:465.255750px;}
.yea{bottom:466.553400px;}
.yb5{bottom:470.106150px;}
.y146{bottom:472.732200px;}
.y9f{bottom:472.846350px;}
.y62{bottom:472.846500px;}
.y85{bottom:474.358200px;}
.y3f{bottom:474.628200px;}
.yf{bottom:476.145600px;}
.yd6{bottom:478.610100px;}
.y107{bottom:482.862150px;}
.y16a{bottom:484.755750px;}
.y11a{bottom:486.301500px;}
.ye9{bottom:490.553400px;}
.y145{bottom:492.232200px;}
.yb4{bottom:494.106150px;}
.y9e{bottom:496.846350px;}
.y61{bottom:496.846500px;}
.y84{bottom:498.358200px;}
.y3e{bottom:498.628200px;}
.yd5{bottom:502.610100px;}
.y106{bottom:506.862150px;}
.y119{bottom:510.301500px;}
.y169{bottom:512.759700px;}
.ye8{bottom:514.553400px;}
.y144{bottom:520.236150px;}
.y9d{bottom:520.846350px;}
.y83{bottom:522.358200px;}
.y3d{bottom:522.628200px;}
.y60{bottom:525.098550px;}
.yd4{bottom:526.610100px;}
.ye{bottom:529.661250px;}
.y105{bottom:530.862150px;}
.ye7{bottom:538.553400px;}
.y143{bottom:539.736150px;}
.y168{bottom:540.763650px;}
.y9c{bottom:544.846350px;}
.y82{bottom:546.358200px;}
.y3c{bottom:546.628200px;}
.yd{bottom:549.161250px;}
.yc4{bottom:550.610100px;}
.y104{bottom:554.862150px;}
.y167{bottom:560.263650px;}
.ye6{bottom:562.553400px;}
.y142{bottom:567.739950px;}
.yc{bottom:568.661250px;}
.y9b{bottom:568.846350px;}
.y81{bottom:570.358200px;}
.y3b{bottom:570.628200px;}
.yc3{bottom:574.610100px;}
.y5f{bottom:574.610250px;}
.y103{bottom:578.862150px;}
.y166{bottom:579.763650px;}
.ye5{bottom:586.553400px;}
.y141{bottom:587.239950px;}
.yb{bottom:588.161250px;}
.y9a{bottom:592.846350px;}
.yb3{bottom:594.358200px;}
.y3a{bottom:594.628200px;}
.y80{bottom:598.610100px;}
.y5e{bottom:598.610250px;}
.y102{bottom:602.862150px;}
.ya{bottom:607.661250px;}
.y165{bottom:607.767600px;}
.ye4{bottom:610.553400px;}
.y140{bottom:615.243900px;}
.y99{bottom:616.846350px;}
.yb2{bottom:618.358200px;}
.y39{bottom:618.628200px;}
.y7f{bottom:622.610100px;}
.y5d{bottom:622.610250px;}
.y101{bottom:626.862150px;}
.y9{bottom:627.161250px;}
.y164{bottom:627.267600px;}
.ye3{bottom:638.805450px;}
.y98{bottom:640.846350px;}
.yb1{bottom:642.358200px;}
.y13f{bottom:643.247850px;}
.y7e{bottom:646.610100px;}
.y5c{bottom:646.610250px;}
.y8{bottom:646.661250px;}
.y163{bottom:646.767600px;}
.y38{bottom:646.880100px;}
.yd3{bottom:650.862150px;}
.y118{bottom:652.581750px;}
.ye2{bottom:662.805450px;}
.y97{bottom:664.846350px;}
.y7{bottom:666.161250px;}
.yb0{bottom:666.358200px;}
.y7d{bottom:670.610100px;}
.y5b{bottom:670.610250px;}
.y37{bottom:670.880100px;}
.y13e{bottom:671.251800px;}
.y162{bottom:674.771550px;}
.yd2{bottom:674.862150px;}
.y117{bottom:676.581750px;}
.y6{bottom:685.661250px;}
.ye1{bottom:686.805450px;}
.yaf{bottom:690.358200px;}
.y13d{bottom:690.751800px;}
.y96{bottom:693.098400px;}
.y161{bottom:694.271550px;}
.y7c{bottom:694.610100px;}
.y5a{bottom:694.610250px;}
.y36{bottom:694.880100px;}
.yd1{bottom:698.862150px;}
.y116{bottom:700.581750px;}
.y5{bottom:705.161250px;}
.ye0{bottom:710.805450px;}
.yae{bottom:714.358200px;}
.y7b{bottom:718.610100px;}
.y59{bottom:718.610250px;}
.y13c{bottom:718.755750px;}
.y35{bottom:718.880100px;}
.y160{bottom:722.275500px;}
.yd0{bottom:722.862150px;}
.y115{bottom:724.581750px;}
.y4{bottom:724.661250px;}
.ydf{bottom:734.805450px;}
.y15f{bottom:741.775500px;}
.y7a{bottom:742.610100px;}
.y58{bottom:742.610250px;}
.y34{bottom:742.880100px;}
.y13b{bottom:746.759700px;}
.ycf{bottom:746.862150px;}
.y114{bottom:748.581750px;}
.yde{bottom:758.805450px;}
.y15e{bottom:761.275500px;}
.y13a{bottom:766.259700px;}
.y95{bottom:766.610100px;}
.y57{bottom:766.610250px;}
.y33{bottom:766.880100px;}
.y79{bottom:770.862150px;}
.y3{bottom:778.176750px;}
.ydd{bottom:782.805300px;}
.y15d{bottom:789.279450px;}
.y94{bottom:790.610100px;}
.y32{bottom:790.880100px;}
.y139{bottom:794.263650px;}
.y78{bottom:794.862150px;}
.y56{bottom:794.862300px;}
.y2{bottom:805.332750px;}
.y15c{bottom:808.779450px;}
.y93{bottom:814.610100px;}
.y31{bottom:814.880100px;}
.y77{bottom:818.862150px;}
.y55{bottom:818.862300px;}
.y138{bottom:822.267600px;}
.y12e{bottom:823.114050px;}
.ydc{bottom:824.833800px;}
.y15b{bottom:836.783250px;}
.y1{bottom:837.732750px;}
.yad{bottom:838.610100px;}
.y137{bottom:841.767600px;}
.y76{bottom:842.862150px;}
.y54{bottom:842.862300px;}
.y30{bottom:843.132150px;}
.y100{bottom:847.114050px;}
.ydb{bottom:848.833800px;}
.y15a{bottom:856.283250px;}
.yac{bottom:862.610100px;}
.y75{bottom:866.862150px;}
.y53{bottom:866.862300px;}
.y2f{bottom:867.132150px;}
.y136{bottom:869.771550px;}
.yce{bottom:871.114050px;}
.yda{bottom:872.833800px;}
.y159{bottom:884.287200px;}
.yab{bottom:886.610100px;}
.y74{bottom:890.862150px;}
.y52{bottom:890.862300px;}
.y2e{bottom:891.132150px;}
.ycd{bottom:895.114050px;}
.yd9{bottom:896.833800px;}
.y135{bottom:897.775500px;}
.y158{bottom:903.787200px;}
.y73{bottom:914.862150px;}
.y51{bottom:914.862300px;}
.y2d{bottom:915.132150px;}
.y134{bottom:917.275500px;}
.ycc{bottom:919.114050px;}
.y157{bottom:931.791300px;}
.y72{bottom:938.862150px;}
.y50{bottom:938.862300px;}
.y2c{bottom:939.132150px;}
.ycb{bottom:943.114050px;}
.y133{bottom:945.279450px;}
.y156{bottom:951.291300px;}
.y71{bottom:962.862150px;}
.y4f{bottom:962.862300px;}
.y2b{bottom:963.132150px;}
.yc2{bottom:967.114050px;}
.y155{bottom:979.295100px;}
.y70{bottom:986.862150px;}
.y4e{bottom:986.862300px;}
.y2a{bottom:987.132150px;}
.yc1{bottom:991.114050px;}
.y132{bottom:998.795100px;}
.y6f{bottom:1010.862150px;}
.y29{bottom:1011.132150px;}
.y92{bottom:1015.114050px;}
.y4d{bottom:1015.114200px;}
.y131{bottom:1018.295100px;}
.y28{bottom:1035.132150px;}
.y130{bottom:1037.795100px;}
.y6e{bottom:1039.114050px;}
.y4c{bottom:1039.114200px;}
.y154{bottom:1046.299050px;}
.y6d{bottom:1063.114050px;}
.y4b{bottom:1063.114200px;}
.y27{bottom:1063.384050px;}
.y12f{bottom:1065.799050px;}
.y25{bottom:1096.601850px;}
.y24{bottom:1111.001700px;}
.y23{bottom:1125.401850px;}
.y22{bottom:1139.801850px;}
.y26{bottom:1196.759700px;}
.h8{height:39.204000px;}
.h7{height:44.448000px;}
.h4{height:44.664000px;}
.h5{height:44.670000px;}
.hc{height:44.700000px;}
.h6{height:45.330000px;}
.he{height:55.560000px;}
.hd{height:55.830000px;}
.hb{height:55.917000px;}
.ha{height:58.860000px;}
.h9{height:66.996000px;}
.h2{height:80.568000px;}
.h3{height:82.935144px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:54.000000px;}
.x1{left:127.559100px;}
.x3{left:134.157150px;}
.x2{left:148.818900px;}
.x6{left:153.070950px;}
.x4{left:495.000000px;}
.x8{left:821.513850px;}
.x7{left:830.213550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:31.968000pt;}
.ls7{letter-spacing:-1.333333pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.456000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.106667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.085333pt;}
.lsb{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.266667pt;}
.lsc{letter-spacing:0.746667pt;}
.lsf{letter-spacing:0.853333pt;}
.lsd{letter-spacing:4.387733pt;}
.lse{letter-spacing:11.534933pt;}
.ls1{letter-spacing:27.987200pt;}
.ws141{word-spacing:-43.520000pt;}
.ws132{word-spacing:-43.413333pt;}
.ws13c{word-spacing:-42.880000pt;}
.ws131{word-spacing:-42.773333pt;}
.ws12e{word-spacing:-42.666667pt;}
.ws4{word-spacing:-34.218667pt;}
.ws3{word-spacing:-34.133333pt;}
.ws13d{word-spacing:-33.920000pt;}
.ws13f{word-spacing:-33.760000pt;}
.ws13e{word-spacing:-31.520000pt;}
.ws13b{word-spacing:-31.146667pt;}
.ws12f{word-spacing:-30.560000pt;}
.ws139{word-spacing:-30.506667pt;}
.ws130{word-spacing:-29.973333pt;}
.ws142{word-spacing:-27.146667pt;}
.ws2{word-spacing:-22.784000pt;}
.wse{word-spacing:-19.899733pt;}
.ws140{word-spacing:-17.653333pt;}
.wsb{word-spacing:-15.552000pt;}
.ws12d{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.640000pt;}
.ws13a{word-spacing:-12.480000pt;}
.ws0{word-spacing:-11.648000pt;}
.wsf{word-spacing:-9.984000pt;}
.wsd{word-spacing:-7.369120pt;}
.ws11a{word-spacing:-7.253333pt;}
.ws1f{word-spacing:-7.200000pt;}
.wsb2{word-spacing:-6.666667pt;}
.ws12c{word-spacing:-6.560000pt;}
.ws1{word-spacing:-6.367915pt;}
.ws54{word-spacing:-6.186667pt;}
.ws138{word-spacing:-6.080000pt;}
.wsb5{word-spacing:-5.280000pt;}
.wsf2{word-spacing:-4.800000pt;}
.ws106{word-spacing:-4.762667pt;}
.ws93{word-spacing:-4.640000pt;}
.ws12{word-spacing:-4.533333pt;}
.ws23{word-spacing:-4.426667pt;}
.ws37{word-spacing:-4.320000pt;}
.wsbc{word-spacing:-4.160000pt;}
.wsf1{word-spacing:-4.106667pt;}
.ws27{word-spacing:-4.053333pt;}
.ws21{word-spacing:-4.000000pt;}
.ws9d{word-spacing:-3.946667pt;}
.wsc7{word-spacing:-3.840000pt;}
.wsc0{word-spacing:-3.786667pt;}
.ws9b{word-spacing:-3.733333pt;}
.ws129{word-spacing:-3.680000pt;}
.ws145{word-spacing:-3.626667pt;}
.ws135{word-spacing:-3.520000pt;}
.wsda{word-spacing:-3.466667pt;}
.ws42{word-spacing:-3.360000pt;}
.ws13{word-spacing:-3.306667pt;}
.wsaf{word-spacing:-3.093333pt;}
.ws136{word-spacing:-3.040000pt;}
.ws18{word-spacing:-2.986667pt;}
.ws6c{word-spacing:-2.933333pt;}
.ws11e{word-spacing:-2.773333pt;}
.ws3f{word-spacing:-2.720000pt;}
.ws7b{word-spacing:-2.560000pt;}
.ws65{word-spacing:-2.453333pt;}
.wsa0{word-spacing:-2.346667pt;}
.ws61{word-spacing:-2.240000pt;}
.ws51{word-spacing:-2.186667pt;}
.ws96{word-spacing:-2.080000pt;}
.wsba{word-spacing:-2.026667pt;}
.ws89{word-spacing:-1.973333pt;}
.ws97{word-spacing:-1.813333pt;}
.ws134{word-spacing:-1.760000pt;}
.ws79{word-spacing:-1.722667pt;}
.wse5{word-spacing:-1.706667pt;}
.ws110{word-spacing:-1.653333pt;}
.ws40{word-spacing:-1.600000pt;}
.wsa{word-spacing:-1.584000pt;}
.wsef{word-spacing:-1.493333pt;}
.ws11c{word-spacing:-1.440000pt;}
.ws14{word-spacing:-1.386667pt;}
.ws7d{word-spacing:-1.333333pt;}
.ws5f{word-spacing:-1.280000pt;}
.ws56{word-spacing:-1.226667pt;}
.wsc9{word-spacing:-1.173333pt;}
.ws6a{word-spacing:-1.120000pt;}
.ws29{word-spacing:-1.066667pt;}
.ws88{word-spacing:-0.960000pt;}
.ws5a{word-spacing:-0.906667pt;}
.wsc3{word-spacing:-0.853333pt;}
.ws144{word-spacing:-0.800000pt;}
.wsc5{word-spacing:-0.746667pt;}
.wsf6{word-spacing:-0.693333pt;}
.ws38{word-spacing:-0.640000pt;}
.wse9{word-spacing:-0.586667pt;}
.ws10a{word-spacing:-0.557333pt;}
.ws92{word-spacing:-0.533333pt;}
.ws24{word-spacing:-0.480000pt;}
.ws2d{word-spacing:-0.426667pt;}
.wsad{word-spacing:-0.373333pt;}
.wsde{word-spacing:-0.320000pt;}
.ws10{word-spacing:-0.266667pt;}
.ws50{word-spacing:-0.213333pt;}
.ws77{word-spacing:-0.202667pt;}
.ws55{word-spacing:-0.160000pt;}
.ws91{word-spacing:-0.106667pt;}
.ws116{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.053333pt;}
.ws69{word-spacing:0.106667pt;}
.wsf5{word-spacing:0.160000pt;}
.wsc6{word-spacing:0.213333pt;}
.ws11f{word-spacing:0.266667pt;}
.ws59{word-spacing:0.320000pt;}
.wsd5{word-spacing:0.354667pt;}
.ws2f{word-spacing:0.373333pt;}
.ws82{word-spacing:0.426667pt;}
.ws76{word-spacing:0.456000pt;}
.wsa3{word-spacing:0.533333pt;}
.ws8f{word-spacing:0.693333pt;}
.ws95{word-spacing:0.746667pt;}
.ws6b{word-spacing:0.800000pt;}
.ws105{word-spacing:0.906667pt;}
.wsfb{word-spacing:0.960000pt;}
.wsa4{word-spacing:1.066667pt;}
.wsc4{word-spacing:1.120000pt;}
.wsf3{word-spacing:1.173333pt;}
.ws78{word-spacing:1.216000pt;}
.ws58{word-spacing:1.226667pt;}
.ws104{word-spacing:1.280000pt;}
.ws22{word-spacing:1.386667pt;}
.ws107{word-spacing:1.418667pt;}
.wscc{word-spacing:1.493333pt;}
.wsd8{word-spacing:1.546667pt;}
.wsae{word-spacing:1.600000pt;}
.wsbd{word-spacing:1.653333pt;}
.wsa7{word-spacing:1.706667pt;}
.wsb3{word-spacing:1.760000pt;}
.wsb0{word-spacing:1.813333pt;}
.ws99{word-spacing:1.920000pt;}
.ws8{word-spacing:1.973333pt;}
.wsdf{word-spacing:2.080000pt;}
.ws68{word-spacing:2.133333pt;}
.wsb1{word-spacing:2.186667pt;}
.wse7{word-spacing:2.240000pt;}
.ws73{word-spacing:2.293333pt;}
.ws28{word-spacing:2.400000pt;}
.ws108{word-spacing:2.482667pt;}
.wsdb{word-spacing:2.506667pt;}
.ws102{word-spacing:2.560000pt;}
.ws2e{word-spacing:2.613333pt;}
.ws5d{word-spacing:2.666667pt;}
.ws66{word-spacing:2.720000pt;}
.ws71{word-spacing:2.773333pt;}
.wse8{word-spacing:2.826667pt;}
.ws109{word-spacing:2.837333pt;}
.ws57{word-spacing:2.880000pt;}
.ws3d{word-spacing:2.933333pt;}
.ws63{word-spacing:2.986667pt;}
.ws39{word-spacing:3.040000pt;}
.wsb9{word-spacing:3.093333pt;}
.ws6e{word-spacing:3.200000pt;}
.ws87{word-spacing:3.253333pt;}
.ws9f{word-spacing:3.306667pt;}
.ws6d{word-spacing:3.360000pt;}
.wse2{word-spacing:3.413333pt;}
.ws34{word-spacing:3.466667pt;}
.ws9{word-spacing:3.520000pt;}
.ws7e{word-spacing:3.573333pt;}
.ws127{word-spacing:3.626667pt;}
.ws62{word-spacing:3.680000pt;}
.ws3c{word-spacing:3.733333pt;}
.wsea{word-spacing:3.786667pt;}
.ws133{word-spacing:3.840000pt;}
.ws8b{word-spacing:3.893333pt;}
.wsdc{word-spacing:3.946667pt;}
.ws8a{word-spacing:4.000000pt;}
.wsf0{word-spacing:4.053333pt;}
.ws26{word-spacing:4.106667pt;}
.wsac{word-spacing:4.160000pt;}
.ws85{word-spacing:4.213333pt;}
.wsd1{word-spacing:4.266667pt;}
.wsa2{word-spacing:4.373333pt;}
.ws75{word-spacing:4.426667pt;}
.ws2c{word-spacing:4.480000pt;}
.ws1e{word-spacing:4.533333pt;}
.wsfe{word-spacing:4.586667pt;}
.ws1d{word-spacing:4.640000pt;}
.wsa9{word-spacing:4.800000pt;}
.wsed{word-spacing:4.906667pt;}
.ws16{word-spacing:4.960000pt;}
.ws17{word-spacing:5.013333pt;}
.ws49{word-spacing:5.066667pt;}
.ws67{word-spacing:5.120000pt;}
.ws7a{word-spacing:5.173333pt;}
.wse3{word-spacing:5.226667pt;}
.ws43{word-spacing:5.280000pt;}
.ws41{word-spacing:5.333333pt;}
.wsfd{word-spacing:5.386667pt;}
.wsa5{word-spacing:5.440000pt;}
.ws30{word-spacing:5.493333pt;}
.wsd7{word-spacing:5.546667pt;}
.ws5b{word-spacing:5.653333pt;}
.wsc8{word-spacing:5.706667pt;}
.ws64{word-spacing:5.760000pt;}
.ws7c{word-spacing:5.813333pt;}
.ws7{word-spacing:5.866667pt;}
.ws4a{word-spacing:5.973333pt;}
.wse4{word-spacing:6.026667pt;}
.wsd4{word-spacing:6.080000pt;}
.wsca{word-spacing:6.133333pt;}
.ws47{word-spacing:6.186667pt;}
.ws72{word-spacing:6.240000pt;}
.wse6{word-spacing:6.293333pt;}
.ws4d{word-spacing:6.400000pt;}
.ws2a{word-spacing:6.613333pt;}
.ws36{word-spacing:6.666667pt;}
.wsb8{word-spacing:6.720000pt;}
.wsa6{word-spacing:6.773333pt;}
.wsa1{word-spacing:6.826667pt;}
.ws8e{word-spacing:6.880000pt;}
.ws146{word-spacing:6.933333pt;}
.ws60{word-spacing:6.986667pt;}
.ws3b{word-spacing:7.040000pt;}
.wsbf{word-spacing:7.093333pt;}
.ws1b{word-spacing:7.146667pt;}
.ws44{word-spacing:7.200000pt;}
.wsfa{word-spacing:7.253333pt;}
.wsaa{word-spacing:7.306667pt;}
.ws2b{word-spacing:7.360000pt;}
.ws10f{word-spacing:7.413333pt;}
.wseb{word-spacing:7.626667pt;}
.wsd6{word-spacing:7.733333pt;}
.ws31{word-spacing:7.786667pt;}
.ws111{word-spacing:7.840000pt;}
.ws4b{word-spacing:7.893333pt;}
.ws3a{word-spacing:7.946667pt;}
.wscd{word-spacing:8.000000pt;}
.ws86{word-spacing:8.053333pt;}
.ws6{word-spacing:8.160000pt;}
.wsbe{word-spacing:8.213333pt;}
.wse1{word-spacing:8.266667pt;}
.wsd9{word-spacing:8.373333pt;}
.ws15{word-spacing:8.426667pt;}
.wsfc{word-spacing:8.480000pt;}
.ws114{word-spacing:8.586667pt;}
.wsf8{word-spacing:8.640000pt;}
.wsd0{word-spacing:8.693333pt;}
.wsa8{word-spacing:8.746667pt;}
.ws9e{word-spacing:8.800000pt;}
.ws1c{word-spacing:8.853333pt;}
.ws119{word-spacing:8.906667pt;}
.ws53{word-spacing:9.066667pt;}
.wsd3{word-spacing:9.069333pt;}
.wscb{word-spacing:9.120000pt;}
.wsb4{word-spacing:9.173333pt;}
.ws128{word-spacing:9.226667pt;}
.ws25{word-spacing:9.386667pt;}
.ws11b{word-spacing:9.440000pt;}
.ws112{word-spacing:9.493333pt;}
.ws123{word-spacing:9.546667pt;}
.ws33{word-spacing:9.600000pt;}
.wsf7{word-spacing:9.813333pt;}
.ws4c{word-spacing:9.973333pt;}
.ws48{word-spacing:10.026667pt;}
.ws8d{word-spacing:10.080000pt;}
.ws100{word-spacing:10.293333pt;}
.ws19{word-spacing:10.400000pt;}
.ws115{word-spacing:10.453333pt;}
.ws147{word-spacing:10.560000pt;}
.ws126{word-spacing:10.613333pt;}
.ws70{word-spacing:10.720000pt;}
.wsd2{word-spacing:10.773333pt;}
.ws81{word-spacing:10.826667pt;}
.ws10d{word-spacing:10.880000pt;}
.ws45{word-spacing:10.933333pt;}
.ws90{word-spacing:11.040000pt;}
.ws74{word-spacing:11.093333pt;}
.ws10e{word-spacing:11.146667pt;}
.wsce{word-spacing:11.200000pt;}
.ws1a{word-spacing:11.253333pt;}
.ws20{word-spacing:11.360000pt;}
.ws137{word-spacing:11.466667pt;}
.ws143{word-spacing:11.520000pt;}
.ws10b{word-spacing:11.626667pt;}
.wscf{word-spacing:11.680000pt;}
.wsb6{word-spacing:12.000000pt;}
.ws35{word-spacing:12.160000pt;}
.ws10c{word-spacing:12.320000pt;}
.ws8c{word-spacing:12.373333pt;}
.wsbb{word-spacing:12.746667pt;}
.ws121{word-spacing:12.906667pt;}
.wsdd{word-spacing:13.013333pt;}
.ws98{word-spacing:13.173333pt;}
.wsee{word-spacing:13.386667pt;}
.ws12b{word-spacing:13.546667pt;}
.ws6f{word-spacing:13.706667pt;}
.ws5e{word-spacing:13.813333pt;}
.ws94{word-spacing:13.920000pt;}
.ws120{word-spacing:14.026667pt;}
.ws4e{word-spacing:14.186667pt;}
.ws103{word-spacing:14.240000pt;}
.ws11d{word-spacing:14.400000pt;}
.ws7f{word-spacing:14.560000pt;}
.wsff{word-spacing:14.773333pt;}
.ws113{word-spacing:14.826667pt;}
.wsc2{word-spacing:14.933333pt;}
.ws46{word-spacing:14.986667pt;}
.ws122{word-spacing:15.413333pt;}
.ws52{word-spacing:15.573333pt;}
.ws4f{word-spacing:15.626667pt;}
.ws12a{word-spacing:15.680000pt;}
.ws118{word-spacing:15.786667pt;}
.wse0{word-spacing:16.000000pt;}
.ws32{word-spacing:16.053333pt;}
.ws80{word-spacing:16.533333pt;}
.wsf9{word-spacing:16.586667pt;}
.ws11{word-spacing:17.386667pt;}
.wsab{word-spacing:17.546667pt;}
.ws101{word-spacing:17.706667pt;}
.ws84{word-spacing:18.186667pt;}
.ws5c{word-spacing:19.093333pt;}
.ws9c{word-spacing:19.253333pt;}
.wsb7{word-spacing:19.626667pt;}
.ws83{word-spacing:20.480000pt;}
.ws117{word-spacing:20.906667pt;}
.wsec{word-spacing:21.386667pt;}
.ws124{word-spacing:21.706667pt;}
.ws125{word-spacing:26.133333pt;}
.ws9a{word-spacing:26.613333pt;}
.wsf4{word-spacing:27.840000pt;}
.wsc1{word-spacing:32.000000pt;}
._12{margin-left:-12.054400pt;}
._f{margin-left:-9.646400pt;}
._15{margin-left:-8.412267pt;}
._10{margin-left:-7.171200pt;}
._3{margin-left:-5.493333pt;}
._8{margin-left:-4.074667pt;}
._0{margin-left:-3.072000pt;}
._2{margin-left:-2.101333pt;}
._1{margin-left:-0.960000pt;}
._9{width:0.928000pt;}
._a{width:1.824000pt;}
._b{width:2.741333pt;}
._13{width:3.641067pt;}
._5{width:4.544000pt;}
._4{width:5.514667pt;}
._d{width:6.485333pt;}
._14{width:7.413333pt;}
._c{width:8.554667pt;}
._11{width:9.693867pt;}
._6{width:10.613333pt;}
._7{width:11.626667pt;}
._e{width:12.608000pt;}
._16{width:24.266667pt;}
._17{width:26.069333pt;}
.fs4{font-size:24.874667pt;}
.fs5{font-size:26.666667pt;}
.fs8{font-size:31.093333pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:55.968000pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:52.347867pt;}
.y20{bottom:66.747867pt;}
.y1f{bottom:79.547867pt;}
.y1e{bottom:92.347867pt;}
.y1d{bottom:105.147867pt;}
.yf6{bottom:138.519600pt;}
.yff{bottom:139.194933pt;}
.yca{bottom:140.538800pt;}
.yc0{bottom:143.485467pt;}
.y91{bottom:148.965733pt;}
.yaa{bottom:149.811333pt;}
.y1c{bottom:149.926533pt;}
.yf5{bottom:154.519600pt;}
.y153{bottom:157.077733pt;}
.y113{bottom:159.044533pt;}
.yfe{bottom:160.528267pt;}
.yc9{bottom:161.872133pt;}
.y4a{bottom:164.409467pt;}
.y6c{bottom:164.409600pt;}
.y90{bottom:164.965733pt;}
.yd8{bottom:165.651733pt;}
.y1b{bottom:165.926533pt;}
.yf4{bottom:170.519600pt;}
.ya9{bottom:171.144667pt;}
.y125{bottom:172.488400pt;}
.y152{bottom:174.411067pt;}
.y112{bottom:175.044533pt;}
.ybf{bottom:179.426000pt;}
.y49{bottom:180.409467pt;}
.y6b{bottom:180.409600pt;}
.yfd{bottom:181.861600pt;}
.y1a{bottom:181.926533pt;}
.yc8{bottom:183.205467pt;}
.y12d{bottom:185.641200pt;}
.yf3{bottom:186.519600pt;}
.yd7{bottom:186.985067pt;}
.y151{bottom:191.744400pt;}
.ya8{bottom:192.478000pt;}
.y124{bottom:193.821733pt;}
.y48{bottom:196.409467pt;}
.ybe{bottom:200.759333pt;}
.yf2{bottom:202.519600pt;}
.yfc{bottom:203.194933pt;}
.y8f{bottom:204.538800pt;}
.y12c{bottom:206.974533pt;}
.yc7{bottom:208.318400pt;}
.y111{bottom:212.097867pt;}
.y123{bottom:215.155067pt;}
.y150{bottom:216.636800pt;}
.ybd{bottom:222.092667pt;}
.yfb{bottom:224.528267pt;}
.y8e{bottom:225.872133pt;}
.y12b{bottom:228.307867pt;}
.yc6{bottom:229.651733pt;}
.ya7{bottom:229.836533pt;}
.y110{bottom:233.431200pt;}
.y14f{bottom:233.970133pt;}
.y122{bottom:236.488400pt;}
.yfa{bottom:245.861600pt;}
.y8d{bottom:247.205467pt;}
.y12a{bottom:249.641200pt;}
.y6a{bottom:249.641333pt;}
.y19{bottom:249.907200pt;}
.yc5{bottom:250.985067pt;}
.ya6{bottom:251.169867pt;}
.y47{bottom:251.225067pt;}
.y14e{bottom:251.303467pt;}
.y10f{bottom:254.764533pt;}
.y121{bottom:257.821733pt;}
.yf1{bottom:261.601333pt;}
.yf9{bottom:267.194933pt;}
.y18{bottom:267.240533pt;}
.ybc{bottom:268.538800pt;}
.y129{bottom:270.974533pt;}
.y69{bottom:270.974667pt;}
.y8c{bottom:272.318400pt;}
.ya5{bottom:272.503200pt;}
.y46{bottom:272.558400pt;}
.y10e{bottom:276.097867pt;}
.y14d{bottom:276.195867pt;}
.y120{bottom:279.155067pt;}
.yf0{bottom:282.934667pt;}
.y17{bottom:284.573867pt;}
.yf8{bottom:288.528267pt;}
.ybb{bottom:289.872133pt;}
.y128{bottom:292.307867pt;}
.y68{bottom:292.308000pt;}
.y8b{bottom:293.651733pt;}
.ya4{bottom:293.836400pt;}
.y45{bottom:293.891733pt;}
.y171{bottom:294.442533pt;}
.y10d{bottom:297.431200pt;}
.y11f{bottom:300.488400pt;}
.y14c{bottom:301.088267pt;}
.y16{bottom:301.907200pt;}
.yef{bottom:304.268000pt;}
.yf7{bottom:309.861600pt;}
.yba{bottom:311.205467pt;}
.y170{bottom:311.775867pt;}
.y127{bottom:313.641200pt;}
.y67{bottom:313.641333pt;}
.y8a{bottom:314.985067pt;}
.y44{bottom:315.225067pt;}
.y10c{bottom:318.764533pt;}
.y15{bottom:319.240533pt;}
.y11e{bottom:321.821733pt;}
.yee{bottom:325.601333pt;}
.y14b{bottom:325.980667pt;}
.yb9{bottom:332.538800pt;}
.ya3{bottom:334.974533pt;}
.y66{bottom:334.974667pt;}
.y89{bottom:336.318400pt;}
.y43{bottom:336.558400pt;}
.y14{bottom:336.573867pt;}
.y16f{bottom:336.668267pt;}
.y10b{bottom:340.097867pt;}
.y14a{bottom:343.314000pt;}
.yed{bottom:346.934667pt;}
.yb8{bottom:353.872133pt;}
.y13{bottom:353.907200pt;}
.y16e{bottom:354.001600pt;}
.ya2{bottom:356.307867pt;}
.y65{bottom:356.308000pt;}
.y88{bottom:357.651733pt;}
.y42{bottom:357.891733pt;}
.y149{bottom:360.647333pt;}
.y10a{bottom:361.431200pt;}
.y11d{bottom:368.268000pt;}
.y12{bottom:371.240533pt;}
.y16d{bottom:371.334933pt;}
.yec{bottom:372.047467pt;}
.yb7{bottom:375.205467pt;}
.ya1{bottom:377.641200pt;}
.y64{bottom:377.641333pt;}
.y87{bottom:378.985067pt;}
.y41{bottom:379.225067pt;}
.y109{bottom:382.764533pt;}
.y148{bottom:385.539733pt;}
.y11{bottom:388.573867pt;}
.y16c{bottom:388.668267pt;}
.y11c{bottom:389.601333pt;}
.yeb{bottom:393.380800pt;}
.yb6{bottom:396.538800pt;}
.ya0{bottom:398.974533pt;}
.y63{bottom:398.974667pt;}
.y86{bottom:400.318400pt;}
.y40{bottom:400.558400pt;}
.y126{bottom:402.754133pt;}
.y147{bottom:402.873067pt;}
.y10{bottom:405.907200pt;}
.y108{bottom:407.877467pt;}
.y11b{bottom:410.934667pt;}
.y16b{bottom:413.560667pt;}
.yea{bottom:414.714133pt;}
.yb5{bottom:417.872133pt;}
.y146{bottom:420.206400pt;}
.y9f{bottom:420.307867pt;}
.y62{bottom:420.308000pt;}
.y85{bottom:421.651733pt;}
.y3f{bottom:421.891733pt;}
.yf{bottom:423.240533pt;}
.yd6{bottom:425.431200pt;}
.y107{bottom:429.210800pt;}
.y16a{bottom:430.894000pt;}
.y11a{bottom:432.268000pt;}
.ye9{bottom:436.047467pt;}
.y145{bottom:437.539733pt;}
.yb4{bottom:439.205467pt;}
.y9e{bottom:441.641200pt;}
.y61{bottom:441.641333pt;}
.y84{bottom:442.985067pt;}
.y3e{bottom:443.225067pt;}
.yd5{bottom:446.764533pt;}
.y106{bottom:450.544133pt;}
.y119{bottom:453.601333pt;}
.y169{bottom:455.786400pt;}
.ye8{bottom:457.380800pt;}
.y144{bottom:462.432133pt;}
.y9d{bottom:462.974533pt;}
.y83{bottom:464.318400pt;}
.y3d{bottom:464.558400pt;}
.y60{bottom:466.754267pt;}
.yd4{bottom:468.097867pt;}
.ye{bottom:470.810000pt;}
.y105{bottom:471.877467pt;}
.ye7{bottom:478.714133pt;}
.y143{bottom:479.765467pt;}
.y168{bottom:480.678800pt;}
.y9c{bottom:484.307867pt;}
.y82{bottom:485.651733pt;}
.y3c{bottom:485.891733pt;}
.yd{bottom:488.143333pt;}
.yc4{bottom:489.431200pt;}
.y104{bottom:493.210800pt;}
.y167{bottom:498.012133pt;}
.ye6{bottom:500.047467pt;}
.y142{bottom:504.657733pt;}
.yc{bottom:505.476667pt;}
.y9b{bottom:505.641200pt;}
.y81{bottom:506.985067pt;}
.y3b{bottom:507.225067pt;}
.yc3{bottom:510.764533pt;}
.y5f{bottom:510.764667pt;}
.y103{bottom:514.544133pt;}
.y166{bottom:515.345467pt;}
.ye5{bottom:521.380800pt;}
.y141{bottom:521.991067pt;}
.yb{bottom:522.810000pt;}
.y9a{bottom:526.974533pt;}
.yb3{bottom:528.318400pt;}
.y3a{bottom:528.558400pt;}
.y80{bottom:532.097867pt;}
.y5e{bottom:532.098000pt;}
.y102{bottom:535.877467pt;}
.ya{bottom:540.143333pt;}
.y165{bottom:540.237867pt;}
.ye4{bottom:542.714133pt;}
.y140{bottom:546.883467pt;}
.y99{bottom:548.307867pt;}
.yb2{bottom:549.651733pt;}
.y39{bottom:549.891733pt;}
.y7f{bottom:553.431200pt;}
.y5d{bottom:553.431333pt;}
.y101{bottom:557.210800pt;}
.y9{bottom:557.476667pt;}
.y164{bottom:557.571200pt;}
.ye3{bottom:567.827067pt;}
.y98{bottom:569.641200pt;}
.yb1{bottom:570.985067pt;}
.y13f{bottom:571.775867pt;}
.y7e{bottom:574.764533pt;}
.y5c{bottom:574.764667pt;}
.y8{bottom:574.810000pt;}
.y163{bottom:574.904533pt;}
.y38{bottom:575.004533pt;}
.yd3{bottom:578.544133pt;}
.y118{bottom:580.072667pt;}
.ye2{bottom:589.160400pt;}
.y97{bottom:590.974533pt;}
.y7{bottom:592.143333pt;}
.yb0{bottom:592.318400pt;}
.y7d{bottom:596.097867pt;}
.y5b{bottom:596.098000pt;}
.y37{bottom:596.337867pt;}
.y13e{bottom:596.668267pt;}
.y162{bottom:599.796933pt;}
.yd2{bottom:599.877467pt;}
.y117{bottom:601.406000pt;}
.y6{bottom:609.476667pt;}
.ye1{bottom:610.493733pt;}
.yaf{bottom:613.651733pt;}
.y13d{bottom:614.001600pt;}
.y96{bottom:616.087467pt;}
.y161{bottom:617.130267pt;}
.y7c{bottom:617.431200pt;}
.y5a{bottom:617.431333pt;}
.y36{bottom:617.671200pt;}
.yd1{bottom:621.210800pt;}
.y116{bottom:622.739333pt;}
.y5{bottom:626.810000pt;}
.ye0{bottom:631.827067pt;}
.yae{bottom:634.985067pt;}
.y7b{bottom:638.764533pt;}
.y59{bottom:638.764667pt;}
.y13c{bottom:638.894000pt;}
.y35{bottom:639.004533pt;}
.y160{bottom:642.022667pt;}
.yd0{bottom:642.544133pt;}
.y115{bottom:644.072667pt;}
.y4{bottom:644.143333pt;}
.ydf{bottom:653.160400pt;}
.y15f{bottom:659.356000pt;}
.y7a{bottom:660.097867pt;}
.y58{bottom:660.098000pt;}
.y34{bottom:660.337867pt;}
.y13b{bottom:663.786400pt;}
.ycf{bottom:663.877467pt;}
.y114{bottom:665.406000pt;}
.yde{bottom:674.493733pt;}
.y15e{bottom:676.689333pt;}
.y13a{bottom:681.119733pt;}
.y95{bottom:681.431200pt;}
.y57{bottom:681.431333pt;}
.y33{bottom:681.671200pt;}
.y79{bottom:685.210800pt;}
.y3{bottom:691.712667pt;}
.ydd{bottom:695.826933pt;}
.y15d{bottom:701.581733pt;}
.y94{bottom:702.764533pt;}
.y32{bottom:703.004533pt;}
.y139{bottom:706.012133pt;}
.y78{bottom:706.544133pt;}
.y56{bottom:706.544267pt;}
.y2{bottom:715.851333pt;}
.y15c{bottom:718.915067pt;}
.y93{bottom:724.097867pt;}
.y31{bottom:724.337867pt;}
.y77{bottom:727.877467pt;}
.y55{bottom:727.877600pt;}
.y138{bottom:730.904533pt;}
.y12e{bottom:731.656933pt;}
.ydc{bottom:733.185600pt;}
.y15b{bottom:743.807333pt;}
.y1{bottom:744.651333pt;}
.yad{bottom:745.431200pt;}
.y137{bottom:748.237867pt;}
.y76{bottom:749.210800pt;}
.y54{bottom:749.210933pt;}
.y30{bottom:749.450800pt;}
.y100{bottom:752.990267pt;}
.ydb{bottom:754.518933pt;}
.y15a{bottom:761.140667pt;}
.yac{bottom:766.764533pt;}
.y75{bottom:770.544133pt;}
.y53{bottom:770.544267pt;}
.y2f{bottom:770.784133pt;}
.y136{bottom:773.130267pt;}
.yce{bottom:774.323600pt;}
.yda{bottom:775.852267pt;}
.y159{bottom:786.033067pt;}
.yab{bottom:788.097867pt;}
.y74{bottom:791.877467pt;}
.y52{bottom:791.877600pt;}
.y2e{bottom:792.117467pt;}
.ycd{bottom:795.656933pt;}
.yd9{bottom:797.185600pt;}
.y135{bottom:798.022667pt;}
.y158{bottom:803.366400pt;}
.y73{bottom:813.210800pt;}
.y51{bottom:813.210933pt;}
.y2d{bottom:813.450800pt;}
.y134{bottom:815.356000pt;}
.ycc{bottom:816.990267pt;}
.y157{bottom:828.258933pt;}
.y72{bottom:834.544133pt;}
.y50{bottom:834.544267pt;}
.y2c{bottom:834.784133pt;}
.ycb{bottom:838.323600pt;}
.y133{bottom:840.248400pt;}
.y156{bottom:845.592267pt;}
.y71{bottom:855.877467pt;}
.y4f{bottom:855.877600pt;}
.y2b{bottom:856.117467pt;}
.yc2{bottom:859.656933pt;}
.y155{bottom:870.484533pt;}
.y70{bottom:877.210800pt;}
.y4e{bottom:877.210933pt;}
.y2a{bottom:877.450800pt;}
.yc1{bottom:880.990267pt;}
.y132{bottom:887.817867pt;}
.y6f{bottom:898.544133pt;}
.y29{bottom:898.784133pt;}
.y92{bottom:902.323600pt;}
.y4d{bottom:902.323733pt;}
.y131{bottom:905.151200pt;}
.y28{bottom:920.117467pt;}
.y130{bottom:922.484533pt;}
.y6e{bottom:923.656933pt;}
.y4c{bottom:923.657067pt;}
.y154{bottom:930.043600pt;}
.y6d{bottom:944.990267pt;}
.y4b{bottom:944.990400pt;}
.y27{bottom:945.230267pt;}
.y12f{bottom:947.376933pt;}
.y25{bottom:974.757200pt;}
.y24{bottom:987.557067pt;}
.y23{bottom:1000.357200pt;}
.y22{bottom:1013.157200pt;}
.y26{bottom:1063.786400pt;}
.h8{height:34.848000pt;}
.h7{height:39.509333pt;}
.h4{height:39.701333pt;}
.h5{height:39.706667pt;}
.hc{height:39.733333pt;}
.h6{height:40.293333pt;}
.he{height:49.386667pt;}
.hd{height:49.626667pt;}
.hb{height:49.704000pt;}
.ha{height:52.320000pt;}
.h9{height:59.552000pt;}
.h2{height:71.616000pt;}
.h3{height:73.720128pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:48.000000pt;}
.x1{left:113.385867pt;}
.x3{left:119.250800pt;}
.x2{left:132.283467pt;}
.x6{left:136.063067pt;}
.x4{left:440.000000pt;}
.x8{left:730.234533pt;}
.x7{left:737.967600pt;}
}




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