
    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_4917521dc7891f195ab85edd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.980000;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_3b32c006da07d4ac721a2893.woff')format("woff");}.ff2{font-family:ff2;line-height:0.955000;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_e015901a638be240e6489e4b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.073000;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_546238007d13eca6b201011a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.127000;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_cc69ba393bee75bf69109251.woff')format("woff");}.ff5{font-family:ff5;line-height:0.920000;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_c69549e3d3b509c3ef823111.woff')format("woff");}.ff6{font-family:ff6;line-height:1.077148;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_e47e096b3ae5b4b983ebbd06.woff')format("woff");}.ff7{font-family:ff7;line-height:1.066406;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_16e69a466e9656fbdaa0a383.woff')format("woff");}.ff8{font-family:ff8;line-height:1.046875;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_6346cf46c12c31d9dc782e07.woff')format("woff");}.ff9{font-family:ff9;line-height:0.967000;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_16ba6c9fcede18231adee326.woff')format("woff");}.ffa{font-family:ffa;line-height:0.762000;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_f3d664c6ded6895238756c30.woff')format("woff");}.ffb{font-family:ffb;line-height:0.984000;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_dc3a0f4c1344257d5595ab59.woff')format("woff");}.ffc{font-family:ffc;line-height:0.763000;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_b940b8ebe4c0b1e8665bc709.woff')format("woff");}.ffd{font-family:ffd;line-height:0.737793;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:ffe;src:url('chunks/assets/font_dcacf62098d8931bf6e9e9d6.woff')format("woff");}.ffe{font-family:ffe;line-height:0.978000;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:fff;src:url('chunks/assets/font_8d8445904523f52c6c4d4e10.woff')format("woff");}.fff{font-family:fff;line-height:0.978000;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:ff10;src:url('chunks/assets/font_5054e5843f7bab33188be028.woff')format("woff");}.ff10{font-family:ff10;line-height:0.960560;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:ff11;src:url('chunks/assets/font_f36bfcb19a76d955ab825ad3.woff')format("woff");}.ff11{font-family:ff11;line-height:0.976000;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:ff12;src:url('chunks/assets/font_cf3f1c1ccb592c69e32d4438.woff')format("woff");}.ff12{font-family:ff12;line-height:0.975000;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:ff13;src:url('chunks/assets/font_9def28ebd843615b60ed6420.woff')format("woff");}.ff13{font-family:ff13;line-height:0.978000;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:ff14;src:url('chunks/assets/font_d9ce97869fd59826c15e0041.woff')format("woff");}.ff14{font-family:ff14;line-height:0.978000;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:ff15;src:url('chunks/assets/font_f4c149f2ff00aba8bb46f036.woff')format("woff");}.ff15{font-family:ff15;line-height:0.689941;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:ff16;src:url('chunks/assets/font_54d20f7261e60d12443a9f73.woff')format("woff");}.ff16{font-family:ff16;line-height:1.093262;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:ff17;src:url('chunks/assets/font_798d209ebb4e73a4b104c57b.woff')format("woff");}.ff17{font-family:ff17;line-height:0.910156;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:ff18;src:url('chunks/assets/font_424e0fbd4b889fe99778d443.woff')format("woff");}.ff18{font-family:ff18;line-height:1.028320;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.m6{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m7{transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247657,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);}
.m5{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v3{vertical-align:22.977000px;}
.ls5{letter-spacing:-5.916072px;}
.ls4{letter-spacing:-0.690000px;}
.ls3{letter-spacing:-0.630000px;}
.ls6{letter-spacing:-0.270000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000008px;}
.ls7{letter-spacing:20.985600px;}
.ls1{letter-spacing:24.490041px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-27.000000px;}
.ws5{word-spacing:-20.016000px;}
.ws86{word-spacing:-16.056000px;}
.ws42{word-spacing:-15.456000px;}
.ws6{word-spacing:-15.387000px;}
.ws3{word-spacing:-14.697000px;}
.ws43{word-spacing:-14.049000px;}
.wsb7{word-spacing:-13.440000px;}
.wsb6{word-spacing:-13.380000px;}
.ws4{word-spacing:-12.711000px;}
.ws2{word-spacing:-12.222000px;}
.wsf7{word-spacing:-11.460000px;}
.ws7{word-spacing:-10.368000px;}
.wsc8{word-spacing:-9.960000px;}
.ws84{word-spacing:-9.010848px;}
.ws1{word-spacing:-8.395200px;}
.ws20{word-spacing:-6.900000px;}
.wsb1{word-spacing:-6.486000px;}
.wse0{word-spacing:-6.480000px;}
.ws2d{word-spacing:-6.072000px;}
.wsef{word-spacing:-5.520000px;}
.ws30{word-spacing:-5.313000px;}
.wsb5{word-spacing:-4.896000px;}
.ws88{word-spacing:-4.623000px;}
.wse4{word-spacing:-4.200000px;}
.wsea{word-spacing:-3.840000px;}
.wsca{word-spacing:-3.600000px;}
.ws5c{word-spacing:-3.450000px;}
.ws89{word-spacing:-3.381000px;}
.ws79{word-spacing:-3.243000px;}
.ws23{word-spacing:-3.105000px;}
.ws7c{word-spacing:-2.898000px;}
.ws60{word-spacing:-2.829000px;}
.ws66{word-spacing:-2.760000px;}
.ws7d{word-spacing:-2.553000px;}
.wsfc{word-spacing:-2.280000px;}
.ws8a{word-spacing:-2.070000px;}
.ws4b{word-spacing:-1.701000px;}
.wsf9{word-spacing:-1.680000px;}
.wsd5{word-spacing:-1.440000px;}
.wsba{word-spacing:-1.311000px;}
.ws7a{word-spacing:-1.173000px;}
.ws2f{word-spacing:-1.035000px;}
.wsce{word-spacing:-1.020000px;}
.ws28{word-spacing:-0.897000px;}
.ws5f{word-spacing:-0.690000px;}
.ws5d{word-spacing:-0.621000px;}
.ws68{word-spacing:-0.483000px;}
.ws46{word-spacing:-0.345000px;}
.ws47{word-spacing:-0.324000px;}
.wse6{word-spacing:-0.300000px;}
.ws10{word-spacing:-0.252000px;}
.ws26{word-spacing:-0.207000px;}
.wsde{word-spacing:-0.180000px;}
.ws41{word-spacing:-0.054000px;}
.ws40{word-spacing:-0.034957px;}
.ws9{word-spacing:0.000000px;}
.ws21{word-spacing:0.207000px;}
.ws2e{word-spacing:0.345000px;}
.wsf6{word-spacing:0.480000px;}
.ws4e{word-spacing:0.504000px;}
.ws11{word-spacing:0.630000px;}
.ws16{word-spacing:0.690000px;}
.wsc9{word-spacing:0.780000px;}
.ws80{word-spacing:1.134000px;}
.ws7f{word-spacing:1.458000px;}
.ws7e{word-spacing:1.674000px;}
.ws49{word-spacing:1.764000px;}
.ws6b{word-spacing:1.932000px;}
.ws39{word-spacing:2.070000px;}
.wsd9{word-spacing:2.160000px;}
.ws1d{word-spacing:2.346000px;}
.ws48{word-spacing:2.394000px;}
.wse5{word-spacing:2.460000px;}
.ws37{word-spacing:2.553000px;}
.ws1c{word-spacing:2.622000px;}
.ws13{word-spacing:2.691000px;}
.ws72{word-spacing:2.829000px;}
.wscb{word-spacing:3.000000px;}
.wsf8{word-spacing:3.120000px;}
.ws35{word-spacing:3.174000px;}
.ws1a{word-spacing:3.243000px;}
.wsb9{word-spacing:3.312000px;}
.wsbd{word-spacing:3.381000px;}
.wse1{word-spacing:3.420000px;}
.ws53{word-spacing:3.450000px;}
.ws1f{word-spacing:3.726000px;}
.ws70{word-spacing:3.795000px;}
.wsc{word-spacing:3.843000px;}
.ws6a{word-spacing:3.933000px;}
.ws3c{word-spacing:4.071000px;}
.ws2a{word-spacing:4.278000px;}
.wse9{word-spacing:4.620000px;}
.ws4f{word-spacing:4.662000px;}
.wscf{word-spacing:4.740000px;}
.wsad{word-spacing:4.761000px;}
.ws71{word-spacing:4.899000px;}
.wsc2{word-spacing:5.040000px;}
.wsa2{word-spacing:5.244000px;}
.ws63{word-spacing:5.382000px;}
.ws83{word-spacing:5.508000px;}
.ws29{word-spacing:5.658000px;}
.ws8{word-spacing:5.768170px;}
.wsbf{word-spacing:5.820000px;}
.ws82{word-spacing:5.832000px;}
.ws1b{word-spacing:5.934000px;}
.wse3{word-spacing:5.940000px;}
.ws9f{word-spacing:6.072000px;}
.ws9e{word-spacing:6.141000px;}
.ws65{word-spacing:6.348000px;}
.ws81{word-spacing:6.534000px;}
.ws32{word-spacing:6.900000px;}
.wsdf{word-spacing:6.960000px;}
.wsf3{word-spacing:7.020000px;}
.wsc1{word-spacing:7.380000px;}
.ws4a{word-spacing:7.497000px;}
.wsfa{word-spacing:7.740000px;}
.ws6d{word-spacing:7.797000px;}
.wsc5{word-spacing:7.800000px;}
.wsc4{word-spacing:7.860000px;}
.wsd{word-spacing:8.127000px;}
.wsb3{word-spacing:8.211000px;}
.ws5a{word-spacing:8.694000px;}
.ws14{word-spacing:8.832000px;}
.ws22{word-spacing:8.901000px;}
.ws67{word-spacing:8.970000px;}
.wseb{word-spacing:9.300000px;}
.ws8b{word-spacing:9.660000px;}
.ws6e{word-spacing:9.729000px;}
.ws97{word-spacing:9.798000px;}
.ws3f{word-spacing:9.867000px;}
.wsc0{word-spacing:10.020000px;}
.wsd2{word-spacing:10.140000px;}
.ws3a{word-spacing:10.143000px;}
.ws56{word-spacing:10.212000px;}
.ws69{word-spacing:10.281000px;}
.wsfb{word-spacing:10.440000px;}
.wsdd{word-spacing:10.560000px;}
.wsdc{word-spacing:10.620000px;}
.ws78{word-spacing:10.626000px;}
.ws75{word-spacing:10.902000px;}
.ws50{word-spacing:10.962000px;}
.wsd1{word-spacing:11.100000px;}
.ws3b{word-spacing:11.592000px;}
.ws3e{word-spacing:11.730000px;}
.ws38{word-spacing:11.799000px;}
.wsec{word-spacing:11.820000px;}
.ws27{word-spacing:11.868000px;}
.ws94{word-spacing:12.213000px;}
.ws34{word-spacing:12.282000px;}
.ws64{word-spacing:12.489000px;}
.ws3d{word-spacing:12.558000px;}
.ws6c{word-spacing:12.696000px;}
.ws59{word-spacing:12.834000px;}
.wsda{word-spacing:12.840000px;}
.wsa9{word-spacing:12.903000px;}
.wsac{word-spacing:12.972000px;}
.wsf2{word-spacing:13.440000px;}
.wsab{word-spacing:13.593000px;}
.wsbe{word-spacing:14.007000px;}
.ws6f{word-spacing:14.352000px;}
.ws77{word-spacing:14.421000px;}
.wscd{word-spacing:14.640000px;}
.wscc{word-spacing:14.700000px;}
.ws7b{word-spacing:15.111000px;}
.wsa1{word-spacing:15.249000px;}
.wsa0{word-spacing:15.318000px;}
.wsf{word-spacing:15.687000px;}
.wsed{word-spacing:15.720000px;}
.wsee{word-spacing:15.780000px;}
.ws90{word-spacing:15.870000px;}
.ws61{word-spacing:15.939000px;}
.wse8{word-spacing:16.200000px;}
.wse7{word-spacing:16.260000px;}
.ws1e{word-spacing:16.560000px;}
.ws96{word-spacing:16.698000px;}
.ws95{word-spacing:16.767000px;}
.ws4d{word-spacing:16.884000px;}
.wsaa{word-spacing:16.905000px;}
.wsd4{word-spacing:17.820000px;}
.ws93{word-spacing:17.871000px;}
.ws92{word-spacing:17.940000px;}
.ws62{word-spacing:19.044000px;}
.ws25{word-spacing:19.182000px;}
.wsd7{word-spacing:19.380000px;}
.ws5b{word-spacing:19.389000px;}
.wsd6{word-spacing:19.500000px;}
.wsdb{word-spacing:19.560000px;}
.ws76{word-spacing:19.665000px;}
.ws73{word-spacing:19.941000px;}
.wsae{word-spacing:20.148000px;}
.wsf1{word-spacing:20.400000px;}
.ws17{word-spacing:20.424000px;}
.ws18{word-spacing:20.631000px;}
.ws19{word-spacing:20.700000px;}
.ws36{word-spacing:20.769000px;}
.wsaf{word-spacing:20.907000px;}
.wsb0{word-spacing:21.045000px;}
.wsb8{word-spacing:21.183000px;}
.ws74{word-spacing:21.321000px;}
.wsb2{word-spacing:21.597000px;}
.ws31{word-spacing:22.218000px;}
.ws4c{word-spacing:22.806000px;}
.ws44{word-spacing:22.908000px;}
.ws24{word-spacing:23.391000px;}
.ws12{word-spacing:23.436000px;}
.ws8f{word-spacing:24.288000px;}
.wsd3{word-spacing:24.420000px;}
.wsa{word-spacing:25.011000px;}
.ws45{word-spacing:25.116000px;}
.wsb{word-spacing:25.137000px;}
.ws8c{word-spacing:25.254000px;}
.wsc6{word-spacing:25.260000px;}
.wsc7{word-spacing:25.380000px;}
.wsb4{word-spacing:26.220000px;}
.ws15{word-spacing:26.289000px;}
.wsa8{word-spacing:26.496000px;}
.wsa7{word-spacing:26.634000px;}
.wsd8{word-spacing:27.720000px;}
.ws2c{word-spacing:28.221000px;}
.ws2b{word-spacing:28.980000px;}
.wsbb{word-spacing:30.498000px;}
.ws57{word-spacing:30.912000px;}
.ws99{word-spacing:30.981000px;}
.ws98{word-spacing:31.119000px;}
.wsf0{word-spacing:31.200000px;}
.wsf5{word-spacing:31.260000px;}
.ws5e{word-spacing:31.326000px;}
.wsa3{word-spacing:33.465000px;}
.wsf4{word-spacing:33.780000px;}
.ws55{word-spacing:34.431000px;}
.ws54{word-spacing:34.569000px;}
.wsbc{word-spacing:35.052000px;}
.ws8d{word-spacing:35.397000px;}
.ws9b{word-spacing:35.949000px;}
.ws9a{word-spacing:36.087000px;}
.ws9d{word-spacing:37.398000px;}
.ws9c{word-spacing:37.536000px;}
.ws58{word-spacing:38.088000px;}
.ws33{word-spacing:43.332000px;}
.wse{word-spacing:44.037000px;}
.wse2{word-spacing:44.340000px;}
.wsa5{word-spacing:46.851000px;}
.wsa6{word-spacing:47.058000px;}
.wsd0{word-spacing:53.580000px;}
.wsa4{word-spacing:54.510000px;}
.wsc3{word-spacing:57.960000px;}
.ws52{word-spacing:58.236000px;}
.ws51{word-spacing:63.825000px;}
.ws8e{word-spacing:64.377000px;}
.ws91{word-spacing:97.221000px;}
.ws85{word-spacing:190.886400px;}
.ws87{word-spacing:283.766400px;}
._25{margin-left:-34.266000px;}
._26{margin-left:-13.668000px;}
._2{margin-left:-7.680000px;}
._4{margin-left:-5.994000px;}
._1{margin-left:-4.440000px;}
._3{margin-left:-3.024000px;}
._0{margin-left:-1.954800px;}
._6{width:1.513800px;}
._5{width:2.842004px;}
._d{width:4.070204px;}
._e{width:6.057600px;}
._8{width:7.744200px;}
._27{width:8.910000px;}
._f{width:10.029000px;}
._a{width:11.832144px;}
._12{width:16.861800px;}
._11{width:18.565200px;}
._9{width:19.704333px;}
._7{width:20.771449px;}
._24{width:26.602800px;}
._23{width:27.654000px;}
._18{width:55.598400px;}
._22{width:57.829800px;}
._b{width:59.112600px;}
._21{width:63.394200px;}
._10{width:97.228800px;}
._1a{width:136.382400px;}
._c{width:200.886600px;}
._1c{width:229.838400px;}
._15{width:240.370200px;}
._16{width:280.598400px;}
._14{width:290.894400px;}
._1d{width:301.570200px;}
._1e{width:319.406400px;}
._20{width:336.182400px;}
._1b{width:343.618200px;}
._17{width:353.194200px;}
._19{width:511.954200px;}
._13{width:559.544400px;}
._1f{width:651.346200px;}
.fc1{color:rgb(42,93,42);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:31.482000px;}
.fsb{font-size:34.956600px;}
.fs2{font-size:34.980000px;}
.fsc{font-size:40.227000px;}
.fs9{font-size:43.200000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs6{font-size:69.000000px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.fsa{font-size:147.901800px;}
.y0{bottom:0.000000px;}
.yc1{bottom:80.787300px;}
.y90{bottom:80.787450px;}
.ya9{bottom:80.787600px;}
.y30{bottom:85.939500px;}
.y2e{bottom:85.939650px;}
.y78{bottom:91.308600px;}
.yf1{bottom:94.022400px;}
.y120{bottom:95.401950px;}
.y8f{bottom:97.287450px;}
.yc0{bottom:103.884600px;}
.ya8{bottom:104.555850px;}
.y2f{bottom:108.439500px;}
.y2d{bottom:108.851400px;}
.y8e{bottom:113.787450px;}
.y77{bottom:113.808600px;}
.y11f{bottom:114.451950px;}
.yf0{bottom:122.026500px;}
.ybf{bottom:126.981750px;}
.ya7{bottom:128.324250px;}
.y2c{bottom:131.763150px;}
.y11e{bottom:133.501800px;}
.y76{bottom:136.308600px;}
.y43{bottom:138.189000px;}
.yef{bottom:141.526500px;}
.ybe{bottom:150.079050px;}
.ya6{bottom:152.092650px;}
.y2b{bottom:154.674900px;}
.y75{bottom:158.808600px;}
.yee{bottom:161.026500px;}
.y11d{bottom:161.055750px;}
.y42{bottom:161.415450px;}
.ybd{bottom:173.176200px;}
.ya5{bottom:175.861050px;}
.y2a{bottom:177.586650px;}
.y11c{bottom:180.105900px;}
.yed{bottom:180.526500px;}
.y74{bottom:181.308600px;}
.y41{bottom:184.641750px;}
.ybc{bottom:196.273500px;}
.y11b{bottom:199.155900px;}
.ya4{bottom:199.629450px;}
.y29{bottom:200.498400px;}
.y73{bottom:203.808600px;}
.y40{bottom:207.868200px;}
.yec{bottom:208.530450px;}
.ya3{bottom:223.397850px;}
.y28{bottom:223.410150px;}
.y72{bottom:226.308600px;}
.y11a{bottom:226.709700px;}
.ybb{bottom:227.874600px;}
.yeb{bottom:228.030450px;}
.y3f{bottom:231.094500px;}
.y119{bottom:245.759700px;}
.y27{bottom:246.321900px;}
.ya2{bottom:247.166250px;}
.yea{bottom:247.530450px;}
.y71{bottom:248.808600px;}
.y3e{bottom:254.320950px;}
.yba{bottom:258.575850px;}
.y118{bottom:264.809850px;}
.ye9{bottom:267.030450px;}
.y26{bottom:269.233800px;}
.ya1{bottom:270.934650px;}
.y70{bottom:271.308600px;}
.y3d{bottom:277.547250px;}
.yb9{bottom:281.673000px;}
.y117{bottom:283.859700px;}
.y6f{bottom:293.808600px;}
.ya0{bottom:294.703050px;}
.ye8{bottom:295.034250px;}
.y25{bottom:300.649500px;}
.y3c{bottom:300.773700px;}
.y116{bottom:302.909700px;}
.yb8{bottom:304.770300px;}
.ye7{bottom:314.534250px;}
.y6e{bottom:316.308600px;}
.y9f{bottom:318.471450px;}
.y3b{bottom:324.000000px;}
.yb7{bottom:327.867450px;}
.y115{bottom:330.463650px;}
.y24{bottom:331.165200px;}
.ye6{bottom:334.034250px;}
.y6d{bottom:338.808600px;}
.y9e{bottom:342.239850px;}
.y3a{bottom:347.226450px;}
.y114{bottom:349.513650px;}
.yb6{bottom:350.964750px;}
.y23{bottom:354.076950px;}
.y6c{bottom:361.308600px;}
.ye5{bottom:362.038200px;}
.y9d{bottom:366.008250px;}
.y113{bottom:368.563650px;}
.y39{bottom:370.452750px;}
.yb5{bottom:374.061900px;}
.y22{bottom:376.988700px;}
.ye4{bottom:381.538200px;}
.y6b{bottom:383.808600px;}
.y112{bottom:387.613650px;}
.y9c{bottom:389.776650px;}
.y38{bottom:393.679200px;}
.yb4{bottom:397.159200px;}
.y21{bottom:399.900450px;}
.y6a{bottom:406.308600px;}
.ye3{bottom:409.542150px;}
.y9b{bottom:413.545050px;}
.y111{bottom:415.167600px;}
.y37{bottom:416.905500px;}
.yb3{bottom:420.256350px;}
.y20{bottom:422.812200px;}
.y69{bottom:428.808600px;}
.ye2{bottom:429.042150px;}
.y110{bottom:434.217600px;}
.y9a{bottom:437.313300px;}
.y36{bottom:440.131950px;}
.yb2{bottom:443.353650px;}
.y1f{bottom:445.723950px;}
.y68{bottom:451.308600px;}
.ye1{bottom:457.046100px;}
.y10f{bottom:461.771550px;}
.y35{bottom:463.358250px;}
.yb1{bottom:466.450800px;}
.y1e{bottom:468.635700px;}
.y99{bottom:469.585650px;}
.y67{bottom:473.808600px;}
.ye0{bottom:476.546100px;}
.y10e{bottom:480.821550px;}
.y34{bottom:486.584700px;}
.y1d{bottom:491.547600px;}
.y98{bottom:493.354050px;}
.y66{bottom:496.308600px;}
.yb0{bottom:498.052050px;}
.y10d{bottom:499.871550px;}
.ydf{bottom:504.550050px;}
.y33{bottom:509.811150px;}
.y1c{bottom:514.459350px;}
.y65{bottom:518.808600px;}
.y10c{bottom:518.921550px;}
.yaf{bottom:521.149200px;}
.yde{bottom:524.050050px;}
.y97{bottom:525.626400px;}
.y32{bottom:533.037450px;}
.y1b{bottom:537.371100px;}
.y64{bottom:541.308600px;}
.yae{bottom:544.246500px;}
.y10b{bottom:546.475500px;}
.y96{bottom:549.394800px;}
.ydd{bottom:552.054000px;}
.y1a{bottom:560.282850px;}
.y63{bottom:563.808600px;}
.y31{bottom:564.767700px;}
.y10a{bottom:565.525500px;}
.yad{bottom:567.343800px;}
.ydc{bottom:571.554000px;}
.y95{bottom:573.163200px;}
.y19{bottom:583.194600px;}
.y109{bottom:584.575500px;}
.y62{bottom:586.308600px;}
.ydb{bottom:591.054000px;}
.y94{bottom:596.931450px;}
.yac{bottom:598.944900px;}
.y10{bottom:601.321800px;}
.y108{bottom:603.625500px;}
.y18{bottom:606.106350px;}
.y61{bottom:608.808600px;}
.y8d{bottom:613.669800px;}
.yda{bottom:619.057950px;}
.y93{bottom:620.699850px;}
.yf{bottom:620.821800px;}
.yab{bottom:622.042200px;}
.y17{bottom:629.018100px;}
.y107{bottom:631.179450px;}
.y60{bottom:631.308600px;}
.y8c{bottom:636.169800px;}
.yd9{bottom:638.557950px;}
.y92{bottom:644.468250px;}
.yaa{bottom:645.139350px;}
.ye{bottom:648.825750px;}
.y106{bottom:650.229450px;}
.y16{bottom:651.929850px;}
.y5f{bottom:653.808600px;}
.yd8{bottom:658.057950px;}
.y8b{bottom:658.669800px;}
.y91{bottom:668.236650px;}
.yd{bottom:668.325750px;}
.y105{bottom:669.279450px;}
.y15{bottom:674.841750px;}
.y5e{bottom:676.308600px;}
.y8a{bottom:681.169800px;}
.yd7{bottom:686.061900px;}
.yc{bottom:687.825750px;}
.y104{bottom:696.833400px;}
.y14{bottom:697.753500px;}
.y89{bottom:703.669800px;}
.yd6{bottom:705.561900px;}
.y5d{bottom:707.312550px;}
.yb{bottom:707.325750px;}
.ycf{bottom:712.927650px;}
.y103{bottom:715.883400px;}
.yd5{bottom:725.061900px;}
.y88{bottom:726.169800px;}
.ya{bottom:726.825750px;}
.y13{bottom:729.169200px;}
.y5c{bottom:729.812550px;}
.yce{bottom:733.927650px;}
.y102{bottom:734.933400px;}
.yd4{bottom:744.561900px;}
.y9{bottom:746.325750px;}
.y87{bottom:748.669800px;}
.y12{bottom:752.080950px;}
.y5b{bottom:752.312550px;}
.y101{bottom:753.983400px;}
.ycd{bottom:764.003100px;}
.yd3{bottom:764.061900px;}
.y8{bottom:765.825750px;}
.y86{bottom:771.169800px;}
.y100{bottom:773.033400px;}
.y5a{bottom:774.812550px;}
.y11{bottom:774.992700px;}
.yd2{bottom:783.561900px;}
.ycc{bottom:791.564250px;}
.yff{bottom:792.083250px;}
.y85{bottom:793.669800px;}
.yd1{bottom:803.061900px;}
.y59{bottom:805.816500px;}
.yfe{bottom:811.133400px;}
.y84{bottom:816.169800px;}
.ycb{bottom:819.125400px;}
.y58{bottom:825.316500px;}
.y7{bottom:827.974950px;}
.yfd{bottom:830.183400px;}
.yd0{bottom:831.065850px;}
.y83{bottom:838.669800px;}
.y57{bottom:844.816500px;}
.yca{bottom:849.211050px;}
.y6{bottom:852.922500px;}
.yfc{bottom:857.737350px;}
.y82{bottom:861.169800px;}
.y56{bottom:864.316500px;}
.y5{bottom:868.878900px;}
.yc9{bottom:870.211050px;}
.yfb{bottom:876.787350px;}
.y81{bottom:883.669800px;}
.y55{bottom:883.816500px;}
.y4{bottom:889.574400px;}
.yfa{bottom:895.837350px;}
.yc8{bottom:897.772350px;}
.y54{bottom:903.316500px;}
.y3{bottom:905.530950px;}
.y80{bottom:906.169800px;}
.yf9{bottom:914.887350px;}
.y53{bottom:922.816500px;}
.yc7{bottom:925.333500px;}
.y7f{bottom:928.669800px;}
.y52{bottom:942.316500px;}
.yf8{bottom:942.441300px;}
.y7e{bottom:951.169800px;}
.yc6{bottom:953.897850px;}
.y2{bottom:955.930950px;}
.yf7{bottom:961.491150px;}
.y51{bottom:961.816500px;}
.y7d{bottom:973.669800px;}
.yc5{bottom:974.897850px;}
.yf6{bottom:980.541300px;}
.y50{bottom:981.316500px;}
.y1{bottom:988.330950px;}
.yc4{bottom:995.897850px;}
.y7c{bottom:996.169800px;}
.yf5{bottom:999.591300px;}
.y4f{bottom:1009.320300px;}
.yf4{bottom:1018.641300px;}
.y7b{bottom:1018.669800px;}
.yc3{bottom:1023.459000px;}
.y4e{bottom:1031.820300px;}
.y7a{bottom:1041.169800px;}
.yf3{bottom:1046.195100px;}
.y47{bottom:1057.885350px;}
.y49{bottom:1058.664750px;}
.y4d{bottom:1062.824400px;}
.yc2{bottom:1063.249950px;}
.y79{bottom:1063.669800px;}
.yf2{bottom:1065.245250px;}
.y46{bottom:1069.885350px;}
.y48{bottom:1071.322050px;}
.y4a{bottom:1071.558150px;}
.y45{bottom:1081.885350px;}
.y44{bottom:1093.885350px;}
.y4b{bottom:1094.745150px;}
.y4c{bottom:1095.386850px;}
.he{height:26.636929px;}
.h4{height:31.752000px;}
.hc{height:32.918400px;}
.h5{height:39.366000px;}
.hf{height:40.500000px;}
.h11{height:41.148000px;}
.h13{height:41.472000px;}
.h14{height:41.526000px;}
.h10{height:43.066406px;}
.hb{height:47.926758px;}
.h6{height:49.734000px;}
.h17{height:50.449219px;}
.h3{height:51.060000px;}
.h8{height:52.971680px;}
.ha{height:54.000000px;}
.h7{height:54.448242px;}
.h9{height:58.016602px;}
.h12{height:59.633789px;}
.h16{height:60.539062px;}
.h15{height:63.175781px;}
.h2{height:82.620000px;}
.hd{height:111.370055px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w1{width:871.500000px;}
.w0{width:871.653000px;}
.x0{left:0.000000px;}
.x8{left:89.291400px;}
.x13{left:93.543300px;}
.x2d{left:99.730800px;}
.x10{left:112.677150px;}
.x30{left:114.803100px;}
.xe{left:119.018400px;}
.x16{left:128.009400px;}
.x6{left:136.781550px;}
.x4{left:154.307550px;}
.x2a{left:180.750450px;}
.x2b{left:184.128150px;}
.x1{left:201.680850px;}
.x1f{left:207.589500px;}
.x2{left:223.251750px;}
.x2f{left:227.102400px;}
.x20{left:260.548650px;}
.x21{left:263.926350px;}
.x5{left:277.192800px;}
.x3{left:302.875800px;}
.x7{left:337.145850px;}
.x22{left:340.887900px;}
.x23{left:346.962900px;}
.xf{left:372.160800px;}
.x24{left:390.945150px;}
.x17{left:397.400850px;}
.x18{left:403.475850px;}
.x9{left:444.330750px;}
.x11{left:448.582650px;}
.x31{left:469.842450px;}
.x25{left:492.732900px;}
.x19{left:497.000550px;}
.x1a{left:503.075700px;}
.x2e{left:532.228950px;}
.x26{left:542.333700px;}
.x27{left:545.711400px;}
.xd{left:559.966200px;}
.x1b{left:602.665350px;}
.x1c{left:608.059650px;}
.xc{left:636.550650px;}
.x28{left:643.550850px;}
.xb{left:645.779400px;}
.x29{left:648.945150px;}
.xa{left:664.182750px;}
.x15{left:688.590900px;}
.x1d{left:707.649300px;}
.x1e{left:713.724300px;}
.x12{left:733.641750px;}
.x14{left:753.083400px;}
.x2c{left:757.335300px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v3{vertical-align:20.424000pt;}
.ls5{letter-spacing:-5.258731pt;}
.ls4{letter-spacing:-0.613333pt;}
.ls3{letter-spacing:-0.560000pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000007pt;}
.ls7{letter-spacing:18.653867pt;}
.ls1{letter-spacing:21.768925pt;}
.ws0{word-spacing:-24.000000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws86{word-spacing:-14.272000pt;}
.ws42{word-spacing:-13.738667pt;}
.ws6{word-spacing:-13.677333pt;}
.ws3{word-spacing:-13.064000pt;}
.ws43{word-spacing:-12.488000pt;}
.wsb7{word-spacing:-11.946667pt;}
.wsb6{word-spacing:-11.893333pt;}
.ws4{word-spacing:-11.298667pt;}
.ws2{word-spacing:-10.864000pt;}
.wsf7{word-spacing:-10.186667pt;}
.ws7{word-spacing:-9.216000pt;}
.wsc8{word-spacing:-8.853333pt;}
.ws84{word-spacing:-8.009643pt;}
.ws1{word-spacing:-7.462400pt;}
.ws20{word-spacing:-6.133333pt;}
.wsb1{word-spacing:-5.765333pt;}
.wse0{word-spacing:-5.760000pt;}
.ws2d{word-spacing:-5.397333pt;}
.wsef{word-spacing:-4.906667pt;}
.ws30{word-spacing:-4.722667pt;}
.wsb5{word-spacing:-4.352000pt;}
.ws88{word-spacing:-4.109333pt;}
.wse4{word-spacing:-3.733333pt;}
.wsea{word-spacing:-3.413333pt;}
.wsca{word-spacing:-3.200000pt;}
.ws5c{word-spacing:-3.066667pt;}
.ws89{word-spacing:-3.005333pt;}
.ws79{word-spacing:-2.882667pt;}
.ws23{word-spacing:-2.760000pt;}
.ws7c{word-spacing:-2.576000pt;}
.ws60{word-spacing:-2.514667pt;}
.ws66{word-spacing:-2.453333pt;}
.ws7d{word-spacing:-2.269333pt;}
.wsfc{word-spacing:-2.026667pt;}
.ws8a{word-spacing:-1.840000pt;}
.ws4b{word-spacing:-1.512000pt;}
.wsf9{word-spacing:-1.493333pt;}
.wsd5{word-spacing:-1.280000pt;}
.wsba{word-spacing:-1.165333pt;}
.ws7a{word-spacing:-1.042667pt;}
.ws2f{word-spacing:-0.920000pt;}
.wsce{word-spacing:-0.906667pt;}
.ws28{word-spacing:-0.797333pt;}
.ws5f{word-spacing:-0.613333pt;}
.ws5d{word-spacing:-0.552000pt;}
.ws68{word-spacing:-0.429333pt;}
.ws46{word-spacing:-0.306667pt;}
.ws47{word-spacing:-0.288000pt;}
.wse6{word-spacing:-0.266667pt;}
.ws10{word-spacing:-0.224000pt;}
.ws26{word-spacing:-0.184000pt;}
.wsde{word-spacing:-0.160000pt;}
.ws41{word-spacing:-0.048000pt;}
.ws40{word-spacing:-0.031073pt;}
.ws9{word-spacing:0.000000pt;}
.ws21{word-spacing:0.184000pt;}
.ws2e{word-spacing:0.306667pt;}
.wsf6{word-spacing:0.426667pt;}
.ws4e{word-spacing:0.448000pt;}
.ws11{word-spacing:0.560000pt;}
.ws16{word-spacing:0.613333pt;}
.wsc9{word-spacing:0.693333pt;}
.ws80{word-spacing:1.008000pt;}
.ws7f{word-spacing:1.296000pt;}
.ws7e{word-spacing:1.488000pt;}
.ws49{word-spacing:1.568000pt;}
.ws6b{word-spacing:1.717333pt;}
.ws39{word-spacing:1.840000pt;}
.wsd9{word-spacing:1.920000pt;}
.ws1d{word-spacing:2.085333pt;}
.ws48{word-spacing:2.128000pt;}
.wse5{word-spacing:2.186667pt;}
.ws37{word-spacing:2.269333pt;}
.ws1c{word-spacing:2.330667pt;}
.ws13{word-spacing:2.392000pt;}
.ws72{word-spacing:2.514667pt;}
.wscb{word-spacing:2.666667pt;}
.wsf8{word-spacing:2.773333pt;}
.ws35{word-spacing:2.821333pt;}
.ws1a{word-spacing:2.882667pt;}
.wsb9{word-spacing:2.944000pt;}
.wsbd{word-spacing:3.005333pt;}
.wse1{word-spacing:3.040000pt;}
.ws53{word-spacing:3.066667pt;}
.ws1f{word-spacing:3.312000pt;}
.ws70{word-spacing:3.373333pt;}
.wsc{word-spacing:3.416000pt;}
.ws6a{word-spacing:3.496000pt;}
.ws3c{word-spacing:3.618667pt;}
.ws2a{word-spacing:3.802667pt;}
.wse9{word-spacing:4.106667pt;}
.ws4f{word-spacing:4.144000pt;}
.wscf{word-spacing:4.213333pt;}
.wsad{word-spacing:4.232000pt;}
.ws71{word-spacing:4.354667pt;}
.wsc2{word-spacing:4.480000pt;}
.wsa2{word-spacing:4.661333pt;}
.ws63{word-spacing:4.784000pt;}
.ws83{word-spacing:4.896000pt;}
.ws29{word-spacing:5.029333pt;}
.ws8{word-spacing:5.127262pt;}
.wsbf{word-spacing:5.173333pt;}
.ws82{word-spacing:5.184000pt;}
.ws1b{word-spacing:5.274667pt;}
.wse3{word-spacing:5.280000pt;}
.ws9f{word-spacing:5.397333pt;}
.ws9e{word-spacing:5.458667pt;}
.ws65{word-spacing:5.642667pt;}
.ws81{word-spacing:5.808000pt;}
.ws32{word-spacing:6.133333pt;}
.wsdf{word-spacing:6.186667pt;}
.wsf3{word-spacing:6.240000pt;}
.wsc1{word-spacing:6.560000pt;}
.ws4a{word-spacing:6.664000pt;}
.wsfa{word-spacing:6.880000pt;}
.ws6d{word-spacing:6.930667pt;}
.wsc5{word-spacing:6.933333pt;}
.wsc4{word-spacing:6.986667pt;}
.wsd{word-spacing:7.224000pt;}
.wsb3{word-spacing:7.298667pt;}
.ws5a{word-spacing:7.728000pt;}
.ws14{word-spacing:7.850667pt;}
.ws22{word-spacing:7.912000pt;}
.ws67{word-spacing:7.973333pt;}
.wseb{word-spacing:8.266667pt;}
.ws8b{word-spacing:8.586667pt;}
.ws6e{word-spacing:8.648000pt;}
.ws97{word-spacing:8.709333pt;}
.ws3f{word-spacing:8.770667pt;}
.wsc0{word-spacing:8.906667pt;}
.wsd2{word-spacing:9.013333pt;}
.ws3a{word-spacing:9.016000pt;}
.ws56{word-spacing:9.077333pt;}
.ws69{word-spacing:9.138667pt;}
.wsfb{word-spacing:9.280000pt;}
.wsdd{word-spacing:9.386667pt;}
.wsdc{word-spacing:9.440000pt;}
.ws78{word-spacing:9.445333pt;}
.ws75{word-spacing:9.690667pt;}
.ws50{word-spacing:9.744000pt;}
.wsd1{word-spacing:9.866667pt;}
.ws3b{word-spacing:10.304000pt;}
.ws3e{word-spacing:10.426667pt;}
.ws38{word-spacing:10.488000pt;}
.wsec{word-spacing:10.506667pt;}
.ws27{word-spacing:10.549333pt;}
.ws94{word-spacing:10.856000pt;}
.ws34{word-spacing:10.917333pt;}
.ws64{word-spacing:11.101333pt;}
.ws3d{word-spacing:11.162667pt;}
.ws6c{word-spacing:11.285333pt;}
.ws59{word-spacing:11.408000pt;}
.wsda{word-spacing:11.413333pt;}
.wsa9{word-spacing:11.469333pt;}
.wsac{word-spacing:11.530667pt;}
.wsf2{word-spacing:11.946667pt;}
.wsab{word-spacing:12.082667pt;}
.wsbe{word-spacing:12.450667pt;}
.ws6f{word-spacing:12.757333pt;}
.ws77{word-spacing:12.818667pt;}
.wscd{word-spacing:13.013333pt;}
.wscc{word-spacing:13.066667pt;}
.ws7b{word-spacing:13.432000pt;}
.wsa1{word-spacing:13.554667pt;}
.wsa0{word-spacing:13.616000pt;}
.wsf{word-spacing:13.944000pt;}
.wsed{word-spacing:13.973333pt;}
.wsee{word-spacing:14.026667pt;}
.ws90{word-spacing:14.106667pt;}
.ws61{word-spacing:14.168000pt;}
.wse8{word-spacing:14.400000pt;}
.wse7{word-spacing:14.453333pt;}
.ws1e{word-spacing:14.720000pt;}
.ws96{word-spacing:14.842667pt;}
.ws95{word-spacing:14.904000pt;}
.ws4d{word-spacing:15.008000pt;}
.wsaa{word-spacing:15.026667pt;}
.wsd4{word-spacing:15.840000pt;}
.ws93{word-spacing:15.885333pt;}
.ws92{word-spacing:15.946667pt;}
.ws62{word-spacing:16.928000pt;}
.ws25{word-spacing:17.050667pt;}
.wsd7{word-spacing:17.226667pt;}
.ws5b{word-spacing:17.234667pt;}
.wsd6{word-spacing:17.333333pt;}
.wsdb{word-spacing:17.386667pt;}
.ws76{word-spacing:17.480000pt;}
.ws73{word-spacing:17.725333pt;}
.wsae{word-spacing:17.909333pt;}
.wsf1{word-spacing:18.133333pt;}
.ws17{word-spacing:18.154667pt;}
.ws18{word-spacing:18.338667pt;}
.ws19{word-spacing:18.400000pt;}
.ws36{word-spacing:18.461333pt;}
.wsaf{word-spacing:18.584000pt;}
.wsb0{word-spacing:18.706667pt;}
.wsb8{word-spacing:18.829333pt;}
.ws74{word-spacing:18.952000pt;}
.wsb2{word-spacing:19.197333pt;}
.ws31{word-spacing:19.749333pt;}
.ws4c{word-spacing:20.272000pt;}
.ws44{word-spacing:20.362667pt;}
.ws24{word-spacing:20.792000pt;}
.ws12{word-spacing:20.832000pt;}
.ws8f{word-spacing:21.589333pt;}
.wsd3{word-spacing:21.706667pt;}
.wsa{word-spacing:22.232000pt;}
.ws45{word-spacing:22.325333pt;}
.wsb{word-spacing:22.344000pt;}
.ws8c{word-spacing:22.448000pt;}
.wsc6{word-spacing:22.453333pt;}
.wsc7{word-spacing:22.560000pt;}
.wsb4{word-spacing:23.306667pt;}
.ws15{word-spacing:23.368000pt;}
.wsa8{word-spacing:23.552000pt;}
.wsa7{word-spacing:23.674667pt;}
.wsd8{word-spacing:24.640000pt;}
.ws2c{word-spacing:25.085333pt;}
.ws2b{word-spacing:25.760000pt;}
.wsbb{word-spacing:27.109333pt;}
.ws57{word-spacing:27.477333pt;}
.ws99{word-spacing:27.538667pt;}
.ws98{word-spacing:27.661333pt;}
.wsf0{word-spacing:27.733333pt;}
.wsf5{word-spacing:27.786667pt;}
.ws5e{word-spacing:27.845333pt;}
.wsa3{word-spacing:29.746667pt;}
.wsf4{word-spacing:30.026667pt;}
.ws55{word-spacing:30.605333pt;}
.ws54{word-spacing:30.728000pt;}
.wsbc{word-spacing:31.157333pt;}
.ws8d{word-spacing:31.464000pt;}
.ws9b{word-spacing:31.954667pt;}
.ws9a{word-spacing:32.077333pt;}
.ws9d{word-spacing:33.242667pt;}
.ws9c{word-spacing:33.365333pt;}
.ws58{word-spacing:33.856000pt;}
.ws33{word-spacing:38.517333pt;}
.wse{word-spacing:39.144000pt;}
.wse2{word-spacing:39.413333pt;}
.wsa5{word-spacing:41.645333pt;}
.wsa6{word-spacing:41.829333pt;}
.wsd0{word-spacing:47.626667pt;}
.wsa4{word-spacing:48.453333pt;}
.wsc3{word-spacing:51.520000pt;}
.ws52{word-spacing:51.765333pt;}
.ws51{word-spacing:56.733333pt;}
.ws8e{word-spacing:57.224000pt;}
.ws91{word-spacing:86.418667pt;}
.ws85{word-spacing:169.676800pt;}
.ws87{word-spacing:252.236800pt;}
._25{margin-left:-30.458667pt;}
._26{margin-left:-12.149333pt;}
._2{margin-left:-6.826667pt;}
._4{margin-left:-5.328000pt;}
._1{margin-left:-3.946667pt;}
._3{margin-left:-2.688000pt;}
._0{margin-left:-1.737600pt;}
._6{width:1.345600pt;}
._5{width:2.526226pt;}
._d{width:3.617959pt;}
._e{width:5.384533pt;}
._8{width:6.883733pt;}
._27{width:7.920000pt;}
._f{width:8.914667pt;}
._a{width:10.517461pt;}
._12{width:14.988267pt;}
._11{width:16.502400pt;}
._9{width:17.514963pt;}
._7{width:18.463510pt;}
._24{width:23.646933pt;}
._23{width:24.581333pt;}
._18{width:49.420800pt;}
._22{width:51.404267pt;}
._b{width:52.544533pt;}
._21{width:56.350400pt;}
._10{width:86.425600pt;}
._1a{width:121.228800pt;}
._c{width:178.565867pt;}
._1c{width:204.300800pt;}
._15{width:213.662400pt;}
._16{width:249.420800pt;}
._14{width:258.572800pt;}
._1d{width:268.062400pt;}
._1e{width:283.916800pt;}
._20{width:298.828800pt;}
._1b{width:305.438400pt;}
._17{width:313.950400pt;}
._19{width:455.070400pt;}
._13{width:497.372800pt;}
._1f{width:578.974400pt;}
.fs3{font-size:27.984000pt;}
.fsb{font-size:31.072533pt;}
.fs2{font-size:31.093333pt;}
.fsc{font-size:35.757333pt;}
.fs9{font-size:38.400000pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs6{font-size:61.333333pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.fsa{font-size:131.468267pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:71.810933pt;}
.y90{bottom:71.811067pt;}
.ya9{bottom:71.811200pt;}
.y30{bottom:76.390667pt;}
.y2e{bottom:76.390800pt;}
.y78{bottom:81.163200pt;}
.yf1{bottom:83.575467pt;}
.y120{bottom:84.801733pt;}
.y8f{bottom:86.477733pt;}
.yc0{bottom:92.341867pt;}
.ya8{bottom:92.938533pt;}
.y2f{bottom:96.390667pt;}
.y2d{bottom:96.756800pt;}
.y8e{bottom:101.144400pt;}
.y77{bottom:101.163200pt;}
.y11f{bottom:101.735067pt;}
.yf0{bottom:108.468000pt;}
.ybf{bottom:112.872667pt;}
.ya7{bottom:114.066000pt;}
.y2c{bottom:117.122800pt;}
.y11e{bottom:118.668267pt;}
.y76{bottom:121.163200pt;}
.y43{bottom:122.834667pt;}
.yef{bottom:125.801333pt;}
.ybe{bottom:133.403600pt;}
.ya6{bottom:135.193467pt;}
.y2b{bottom:137.488800pt;}
.y75{bottom:141.163200pt;}
.yee{bottom:143.134667pt;}
.y11d{bottom:143.160667pt;}
.y42{bottom:143.480400pt;}
.ybd{bottom:153.934400pt;}
.ya5{bottom:156.320933pt;}
.y2a{bottom:157.854800pt;}
.y11c{bottom:160.094133pt;}
.yed{bottom:160.468000pt;}
.y74{bottom:161.163200pt;}
.y41{bottom:164.126000pt;}
.ybc{bottom:174.465333pt;}
.y11b{bottom:177.027467pt;}
.ya4{bottom:177.448400pt;}
.y29{bottom:178.220800pt;}
.y73{bottom:181.163200pt;}
.y40{bottom:184.771733pt;}
.yec{bottom:185.360400pt;}
.ya3{bottom:198.575867pt;}
.y28{bottom:198.586800pt;}
.y72{bottom:201.163200pt;}
.y11a{bottom:201.519733pt;}
.ybb{bottom:202.555200pt;}
.yeb{bottom:202.693733pt;}
.y3f{bottom:205.417333pt;}
.y119{bottom:218.453067pt;}
.y27{bottom:218.952800pt;}
.ya2{bottom:219.703333pt;}
.yea{bottom:220.027067pt;}
.y71{bottom:221.163200pt;}
.y3e{bottom:226.063067pt;}
.yba{bottom:229.845200pt;}
.y118{bottom:235.386533pt;}
.ye9{bottom:237.360400pt;}
.y26{bottom:239.318933pt;}
.ya1{bottom:240.830800pt;}
.y70{bottom:241.163200pt;}
.y3d{bottom:246.708667pt;}
.yb9{bottom:250.376000pt;}
.y117{bottom:252.319733pt;}
.y6f{bottom:261.163200pt;}
.ya0{bottom:261.958267pt;}
.ye8{bottom:262.252667pt;}
.y25{bottom:267.244000pt;}
.y3c{bottom:267.354400pt;}
.y116{bottom:269.253067pt;}
.yb8{bottom:270.906933pt;}
.ye7{bottom:279.586000pt;}
.y6e{bottom:281.163200pt;}
.y9f{bottom:283.085733pt;}
.y3b{bottom:288.000000pt;}
.yb7{bottom:291.437733pt;}
.y115{bottom:293.745467pt;}
.y24{bottom:294.369067pt;}
.ye6{bottom:296.919333pt;}
.y6d{bottom:301.163200pt;}
.y9e{bottom:304.213200pt;}
.y3a{bottom:308.645733pt;}
.y114{bottom:310.678800pt;}
.yb6{bottom:311.968667pt;}
.y23{bottom:314.735067pt;}
.y6c{bottom:321.163200pt;}
.ye5{bottom:321.811733pt;}
.y9d{bottom:325.340667pt;}
.y113{bottom:327.612133pt;}
.y39{bottom:329.291333pt;}
.yb5{bottom:332.499467pt;}
.y22{bottom:335.101067pt;}
.ye4{bottom:339.145067pt;}
.y6b{bottom:341.163200pt;}
.y112{bottom:344.545467pt;}
.y9c{bottom:346.468133pt;}
.y38{bottom:349.937067pt;}
.yb4{bottom:353.030400pt;}
.y21{bottom:355.467067pt;}
.y6a{bottom:361.163200pt;}
.ye3{bottom:364.037467pt;}
.y9b{bottom:367.595600pt;}
.y111{bottom:369.037867pt;}
.y37{bottom:370.582667pt;}
.yb3{bottom:373.561200pt;}
.y20{bottom:375.833067pt;}
.y69{bottom:381.163200pt;}
.ye2{bottom:381.370800pt;}
.y110{bottom:385.971200pt;}
.y9a{bottom:388.722933pt;}
.y36{bottom:391.228400pt;}
.yb2{bottom:394.092133pt;}
.y1f{bottom:396.199067pt;}
.y68{bottom:401.163200pt;}
.ye1{bottom:406.263200pt;}
.y10f{bottom:410.463600pt;}
.y35{bottom:411.874000pt;}
.yb1{bottom:414.622933pt;}
.y1e{bottom:416.565067pt;}
.y99{bottom:417.409467pt;}
.y67{bottom:421.163200pt;}
.ye0{bottom:423.596533pt;}
.y10e{bottom:427.396933pt;}
.y34{bottom:432.519733pt;}
.y1d{bottom:436.931200pt;}
.y98{bottom:438.536933pt;}
.y66{bottom:441.163200pt;}
.yb0{bottom:442.712933pt;}
.y10d{bottom:444.330267pt;}
.ydf{bottom:448.488933pt;}
.y33{bottom:453.165467pt;}
.y1c{bottom:457.297200pt;}
.y65{bottom:461.163200pt;}
.y10c{bottom:461.263600pt;}
.yaf{bottom:463.243733pt;}
.yde{bottom:465.822267pt;}
.y97{bottom:467.223467pt;}
.y32{bottom:473.811067pt;}
.y1b{bottom:477.663200pt;}
.y64{bottom:481.163200pt;}
.yae{bottom:483.774667pt;}
.y10b{bottom:485.756000pt;}
.y96{bottom:488.350933pt;}
.ydd{bottom:490.714667pt;}
.y1a{bottom:498.029200pt;}
.y63{bottom:501.163200pt;}
.y31{bottom:502.015733pt;}
.y10a{bottom:502.689333pt;}
.yad{bottom:504.305600pt;}
.ydc{bottom:508.048000pt;}
.y95{bottom:509.478400pt;}
.y19{bottom:518.395200pt;}
.y109{bottom:519.622667pt;}
.y62{bottom:521.163200pt;}
.ydb{bottom:525.381333pt;}
.y94{bottom:530.605733pt;}
.yac{bottom:532.395467pt;}
.y10{bottom:534.508267pt;}
.y108{bottom:536.556000pt;}
.y18{bottom:538.761200pt;}
.y61{bottom:541.163200pt;}
.y8d{bottom:545.484267pt;}
.yda{bottom:550.273733pt;}
.y93{bottom:551.733200pt;}
.yf{bottom:551.841600pt;}
.yab{bottom:552.926400pt;}
.y17{bottom:559.127200pt;}
.y107{bottom:561.048400pt;}
.y60{bottom:561.163200pt;}
.y8c{bottom:565.484267pt;}
.yd9{bottom:567.607067pt;}
.y92{bottom:572.860667pt;}
.yaa{bottom:573.457200pt;}
.ye{bottom:576.734000pt;}
.y106{bottom:577.981733pt;}
.y16{bottom:579.493200pt;}
.y5f{bottom:581.163200pt;}
.yd8{bottom:584.940400pt;}
.y8b{bottom:585.484267pt;}
.y91{bottom:593.988133pt;}
.yd{bottom:594.067333pt;}
.y105{bottom:594.915067pt;}
.y15{bottom:599.859333pt;}
.y5e{bottom:601.163200pt;}
.y8a{bottom:605.484267pt;}
.yd7{bottom:609.832800pt;}
.yc{bottom:611.400667pt;}
.y104{bottom:619.407467pt;}
.y14{bottom:620.225333pt;}
.y89{bottom:625.484267pt;}
.yd6{bottom:627.166133pt;}
.y5d{bottom:628.722267pt;}
.yb{bottom:628.734000pt;}
.ycf{bottom:633.713467pt;}
.y103{bottom:636.340800pt;}
.yd5{bottom:644.499467pt;}
.y88{bottom:645.484267pt;}
.ya{bottom:646.067333pt;}
.y13{bottom:648.150400pt;}
.y5c{bottom:648.722267pt;}
.yce{bottom:652.380133pt;}
.y102{bottom:653.274133pt;}
.yd4{bottom:661.832800pt;}
.y9{bottom:663.400667pt;}
.y87{bottom:665.484267pt;}
.y12{bottom:668.516400pt;}
.y5b{bottom:668.722267pt;}
.y101{bottom:670.207467pt;}
.ycd{bottom:679.113867pt;}
.yd3{bottom:679.166133pt;}
.y8{bottom:680.734000pt;}
.y86{bottom:685.484267pt;}
.y100{bottom:687.140800pt;}
.y5a{bottom:688.722267pt;}
.y11{bottom:688.882400pt;}
.yd2{bottom:696.499467pt;}
.ycc{bottom:703.612667pt;}
.yff{bottom:704.074000pt;}
.y85{bottom:705.484267pt;}
.yd1{bottom:713.832800pt;}
.y59{bottom:716.281333pt;}
.yfe{bottom:721.007467pt;}
.y84{bottom:725.484267pt;}
.ycb{bottom:728.111467pt;}
.y58{bottom:733.614667pt;}
.y7{bottom:735.977733pt;}
.yfd{bottom:737.940800pt;}
.yd0{bottom:738.725200pt;}
.y83{bottom:745.484267pt;}
.y57{bottom:750.948000pt;}
.yca{bottom:754.854267pt;}
.y6{bottom:758.153333pt;}
.yfc{bottom:762.433200pt;}
.y82{bottom:765.484267pt;}
.y56{bottom:768.281333pt;}
.y5{bottom:772.336800pt;}
.yc9{bottom:773.520933pt;}
.yfb{bottom:779.366533pt;}
.y81{bottom:785.484267pt;}
.y55{bottom:785.614667pt;}
.y4{bottom:790.732800pt;}
.yfa{bottom:796.299867pt;}
.yc8{bottom:798.019867pt;}
.y54{bottom:802.948000pt;}
.y3{bottom:804.916400pt;}
.y80{bottom:805.484267pt;}
.yf9{bottom:813.233200pt;}
.y53{bottom:820.281333pt;}
.yc7{bottom:822.518667pt;}
.y7f{bottom:825.484267pt;}
.y52{bottom:837.614667pt;}
.yf8{bottom:837.725600pt;}
.y7e{bottom:845.484267pt;}
.yc6{bottom:847.909200pt;}
.y2{bottom:849.716400pt;}
.yf7{bottom:854.658800pt;}
.y51{bottom:854.948000pt;}
.y7d{bottom:865.484267pt;}
.yc5{bottom:866.575867pt;}
.yf6{bottom:871.592267pt;}
.y50{bottom:872.281333pt;}
.y1{bottom:878.516400pt;}
.yc4{bottom:885.242533pt;}
.y7c{bottom:885.484267pt;}
.yf5{bottom:888.525600pt;}
.y4f{bottom:897.173600pt;}
.yf4{bottom:905.458933pt;}
.y7b{bottom:905.484267pt;}
.yc3{bottom:909.741333pt;}
.y4e{bottom:917.173600pt;}
.y7a{bottom:925.484267pt;}
.yf3{bottom:929.951200pt;}
.y47{bottom:940.342533pt;}
.y49{bottom:941.035333pt;}
.y4d{bottom:944.732800pt;}
.yc2{bottom:945.111067pt;}
.y79{bottom:945.484267pt;}
.yf2{bottom:946.884667pt;}
.y46{bottom:951.009200pt;}
.y48{bottom:952.286267pt;}
.y4a{bottom:952.496133pt;}
.y45{bottom:961.675867pt;}
.y44{bottom:972.342533pt;}
.y4b{bottom:973.106800pt;}
.y4c{bottom:973.677200pt;}
.he{height:23.677270pt;}
.h4{height:28.224000pt;}
.hc{height:29.260800pt;}
.h5{height:34.992000pt;}
.hf{height:36.000000pt;}
.h11{height:36.576000pt;}
.h13{height:36.864000pt;}
.h14{height:36.912000pt;}
.h10{height:38.281250pt;}
.hb{height:42.601562pt;}
.h6{height:44.208000pt;}
.h17{height:44.843750pt;}
.h3{height:45.386667pt;}
.h8{height:47.085938pt;}
.ha{height:48.000000pt;}
.h7{height:48.398438pt;}
.h9{height:51.570312pt;}
.h12{height:53.007812pt;}
.h16{height:53.812500pt;}
.h15{height:56.156250pt;}
.h2{height:73.440000pt;}
.hd{height:98.995605pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w1{width:774.666667pt;}
.w0{width:774.802667pt;}
.x0{left:0.000000pt;}
.x8{left:79.370133pt;}
.x13{left:83.149600pt;}
.x2d{left:88.649600pt;}
.x10{left:100.157467pt;}
.x30{left:102.047200pt;}
.xe{left:105.794133pt;}
.x16{left:113.786133pt;}
.x6{left:121.583600pt;}
.x4{left:137.162267pt;}
.x2a{left:160.667067pt;}
.x2b{left:163.669467pt;}
.x1{left:179.271867pt;}
.x1f{left:184.524000pt;}
.x2{left:198.446000pt;}
.x2f{left:201.868800pt;}
.x20{left:231.598800pt;}
.x21{left:234.601200pt;}
.x5{left:246.393600pt;}
.x3{left:269.222933pt;}
.x7{left:299.685200pt;}
.x22{left:303.011467pt;}
.x23{left:308.411467pt;}
.xf{left:330.809600pt;}
.x24{left:347.506800pt;}
.x17{left:353.245200pt;}
.x18{left:358.645200pt;}
.x9{left:394.960667pt;}
.x11{left:398.740133pt;}
.x31{left:417.637733pt;}
.x25{left:437.984800pt;}
.x19{left:441.778267pt;}
.x1a{left:447.178400pt;}
.x2e{left:473.092400pt;}
.x26{left:482.074400pt;}
.x27{left:485.076800pt;}
.xd{left:497.747733pt;}
.x1b{left:535.702533pt;}
.x1c{left:540.497467pt;}
.xc{left:565.822800pt;}
.x28{left:572.045200pt;}
.xb{left:574.026133pt;}
.x29{left:576.840133pt;}
.xa{left:590.384667pt;}
.x15{left:612.080800pt;}
.x1d{left:629.021600pt;}
.x1e{left:634.421600pt;}
.x12{left:652.126000pt;}
.x14{left:669.407467pt;}
.x2c{left:673.186933pt;}
}




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