
    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_1f69239520e0b1f5542fe0cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_81434656012170b670013ea9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fa59325a51e2f4e0dfd50b40.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_17628006bcbd9c429c3dc358.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.682617;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_53702b964c9ac6671d100747.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.800537;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_33632de373d1adc738d9f417.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_cb2057b9aef9c80cba69e4e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.079102;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_a11ea0d5e2605e67e74987cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_bb36a369994d8bb00332bd68.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.960400px;}
.v2{vertical-align:32.208000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.022200px;}
.ls1{letter-spacing:1.329600px;}
.ls4{letter-spacing:15.125760px;}
.ls2{letter-spacing:179.496000px;}
.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;}
}
.wsc4{word-spacing:-24.000000px;}
.wsb5{word-spacing:-18.180000px;}
.ws4{word-spacing:-18.000000px;}
.ws72{word-spacing:-16.344000px;}
.wsc1{word-spacing:-16.216560px;}
.wsb6{word-spacing:-10.605000px;}
.ws14{word-spacing:-10.500000px;}
.ws49{word-spacing:-10.494000px;}
.ws97{word-spacing:-9.534000px;}
.ws62{word-spacing:-7.272000px;}
.ws9d{word-spacing:-7.056000px;}
.wsa6{word-spacing:-5.454000px;}
.ws64{word-spacing:-4.752000px;}
.wsa0{word-spacing:-4.536000px;}
.wsbb{word-spacing:-3.999600px;}
.ws5d{word-spacing:-3.960000px;}
.ws8f{word-spacing:-3.816000px;}
.ws4f{word-spacing:-3.672000px;}
.wsa4{word-spacing:-3.600000px;}
.ws7b{word-spacing:-3.528000px;}
.ws7f{word-spacing:-3.456000px;}
.wsab{word-spacing:-3.417840px;}
.ws63{word-spacing:-3.384000px;}
.ws40{word-spacing:-3.312000px;}
.wsf{word-spacing:-3.304800px;}
.ws94{word-spacing:-3.168000px;}
.ws56{word-spacing:-3.096000px;}
.wsad{word-spacing:-3.054240px;}
.ws3e{word-spacing:-3.024000px;}
.wsa{word-spacing:-3.011040px;}
.ws2d{word-spacing:-2.952000px;}
.ws6b{word-spacing:-2.808000px;}
.ws17{word-spacing:-2.736000px;}
.ws8{word-spacing:-2.717280px;}
.ws3b{word-spacing:-2.664000px;}
.ws22{word-spacing:-2.520000px;}
.ws9{word-spacing:-2.496960px;}
.ws9b{word-spacing:-2.448000px;}
.ws35{word-spacing:-2.376000px;}
.wsa7{word-spacing:-2.327040px;}
.ws66{word-spacing:-2.304000px;}
.wsa3{word-spacing:-2.088000px;}
.ws1f{word-spacing:-2.016000px;}
.ws4d{word-spacing:-1.944000px;}
.wsb7{word-spacing:-1.890720px;}
.ws26{word-spacing:-1.872000px;}
.wsaf{word-spacing:-1.745280px;}
.ws78{word-spacing:-1.728000px;}
.ws24{word-spacing:-1.656000px;}
.wsb9{word-spacing:-1.599840px;}
.ws3c{word-spacing:-1.584000px;}
.ws96{word-spacing:-1.512000px;}
.ws85{word-spacing:-1.440000px;}
.ws54{word-spacing:-1.368000px;}
.wsa5{word-spacing:-1.308960px;}
.ws4c{word-spacing:-1.296000px;}
.ws3d{word-spacing:-1.224000px;}
.wsa2{word-spacing:-1.152000px;}
.ws30{word-spacing:-1.080000px;}
.wsbc{word-spacing:-1.018080px;}
.ws83{word-spacing:-1.008000px;}
.ws6c{word-spacing:-0.936000px;}
.ws7{word-spacing:-0.864000px;}
.wsba{word-spacing:-0.799920px;}
.ws34{word-spacing:-0.792000px;}
.wsc0{word-spacing:-0.727200px;}
.ws6{word-spacing:-0.720000px;}
.ws7a{word-spacing:-0.648000px;}
.ws3a{word-spacing:-0.576000px;}
.ws27{word-spacing:-0.504000px;}
.ws4e{word-spacing:-0.432000px;}
.ws84{word-spacing:-0.360000px;}
.ws67{word-spacing:-0.288000px;}
.ws1{word-spacing:-0.216000px;}
.wsc2{word-spacing:-0.145440px;}
.ws3{word-spacing:-0.144000px;}
.ws2{word-spacing:-0.072000px;}
.ws82{word-spacing:-0.041976px;}
.ws0{word-spacing:0.000000px;}
.ws99{word-spacing:0.072000px;}
.wsb0{word-spacing:0.145440px;}
.ws81{word-spacing:0.216000px;}
.ws6f{word-spacing:0.288000px;}
.wsb8{word-spacing:0.290880px;}
.ws71{word-spacing:0.360000px;}
.ws12{word-spacing:0.367200px;}
.ws48{word-spacing:0.432000px;}
.wsae{word-spacing:0.436320px;}
.ws6a{word-spacing:0.504000px;}
.ws36{word-spacing:0.576000px;}
.wsbf{word-spacing:0.581760px;}
.ws8a{word-spacing:0.648000px;}
.ws21{word-spacing:0.720000px;}
.ws6d{word-spacing:0.792000px;}
.ws2c{word-spacing:0.864000px;}
.ws46{word-spacing:0.936000px;}
.ws37{word-spacing:1.008000px;}
.ws20{word-spacing:1.080000px;}
.wsb{word-spacing:1.101600px;}
.ws77{word-spacing:1.152000px;}
.wsa1{word-spacing:1.224000px;}
.ws16{word-spacing:1.296000px;}
.ws3f{word-spacing:1.368000px;}
.ws42{word-spacing:1.440000px;}
.ws4b{word-spacing:1.512000px;}
.wsa8{word-spacing:1.527120px;}
.wsc{word-spacing:1.542240px;}
.ws50{word-spacing:1.584000px;}
.ws4a{word-spacing:1.656000px;}
.ws18{word-spacing:1.800000px;}
.ws89{word-spacing:1.872000px;}
.ws75{word-spacing:1.944000px;}
.ws8d{word-spacing:2.016000px;}
.ws73{word-spacing:2.088000px;}
.wsb4{word-spacing:2.108880px;}
.wsb3{word-spacing:2.181600px;}
.ws80{word-spacing:2.232000px;}
.ws98{word-spacing:2.304000px;}
.ws23{word-spacing:2.376000px;}
.ws5e{word-spacing:2.448000px;}
.ws7c{word-spacing:2.520000px;}
.wsb1{word-spacing:2.545200px;}
.ws69{word-spacing:2.592000px;}
.ws8b{word-spacing:2.664000px;}
.ws68{word-spacing:2.736000px;}
.ws47{word-spacing:2.808000px;}
.ws5{word-spacing:2.880000px;}
.ws38{word-spacing:3.024000px;}
.ws41{word-spacing:3.096000px;}
.ws8e{word-spacing:3.168000px;}
.ws79{word-spacing:3.240000px;}
.wsac{word-spacing:3.272400px;}
.ws31{word-spacing:3.312000px;}
.ws60{word-spacing:3.384000px;}
.ws1a{word-spacing:3.456000px;}
.ws88{word-spacing:3.528000px;}
.wse{word-spacing:3.598560px;}
.ws51{word-spacing:3.600000px;}
.ws44{word-spacing:3.672000px;}
.ws93{word-spacing:3.744000px;}
.ws70{word-spacing:3.816000px;}
.ws45{word-spacing:3.888000px;}
.wsa9{word-spacing:3.926880px;}
.ws1b{word-spacing:3.960000px;}
.ws52{word-spacing:4.032000px;}
.ws5c{word-spacing:4.176000px;}
.wsd{word-spacing:4.259520px;}
.ws91{word-spacing:4.320000px;}
.ws39{word-spacing:4.464000px;}
.ws2e{word-spacing:4.536000px;}
.ws1e{word-spacing:4.608000px;}
.ws76{word-spacing:4.680000px;}
.ws61{word-spacing:4.752000px;}
.ws5a{word-spacing:4.824000px;}
.ws53{word-spacing:4.896000px;}
.ws9e{word-spacing:4.968000px;}
.ws8c{word-spacing:5.040000px;}
.wsc3{word-spacing:5.090400px;}
.ws1c{word-spacing:5.112000px;}
.ws55{word-spacing:5.328000px;}
.ws86{word-spacing:5.400000px;}
.ws43{word-spacing:5.472000px;}
.ws7d{word-spacing:5.544000px;}
.ws1d{word-spacing:5.616000px;}
.ws74{word-spacing:5.688000px;}
.ws95{word-spacing:5.832000px;}
.ws32{word-spacing:5.904000px;}
.ws11{word-spacing:5.948640px;}
.ws10{word-spacing:6.095520px;}
.ws7e{word-spacing:6.120000px;}
.ws90{word-spacing:6.192000px;}
.ws28{word-spacing:6.264000px;}
.ws9a{word-spacing:6.336000px;}
.ws87{word-spacing:6.552000px;}
.wsaa{word-spacing:6.690240px;}
.ws19{word-spacing:6.696000px;}
.ws13{word-spacing:6.756480px;}
.ws25{word-spacing:6.984000px;}
.ws2a{word-spacing:7.560000px;}
.ws65{word-spacing:7.632000px;}
.ws59{word-spacing:7.704000px;}
.ws6e{word-spacing:7.848000px;}
.wsb2{word-spacing:8.217360px;}
.ws9c{word-spacing:9.144000px;}
.ws29{word-spacing:9.360000px;}
.ws5f{word-spacing:9.648000px;}
.ws15{word-spacing:9.720000px;}
.ws57{word-spacing:9.792000px;}
.ws33{word-spacing:9.936000px;}
.ws2f{word-spacing:10.152000px;}
.wsbe{word-spacing:10.544400px;}
.ws92{word-spacing:10.728000px;}
.ws5b{word-spacing:11.376000px;}
.ws58{word-spacing:14.112000px;}
.wsbd{word-spacing:14.544000px;}
.ws9f{word-spacing:14.904000px;}
.ws2b{word-spacing:28.440000px;}
._18{margin-left:-2332.032000px;}
._12{margin-left:-32.040000px;}
._11{margin-left:-27.792000px;}
._b{margin-left:-21.967200px;}
._13{margin-left:-20.016000px;}
._a{margin-left:-18.900000px;}
._c{margin-left:-17.208000px;}
._5{margin-left:-15.346224px;}
._1c{margin-left:-10.014192px;}
._1{margin-left:-7.992000px;}
._6{margin-left:-6.004800px;}
._2{margin-left:-4.003200px;}
._0{margin-left:-2.736000px;}
._3{margin-left:-1.332000px;}
._4{width:1.332000px;}
._7{width:2.440800px;}
._d{width:3.499200px;}
._e{width:4.500000px;}
._9{width:5.868000px;}
._15{width:7.048800px;}
._8{width:8.193600px;}
._1d{width:9.835776px;}
._1a{width:162.000000px;}
._f{width:165.096000px;}
._19{width:171.000000px;}
._16{width:333.895200px;}
._17{width:541.200000px;}
._10{width:707.058000px;}
._1b{width:1060.032000px;}
._14{width:1110.438000px;}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(48,45,45);}
.fc5{color:rgb(91,91,95);}
.fc3{color:rgb(86,86,90);}
.fc2{color:rgb(203,6,16);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fsa{font-size:42.420000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs9{font-size:69.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:72.720000px;}
.fs2{font-size:73.440000px;}
.fsb{font-size:96.000000px;}
.fs1{font-size:210.000000px;}
.y0{bottom:0.000000px;}
.y16b{bottom:18.070800px;}
.y2{bottom:28.370850px;}
.y1{bottom:29.433900px;}
.yae{bottom:29.763750px;}
.y14d{bottom:32.527650px;}
.y188{bottom:34.015650px;}
.y16a{bottom:39.670800px;}
.y1a8{bottom:40.579350px;}
.y10a{bottom:42.363750px;}
.y133{bottom:42.519750px;}
.ye3{bottom:42.945000px;}
.y1f4{bottom:49.960650px;}
.y1c9{bottom:54.000000px;}
.y14c{bottom:54.127650px;}
.ye2{bottom:55.545000px;}
.y10d{bottom:60.171150px;}
.y1a7{bottom:62.179350px;}
.y110{bottom:62.391000px;}
.y1f3{bottom:62.560650px;}
.y92{bottom:66.162300px;}
.y14b{bottom:66.727650px;}
.y16d{bottom:67.353000px;}
.y1c8{bottom:68.400000px;}
.y7e{bottom:71.179800px;}
.ye1{bottom:77.145000px;}
.y16c{bottom:82.234950px;}
.y1c7{bottom:82.800000px;}
.y63{bottom:89.919600px;}
.y134{bottom:90.547800px;}
.y20e{bottom:92.600700px;}
.ye5{bottom:92.634600px;}
.yb0{bottom:94.504650px;}
.y1ab{bottom:95.839950px;}
.ye0{bottom:98.745000px;}
.y257{bottom:99.620700px;}
.y1f6{bottom:101.930100px;}
.y14e{bottom:104.398650px;}
.y1f7{bottom:104.501550px;}
.y62{bottom:111.519600px;}
.y33{bottom:113.997450px;}
.y256{bottom:121.220700px;}
.y1ca{bottom:125.100000px;}
.y61{bottom:133.119600px;}
.y32{bottom:135.597450px;}
.y225{bottom:140.486850px;}
.y255{bottom:142.820700px;}
.y31{bottom:157.197450px;}
.ydf{bottom:159.662700px;}
.y254{bottom:169.820700px;}
.y60{bottom:176.319600px;}
.yde{bottom:177.734700px;}
.y7{bottom:182.108850px;}
.ydd{bottom:195.806700px;}
.y253{bottom:196.820700px;}
.y5f{bottom:197.919600px;}
.y1f2{bottom:210.362850px;}
.y5e{bottom:219.519600px;}
.y47{bottom:222.315750px;}
.y252{bottom:223.820700px;}
.y6{bottom:225.308850px;}
.ydc{bottom:231.950700px;}
.y1f1{bottom:231.962850px;}
.y5d{bottom:241.119600px;}
.ydb{bottom:250.022700px;}
.y251{bottom:250.820700px;}
.y1f0{bottom:253.562850px;}
.y5c{bottom:262.719600px;}
.y109{bottom:266.654100px;}
.yda{bottom:268.094700px;}
.y5{bottom:268.508850px;}
.y1ef{bottom:275.162850px;}
.y250{bottom:277.820700px;}
.y5b{bottom:284.319600px;}
.yd9{bottom:286.202850px;}
.y108{bottom:288.254100px;}
.y4{bottom:290.108850px;}
.y24f{bottom:299.420700px;}
.yd8{bottom:304.274850px;}
.y5a{bottom:305.919600px;}
.y7f{bottom:308.227800px;}
.y107{bottom:309.854100px;}
.y3{bottom:311.708850px;}
.y1ee{bottom:318.389850px;}
.y1b{bottom:318.405900px;}
.y24e{bottom:321.020700px;}
.y59{bottom:327.519600px;}
.y1ed{bottom:339.989850px;}
.yd7{bottom:340.418850px;}
.y24d{bottom:342.620700px;}
.y58{bottom:349.119600px;}
.y106{bottom:353.054100px;}
.yd6{bottom:358.490850px;}
.y1ec{bottom:361.589850px;}
.y1a{bottom:361.605900px;}
.y1a6{bottom:363.403350px;}
.y57{bottom:370.719600px;}
.y105{bottom:374.654100px;}
.y14f{bottom:376.042650px;}
.yd5{bottom:376.562850px;}
.y1eb{bottom:383.189850px;}
.y1a5{bottom:385.903350px;}
.y132{bottom:389.902800px;}
.y104{bottom:396.254850px;}
.yaf{bottom:399.099150px;}
.y1f8{bottom:401.081550px;}
.y24c{bottom:402.020850px;}
.y10c{bottom:402.313650px;}
.y19{bottom:404.805900px;}
.y1a4{bottom:408.403350px;}
.y8d{bottom:411.050850px;}
.y131{bottom:411.502800px;}
.yd4{bottom:412.706850px;}
.y22d{bottom:413.319300px;}
.y56{bottom:413.919600px;}
.y103{bottom:417.854850px;}
.y1ea{bottom:426.389850px;}
.yd3{bottom:430.778850px;}
.y130{bottom:433.102800px;}
.y8c{bottom:433.550850px;}
.y22c{bottom:434.919300px;}
.y55{bottom:435.519600px;}
.y102{bottom:439.454850px;}
.y1e9{bottom:444.461850px;}
.y18{bottom:448.005900px;}
.yd2{bottom:448.850850px;}
.y24b{bottom:450.836700px;}
.y10f{bottom:453.064500px;}
.y1a3{bottom:453.403350px;}
.y12f{bottom:454.702800px;}
.y1aa{bottom:455.131950px;}
.y54{bottom:457.119600px;}
.y101{bottom:461.054850px;}
.y1e8{bottom:462.533850px;}
.y24a{bottom:472.652700px;}
.y1a2{bottom:475.903350px;}
.y12e{bottom:476.301900px;}
.y8b{bottom:478.550850px;}
.y53{bottom:478.719600px;}
.y1e7{bottom:480.605850px;}
.y100{bottom:482.654850px;}
.yd1{bottom:484.994850px;}
.y20d{bottom:485.960700px;}
.y17{bottom:491.205900px;}
.y12d{bottom:497.901900px;}
.y1a1{bottom:498.403350px;}
.y1e6{bottom:498.677850px;}
.y52{bottom:500.319600px;}
.y8a{bottom:501.050850px;}
.yd0{bottom:503.090850px;}
.yff{bottom:504.254850px;}
.y249{bottom:516.284700px;}
.y12c{bottom:519.501900px;}
.y1a0{bottom:520.903350px;}
.ycf{bottom:521.162850px;}
.y51{bottom:521.919600px;}
.y7d{bottom:522.927450px;}
.y89{bottom:523.550850px;}
.y1c6{bottom:529.874250px;}
.y16{bottom:534.405900px;}
.y248{bottom:538.100700px;}
.y1e5{bottom:538.349850px;}
.yce{bottom:539.234850px;}
.y12b{bottom:541.101900px;}
.y22b{bottom:542.919300px;}
.y19f{bottom:543.403350px;}
.y7c{bottom:544.527450px;}
.y88{bottom:546.050850px;}
.yfe{bottom:547.454850px;}
.y1c5{bottom:551.474250px;}
.y169{bottom:557.090250px;}
.ycd{bottom:557.306850px;}
.y247{bottom:559.916700px;}
.y1e4{bottom:559.949850px;}
.y12a{bottom:562.701900px;}
.y19e{bottom:565.903350px;}
.y7b{bottom:566.127450px;}
.y87{bottom:568.550850px;}
.yfd{bottom:569.054850px;}
.y187{bottom:570.994200px;}
.y1c4{bottom:573.074250px;}
.ycc{bottom:575.378850px;}
.y15{bottom:577.605900px;}
.y168{bottom:578.690250px;}
.y4f{bottom:580.073850px;}
.y30{bottom:580.761330px;}
.y1e3{bottom:581.549850px;}
.y246{bottom:581.732700px;}
.y129{bottom:584.301900px;}
.y22a{bottom:586.119300px;}
.y7a{bottom:587.727450px;}
.yfc{bottom:590.654850px;}
.y86{bottom:591.050850px;}
.y186{bottom:592.594200px;}
.ycb{bottom:593.450850px;}
.y1c3{bottom:594.674250px;}
.y167{bottom:600.290250px;}
.y4e{bottom:601.673850px;}
.y2f{bottom:602.352690px;}
.y1e2{bottom:603.149850px;}
.y245{bottom:603.548700px;}
.y128{bottom:605.901900px;}
.y79{bottom:609.327450px;}
.y19d{bottom:610.903350px;}
.yfb{bottom:612.254850px;}
.y85{bottom:613.550850px;}
.y185{bottom:614.194200px;}
.y1c2{bottom:616.274250px;}
.y14{bottom:620.805900px;}
.y166{bottom:621.890250px;}
.y4d{bottom:623.273850px;}
.y2e{bottom:623.944050px;}
.y1e1{bottom:624.749850px;}
.y46{bottom:624.889500px;}
.y244{bottom:625.364700px;}
.y127{bottom:627.501900px;}
.y229{bottom:629.319300px;}
.y78{bottom:630.927450px;}
.yca{bottom:633.122850px;}
.y19c{bottom:633.403350px;}
.yfa{bottom:633.854850px;}
.y184{bottom:635.794200px;}
.y1c1{bottom:637.874250px;}
.y4c{bottom:644.873850px;}
.y2d{bottom:645.619650px;}
.y45{bottom:646.489500px;}
.y243{bottom:647.180700px;}
.y126{bottom:649.101900px;}
.ye4{bottom:649.638600px;}
.ye6{bottom:650.709600px;}
.y77{bottom:652.527450px;}
.yf9{bottom:655.454850px;}
.y19b{bottom:655.903350px;}
.y14a{bottom:656.354100px;}
.y84{bottom:658.550850px;}
.y1c0{bottom:659.474250px;}
.y224{bottom:663.401550px;}
.y13{bottom:664.005900px;}
.y165{bottom:665.090250px;}
.y2c{bottom:667.211010px;}
.y1e0{bottom:667.949850px;}
.y44{bottom:668.089500px;}
.y242{bottom:668.996700px;}
.y228{bottom:672.519450px;}
.y76{bottom:674.127450px;}
.yf8{bottom:677.054850px;}
.y1f5{bottom:677.138100px;}
.y149{bottom:677.954100px;}
.yc9{bottom:678.122850px;}
.y183{bottom:678.994200px;}
.y83{bottom:681.050850px;}
.y1bf{bottom:681.074250px;}
.y223{bottom:686.126550px;}
.y164{bottom:686.690250px;}
.y4b{bottom:688.073850px;}
.y1df{bottom:689.549850px;}
.y43{bottom:689.689500px;}
.y241{bottom:690.812700px;}
.y125{bottom:692.301900px;}
.y75{bottom:695.727450px;}
.yad{bottom:697.878150px;}
.y148{bottom:699.554100px;}
.y182{bottom:700.594200px;}
.yc8{bottom:700.622850px;}
.y19a{bottom:700.903350px;}
.y82{bottom:703.550850px;}
.y12{bottom:707.205900px;}
.y163{bottom:708.290250px;}
.y222{bottom:708.851550px;}
.y4a{bottom:709.673850px;}
.y2b{bottom:710.412090px;}
.y1de{bottom:711.149850px;}
.y42{bottom:711.289500px;}
.y240{bottom:712.628700px;}
.y124{bottom:713.901900px;}
.yf7{bottom:720.254850px;}
.yac{bottom:720.378150px;}
.y20b{bottom:721.136550px;}
.y147{bottom:721.154100px;}
.yc7{bottom:721.628850px;}
.y181{bottom:722.194200px;}
.y199{bottom:723.403350px;}
.y1be{bottom:724.274250px;}
.y81{bottom:726.050850px;}
.y162{bottom:729.890250px;}
.y49{bottom:731.273850px;}
.y221{bottom:731.576550px;}
.y2a{bottom:732.003450px;}
.y1dd{bottom:732.749850px;}
.y41{bottom:732.889500px;}
.y23f{bottom:734.444700px;}
.y74{bottom:738.927450px;}
.yf6{bottom:741.854850px;}
.yc6{bottom:742.634850px;}
.y20a{bottom:742.736550px;}
.y146{bottom:742.754100px;}
.yab{bottom:742.878150px;}
.y180{bottom:743.794200px;}
.y1bd{bottom:745.874250px;}
.y198{bottom:745.903350px;}
.y11{bottom:750.405900px;}
.y161{bottom:751.490250px;}
.y48{bottom:752.873850px;}
.y29{bottom:753.594810px;}
.y220{bottom:754.301550px;}
.y1dc{bottom:754.349850px;}
.y40{bottom:754.489500px;}
.y10b{bottom:755.229150px;}
.y23e{bottom:756.260700px;}
.y123{bottom:757.101900px;}
.y73{bottom:760.527450px;}
.yf5{bottom:763.454850px;}
.yc5{bottom:763.640850px;}
.y209{bottom:764.336550px;}
.y145{bottom:764.354100px;}
.yaa{bottom:765.378150px;}
.y17f{bottom:765.394200px;}
.y1bc{bottom:767.474250px;}
.y197{bottom:768.403350px;}
.y80{bottom:771.050850px;}
.y160{bottom:773.090250px;}
.y28{bottom:775.186170px;}
.y1db{bottom:775.949850px;}
.y3f{bottom:776.089500px;}
.y21f{bottom:777.026550px;}
.y23d{bottom:778.076700px;}
.y122{bottom:778.701900px;}
.y72{bottom:782.127450px;}
.yc4{bottom:784.646850px;}
.yf4{bottom:785.054850px;}
.y208{bottom:785.936550px;}
.y17e{bottom:786.994200px;}
.ya9{bottom:787.878150px;}
.y1bb{bottom:789.074250px;}
.y196{bottom:790.903350px;}
.y227{bottom:791.127150px;}
.y10{bottom:793.605900px;}
.y50{bottom:796.331550px;}
.y27{bottom:796.777530px;}
.y1da{bottom:797.549850px;}
.y3e{bottom:797.689500px;}
.y21e{bottom:799.751550px;}
.y23c{bottom:799.892700px;}
.y121{bottom:800.301900px;}
.y71{bottom:803.727450px;}
.yc3{bottom:806.246850px;}
.yf3{bottom:806.654850px;}
.y207{bottom:807.536550px;}
.y144{bottom:807.554100px;}
.y17d{bottom:808.594200px;}
.y1ba{bottom:810.674250px;}
.y91{bottom:811.799100px;}
.y195{bottom:813.403350px;}
.y1a9{bottom:814.423950px;}
.y15f{bottom:816.290250px;}
.y23b{bottom:821.708700px;}
.y120{bottom:821.901900px;}
.y21d{bottom:822.476550px;}
.y70{bottom:825.327450px;}
.yf2{bottom:828.254850px;}
.y206{bottom:829.136550px;}
.y143{bottom:829.154100px;}
.y17c{bottom:830.194200px;}
.ya8{bottom:832.878150px;}
.y90{bottom:834.299100px;}
.y111{bottom:836.598000px;}
.yf{bottom:836.805900px;}
.y10e{bottom:837.669000px;}
.y15e{bottom:837.890250px;}
.y26{bottom:839.978610px;}
.y1d9{bottom:840.749850px;}
.y3d{bottom:840.889650px;}
.y11f{bottom:843.501900px;}
.y23a{bottom:843.524700px;}
.yc2{bottom:845.918850px;}
.y6f{bottom:846.927450px;}
.y20c{bottom:847.376700px;}
.y142{bottom:850.754100px;}
.y17b{bottom:851.794200px;}
.y1b9{bottom:853.874250px;}
.ya7{bottom:855.378150px;}
.y8f{bottom:856.799100px;}
.y194{bottom:858.403350px;}
.y1d8{bottom:858.821850px;}
.y15d{bottom:859.490250px;}
.y25{bottom:861.569970px;}
.y3c{bottom:862.489650px;}
.yc1{bottom:863.990850px;}
.y11e{bottom:865.101900px;}
.y239{bottom:865.340700px;}
.y21c{bottom:867.926550px;}
.yf1{bottom:871.454850px;}
.y205{bottom:872.336550px;}
.y1b8{bottom:875.474250px;}
.y1d7{bottom:876.893850px;}
.ya6{bottom:877.878150px;}
.y8e{bottom:879.299100px;}
.ye{bottom:880.005900px;}
.y193{bottom:880.903350px;}
.y15c{bottom:881.090250px;}
.yc0{bottom:882.062850px;}
.y24{bottom:883.161330px;}
.y3b{bottom:884.089650px;}
.y11d{bottom:886.701900px;}
.y238{bottom:887.156700px;}
.y6e{bottom:890.127450px;}
.y21b{bottom:890.651550px;}
.yf0{bottom:893.054850px;}
.y204{bottom:893.936550px;}
.y17a{bottom:894.994200px;}
.y1b7{bottom:897.074250px;}
.ybf{bottom:900.134850px;}
.ya5{bottom:900.378150px;}
.y15b{bottom:902.690250px;}
.y192{bottom:903.403350px;}
.y23{bottom:904.752690px;}
.y3a{bottom:905.689650px;}
.y11c{bottom:908.301900px;}
.y237{bottom:908.972700px;}
.y6d{bottom:911.727450px;}
.y1d6{bottom:913.037850px;}
.y21a{bottom:913.376550px;}
.yef{bottom:914.654850px;}
.y203{bottom:915.536550px;}
.y141{bottom:915.554850px;}
.y179{bottom:916.594200px;}
.ybe{bottom:918.206850px;}
.y1b6{bottom:918.674250px;}
.ya4{bottom:922.878150px;}
.yd{bottom:923.205900px;}
.y15a{bottom:924.290250px;}
.y191{bottom:925.903350px;}
.y22{bottom:926.344050px;}
.y39{bottom:927.289650px;}
.y11b{bottom:929.901900px;}
.y236{bottom:930.788700px;}
.y6c{bottom:933.327450px;}
.y1d5{bottom:934.637850px;}
.y219{bottom:936.101550px;}
.yee{bottom:936.254850px;}
.ybd{bottom:936.278850px;}
.y94{bottom:936.521400px;}
.y202{bottom:937.136550px;}
.y140{bottom:937.154850px;}
.y178{bottom:938.194200px;}
.y1b5{bottom:940.274250px;}
.ya3{bottom:945.378150px;}
.y159{bottom:945.890250px;}
.y190{bottom:948.403350px;}
.y38{bottom:948.889650px;}
.y11a{bottom:951.501900px;}
.y235{bottom:952.604700px;}
.ybc{bottom:954.350850px;}
.y6b{bottom:954.927450px;}
.y1d4{bottom:956.237850px;}
.yed{bottom:957.854850px;}
.y13f{bottom:958.754850px;}
.y177{bottom:959.794200px;}
.y25d{bottom:965.780700px;}
.yc{bottom:966.405900px;}
.y158{bottom:967.490250px;}
.ya2{bottom:967.878150px;}
.y21{bottom:969.544050px;}
.y18f{bottom:970.903350px;}
.ybb{bottom:972.422850px;}
.y234{bottom:974.420700px;}
.y6a{bottom:976.527450px;}
.y201{bottom:980.336550px;}
.y176{bottom:981.394200px;}
.y218{bottom:981.551550px;}
.y1b4{bottom:983.474250px;}
.ya1{bottom:990.378150px;}
.yba{bottom:990.494850px;}
.y20{bottom:991.144050px;}
.y37{bottom:992.089650px;}
.y119{bottom:994.701900px;}
.y233{bottom:996.236700px;}
.y69{bottom:998.127450px;}
.y1d3{bottom:999.437850px;}
.yec{bottom:1001.054850px;}
.y200{bottom:1001.936550px;}
.y13e{bottom:1001.954850px;}
.y175{bottom:1002.994200px;}
.y217{bottom:1004.276550px;}
.y1b3{bottom:1005.074250px;}
.yb9{bottom:1008.566850px;}
.y25c{bottom:1008.980700px;}
.yb{bottom:1009.605900px;}
.y157{bottom:1010.690250px;}
.y99{bottom:1012.052700px;}
.y1f{bottom:1012.744050px;}
.ya0{bottom:1012.878150px;}
.y36{bottom:1013.689650px;}
.y18e{bottom:1015.904850px;}
.y232{bottom:1018.052700px;}
.y68{bottom:1019.727450px;}
.yeb{bottom:1022.654850px;}
.y1ff{bottom:1023.536550px;}
.y13d{bottom:1023.554850px;}
.y174{bottom:1024.594200px;}
.y1b2{bottom:1026.674250px;}
.y216{bottom:1027.001550px;}
.y156{bottom:1032.290250px;}
.y98{bottom:1033.652700px;}
.y1e{bottom:1034.344050px;}
.y35{bottom:1035.289650px;}
.y118{bottom:1037.901900px;}
.y18d{bottom:1038.404850px;}
.y231{bottom:1039.868700px;}
.y67{bottom:1041.327450px;}
.y1d2{bottom:1042.637850px;}
.yea{bottom:1044.254850px;}
.y1fe{bottom:1045.136550px;}
.y13c{bottom:1045.154850px;}
.y173{bottom:1046.194200px;}
.y1b1{bottom:1048.274250px;}
.y215{bottom:1049.726550px;}
.y25b{bottom:1052.180700px;}
.ya{bottom:1052.805900px;}
.y155{bottom:1053.890250px;}
.y97{bottom:1055.252700px;}
.y1d{bottom:1055.944050px;}
.y34{bottom:1056.889650px;}
.y9f{bottom:1057.878150px;}
.y117{bottom:1059.501900px;}
.y18c{bottom:1060.904850px;}
.y230{bottom:1061.684700px;}
.yb8{bottom:1062.812850px;}
.y66{bottom:1062.927450px;}
.y1d1{bottom:1064.237850px;}
.y226{bottom:1064.313150px;}
.ye9{bottom:1065.854850px;}
.y13b{bottom:1066.754850px;}
.y172{bottom:1067.794200px;}
.y214{bottom:1072.451550px;}
.y154{bottom:1075.490250px;}
.y96{bottom:1076.852700px;}
.y9e{bottom:1080.381900px;}
.yb7{bottom:1080.884850px;}
.y116{bottom:1081.101900px;}
.y18b{bottom:1083.404850px;}
.y22f{bottom:1083.500700px;}
.y65{bottom:1084.527450px;}
.y1d0{bottom:1085.837850px;}
.ye8{bottom:1087.454850px;}
.y1fd{bottom:1088.336550px;}
.y1b0{bottom:1091.468850px;}
.y213{bottom:1095.176550px;}
.y25a{bottom:1095.380700px;}
.y9{bottom:1096.005900px;}
.y95{bottom:1098.452700px;}
.yb6{bottom:1098.956850px;}
.y115{bottom:1102.701900px;}
.y18a{bottom:1105.904850px;}
.y1cf{bottom:1107.437850px;}
.y260{bottom:1108.426050px;}
.y1fc{bottom:1109.936550px;}
.y13a{bottom:1109.954850px;}
.y171{bottom:1110.994200px;}
.y1af{bottom:1113.068850px;}
.yb5{bottom:1117.028850px;}
.y212{bottom:1117.901550px;}
.y153{bottom:1118.690250px;}
.y114{bottom:1124.301900px;}
.y9d{bottom:1125.381900px;}
.y25f{bottom:1126.504050px;}
.y1ce{bottom:1129.037850px;}
.y1fb{bottom:1131.536550px;}
.y139{bottom:1131.554850px;}
.y170{bottom:1132.594200px;}
.y1ae{bottom:1134.668850px;}
.yb4{bottom:1135.100850px;}
.y259{bottom:1138.580700px;}
.y8{bottom:1139.205900px;}
.y152{bottom:1140.290250px;}
.y211{bottom:1140.626550px;}
.y113{bottom:1145.901900px;}
.y9c{bottom:1147.881900px;}
.y1cd{bottom:1150.637850px;}
.ye7{bottom:1152.254850px;}
.y1fa{bottom:1153.136550px;}
.y138{bottom:1153.154850px;}
.yb3{bottom:1153.172850px;}
.y16f{bottom:1154.194200px;}
.y1ad{bottom:1156.268850px;}
.y151{bottom:1161.890250px;}
.y210{bottom:1163.351550px;}
.y93{bottom:1165.998900px;}
.y112{bottom:1167.501900px;}
.y9b{bottom:1170.381900px;}
.y22e{bottom:1170.764700px;}
.y1cc{bottom:1172.237850px;}
.y189{bottom:1172.504850px;}
.y137{bottom:1174.754850px;}
.y16e{bottom:1175.794200px;}
.y1ac{bottom:1177.868850px;}
.y1c{bottom:1186.691850px;}
.y64{bottom:1187.258850px;}
.yb2{bottom:1189.316850px;}
.y258{bottom:1192.580700px;}
.y9a{bottom:1192.881900px;}
.y1f9{bottom:1196.336550px;}
.y136{bottom:1196.354850px;}
.y150{bottom:1203.290250px;}
.y25e{bottom:1207.331700px;}
.yb1{bottom:1207.388850px;}
.y20f{bottom:1207.892550px;}
.y135{bottom:1215.747000px;}
.y1cb{bottom:1216.344300px;}
.h8{height:29.162109px;}
.h9{height:33.328125px;}
.he{height:36.257812px;}
.hc{height:36.852539px;}
.h12{height:41.437500px;}
.h19{height:42.117188px;}
.h3{height:49.992188px;}
.h6{height:50.027344px;}
.h1f{height:50.492109px;}
.h1d{height:50.527617px;}
.h2{height:51.264000px;}
.h15{height:52.404082px;}
.h16{height:52.646484px;}
.h1b{height:53.013445px;}
.hb{height:53.036845px;}
.h14{height:53.121445px;}
.h18{height:53.122045px;}
.hf{height:53.125045px;}
.h17{height:53.143045px;}
.h13{height:57.911133px;}
.h1e{height:60.543457px;}
.h10{height:62.156250px;}
.hd{height:63.172781px;}
.h4{height:63.175781px;}
.h11{height:63.176381px;}
.h1c{height:63.807539px;}
.h7{height:64.439297px;}
.h20{height:65.062500px;}
.h1a{height:65.536125px;}
.ha{height:139.965820px;}
.h5{height:143.349609px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:34.015800px;}
.x9{left:101.542350px;}
.x8{left:103.110150px;}
.xb{left:105.023550px;}
.xd{left:106.087800px;}
.xf{left:107.579250px;}
.x17{left:109.273800px;}
.x16{left:110.817000px;}
.x18{left:112.536000px;}
.xe{left:117.642750px;}
.x6{left:123.781050px;}
.x4{left:127.558650px;}
.x1b{left:149.881800px;}
.x13{left:165.579750px;}
.x12{left:167.952750px;}
.x3{left:178.591800px;}
.x19{left:233.596200px;}
.x7{left:249.022050px;}
.xa{left:304.927050px;}
.x5{left:313.288050px;}
.x1a{left:341.659500px;}
.x11{left:450.922350px;}
.x15{left:459.472050px;}
.xc{left:460.631550px;}
.x10{left:465.165900px;}
.x14{left:470.990550px;}
.x1{left:840.826650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.298133pt;}
.v2{vertical-align:28.629333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.019733pt;}
.ls1{letter-spacing:1.181867pt;}
.ls4{letter-spacing:13.445120pt;}
.ls2{letter-spacing:159.552000pt;}
.wsc4{word-spacing:-21.333333pt;}
.wsb5{word-spacing:-16.160000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws72{word-spacing:-14.528000pt;}
.wsc1{word-spacing:-14.414720pt;}
.wsb6{word-spacing:-9.426667pt;}
.ws14{word-spacing:-9.333333pt;}
.ws49{word-spacing:-9.328000pt;}
.ws97{word-spacing:-8.474667pt;}
.ws62{word-spacing:-6.464000pt;}
.ws9d{word-spacing:-6.272000pt;}
.wsa6{word-spacing:-4.848000pt;}
.ws64{word-spacing:-4.224000pt;}
.wsa0{word-spacing:-4.032000pt;}
.wsbb{word-spacing:-3.555200pt;}
.ws5d{word-spacing:-3.520000pt;}
.ws8f{word-spacing:-3.392000pt;}
.ws4f{word-spacing:-3.264000pt;}
.wsa4{word-spacing:-3.200000pt;}
.ws7b{word-spacing:-3.136000pt;}
.ws7f{word-spacing:-3.072000pt;}
.wsab{word-spacing:-3.038080pt;}
.ws63{word-spacing:-3.008000pt;}
.ws40{word-spacing:-2.944000pt;}
.wsf{word-spacing:-2.937600pt;}
.ws94{word-spacing:-2.816000pt;}
.ws56{word-spacing:-2.752000pt;}
.wsad{word-spacing:-2.714880pt;}
.ws3e{word-spacing:-2.688000pt;}
.wsa{word-spacing:-2.676480pt;}
.ws2d{word-spacing:-2.624000pt;}
.ws6b{word-spacing:-2.496000pt;}
.ws17{word-spacing:-2.432000pt;}
.ws8{word-spacing:-2.415360pt;}
.ws3b{word-spacing:-2.368000pt;}
.ws22{word-spacing:-2.240000pt;}
.ws9{word-spacing:-2.219520pt;}
.ws9b{word-spacing:-2.176000pt;}
.ws35{word-spacing:-2.112000pt;}
.wsa7{word-spacing:-2.068480pt;}
.ws66{word-spacing:-2.048000pt;}
.wsa3{word-spacing:-1.856000pt;}
.ws1f{word-spacing:-1.792000pt;}
.ws4d{word-spacing:-1.728000pt;}
.wsb7{word-spacing:-1.680640pt;}
.ws26{word-spacing:-1.664000pt;}
.wsaf{word-spacing:-1.551360pt;}
.ws78{word-spacing:-1.536000pt;}
.ws24{word-spacing:-1.472000pt;}
.wsb9{word-spacing:-1.422080pt;}
.ws3c{word-spacing:-1.408000pt;}
.ws96{word-spacing:-1.344000pt;}
.ws85{word-spacing:-1.280000pt;}
.ws54{word-spacing:-1.216000pt;}
.wsa5{word-spacing:-1.163520pt;}
.ws4c{word-spacing:-1.152000pt;}
.ws3d{word-spacing:-1.088000pt;}
.wsa2{word-spacing:-1.024000pt;}
.ws30{word-spacing:-0.960000pt;}
.wsbc{word-spacing:-0.904960pt;}
.ws83{word-spacing:-0.896000pt;}
.ws6c{word-spacing:-0.832000pt;}
.ws7{word-spacing:-0.768000pt;}
.wsba{word-spacing:-0.711040pt;}
.ws34{word-spacing:-0.704000pt;}
.wsc0{word-spacing:-0.646400pt;}
.ws6{word-spacing:-0.640000pt;}
.ws7a{word-spacing:-0.576000pt;}
.ws3a{word-spacing:-0.512000pt;}
.ws27{word-spacing:-0.448000pt;}
.ws4e{word-spacing:-0.384000pt;}
.ws84{word-spacing:-0.320000pt;}
.ws67{word-spacing:-0.256000pt;}
.ws1{word-spacing:-0.192000pt;}
.wsc2{word-spacing:-0.129280pt;}
.ws3{word-spacing:-0.128000pt;}
.ws2{word-spacing:-0.064000pt;}
.ws82{word-spacing:-0.037312pt;}
.ws0{word-spacing:0.000000pt;}
.ws99{word-spacing:0.064000pt;}
.wsb0{word-spacing:0.129280pt;}
.ws81{word-spacing:0.192000pt;}
.ws6f{word-spacing:0.256000pt;}
.wsb8{word-spacing:0.258560pt;}
.ws71{word-spacing:0.320000pt;}
.ws12{word-spacing:0.326400pt;}
.ws48{word-spacing:0.384000pt;}
.wsae{word-spacing:0.387840pt;}
.ws6a{word-spacing:0.448000pt;}
.ws36{word-spacing:0.512000pt;}
.wsbf{word-spacing:0.517120pt;}
.ws8a{word-spacing:0.576000pt;}
.ws21{word-spacing:0.640000pt;}
.ws6d{word-spacing:0.704000pt;}
.ws2c{word-spacing:0.768000pt;}
.ws46{word-spacing:0.832000pt;}
.ws37{word-spacing:0.896000pt;}
.ws20{word-spacing:0.960000pt;}
.wsb{word-spacing:0.979200pt;}
.ws77{word-spacing:1.024000pt;}
.wsa1{word-spacing:1.088000pt;}
.ws16{word-spacing:1.152000pt;}
.ws3f{word-spacing:1.216000pt;}
.ws42{word-spacing:1.280000pt;}
.ws4b{word-spacing:1.344000pt;}
.wsa8{word-spacing:1.357440pt;}
.wsc{word-spacing:1.370880pt;}
.ws50{word-spacing:1.408000pt;}
.ws4a{word-spacing:1.472000pt;}
.ws18{word-spacing:1.600000pt;}
.ws89{word-spacing:1.664000pt;}
.ws75{word-spacing:1.728000pt;}
.ws8d{word-spacing:1.792000pt;}
.ws73{word-spacing:1.856000pt;}
.wsb4{word-spacing:1.874560pt;}
.wsb3{word-spacing:1.939200pt;}
.ws80{word-spacing:1.984000pt;}
.ws98{word-spacing:2.048000pt;}
.ws23{word-spacing:2.112000pt;}
.ws5e{word-spacing:2.176000pt;}
.ws7c{word-spacing:2.240000pt;}
.wsb1{word-spacing:2.262400pt;}
.ws69{word-spacing:2.304000pt;}
.ws8b{word-spacing:2.368000pt;}
.ws68{word-spacing:2.432000pt;}
.ws47{word-spacing:2.496000pt;}
.ws5{word-spacing:2.560000pt;}
.ws38{word-spacing:2.688000pt;}
.ws41{word-spacing:2.752000pt;}
.ws8e{word-spacing:2.816000pt;}
.ws79{word-spacing:2.880000pt;}
.wsac{word-spacing:2.908800pt;}
.ws31{word-spacing:2.944000pt;}
.ws60{word-spacing:3.008000pt;}
.ws1a{word-spacing:3.072000pt;}
.ws88{word-spacing:3.136000pt;}
.wse{word-spacing:3.198720pt;}
.ws51{word-spacing:3.200000pt;}
.ws44{word-spacing:3.264000pt;}
.ws93{word-spacing:3.328000pt;}
.ws70{word-spacing:3.392000pt;}
.ws45{word-spacing:3.456000pt;}
.wsa9{word-spacing:3.490560pt;}
.ws1b{word-spacing:3.520000pt;}
.ws52{word-spacing:3.584000pt;}
.ws5c{word-spacing:3.712000pt;}
.wsd{word-spacing:3.786240pt;}
.ws91{word-spacing:3.840000pt;}
.ws39{word-spacing:3.968000pt;}
.ws2e{word-spacing:4.032000pt;}
.ws1e{word-spacing:4.096000pt;}
.ws76{word-spacing:4.160000pt;}
.ws61{word-spacing:4.224000pt;}
.ws5a{word-spacing:4.288000pt;}
.ws53{word-spacing:4.352000pt;}
.ws9e{word-spacing:4.416000pt;}
.ws8c{word-spacing:4.480000pt;}
.wsc3{word-spacing:4.524800pt;}
.ws1c{word-spacing:4.544000pt;}
.ws55{word-spacing:4.736000pt;}
.ws86{word-spacing:4.800000pt;}
.ws43{word-spacing:4.864000pt;}
.ws7d{word-spacing:4.928000pt;}
.ws1d{word-spacing:4.992000pt;}
.ws74{word-spacing:5.056000pt;}
.ws95{word-spacing:5.184000pt;}
.ws32{word-spacing:5.248000pt;}
.ws11{word-spacing:5.287680pt;}
.ws10{word-spacing:5.418240pt;}
.ws7e{word-spacing:5.440000pt;}
.ws90{word-spacing:5.504000pt;}
.ws28{word-spacing:5.568000pt;}
.ws9a{word-spacing:5.632000pt;}
.ws87{word-spacing:5.824000pt;}
.wsaa{word-spacing:5.946880pt;}
.ws19{word-spacing:5.952000pt;}
.ws13{word-spacing:6.005760pt;}
.ws25{word-spacing:6.208000pt;}
.ws2a{word-spacing:6.720000pt;}
.ws65{word-spacing:6.784000pt;}
.ws59{word-spacing:6.848000pt;}
.ws6e{word-spacing:6.976000pt;}
.wsb2{word-spacing:7.304320pt;}
.ws9c{word-spacing:8.128000pt;}
.ws29{word-spacing:8.320000pt;}
.ws5f{word-spacing:8.576000pt;}
.ws15{word-spacing:8.640000pt;}
.ws57{word-spacing:8.704000pt;}
.ws33{word-spacing:8.832000pt;}
.ws2f{word-spacing:9.024000pt;}
.wsbe{word-spacing:9.372800pt;}
.ws92{word-spacing:9.536000pt;}
.ws5b{word-spacing:10.112000pt;}
.ws58{word-spacing:12.544000pt;}
.wsbd{word-spacing:12.928000pt;}
.ws9f{word-spacing:13.248000pt;}
.ws2b{word-spacing:25.280000pt;}
._18{margin-left:-2072.917333pt;}
._12{margin-left:-28.480000pt;}
._11{margin-left:-24.704000pt;}
._b{margin-left:-19.526400pt;}
._13{margin-left:-17.792000pt;}
._a{margin-left:-16.800000pt;}
._c{margin-left:-15.296000pt;}
._5{margin-left:-13.641088pt;}
._1c{margin-left:-8.901504pt;}
._1{margin-left:-7.104000pt;}
._6{margin-left:-5.337600pt;}
._2{margin-left:-3.558400pt;}
._0{margin-left:-2.432000pt;}
._3{margin-left:-1.184000pt;}
._4{width:1.184000pt;}
._7{width:2.169600pt;}
._d{width:3.110400pt;}
._e{width:4.000000pt;}
._9{width:5.216000pt;}
._15{width:6.265600pt;}
._8{width:7.283200pt;}
._1d{width:8.742912pt;}
._1a{width:144.000000pt;}
._f{width:146.752000pt;}
._19{width:152.000000pt;}
._16{width:296.795733pt;}
._17{width:481.066667pt;}
._10{width:628.496000pt;}
._1b{width:942.250667pt;}
._14{width:987.056000pt;}
.fs5{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fsa{font-size:37.706667pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs9{font-size:61.333333pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:64.640000pt;}
.fs2{font-size:65.280000pt;}
.fsb{font-size:85.333333pt;}
.fs1{font-size:186.666667pt;}
.y0{bottom:0.000000pt;}
.y16b{bottom:16.062933pt;}
.y2{bottom:25.218533pt;}
.y1{bottom:26.163467pt;}
.yae{bottom:26.456667pt;}
.y14d{bottom:28.913467pt;}
.y188{bottom:30.236133pt;}
.y16a{bottom:35.262933pt;}
.y1a8{bottom:36.070533pt;}
.y10a{bottom:37.656667pt;}
.y133{bottom:37.795333pt;}
.ye3{bottom:38.173333pt;}
.y1f4{bottom:44.409467pt;}
.y1c9{bottom:48.000000pt;}
.y14c{bottom:48.113467pt;}
.ye2{bottom:49.373333pt;}
.y10d{bottom:53.485467pt;}
.y1a7{bottom:55.270533pt;}
.y110{bottom:55.458667pt;}
.y1f3{bottom:55.609467pt;}
.y92{bottom:58.810933pt;}
.y14b{bottom:59.313467pt;}
.y16d{bottom:59.869333pt;}
.y1c8{bottom:60.800000pt;}
.y7e{bottom:63.270933pt;}
.ye1{bottom:68.573333pt;}
.y16c{bottom:73.097733pt;}
.y1c7{bottom:73.600000pt;}
.y63{bottom:79.928533pt;}
.y134{bottom:80.486933pt;}
.y20e{bottom:82.311733pt;}
.ye5{bottom:82.341867pt;}
.yb0{bottom:84.004133pt;}
.y1ab{bottom:85.191067pt;}
.ye0{bottom:87.773333pt;}
.y257{bottom:88.551733pt;}
.y1f6{bottom:90.604533pt;}
.y14e{bottom:92.798800pt;}
.y1f7{bottom:92.890267pt;}
.y62{bottom:99.128533pt;}
.y33{bottom:101.331067pt;}
.y256{bottom:107.751733pt;}
.y1ca{bottom:111.200000pt;}
.y61{bottom:118.328533pt;}
.y32{bottom:120.531067pt;}
.y225{bottom:124.877200pt;}
.y255{bottom:126.951733pt;}
.y31{bottom:139.731067pt;}
.ydf{bottom:141.922400pt;}
.y254{bottom:150.951733pt;}
.y60{bottom:156.728533pt;}
.yde{bottom:157.986400pt;}
.y7{bottom:161.874533pt;}
.ydd{bottom:174.050400pt;}
.y253{bottom:174.951733pt;}
.y5f{bottom:175.928533pt;}
.y1f2{bottom:186.989200pt;}
.y5e{bottom:195.128533pt;}
.y47{bottom:197.614000pt;}
.y252{bottom:198.951733pt;}
.y6{bottom:200.274533pt;}
.ydc{bottom:206.178400pt;}
.y1f1{bottom:206.189200pt;}
.y5d{bottom:214.328533pt;}
.ydb{bottom:222.242400pt;}
.y251{bottom:222.951733pt;}
.y1f0{bottom:225.389200pt;}
.y5c{bottom:233.528533pt;}
.y109{bottom:237.025867pt;}
.yda{bottom:238.306400pt;}
.y5{bottom:238.674533pt;}
.y1ef{bottom:244.589200pt;}
.y250{bottom:246.951733pt;}
.y5b{bottom:252.728533pt;}
.yd9{bottom:254.402533pt;}
.y108{bottom:256.225867pt;}
.y4{bottom:257.874533pt;}
.y24f{bottom:266.151733pt;}
.yd8{bottom:270.466533pt;}
.y5a{bottom:271.928533pt;}
.y7f{bottom:273.980267pt;}
.y107{bottom:275.425867pt;}
.y3{bottom:277.074533pt;}
.y1ee{bottom:283.013200pt;}
.y1b{bottom:283.027467pt;}
.y24e{bottom:285.351733pt;}
.y59{bottom:291.128533pt;}
.y1ed{bottom:302.213200pt;}
.yd7{bottom:302.594533pt;}
.y24d{bottom:304.551733pt;}
.y58{bottom:310.328533pt;}
.y106{bottom:313.825867pt;}
.yd6{bottom:318.658533pt;}
.y1ec{bottom:321.413200pt;}
.y1a{bottom:321.427467pt;}
.y1a6{bottom:323.025200pt;}
.y57{bottom:329.528533pt;}
.y105{bottom:333.025867pt;}
.y14f{bottom:334.260133pt;}
.yd5{bottom:334.722533pt;}
.y1eb{bottom:340.613200pt;}
.y1a5{bottom:343.025200pt;}
.y132{bottom:346.580267pt;}
.y104{bottom:352.226533pt;}
.yaf{bottom:354.754800pt;}
.y1f8{bottom:356.516933pt;}
.y24c{bottom:357.351867pt;}
.y10c{bottom:357.612133pt;}
.y19{bottom:359.827467pt;}
.y1a4{bottom:363.025200pt;}
.y8d{bottom:365.378533pt;}
.y131{bottom:365.780267pt;}
.yd4{bottom:366.850533pt;}
.y22d{bottom:367.394933pt;}
.y56{bottom:367.928533pt;}
.y103{bottom:371.426533pt;}
.y1ea{bottom:379.013200pt;}
.yd3{bottom:382.914533pt;}
.y130{bottom:384.980267pt;}
.y8c{bottom:385.378533pt;}
.y22c{bottom:386.594933pt;}
.y55{bottom:387.128533pt;}
.y102{bottom:390.626533pt;}
.y1e9{bottom:395.077200pt;}
.y18{bottom:398.227467pt;}
.yd2{bottom:398.978533pt;}
.y24b{bottom:400.743733pt;}
.y10f{bottom:402.724000pt;}
.y1a3{bottom:403.025200pt;}
.y12f{bottom:404.180267pt;}
.y1aa{bottom:404.561733pt;}
.y54{bottom:406.328533pt;}
.y101{bottom:409.826533pt;}
.y1e8{bottom:411.141200pt;}
.y24a{bottom:420.135733pt;}
.y1a2{bottom:423.025200pt;}
.y12e{bottom:423.379467pt;}
.y8b{bottom:425.378533pt;}
.y53{bottom:425.528533pt;}
.y1e7{bottom:427.205200pt;}
.y100{bottom:429.026533pt;}
.yd1{bottom:431.106533pt;}
.y20d{bottom:431.965067pt;}
.y17{bottom:436.627467pt;}
.y12d{bottom:442.579467pt;}
.y1a1{bottom:443.025200pt;}
.y1e6{bottom:443.269200pt;}
.y52{bottom:444.728533pt;}
.y8a{bottom:445.378533pt;}
.yd0{bottom:447.191867pt;}
.yff{bottom:448.226533pt;}
.y249{bottom:458.919733pt;}
.y12c{bottom:461.779467pt;}
.y1a0{bottom:463.025200pt;}
.ycf{bottom:463.255867pt;}
.y51{bottom:463.928533pt;}
.y7d{bottom:464.824400pt;}
.y89{bottom:465.378533pt;}
.y1c6{bottom:470.999333pt;}
.y16{bottom:475.027467pt;}
.y248{bottom:478.311733pt;}
.y1e5{bottom:478.533200pt;}
.yce{bottom:479.319867pt;}
.y12b{bottom:480.979467pt;}
.y22b{bottom:482.594933pt;}
.y19f{bottom:483.025200pt;}
.y7c{bottom:484.024400pt;}
.y88{bottom:485.378533pt;}
.yfe{bottom:486.626533pt;}
.y1c5{bottom:490.199333pt;}
.y169{bottom:495.191333pt;}
.ycd{bottom:495.383867pt;}
.y247{bottom:497.703733pt;}
.y1e4{bottom:497.733200pt;}
.y12a{bottom:500.179467pt;}
.y19e{bottom:503.025200pt;}
.y7b{bottom:503.224400pt;}
.y87{bottom:505.378533pt;}
.yfd{bottom:505.826533pt;}
.y187{bottom:507.550400pt;}
.y1c4{bottom:509.399333pt;}
.ycc{bottom:511.447867pt;}
.y15{bottom:513.427467pt;}
.y168{bottom:514.391333pt;}
.y4f{bottom:515.621200pt;}
.y30{bottom:516.232293pt;}
.y1e3{bottom:516.933200pt;}
.y246{bottom:517.095733pt;}
.y129{bottom:519.379467pt;}
.y22a{bottom:520.994933pt;}
.y7a{bottom:522.424400pt;}
.yfc{bottom:525.026533pt;}
.y86{bottom:525.378533pt;}
.y186{bottom:526.750400pt;}
.ycb{bottom:527.511867pt;}
.y1c3{bottom:528.599333pt;}
.y167{bottom:533.591333pt;}
.y4e{bottom:534.821200pt;}
.y2f{bottom:535.424613pt;}
.y1e2{bottom:536.133200pt;}
.y245{bottom:536.487733pt;}
.y128{bottom:538.579467pt;}
.y79{bottom:541.624400pt;}
.y19d{bottom:543.025200pt;}
.yfb{bottom:544.226533pt;}
.y85{bottom:545.378533pt;}
.y185{bottom:545.950400pt;}
.y1c2{bottom:547.799333pt;}
.y14{bottom:551.827467pt;}
.y166{bottom:552.791333pt;}
.y4d{bottom:554.021200pt;}
.y2e{bottom:554.616933pt;}
.y1e1{bottom:555.333200pt;}
.y46{bottom:555.457333pt;}
.y244{bottom:555.879733pt;}
.y127{bottom:557.779467pt;}
.y229{bottom:559.394933pt;}
.y78{bottom:560.824400pt;}
.yca{bottom:562.775867pt;}
.y19c{bottom:563.025200pt;}
.yfa{bottom:563.426533pt;}
.y184{bottom:565.150400pt;}
.y1c1{bottom:566.999333pt;}
.y4c{bottom:573.221200pt;}
.y2d{bottom:573.884133pt;}
.y45{bottom:574.657333pt;}
.y243{bottom:575.271733pt;}
.y126{bottom:576.979467pt;}
.ye4{bottom:577.456533pt;}
.ye6{bottom:578.408533pt;}
.y77{bottom:580.024400pt;}
.yf9{bottom:582.626533pt;}
.y19b{bottom:583.025200pt;}
.y14a{bottom:583.425867pt;}
.y84{bottom:585.378533pt;}
.y1c0{bottom:586.199333pt;}
.y224{bottom:589.690267pt;}
.y13{bottom:590.227467pt;}
.y165{bottom:591.191333pt;}
.y2c{bottom:593.076453pt;}
.y1e0{bottom:593.733200pt;}
.y44{bottom:593.857333pt;}
.y242{bottom:594.663733pt;}
.y228{bottom:597.795067pt;}
.y76{bottom:599.224400pt;}
.yf8{bottom:601.826533pt;}
.y1f5{bottom:601.900533pt;}
.y149{bottom:602.625867pt;}
.yc9{bottom:602.775867pt;}
.y183{bottom:603.550400pt;}
.y83{bottom:605.378533pt;}
.y1bf{bottom:605.399333pt;}
.y223{bottom:609.890267pt;}
.y164{bottom:610.391333pt;}
.y4b{bottom:611.621200pt;}
.y1df{bottom:612.933200pt;}
.y43{bottom:613.057333pt;}
.y241{bottom:614.055733pt;}
.y125{bottom:615.379467pt;}
.y75{bottom:618.424400pt;}
.yad{bottom:620.336133pt;}
.y148{bottom:621.825867pt;}
.y182{bottom:622.750400pt;}
.yc8{bottom:622.775867pt;}
.y19a{bottom:623.025200pt;}
.y82{bottom:625.378533pt;}
.y12{bottom:628.627467pt;}
.y163{bottom:629.591333pt;}
.y222{bottom:630.090267pt;}
.y4a{bottom:630.821200pt;}
.y2b{bottom:631.477413pt;}
.y1de{bottom:632.133200pt;}
.y42{bottom:632.257333pt;}
.y240{bottom:633.447733pt;}
.y124{bottom:634.579467pt;}
.yf7{bottom:640.226533pt;}
.yac{bottom:640.336133pt;}
.y20b{bottom:641.010267pt;}
.y147{bottom:641.025867pt;}
.yc7{bottom:641.447867pt;}
.y181{bottom:641.950400pt;}
.y199{bottom:643.025200pt;}
.y1be{bottom:643.799333pt;}
.y81{bottom:645.378533pt;}
.y162{bottom:648.791333pt;}
.y49{bottom:650.021200pt;}
.y221{bottom:650.290267pt;}
.y2a{bottom:650.669733pt;}
.y1dd{bottom:651.333200pt;}
.y41{bottom:651.457333pt;}
.y23f{bottom:652.839733pt;}
.y74{bottom:656.824400pt;}
.yf6{bottom:659.426533pt;}
.yc6{bottom:660.119867pt;}
.y20a{bottom:660.210267pt;}
.y146{bottom:660.225867pt;}
.yab{bottom:660.336133pt;}
.y180{bottom:661.150400pt;}
.y1bd{bottom:662.999333pt;}
.y198{bottom:663.025200pt;}
.y11{bottom:667.027467pt;}
.y161{bottom:667.991333pt;}
.y48{bottom:669.221200pt;}
.y29{bottom:669.862053pt;}
.y220{bottom:670.490267pt;}
.y1dc{bottom:670.533200pt;}
.y40{bottom:670.657333pt;}
.y10b{bottom:671.314800pt;}
.y23e{bottom:672.231733pt;}
.y123{bottom:672.979467pt;}
.y73{bottom:676.024400pt;}
.yf5{bottom:678.626533pt;}
.yc5{bottom:678.791867pt;}
.y209{bottom:679.410267pt;}
.y145{bottom:679.425867pt;}
.yaa{bottom:680.336133pt;}
.y17f{bottom:680.350400pt;}
.y1bc{bottom:682.199333pt;}
.y197{bottom:683.025200pt;}
.y80{bottom:685.378533pt;}
.y160{bottom:687.191333pt;}
.y28{bottom:689.054373pt;}
.y1db{bottom:689.733200pt;}
.y3f{bottom:689.857333pt;}
.y21f{bottom:690.690267pt;}
.y23d{bottom:691.623733pt;}
.y122{bottom:692.179467pt;}
.y72{bottom:695.224400pt;}
.yc4{bottom:697.463867pt;}
.yf4{bottom:697.826533pt;}
.y208{bottom:698.610267pt;}
.y17e{bottom:699.550400pt;}
.ya9{bottom:700.336133pt;}
.y1bb{bottom:701.399333pt;}
.y196{bottom:703.025200pt;}
.y227{bottom:703.224133pt;}
.y10{bottom:705.427467pt;}
.y50{bottom:707.850267pt;}
.y27{bottom:708.246693pt;}
.y1da{bottom:708.933200pt;}
.y3e{bottom:709.057333pt;}
.y21e{bottom:710.890267pt;}
.y23c{bottom:711.015733pt;}
.y121{bottom:711.379467pt;}
.y71{bottom:714.424400pt;}
.yc3{bottom:716.663867pt;}
.yf3{bottom:717.026533pt;}
.y207{bottom:717.810267pt;}
.y144{bottom:717.825867pt;}
.y17d{bottom:718.750400pt;}
.y1ba{bottom:720.599333pt;}
.y91{bottom:721.599200pt;}
.y195{bottom:723.025200pt;}
.y1a9{bottom:723.932400pt;}
.y15f{bottom:725.591333pt;}
.y23b{bottom:730.407733pt;}
.y120{bottom:730.579467pt;}
.y21d{bottom:731.090267pt;}
.y70{bottom:733.624400pt;}
.yf2{bottom:736.226533pt;}
.y206{bottom:737.010267pt;}
.y143{bottom:737.025867pt;}
.y17c{bottom:737.950400pt;}
.ya8{bottom:740.336133pt;}
.y90{bottom:741.599200pt;}
.y111{bottom:743.642667pt;}
.yf{bottom:743.827467pt;}
.y10e{bottom:744.594667pt;}
.y15e{bottom:744.791333pt;}
.y26{bottom:746.647653pt;}
.y1d9{bottom:747.333200pt;}
.y3d{bottom:747.457467pt;}
.y11f{bottom:749.779467pt;}
.y23a{bottom:749.799733pt;}
.yc2{bottom:751.927867pt;}
.y6f{bottom:752.824400pt;}
.y20c{bottom:753.223733pt;}
.y142{bottom:756.225867pt;}
.y17b{bottom:757.150400pt;}
.y1b9{bottom:758.999333pt;}
.ya7{bottom:760.336133pt;}
.y8f{bottom:761.599200pt;}
.y194{bottom:763.025200pt;}
.y1d8{bottom:763.397200pt;}
.y15d{bottom:763.991333pt;}
.y25{bottom:765.839973pt;}
.y3c{bottom:766.657467pt;}
.yc1{bottom:767.991867pt;}
.y11e{bottom:768.979467pt;}
.y239{bottom:769.191733pt;}
.y21c{bottom:771.490267pt;}
.yf1{bottom:774.626533pt;}
.y205{bottom:775.410267pt;}
.y1b8{bottom:778.199333pt;}
.y1d7{bottom:779.461200pt;}
.ya6{bottom:780.336133pt;}
.y8e{bottom:781.599200pt;}
.ye{bottom:782.227467pt;}
.y193{bottom:783.025200pt;}
.y15c{bottom:783.191333pt;}
.yc0{bottom:784.055867pt;}
.y24{bottom:785.032293pt;}
.y3b{bottom:785.857467pt;}
.y11d{bottom:788.179467pt;}
.y238{bottom:788.583733pt;}
.y6e{bottom:791.224400pt;}
.y21b{bottom:791.690267pt;}
.yf0{bottom:793.826533pt;}
.y204{bottom:794.610267pt;}
.y17a{bottom:795.550400pt;}
.y1b7{bottom:797.399333pt;}
.ybf{bottom:800.119867pt;}
.ya5{bottom:800.336133pt;}
.y15b{bottom:802.391333pt;}
.y192{bottom:803.025200pt;}
.y23{bottom:804.224613pt;}
.y3a{bottom:805.057467pt;}
.y11c{bottom:807.379467pt;}
.y237{bottom:807.975733pt;}
.y6d{bottom:810.424400pt;}
.y1d6{bottom:811.589200pt;}
.y21a{bottom:811.890267pt;}
.yef{bottom:813.026533pt;}
.y203{bottom:813.810267pt;}
.y141{bottom:813.826533pt;}
.y179{bottom:814.750400pt;}
.ybe{bottom:816.183867pt;}
.y1b6{bottom:816.599333pt;}
.ya4{bottom:820.336133pt;}
.yd{bottom:820.627467pt;}
.y15a{bottom:821.591333pt;}
.y191{bottom:823.025200pt;}
.y22{bottom:823.416933pt;}
.y39{bottom:824.257467pt;}
.y11b{bottom:826.579467pt;}
.y236{bottom:827.367733pt;}
.y6c{bottom:829.624400pt;}
.y1d5{bottom:830.789200pt;}
.y219{bottom:832.090267pt;}
.yee{bottom:832.226533pt;}
.ybd{bottom:832.247867pt;}
.y94{bottom:832.463467pt;}
.y202{bottom:833.010267pt;}
.y140{bottom:833.026533pt;}
.y178{bottom:833.950400pt;}
.y1b5{bottom:835.799333pt;}
.ya3{bottom:840.336133pt;}
.y159{bottom:840.791333pt;}
.y190{bottom:843.025200pt;}
.y38{bottom:843.457467pt;}
.y11a{bottom:845.779467pt;}
.y235{bottom:846.759733pt;}
.ybc{bottom:848.311867pt;}
.y6b{bottom:848.824400pt;}
.y1d4{bottom:849.989200pt;}
.yed{bottom:851.426533pt;}
.y13f{bottom:852.226533pt;}
.y177{bottom:853.150400pt;}
.y25d{bottom:858.471733pt;}
.yc{bottom:859.027467pt;}
.y158{bottom:859.991333pt;}
.ya2{bottom:860.336133pt;}
.y21{bottom:861.816933pt;}
.y18f{bottom:863.025200pt;}
.ybb{bottom:864.375867pt;}
.y234{bottom:866.151733pt;}
.y6a{bottom:868.024400pt;}
.y201{bottom:871.410267pt;}
.y176{bottom:872.350400pt;}
.y218{bottom:872.490267pt;}
.y1b4{bottom:874.199333pt;}
.ya1{bottom:880.336133pt;}
.yba{bottom:880.439867pt;}
.y20{bottom:881.016933pt;}
.y37{bottom:881.857467pt;}
.y119{bottom:884.179467pt;}
.y233{bottom:885.543733pt;}
.y69{bottom:887.224400pt;}
.y1d3{bottom:888.389200pt;}
.yec{bottom:889.826533pt;}
.y200{bottom:890.610267pt;}
.y13e{bottom:890.626533pt;}
.y175{bottom:891.550400pt;}
.y217{bottom:892.690267pt;}
.y1b3{bottom:893.399333pt;}
.yb9{bottom:896.503867pt;}
.y25c{bottom:896.871733pt;}
.yb{bottom:897.427467pt;}
.y157{bottom:898.391333pt;}
.y99{bottom:899.602400pt;}
.y1f{bottom:900.216933pt;}
.ya0{bottom:900.336133pt;}
.y36{bottom:901.057467pt;}
.y18e{bottom:903.026533pt;}
.y232{bottom:904.935733pt;}
.y68{bottom:906.424400pt;}
.yeb{bottom:909.026533pt;}
.y1ff{bottom:909.810267pt;}
.y13d{bottom:909.826533pt;}
.y174{bottom:910.750400pt;}
.y1b2{bottom:912.599333pt;}
.y216{bottom:912.890267pt;}
.y156{bottom:917.591333pt;}
.y98{bottom:918.802400pt;}
.y1e{bottom:919.416933pt;}
.y35{bottom:920.257467pt;}
.y118{bottom:922.579467pt;}
.y18d{bottom:923.026533pt;}
.y231{bottom:924.327733pt;}
.y67{bottom:925.624400pt;}
.y1d2{bottom:926.789200pt;}
.yea{bottom:928.226533pt;}
.y1fe{bottom:929.010267pt;}
.y13c{bottom:929.026533pt;}
.y173{bottom:929.950400pt;}
.y1b1{bottom:931.799333pt;}
.y215{bottom:933.090267pt;}
.y25b{bottom:935.271733pt;}
.ya{bottom:935.827467pt;}
.y155{bottom:936.791333pt;}
.y97{bottom:938.002400pt;}
.y1d{bottom:938.616933pt;}
.y34{bottom:939.457467pt;}
.y9f{bottom:940.336133pt;}
.y117{bottom:941.779467pt;}
.y18c{bottom:943.026533pt;}
.y230{bottom:943.719733pt;}
.yb8{bottom:944.722533pt;}
.y66{bottom:944.824400pt;}
.y1d1{bottom:945.989200pt;}
.y226{bottom:946.056133pt;}
.ye9{bottom:947.426533pt;}
.y13b{bottom:948.226533pt;}
.y172{bottom:949.150400pt;}
.y214{bottom:953.290267pt;}
.y154{bottom:955.991333pt;}
.y96{bottom:957.202400pt;}
.y9e{bottom:960.339467pt;}
.yb7{bottom:960.786533pt;}
.y116{bottom:960.979467pt;}
.y18b{bottom:963.026533pt;}
.y22f{bottom:963.111733pt;}
.y65{bottom:964.024400pt;}
.y1d0{bottom:965.189200pt;}
.ye8{bottom:966.626533pt;}
.y1fd{bottom:967.410267pt;}
.y1b0{bottom:970.194533pt;}
.y213{bottom:973.490267pt;}
.y25a{bottom:973.671733pt;}
.y9{bottom:974.227467pt;}
.y95{bottom:976.402400pt;}
.yb6{bottom:976.850533pt;}
.y115{bottom:980.179467pt;}
.y18a{bottom:983.026533pt;}
.y1cf{bottom:984.389200pt;}
.y260{bottom:985.267600pt;}
.y1fc{bottom:986.610267pt;}
.y13a{bottom:986.626533pt;}
.y171{bottom:987.550400pt;}
.y1af{bottom:989.394533pt;}
.yb5{bottom:992.914533pt;}
.y212{bottom:993.690267pt;}
.y153{bottom:994.391333pt;}
.y114{bottom:999.379467pt;}
.y9d{bottom:1000.339467pt;}
.y25f{bottom:1001.336933pt;}
.y1ce{bottom:1003.589200pt;}
.y1fb{bottom:1005.810267pt;}
.y139{bottom:1005.826533pt;}
.y170{bottom:1006.750400pt;}
.y1ae{bottom:1008.594533pt;}
.yb4{bottom:1008.978533pt;}
.y259{bottom:1012.071733pt;}
.y8{bottom:1012.627467pt;}
.y152{bottom:1013.591333pt;}
.y211{bottom:1013.890267pt;}
.y113{bottom:1018.579467pt;}
.y9c{bottom:1020.339467pt;}
.y1cd{bottom:1022.789200pt;}
.ye7{bottom:1024.226533pt;}
.y1fa{bottom:1025.010267pt;}
.y138{bottom:1025.026533pt;}
.yb3{bottom:1025.042533pt;}
.y16f{bottom:1025.950400pt;}
.y1ad{bottom:1027.794533pt;}
.y151{bottom:1032.791333pt;}
.y210{bottom:1034.090267pt;}
.y93{bottom:1036.443467pt;}
.y112{bottom:1037.779467pt;}
.y9b{bottom:1040.339467pt;}
.y22e{bottom:1040.679733pt;}
.y1cc{bottom:1041.989200pt;}
.y189{bottom:1042.226533pt;}
.y137{bottom:1044.226533pt;}
.y16e{bottom:1045.150400pt;}
.y1ac{bottom:1046.994533pt;}
.y1c{bottom:1054.837200pt;}
.y64{bottom:1055.341200pt;}
.yb2{bottom:1057.170533pt;}
.y258{bottom:1060.071733pt;}
.y9a{bottom:1060.339467pt;}
.y1f9{bottom:1063.410267pt;}
.y136{bottom:1063.426533pt;}
.y150{bottom:1069.591333pt;}
.y25e{bottom:1073.183733pt;}
.yb1{bottom:1073.234533pt;}
.y20f{bottom:1073.682267pt;}
.y135{bottom:1080.664000pt;}
.y1cb{bottom:1081.194933pt;}
.h8{height:25.921875pt;}
.h9{height:29.625000pt;}
.he{height:32.229167pt;}
.hc{height:32.757812pt;}
.h12{height:36.833333pt;}
.h19{height:37.437500pt;}
.h3{height:44.437500pt;}
.h6{height:44.468750pt;}
.h1f{height:44.881875pt;}
.h1d{height:44.913437pt;}
.h2{height:45.568000pt;}
.h15{height:46.581406pt;}
.h16{height:46.796875pt;}
.h1b{height:47.123063pt;}
.hb{height:47.143862pt;}
.h14{height:47.219062pt;}
.h18{height:47.219596pt;}
.hf{height:47.222263pt;}
.h17{height:47.238263pt;}
.h13{height:51.476562pt;}
.h1e{height:53.816406pt;}
.h10{height:55.250000pt;}
.hd{height:56.153583pt;}
.h4{height:56.156250pt;}
.h11{height:56.156783pt;}
.h1c{height:56.717812pt;}
.h7{height:57.279375pt;}
.h20{height:57.833333pt;}
.h1a{height:58.254333pt;}
.ha{height:124.414062pt;}
.h5{height:127.421875pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:30.236267pt;}
.x9{left:90.259867pt;}
.x8{left:91.653467pt;}
.xb{left:93.354267pt;}
.xd{left:94.300267pt;}
.xf{left:95.626000pt;}
.x17{left:97.132267pt;}
.x16{left:98.504000pt;}
.x18{left:100.032000pt;}
.xe{left:104.571333pt;}
.x6{left:110.027600pt;}
.x4{left:113.385467pt;}
.x1b{left:133.228267pt;}
.x13{left:147.182000pt;}
.x12{left:149.291333pt;}
.x3{left:158.748267pt;}
.x19{left:207.641067pt;}
.x7{left:221.352933pt;}
.xa{left:271.046267pt;}
.x5{left:278.478267pt;}
.x1a{left:303.697333pt;}
.x11{left:400.819867pt;}
.x15{left:408.419600pt;}
.xc{left:409.450267pt;}
.x10{left:413.480800pt;}
.x14{left:418.658267pt;}
.x1{left:747.401467pt;}
}




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