
    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_2d20006610697dbeaa018e28.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.082000;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_495708ea7b20bcbf37169024.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.081000;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_35218802fd65232b7ed33afd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.934000;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_a2081696b42601da2ed44a11.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926000;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_0cd583ff9691093f314a63e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_026c5576d6091e6cc27bc0d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912000;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;}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-27.972000px;}
.v4{vertical-align:-21.978000px;}
.v2{vertical-align:-19.580400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.966000px;}
.lsd{letter-spacing:-1.260000px;}
.ls10{letter-spacing:-0.588000px;}
.ls7{letter-spacing:-0.294000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.171000px;}
.lsa{letter-spacing:1.029600px;}
.ls9{letter-spacing:1.223400px;}
.ls3{letter-spacing:1.646400px;}
.lsf{letter-spacing:2.036400px;}
.lsb{letter-spacing:4.404600px;}
.lsc{letter-spacing:4.686600px;}
.ls2{letter-spacing:4.924200px;}
.ls1{letter-spacing:5.760000px;}
.ls0{letter-spacing:11.046000px;}
.ls8{letter-spacing:13.680000px;}
.lse{letter-spacing:17.052000px;}
.ls6{letter-spacing:55.639200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-17.136000px;}
.wsac{word-spacing:-14.916000px;}
.ws3{word-spacing:-13.935600px;}
.wsbd{word-spacing:-13.347600px;}
.ws1f{word-spacing:-12.936000px;}
.ws2{word-spacing:-12.642000px;}
.ws0{word-spacing:-9.954000px;}
.ws4{word-spacing:-9.119286px;}
.wsab{word-spacing:-8.694000px;}
.wsc5{word-spacing:-5.997600px;}
.wsc4{word-spacing:-5.586000px;}
.ws11{word-spacing:-4.880400px;}
.wsa0{word-spacing:-4.410000px;}
.ws1d{word-spacing:-3.880800px;}
.ws51{word-spacing:-3.410400px;}
.ws15{word-spacing:-2.998800px;}
.ws6c{word-spacing:-2.763600px;}
.wsb{word-spacing:-2.704800px;}
.ws6a{word-spacing:-2.646000px;}
.wsc3{word-spacing:-2.587200px;}
.ws8d{word-spacing:-2.469600px;}
.ws64{word-spacing:-2.410800px;}
.ws12{word-spacing:-2.352000px;}
.ws27{word-spacing:-2.293200px;}
.ws90{word-spacing:-2.234400px;}
.wsb3{word-spacing:-2.175600px;}
.ws40{word-spacing:-2.116800px;}
.ws8e{word-spacing:-2.058000px;}
.ws8{word-spacing:-1.999200px;}
.wsb0{word-spacing:-1.940400px;}
.ws9a{word-spacing:-1.881600px;}
.ws52{word-spacing:-1.822800px;}
.ws21{word-spacing:-1.764000px;}
.ws67{word-spacing:-1.705200px;}
.ws74{word-spacing:-1.646400px;}
.ws20{word-spacing:-1.587600px;}
.ws7e{word-spacing:-1.528800px;}
.ws82{word-spacing:-1.470000px;}
.ws24{word-spacing:-1.411200px;}
.ws3f{word-spacing:-1.352400px;}
.ws80{word-spacing:-1.293600px;}
.ws7f{word-spacing:-1.234800px;}
.ws73{word-spacing:-1.176000px;}
.ws8f{word-spacing:-1.117200px;}
.ws95{word-spacing:-1.058400px;}
.ws57{word-spacing:-0.999600px;}
.ws54{word-spacing:-0.940800px;}
.ws9f{word-spacing:-0.882000px;}
.wsb4{word-spacing:-0.823200px;}
.ws99{word-spacing:-0.764400px;}
.ws87{word-spacing:-0.705600px;}
.ws88{word-spacing:-0.646800px;}
.wsc{word-spacing:-0.588000px;}
.wsa2{word-spacing:-0.529200px;}
.ws60{word-spacing:-0.470400px;}
.ws62{word-spacing:-0.411600px;}
.wsa8{word-spacing:-0.352800px;}
.ws35{word-spacing:-0.294000px;}
.ws7a{word-spacing:-0.235200px;}
.ws47{word-spacing:-0.176400px;}
.ws77{word-spacing:-0.117600px;}
.ws8a{word-spacing:-0.058800px;}
.ws5{word-spacing:0.000000px;}
.ws4f{word-spacing:0.058800px;}
.ws85{word-spacing:0.117600px;}
.ws37{word-spacing:0.176400px;}
.ws4d{word-spacing:0.235200px;}
.ws68{word-spacing:0.294000px;}
.ws31{word-spacing:0.352800px;}
.ws25{word-spacing:0.411600px;}
.ws84{word-spacing:0.470400px;}
.ws83{word-spacing:0.529200px;}
.ws6e{word-spacing:0.588000px;}
.ws26{word-spacing:0.646800px;}
.ws48{word-spacing:0.705600px;}
.ws45{word-spacing:0.764400px;}
.ws33{word-spacing:0.823200px;}
.ws92{word-spacing:0.882000px;}
.ws3b{word-spacing:0.940800px;}
.ws3a{word-spacing:0.999600px;}
.ws30{word-spacing:1.058400px;}
.ws2a{word-spacing:1.117200px;}
.ws9{word-spacing:1.176000px;}
.ws32{word-spacing:1.234800px;}
.ws76{word-spacing:1.293600px;}
.ws63{word-spacing:1.352400px;}
.ws5e{word-spacing:1.411200px;}
.ws36{word-spacing:1.470000px;}
.ws72{word-spacing:1.528800px;}
.wsa1{word-spacing:1.587600px;}
.ws41{word-spacing:1.646400px;}
.ws38{word-spacing:1.705200px;}
.ws8c{word-spacing:1.764000px;}
.ws1b{word-spacing:1.822800px;}
.ws53{word-spacing:1.881600px;}
.ws2c{word-spacing:1.940400px;}
.ws50{word-spacing:1.999200px;}
.ws43{word-spacing:2.058000px;}
.ws4b{word-spacing:2.116800px;}
.ws9c{word-spacing:2.175600px;}
.ws59{word-spacing:2.234400px;}
.ws97{word-spacing:2.293200px;}
.wsb1{word-spacing:2.352000px;}
.ws29{word-spacing:2.410800px;}
.ws2f{word-spacing:2.469600px;}
.wsa3{word-spacing:2.528400px;}
.ws5f{word-spacing:2.587200px;}
.ws56{word-spacing:2.646000px;}
.ws9b{word-spacing:2.704800px;}
.ws69{word-spacing:2.763600px;}
.ws94{word-spacing:2.822400px;}
.ws3c{word-spacing:2.881200px;}
.ws61{word-spacing:2.940000px;}
.wsd{word-spacing:2.998800px;}
.ws58{word-spacing:3.057600px;}
.wse{word-spacing:3.116400px;}
.ws93{word-spacing:3.175200px;}
.ws13{word-spacing:3.234000px;}
.ws66{word-spacing:3.292800px;}
.ws89{word-spacing:3.351600px;}
.ws2b{word-spacing:3.410400px;}
.ws2d{word-spacing:3.469200px;}
.ws98{word-spacing:3.528000px;}
.ws44{word-spacing:3.586800px;}
.ws16{word-spacing:3.645600px;}
.ws4e{word-spacing:3.704400px;}
.ws6b{word-spacing:3.763200px;}
.ws23{word-spacing:3.822000px;}
.ws96{word-spacing:3.880800px;}
.ws4a{word-spacing:3.939600px;}
.wsb8{word-spacing:4.057200px;}
.ws6f{word-spacing:4.116000px;}
.ws70{word-spacing:4.174800px;}
.ws55{word-spacing:4.292400px;}
.wsb7{word-spacing:4.351200px;}
.ws9d{word-spacing:4.410000px;}
.ws7d{word-spacing:4.468800px;}
.ws81{word-spacing:4.645200px;}
.ws5d{word-spacing:4.704000px;}
.ws91{word-spacing:4.762800px;}
.ws65{word-spacing:4.821600px;}
.ws34{word-spacing:4.880400px;}
.ws7c{word-spacing:4.939200px;}
.ws6d{word-spacing:4.998000px;}
.wsa{word-spacing:5.056800px;}
.ws2e{word-spacing:5.115600px;}
.ws75{word-spacing:5.174400px;}
.wsf{word-spacing:5.233200px;}
.ws71{word-spacing:5.292000px;}
.ws17{word-spacing:5.350800px;}
.ws6{word-spacing:5.409600px;}
.wsa7{word-spacing:5.468400px;}
.ws1c{word-spacing:5.586000px;}
.ws7b{word-spacing:5.880000px;}
.wsaf{word-spacing:5.938800px;}
.ws49{word-spacing:5.997600px;}
.wsad{word-spacing:6.056400px;}
.ws8b{word-spacing:6.115200px;}
.ws4c{word-spacing:6.174000px;}
.ws39{word-spacing:6.291600px;}
.ws3e{word-spacing:6.350400px;}
.ws1e{word-spacing:6.384000px;}
.ws5a{word-spacing:6.409200px;}
.ws18{word-spacing:6.526800px;}
.wsbf{word-spacing:6.585600px;}
.ws1a{word-spacing:6.644400px;}
.ws3d{word-spacing:6.879600px;}
.wsc2{word-spacing:6.938400px;}
.wsaa{word-spacing:6.997200px;}
.wsbe{word-spacing:7.114800px;}
.wsc6{word-spacing:7.173600px;}
.wsa6{word-spacing:7.232400px;}
.wsa4{word-spacing:7.350000px;}
.ws5b{word-spacing:7.408800px;}
.ws42{word-spacing:7.526400px;}
.ws78{word-spacing:7.702800px;}
.ws9e{word-spacing:7.761600px;}
.ws46{word-spacing:7.879200px;}
.ws5c{word-spacing:8.937600px;}
.ws19{word-spacing:8.996400px;}
.ws28{word-spacing:9.231600px;}
.wsb2{word-spacing:9.525600px;}
.ws79{word-spacing:9.702000px;}
.ws14{word-spacing:9.937200px;}
.wsae{word-spacing:10.172400px;}
.ws86{word-spacing:10.525200px;}
.ws10{word-spacing:12.524400px;}
.ws7{word-spacing:14.464800px;}
.wsb9{word-spacing:14.817600px;}
.wsb6{word-spacing:15.817200px;}
.wsba{word-spacing:15.993600px;}
.wsb5{word-spacing:17.052000px;}
.ws22{word-spacing:17.698800px;}
.wsa5{word-spacing:18.084000px;}
.wsc1{word-spacing:19.874400px;}
.wsc0{word-spacing:21.403200px;}
.wsbc{word-spacing:22.579200px;}
.wsbb{word-spacing:24.343200px;}
.wsa9{word-spacing:26.460000px;}
._d{margin-left:-2891.340000px;}
._e{margin-left:-43.335600px;}
._16{margin-left:-34.633800px;}
._1b{margin-left:-32.237400px;}
._15{margin-left:-15.210000px;}
._12{margin-left:-9.900000px;}
._13{margin-left:-8.317080px;}
._8{margin-left:-7.303680px;}
._0{margin-left:-5.674200px;}
._9{margin-left:-4.381800px;}
._5{margin-left:-3.028800px;}
._1{margin-left:-1.896000px;}
._2{width:1.255800px;}
._3{width:2.353800px;}
._14{width:3.651480px;}
._18{width:5.449200px;}
._17{width:6.855600px;}
._7{width:11.253000px;}
._f{width:12.925800px;}
._b{width:17.424000px;}
._c{width:18.808200px;}
._1a{width:21.567600px;}
._19{width:25.302000px;}
._a{width:53.135496px;}
._4{width:77.553600px;}
._11{width:250.729200px;}
._10{width:389.763600px;}
._6{width:943.799400px;}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(207,0,61);}
.fc3{color:rgb(216,51,100);}
.fc1{color:rgb(85,84,84);}
.fc2{color:rgb(87,87,86);}
.fc0{color:rgb(60,60,59);}
.fs5{font-size:34.280400px;}
.fs8{font-size:38.478000px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs6{font-size:48.972000px;}
.fs1{font-size:58.800000px;}
.fs4{font-size:59.466000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:84.000000px;}
.fs3{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:49.274700px;}
.y1{bottom:49.274850px;}
.y31{bottom:74.409450px;}
.y100{bottom:90.994800px;}
.y6f{bottom:90.996150px;}
.y17b{bottom:91.065900px;}
.y1bd{bottom:91.125150px;}
.y237{bottom:91.209750px;}
.y1f8{bottom:91.222650px;}
.ye9{bottom:91.358700px;}
.y30{bottom:93.403950px;}
.y129{bottom:96.228900px;}
.y160{bottom:96.290100px;}
.yad{bottom:99.325500px;}
.yff{bottom:107.580150px;}
.y6e{bottom:107.582850px;}
.y17a{bottom:107.722200px;}
.y1bc{bottom:107.840550px;}
.y236{bottom:108.009750px;}
.y1f7{bottom:108.035850px;}
.ye8{bottom:108.307800px;}
.yac{bottom:113.725500px;}
.ya9{bottom:120.925500px;}
.yfe{bottom:124.165500px;}
.y6d{bottom:124.169550px;}
.y179{bottom:124.378350px;}
.y1bb{bottom:124.556250px;}
.y235{bottom:124.809900px;}
.y1f6{bottom:124.848900px;}
.ye7{bottom:125.256900px;}
.ya6{bottom:128.125500px;}
.ya8{bottom:135.325500px;}
.yfd{bottom:140.750850px;}
.y6c{bottom:140.756100px;}
.y1ba{bottom:141.271800px;}
.y234{bottom:141.610050px;}
.y1f5{bottom:141.661950px;}
.ya5{bottom:142.525500px;}
.ye6{bottom:146.458050px;}
.y178{bottom:149.538600px;}
.ya7{bottom:149.725500px;}
.yab{bottom:156.925500px;}
.yfc{bottom:157.336050px;}
.y6b{bottom:157.342800px;}
.y1b9{bottom:157.987350px;}
.y233{bottom:158.410200px;}
.y1f4{bottom:158.475150px;}
.yaa{bottom:171.325500px;}
.y6a{bottom:173.929350px;}
.y1b8{bottom:174.702900px;}
.y232{bottom:175.210200px;}
.y1f3{bottom:175.288350px;}
.y2f{bottom:175.940400px;}
.ye5{bottom:184.265550px;}
.y69{bottom:190.516050px;}
.y1b7{bottom:191.418450px;}
.y177{bottom:191.706750px;}
.y231{bottom:192.010500px;}
.y1f2{bottom:192.101400px;}
.y2e{bottom:192.440400px;}
.ya4{bottom:195.495300px;}
.yfb{bottom:199.433100px;}
.ye4{bottom:201.214650px;}
.y68{bottom:207.102750px;}
.y1b6{bottom:208.134000px;}
.y230{bottom:208.810500px;}
.y1f1{bottom:208.914600px;}
.y2d{bottom:208.940400px;}
.ye3{bottom:218.163750px;}
.y67{bottom:223.689450px;}
.y1b5{bottom:224.849550px;}
.y2c{bottom:225.440400px;}
.y22f{bottom:225.610650px;}
.y1f0{bottom:225.727650px;}
.ya3{bottom:226.073100px;}
.y194{bottom:235.062450px;}
.ye2{bottom:235.112850px;}
.y66{bottom:240.276000px;}
.y1b4{bottom:241.565100px;}
.y22e{bottom:242.410800px;}
.y1ef{bottom:242.540700px;}
.y193{bottom:251.562450px;}
.ye1{bottom:252.062100px;}
.y65{bottom:256.862700px;}
.y1b3{bottom:258.280650px;}
.y22d{bottom:259.210950px;}
.y1ee{bottom:259.353900px;}
.ya2{bottom:265.118100px;}
.y192{bottom:268.062450px;}
.y2b{bottom:271.940400px;}
.y64{bottom:273.449400px;}
.y22c{bottom:276.011100px;}
.y1ed{bottom:276.167100px;}
.ya1{bottom:281.651250px;}
.y191{bottom:284.562450px;}
.ye0{bottom:285.511200px;}
.y2a{bottom:288.440400px;}
.y63{bottom:290.036100px;}
.y1b2{bottom:291.496200px;}
.y22b{bottom:292.811250px;}
.y1ec{bottom:292.980150px;}
.ya0{bottom:298.184400px;}
.y190{bottom:301.062450px;}
.ydf{bottom:302.460450px;}
.y29{bottom:304.940400px;}
.y62{bottom:306.622650px;}
.y1b1{bottom:308.211750px;}
.y22a{bottom:309.611250px;}
.y1eb{bottom:309.793350px;}
.y9f{bottom:314.717400px;}
.y18f{bottom:317.562450px;}
.yde{bottom:319.409550px;}
.y28{bottom:321.440400px;}
.y61{bottom:323.209350px;}
.y1b0{bottom:324.927300px;}
.y229{bottom:326.411400px;}
.y1ea{bottom:326.606400px;}
.y9e{bottom:331.250550px;}
.ydd{bottom:336.358650px;}
.y27{bottom:337.940400px;}
.y60{bottom:339.795900px;}
.y1af{bottom:341.643000px;}
.y18e{bottom:342.566400px;}
.y228{bottom:343.211550px;}
.y1e9{bottom:347.671650px;}
.y9d{bottom:347.783700px;}
.ydc{bottom:353.307900px;}
.y14b{bottom:354.186900px;}
.y26{bottom:354.440400px;}
.y5f{bottom:356.382600px;}
.y1ae{bottom:358.358400px;}
.y18d{bottom:359.066400px;}
.y227{bottom:360.011700px;}
.y9c{bottom:364.316850px;}
.ydb{bottom:370.257000px;}
.y14a{bottom:370.686900px;}
.y25{bottom:370.940400px;}
.y5e{bottom:372.969300px;}
.y1ad{bottom:375.074100px;}
.y18c{bottom:375.566400px;}
.y226{bottom:376.811850px;}
.y9b{bottom:380.850000px;}
.y149{bottom:387.186900px;}
.yda{bottom:387.206100px;}
.y24{bottom:387.440400px;}
.y5d{bottom:389.556000px;}
.y1ac{bottom:391.789650px;}
.y18b{bottom:392.066400px;}
.y225{bottom:393.612000px;}
.y9a{bottom:397.383150px;}
.y1e8{bottom:401.842950px;}
.y148{bottom:403.686900px;}
.y23{bottom:403.940400px;}
.yd9{bottom:404.155200px;}
.y5c{bottom:406.142550px;}
.y25f{bottom:407.417700px;}
.y1ab{bottom:408.505200px;}
.y18a{bottom:408.566400px;}
.y224{bottom:410.412000px;}
.y99{bottom:413.916150px;}
.y1e7{bottom:418.656150px;}
.y147{bottom:420.186900px;}
.y22{bottom:420.440400px;}
.yd8{bottom:421.104450px;}
.y5b{bottom:422.729250px;}
.y25e{bottom:423.917700px;}
.y189{bottom:425.066400px;}
.y1aa{bottom:425.220750px;}
.y223{bottom:427.212150px;}
.y98{bottom:430.449300px;}
.y1e6{bottom:435.469200px;}
.y146{bottom:436.686900px;}
.y21{bottom:436.940400px;}
.yd7{bottom:438.053550px;}
.y15f{bottom:439.015050px;}
.y5a{bottom:439.315950px;}
.y25d{bottom:440.417700px;}
.y188{bottom:441.566400px;}
.y222{bottom:444.012300px;}
.y1a9{bottom:446.188200px;}
.y97{bottom:446.982450px;}
.y1e5{bottom:452.282400px;}
.y145{bottom:453.186900px;}
.y20{bottom:453.440400px;}
.yd6{bottom:455.002650px;}
.y59{bottom:455.902500px;}
.y128{bottom:456.057750px;}
.y25c{bottom:456.917700px;}
.y187{bottom:458.066400px;}
.y221{bottom:460.812450px;}
.y96{bottom:463.515600px;}
.y1e4{bottom:469.095450px;}
.y144{bottom:469.686900px;}
.y58{bottom:472.489200px;}
.y25b{bottom:473.417700px;}
.y186{bottom:474.566400px;}
.y220{bottom:477.612600px;}
.y15e{bottom:478.156350px;}
.y95{bottom:480.048750px;}
.y1f{bottom:482.696250px;}
.y1a8{bottom:483.762150px;}
.y1e3{bottom:485.908650px;}
.y143{bottom:486.186900px;}
.yd5{bottom:488.451900px;}
.y57{bottom:489.075900px;}
.y25a{bottom:489.917700px;}
.y185{bottom:491.066400px;}
.y21f{bottom:494.412750px;}
.y15d{bottom:494.786100px;}
.y127{bottom:495.138000px;}
.y94{bottom:496.581750px;}
.y1a7{bottom:500.477700px;}
.y142{bottom:502.686900px;}
.y1e2{bottom:502.721700px;}
.yd4{bottom:505.401000px;}
.y56{bottom:505.662450px;}
.y259{bottom:506.417700px;}
.y21e{bottom:511.212750px;}
.y15c{bottom:511.415700px;}
.y126{bottom:511.706400px;}
.y1e{bottom:512.189250px;}
.y93{bottom:513.114900px;}
.y184{bottom:516.070350px;}
.y1a6{bottom:517.193250px;}
.y141{bottom:519.186900px;}
.y1e1{bottom:519.534900px;}
.y55{bottom:522.249150px;}
.yd3{bottom:522.350100px;}
.y258{bottom:522.917700px;}
.y21d{bottom:528.012900px;}
.y15b{bottom:528.045300px;}
.y125{bottom:528.274950px;}
.y92{bottom:529.648050px;}
.y1a5{bottom:533.908800px;}
.y1e0{bottom:536.347950px;}
.y54{bottom:538.835850px;}
.yd2{bottom:539.299350px;}
.y257{bottom:539.417700px;}
.y140{bottom:544.190850px;}
.y15a{bottom:544.674900px;}
.y21c{bottom:544.813050px;}
.y124{bottom:544.843350px;}
.y91{bottom:546.181200px;}
.y1a4{bottom:550.624350px;}
.y1df{bottom:553.161150px;}
.y53{bottom:555.422400px;}
.y256{bottom:555.917700px;}
.yd1{bottom:556.248450px;}
.y183{bottom:558.082050px;}
.y13f{bottom:560.690850px;}
.y159{bottom:561.304500px;}
.y123{bottom:561.411750px;}
.y21b{bottom:561.613200px;}
.y90{bottom:562.714350px;}
.y1a3{bottom:567.339900px;}
.y1de{bottom:569.974200px;}
.y52{bottom:572.009100px;}
.y255{bottom:572.417700px;}
.yd0{bottom:573.197550px;}
.y13e{bottom:577.190850px;}
.y158{bottom:577.934250px;}
.y122{bottom:577.980300px;}
.y21a{bottom:578.413350px;}
.y1d{bottom:578.956200px;}
.y1a2{bottom:584.055450px;}
.y1dd{bottom:586.787400px;}
.y51{bottom:588.595800px;}
.y254{bottom:588.917700px;}
.ycf{bottom:590.146800px;}
.y13d{bottom:593.690850px;}
.y121{bottom:594.548700px;}
.y157{bottom:594.563850px;}
.y219{bottom:595.213500px;}
.y1c{bottom:595.456200px;}
.y8f{bottom:595.747500px;}
.y1a1{bottom:600.771000px;}
.y1dc{bottom:603.600450px;}
.y50{bottom:605.182500px;}
.y253{bottom:605.417700px;}
.yce{bottom:607.095900px;}
.y13c{bottom:610.190850px;}
.y120{bottom:611.117100px;}
.y156{bottom:611.193450px;}
.y1b{bottom:611.956200px;}
.y218{bottom:612.013500px;}
.y8e{bottom:612.280500px;}
.yfa{bottom:617.014800px;}
.y1db{bottom:620.413650px;}
.y4f{bottom:621.769050px;}
.y252{bottom:621.917700px;}
.ycd{bottom:624.045000px;}
.y1a0{bottom:625.990500px;}
.y11f{bottom:627.685650px;}
.y155{bottom:627.823050px;}
.y1a{bottom:628.456200px;}
.y8d{bottom:628.813650px;}
.yf9{bottom:633.600150px;}
.y13b{bottom:635.194800px;}
.y1da{bottom:637.226700px;}
.y4e{bottom:638.355750px;}
.y251{bottom:638.417700px;}
.ycc{bottom:640.994100px;}
.y19f{bottom:642.706050px;}
.y11e{bottom:644.254050px;}
.y154{bottom:644.452650px;}
.y19{bottom:644.956200px;}
.y8c{bottom:645.346800px;}
.y217{bottom:645.613800px;}
.yf8{bottom:650.185350px;}
.y1d9{bottom:654.039900px;}
.y250{bottom:654.917700px;}
.y4d{bottom:654.942450px;}
.ycb{bottom:657.943350px;}
.y19e{bottom:659.421600px;}
.y11d{bottom:660.822450px;}
.y153{bottom:661.082250px;}
.y18{bottom:661.456200px;}
.y8b{bottom:661.879950px;}
.y216{bottom:662.413950px;}
.yf7{bottom:666.770700px;}
.y24f{bottom:671.417700px;}
.y4c{bottom:671.529000px;}
.yca{bottom:674.892450px;}
.y19d{bottom:676.137150px;}
.y13a{bottom:677.206650px;}
.y11c{bottom:677.391000px;}
.y17{bottom:677.956200px;}
.y8a{bottom:678.413100px;}
.y215{bottom:679.214100px;}
.yf6{bottom:683.356050px;}
.y152{bottom:686.215800px;}
.y1d8{bottom:687.353100px;}
.y24e{bottom:687.917700px;}
.y4b{bottom:688.115700px;}
.yc9{bottom:691.841700px;}
.y19c{bottom:692.852700px;}
.y11b{bottom:693.959400px;}
.y16{bottom:694.456200px;}
.y89{bottom:694.946250px;}
.y214{bottom:696.014250px;}
.yf5{bottom:699.941250px;}
.y151{bottom:702.845550px;}
.y1d7{bottom:704.166150px;}
.y24d{bottom:704.417700px;}
.yc8{bottom:708.790800px;}
.y4a{bottom:708.954300px;}
.y19b{bottom:709.568250px;}
.y11a{bottom:710.527800px;}
.y15{bottom:710.956200px;}
.y88{bottom:711.479250px;}
.y213{bottom:712.814400px;}
.yf4{bottom:716.526600px;}
.y150{bottom:719.475150px;}
.y24c{bottom:720.917700px;}
.y1d6{bottom:720.979350px;}
.yc7{bottom:725.739900px;}
.y19a{bottom:726.283800px;}
.y119{bottom:727.096350px;}
.y14{bottom:727.456200px;}
.y87{bottom:728.012400px;}
.y212{bottom:729.614400px;}
.yf3{bottom:733.111950px;}
.y14f{bottom:736.104750px;}
.y24b{bottom:737.417700px;}
.y1d5{bottom:737.792400px;}
.yc6{bottom:742.689000px;}
.y199{bottom:742.999350px;}
.y118{bottom:743.664750px;}
.y13{bottom:743.956200px;}
.y49{bottom:746.399250px;}
.y211{bottom:746.414550px;}
.yf2{bottom:749.697300px;}
.y24a{bottom:753.917700px;}
.y1d4{bottom:754.605450px;}
.yc5{bottom:759.638250px;}
.y198{bottom:759.715050px;}
.y117{bottom:760.233150px;}
.y12{bottom:760.456200px;}
.y176{bottom:760.459350px;}
.y86{bottom:761.045550px;}
.y14e{bottom:761.238300px;}
.y48{bottom:762.985950px;}
.y210{bottom:763.214700px;}
.yf1{bottom:766.282500px;}
.y249{bottom:770.417700px;}
.y1d3{bottom:771.418650px;}
.yc4{bottom:776.587350px;}
.y116{bottom:776.801700px;}
.y11{bottom:776.956200px;}
.y85{bottom:777.578700px;}
.y47{bottom:779.572500px;}
.y20f{bottom:780.014850px;}
.y197{bottom:784.934550px;}
.y248{bottom:786.917700px;}
.y1d2{bottom:788.231850px;}
.y115{bottom:793.370100px;}
.yc3{bottom:793.536450px;}
.y84{bottom:794.111850px;}
.y46{bottom:796.159200px;}
.y20e{bottom:796.815000px;}
.y10{bottom:798.351300px;}
.y175{bottom:799.627500px;}
.y14d{bottom:803.379750px;}
.y247{bottom:803.417700px;}
.y1d1{bottom:805.044900px;}
.yf0{bottom:808.379700px;}
.y114{bottom:809.938500px;}
.yc2{bottom:810.485550px;}
.y83{bottom:810.645000px;}
.y45{bottom:812.745900px;}
.y20d{bottom:813.615000px;}
.y174{bottom:816.283800px;}
.y246{bottom:819.917700px;}
.y1d0{bottom:821.858100px;}
.y113{bottom:826.506900px;}
.yf{bottom:826.963950px;}
.y196{bottom:827.161800px;}
.y82{bottom:827.178150px;}
.yc1{bottom:827.434800px;}
.y44{bottom:829.332450px;}
.y20c{bottom:830.415150px;}
.y173{bottom:832.940100px;}
.y245{bottom:836.417700px;}
.y1cf{bottom:838.671150px;}
.y112{bottom:843.075450px;}
.y81{bottom:843.711150px;}
.yc0{bottom:844.383900px;}
.y43{bottom:845.919150px;}
.y20b{bottom:847.215300px;}
.y195{bottom:849.128400px;}
.y172{bottom:849.596400px;}
.y244{bottom:852.917700px;}
.y1ce{bottom:855.484350px;}
.y111{bottom:859.643850px;}
.y80{bottom:860.244300px;}
.ye{bottom:860.471850px;}
.ybf{bottom:861.333000px;}
.y42{bottom:862.505850px;}
.y139{bottom:862.898100px;}
.y20a{bottom:864.015450px;}
.y171{bottom:866.252700px;}
.y243{bottom:869.417700px;}
.y1cd{bottom:872.297400px;}
.yd{bottom:874.721850px;}
.y7f{bottom:876.777450px;}
.ybe{bottom:878.282250px;}
.y41{bottom:879.092400px;}
.y110{bottom:880.464300px;}
.y209{bottom:880.815600px;}
.y170{bottom:882.909000px;}
.y242{bottom:885.917700px;}
.y1cc{bottom:889.110600px;}
.yc{bottom:893.223750px;}
.y7e{bottom:893.310600px;}
.ybd{bottom:895.231350px;}
.y40{bottom:895.679100px;}
.y208{bottom:897.615750px;}
.y16f{bottom:899.565300px;}
.y138{bottom:901.909950px;}
.y241{bottom:902.417700px;}
.y1cb{bottom:905.923650px;}
.yb{bottom:907.473750px;}
.y7d{bottom:909.843750px;}
.ybc{bottom:912.180600px;}
.y3f{bottom:912.265800px;}
.y207{bottom:914.415900px;}
.y16e{bottom:916.221600px;}
.y10f{bottom:917.891100px;}
.y137{bottom:918.409950px;}
.y240{bottom:918.917700px;}
.y1ca{bottom:922.736850px;}
.ya{bottom:925.975800px;}
.y3e{bottom:928.852500px;}
.ybb{bottom:929.129700px;}
.y7c{bottom:930.628800px;}
.y206{bottom:931.216050px;}
.y16d{bottom:932.877900px;}
.y10e{bottom:934.459500px;}
.y136{bottom:934.909950px;}
.y23f{bottom:935.417700px;}
.y1c9{bottom:939.549900px;}
.y9{bottom:940.225800px;}
.y3d{bottom:945.439050px;}
.yba{bottom:946.078800px;}
.y205{bottom:948.016050px;}
.y16c{bottom:949.534200px;}
.y10d{bottom:951.027900px;}
.y135{bottom:951.409950px;}
.y23e{bottom:951.917700px;}
.y1c8{bottom:956.363100px;}
.y3c{bottom:962.025750px;}
.yb9{bottom:963.028050px;}
.y204{bottom:964.816200px;}
.y16b{bottom:966.190500px;}
.y10c{bottom:967.596300px;}
.y134{bottom:967.909950px;}
.y7b{bottom:968.020200px;}
.y23d{bottom:968.417700px;}
.y1c7{bottom:977.428200px;}
.y3b{bottom:978.612450px;}
.yb8{bottom:979.977150px;}
.y203{bottom:981.616350px;}
.y16a{bottom:982.846800px;}
.y8{bottom:982.877550px;}
.y10b{bottom:984.164850px;}
.y133{bottom:984.409950px;}
.y7a{bottom:984.553350px;}
.y23c{bottom:984.917700px;}
.y3a{bottom:995.199000px;}
.yb7{bottom:996.926250px;}
.y202{bottom:998.416500px;}
.y169{bottom:999.503100px;}
.y10a{bottom:1000.733250px;}
.y132{bottom:1000.909950px;}
.y79{bottom:1001.086500px;}
.y23b{bottom:1001.417700px;}
.y7{bottom:1009.877550px;}
.y39{bottom:1011.785700px;}
.yb6{bottom:1013.875350px;}
.y1c6{bottom:1015.099500px;}
.y201{bottom:1015.216650px;}
.y168{bottom:1016.159400px;}
.y109{bottom:1017.301650px;}
.y131{bottom:1017.409950px;}
.y78{bottom:1017.619650px;}
.y23a{bottom:1017.917700px;}
.y38{bottom:1028.372250px;}
.y182{bottom:1028.405850px;}
.yb5{bottom:1030.824600px;}
.y1c5{bottom:1031.912700px;}
.y200{bottom:1032.016800px;}
.y108{bottom:1033.870200px;}
.y130{bottom:1033.909950px;}
.y77{bottom:1034.152800px;}
.y239{bottom:1034.417700px;}
.y6{bottom:1036.877550px;}
.y167{bottom:1041.319650px;}
.y37{bottom:1044.958950px;}
.yb4{bottom:1047.773700px;}
.y1c4{bottom:1048.725900px;}
.y1ff{bottom:1048.816800px;}
.y107{bottom:1050.438600px;}
.y76{bottom:1050.685800px;}
.y238{bottom:1050.917700px;}
.y166{bottom:1057.975950px;}
.y12f{bottom:1058.913750px;}
.yb3{bottom:1064.722800px;}
.y1c3{bottom:1065.538950px;}
.y1fe{bottom:1065.616950px;}
.y36{bottom:1065.797550px;}
.yef{bottom:1066.905900px;}
.y106{bottom:1067.007000px;}
.y75{bottom:1067.218950px;}
.y181{bottom:1067.417700px;}
.y165{bottom:1074.632250px;}
.y12e{bottom:1075.413750px;}
.yb2{bottom:1081.672050px;}
.y1c2{bottom:1082.352150px;}
.y1fd{bottom:1082.417100px;}
.yee{bottom:1083.491250px;}
.y105{bottom:1083.575550px;}
.y74{bottom:1083.752100px;}
.y180{bottom:1083.917700px;}
.y164{bottom:1091.288700px;}
.y12d{bottom:1091.913750px;}
.yb1{bottom:1098.621150px;}
.y1c1{bottom:1099.165200px;}
.y1fc{bottom:1099.217250px;}
.y4{bottom:1099.275600px;}
.yed{bottom:1100.076450px;}
.y104{bottom:1100.143950px;}
.y73{bottom:1100.285250px;}
.y17f{bottom:1100.417700px;}
.y163{bottom:1107.944850px;}
.y12c{bottom:1108.413750px;}
.y3{bottom:1114.275600px;}
.y5{bottom:1115.204400px;}
.yb0{bottom:1115.570400px;}
.y1c0{bottom:1115.978400px;}
.y1fb{bottom:1116.017400px;}
.yec{bottom:1116.661800px;}
.y103{bottom:1116.712350px;}
.y72{bottom:1116.818400px;}
.y17e{bottom:1116.917700px;}
.y162{bottom:1124.601150px;}
.y12b{bottom:1124.913750px;}
.yaf{bottom:1132.519350px;}
.y1bf{bottom:1132.791450px;}
.y1fa{bottom:1132.817550px;}
.y35{bottom:1133.244450px;}
.yeb{bottom:1133.247150px;}
.y102{bottom:1133.280900px;}
.y71{bottom:1133.351550px;}
.y17d{bottom:1133.417700px;}
.y161{bottom:1141.257450px;}
.y12a{bottom:1141.413900px;}
.yae{bottom:1149.468600px;}
.y1be{bottom:1149.604650px;}
.y1f9{bottom:1149.617550px;}
.y34{bottom:1149.831150px;}
.yea{bottom:1149.832350px;}
.y101{bottom:1149.849300px;}
.y70{bottom:1149.884550px;}
.y17c{bottom:1149.917700px;}
.y33{bottom:1166.417700px;}
.y14c{bottom:1168.507500px;}
.y32{bottom:1205.693550px;}
.h8{height:32.575200px;}
.hc{height:34.129986px;}
.h7{height:35.424000px;}
.he{height:35.808000px;}
.ha{height:36.141336px;}
.h2{height:37.254000px;}
.h4{height:42.576000px;}
.h3{height:43.864800px;}
.hd{height:48.708000px;}
.h9{height:52.155600px;}
.hb{height:61.992000px;}
.h5{height:75.276000px;}
.h6{height:77.851908px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x5{left:87.587700px;}
.x3{left:92.735400px;}
.x8{left:97.795200px;}
.x6{left:101.445450px;}
.xa{left:106.299150px;}
.x29{left:114.803100px;}
.x1c{left:127.559100px;}
.x24{left:144.511350px;}
.x1b{left:163.650900px;}
.x1d{left:170.827050px;}
.x1f{left:173.976900px;}
.xd{left:190.856850px;}
.xe{left:192.692850px;}
.x18{left:206.688450px;}
.x28{left:207.774300px;}
.x19{left:259.343250px;}
.x9{left:279.949650px;}
.x7{left:287.095350px;}
.x1e{left:288.616800px;}
.xb{left:289.695900px;}
.xc{left:341.500050px;}
.x23{left:348.549900px;}
.x22{left:350.865750px;}
.x26{left:357.873900px;}
.x20{left:359.841900px;}
.x17{left:368.715900px;}
.x10{left:397.413600px;}
.xf{left:413.709150px;}
.x27{left:489.144900px;}
.x21{left:540.852750px;}
.x1a{left:563.084850px;}
.x11{left:568.864800px;}
.x14{left:580.930500px;}
.x13{left:584.002350px;}
.x12{left:589.822050px;}
.x15{left:595.186200px;}
.x16{left:617.217600px;}
.x4{left:722.277600px;}
.x25{left:788.942850px;}
.x1{left:791.273850px;}
@media print{
.v3{vertical-align:-24.864000pt;}
.v4{vertical-align:-19.536000pt;}
.v2{vertical-align:-17.404800pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:30.192000pt;}
.lsd{letter-spacing:-1.120000pt;}
.ls10{letter-spacing:-0.522667pt;}
.ls7{letter-spacing:-0.261333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.152000pt;}
.lsa{letter-spacing:0.915200pt;}
.ls9{letter-spacing:1.087467pt;}
.ls3{letter-spacing:1.463467pt;}
.lsf{letter-spacing:1.810133pt;}
.lsb{letter-spacing:3.915200pt;}
.lsc{letter-spacing:4.165867pt;}
.ls2{letter-spacing:4.377067pt;}
.ls1{letter-spacing:5.120000pt;}
.ls0{letter-spacing:9.818667pt;}
.ls8{letter-spacing:12.160000pt;}
.lse{letter-spacing:15.157333pt;}
.ls6{letter-spacing:49.457067pt;}
.ws1{word-spacing:-15.232000pt;}
.wsac{word-spacing:-13.258667pt;}
.ws3{word-spacing:-12.387200pt;}
.wsbd{word-spacing:-11.864533pt;}
.ws1f{word-spacing:-11.498667pt;}
.ws2{word-spacing:-11.237333pt;}
.ws0{word-spacing:-8.848000pt;}
.ws4{word-spacing:-8.106032pt;}
.wsab{word-spacing:-7.728000pt;}
.wsc5{word-spacing:-5.331200pt;}
.wsc4{word-spacing:-4.965333pt;}
.ws11{word-spacing:-4.338133pt;}
.wsa0{word-spacing:-3.920000pt;}
.ws1d{word-spacing:-3.449600pt;}
.ws51{word-spacing:-3.031467pt;}
.ws15{word-spacing:-2.665600pt;}
.ws6c{word-spacing:-2.456533pt;}
.wsb{word-spacing:-2.404267pt;}
.ws6a{word-spacing:-2.352000pt;}
.wsc3{word-spacing:-2.299733pt;}
.ws8d{word-spacing:-2.195200pt;}
.ws64{word-spacing:-2.142933pt;}
.ws12{word-spacing:-2.090667pt;}
.ws27{word-spacing:-2.038400pt;}
.ws90{word-spacing:-1.986133pt;}
.wsb3{word-spacing:-1.933867pt;}
.ws40{word-spacing:-1.881600pt;}
.ws8e{word-spacing:-1.829333pt;}
.ws8{word-spacing:-1.777067pt;}
.wsb0{word-spacing:-1.724800pt;}
.ws9a{word-spacing:-1.672533pt;}
.ws52{word-spacing:-1.620267pt;}
.ws21{word-spacing:-1.568000pt;}
.ws67{word-spacing:-1.515733pt;}
.ws74{word-spacing:-1.463467pt;}
.ws20{word-spacing:-1.411200pt;}
.ws7e{word-spacing:-1.358933pt;}
.ws82{word-spacing:-1.306667pt;}
.ws24{word-spacing:-1.254400pt;}
.ws3f{word-spacing:-1.202133pt;}
.ws80{word-spacing:-1.149867pt;}
.ws7f{word-spacing:-1.097600pt;}
.ws73{word-spacing:-1.045333pt;}
.ws8f{word-spacing:-0.993067pt;}
.ws95{word-spacing:-0.940800pt;}
.ws57{word-spacing:-0.888533pt;}
.ws54{word-spacing:-0.836267pt;}
.ws9f{word-spacing:-0.784000pt;}
.wsb4{word-spacing:-0.731733pt;}
.ws99{word-spacing:-0.679467pt;}
.ws87{word-spacing:-0.627200pt;}
.ws88{word-spacing:-0.574933pt;}
.wsc{word-spacing:-0.522667pt;}
.wsa2{word-spacing:-0.470400pt;}
.ws60{word-spacing:-0.418133pt;}
.ws62{word-spacing:-0.365867pt;}
.wsa8{word-spacing:-0.313600pt;}
.ws35{word-spacing:-0.261333pt;}
.ws7a{word-spacing:-0.209067pt;}
.ws47{word-spacing:-0.156800pt;}
.ws77{word-spacing:-0.104533pt;}
.ws8a{word-spacing:-0.052267pt;}
.ws5{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.052267pt;}
.ws85{word-spacing:0.104533pt;}
.ws37{word-spacing:0.156800pt;}
.ws4d{word-spacing:0.209067pt;}
.ws68{word-spacing:0.261333pt;}
.ws31{word-spacing:0.313600pt;}
.ws25{word-spacing:0.365867pt;}
.ws84{word-spacing:0.418133pt;}
.ws83{word-spacing:0.470400pt;}
.ws6e{word-spacing:0.522667pt;}
.ws26{word-spacing:0.574933pt;}
.ws48{word-spacing:0.627200pt;}
.ws45{word-spacing:0.679467pt;}
.ws33{word-spacing:0.731733pt;}
.ws92{word-spacing:0.784000pt;}
.ws3b{word-spacing:0.836267pt;}
.ws3a{word-spacing:0.888533pt;}
.ws30{word-spacing:0.940800pt;}
.ws2a{word-spacing:0.993067pt;}
.ws9{word-spacing:1.045333pt;}
.ws32{word-spacing:1.097600pt;}
.ws76{word-spacing:1.149867pt;}
.ws63{word-spacing:1.202133pt;}
.ws5e{word-spacing:1.254400pt;}
.ws36{word-spacing:1.306667pt;}
.ws72{word-spacing:1.358933pt;}
.wsa1{word-spacing:1.411200pt;}
.ws41{word-spacing:1.463467pt;}
.ws38{word-spacing:1.515733pt;}
.ws8c{word-spacing:1.568000pt;}
.ws1b{word-spacing:1.620267pt;}
.ws53{word-spacing:1.672533pt;}
.ws2c{word-spacing:1.724800pt;}
.ws50{word-spacing:1.777067pt;}
.ws43{word-spacing:1.829333pt;}
.ws4b{word-spacing:1.881600pt;}
.ws9c{word-spacing:1.933867pt;}
.ws59{word-spacing:1.986133pt;}
.ws97{word-spacing:2.038400pt;}
.wsb1{word-spacing:2.090667pt;}
.ws29{word-spacing:2.142933pt;}
.ws2f{word-spacing:2.195200pt;}
.wsa3{word-spacing:2.247467pt;}
.ws5f{word-spacing:2.299733pt;}
.ws56{word-spacing:2.352000pt;}
.ws9b{word-spacing:2.404267pt;}
.ws69{word-spacing:2.456533pt;}
.ws94{word-spacing:2.508800pt;}
.ws3c{word-spacing:2.561067pt;}
.ws61{word-spacing:2.613333pt;}
.wsd{word-spacing:2.665600pt;}
.ws58{word-spacing:2.717867pt;}
.wse{word-spacing:2.770133pt;}
.ws93{word-spacing:2.822400pt;}
.ws13{word-spacing:2.874667pt;}
.ws66{word-spacing:2.926933pt;}
.ws89{word-spacing:2.979200pt;}
.ws2b{word-spacing:3.031467pt;}
.ws2d{word-spacing:3.083733pt;}
.ws98{word-spacing:3.136000pt;}
.ws44{word-spacing:3.188267pt;}
.ws16{word-spacing:3.240533pt;}
.ws4e{word-spacing:3.292800pt;}
.ws6b{word-spacing:3.345067pt;}
.ws23{word-spacing:3.397333pt;}
.ws96{word-spacing:3.449600pt;}
.ws4a{word-spacing:3.501867pt;}
.wsb8{word-spacing:3.606400pt;}
.ws6f{word-spacing:3.658667pt;}
.ws70{word-spacing:3.710933pt;}
.ws55{word-spacing:3.815467pt;}
.wsb7{word-spacing:3.867733pt;}
.ws9d{word-spacing:3.920000pt;}
.ws7d{word-spacing:3.972267pt;}
.ws81{word-spacing:4.129067pt;}
.ws5d{word-spacing:4.181333pt;}
.ws91{word-spacing:4.233600pt;}
.ws65{word-spacing:4.285867pt;}
.ws34{word-spacing:4.338133pt;}
.ws7c{word-spacing:4.390400pt;}
.ws6d{word-spacing:4.442667pt;}
.wsa{word-spacing:4.494933pt;}
.ws2e{word-spacing:4.547200pt;}
.ws75{word-spacing:4.599467pt;}
.wsf{word-spacing:4.651733pt;}
.ws71{word-spacing:4.704000pt;}
.ws17{word-spacing:4.756267pt;}
.ws6{word-spacing:4.808533pt;}
.wsa7{word-spacing:4.860800pt;}
.ws1c{word-spacing:4.965333pt;}
.ws7b{word-spacing:5.226667pt;}
.wsaf{word-spacing:5.278933pt;}
.ws49{word-spacing:5.331200pt;}
.wsad{word-spacing:5.383467pt;}
.ws8b{word-spacing:5.435733pt;}
.ws4c{word-spacing:5.488000pt;}
.ws39{word-spacing:5.592533pt;}
.ws3e{word-spacing:5.644800pt;}
.ws1e{word-spacing:5.674667pt;}
.ws5a{word-spacing:5.697067pt;}
.ws18{word-spacing:5.801600pt;}
.wsbf{word-spacing:5.853867pt;}
.ws1a{word-spacing:5.906133pt;}
.ws3d{word-spacing:6.115200pt;}
.wsc2{word-spacing:6.167467pt;}
.wsaa{word-spacing:6.219733pt;}
.wsbe{word-spacing:6.324267pt;}
.wsc6{word-spacing:6.376533pt;}
.wsa6{word-spacing:6.428800pt;}
.wsa4{word-spacing:6.533333pt;}
.ws5b{word-spacing:6.585600pt;}
.ws42{word-spacing:6.690133pt;}
.ws78{word-spacing:6.846933pt;}
.ws9e{word-spacing:6.899200pt;}
.ws46{word-spacing:7.003733pt;}
.ws5c{word-spacing:7.944533pt;}
.ws19{word-spacing:7.996800pt;}
.ws28{word-spacing:8.205867pt;}
.wsb2{word-spacing:8.467200pt;}
.ws79{word-spacing:8.624000pt;}
.ws14{word-spacing:8.833067pt;}
.wsae{word-spacing:9.042133pt;}
.ws86{word-spacing:9.355733pt;}
.ws10{word-spacing:11.132800pt;}
.ws7{word-spacing:12.857600pt;}
.wsb9{word-spacing:13.171200pt;}
.wsb6{word-spacing:14.059733pt;}
.wsba{word-spacing:14.216533pt;}
.wsb5{word-spacing:15.157333pt;}
.ws22{word-spacing:15.732267pt;}
.wsa5{word-spacing:16.074667pt;}
.wsc1{word-spacing:17.666133pt;}
.wsc0{word-spacing:19.025067pt;}
.wsbc{word-spacing:20.070400pt;}
.wsbb{word-spacing:21.638400pt;}
.wsa9{word-spacing:23.520000pt;}
._d{margin-left:-2570.080000pt;}
._e{margin-left:-38.520533pt;}
._16{margin-left:-30.785600pt;}
._1b{margin-left:-28.655467pt;}
._15{margin-left:-13.520000pt;}
._12{margin-left:-8.800000pt;}
._13{margin-left:-7.392960pt;}
._8{margin-left:-6.492160pt;}
._0{margin-left:-5.043733pt;}
._9{margin-left:-3.894933pt;}
._5{margin-left:-2.692267pt;}
._1{margin-left:-1.685333pt;}
._2{width:1.116267pt;}
._3{width:2.092267pt;}
._14{width:3.245760pt;}
._18{width:4.843733pt;}
._17{width:6.093867pt;}
._7{width:10.002667pt;}
._f{width:11.489600pt;}
._b{width:15.488000pt;}
._c{width:16.718400pt;}
._1a{width:19.171200pt;}
._19{width:22.490667pt;}
._a{width:47.231552pt;}
._4{width:68.936533pt;}
._11{width:222.870400pt;}
._10{width:346.456533pt;}
._6{width:838.932800pt;}
.fs5{font-size:30.471467pt;}
.fs8{font-size:34.202667pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:43.530667pt;}
.fs1{font-size:52.266667pt;}
.fs4{font-size:52.858667pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:74.666667pt;}
.fs3{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:43.799733pt;}
.y1{bottom:43.799867pt;}
.y31{bottom:66.141733pt;}
.y100{bottom:80.884267pt;}
.y6f{bottom:80.885467pt;}
.y17b{bottom:80.947467pt;}
.y1bd{bottom:81.000133pt;}
.y237{bottom:81.075333pt;}
.y1f8{bottom:81.086800pt;}
.ye9{bottom:81.207733pt;}
.y30{bottom:83.025733pt;}
.y129{bottom:85.536800pt;}
.y160{bottom:85.591200pt;}
.yad{bottom:88.289333pt;}
.yff{bottom:95.626800pt;}
.y6e{bottom:95.629200pt;}
.y17a{bottom:95.753067pt;}
.y1bc{bottom:95.858267pt;}
.y236{bottom:96.008667pt;}
.y1f7{bottom:96.031867pt;}
.ye8{bottom:96.273600pt;}
.yac{bottom:101.089333pt;}
.ya9{bottom:107.489333pt;}
.yfe{bottom:110.369333pt;}
.y6d{bottom:110.372933pt;}
.y179{bottom:110.558533pt;}
.y1bb{bottom:110.716667pt;}
.y235{bottom:110.942133pt;}
.y1f6{bottom:110.976800pt;}
.ye7{bottom:111.339467pt;}
.ya6{bottom:113.889333pt;}
.ya8{bottom:120.289333pt;}
.yfd{bottom:125.111867pt;}
.y6c{bottom:125.116533pt;}
.y1ba{bottom:125.574933pt;}
.y234{bottom:125.875600pt;}
.y1f5{bottom:125.921733pt;}
.ya5{bottom:126.689333pt;}
.ye6{bottom:130.184933pt;}
.y178{bottom:132.923200pt;}
.ya7{bottom:133.089333pt;}
.yab{bottom:139.489333pt;}
.yfc{bottom:139.854267pt;}
.y6b{bottom:139.860267pt;}
.y1b9{bottom:140.433200pt;}
.y233{bottom:140.809067pt;}
.y1f4{bottom:140.866800pt;}
.yaa{bottom:152.289333pt;}
.y6a{bottom:154.603867pt;}
.y1b8{bottom:155.291467pt;}
.y232{bottom:155.742400pt;}
.y1f3{bottom:155.811867pt;}
.y2f{bottom:156.391467pt;}
.ye5{bottom:163.791600pt;}
.y69{bottom:169.347600pt;}
.y1b7{bottom:170.149733pt;}
.y177{bottom:170.406000pt;}
.y231{bottom:170.676000pt;}
.y1f2{bottom:170.756800pt;}
.y2e{bottom:171.058133pt;}
.ya4{bottom:173.773600pt;}
.yfb{bottom:177.273867pt;}
.ye4{bottom:178.857467pt;}
.y68{bottom:184.091333pt;}
.y1b6{bottom:185.008000pt;}
.y230{bottom:185.609333pt;}
.y1f1{bottom:185.701867pt;}
.y2d{bottom:185.724800pt;}
.ye3{bottom:193.923333pt;}
.y67{bottom:198.835067pt;}
.y1b5{bottom:199.866267pt;}
.y2c{bottom:200.391467pt;}
.y22f{bottom:200.542800pt;}
.y1f0{bottom:200.646800pt;}
.ya3{bottom:200.953867pt;}
.y194{bottom:208.944400pt;}
.ye2{bottom:208.989200pt;}
.y66{bottom:213.578667pt;}
.y1b4{bottom:214.724533pt;}
.y22e{bottom:215.476267pt;}
.y1ef{bottom:215.591733pt;}
.y193{bottom:223.611067pt;}
.ye1{bottom:224.055200pt;}
.y65{bottom:228.322400pt;}
.y1b3{bottom:229.582800pt;}
.y22d{bottom:230.409733pt;}
.y1ee{bottom:230.536800pt;}
.ya2{bottom:235.660533pt;}
.y192{bottom:238.277733pt;}
.y2b{bottom:241.724800pt;}
.y64{bottom:243.066133pt;}
.y22c{bottom:245.343200pt;}
.y1ed{bottom:245.481867pt;}
.ya1{bottom:250.356667pt;}
.y191{bottom:252.944400pt;}
.ye0{bottom:253.787733pt;}
.y2a{bottom:256.391467pt;}
.y63{bottom:257.809867pt;}
.y1b2{bottom:259.107733pt;}
.y22b{bottom:260.276667pt;}
.y1ec{bottom:260.426800pt;}
.ya0{bottom:265.052800pt;}
.y190{bottom:267.611067pt;}
.ydf{bottom:268.853733pt;}
.y29{bottom:271.058133pt;}
.y62{bottom:272.553467pt;}
.y1b1{bottom:273.966000pt;}
.y22a{bottom:275.210000pt;}
.y1eb{bottom:275.371867pt;}
.y9f{bottom:279.748800pt;}
.y18f{bottom:282.277733pt;}
.yde{bottom:283.919600pt;}
.y28{bottom:285.724800pt;}
.y61{bottom:287.297200pt;}
.y1b0{bottom:288.824267pt;}
.y229{bottom:290.143467pt;}
.y1ea{bottom:290.316800pt;}
.y9e{bottom:294.444933pt;}
.ydd{bottom:298.985467pt;}
.y27{bottom:300.391467pt;}
.y60{bottom:302.040800pt;}
.y1af{bottom:303.682667pt;}
.y18e{bottom:304.503467pt;}
.y228{bottom:305.076933pt;}
.y1e9{bottom:309.041467pt;}
.y9d{bottom:309.141067pt;}
.ydc{bottom:314.051467pt;}
.y14b{bottom:314.832800pt;}
.y26{bottom:315.058133pt;}
.y5f{bottom:316.784533pt;}
.y1ae{bottom:318.540800pt;}
.y18d{bottom:319.170133pt;}
.y227{bottom:320.010400pt;}
.y9c{bottom:323.837200pt;}
.ydb{bottom:329.117333pt;}
.y14a{bottom:329.499467pt;}
.y25{bottom:329.724800pt;}
.y5e{bottom:331.528267pt;}
.y1ad{bottom:333.399200pt;}
.y18c{bottom:333.836800pt;}
.y226{bottom:334.943867pt;}
.y9b{bottom:338.533333pt;}
.y149{bottom:344.166133pt;}
.yda{bottom:344.183200pt;}
.y24{bottom:344.391467pt;}
.y5d{bottom:346.272000pt;}
.y1ac{bottom:348.257467pt;}
.y18b{bottom:348.503467pt;}
.y225{bottom:349.877333pt;}
.y9a{bottom:353.229467pt;}
.y1e8{bottom:357.193733pt;}
.y148{bottom:358.832800pt;}
.y23{bottom:359.058133pt;}
.yd9{bottom:359.249067pt;}
.y5c{bottom:361.015600pt;}
.y25f{bottom:362.149067pt;}
.y1ab{bottom:363.115733pt;}
.y18a{bottom:363.170133pt;}
.y224{bottom:364.810667pt;}
.y99{bottom:367.925467pt;}
.y1e7{bottom:372.138800pt;}
.y147{bottom:373.499467pt;}
.y22{bottom:373.724800pt;}
.yd8{bottom:374.315067pt;}
.y5b{bottom:375.759333pt;}
.y25e{bottom:376.815733pt;}
.y189{bottom:377.836800pt;}
.y1aa{bottom:377.974000pt;}
.y223{bottom:379.744133pt;}
.y98{bottom:382.621600pt;}
.y1e6{bottom:387.083733pt;}
.y146{bottom:388.166133pt;}
.y21{bottom:388.391467pt;}
.yd7{bottom:389.380933pt;}
.y15f{bottom:390.235600pt;}
.y5a{bottom:390.503067pt;}
.y25d{bottom:391.482400pt;}
.y188{bottom:392.503467pt;}
.y222{bottom:394.677600pt;}
.y1a9{bottom:396.611733pt;}
.y97{bottom:397.317733pt;}
.y1e5{bottom:402.028800pt;}
.y145{bottom:402.832800pt;}
.y20{bottom:403.058133pt;}
.yd6{bottom:404.446800pt;}
.y59{bottom:405.246667pt;}
.y128{bottom:405.384667pt;}
.y25c{bottom:406.149067pt;}
.y187{bottom:407.170133pt;}
.y221{bottom:409.611067pt;}
.y96{bottom:412.013867pt;}
.y1e4{bottom:416.973733pt;}
.y144{bottom:417.499467pt;}
.y58{bottom:419.990400pt;}
.y25b{bottom:420.815733pt;}
.y186{bottom:421.836800pt;}
.y220{bottom:424.544533pt;}
.y15e{bottom:425.027867pt;}
.y95{bottom:426.710000pt;}
.y1f{bottom:429.063333pt;}
.y1a8{bottom:430.010800pt;}
.y1e3{bottom:431.918800pt;}
.y143{bottom:432.166133pt;}
.yd5{bottom:434.179467pt;}
.y57{bottom:434.734133pt;}
.y25a{bottom:435.482400pt;}
.y185{bottom:436.503467pt;}
.y21f{bottom:439.478000pt;}
.y15d{bottom:439.809867pt;}
.y127{bottom:440.122667pt;}
.y94{bottom:441.406000pt;}
.y1a7{bottom:444.869067pt;}
.y142{bottom:446.832800pt;}
.y1e2{bottom:446.863733pt;}
.yd4{bottom:449.245333pt;}
.y56{bottom:449.477733pt;}
.y259{bottom:450.149067pt;}
.y21e{bottom:454.411333pt;}
.y15c{bottom:454.591733pt;}
.y126{bottom:454.850133pt;}
.y1e{bottom:455.279333pt;}
.y93{bottom:456.102133pt;}
.y184{bottom:458.729200pt;}
.y1a6{bottom:459.727333pt;}
.y141{bottom:461.499467pt;}
.y1e1{bottom:461.808800pt;}
.y55{bottom:464.221467pt;}
.yd3{bottom:464.311200pt;}
.y258{bottom:464.815733pt;}
.y21d{bottom:469.344800pt;}
.y15b{bottom:469.373600pt;}
.y125{bottom:469.577733pt;}
.y92{bottom:470.798267pt;}
.y1a5{bottom:474.585600pt;}
.y1e0{bottom:476.753733pt;}
.y54{bottom:478.965200pt;}
.yd2{bottom:479.377200pt;}
.y257{bottom:479.482400pt;}
.y140{bottom:483.725200pt;}
.y15a{bottom:484.155467pt;}
.y21c{bottom:484.278267pt;}
.y124{bottom:484.305200pt;}
.y91{bottom:485.494400pt;}
.y1a4{bottom:489.443867pt;}
.y1df{bottom:491.698800pt;}
.y53{bottom:493.708800pt;}
.y256{bottom:494.149067pt;}
.yd1{bottom:494.443067pt;}
.y183{bottom:496.072933pt;}
.y13f{bottom:498.391867pt;}
.y159{bottom:498.937333pt;}
.y123{bottom:499.032667pt;}
.y21b{bottom:499.211733pt;}
.y90{bottom:500.190533pt;}
.y1a3{bottom:504.302133pt;}
.y1de{bottom:506.643733pt;}
.y52{bottom:508.452533pt;}
.y255{bottom:508.815733pt;}
.yd0{bottom:509.508933pt;}
.y13e{bottom:513.058533pt;}
.y158{bottom:513.719333pt;}
.y122{bottom:513.760267pt;}
.y21a{bottom:514.145200pt;}
.y1d{bottom:514.627733pt;}
.y1a2{bottom:519.160400pt;}
.y1dd{bottom:521.588800pt;}
.y51{bottom:523.196267pt;}
.y254{bottom:523.482400pt;}
.ycf{bottom:524.574933pt;}
.y13d{bottom:527.725200pt;}
.y121{bottom:528.487733pt;}
.y157{bottom:528.501200pt;}
.y219{bottom:529.078667pt;}
.y1c{bottom:529.294400pt;}
.y8f{bottom:529.553333pt;}
.y1a1{bottom:534.018667pt;}
.y1dc{bottom:536.533733pt;}
.y50{bottom:537.940000pt;}
.y253{bottom:538.149067pt;}
.yce{bottom:539.640800pt;}
.y13c{bottom:542.391867pt;}
.y120{bottom:543.215200pt;}
.y156{bottom:543.283067pt;}
.y1b{bottom:543.961067pt;}
.y218{bottom:544.012000pt;}
.y8e{bottom:544.249333pt;}
.yfa{bottom:548.457600pt;}
.y1db{bottom:551.478800pt;}
.y4f{bottom:552.683600pt;}
.y252{bottom:552.815733pt;}
.ycd{bottom:554.706667pt;}
.y1a0{bottom:556.436000pt;}
.y11f{bottom:557.942800pt;}
.y155{bottom:558.064933pt;}
.y1a{bottom:558.627733pt;}
.y8d{bottom:558.945467pt;}
.yf9{bottom:563.200133pt;}
.y13b{bottom:564.617600pt;}
.y1da{bottom:566.423733pt;}
.y4e{bottom:567.427333pt;}
.y251{bottom:567.482400pt;}
.ycc{bottom:569.772533pt;}
.y19f{bottom:571.294267pt;}
.y11e{bottom:572.670267pt;}
.y154{bottom:572.846800pt;}
.y19{bottom:573.294400pt;}
.y8c{bottom:573.641600pt;}
.y217{bottom:573.878933pt;}
.yf8{bottom:577.942533pt;}
.y1d9{bottom:581.368800pt;}
.y250{bottom:582.149067pt;}
.y4d{bottom:582.171067pt;}
.ycb{bottom:584.838533pt;}
.y19e{bottom:586.152533pt;}
.y11d{bottom:587.397733pt;}
.y153{bottom:587.628667pt;}
.y18{bottom:587.961067pt;}
.y8b{bottom:588.337733pt;}
.y216{bottom:588.812400pt;}
.yf7{bottom:592.685067pt;}
.y24f{bottom:596.815733pt;}
.y4c{bottom:596.914667pt;}
.yca{bottom:599.904400pt;}
.y19d{bottom:601.010800pt;}
.y13a{bottom:601.961467pt;}
.y11c{bottom:602.125333pt;}
.y17{bottom:602.627733pt;}
.y8a{bottom:603.033867pt;}
.y215{bottom:603.745867pt;}
.yf6{bottom:607.427600pt;}
.y152{bottom:609.969600pt;}
.y1d8{bottom:610.980533pt;}
.y24e{bottom:611.482400pt;}
.y4b{bottom:611.658400pt;}
.yc9{bottom:614.970400pt;}
.y19c{bottom:615.869067pt;}
.y11b{bottom:616.852800pt;}
.y16{bottom:617.294400pt;}
.y89{bottom:617.730000pt;}
.y214{bottom:618.679333pt;}
.yf5{bottom:622.170000pt;}
.y151{bottom:624.751600pt;}
.y1d7{bottom:625.925467pt;}
.y24d{bottom:626.149067pt;}
.yc8{bottom:630.036267pt;}
.y4a{bottom:630.181600pt;}
.y19b{bottom:630.727333pt;}
.y11a{bottom:631.580267pt;}
.y15{bottom:631.961067pt;}
.y88{bottom:632.426000pt;}
.y213{bottom:633.612800pt;}
.yf4{bottom:636.912533pt;}
.y150{bottom:639.533467pt;}
.y24c{bottom:640.815733pt;}
.y1d6{bottom:640.870533pt;}
.yc7{bottom:645.102133pt;}
.y19a{bottom:645.585600pt;}
.y119{bottom:646.307867pt;}
.y14{bottom:646.627733pt;}
.y87{bottom:647.122133pt;}
.y212{bottom:648.546133pt;}
.yf3{bottom:651.655067pt;}
.y14f{bottom:654.315333pt;}
.y24b{bottom:655.482400pt;}
.y1d5{bottom:655.815467pt;}
.yc6{bottom:660.168000pt;}
.y199{bottom:660.443867pt;}
.y118{bottom:661.035333pt;}
.y13{bottom:661.294400pt;}
.y49{bottom:663.466000pt;}
.y211{bottom:663.479600pt;}
.yf2{bottom:666.397600pt;}
.y24a{bottom:670.149067pt;}
.y1d4{bottom:670.760400pt;}
.yc5{bottom:675.234000pt;}
.y198{bottom:675.302267pt;}
.y117{bottom:675.762800pt;}
.y12{bottom:675.961067pt;}
.y176{bottom:675.963867pt;}
.y86{bottom:676.484933pt;}
.y14e{bottom:676.656267pt;}
.y48{bottom:678.209733pt;}
.y210{bottom:678.413067pt;}
.yf1{bottom:681.140000pt;}
.y249{bottom:684.815733pt;}
.y1d3{bottom:685.705467pt;}
.yc4{bottom:690.299867pt;}
.y116{bottom:690.490400pt;}
.y11{bottom:690.627733pt;}
.y85{bottom:691.181067pt;}
.y47{bottom:692.953333pt;}
.y20f{bottom:693.346533pt;}
.y197{bottom:697.719600pt;}
.y248{bottom:699.482400pt;}
.y1d2{bottom:700.650533pt;}
.y115{bottom:705.217867pt;}
.yc3{bottom:705.365733pt;}
.y84{bottom:705.877200pt;}
.y46{bottom:707.697067pt;}
.y20e{bottom:708.280000pt;}
.y10{bottom:709.645600pt;}
.y175{bottom:710.780000pt;}
.y14d{bottom:714.115333pt;}
.y247{bottom:714.149067pt;}
.y1d1{bottom:715.595467pt;}
.yf0{bottom:718.559733pt;}
.y114{bottom:719.945333pt;}
.yc2{bottom:720.431600pt;}
.y83{bottom:720.573333pt;}
.y45{bottom:722.440800pt;}
.y20d{bottom:723.213333pt;}
.y174{bottom:725.585600pt;}
.y246{bottom:728.815733pt;}
.y1d0{bottom:730.540533pt;}
.y113{bottom:734.672800pt;}
.yf{bottom:735.079067pt;}
.y196{bottom:735.254933pt;}
.y82{bottom:735.269467pt;}
.yc1{bottom:735.497600pt;}
.y44{bottom:737.184400pt;}
.y20c{bottom:738.146800pt;}
.y173{bottom:740.391200pt;}
.y245{bottom:743.482400pt;}
.y1cf{bottom:745.485467pt;}
.y112{bottom:749.400400pt;}
.y81{bottom:749.965467pt;}
.yc0{bottom:750.563467pt;}
.y43{bottom:751.928133pt;}
.y20b{bottom:753.080267pt;}
.y195{bottom:754.780800pt;}
.y172{bottom:755.196800pt;}
.y244{bottom:758.149067pt;}
.y1ce{bottom:760.430533pt;}
.y111{bottom:764.127867pt;}
.y80{bottom:764.661600pt;}
.ye{bottom:764.863867pt;}
.ybf{bottom:765.629333pt;}
.y42{bottom:766.671867pt;}
.y139{bottom:767.020533pt;}
.y20a{bottom:768.013733pt;}
.y171{bottom:770.002400pt;}
.y243{bottom:772.815733pt;}
.y1cd{bottom:775.375467pt;}
.yd{bottom:777.530533pt;}
.y7f{bottom:779.357733pt;}
.ybe{bottom:780.695333pt;}
.y41{bottom:781.415467pt;}
.y110{bottom:782.634933pt;}
.y209{bottom:782.947200pt;}
.y170{bottom:784.808000pt;}
.y242{bottom:787.482400pt;}
.y1cc{bottom:790.320533pt;}
.yc{bottom:793.976667pt;}
.y7e{bottom:794.053867pt;}
.ybd{bottom:795.761200pt;}
.y40{bottom:796.159200pt;}
.y208{bottom:797.880667pt;}
.y16f{bottom:799.613600pt;}
.y138{bottom:801.697733pt;}
.y241{bottom:802.149067pt;}
.y1cb{bottom:805.265467pt;}
.yb{bottom:806.643333pt;}
.y7d{bottom:808.750000pt;}
.ybc{bottom:810.827200pt;}
.y3f{bottom:810.902933pt;}
.y207{bottom:812.814133pt;}
.y16e{bottom:814.419200pt;}
.y10f{bottom:815.903200pt;}
.y137{bottom:816.364400pt;}
.y240{bottom:816.815733pt;}
.y1ca{bottom:820.210533pt;}
.ya{bottom:823.089600pt;}
.y3e{bottom:825.646667pt;}
.ybb{bottom:825.893067pt;}
.y7c{bottom:827.225600pt;}
.y206{bottom:827.747600pt;}
.y16d{bottom:829.224800pt;}
.y10e{bottom:830.630667pt;}
.y136{bottom:831.031067pt;}
.y23f{bottom:831.482400pt;}
.y1c9{bottom:835.155467pt;}
.y9{bottom:835.756267pt;}
.y3d{bottom:840.390267pt;}
.yba{bottom:840.958933pt;}
.y205{bottom:842.680933pt;}
.y16c{bottom:844.030400pt;}
.y10d{bottom:845.358133pt;}
.y135{bottom:845.697733pt;}
.y23e{bottom:846.149067pt;}
.y1c8{bottom:850.100533pt;}
.y3c{bottom:855.134000pt;}
.yb9{bottom:856.024933pt;}
.y204{bottom:857.614400pt;}
.y16b{bottom:858.836000pt;}
.y10c{bottom:860.085600pt;}
.y134{bottom:860.364400pt;}
.y7b{bottom:860.462400pt;}
.y23d{bottom:860.815733pt;}
.y1c7{bottom:868.825067pt;}
.y3b{bottom:869.877733pt;}
.yb8{bottom:871.090800pt;}
.y203{bottom:872.547867pt;}
.y16a{bottom:873.641600pt;}
.y8{bottom:873.668933pt;}
.y10b{bottom:874.813200pt;}
.y133{bottom:875.031067pt;}
.y7a{bottom:875.158533pt;}
.y23c{bottom:875.482400pt;}
.y3a{bottom:884.621333pt;}
.yb7{bottom:886.156667pt;}
.y202{bottom:887.481333pt;}
.y169{bottom:888.447200pt;}
.y10a{bottom:889.540667pt;}
.y132{bottom:889.697733pt;}
.y79{bottom:889.854667pt;}
.y23b{bottom:890.149067pt;}
.y7{bottom:897.668933pt;}
.y39{bottom:899.365067pt;}
.yb6{bottom:901.222533pt;}
.y1c6{bottom:902.310667pt;}
.y201{bottom:902.414800pt;}
.y168{bottom:903.252800pt;}
.y109{bottom:904.268133pt;}
.y131{bottom:904.364400pt;}
.y78{bottom:904.550800pt;}
.y23a{bottom:904.815733pt;}
.y38{bottom:914.108667pt;}
.y182{bottom:914.138533pt;}
.yb5{bottom:916.288533pt;}
.y1c5{bottom:917.255733pt;}
.y200{bottom:917.348267pt;}
.y108{bottom:918.995733pt;}
.y130{bottom:919.031067pt;}
.y77{bottom:919.246933pt;}
.y239{bottom:919.482400pt;}
.y6{bottom:921.668933pt;}
.y167{bottom:925.617467pt;}
.y37{bottom:928.852400pt;}
.yb4{bottom:931.354400pt;}
.y1c4{bottom:932.200800pt;}
.y1ff{bottom:932.281600pt;}
.y107{bottom:933.723200pt;}
.y76{bottom:933.942933pt;}
.y238{bottom:934.149067pt;}
.y166{bottom:940.423067pt;}
.y12f{bottom:941.256667pt;}
.yb3{bottom:946.420267pt;}
.y1c3{bottom:947.145733pt;}
.y1fe{bottom:947.215067pt;}
.y36{bottom:947.375600pt;}
.yef{bottom:948.360800pt;}
.y106{bottom:948.450667pt;}
.y75{bottom:948.639067pt;}
.y181{bottom:948.815733pt;}
.y165{bottom:955.228667pt;}
.y12e{bottom:955.923333pt;}
.yb2{bottom:961.486267pt;}
.y1c2{bottom:962.090800pt;}
.y1fd{bottom:962.148533pt;}
.yee{bottom:963.103333pt;}
.y105{bottom:963.178267pt;}
.y74{bottom:963.335200pt;}
.y180{bottom:963.482400pt;}
.y164{bottom:970.034400pt;}
.y12d{bottom:970.590000pt;}
.yb1{bottom:976.552133pt;}
.y1c1{bottom:977.035733pt;}
.y1fc{bottom:977.082000pt;}
.y4{bottom:977.133867pt;}
.yed{bottom:977.845733pt;}
.y104{bottom:977.905733pt;}
.y73{bottom:978.031333pt;}
.y17f{bottom:978.149067pt;}
.y163{bottom:984.839867pt;}
.y12c{bottom:985.256667pt;}
.y3{bottom:990.467200pt;}
.y5{bottom:991.292800pt;}
.yb0{bottom:991.618133pt;}
.y1c0{bottom:991.980800pt;}
.y1fb{bottom:992.015467pt;}
.yec{bottom:992.588267pt;}
.y103{bottom:992.633200pt;}
.y72{bottom:992.727467pt;}
.y17e{bottom:992.815733pt;}
.y162{bottom:999.645467pt;}
.y12b{bottom:999.923333pt;}
.yaf{bottom:1006.683867pt;}
.y1bf{bottom:1006.925733pt;}
.y1fa{bottom:1006.948933pt;}
.y35{bottom:1007.328400pt;}
.yeb{bottom:1007.330800pt;}
.y102{bottom:1007.360800pt;}
.y71{bottom:1007.423600pt;}
.y17d{bottom:1007.482400pt;}
.y161{bottom:1014.451067pt;}
.y12a{bottom:1014.590133pt;}
.yae{bottom:1021.749867pt;}
.y1be{bottom:1021.870800pt;}
.y1f9{bottom:1021.882267pt;}
.y34{bottom:1022.072133pt;}
.yea{bottom:1022.073200pt;}
.y101{bottom:1022.088267pt;}
.y70{bottom:1022.119600pt;}
.y17c{bottom:1022.149067pt;}
.y33{bottom:1036.815733pt;}
.y14c{bottom:1038.673333pt;}
.y32{bottom:1071.727600pt;}
.h8{height:28.955733pt;}
.hc{height:30.337765pt;}
.h7{height:31.488000pt;}
.he{height:31.829333pt;}
.ha{height:32.125632pt;}
.h2{height:33.114667pt;}
.h4{height:37.845333pt;}
.h3{height:38.990933pt;}
.hd{height:43.296000pt;}
.h9{height:46.360533pt;}
.hb{height:55.104000pt;}
.h5{height:66.912000pt;}
.h6{height:69.201696pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x5{left:77.855733pt;}
.x3{left:82.431467pt;}
.x8{left:86.929067pt;}
.x6{left:90.173733pt;}
.xa{left:94.488133pt;}
.x29{left:102.047200pt;}
.x1c{left:113.385867pt;}
.x24{left:128.454533pt;}
.x1b{left:145.467467pt;}
.x1d{left:151.846267pt;}
.x1f{left:154.646133pt;}
.xd{left:169.650533pt;}
.xe{left:171.282533pt;}
.x18{left:183.723067pt;}
.x28{left:184.688267pt;}
.x19{left:230.527333pt;}
.x9{left:248.844133pt;}
.x7{left:255.195867pt;}
.x1e{left:256.548267pt;}
.xb{left:257.507467pt;}
.xc{left:303.555600pt;}
.x23{left:309.822133pt;}
.x22{left:311.880667pt;}
.x26{left:318.110133pt;}
.x20{left:319.859467pt;}
.x17{left:327.747467pt;}
.x10{left:353.256533pt;}
.xf{left:367.741467pt;}
.x27{left:434.795467pt;}
.x21{left:480.758000pt;}
.x1a{left:500.519867pt;}
.x11{left:505.657600pt;}
.x14{left:516.382667pt;}
.x13{left:519.113200pt;}
.x12{left:524.286267pt;}
.x15{left:529.054400pt;}
.x16{left:548.637867pt;}
.x4{left:642.024533pt;}
.x25{left:701.282533pt;}
.x1{left:703.354533pt;}
}




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