
    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_9a50254da91b226b3f81ecae.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_839015d6b6e7ef0f8ded6cf4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_3000cb057d2078d7fcdb609d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854000;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_ed42f3a1fe0ee428292b542f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_39fa09693b273f5c86a31e48.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_721218d53556c3eb08341e14.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_1ba5402d71a47b35dff94f30.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6025fbffd2d41894be776812.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773000;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffb;src:url('chunks/assets/font_09537497aefb2b85ca177ed6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.738000;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_cf21c2bc3d1c3215abe16525.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_eb4290ace1637658e4af0da3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:49.092000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:5.379804px;}
.ls9{letter-spacing:5.499355px;}
.lsa{letter-spacing:5.738458px;}
.lsc{letter-spacing:5.798233px;}
.ls6{letter-spacing:17.607287px;}
.ls11{letter-spacing:18.130924px;}
.ls5{letter-spacing:18.196379px;}
.lsf{letter-spacing:18.327288px;}
.ls4{letter-spacing:18.654561px;}
.ls1{letter-spacing:21.796382px;}
.ls10{letter-spacing:21.812124px;}
.ls3{letter-spacing:28.407296px;}
.lse{letter-spacing:29.323661px;}
.ls2{letter-spacing:42.283672px;}
.lsb{letter-spacing:43.935066px;}
.ls8{letter-spacing:92.421895px;}
.ls7{letter-spacing:367.331215px;}
.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;}
}
.wsa1{word-spacing:-37.120648px;}
.ws9f{word-spacing:-36.881545px;}
.wsa9{word-spacing:-36.761994px;}
.ws28{word-spacing:-34.363665px;}
.wsa5{word-spacing:-31.382190px;}
.wsff{word-spacing:-26.899125px;}
.wsa2{word-spacing:-22.774504px;}
.wsaa{word-spacing:-22.654952px;}
.ws65{word-spacing:-22.416000px;}
.wsa8{word-spacing:-21.997421px;}
.wsaf{word-spacing:-20.906199px;}
.ws1a{word-spacing:-18.183288px;}
.ws11f{word-spacing:-13.221829px;}
.ws9e{word-spacing:-12.567283px;}
.ws98{word-spacing:-12.501829px;}
.ws9c{word-spacing:-9.622650px;}
.ws84{word-spacing:-3.495276px;}
.ws4a{word-spacing:-3.259639px;}
.ws77{word-spacing:-3.194184px;}
.ws35{word-spacing:-2.997821px;}
.wsf3{word-spacing:-2.670548px;}
.ws120{word-spacing:-2.408729px;}
.wsc1{word-spacing:-2.277820px;}
.ws36{word-spacing:-2.212365px;}
.wsd2{word-spacing:-2.016002px;}
.wsdc{word-spacing:-1.819638px;}
.ws90{word-spacing:-1.754183px;}
.ws10f{word-spacing:-1.688729px;}
.ws10b{word-spacing:-1.623274px;}
.ws5a{word-spacing:-1.008001px;}
.ws19{word-spacing:-0.968728px;}
.ws59{word-spacing:-0.942546px;}
.wsdf{word-spacing:-0.837819px;}
.wsec{word-spacing:-0.746182px;}
.ws83{word-spacing:-0.706910px;}
.wsf7{word-spacing:-0.680728px;}
.wse1{word-spacing:-0.641455px;}
.ws70{word-spacing:-0.576000px;}
.wsfd{word-spacing:-0.510546px;}
.ws113{word-spacing:-0.379637px;}
.ws8d{word-spacing:-0.314182px;}
.wsc4{word-spacing:-0.117818px;}
.ws3f{word-spacing:0.000000px;}
.ws7c{word-spacing:0.013091px;}
.wsd6{word-spacing:0.274909px;}
.wscb{word-spacing:0.340364px;}
.ws7a{word-spacing:0.405819px;}
.wsca{word-spacing:0.432000px;}
.ws5c{word-spacing:0.562910px;}
.wsba{word-spacing:0.733092px;}
.ws18{word-spacing:0.798546px;}
.ws7b{word-spacing:0.890183px;}
.ws4{word-spacing:0.929455px;}
.ws6c{word-spacing:1.256728px;}
.wsc7{word-spacing:1.374547px;}
.ws12{word-spacing:1.780365px;}
.ws25{word-spacing:1.845820px;}
.wse{word-spacing:1.911274px;}
.ws13{word-spacing:2.002911px;}
.wsa7{word-spacing:2.032370px;}
.ws4d{word-spacing:2.107638px;}
.ws89{word-spacing:2.173093px;}
.ws37{word-spacing:2.369457px;}
.ws63{word-spacing:2.500366px;}
.ws68{word-spacing:2.565820px;}
.wsa4{word-spacing:2.570351px;}
.ws7d{word-spacing:2.696730px;}
.ws10d{word-spacing:2.827639px;}
.ws5e{word-spacing:2.958548px;}
.ws58{word-spacing:3.024003px;}
.ws5d{word-spacing:3.285821px;}
.ws31{word-spacing:3.613094px;}
.ws50{word-spacing:3.678549px;}
.ws56{word-spacing:3.704730px;}
.wsd3{word-spacing:3.744003px;}
.wsc9{word-spacing:3.874912px;}
.ws4f{word-spacing:4.005822px;}
.ws102{word-spacing:4.071276px;}
.ws3c{word-spacing:4.136731px;}
.wsbd{word-spacing:4.162913px;}
.wsae{word-spacing:4.228367px;}
.wsc{word-spacing:4.398549px;}
.ws62{word-spacing:4.464004px;}
.ws52{word-spacing:4.483200px;}
.wsb9{word-spacing:4.529458px;}
.ws4e{word-spacing:4.594913px;}
.wsfe{word-spacing:4.660368px;}
.ws7e{word-spacing:4.725822px;}
.ws55{word-spacing:4.752004px;}
.ws2e{word-spacing:5.053095px;}
.ws22{word-spacing:5.314914px;}
.ws51{word-spacing:5.379825px;}
.ws32{word-spacing:5.380368px;}
.ws116{word-spacing:5.445823px;}
.ws8e{word-spacing:5.642187px;}
.ws42{word-spacing:5.773096px;}
.wsb8{word-spacing:5.799278px;}
.ws69{word-spacing:5.969460px;}
.ws4b{word-spacing:6.034914px;}
.ws57{word-spacing:6.100369px;}
.ws54{word-spacing:6.362187px;}
.wsc0{word-spacing:6.427642px;}
.ws87{word-spacing:6.453824px;}
.wsbf{word-spacing:6.885824px;}
.ws78{word-spacing:7.042915px;}
.ws49{word-spacing:7.278552px;}
.wsbe{word-spacing:7.344006px;}
.ws33{word-spacing:7.474915px;}
.wsc2{word-spacing:7.540370px;}
.wsf0{word-spacing:7.566552px;}
.ws76{word-spacing:7.605825px;}
.ws91{word-spacing:7.736734px;}
.ws11a{word-spacing:7.782835px;}
.wsd{word-spacing:7.802188px;}
.ws8c{word-spacing:7.933098px;}
.ws6a{word-spacing:8.129461px;}
.ws7f{word-spacing:8.260371px;}
.ws1e{word-spacing:8.325825px;}
.ws29{word-spacing:8.391280px;}
.wsbb{word-spacing:8.548371px;}
.ws5f{word-spacing:8.587644px;}
.wsac{word-spacing:8.653098px;}
.wsed{word-spacing:8.718553px;}
.ws11d{word-spacing:8.784007px;}
.ws6f{word-spacing:8.849462px;}
.wsb{word-spacing:8.980371px;}
.ws11{word-spacing:9.045826px;}
.ws88{word-spacing:9.111280px;}
.ws30{word-spacing:9.176735px;}
.ws11c{word-spacing:9.242190px;}
.ws81{word-spacing:9.333826px;}
.wsc8{word-spacing:9.373099px;}
.wsf4{word-spacing:9.504008px;}
.ws34{word-spacing:9.569463px;}
.wsb7{word-spacing:10.027645px;}
.ws4c{word-spacing:10.093099px;}
.ws1c{word-spacing:10.158554px;}
.ws16{word-spacing:10.354918px;}
.wsf8{word-spacing:10.420372px;}
.ws95{word-spacing:10.458380px;}
.ws10a{word-spacing:10.616736px;}
.ws2f{word-spacing:10.878555px;}
.ws97{word-spacing:10.944009px;}
.ws1d{word-spacing:11.009464px;}
.ws8b{word-spacing:11.140373px;}
.wscf{word-spacing:11.205828px;}
.ws79{word-spacing:11.336737px;}
.wsb6{word-spacing:11.493828px;}
.wsa{word-spacing:11.533101px;}
.ws24{word-spacing:11.598555px;}
.wsf2{word-spacing:11.860374px;}
.wsf{word-spacing:11.991283px;}
.ws82{word-spacing:12.122192px;}
.wsf5{word-spacing:12.253101px;}
.ws67{word-spacing:12.318556px;}
.ws114{word-spacing:12.449465px;}
.wsa0{word-spacing:12.552876px;}
.ws1f{word-spacing:12.973102px;}
.ws27{word-spacing:13.104011px;}
.wscd{word-spacing:13.300375px;}
.ws111{word-spacing:13.449600px;}
.wsce{word-spacing:13.457466px;}
.ws26{word-spacing:13.496739px;}
.ws43{word-spacing:13.627648px;}
.wsfc{word-spacing:13.758557px;}
.wsf6{word-spacing:13.954921px;}
.ws53{word-spacing:14.020375px;}
.wsc5{word-spacing:14.085830px;}
.ws21{word-spacing:14.151285px;}
.ws5b{word-spacing:14.216739px;}
.wsb1{word-spacing:14.282194px;}
.ws6d{word-spacing:14.347648px;}
.wsd9{word-spacing:14.478558px;}
.ws14{word-spacing:14.544012px;}
.ws118{word-spacing:14.955955px;}
.ws93{word-spacing:15.114345px;}
.wsa3{word-spacing:15.720983px;}
.wsfb{word-spacing:15.722195px;}
.wsd1{word-spacing:15.744998px;}
.ws7{word-spacing:15.984013px;}
.ws61{word-spacing:16.114923px;}
.ws85{word-spacing:16.180377px;}
.wsa6{word-spacing:16.199188px;}
.ws20{word-spacing:16.442196px;}
.wsb0{word-spacing:16.468377px;}
.ws9{word-spacing:16.507650px;}
.wsd4{word-spacing:16.704014px;}
.wsd8{word-spacing:16.730196px;}
.wsf1{word-spacing:16.769469px;}
.wsda{word-spacing:16.795650px;}
.ws6{word-spacing:16.834923px;}
.ws41{word-spacing:16.965832px;}
.ws71{word-spacing:17.031287px;}
.ws39{word-spacing:17.227651px;}
.ws8a{word-spacing:17.293105px;}
.ws8{word-spacing:17.358560px;}
.wsc6{word-spacing:17.554924px;}
.ws117{word-spacing:17.816742px;}
.ws119{word-spacing:18.130924px;}
.wse8{word-spacing:18.209470px;}
.ws10{word-spacing:18.340379px;}
.wse0{word-spacing:18.432015px;}
.wsbc{word-spacing:18.536743px;}
.ws86{word-spacing:18.562925px;}
.ws2b{word-spacing:18.864016px;}
.ws15{word-spacing:18.929470px;}
.wsdb{word-spacing:19.282925px;}
.ws2d{word-spacing:19.387653px;}
.ws105{word-spacing:19.518562px;}
.ws40{word-spacing:19.544744px;}
.ws38{word-spacing:19.806562px;}
.ws17{word-spacing:19.976744px;}
.ws75{word-spacing:20.042199px;}
.ws45{word-spacing:20.369472px;}
.ws5{word-spacing:20.762199px;}
.ws2c{word-spacing:20.827654px;}
.ws3{word-spacing:20.893108px;}
.ws60{word-spacing:21.220381px;}
.ws96{word-spacing:21.482200px;}
.ws3b{word-spacing:22.202200px;}
.wsd5{word-spacing:22.333110px;}
.ws74{word-spacing:23.053110px;}
.ws10c{word-spacing:23.301838px;}
.ws2{word-spacing:23.312640px;}
.ws44{word-spacing:23.406565px;}
.wsde{word-spacing:23.904020px;}
.ws3e{word-spacing:24.165838px;}
.wseb{word-spacing:24.296748px;}
.wsad{word-spacing:25.147657px;}
.ws73{word-spacing:25.605840px;}
.ws11e{word-spacing:26.217754px;}
.wse2{word-spacing:26.325840px;}
.wsd0{word-spacing:27.176750px;}
.wsdd{word-spacing:27.530205px;}
.ws80{word-spacing:27.831296px;}
.ws115{word-spacing:27.896751px;}
.ws2a{word-spacing:28.747660px;}
.ws23{word-spacing:30.384025px;}
.ws1{word-spacing:30.987720px;}
.ws0{word-spacing:31.091012px;}
.wsb3{word-spacing:31.562208px;}
.wsb5{word-spacing:32.046572px;}
.ws47{word-spacing:32.177481px;}
.ws3a{word-spacing:32.347663px;}
.wscc{word-spacing:32.544027px;}
.ws3d{word-spacing:33.093846px;}
.ws103{word-spacing:33.133119px;}
.ws107{word-spacing:33.198573px;}
.ws11b{word-spacing:34.049483px;}
.wsf9{word-spacing:34.638574px;}
.ws72{word-spacing:35.751303px;}
.ws110{word-spacing:36.078576px;}
.ws10e{word-spacing:36.209485px;}
.wsb2{word-spacing:36.366576px;}
.ws46{word-spacing:36.471303px;}
.ws6b{word-spacing:36.929485px;}
.wsab{word-spacing:38.958578px;}
.ws112{word-spacing:40.398579px;}
.ws9d{word-spacing:41.249489px;}
.ws108{word-spacing:42.820399px;}
.wsd7{word-spacing:43.648435px;}
.wsee{word-spacing:45.399311px;}
.ws66{word-spacing:48.645859px;}
.wse3{word-spacing:52.992044px;}
.ws6e{word-spacing:55.845865px;}
.ws109{word-spacing:57.220411px;}
.wsb4{word-spacing:58.281600px;}
.ws48{word-spacing:59.576777px;}
.ws9b{word-spacing:64.158599px;}
.wse9{word-spacing:65.690237px;}
.ws1b{word-spacing:69.937725px;}
.ws99{word-spacing:70.180422px;}
.ws9a{word-spacing:70.376786px;}
.ws64{word-spacing:78.222874px;}
.wsef{word-spacing:82.485887px;}
.ws106{word-spacing:84.514980px;}
.ws101{word-spacing:90.340439px;}
.wse6{word-spacing:99.399356px;}
.wse5{word-spacing:101.402266px;}
.ws94{word-spacing:104.020450px;}
.wsea{word-spacing:117.896826px;}
.ws100{word-spacing:123.918649px;}
.wse4{word-spacing:125.227741px;}
.wsfa{word-spacing:160.769589px;}
.ws8f{word-spacing:170.024869px;}
.ws104{word-spacing:187.736884px;}
.wse7{word-spacing:198.471438px;}
.wsc3{word-spacing:229.457646px;}
.ws92{word-spacing:294.807518px;}
._25{margin-left:-8.091257px;}
._6{margin-left:-6.412587px;}
._2{margin-left:-5.371205px;}
._5{margin-left:-3.726985px;}
._1{margin-left:-2.685602px;}
._3{margin-left:-1.259614px;}
._e{width:1.045310px;}
._4{width:2.080205px;}
._17{width:3.876164px;}
._3f{width:5.739775px;}
._40{width:7.410857px;}
._41{width:11.920492px;}
._5a{width:14.251163px;}
._1d{width:16.230777px;}
._1e{width:17.740160px;}
._28{width:19.049252px;}
._29{width:20.094562px;}
._16{width:21.274709px;}
._26{width:22.841692px;}
._1b{width:24.809257px;}
._46{width:26.116385px;}
._11{width:27.231077px;}
._c{width:28.472751px;}
._1f{width:29.853189px;}
._d{width:31.219880px;}
._15{width:32.616295px;}
._a{width:33.645628px;}
._13{width:35.083666px;}
._23{width:36.593049px;}
._9{width:37.832759px;}
._43{width:39.076396px;}
._f{width:40.254579px;}
._0{width:41.936714px;}
._7{width:44.150427px;}
._1a{width:45.883675px;}
._1c{width:46.930948px;}
._45{width:48.960041px;}
._27{width:51.007073px;}
._2a{width:52.496553px;}
._b{width:53.871100px;}
._14{width:55.243682px;}
._20{width:56.882011px;}
._21{width:58.387467px;}
._59{width:59.631104px;}
._12{width:61.660197px;}
._10{width:62.711398px;}
._8{width:66.728886px;}
._4e{width:70.395977px;}
._2d{width:71.738242px;}
._5d{width:73.112788px;}
._4d{width:76.123700px;}
._19{width:77.238392px;}
._22{width:79.269448px;}
._18{width:80.640067px;}
._44{width:85.618544px;}
._5b{width:94.385533px;}
._24{width:96.836850px;}
._42{width:99.687356px;}
._5c{width:102.698267px;}
._3d{width:105.185542px;}
._4b{width:123.880444px;}
._50{width:131.172982px;}
._51{width:148.909215px;}
._3e{width:150.218307px;}
._3b{width:157.221949px;}
._3c{width:162.261953px;}
._55{width:169.067268px;}
._57{width:201.274859px;}
._4a{width:204.740025px;}
._54{width:224.674103px;}
._52{width:233.345649px;}
._47{width:237.467325px;}
._4f{width:248.085313px;}
._56{width:251.020355px;}
._58{width:260.773090px;}
._48{width:262.603855px;}
._53{width:268.298405px;}
._4c{width:280.800234px;}
._38{width:307.965857px;}
._2f{width:313.001933px;}
._49{width:314.445862px;}
._31{width:328.469123px;}
._30{width:348.678618px;}
._35{width:362.489539px;}
._2e{width:394.574341px;}
._39{width:406.671394px;}
._36{width:419.042313px;}
._34{width:421.216657px;}
._37{width:453.927651px;}
._3a{width:459.885983px;}
._32{width:489.927681px;}
._33{width:505.178603px;}
._2c{width:543.404089px;}
._2b{width:646.429630px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y43{bottom:63.168000px;}
.y25{bottom:108.000000px;}
.yfa{bottom:117.966000px;}
.y24{bottom:128.323500px;}
.yc2{bottom:131.023500px;}
.yf9{bottom:138.289500px;}
.y9c{bottom:148.243500px;}
.y23{bottom:148.647000px;}
.y68{bottom:148.648500px;}
.yc1{bottom:151.348500px;}
.yd2{bottom:157.279500px;}
.yf8{bottom:158.613000px;}
.y12d{bottom:161.052000px;}
.y42{bottom:165.138000px;}
.y9b{bottom:168.567000px;}
.y22{bottom:168.972000px;}
.yf2{bottom:169.561500px;}
.y10d{bottom:179.539500px;}
.y12c{bottom:181.377000px;}
.y41{bottom:185.463000px;}
.y14b{bottom:185.862000px;}
.y16f{bottom:186.082500px;}
.yc0{bottom:186.121500px;}
.y19b{bottom:186.240000px;}
.yd1{bottom:188.172000px;}
.y9a{bottom:188.890500px;}
.y21{bottom:189.295500px;}
.yf1{bottom:189.885000px;}
.y12b{bottom:201.700500px;}
.y40{bottom:205.786500px;}
.y14a{bottom:206.185500px;}
.y16e{bottom:206.406000px;}
.ybf{bottom:206.445000px;}
.y19a{bottom:206.563500px;}
.y1b5{bottom:208.078500px;}
.y67{bottom:209.619000px;}
.yf0{bottom:210.208500px;}
.y1d0{bottom:220.494000px;}
.y3f{bottom:226.110000px;}
.y149{bottom:226.509000px;}
.y16d{bottom:226.731000px;}
.y20{bottom:229.213500px;}
.y88{bottom:229.942500px;}
.yef{bottom:231.123000px;}
.y97{bottom:231.175500px;}
.y12a{bottom:232.861500px;}
.yd4{bottom:234.769500px;}
.y66{bottom:240.511500px;}
.y10c{bottom:240.613500px;}
.ybe{bottom:241.219500px;}
.y1cf{bottom:241.416000px;}
.yd0{bottom:243.501000px;}
.y199{bottom:245.110500px;}
.y3e{bottom:246.433500px;}
.y16c{bottom:247.054500px;}
.y1b4{bottom:248.518500px;}
.yd3{bottom:255.093000px;}
.y87{bottom:260.835000px;}
.y10b{bottom:260.937000px;}
.ycf{bottom:261.433500px;}
.ybd{bottom:261.543000px;}
.yee{bottom:263.160000px;}
.y148{bottom:263.724000px;}
.y129{bottom:263.754000px;}
.y198{bottom:277.858500px;}
.y1ce{bottom:278.848500px;}
.yce{bottom:279.366000px;}
.y10a{bottom:281.260500px;}
.ybc{bottom:281.866500px;}
.y1b3{bottom:282.000000px;}
.y65{bottom:283.764000px;}
.y147{bottom:284.047500px;}
.y16b{bottom:284.488500px;}
.y128{bottom:284.674500px;}
.y3d{bottom:288.492000px;}
.y1f{bottom:290.742000px;}
.ycd{bottom:297.300000px;}
.y86{bottom:303.423000px;}
.y64{bottom:304.087500px;}
.y146{bottom:304.371000px;}
.y16a{bottom:304.813500px;}
.y96{bottom:307.315500px;}
.y3c{bottom:308.815500px;}
.yed{bottom:310.348500px;}
.y1e{bottom:311.065500px;}
.ycc{bottom:315.232500px;}
.ybb{bottom:316.641000px;}
.y85{bottom:323.748000px;}
.y63{bottom:324.411000px;}
.y169{bottom:325.137000px;}
.y197{bottom:327.133500px;}
.y95{bottom:327.639000px;}
.y127{bottom:328.002000px;}
.y3b{bottom:329.139000px;}
.yec{bottom:330.672000px;}
.y1cd{bottom:331.306500px;}
.y1d{bottom:331.389000px;}
.y1b2{bottom:333.439500px;}
.yba{bottom:336.964500px;}
.ycb{bottom:337.879500px;}
.y145{bottom:341.586000px;}
.y84{bottom:344.071500px;}
.y62{bottom:344.736000px;}
.y168{bottom:345.460500px;}
.y196{bottom:347.457000px;}
.y94{bottom:347.962500px;}
.y126{bottom:348.325500px;}
.y3a{bottom:349.462500px;}
.yeb{bottom:350.997000px;}
.y1c{bottom:351.712500px;}
.y1b1{bottom:353.763000px;}
.y144{bottom:361.909500px;}
.y61{bottom:365.059500px;}
.y1cc{bottom:365.712000px;}
.y167{bottom:365.784000px;}
.y195{bottom:367.780500px;}
.y93{bottom:368.286000px;}
.y125{bottom:368.649000px;}
.yca{bottom:368.763000px;}
.y39{bottom:369.787500px;}
.y83{bottom:371.317500px;}
.yea{bottom:371.320500px;}
.y1b{bottom:372.037500px;}
.y1b0{bottom:374.086500px;}
.yb9{bottom:376.471500px;}
.y143{bottom:382.233000px;}
.y60{bottom:385.383000px;}
.y194{bottom:388.104000px;}
.y92{bottom:388.611000px;}
.y124{bottom:388.972500px;}
.y38{bottom:390.111000px;}
.y82{bottom:391.641000px;}
.ye9{bottom:391.644000px;}
.y1a{bottom:392.361000px;}
.y1cb{bottom:400.116000px;}
.yc9{bottom:401.505000px;}
.y166{bottom:404.091000px;}
.y5f{bottom:405.706500px;}
.yb8{bottom:407.850000px;}
.y91{bottom:408.934500px;}
.y123{bottom:409.297500px;}
.yf7{bottom:410.304000px;}
.y37{bottom:410.434500px;}
.y19{bottom:412.684500px;}
.y1af{bottom:413.193000px;}
.y142{bottom:414.796500px;}
.yc8{bottom:419.437500px;}
.y81{bottom:422.803500px;}
.ye8{bottom:423.681000px;}
.y193{bottom:425.697000px;}
.y5e{bottom:426.030000px;}
.y122{bottom:429.621000px;}
.yf6{bottom:430.627500px;}
.y36{bottom:430.758000px;}
.y18{bottom:433.008000px;}
.y1ca{bottom:434.520000px;}
.yc7{bottom:437.371500px;}
.y80{bottom:443.128500px;}
.y192{bottom:446.020500px;}
.y5d{bottom:446.355000px;}
.y121{bottom:449.944500px;}
.y90{bottom:450.814500px;}
.y35{bottom:451.842000px;}
.yb7{bottom:453.097500px;}
.y17{bottom:453.331500px;}
.y1ae{bottom:453.633000px;}
.yc6{bottom:455.304000px;}
.y165{bottom:460.881000px;}
.y141{bottom:463.531500px;}
.y1c9{bottom:465.718500px;}
.y5c{bottom:466.678500px;}
.y120{bottom:470.268000px;}
.ye7{bottom:470.871000px;}
.y34{bottom:472.165500px;}
.yc5{bottom:473.236500px;}
.yb6{bottom:473.421000px;}
.y16{bottom:473.655000px;}
.y7f{bottom:474.291000px;}
.y164{bottom:481.204500px;}
.y140{bottom:483.856500px;}
.y191{bottom:484.567500px;}
.y5b{bottom:487.002000px;}
.y1ad{bottom:487.116000px;}
.ye6{bottom:491.194500px;}
.y33{bottom:492.490500px;}
.yb5{bottom:493.746000px;}
.y15{bottom:493.980000px;}
.y7e{bottom:494.614500px;}
.yc4{bottom:495.885000px;}
.y11f{bottom:501.160500px;}
.y163{bottom:501.528000px;}
.y5a{bottom:507.325500px;}
.y1c8{bottom:510.439500px;}
.y32{bottom:512.814000px;}
.y14{bottom:514.303500px;}
.y190{bottom:517.314000px;}
.y162{bottom:521.851500px;}
.y7d{bottom:521.860500px;}
.y11e{bottom:522.081000px;}
.yc3{bottom:526.767000px;}
.y8f{bottom:526.954500px;}
.ye5{bottom:527.326500px;}
.y59{bottom:527.649000px;}
.yb4{bottom:530.760000px;}
.y1c7{bottom:530.763000px;}
.y13f{bottom:530.875500px;}
.y31{bottom:533.137500px;}
.y13{bottom:534.627000px;}
.y1ac{bottom:538.554000px;}
.y8e{bottom:547.278000px;}
.ye4{bottom:547.650000px;}
.y7c{bottom:549.106500px;}
.y1c6{bottom:551.086500px;}
.y13e{bottom:551.199000px;}
.y109{bottom:551.850000px;}
.y30{bottom:553.461000px;}
.y12{bottom:554.950500px;}
.yb3{bottom:557.659500px;}
.y58{bottom:558.541500px;}
.y1ab{bottom:558.877500px;}
.y11d{bottom:559.207500px;}
.y161{bottom:560.158500px;}
.y18f{bottom:566.589000px;}
.y8d{bottom:567.601500px;}
.y7b{bottom:569.431500px;}
.y13d{bottom:571.522500px;}
.y2f{bottom:573.784500px;}
.y11{bottom:575.274000px;}
.y1aa{bottom:579.201000px;}
.y108{bottom:580.390500px;}
.ye3{bottom:583.782000px;}
.y1c5{bottom:585.490500px;}
.y18e{bottom:586.912500px;}
.y13c{bottom:591.847500px;}
.y2e{bottom:594.109500px;}
.y10{bottom:595.599000px;}
.y57{bottom:595.668000px;}
.y7a{bottom:600.594000px;}
.y107{bottom:600.714000px;}
.ye2{bottom:604.105500px;}
.y18d{bottom:607.237500px;}
.y8c{bottom:609.481500px;}
.y11c{bottom:610.273500px;}
.yb2{bottom:614.209500px;}
.y2d{bottom:614.433000px;}
.yf{bottom:615.922500px;}
.y160{bottom:616.948500px;}
.y1a9{bottom:618.307500px;}
.y1c4{bottom:620.052000px;}
.y13b{bottom:620.386500px;}
.y79{bottom:620.917500px;}
.y106{bottom:621.037500px;}
.y18c{bottom:627.561000px;}
.y11b{bottom:630.597000px;}
.yb1{bottom:634.533000px;}
.y2c{bottom:635.517000px;}
.ye{bottom:636.246000px;}
.y15f{bottom:637.272000px;}
.y17f{bottom:637.360500px;}
.ye1{bottom:640.237500px;}
.y13a{bottom:641.995500px;}
.y56{bottom:646.659000px;}
.y105{bottom:649.578000px;}
.y99{bottom:650.382000px;}
.y1c3{bottom:651.250500px;}
.y78{bottom:652.080000px;}
.yb0{bottom:654.856500px;}
.y2b{bottom:655.840500px;}
.yd{bottom:656.569500px;}
.y15e{bottom:657.595500px;}
.y17e{bottom:657.684000px;}
.y1a8{bottom:658.747500px;}
.y11a{bottom:661.758000px;}
.y139{bottom:662.320500px;}
.y18b{bottom:665.152500px;}
.y55{bottom:666.982500px;}
.y8b{bottom:667.120500px;}
.y98{bottom:670.707000px;}
.y1c2{bottom:672.172500px;}
.ye0{bottom:672.274500px;}
.y77{bottom:672.403500px;}
.y104{bottom:674.368500px;}
.yaf{bottom:675.181500px;}
.y2a{bottom:676.164000px;}
.yc{bottom:676.893000px;}
.y15d{bottom:677.919000px;}
.y17d{bottom:678.007500px;}
.y119{bottom:682.083000px;}
.y18a{bottom:685.477500px;}
.y54{bottom:687.307500px;}
.y8a{bottom:687.444000px;}
.y1a7{bottom:692.230500px;}
.y103{bottom:694.692000px;}
.yae{bottom:695.505000px;}
.y29{bottom:696.487500px;}
.yb{bottom:697.218000px;}
.y17c{bottom:698.331000px;}
.y15c{bottom:699.159000px;}
.y76{bottom:703.566000px;}
.y53{bottom:707.631000px;}
.y89{bottom:707.767500px;}
.ydf{bottom:710.547000px;}
.y138{bottom:711.462000px;}
.y118{bottom:714.811500px;}
.yad{bottom:715.828500px;}
.y28{bottom:716.812500px;}
.y1c1{bottom:716.893500px;}
.ya{bottom:717.541500px;}
.y15b{bottom:719.482500px;}
.y75{bottom:723.889500px;}
.y189{bottom:724.024500px;}
.y52{bottom:727.954500px;}
.y17b{bottom:732.105000px;}
.yac{bottom:736.152000px;}
.y27{bottom:737.136000px;}
.y1c0{bottom:737.217000px;}
.y9{bottom:737.865000px;}
.y15a{bottom:739.806000px;}
.y102{bottom:742.417500px;}
.y1a6{bottom:743.668500px;}
.y137{bottom:744.025500px;}
.y117{bottom:747.540000px;}
.y51{bottom:748.278000px;}
.y74{bottom:751.137000px;}
.y17a{bottom:752.428500px;}
.yab{bottom:756.475500px;}
.y188{bottom:756.771000px;}
.y26{bottom:757.459500px;}
.y1bf{bottom:757.540500px;}
.y159{bottom:760.129500px;}
.y101{bottom:762.741000px;}
.y1a5{bottom:763.993500px;}
.yde{bottom:765.474000px;}
.y50{bottom:768.601500px;}
.yaa{bottom:776.800500px;}
.y8{bottom:777.783000px;}
.y1be{bottom:777.864000px;}
.y116{bottom:778.701000px;}
.y158{bottom:780.454500px;}
.y73{bottom:782.028000px;}
.y100{bottom:783.064500px;}
.y1a4{bottom:784.317000px;}
.ydd{bottom:785.799000px;}
.y179{bottom:786.201000px;}
.y136{bottom:792.760500px;}
.ya9{bottom:797.124000px;}
.y157{bottom:800.778000px;}
.y4f{bottom:803.254500px;}
.yff{bottom:803.388000px;}
.y1a3{bottom:804.640500px;}
.y187{bottom:806.046000px;}
.y178{bottom:806.526000px;}
.yf5{bottom:808.672500px;}
.y115{bottom:809.593500px;}
.y1bd{bottom:812.268000px;}
.y135{bottom:813.085500px;}
.ya8{bottom:817.447500px;}
.y72{bottom:819.154500px;}
.y156{bottom:821.101500px;}
.ydc{bottom:821.931000px;}
.y4e{bottom:823.578000px;}
.y1a2{bottom:824.964000px;}
.y186{bottom:826.369500px;}
.yf4{bottom:828.997500px;}
.yfe{bottom:834.280500px;}
.y7{bottom:836.700000px;}
.ya7{bottom:837.771000px;}
.y177{bottom:840.298500px;}
.ydb{bottom:842.254500px;}
.y155{bottom:842.340000px;}
.y4d{bottom:843.903000px;}
.y185{bottom:846.693000px;}
.y1bc{bottom:846.831000px;}
.yf3{bottom:849.321000px;}
.y134{bottom:850.299000px;}
.y114{bottom:852.919500px;}
.ya6{bottom:858.094500px;}
.y1a1{bottom:858.447000px;}
.y176{bottom:860.622000px;}
.y154{bottom:862.665000px;}
.y71{bottom:869.482500px;}
.y133{bottom:870.622500px;}
.y113{bottom:873.243000px;}
.y6{bottom:873.288000px;}
.y4c{bottom:876.474000px;}
.y1bb{bottom:878.029500px;}
.yda{bottom:878.386500px;}
.ya5{bottom:878.418000px;}
.y153{bottom:882.988500px;}
.y184{bottom:884.286000px;}
.y70{bottom:889.806000px;}
.yfd{bottom:890.526000px;}
.y112{bottom:893.566500px;}
.y5{bottom:894.208500px;}
.y175{bottom:894.396000px;}
.y4b{bottom:896.799000px;}
.yd9{bottom:898.710000px;}
.ya4{bottom:898.743000px;}
.y152{bottom:903.312000px;}
.y132{bottom:907.837500px;}
.y1a0{bottom:909.885000px;}
.y6f{bottom:910.129500px;}
.y174{bottom:914.719500px;}
.y4{bottom:915.130500px;}
.y4a{bottom:917.122500px;}
.ya3{bottom:919.066500px;}
.y1ba{bottom:922.749000px;}
.y183{bottom:922.833000px;}
.y151{bottom:923.635500px;}
.y111{bottom:924.729000px;}
.y131{bottom:928.161000px;}
.y19f{bottom:930.208500px;}
.y6e{bottom:930.453000px;}
.yd8{bottom:934.842000px;}
.y3{bottom:936.052500px;}
.y49{bottom:937.446000px;}
.ya2{bottom:939.390000px;}
.y1b9{bottom:943.074000px;}
.y150{bottom:943.959000px;}
.y130{bottom:948.484500px;}
.y173{bottom:948.493500px;}
.y19e{bottom:950.532000px;}
.y6d{bottom:950.776500px;}
.y182{bottom:955.579500px;}
.y110{bottom:957.457500px;}
.ya1{bottom:959.713500px;}
.y1b8{bottom:963.397500px;}
.y14f{bottom:964.284000px;}
.y172{bottom:968.817000px;}
.y48{bottom:970.018500px;}
.yd7{bottom:970.974000px;}
.y1d2{bottom:971.100000px;}
.y6c{bottom:971.101500px;}
.ya0{bottom:980.037000px;}
.y2{bottom:981.519000px;}
.y14e{bottom:984.607500px;}
.y12f{bottom:985.699500px;}
.y171{bottom:989.140500px;}
.y19d{bottom:989.640000px;}
.y10f{bottom:990.186000px;}
.y47{bottom:990.342000px;}
.y6b{bottom:991.425000px;}
.y1b7{bottom:997.801500px;}
.y9f{bottom:1000.362000px;}
.y181{bottom:1004.854500px;}
.y14d{bottom:1004.931000px;}
.yd6{bottom:1007.106000px;}
.yfc{bottom:1008.577500px;}
.y170{bottom:1009.464000px;}
.y10e{bottom:1010.509500px;}
.y46{bottom:1010.665500px;}
.y6a{bottom:1011.748500px;}
.y1{bottom:1014.396000px;}
.y12e{bottom:1022.914500px;}
.y180{bottom:1025.178000px;}
.y14c{bottom:1025.254500px;}
.y9e{bottom:1028.901000px;}
.y19c{bottom:1030.078500px;}
.y45{bottom:1030.989000px;}
.y1b6{bottom:1032.363000px;}
.yfb{bottom:1033.368000px;}
.y1d1{bottom:1042.639500px;}
.y69{bottom:1042.641000px;}
.yd5{bottom:1043.238000px;}
.y9d{bottom:1053.693000px;}
.y44{bottom:1063.561500px;}
.h9{height:41.484266px;}
.h3{height:44.832000px;}
.h8{height:45.425492px;}
.h5{height:49.090950px;}
.hb{height:49.092000px;}
.h2{height:51.216077px;}
.h7{height:53.798400px;}
.ha{height:56.786820px;}
.h6{height:62.181870px;}
.h4{height:64.557900px;}
.h1{height:73.027727px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:108.000000px;}
.x24{left:116.182500px;}
.x22{left:118.330500px;}
.x1{left:119.913000px;}
.xe{left:124.410000px;}
.xd{left:140.727000px;}
.x16{left:144.313500px;}
.x28{left:158.208000px;}
.x20{left:176.251500px;}
.x21{left:180.343500px;}
.x11{left:181.887000px;}
.x10{left:185.250000px;}
.x1e{left:267.858665px;}
.x4{left:275.151000px;}
.x1f{left:289.588938px;}
.x5{left:320.581500px;}
.x2{left:364.027500px;}
.x6{left:366.721500px;}
.x3{left:394.327500px;}
.x7{left:400.593000px;}
.x27{left:450.817500px;}
.xc{left:454.909500px;}
.x12{left:460.980000px;}
.x9{left:466.471500px;}
.x1a{left:467.779500px;}
.x15{left:472.320000px;}
.x23{left:474.654000px;}
.x19{left:480.918000px;}
.xa{left:482.835000px;}
.x17{left:485.122500px;}
.x1b{left:497.704500px;}
.xb{left:499.199332px;}
.x18{left:504.915000px;}
.xf{left:512.424000px;}
.x26{left:516.679500px;}
.x25{left:527.659500px;}
.x1c{left:589.651000px;}
.x1d{left:599.063020px;}
.x13{left:705.630000px;}
.x14{left:709.722000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:43.637333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:4.782048pt;}
.ls9{letter-spacing:4.888316pt;}
.lsa{letter-spacing:5.100851pt;}
.lsc{letter-spacing:5.153985pt;}
.ls6{letter-spacing:15.650922pt;}
.ls11{letter-spacing:16.116377pt;}
.ls5{letter-spacing:16.174559pt;}
.lsf{letter-spacing:16.290923pt;}
.ls4{letter-spacing:16.581832pt;}
.ls1{letter-spacing:19.374562pt;}
.ls10{letter-spacing:19.388555pt;}
.ls3{letter-spacing:25.250930pt;}
.lse{letter-spacing:26.065476pt;}
.ls2{letter-spacing:37.585486pt;}
.lsb{letter-spacing:39.053392pt;}
.ls8{letter-spacing:82.152796pt;}
.ls7{letter-spacing:326.516636pt;}
.wsa1{word-spacing:-32.996131pt;}
.ws9f{word-spacing:-32.783596pt;}
.wsa9{word-spacing:-32.677328pt;}
.ws28{word-spacing:-30.545480pt;}
.wsa5{word-spacing:-27.895280pt;}
.wsff{word-spacing:-23.910333pt;}
.wsa2{word-spacing:-20.244003pt;}
.wsaa{word-spacing:-20.137735pt;}
.ws65{word-spacing:-19.925333pt;}
.wsa8{word-spacing:-19.553263pt;}
.wsaf{word-spacing:-18.583288pt;}
.ws1a{word-spacing:-16.162923pt;}
.ws11f{word-spacing:-11.752737pt;}
.ws9e{word-spacing:-11.170918pt;}
.ws98{word-spacing:-11.112737pt;}
.ws9c{word-spacing:-8.553467pt;}
.ws84{word-spacing:-3.106912pt;}
.ws4a{word-spacing:-2.897457pt;}
.ws77{word-spacing:-2.839275pt;}
.ws35{word-spacing:-2.664729pt;}
.wsf3{word-spacing:-2.373820pt;}
.ws120{word-spacing:-2.141093pt;}
.wsc1{word-spacing:-2.024729pt;}
.ws36{word-spacing:-1.966547pt;}
.wsd2{word-spacing:-1.792001pt;}
.wsdc{word-spacing:-1.617456pt;}
.ws90{word-spacing:-1.559274pt;}
.ws10f{word-spacing:-1.501092pt;}
.ws10b{word-spacing:-1.442910pt;}
.ws5a{word-spacing:-0.896001pt;}
.ws19{word-spacing:-0.861092pt;}
.ws59{word-spacing:-0.837819pt;}
.wsdf{word-spacing:-0.744728pt;}
.wsec{word-spacing:-0.663273pt;}
.ws83{word-spacing:-0.628364pt;}
.wsf7{word-spacing:-0.605091pt;}
.wse1{word-spacing:-0.570182pt;}
.ws70{word-spacing:-0.512000pt;}
.wsfd{word-spacing:-0.453819pt;}
.ws113{word-spacing:-0.337455pt;}
.ws8d{word-spacing:-0.279273pt;}
.wsc4{word-spacing:-0.104727pt;}
.ws3f{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.011636pt;}
.wsd6{word-spacing:0.244364pt;}
.wscb{word-spacing:0.302546pt;}
.ws7a{word-spacing:0.360728pt;}
.wsca{word-spacing:0.384000pt;}
.ws5c{word-spacing:0.500364pt;}
.wsba{word-spacing:0.651637pt;}
.ws18{word-spacing:0.709819pt;}
.ws7b{word-spacing:0.791273pt;}
.ws4{word-spacing:0.826183pt;}
.ws6c{word-spacing:1.117092pt;}
.wsc7{word-spacing:1.221819pt;}
.ws12{word-spacing:1.582547pt;}
.ws25{word-spacing:1.640729pt;}
.wse{word-spacing:1.698911pt;}
.ws13{word-spacing:1.780365pt;}
.wsa7{word-spacing:1.806551pt;}
.ws4d{word-spacing:1.873456pt;}
.ws89{word-spacing:1.931638pt;}
.ws37{word-spacing:2.106184pt;}
.ws63{word-spacing:2.222547pt;}
.ws68{word-spacing:2.280729pt;}
.wsa4{word-spacing:2.284756pt;}
.ws7d{word-spacing:2.397093pt;}
.ws10d{word-spacing:2.513457pt;}
.ws5e{word-spacing:2.629820pt;}
.ws58{word-spacing:2.688002pt;}
.ws5d{word-spacing:2.920730pt;}
.ws31{word-spacing:3.211639pt;}
.ws50{word-spacing:3.269821pt;}
.ws56{word-spacing:3.293094pt;}
.wsd3{word-spacing:3.328003pt;}
.wsc9{word-spacing:3.444367pt;}
.ws4f{word-spacing:3.560730pt;}
.ws102{word-spacing:3.618912pt;}
.ws3c{word-spacing:3.677094pt;}
.wsbd{word-spacing:3.700367pt;}
.wsae{word-spacing:3.758549pt;}
.wsc{word-spacing:3.909821pt;}
.ws62{word-spacing:3.968003pt;}
.ws52{word-spacing:3.985067pt;}
.wsb9{word-spacing:4.026185pt;}
.ws4e{word-spacing:4.084367pt;}
.wsfe{word-spacing:4.142549pt;}
.ws7e{word-spacing:4.200731pt;}
.ws55{word-spacing:4.224004pt;}
.ws2e{word-spacing:4.491640pt;}
.ws22{word-spacing:4.724368pt;}
.ws51{word-spacing:4.782067pt;}
.ws32{word-spacing:4.782549pt;}
.ws116{word-spacing:4.840731pt;}
.ws8e{word-spacing:5.015277pt;}
.ws42{word-spacing:5.131641pt;}
.wsb8{word-spacing:5.154913pt;}
.ws69{word-spacing:5.306186pt;}
.ws4b{word-spacing:5.364368pt;}
.ws57{word-spacing:5.422550pt;}
.ws54{word-spacing:5.655277pt;}
.wsc0{word-spacing:5.713459pt;}
.ws87{word-spacing:5.736732pt;}
.wsbf{word-spacing:6.120732pt;}
.ws78{word-spacing:6.260369pt;}
.ws49{word-spacing:6.469824pt;}
.wsbe{word-spacing:6.528005pt;}
.ws33{word-spacing:6.644369pt;}
.wsc2{word-spacing:6.702551pt;}
.wsf0{word-spacing:6.725824pt;}
.ws76{word-spacing:6.760733pt;}
.ws91{word-spacing:6.877097pt;}
.ws11a{word-spacing:6.918076pt;}
.wsd{word-spacing:6.935279pt;}
.ws8c{word-spacing:7.051642pt;}
.ws6a{word-spacing:7.226188pt;}
.ws7f{word-spacing:7.342552pt;}
.ws1e{word-spacing:7.400733pt;}
.ws29{word-spacing:7.458915pt;}
.wsbb{word-spacing:7.598552pt;}
.ws5f{word-spacing:7.633461pt;}
.wsac{word-spacing:7.691643pt;}
.wsed{word-spacing:7.749825pt;}
.ws11d{word-spacing:7.808007pt;}
.ws6f{word-spacing:7.866188pt;}
.wsb{word-spacing:7.982552pt;}
.ws11{word-spacing:8.040734pt;}
.ws88{word-spacing:8.098916pt;}
.ws30{word-spacing:8.157098pt;}
.ws11c{word-spacing:8.215280pt;}
.ws81{word-spacing:8.296734pt;}
.wsc8{word-spacing:8.331643pt;}
.wsf4{word-spacing:8.448007pt;}
.ws34{word-spacing:8.506189pt;}
.wsb7{word-spacing:8.913462pt;}
.ws4c{word-spacing:8.971644pt;}
.ws1c{word-spacing:9.029826pt;}
.ws16{word-spacing:9.204371pt;}
.wsf8{word-spacing:9.262553pt;}
.ws95{word-spacing:9.296338pt;}
.ws10a{word-spacing:9.437099pt;}
.ws2f{word-spacing:9.669826pt;}
.ws97{word-spacing:9.728008pt;}
.ws1d{word-spacing:9.786190pt;}
.ws8b{word-spacing:9.902554pt;}
.wscf{word-spacing:9.960736pt;}
.ws79{word-spacing:10.077099pt;}
.wsb6{word-spacing:10.216736pt;}
.wsa{word-spacing:10.251645pt;}
.ws24{word-spacing:10.309827pt;}
.wsf2{word-spacing:10.542554pt;}
.wsf{word-spacing:10.658918pt;}
.ws82{word-spacing:10.775282pt;}
.wsf5{word-spacing:10.891645pt;}
.ws67{word-spacing:10.949827pt;}
.ws114{word-spacing:11.066191pt;}
.wsa0{word-spacing:11.158112pt;}
.ws1f{word-spacing:11.531646pt;}
.ws27{word-spacing:11.648010pt;}
.wscd{word-spacing:11.822555pt;}
.ws111{word-spacing:11.955200pt;}
.wsce{word-spacing:11.962192pt;}
.ws26{word-spacing:11.997101pt;}
.ws43{word-spacing:12.113465pt;}
.wsfc{word-spacing:12.229828pt;}
.wsf6{word-spacing:12.404374pt;}
.ws53{word-spacing:12.462556pt;}
.wsc5{word-spacing:12.520738pt;}
.ws21{word-spacing:12.578920pt;}
.ws5b{word-spacing:12.637101pt;}
.wsb1{word-spacing:12.695283pt;}
.ws6d{word-spacing:12.753465pt;}
.wsd9{word-spacing:12.869829pt;}
.ws14{word-spacing:12.928011pt;}
.ws118{word-spacing:13.294182pt;}
.ws93{word-spacing:13.434973pt;}
.wsa3{word-spacing:13.974207pt;}
.wsfb{word-spacing:13.975284pt;}
.wsd1{word-spacing:13.995554pt;}
.ws7{word-spacing:14.208012pt;}
.ws61{word-spacing:14.324376pt;}
.ws85{word-spacing:14.382557pt;}
.wsa6{word-spacing:14.399278pt;}
.ws20{word-spacing:14.615285pt;}
.wsb0{word-spacing:14.638558pt;}
.ws9{word-spacing:14.673467pt;}
.wsd4{word-spacing:14.848012pt;}
.wsd8{word-spacing:14.871285pt;}
.wsf1{word-spacing:14.906194pt;}
.wsda{word-spacing:14.929467pt;}
.ws6{word-spacing:14.964376pt;}
.ws41{word-spacing:15.080740pt;}
.ws71{word-spacing:15.138922pt;}
.ws39{word-spacing:15.313467pt;}
.ws8a{word-spacing:15.371649pt;}
.ws8{word-spacing:15.429831pt;}
.wsc6{word-spacing:15.604377pt;}
.ws117{word-spacing:15.837104pt;}
.ws119{word-spacing:16.116377pt;}
.wse8{word-spacing:16.186195pt;}
.ws10{word-spacing:16.302559pt;}
.wse0{word-spacing:16.384014pt;}
.wsbc{word-spacing:16.477105pt;}
.ws86{word-spacing:16.500377pt;}
.ws2b{word-spacing:16.768014pt;}
.ws15{word-spacing:16.826196pt;}
.wsdb{word-spacing:17.140378pt;}
.ws2d{word-spacing:17.233469pt;}
.ws105{word-spacing:17.349833pt;}
.ws40{word-spacing:17.373105pt;}
.ws38{word-spacing:17.605833pt;}
.ws17{word-spacing:17.757106pt;}
.ws75{word-spacing:17.815288pt;}
.ws45{word-spacing:18.106197pt;}
.ws5{word-spacing:18.455288pt;}
.ws2c{word-spacing:18.513470pt;}
.ws3{word-spacing:18.571652pt;}
.ws60{word-spacing:18.862561pt;}
.ws96{word-spacing:19.095289pt;}
.ws3b{word-spacing:19.735289pt;}
.wsd5{word-spacing:19.851653pt;}
.ws74{word-spacing:20.491653pt;}
.ws10c{word-spacing:20.712745pt;}
.ws2{word-spacing:20.722347pt;}
.ws44{word-spacing:20.805836pt;}
.wsde{word-spacing:21.248018pt;}
.ws3e{word-spacing:21.480745pt;}
.wseb{word-spacing:21.597109pt;}
.wsad{word-spacing:22.353473pt;}
.ws73{word-spacing:22.760746pt;}
.ws11e{word-spacing:23.304670pt;}
.wse2{word-spacing:23.400747pt;}
.wsd0{word-spacing:24.157111pt;}
.wsdd{word-spacing:24.471293pt;}
.ws80{word-spacing:24.738930pt;}
.ws115{word-spacing:24.797112pt;}
.ws2a{word-spacing:25.553476pt;}
.ws23{word-spacing:27.008023pt;}
.ws1{word-spacing:27.544640pt;}
.ws0{word-spacing:27.636455pt;}
.wsb3{word-spacing:28.055296pt;}
.wsb5{word-spacing:28.485842pt;}
.ws47{word-spacing:28.602206pt;}
.ws3a{word-spacing:28.753479pt;}
.wscc{word-spacing:28.928024pt;}
.ws3d{word-spacing:29.416752pt;}
.ws103{word-spacing:29.451661pt;}
.ws107{word-spacing:29.509843pt;}
.ws11b{word-spacing:30.266207pt;}
.wsf9{word-spacing:30.789844pt;}
.ws72{word-spacing:31.778936pt;}
.ws110{word-spacing:32.069845pt;}
.ws10e{word-spacing:32.186209pt;}
.wsb2{word-spacing:32.325845pt;}
.ws46{word-spacing:32.418936pt;}
.ws6b{word-spacing:32.826209pt;}
.wsab{word-spacing:34.629847pt;}
.ws112{word-spacing:35.909848pt;}
.ws9d{word-spacing:36.666212pt;}
.ws108{word-spacing:38.062577pt;}
.wsd7{word-spacing:38.798609pt;}
.wsee{word-spacing:40.354943pt;}
.ws66{word-spacing:43.240763pt;}
.wse3{word-spacing:47.104039pt;}
.ws6e{word-spacing:49.640769pt;}
.ws109{word-spacing:50.862588pt;}
.wsb4{word-spacing:51.805867pt;}
.ws48{word-spacing:52.957135pt;}
.ws9b{word-spacing:57.029866pt;}
.wse9{word-spacing:58.391321pt;}
.ws1b{word-spacing:62.166867pt;}
.ws99{word-spacing:62.382597pt;}
.ws9a{word-spacing:62.557143pt;}
.ws64{word-spacing:69.531443pt;}
.wsef{word-spacing:73.320788pt;}
.ws106{word-spacing:75.124426pt;}
.ws101{word-spacing:80.302612pt;}
.wse6{word-spacing:88.354983pt;}
.wse5{word-spacing:90.135348pt;}
.ws94{word-spacing:92.462623pt;}
.wsea{word-spacing:104.797178pt;}
.ws100{word-spacing:110.149910pt;}
.wse4{word-spacing:111.313547pt;}
.wsfa{word-spacing:142.906301pt;}
.ws8f{word-spacing:151.133217pt;}
.ws104{word-spacing:166.877230pt;}
.wse7{word-spacing:176.419056pt;}
.wsc3{word-spacing:203.962352pt;}
.ws92{word-spacing:262.051127pt;}
._25{margin-left:-7.192228pt;}
._6{margin-left:-5.700077pt;}
._2{margin-left:-4.774404pt;}
._5{margin-left:-3.312875pt;}
._1{margin-left:-2.387202pt;}
._3{margin-left:-1.119657pt;}
._e{width:0.929164pt;}
._4{width:1.849071pt;}
._17{width:3.445479pt;}
._3f{width:5.102022pt;}
._40{width:6.587429pt;}
._41{width:10.595993pt;}
._5a{width:12.667700pt;}
._1d{width:14.427357pt;}
._1e{width:15.769031pt;}
._28{width:16.932669pt;}
._29{width:17.861833pt;}
._16{width:18.910852pt;}
._26{width:20.303726pt;}
._1b{width:22.052673pt;}
._46{width:23.214565pt;}
._11{width:24.205402pt;}
._c{width:25.309112pt;}
._1f{width:26.536168pt;}
._d{width:27.751005pt;}
._15{width:28.992262pt;}
._a{width:29.907225pt;}
._13{width:31.185481pt;}
._23{width:32.527155pt;}
._9{width:33.629119pt;}
._43{width:34.734574pt;}
._f{width:35.781848pt;}
._0{width:37.277079pt;}
._7{width:39.244824pt;}
._1a{width:40.785489pt;}
._1c{width:41.716398pt;}
._45{width:43.520036pt;}
._27{width:45.339621pt;}
._2a{width:46.663603pt;}
._b{width:47.885422pt;}
._14{width:49.105495pt;}
._20{width:50.561788pt;}
._21{width:51.899971pt;}
._59{width:53.005426pt;}
._12{width:54.809064pt;}
._10{width:55.743465pt;}
._8{width:59.314565pt;}
._4e{width:62.574202pt;}
._2d{width:63.767326pt;}
._5d{width:64.989145pt;}
._4d{width:67.665511pt;}
._19{width:68.656348pt;}
._22{width:70.461732pt;}
._18{width:71.680060pt;}
._44{width:76.105373pt;}
._5b{width:83.898252pt;}
._24{width:86.077200pt;}
._42{width:88.610983pt;}
._5c{width:91.287349pt;}
._3d{width:93.498260pt;}
._4b{width:110.115950pt;}
._50{width:116.598206pt;}
._51{width:132.363747pt;}
._3e{width:133.527384pt;}
._3b{width:139.752844pt;}
._3c{width:144.232847pt;}
._55{width:150.282016pt;}
._57{width:178.910986pt;}
._4a{width:181.991133pt;}
._54{width:199.710314pt;}
._52{width:207.418355pt;}
._47{width:211.082067pt;}
._4f{width:220.520278pt;}
._56{width:223.129204pt;}
._58{width:231.798302pt;}
._48{width:233.425649pt;}
._53{width:238.487471pt;}
._4c{width:249.600208pt;}
._38{width:273.747428pt;}
._2f{width:278.223941pt;}
._49{width:279.507433pt;}
._31{width:291.972554pt;}
._30{width:309.936549pt;}
._35{width:322.212923pt;}
._2e{width:350.732748pt;}
._39{width:361.485683pt;}
._36{width:372.482056pt;}
._34{width:374.414806pt;}
._37{width:403.491245pt;}
._3a{width:408.787541pt;}
._32{width:435.491272pt;}
._33{width:449.047647pt;}
._2c{width:483.025857pt;}
._2b{width:574.604115pt;}
.fs4{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:56.149333pt;}
.y25{bottom:96.000000pt;}
.yfa{bottom:104.858667pt;}
.y24{bottom:114.065333pt;}
.yc2{bottom:116.465333pt;}
.yf9{bottom:122.924000pt;}
.y9c{bottom:131.772000pt;}
.y23{bottom:132.130667pt;}
.y68{bottom:132.132000pt;}
.yc1{bottom:134.532000pt;}
.yd2{bottom:139.804000pt;}
.yf8{bottom:140.989333pt;}
.y12d{bottom:143.157333pt;}
.y42{bottom:146.789333pt;}
.y9b{bottom:149.837333pt;}
.y22{bottom:150.197333pt;}
.yf2{bottom:150.721333pt;}
.y10d{bottom:159.590667pt;}
.y12c{bottom:161.224000pt;}
.y41{bottom:164.856000pt;}
.y14b{bottom:165.210667pt;}
.y16f{bottom:165.406667pt;}
.yc0{bottom:165.441333pt;}
.y19b{bottom:165.546667pt;}
.yd1{bottom:167.264000pt;}
.y9a{bottom:167.902667pt;}
.y21{bottom:168.262667pt;}
.yf1{bottom:168.786667pt;}
.y12b{bottom:179.289333pt;}
.y40{bottom:182.921333pt;}
.y14a{bottom:183.276000pt;}
.y16e{bottom:183.472000pt;}
.ybf{bottom:183.506667pt;}
.y19a{bottom:183.612000pt;}
.y1b5{bottom:184.958667pt;}
.y67{bottom:186.328000pt;}
.yf0{bottom:186.852000pt;}
.y1d0{bottom:195.994667pt;}
.y3f{bottom:200.986667pt;}
.y149{bottom:201.341333pt;}
.y16d{bottom:201.538667pt;}
.y20{bottom:203.745333pt;}
.y88{bottom:204.393333pt;}
.yef{bottom:205.442667pt;}
.y97{bottom:205.489333pt;}
.y12a{bottom:206.988000pt;}
.yd4{bottom:208.684000pt;}
.y66{bottom:213.788000pt;}
.y10c{bottom:213.878667pt;}
.ybe{bottom:214.417333pt;}
.y1cf{bottom:214.592000pt;}
.yd0{bottom:216.445333pt;}
.y199{bottom:217.876000pt;}
.y3e{bottom:219.052000pt;}
.y16c{bottom:219.604000pt;}
.y1b4{bottom:220.905333pt;}
.yd3{bottom:226.749333pt;}
.y87{bottom:231.853333pt;}
.y10b{bottom:231.944000pt;}
.ycf{bottom:232.385333pt;}
.ybd{bottom:232.482667pt;}
.yee{bottom:233.920000pt;}
.y148{bottom:234.421333pt;}
.y129{bottom:234.448000pt;}
.y198{bottom:246.985333pt;}
.y1ce{bottom:247.865333pt;}
.yce{bottom:248.325333pt;}
.y10a{bottom:250.009333pt;}
.ybc{bottom:250.548000pt;}
.y1b3{bottom:250.666667pt;}
.y65{bottom:252.234667pt;}
.y147{bottom:252.486667pt;}
.y16b{bottom:252.878667pt;}
.y128{bottom:253.044000pt;}
.y3d{bottom:256.437333pt;}
.y1f{bottom:258.437333pt;}
.ycd{bottom:264.266667pt;}
.y86{bottom:269.709333pt;}
.y64{bottom:270.300000pt;}
.y146{bottom:270.552000pt;}
.y16a{bottom:270.945333pt;}
.y96{bottom:273.169333pt;}
.y3c{bottom:274.502667pt;}
.yed{bottom:275.865333pt;}
.y1e{bottom:276.502667pt;}
.ycc{bottom:280.206667pt;}
.ybb{bottom:281.458667pt;}
.y85{bottom:287.776000pt;}
.y63{bottom:288.365333pt;}
.y169{bottom:289.010667pt;}
.y197{bottom:290.785333pt;}
.y95{bottom:291.234667pt;}
.y127{bottom:291.557333pt;}
.y3b{bottom:292.568000pt;}
.yec{bottom:293.930667pt;}
.y1cd{bottom:294.494667pt;}
.y1d{bottom:294.568000pt;}
.y1b2{bottom:296.390667pt;}
.yba{bottom:299.524000pt;}
.ycb{bottom:300.337333pt;}
.y145{bottom:303.632000pt;}
.y84{bottom:305.841333pt;}
.y62{bottom:306.432000pt;}
.y168{bottom:307.076000pt;}
.y196{bottom:308.850667pt;}
.y94{bottom:309.300000pt;}
.y126{bottom:309.622667pt;}
.y3a{bottom:310.633333pt;}
.yeb{bottom:311.997333pt;}
.y1c{bottom:312.633333pt;}
.y1b1{bottom:314.456000pt;}
.y144{bottom:321.697333pt;}
.y61{bottom:324.497333pt;}
.y1cc{bottom:325.077333pt;}
.y167{bottom:325.141333pt;}
.y195{bottom:326.916000pt;}
.y93{bottom:327.365333pt;}
.y125{bottom:327.688000pt;}
.yca{bottom:327.789333pt;}
.y39{bottom:328.700000pt;}
.y83{bottom:330.060000pt;}
.yea{bottom:330.062667pt;}
.y1b{bottom:330.700000pt;}
.y1b0{bottom:332.521333pt;}
.yb9{bottom:334.641333pt;}
.y143{bottom:339.762667pt;}
.y60{bottom:342.562667pt;}
.y194{bottom:344.981333pt;}
.y92{bottom:345.432000pt;}
.y124{bottom:345.753333pt;}
.y38{bottom:346.765333pt;}
.y82{bottom:348.125333pt;}
.ye9{bottom:348.128000pt;}
.y1a{bottom:348.765333pt;}
.y1cb{bottom:355.658667pt;}
.yc9{bottom:356.893333pt;}
.y166{bottom:359.192000pt;}
.y5f{bottom:360.628000pt;}
.yb8{bottom:362.533333pt;}
.y91{bottom:363.497333pt;}
.y123{bottom:363.820000pt;}
.yf7{bottom:364.714667pt;}
.y37{bottom:364.830667pt;}
.y19{bottom:366.830667pt;}
.y1af{bottom:367.282667pt;}
.y142{bottom:368.708000pt;}
.yc8{bottom:372.833333pt;}
.y81{bottom:375.825333pt;}
.ye8{bottom:376.605333pt;}
.y193{bottom:378.397333pt;}
.y5e{bottom:378.693333pt;}
.y122{bottom:381.885333pt;}
.yf6{bottom:382.780000pt;}
.y36{bottom:382.896000pt;}
.y18{bottom:384.896000pt;}
.y1ca{bottom:386.240000pt;}
.yc7{bottom:388.774667pt;}
.y80{bottom:393.892000pt;}
.y192{bottom:396.462667pt;}
.y5d{bottom:396.760000pt;}
.y121{bottom:399.950667pt;}
.y90{bottom:400.724000pt;}
.y35{bottom:401.637333pt;}
.yb7{bottom:402.753333pt;}
.y17{bottom:402.961333pt;}
.y1ae{bottom:403.229333pt;}
.yc6{bottom:404.714667pt;}
.y165{bottom:409.672000pt;}
.y141{bottom:412.028000pt;}
.y1c9{bottom:413.972000pt;}
.y5c{bottom:414.825333pt;}
.y120{bottom:418.016000pt;}
.ye7{bottom:418.552000pt;}
.y34{bottom:419.702667pt;}
.yc5{bottom:420.654667pt;}
.yb6{bottom:420.818667pt;}
.y16{bottom:421.026667pt;}
.y7f{bottom:421.592000pt;}
.y164{bottom:427.737333pt;}
.y140{bottom:430.094667pt;}
.y191{bottom:430.726667pt;}
.y5b{bottom:432.890667pt;}
.y1ad{bottom:432.992000pt;}
.ye6{bottom:436.617333pt;}
.y33{bottom:437.769333pt;}
.yb5{bottom:438.885333pt;}
.y15{bottom:439.093333pt;}
.y7e{bottom:439.657333pt;}
.yc4{bottom:440.786667pt;}
.y11f{bottom:445.476000pt;}
.y163{bottom:445.802667pt;}
.y5a{bottom:450.956000pt;}
.y1c8{bottom:453.724000pt;}
.y32{bottom:455.834667pt;}
.y14{bottom:457.158667pt;}
.y190{bottom:459.834667pt;}
.y162{bottom:463.868000pt;}
.y7d{bottom:463.876000pt;}
.y11e{bottom:464.072000pt;}
.yc3{bottom:468.237333pt;}
.y8f{bottom:468.404000pt;}
.ye5{bottom:468.734667pt;}
.y59{bottom:469.021333pt;}
.yb4{bottom:471.786667pt;}
.y1c7{bottom:471.789333pt;}
.y13f{bottom:471.889333pt;}
.y31{bottom:473.900000pt;}
.y13{bottom:475.224000pt;}
.y1ac{bottom:478.714667pt;}
.y8e{bottom:486.469333pt;}
.ye4{bottom:486.800000pt;}
.y7c{bottom:488.094667pt;}
.y1c6{bottom:489.854667pt;}
.y13e{bottom:489.954667pt;}
.y109{bottom:490.533333pt;}
.y30{bottom:491.965333pt;}
.y12{bottom:493.289333pt;}
.yb3{bottom:495.697333pt;}
.y58{bottom:496.481333pt;}
.y1ab{bottom:496.780000pt;}
.y11d{bottom:497.073333pt;}
.y161{bottom:497.918667pt;}
.y18f{bottom:503.634667pt;}
.y8d{bottom:504.534667pt;}
.y7b{bottom:506.161333pt;}
.y13d{bottom:508.020000pt;}
.y2f{bottom:510.030667pt;}
.y11{bottom:511.354667pt;}
.y1aa{bottom:514.845333pt;}
.y108{bottom:515.902667pt;}
.ye3{bottom:518.917333pt;}
.y1c5{bottom:520.436000pt;}
.y18e{bottom:521.700000pt;}
.y13c{bottom:526.086667pt;}
.y2e{bottom:528.097333pt;}
.y10{bottom:529.421333pt;}
.y57{bottom:529.482667pt;}
.y7a{bottom:533.861333pt;}
.y107{bottom:533.968000pt;}
.ye2{bottom:536.982667pt;}
.y18d{bottom:539.766667pt;}
.y8c{bottom:541.761333pt;}
.y11c{bottom:542.465333pt;}
.yb2{bottom:545.964000pt;}
.y2d{bottom:546.162667pt;}
.yf{bottom:547.486667pt;}
.y160{bottom:548.398667pt;}
.y1a9{bottom:549.606667pt;}
.y1c4{bottom:551.157333pt;}
.y13b{bottom:551.454667pt;}
.y79{bottom:551.926667pt;}
.y106{bottom:552.033333pt;}
.y18c{bottom:557.832000pt;}
.y11b{bottom:560.530667pt;}
.yb1{bottom:564.029333pt;}
.y2c{bottom:564.904000pt;}
.ye{bottom:565.552000pt;}
.y15f{bottom:566.464000pt;}
.y17f{bottom:566.542667pt;}
.ye1{bottom:569.100000pt;}
.y13a{bottom:570.662667pt;}
.y56{bottom:574.808000pt;}
.y105{bottom:577.402667pt;}
.y99{bottom:578.117333pt;}
.y1c3{bottom:578.889333pt;}
.y78{bottom:579.626667pt;}
.yb0{bottom:582.094667pt;}
.y2b{bottom:582.969333pt;}
.yd{bottom:583.617333pt;}
.y15e{bottom:584.529333pt;}
.y17e{bottom:584.608000pt;}
.y1a8{bottom:585.553333pt;}
.y11a{bottom:588.229333pt;}
.y139{bottom:588.729333pt;}
.y18b{bottom:591.246667pt;}
.y55{bottom:592.873333pt;}
.y8b{bottom:592.996000pt;}
.y98{bottom:596.184000pt;}
.y1c2{bottom:597.486667pt;}
.ye0{bottom:597.577333pt;}
.y77{bottom:597.692000pt;}
.y104{bottom:599.438667pt;}
.yaf{bottom:600.161333pt;}
.y2a{bottom:601.034667pt;}
.yc{bottom:601.682667pt;}
.y15d{bottom:602.594667pt;}
.y17d{bottom:602.673333pt;}
.y119{bottom:606.296000pt;}
.y18a{bottom:609.313333pt;}
.y54{bottom:610.940000pt;}
.y8a{bottom:611.061333pt;}
.y1a7{bottom:615.316000pt;}
.y103{bottom:617.504000pt;}
.yae{bottom:618.226667pt;}
.y29{bottom:619.100000pt;}
.yb{bottom:619.749333pt;}
.y17c{bottom:620.738667pt;}
.y15c{bottom:621.474667pt;}
.y76{bottom:625.392000pt;}
.y53{bottom:629.005333pt;}
.y89{bottom:629.126667pt;}
.ydf{bottom:631.597333pt;}
.y138{bottom:632.410667pt;}
.y118{bottom:635.388000pt;}
.yad{bottom:636.292000pt;}
.y28{bottom:637.166667pt;}
.y1c1{bottom:637.238667pt;}
.ya{bottom:637.814667pt;}
.y15b{bottom:639.540000pt;}
.y75{bottom:643.457333pt;}
.y189{bottom:643.577333pt;}
.y52{bottom:647.070667pt;}
.y17b{bottom:650.760000pt;}
.yac{bottom:654.357333pt;}
.y27{bottom:655.232000pt;}
.y1c0{bottom:655.304000pt;}
.y9{bottom:655.880000pt;}
.y15a{bottom:657.605333pt;}
.y102{bottom:659.926667pt;}
.y1a6{bottom:661.038667pt;}
.y137{bottom:661.356000pt;}
.y117{bottom:664.480000pt;}
.y51{bottom:665.136000pt;}
.y74{bottom:667.677333pt;}
.y17a{bottom:668.825333pt;}
.yab{bottom:672.422667pt;}
.y188{bottom:672.685333pt;}
.y26{bottom:673.297333pt;}
.y1bf{bottom:673.369333pt;}
.y159{bottom:675.670667pt;}
.y101{bottom:677.992000pt;}
.y1a5{bottom:679.105333pt;}
.yde{bottom:680.421333pt;}
.y50{bottom:683.201333pt;}
.yaa{bottom:690.489333pt;}
.y8{bottom:691.362667pt;}
.y1be{bottom:691.434667pt;}
.y116{bottom:692.178667pt;}
.y158{bottom:693.737333pt;}
.y73{bottom:695.136000pt;}
.y100{bottom:696.057333pt;}
.y1a4{bottom:697.170667pt;}
.ydd{bottom:698.488000pt;}
.y179{bottom:698.845333pt;}
.y136{bottom:704.676000pt;}
.ya9{bottom:708.554667pt;}
.y157{bottom:711.802667pt;}
.y4f{bottom:714.004000pt;}
.yff{bottom:714.122667pt;}
.y1a3{bottom:715.236000pt;}
.y187{bottom:716.485333pt;}
.y178{bottom:716.912000pt;}
.yf5{bottom:718.820000pt;}
.y115{bottom:719.638667pt;}
.y1bd{bottom:722.016000pt;}
.y135{bottom:722.742667pt;}
.ya8{bottom:726.620000pt;}
.y72{bottom:728.137333pt;}
.y156{bottom:729.868000pt;}
.ydc{bottom:730.605333pt;}
.y4e{bottom:732.069333pt;}
.y1a2{bottom:733.301333pt;}
.y186{bottom:734.550667pt;}
.yf4{bottom:736.886667pt;}
.yfe{bottom:741.582667pt;}
.y7{bottom:743.733333pt;}
.ya7{bottom:744.685333pt;}
.y177{bottom:746.932000pt;}
.ydb{bottom:748.670667pt;}
.y155{bottom:748.746667pt;}
.y4d{bottom:750.136000pt;}
.y185{bottom:752.616000pt;}
.y1bc{bottom:752.738667pt;}
.yf3{bottom:754.952000pt;}
.y134{bottom:755.821333pt;}
.y114{bottom:758.150667pt;}
.ya6{bottom:762.750667pt;}
.y1a1{bottom:763.064000pt;}
.y176{bottom:764.997333pt;}
.y154{bottom:766.813333pt;}
.y71{bottom:772.873333pt;}
.y133{bottom:773.886667pt;}
.y113{bottom:776.216000pt;}
.y6{bottom:776.256000pt;}
.y4c{bottom:779.088000pt;}
.y1bb{bottom:780.470667pt;}
.yda{bottom:780.788000pt;}
.ya5{bottom:780.816000pt;}
.y153{bottom:784.878667pt;}
.y184{bottom:786.032000pt;}
.y70{bottom:790.938667pt;}
.yfd{bottom:791.578667pt;}
.y112{bottom:794.281333pt;}
.y5{bottom:794.852000pt;}
.y175{bottom:795.018667pt;}
.y4b{bottom:797.154667pt;}
.yd9{bottom:798.853333pt;}
.ya4{bottom:798.882667pt;}
.y152{bottom:802.944000pt;}
.y132{bottom:806.966667pt;}
.y1a0{bottom:808.786667pt;}
.y6f{bottom:809.004000pt;}
.y174{bottom:813.084000pt;}
.y4{bottom:813.449333pt;}
.y4a{bottom:815.220000pt;}
.ya3{bottom:816.948000pt;}
.y1ba{bottom:820.221333pt;}
.y183{bottom:820.296000pt;}
.y151{bottom:821.009333pt;}
.y111{bottom:821.981333pt;}
.y131{bottom:825.032000pt;}
.y19f{bottom:826.852000pt;}
.y6e{bottom:827.069333pt;}
.yd8{bottom:830.970667pt;}
.y3{bottom:832.046667pt;}
.y49{bottom:833.285333pt;}
.ya2{bottom:835.013333pt;}
.y1b9{bottom:838.288000pt;}
.y150{bottom:839.074667pt;}
.y130{bottom:843.097333pt;}
.y173{bottom:843.105333pt;}
.y19e{bottom:844.917333pt;}
.y6d{bottom:845.134667pt;}
.y182{bottom:849.404000pt;}
.y110{bottom:851.073333pt;}
.ya1{bottom:853.078667pt;}
.y1b8{bottom:856.353333pt;}
.y14f{bottom:857.141333pt;}
.y172{bottom:861.170667pt;}
.y48{bottom:862.238667pt;}
.yd7{bottom:863.088000pt;}
.y1d2{bottom:863.200000pt;}
.y6c{bottom:863.201333pt;}
.ya0{bottom:871.144000pt;}
.y2{bottom:872.461333pt;}
.y14e{bottom:875.206667pt;}
.y12f{bottom:876.177333pt;}
.y171{bottom:879.236000pt;}
.y19d{bottom:879.680000pt;}
.y10f{bottom:880.165333pt;}
.y47{bottom:880.304000pt;}
.y6b{bottom:881.266667pt;}
.y1b7{bottom:886.934667pt;}
.y9f{bottom:889.210667pt;}
.y181{bottom:893.204000pt;}
.y14d{bottom:893.272000pt;}
.yd6{bottom:895.205333pt;}
.yfc{bottom:896.513333pt;}
.y170{bottom:897.301333pt;}
.y10e{bottom:898.230667pt;}
.y46{bottom:898.369333pt;}
.y6a{bottom:899.332000pt;}
.y1{bottom:901.685333pt;}
.y12e{bottom:909.257333pt;}
.y180{bottom:911.269333pt;}
.y14c{bottom:911.337333pt;}
.y9e{bottom:914.578667pt;}
.y19c{bottom:915.625333pt;}
.y45{bottom:916.434667pt;}
.y1b6{bottom:917.656000pt;}
.yfb{bottom:918.549333pt;}
.y1d1{bottom:926.790667pt;}
.y69{bottom:926.792000pt;}
.yd5{bottom:927.322667pt;}
.y9d{bottom:936.616000pt;}
.y44{bottom:945.388000pt;}
.h9{height:36.874903pt;}
.h3{height:39.850667pt;}
.h8{height:40.378215pt;}
.h5{height:43.636400pt;}
.hb{height:43.637333pt;}
.h2{height:45.525402pt;}
.h7{height:47.820800pt;}
.ha{height:50.477173pt;}
.h6{height:55.272773pt;}
.h4{height:57.384800pt;}
.h1{height:64.913535pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.000000pt;}
.x24{left:103.273333pt;}
.x22{left:105.182667pt;}
.x1{left:106.589333pt;}
.xe{left:110.586667pt;}
.xd{left:125.090667pt;}
.x16{left:128.278667pt;}
.x28{left:140.629333pt;}
.x20{left:156.668000pt;}
.x21{left:160.305333pt;}
.x11{left:161.677333pt;}
.x10{left:164.666667pt;}
.x1e{left:238.096591pt;}
.x4{left:244.578667pt;}
.x1f{left:257.412389pt;}
.x5{left:284.961333pt;}
.x2{left:323.580000pt;}
.x6{left:325.974667pt;}
.x3{left:350.513333pt;}
.x7{left:356.082667pt;}
.x27{left:400.726667pt;}
.xc{left:404.364000pt;}
.x12{left:409.760000pt;}
.x9{left:414.641333pt;}
.x1a{left:415.804000pt;}
.x15{left:419.840000pt;}
.x23{left:421.914667pt;}
.x19{left:427.482667pt;}
.xa{left:429.186667pt;}
.x17{left:431.220000pt;}
.x1b{left:442.404000pt;}
.xb{left:443.732739pt;}
.x18{left:448.813333pt;}
.xf{left:455.488000pt;}
.x26{left:459.270667pt;}
.x25{left:469.030667pt;}
.x1c{left:524.134222pt;}
.x1d{left:532.500463pt;}
.x13{left:627.226667pt;}
.x14{left:630.864000pt;}
}




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