
    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_7f31ccfb144810bc667ddd50.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.009000;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_d8637db2f4b3db069217be67.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.929000;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_e0737e18a65024226b13cdb7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_355ac579708cfb00d7585796.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.804000;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_1aff0884f6f4c2da8852f2de.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009000;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_ee8a64b01dd51dfa164d1986.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.929000;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_520da6e0bfafec3e90a65a54.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_1aff0884f6f4c2da8852f2de.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.009000;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_fd95f2f968bdc16ae984de4f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fd95f2f968bdc16ae984de4f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fd95f2f968bdc16ae984de4f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_fd95f2f968bdc16ae984de4f.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fd95f2f968bdc16ae984de4f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ec9a062843a199089def0faa.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_fd95f2f968bdc16ae984de4f.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_9e69eebc733d75ff7a23d697.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_1aff0884f6f4c2da8852f2de.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_fd95f2f968bdc16ae984de4f.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_b65cea4f800cf577895db13c.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_b65cea4f800cf577895db13c.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_ec9a062843a199089def0faa.woff2')format("woff");}.ff15{font-family:ff15;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v2{vertical-align:-12.065400px;}
.v1{vertical-align:-6.006000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-6.486000px;}
.lse{letter-spacing:-6.480000px;}
.lsd{letter-spacing:-4.326000px;}
.lsb{letter-spacing:-4.320000px;}
.ls9{letter-spacing:-0.765254px;}
.ls5{letter-spacing:-0.446401px;}
.ls2{letter-spacing:-0.382630px;}
.ls4{letter-spacing:-0.191315px;}
.ls7{letter-spacing:-0.143485px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.143485px;}
.ls6{letter-spacing:0.191314px;}
.ls1{letter-spacing:0.191315px;}
.lsa{letter-spacing:0.286970px;}
.ls3{letter-spacing:0.382630px;}
.lsc{letter-spacing:1.440000px;}
.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;}
}
.ws1c{word-spacing:-39.060000px;}
.ws1b{word-spacing:-28.800000px;}
.ws0{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.120000px;}
.ws8{word-spacing:-14.795011px;}
.ws7{word-spacing:-14.603696px;}
.ws9{word-spacing:-13.965980px;}
.ws17{word-spacing:-11.880000px;}
.wsc{word-spacing:-10.952704px;}
.wsa{word-spacing:-10.665733px;}
.ws19{word-spacing:-10.560000px;}
.wsb{word-spacing:-10.043964px;}
.ws1d{word-spacing:-9.360000px;}
.ws1a{word-spacing:-1.440000px;}
.ws14{word-spacing:-0.286970px;}
.ws1e{word-spacing:-0.216000px;}
.ws18{word-spacing:-0.144000px;}
.ws10{word-spacing:-0.095657px;}
.ws13{word-spacing:-0.047828px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:0.095657px;}
.wsf{word-spacing:0.191315px;}
.wse{word-spacing:0.382630px;}
.ws12{word-spacing:0.637716px;}
.wsd{word-spacing:0.829031px;}
.ws4{word-spacing:107.484000px;}
.ws5{word-spacing:113.976000px;}
.ws3{word-spacing:198.324000px;}
.ws2{word-spacing:200.160000px;}
.ws16{word-spacing:573.552000px;}
.ws15{word-spacing:666.006000px;}
._15{margin-left:-215.834400px;}
._10{margin-left:-200.167200px;}
._e{margin-left:-173.521200px;}
._19{margin-left:-145.418400px;}
._17{margin-left:-142.480800px;}
._1a{margin-left:-108.014400px;}
._14{margin-left:-72.432000px;}
._11{margin-left:-68.234400px;}
._18{margin-left:-64.800000px;}
._16{margin-left:-49.248000px;}
._f{margin-left:-45.576000px;}
._12{margin-left:-44.424000px;}
._13{margin-left:-43.372800px;}
._6{margin-left:-13.800000px;}
._34{margin-left:-12.327600px;}
._29{margin-left:-7.333734px;}
._5{margin-left:-5.760000px;}
._4{margin-left:-4.356000px;}
._1{margin-left:-2.880000px;}
._0{margin-left:-1.440000px;}
._2{width:1.432800px;}
._3{width:2.745000px;}
._28{width:5.732400px;}
._d{width:76.392000px;}
._20{width:98.592000px;}
._24{width:104.520000px;}
._27{width:109.152000px;}
._b{width:111.303000px;}
._23{width:113.328000px;}
._26{width:114.408000px;}
._25{width:115.560000px;}
._22{width:116.784000px;}
._21{width:118.375200px;}
._1b{width:128.880000px;}
._1f{width:129.960000px;}
._1d{width:131.112000px;}
._1c{width:132.552000px;}
._1e{width:135.000000px;}
._7{width:153.504000px;}
._c{width:155.736000px;}
._a{width:157.176000px;}
._2a{width:173.905153px;}
._8{width:196.344000px;}
._9{width:200.160000px;}
._3c{width:439.560000px;}
._3a{width:444.535200px;}
._31{width:462.888000px;}
._37{width:486.216000px;}
._3f{width:514.800000px;}
._30{width:540.360000px;}
._39{width:555.703200px;}
._42{width:558.871200px;}
._3b{width:559.944000px;}
._48{width:562.903200px;}
._44{width:566.568000px;}
._40{width:586.375200px;}
._47{width:589.896000px;}
._3e{width:601.920000px;}
._2d{width:614.006400px;}
._38{width:636.264000px;}
._32{width:648.216000px;}
._3d{width:649.231200px;}
._43{width:666.648000px;}
._45{width:672.768000px;}
._41{width:700.344000px;}
._2e{width:718.056000px;}
._36{width:720.648000px;}
._46{width:755.287200px;}
._33{width:756.871200px;}
._35{width:758.311200px;}
._2c{width:760.848000px;}
._2b{width:812.988000px;}
._2f{width:964.440000px;}
.fcc{color:rgb(33,94,158);}
.fca{color:rgb(110,93,121);}
.fc9{color:transparent;}
.fcb{color:rgb(211,171,93);}
.fc7{color:rgb(40,75,105);}
.fc6{color:rgb(237,192,105);}
.fc5{color:rgb(99,82,108);}
.fc4{color:rgb(40,39,40);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc8{color:rgb(70,91,56);}
.fc3{color:rgb(41,75,105);}
.fc0{color:rgb(224,109,69);}
.fs9{font-size:47.828400px;}
.fsb{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:63.771600px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs6{font-size:138.000000px;}
.fs5{font-size:150.000000px;}
.fs1{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:25.200300px;}
.yc{bottom:25.311450px;}
.yd{bottom:26.760150px;}
.y88{bottom:37.266600px;}
.y7{bottom:51.336000px;}
.y6{bottom:75.330000px;}
.y5{bottom:99.324000px;}
.ya9{bottom:118.251000px;}
.y297{bottom:123.858000px;}
.y1dd{bottom:133.799700px;}
.ya8{bottom:137.745000px;}
.y296{bottom:143.352000px;}
.y4{bottom:147.330000px;}
.y270{bottom:148.287000px;}
.y26f{bottom:167.781000px;}
.y3{bottom:171.324000px;}
.y1dc{bottom:172.863000px;}
.ya7{bottom:176.751000px;}
.y26e{bottom:187.275000px;}
.y1db{bottom:192.357000px;}
.y237{bottom:192.359850px;}
.y2{bottom:195.318000px;}
.ya6{bottom:196.245000px;}
.y295{bottom:201.852000px;}
.y199{bottom:211.919700px;}
.y294{bottom:221.346000px;}
.y73{bottom:224.025000px;}
.y26d{bottom:226.281000px;}
.y10c{bottom:226.979850px;}
.y1ad{bottom:229.628700px;}
.y1da{bottom:231.363000px;}
.y236{bottom:231.429000px;}
.ya5{bottom:235.251000px;}
.y32{bottom:239.097000px;}
.y293{bottom:240.840000px;}
.y1{bottom:243.324000px;}
.y72{bottom:243.519000px;}
.y26c{bottom:245.775000px;}
.y1ac{bottom:248.430000px;}
.y1c5{bottom:248.699850px;}
.y53{bottom:249.606000px;}
.y1d9{bottom:250.857000px;}
.y235{bottom:250.923000px;}
.y198{bottom:250.958850px;}
.ya4{bottom:254.745000px;}
.y31{bottom:258.591000px;}
.y292{bottom:260.334000px;}
.y71{bottom:263.013000px;}
.y26b{bottom:265.269000px;}
.y10b{bottom:266.032350px;}
.y1d8{bottom:270.351000px;}
.y197{bottom:270.452850px;}
.ya3{bottom:274.239000px;}
.y30{bottom:278.085000px;}
.y52{bottom:278.100000px;}
.y70{bottom:282.507000px;}
.y10a{bottom:285.526350px;}
.y132{bottom:285.570000px;}
.y1ab{bottom:285.729000px;}
.y1c4{bottom:287.738700px;}
.y1d7{bottom:289.845000px;}
.y234{bottom:289.928850px;}
.ya2{bottom:293.733000px;}
.y2f{bottom:297.579000px;}
.y291{bottom:299.340000px;}
.y51{bottom:302.094000px;}
.y17d{bottom:302.402850px;}
.y26a{bottom:304.275000px;}
.y11c{bottom:305.046000px;}
.y131{bottom:305.064000px;}
.y203{bottom:307.199850px;}
.y1c3{bottom:307.232700px;}
.y1aa{bottom:307.329000px;}
.y233{bottom:309.422850px;}
.y196{bottom:309.458850px;}
.y2e{bottom:317.073000px;}
.y290{bottom:318.834000px;}
.y6f{bottom:321.513000px;}
.y269{bottom:323.769000px;}
.y109{bottom:324.532350px;}
.y11b{bottom:324.540000px;}
.y50{bottom:326.088000px;}
.y1ee{bottom:326.699850px;}
.yd5{bottom:328.180350px;}
.y1d6{bottom:328.851000px;}
.y232{bottom:328.916850px;}
.y195{bottom:328.952850px;}
.ye8{bottom:330.900000px;}
.ya1{bottom:332.739000px;}
.y2d{bottom:336.567000px;}
.y28f{bottom:338.328000px;}
.y6e{bottom:341.007000px;}
.y17c{bottom:341.408700px;}
.y268{bottom:343.263000px;}
.y108{bottom:344.026350px;}
.y130{bottom:344.070000px;}
.y202{bottom:346.190850px;}
.y246{bottom:346.199700px;}
.y1c2{bottom:346.238700px;}
.y1a9{bottom:346.334700px;}
.yd4{bottom:347.674350px;}
.y1d5{bottom:348.345000px;}
.y231{bottom:348.410850px;}
.y194{bottom:348.446850px;}
.y4f{bottom:350.082000px;}
.ya0{bottom:352.233000px;}
.y28e{bottom:357.822000px;}
.y17b{bottom:360.902700px;}
.y267{bottom:362.757000px;}
.y107{bottom:363.520350px;}
.y12f{bottom:363.564000px;}
.y11a{bottom:363.568500px;}
.y201{bottom:365.684850px;}
.y1ed{bottom:365.696700px;}
.y1c1{bottom:365.732700px;}
.y1a8{bottom:365.828700px;}
.yc1{bottom:367.143000px;}
.y1d4{bottom:367.839000px;}
.y230{bottom:367.904850px;}
.y193{bottom:367.940850px;}
.ye7{bottom:369.934350px;}
.y9f{bottom:371.727000px;}
.y4e{bottom:374.076000px;}
.y2c{bottom:375.573000px;}
.y28d{bottom:377.316000px;}
.y6d{bottom:380.013000px;}
.yf5{bottom:382.980000px;}
.y106{bottom:383.014350px;}
.y12e{bottom:383.058000px;}
.y119{bottom:383.062500px;}
.y1ec{bottom:385.190700px;}
.y245{bottom:385.202700px;}
.y1c0{bottom:385.226700px;}
.y1a7{bottom:385.322700px;}
.yd3{bottom:386.680350px;}
.y1d3{bottom:387.333000px;}
.y22f{bottom:387.398850px;}
.y210{bottom:389.399850px;}
.ye6{bottom:389.428350px;}
.y9e{bottom:391.221000px;}
.y2b{bottom:395.067000px;}
.y4d{bottom:398.070000px;}
.y6c{bottom:399.507000px;}
.y17a{bottom:399.908700px;}
.y266{bottom:401.763000px;}
.y200{bottom:404.690850px;}
.yc0{bottom:406.156500px;}
.yd2{bottom:406.174350px;}
.y21f{bottom:406.619700px;}
.y192{bottom:406.946850px;}
.y15e{bottom:408.000000px;}
.y2a{bottom:414.561000px;}
.y28c{bottom:416.322000px;}
.y6b{bottom:419.001000px;}
.y179{bottom:419.402700px;}
.y265{bottom:421.257000px;}
.yf4{bottom:421.990350px;}
.y105{bottom:422.020350px;}
.y4c{bottom:422.064000px;}
.y118{bottom:422.068500px;}
.y1ff{bottom:424.184850px;}
.y1eb{bottom:424.196700px;}
.y244{bottom:424.208700px;}
.y1bf{bottom:424.232700px;}
.y1a6{bottom:424.328700px;}
.yd1{bottom:425.668350px;}
.y1d2{bottom:426.338700px;}
.y22e{bottom:426.404850px;}
.y191{bottom:426.440850px;}
.y20f{bottom:428.426700px;}
.ye5{bottom:428.434350px;}
.y9d{bottom:430.227000px;}
.y154{bottom:430.734000px;}
.y29{bottom:434.055000px;}
.y28b{bottom:435.816000px;}
.y264{bottom:440.751000px;}
.y104{bottom:441.514350px;}
.y12d{bottom:441.558000px;}
.y117{bottom:441.562500px;}
.y1fe{bottom:443.678850px;}
.y1ea{bottom:443.690700px;}
.y243{bottom:443.702700px;}
.y1be{bottom:443.726700px;}
.y1a5{bottom:443.822700px;}
.ybf{bottom:445.162500px;}
.y21e{bottom:445.640700px;}
.y1d1{bottom:445.832700px;}
.y22d{bottom:445.898850px;}
.y190{bottom:445.934850px;}
.y4b{bottom:446.064000px;}
.y15d{bottom:447.004500px;}
.ye4{bottom:447.928350px;}
.y9c{bottom:449.721000px;}
.y28{bottom:453.549000px;}
.y28a{bottom:455.310000px;}
.y6a{bottom:458.007000px;}
.y178{bottom:458.408700px;}
.yf3{bottom:460.996350px;}
.y103{bottom:461.008350px;}
.y12c{bottom:461.052000px;}
.y116{bottom:461.056500px;}
.y13d{bottom:461.074500px;}
.y1e9{bottom:463.184700px;}
.y242{bottom:463.196700px;}
.y1bd{bottom:463.220700px;}
.ybe{bottom:464.656500px;}
.yd0{bottom:464.674350px;}
.y1d0{bottom:465.326700px;}
.y22c{bottom:465.392850px;}
.ye3{bottom:467.422350px;}
.y20e{bottom:467.432700px;}
.y9b{bottom:469.215000px;}
.y153{bottom:469.738500px;}
.y27{bottom:473.043000px;}
.y4a{bottom:474.564000px;}
.y69{bottom:477.501000px;}
.y177{bottom:477.902700px;}
.yf2{bottom:480.490350px;}
.y102{bottom:480.502350px;}
.y13c{bottom:480.568500px;}
.y1fd{bottom:482.684850px;}
.y1bc{bottom:482.714700px;}
.y1a4{bottom:482.828700px;}
.ycf{bottom:484.168350px;}
.y21d{bottom:484.646700px;}
.y22b{bottom:484.886850px;}
.y18f{bottom:484.940850px;}
.y15c{bottom:486.010500px;}
.y20d{bottom:486.926700px;}
.y9a{bottom:488.709000px;}
.y26{bottom:492.537000px;}
.y263{bottom:493.257000px;}
.y289{bottom:494.316000px;}
.y49{bottom:498.564000px;}
.yf1{bottom:499.984350px;}
.y101{bottom:499.996350px;}
.y12b{bottom:500.058000px;}
.y115{bottom:500.062500px;}
.y1fc{bottom:502.178850px;}
.y1e8{bottom:502.190700px;}
.y241{bottom:502.202700px;}
.y1a3{bottom:502.322700px;}
.yce{bottom:503.662350px;}
.ybd{bottom:503.662500px;}
.y21c{bottom:504.140700px;}
.y1cf{bottom:504.332700px;}
.y22a{bottom:504.380850px;}
.y18e{bottom:504.434850px;}
.y15b{bottom:505.504500px;}
.y20c{bottom:506.420700px;}
.ye2{bottom:506.428350px;}
.y99{bottom:508.203000px;}
.y152{bottom:508.744500px;}
.y25{bottom:512.031000px;}
.y262{bottom:512.751000px;}
.y288{bottom:513.810000px;}
.y68{bottom:516.507000px;}
.y176{bottom:516.908700px;}
.y100{bottom:519.490350px;}
.y141{bottom:519.540000px;}
.y12a{bottom:519.552000px;}
.y114{bottom:519.556500px;}
.y24f{bottom:521.580000px;}
.y1e7{bottom:521.684700px;}
.y240{bottom:521.696700px;}
.y1bb{bottom:521.720700px;}
.y1a2{bottom:521.816700px;}
.ycd{bottom:523.156350px;}
.ybc{bottom:523.156500px;}
.y21b{bottom:523.634700px;}
.y1ce{bottom:523.826700px;}
.y18d{bottom:523.928850px;}
.y15a{bottom:524.998500px;}
.y20b{bottom:525.914700px;}
.ye1{bottom:525.922350px;}
.y48{bottom:527.082000px;}
.y151{bottom:528.238500px;}
.y24{bottom:531.525000px;}
.y261{bottom:532.245000px;}
.y287{bottom:533.304000px;}
.y67{bottom:536.001000px;}
.y175{bottom:536.402700px;}
.yf0{bottom:538.990350px;}
.y129{bottom:539.046000px;}
.y113{bottom:539.050500px;}
.y13b{bottom:539.068500px;}
.y1fb{bottom:541.184850px;}
.y23f{bottom:541.190700px;}
.y1ba{bottom:541.214700px;}
.ybb{bottom:542.650500px;}
.y21a{bottom:543.128700px;}
.y1cd{bottom:543.320700px;}
.y229{bottom:543.386850px;}
.y159{bottom:544.492500px;}
.y20a{bottom:545.408700px;}
.ye0{bottom:545.416350px;}
.y98{bottom:547.209000px;}
.y150{bottom:547.732500px;}
.y23{bottom:551.019000px;}
.y47{bottom:551.076000px;}
.y174{bottom:555.896700px;}
.yef{bottom:558.484350px;}
.yff{bottom:558.496350px;}
.y140{bottom:558.538500px;}
.y112{bottom:558.544500px;}
.y128{bottom:558.556350px;}
.y13a{bottom:558.562500px;}
.y24e{bottom:560.589000px;}
.y1fa{bottom:560.678850px;}
.y1e6{bottom:560.690700px;}
.y1b9{bottom:560.708700px;}
.y1a1{bottom:560.822700px;}
.yba{bottom:562.144500px;}
.ycc{bottom:562.162350px;}
.y219{bottom:562.622700px;}
.y1cc{bottom:562.814700px;}
.y228{bottom:562.880850px;}
.y18c{bottom:562.934850px;}
.y158{bottom:563.986500px;}
.ydf{bottom:564.910350px;}
.y97{bottom:566.703000px;}
.y14f{bottom:567.226500px;}
.y22{bottom:570.513000px;}
.y286{bottom:572.310000px;}
.y66{bottom:575.007000px;}
.y46{bottom:575.070000px;}
.y173{bottom:575.390700px;}
.yee{bottom:577.978350px;}
.yfe{bottom:577.990350px;}
.y121{bottom:578.032500px;}
.y127{bottom:578.050350px;}
.y139{bottom:578.056500px;}
.y2ac{bottom:578.772000px;}
.y1f9{bottom:580.172850px;}
.y1e5{bottom:580.184700px;}
.y23e{bottom:580.196700px;}
.y1b8{bottom:580.202700px;}
.y1a0{bottom:580.316700px;}
.yb9{bottom:581.638500px;}
.ycb{bottom:581.656350px;}
.y1cb{bottom:582.308700px;}
.y227{bottom:582.374850px;}
.y18b{bottom:582.428850px;}
.y209{bottom:584.414700px;}
.y260{bottom:584.751000px;}
.y285{bottom:591.804000px;}
.y65{bottom:594.501000px;}
.y172{bottom:594.884700px;}
.yfd{bottom:597.484350px;}
.y13f{bottom:597.544500px;}
.y111{bottom:597.550500px;}
.y2ab{bottom:598.266000px;}
.y45{bottom:599.064000px;}
.y24d{bottom:599.595000px;}
.y1f8{bottom:599.666850px;}
.y1e4{bottom:599.678700px;}
.y23d{bottom:599.690700px;}
.y1b7{bottom:599.696700px;}
.y19f{bottom:599.810700px;}
.yca{bottom:601.150350px;}
.y218{bottom:601.628700px;}
.y1ca{bottom:601.802700px;}
.y226{bottom:601.868850px;}
.y18a{bottom:601.922850px;}
.y157{bottom:602.992500px;}
.y208{bottom:603.908700px;}
.yde{bottom:603.916350px;}
.y25f{bottom:604.245000px;}
.y14e{bottom:606.232500px;}
.y96{bottom:606.447000px;}
.y21{bottom:609.519000px;}
.y284{bottom:611.298000px;}
.y64{bottom:613.995000px;}
.y171{bottom:614.378700px;}
.yfc{bottom:616.978350px;}
.yed{bottom:616.984350px;}
.y120{bottom:617.038500px;}
.y110{bottom:617.044500px;}
.y126{bottom:617.056350px;}
.y2aa{bottom:617.760000px;}
.y24c{bottom:619.089000px;}
.y1f7{bottom:619.160850px;}
.y1e3{bottom:619.172700px;}
.y23c{bottom:619.184700px;}
.y1b6{bottom:619.190700px;}
.y19e{bottom:619.304700px;}
.yb8{bottom:620.644500px;}
.y217{bottom:621.122700px;}
.y1c9{bottom:621.296700px;}
.y225{bottom:621.362850px;}
.y189{bottom:621.416850px;}
.y156{bottom:622.486500px;}
.y44{bottom:623.064000px;}
.ydd{bottom:623.410350px;}
.y25e{bottom:623.739000px;}
.y14d{bottom:625.726500px;}
.y95{bottom:625.941000px;}
.y63{bottom:633.489000px;}
.y170{bottom:633.872700px;}
.yfb{bottom:636.472350px;}
.yec{bottom:636.478350px;}
.y11f{bottom:636.532500px;}
.y10f{bottom:636.538500px;}
.y125{bottom:636.550350px;}
.y138{bottom:636.556500px;}
.y24b{bottom:638.583000px;}
.y1e2{bottom:638.666700px;}
.y23b{bottom:638.678700px;}
.y1b5{bottom:638.684700px;}
.yb7{bottom:640.138500px;}
.yc9{bottom:640.156350px;}
.y1c8{bottom:640.790700px;}
.y224{bottom:640.856850px;}
.y188{bottom:640.910850px;}
.y155{bottom:641.980500px;}
.ydc{bottom:642.904350px;}
.y207{bottom:642.914700px;}
.y14c{bottom:645.220500px;}
.y20{bottom:648.525000px;}
.y283{bottom:650.304000px;}
.y43{bottom:651.630000px;}
.y16f{bottom:653.366700px;}
.yfa{bottom:655.966350px;}
.yeb{bottom:655.972350px;}
.y10e{bottom:656.032500px;}
.y124{bottom:656.044350px;}
.y13e{bottom:656.044500px;}
.y137{bottom:656.050500px;}
.y2a9{bottom:656.766000px;}
.y24a{bottom:658.077000px;}
.y1e1{bottom:658.160700px;}
.y23a{bottom:658.172700px;}
.y1b4{bottom:658.178700px;}
.yb6{bottom:659.632500px;}
.yc8{bottom:659.650350px;}
.y216{bottom:660.128700px;}
.y1c7{bottom:660.284700px;}
.y223{bottom:660.350850px;}
.y87{bottom:661.813500px;}
.ydb{bottom:662.398350px;}
.y206{bottom:662.408700px;}
.y94{bottom:663.424500px;}
.y1f4{bottom:665.330850px;}
.y1f{bottom:668.019000px;}
.y19d{bottom:668.336700px;}
.y282{bottom:669.798000px;}
.y62{bottom:672.495000px;}
.y16e{bottom:672.860700px;}
.yea{bottom:675.466350px;}
.y123{bottom:675.538350px;}
.y11e{bottom:675.538500px;}
.y136{bottom:675.544500px;}
.y42{bottom:675.624000px;}
.y25d{bottom:676.245000px;}
.y2a8{bottom:676.260000px;}
.y249{bottom:677.571000px;}
.y239{bottom:677.666700px;}
.yb5{bottom:679.126500px;}
.yc7{bottom:679.144350px;}
.y215{bottom:679.622700px;}
.y1c6{bottom:679.778700px;}
.yda{bottom:681.892350px;}
.y205{bottom:681.902700px;}
.y83{bottom:684.333000px;}
.y14b{bottom:684.964500px;}
.y7c{bottom:685.827600px;}
.y1f6{bottom:686.318850px;}
.y1f3{bottom:686.336850px;}
.y80{bottom:687.073200px;}
.y1e{bottom:687.513000px;}
.y187{bottom:687.836850px;}
.y281{bottom:689.292000px;}
.y19c{bottom:689.342700px;}
.y61{bottom:691.989000px;}
.y122{bottom:695.032350px;}
.y11d{bottom:695.032500px;}
.y135{bottom:695.038500px;}
.y25c{bottom:695.739000px;}
.y2a7{bottom:695.754000px;}
.y248{bottom:697.065000px;}
.y238{bottom:697.160700px;}
.yc6{bottom:698.638350px;}
.y214{bottom:699.116700px;}
.y41{bottom:699.618000px;}
.yd9{bottom:701.386350px;}
.y204{bottom:701.396700px;}
.yf9{bottom:702.964350px;}
.y1e0{bottom:704.312700px;}
.y1b3{bottom:704.330700px;}
.y10d{bottom:704.470500px;}
.y222{bottom:705.836850px;}
.y14a{bottom:705.970500px;}
.y1d{bottom:707.007000px;}
.y1f5{bottom:707.324850px;}
.y1f2{bottom:707.342850px;}
.y280{bottom:708.786000px;}
.y186{bottom:708.842850px;}
.y60{bottom:711.483000px;}
.y134{bottom:714.532500px;}
.y25b{bottom:715.233000px;}
.yc5{bottom:718.132350px;}
.y213{bottom:718.610700px;}
.y93{bottom:719.685000px;}
.y16d{bottom:722.306700px;}
.y169{bottom:722.324700px;}
.ye9{bottom:722.464350px;}
.y40{bottom:723.612000px;}
.yf8{bottom:723.970350px;}
.y1df{bottom:725.318700px;}
.y1b2{bottom:725.336700px;}
.yb4{bottom:725.476500px;}
.y19b{bottom:726.080700px;}
.y1c{bottom:726.501000px;}
.y221{bottom:726.842850px;}
.y149{bottom:726.976500px;}
.y5f{bottom:730.977000px;}
.y25a{bottom:734.727000px;}
.y2a6{bottom:734.760000px;}
.yc4{bottom:737.626350px;}
.y16c{bottom:743.312700px;}
.y168{bottom:743.330700px;}
.yd8{bottom:743.470350px;}
.y1f1{bottom:744.080850px;}
.y247{bottom:744.836700px;}
.yf7{bottom:744.976350px;}
.y185{bottom:745.580850px;}
.y1b{bottom:745.995000px;}
.y1de{bottom:746.324700px;}
.y1b1{bottom:746.342700px;}
.y3f{bottom:747.606000px;}
.y27f{bottom:747.792000px;}
.y5e{bottom:750.471000px;}
.y2a5{bottom:754.254000px;}
.y86{bottom:755.609774px;}
.y82{bottom:756.357074px;}
.y7f{bottom:756.606224px;}
.y92{bottom:758.691000px;}
.yb3{bottom:762.304500px;}
.y7b{bottom:762.333600px;}
.y133{bottom:762.970350px;}
.y220{bottom:763.580850px;}
.y148{bottom:763.804500px;}
.y16b{bottom:764.318700px;}
.y167{bottom:764.336700px;}
.yd7{bottom:764.476350px;}
.y1a{bottom:765.489000px;}
.y212{bottom:765.842700px;}
.y27e{bottom:767.286000px;}
.y85{bottom:770.305050px;}
.y81{bottom:771.052350px;}
.y7e{bottom:771.301500px;}
.y3e{bottom:771.600000px;}
.y2a4{bottom:773.748000px;}
.y91{bottom:778.185000px;}
.yf6{bottom:781.804350px;}
.y1b0{bottom:783.080700px;}
.y19a{bottom:783.093000px;}
.yc3{bottom:783.976350px;}
.y19{bottom:784.983000px;}
.y16a{bottom:785.324700px;}
.y166{bottom:785.342700px;}
.y27d{bottom:786.780000px;}
.y259{bottom:787.233000px;}
.y5d{bottom:789.477000px;}
.y3d{bottom:795.594000px;}
.y90{bottom:797.679000px;}
.y1f0{bottom:801.099000px;}
.yd6{bottom:801.304350px;}
.y211{bottom:802.580700px;}
.y184{bottom:802.587000px;}
.y18{bottom:804.477000px;}
.y89{bottom:804.886350px;}
.y27c{bottom:806.274000px;}
.y258{bottom:806.727000px;}
.y5c{bottom:808.971000px;}
.y2a3{bottom:812.754000px;}
.ya{bottom:815.220150px;}
.y8f{bottom:817.173000px;}
.yb2{bottom:819.405000px;}
.y3c{bottom:819.588000px;}
.y1ef{bottom:820.593000px;}
.yc2{bottom:820.804350px;}
.y147{bottom:820.893000px;}
.y165{bottom:822.080700px;}
.y183{bottom:822.081000px;}
.y76{bottom:824.128255px;}
.y257{bottom:826.221000px;}
.y5b{bottom:828.465000px;}
.y2a2{bottom:832.248000px;}
.y84{bottom:833.349300px;}
.y74{bottom:834.345600px;}
.y7d{bottom:837.833100px;}
.yb1{bottom:838.899000px;}
.y1af{bottom:840.087000px;}
.y146{bottom:840.387000px;}
.y182{bottom:841.575000px;}
.y17{bottom:843.483000px;}
.y75{bottom:843.562650px;}
.y3b{bottom:843.582000px;}
.y27b{bottom:845.280000px;}
.y256{bottom:845.715000px;}
.y2a1{bottom:851.742000px;}
.y8e{bottom:856.917000px;}
.yb0{bottom:858.393000px;}
.y1ae{bottom:859.581000px;}
.y145{bottom:859.881000px;}
.y181{bottom:861.069000px;}
.y16{bottom:862.977000px;}
.y9{bottom:863.235150px;}
.y27a{bottom:864.774000px;}
.y255{bottom:865.209000px;}
.y5a{bottom:867.471000px;}
.y3a{bottom:867.576000px;}
.y8d{bottom:876.411000px;}
.yaf{bottom:877.887000px;}
.y164{bottom:879.075000px;}
.y144{bottom:879.375000px;}
.y180{bottom:880.563000px;}
.y15{bottom:882.471000px;}
.y279{bottom:884.268000px;}
.y254{bottom:884.703000px;}
.y59{bottom:886.965000px;}
.y2a0{bottom:890.748000px;}
.y39{bottom:891.570000px;}
.yae{bottom:897.381000px;}
.y8c{bottom:897.406500px;}
.y163{bottom:898.569000px;}
.y14{bottom:901.965000px;}
.y278{bottom:903.762000px;}
.y58{bottom:906.459000px;}
.y29f{bottom:910.242000px;}
.y8{bottom:911.250150px;}
.y38{bottom:915.564000px;}
.yad{bottom:916.875000px;}
.y162{bottom:918.063000px;}
.y13{bottom:921.459000px;}
.y143{bottom:925.473000px;}
.y57{bottom:925.953000px;}
.y17f{bottom:926.661000px;}
.y29e{bottom:929.736000px;}
.y8b{bottom:931.924500px;}
.y78{bottom:935.280055px;}
.y7a{bottom:935.778355px;}
.y253{bottom:937.209000px;}
.y37{bottom:939.564000px;}
.y12{bottom:940.953000px;}
.y277{bottom:942.768000px;}
.y56{bottom:945.447000px;}
.y15f{bottom:949.890000px;}
.yaa{bottom:950.670000px;}
.y77{bottom:954.714450px;}
.y79{bottom:955.212750px;}
.y252{bottom:956.703000px;}
.y11{bottom:960.447000px;}
.y142{bottom:961.329000px;}
.y17e{bottom:961.923000px;}
.y276{bottom:962.262000px;}
.yac{bottom:962.973000px;}
.y161{bottom:964.161000px;}
.y55{bottom:964.941000px;}
.y36{bottom:968.076000px;}
.y29d{bottom:968.742000px;}
.y251{bottom:976.197000px;}
.y10{bottom:979.941000px;}
.y8a{bottom:980.691000px;}
.y275{bottom:981.756000px;}
.y29c{bottom:988.236000px;}
.y35{bottom:992.070000px;}
.y250{bottom:995.691000px;}
.yab{bottom:998.829000px;}
.y160{bottom:999.423000px;}
.yf{bottom:999.435000px;}
.y29b{bottom:1007.730000px;}
.y34{bottom:1016.064000px;}
.y274{bottom:1020.762000px;}
.y29a{bottom:1027.224000px;}
.y54{bottom:1031.689500px;}
.y273{bottom:1040.256000px;}
.y272{bottom:1059.750000px;}
.ye{bottom:1066.185000px;}
.y299{bottom:1066.230000px;}
.y33{bottom:1069.191000px;}
.y271{bottom:1079.244000px;}
.y298{bottom:1085.724000px;}
.hc{height:32.695195px;}
.hb{height:43.593867px;}
.h11{height:44.226000px;}
.he{height:48.774000px;}
.h6{height:49.140000px;}
.h2{height:53.208000px;}
.hf{height:54.054000px;}
.ha{height:57.642000px;}
.h1{height:58.968000px;}
.h9{height:62.076000px;}
.h5{height:66.696000px;}
.h8{height:101.982000px;}
.h7{height:110.850000px;}
.h3{height:132.480000px;}
.h10{height:133.020000px;}
.h4{height:147.420000px;}
.hd{height:343.819500px;}
.h0{height:1188.000000px;}
.w1{width:19.929000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:15.518850px;}
.x7{left:48.600000px;}
.x8{left:87.480000px;}
.x1c{left:91.846500px;}
.x9{left:92.880000px;}
.x32{left:94.219350px;}
.x35{left:96.487350px;}
.x37{left:99.673350px;}
.x4e{left:100.753350px;}
.x24{left:102.438000px;}
.x3e{left:104.425350px;}
.x1e{left:107.365350px;}
.x3f{left:111.823350px;}
.x3c{left:113.400000px;}
.x4f{left:124.297350px;}
.x2{left:136.535700px;}
.x3{left:138.695700px;}
.x50{left:141.480000px;}
.x12{left:148.662450px;}
.x3d{left:150.909150px;}
.x28{left:154.033350px;}
.x23{left:163.998450px;}
.xc{left:166.378950px;}
.xa{left:172.310400px;}
.x30{left:177.469350px;}
.x11{left:185.062050px;}
.x20{left:186.378150px;}
.xd{left:188.555524px;}
.x1f{left:199.941150px;}
.x27{left:214.647150px;}
.x29{left:218.743350px;}
.x44{left:224.719350px;}
.x33{left:226.645350px;}
.x36{left:234.313350px;}
.x2b{left:237.661350px;}
.x47{left:244.609350px;}
.xe{left:247.119750px;}
.x4{left:269.465700px;}
.x1a{left:323.117550px;}
.x19{left:340.804200px;}
.x1b{left:346.278453px;}
.x4c{left:467.071350px;}
.x39{left:468.871350px;}
.x25{left:473.184000px;}
.x40{left:477.565350px;}
.x49{left:479.113350px;}
.x41{left:480.193350px;}
.x45{left:481.291350px;}
.x2f{left:484.189350px;}
.x4a{left:487.249350px;}
.x2d{left:492.505350px;}
.x42{left:508.057350px;}
.x2e{left:511.945350px;}
.x16{left:514.980300px;}
.x31{left:517.705350px;}
.x18{left:524.944650px;}
.xb{left:527.186550px;}
.x34{left:538.495350px;}
.x17{left:544.873050px;}
.x46{left:551.077350px;}
.x4d{left:554.245350px;}
.x48{left:566.809350px;}
.x4b{left:570.769350px;}
.x43{left:582.181350px;}
.x1{left:584.280000px;}
.x26{left:605.646000px;}
.x10{left:614.396241px;}
.xf{left:617.632650px;}
.x38{left:621.745350px;}
.x3a{left:623.005350px;}
.x22{left:662.574750px;}
.x14{left:675.455400px;}
.x21{left:680.358750px;}
.x13{left:684.921600px;}
.x15{left:716.826966px;}
.x3b{left:856.840050px;}
.x2a{left:858.784200px;}
.x2c{left:861.682050px;}
.x6{left:862.815900px;}
.x5{left:879.159150px;}
@media print{
.v2{vertical-align:-10.724800pt;}
.v1{vertical-align:-5.338667pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-5.765333pt;}
.lse{letter-spacing:-5.760000pt;}
.lsd{letter-spacing:-3.845333pt;}
.lsb{letter-spacing:-3.840000pt;}
.ls9{letter-spacing:-0.680226pt;}
.ls5{letter-spacing:-0.396801pt;}
.ls2{letter-spacing:-0.340115pt;}
.ls4{letter-spacing:-0.170058pt;}
.ls7{letter-spacing:-0.127542pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.127542pt;}
.ls6{letter-spacing:0.170057pt;}
.ls1{letter-spacing:0.170058pt;}
.lsa{letter-spacing:0.255085pt;}
.ls3{letter-spacing:0.340115pt;}
.lsc{letter-spacing:1.280000pt;}
.ws1c{word-spacing:-34.720000pt;}
.ws1b{word-spacing:-25.600000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.151121pt;}
.ws7{word-spacing:-12.981063pt;}
.ws9{word-spacing:-12.414205pt;}
.ws17{word-spacing:-10.560000pt;}
.wsc{word-spacing:-9.735737pt;}
.wsa{word-spacing:-9.480652pt;}
.ws19{word-spacing:-9.386667pt;}
.wsb{word-spacing:-8.927968pt;}
.ws1d{word-spacing:-8.320000pt;}
.ws1a{word-spacing:-1.280000pt;}
.ws14{word-spacing:-0.255085pt;}
.ws1e{word-spacing:-0.192000pt;}
.ws18{word-spacing:-0.128000pt;}
.ws10{word-spacing:-0.085028pt;}
.ws13{word-spacing:-0.042514pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:0.085028pt;}
.wsf{word-spacing:0.170058pt;}
.wse{word-spacing:0.340115pt;}
.ws12{word-spacing:0.566859pt;}
.wsd{word-spacing:0.736916pt;}
.ws4{word-spacing:95.541333pt;}
.ws5{word-spacing:101.312000pt;}
.ws3{word-spacing:176.288000pt;}
.ws2{word-spacing:177.920000pt;}
.ws16{word-spacing:509.824000pt;}
.ws15{word-spacing:592.005333pt;}
._15{margin-left:-191.852800pt;}
._10{margin-left:-177.926400pt;}
._e{margin-left:-154.241067pt;}
._19{margin-left:-129.260800pt;}
._17{margin-left:-126.649600pt;}
._1a{margin-left:-96.012800pt;}
._14{margin-left:-64.384000pt;}
._11{margin-left:-60.652800pt;}
._18{margin-left:-57.600000pt;}
._16{margin-left:-43.776000pt;}
._f{margin-left:-40.512000pt;}
._12{margin-left:-39.488000pt;}
._13{margin-left:-38.553600pt;}
._6{margin-left:-12.266667pt;}
._34{margin-left:-10.957867pt;}
._29{margin-left:-6.518875pt;}
._5{margin-left:-5.120000pt;}
._4{margin-left:-3.872000pt;}
._1{margin-left:-2.560000pt;}
._0{margin-left:-1.280000pt;}
._2{width:1.273600pt;}
._3{width:2.440000pt;}
._28{width:5.095467pt;}
._d{width:67.904000pt;}
._20{width:87.637333pt;}
._24{width:92.906667pt;}
._27{width:97.024000pt;}
._b{width:98.936000pt;}
._23{width:100.736000pt;}
._26{width:101.696000pt;}
._25{width:102.720000pt;}
._22{width:103.808000pt;}
._21{width:105.222400pt;}
._1b{width:114.560000pt;}
._1f{width:115.520000pt;}
._1d{width:116.544000pt;}
._1c{width:117.824000pt;}
._1e{width:120.000000pt;}
._7{width:136.448000pt;}
._c{width:138.432000pt;}
._a{width:139.712000pt;}
._2a{width:154.582358pt;}
._8{width:174.528000pt;}
._9{width:177.920000pt;}
._3c{width:390.720000pt;}
._3a{width:395.142400pt;}
._31{width:411.456000pt;}
._37{width:432.192000pt;}
._3f{width:457.600000pt;}
._30{width:480.320000pt;}
._39{width:493.958400pt;}
._42{width:496.774400pt;}
._3b{width:497.728000pt;}
._48{width:500.358400pt;}
._44{width:503.616000pt;}
._40{width:521.222400pt;}
._47{width:524.352000pt;}
._3e{width:535.040000pt;}
._2d{width:545.783467pt;}
._38{width:565.568000pt;}
._32{width:576.192000pt;}
._3d{width:577.094400pt;}
._43{width:592.576000pt;}
._45{width:598.016000pt;}
._41{width:622.528000pt;}
._2e{width:638.272000pt;}
._36{width:640.576000pt;}
._46{width:671.366400pt;}
._33{width:672.774400pt;}
._35{width:674.054400pt;}
._2c{width:676.309333pt;}
._2b{width:722.656000pt;}
._2f{width:857.280000pt;}
.fs9{font-size:42.514133pt;}
.fsb{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:56.685867pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs6{font-size:122.666667pt;}
.fs5{font-size:133.333333pt;}
.fs1{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:22.400267pt;}
.yc{bottom:22.499067pt;}
.yd{bottom:23.786800pt;}
.y88{bottom:33.125867pt;}
.y7{bottom:45.632000pt;}
.y6{bottom:66.960000pt;}
.y5{bottom:88.288000pt;}
.ya9{bottom:105.112000pt;}
.y297{bottom:110.096000pt;}
.y1dd{bottom:118.933067pt;}
.ya8{bottom:122.440000pt;}
.y296{bottom:127.424000pt;}
.y4{bottom:130.960000pt;}
.y270{bottom:131.810667pt;}
.y26f{bottom:149.138667pt;}
.y3{bottom:152.288000pt;}
.y1dc{bottom:153.656000pt;}
.ya7{bottom:157.112000pt;}
.y26e{bottom:166.466667pt;}
.y1db{bottom:170.984000pt;}
.y237{bottom:170.986533pt;}
.y2{bottom:173.616000pt;}
.ya6{bottom:174.440000pt;}
.y295{bottom:179.424000pt;}
.y199{bottom:188.373067pt;}
.y294{bottom:196.752000pt;}
.y73{bottom:199.133333pt;}
.y26d{bottom:201.138667pt;}
.y10c{bottom:201.759867pt;}
.y1ad{bottom:204.114400pt;}
.y1da{bottom:205.656000pt;}
.y236{bottom:205.714667pt;}
.ya5{bottom:209.112000pt;}
.y32{bottom:212.530667pt;}
.y293{bottom:214.080000pt;}
.y1{bottom:216.288000pt;}
.y72{bottom:216.461333pt;}
.y26c{bottom:218.466667pt;}
.y1ac{bottom:220.826667pt;}
.y1c5{bottom:221.066533pt;}
.y53{bottom:221.872000pt;}
.y1d9{bottom:222.984000pt;}
.y235{bottom:223.042667pt;}
.y198{bottom:223.074533pt;}
.ya4{bottom:226.440000pt;}
.y31{bottom:229.858667pt;}
.y292{bottom:231.408000pt;}
.y71{bottom:233.789333pt;}
.y26b{bottom:235.794667pt;}
.y10b{bottom:236.473200pt;}
.y1d8{bottom:240.312000pt;}
.y197{bottom:240.402533pt;}
.ya3{bottom:243.768000pt;}
.y30{bottom:247.186667pt;}
.y52{bottom:247.200000pt;}
.y70{bottom:251.117333pt;}
.y10a{bottom:253.801200pt;}
.y132{bottom:253.840000pt;}
.y1ab{bottom:253.981333pt;}
.y1c4{bottom:255.767733pt;}
.y1d7{bottom:257.640000pt;}
.y234{bottom:257.714533pt;}
.ya2{bottom:261.096000pt;}
.y2f{bottom:264.514667pt;}
.y291{bottom:266.080000pt;}
.y51{bottom:268.528000pt;}
.y17d{bottom:268.802533pt;}
.y26a{bottom:270.466667pt;}
.y11c{bottom:271.152000pt;}
.y131{bottom:271.168000pt;}
.y203{bottom:273.066533pt;}
.y1c3{bottom:273.095733pt;}
.y1aa{bottom:273.181333pt;}
.y233{bottom:275.042533pt;}
.y196{bottom:275.074533pt;}
.y2e{bottom:281.842667pt;}
.y290{bottom:283.408000pt;}
.y6f{bottom:285.789333pt;}
.y269{bottom:287.794667pt;}
.y109{bottom:288.473200pt;}
.y11b{bottom:288.480000pt;}
.y50{bottom:289.856000pt;}
.y1ee{bottom:290.399867pt;}
.yd5{bottom:291.715867pt;}
.y1d6{bottom:292.312000pt;}
.y232{bottom:292.370533pt;}
.y195{bottom:292.402533pt;}
.ye8{bottom:294.133333pt;}
.ya1{bottom:295.768000pt;}
.y2d{bottom:299.170667pt;}
.y28f{bottom:300.736000pt;}
.y6e{bottom:303.117333pt;}
.y17c{bottom:303.474400pt;}
.y268{bottom:305.122667pt;}
.y108{bottom:305.801200pt;}
.y130{bottom:305.840000pt;}
.y202{bottom:307.725200pt;}
.y246{bottom:307.733067pt;}
.y1c2{bottom:307.767733pt;}
.y1a9{bottom:307.853067pt;}
.yd4{bottom:309.043867pt;}
.y1d5{bottom:309.640000pt;}
.y231{bottom:309.698533pt;}
.y194{bottom:309.730533pt;}
.y4f{bottom:311.184000pt;}
.ya0{bottom:313.096000pt;}
.y28e{bottom:318.064000pt;}
.y17b{bottom:320.802400pt;}
.y267{bottom:322.450667pt;}
.y107{bottom:323.129200pt;}
.y12f{bottom:323.168000pt;}
.y11a{bottom:323.172000pt;}
.y201{bottom:325.053200pt;}
.y1ed{bottom:325.063733pt;}
.y1c1{bottom:325.095733pt;}
.y1a8{bottom:325.181067pt;}
.yc1{bottom:326.349333pt;}
.y1d4{bottom:326.968000pt;}
.y230{bottom:327.026533pt;}
.y193{bottom:327.058533pt;}
.ye7{bottom:328.830533pt;}
.y9f{bottom:330.424000pt;}
.y4e{bottom:332.512000pt;}
.y2c{bottom:333.842667pt;}
.y28d{bottom:335.392000pt;}
.y6d{bottom:337.789333pt;}
.yf5{bottom:340.426667pt;}
.y106{bottom:340.457200pt;}
.y12e{bottom:340.496000pt;}
.y119{bottom:340.500000pt;}
.y1ec{bottom:342.391733pt;}
.y245{bottom:342.402400pt;}
.y1c0{bottom:342.423733pt;}
.y1a7{bottom:342.509067pt;}
.yd3{bottom:343.715867pt;}
.y1d3{bottom:344.296000pt;}
.y22f{bottom:344.354533pt;}
.y210{bottom:346.133200pt;}
.ye6{bottom:346.158533pt;}
.y9e{bottom:347.752000pt;}
.y2b{bottom:351.170667pt;}
.y4d{bottom:353.840000pt;}
.y6c{bottom:355.117333pt;}
.y17a{bottom:355.474400pt;}
.y266{bottom:357.122667pt;}
.y200{bottom:359.725200pt;}
.yc0{bottom:361.028000pt;}
.yd2{bottom:361.043867pt;}
.y21f{bottom:361.439733pt;}
.y192{bottom:361.730533pt;}
.y15e{bottom:362.666667pt;}
.y2a{bottom:368.498667pt;}
.y28c{bottom:370.064000pt;}
.y6b{bottom:372.445333pt;}
.y179{bottom:372.802400pt;}
.y265{bottom:374.450667pt;}
.yf4{bottom:375.102533pt;}
.y105{bottom:375.129200pt;}
.y4c{bottom:375.168000pt;}
.y118{bottom:375.172000pt;}
.y1ff{bottom:377.053200pt;}
.y1eb{bottom:377.063733pt;}
.y244{bottom:377.074400pt;}
.y1bf{bottom:377.095733pt;}
.y1a6{bottom:377.181067pt;}
.yd1{bottom:378.371867pt;}
.y1d2{bottom:378.967733pt;}
.y22e{bottom:379.026533pt;}
.y191{bottom:379.058533pt;}
.y20f{bottom:380.823733pt;}
.ye5{bottom:380.830533pt;}
.y9d{bottom:382.424000pt;}
.y154{bottom:382.874667pt;}
.y29{bottom:385.826667pt;}
.y28b{bottom:387.392000pt;}
.y264{bottom:391.778667pt;}
.y104{bottom:392.457200pt;}
.y12d{bottom:392.496000pt;}
.y117{bottom:392.500000pt;}
.y1fe{bottom:394.381200pt;}
.y1ea{bottom:394.391733pt;}
.y243{bottom:394.402400pt;}
.y1be{bottom:394.423733pt;}
.y1a5{bottom:394.509067pt;}
.ybf{bottom:395.700000pt;}
.y21e{bottom:396.125067pt;}
.y1d1{bottom:396.295733pt;}
.y22d{bottom:396.354533pt;}
.y190{bottom:396.386533pt;}
.y4b{bottom:396.501333pt;}
.y15d{bottom:397.337333pt;}
.ye4{bottom:398.158533pt;}
.y9c{bottom:399.752000pt;}
.y28{bottom:403.154667pt;}
.y28a{bottom:404.720000pt;}
.y6a{bottom:407.117333pt;}
.y178{bottom:407.474400pt;}
.yf3{bottom:409.774533pt;}
.y103{bottom:409.785200pt;}
.y12c{bottom:409.824000pt;}
.y116{bottom:409.828000pt;}
.y13d{bottom:409.844000pt;}
.y1e9{bottom:411.719733pt;}
.y242{bottom:411.730400pt;}
.y1bd{bottom:411.751733pt;}
.ybe{bottom:413.028000pt;}
.yd0{bottom:413.043867pt;}
.y1d0{bottom:413.623733pt;}
.y22c{bottom:413.682533pt;}
.ye3{bottom:415.486533pt;}
.y20e{bottom:415.495733pt;}
.y9b{bottom:417.080000pt;}
.y153{bottom:417.545333pt;}
.y27{bottom:420.482667pt;}
.y4a{bottom:421.834667pt;}
.y69{bottom:424.445333pt;}
.y177{bottom:424.802400pt;}
.yf2{bottom:427.102533pt;}
.y102{bottom:427.113200pt;}
.y13c{bottom:427.172000pt;}
.y1fd{bottom:429.053200pt;}
.y1bc{bottom:429.079733pt;}
.y1a4{bottom:429.181067pt;}
.ycf{bottom:430.371867pt;}
.y21d{bottom:430.797067pt;}
.y22b{bottom:431.010533pt;}
.y18f{bottom:431.058533pt;}
.y15c{bottom:432.009333pt;}
.y20d{bottom:432.823733pt;}
.y9a{bottom:434.408000pt;}
.y26{bottom:437.810667pt;}
.y263{bottom:438.450667pt;}
.y289{bottom:439.392000pt;}
.y49{bottom:443.168000pt;}
.yf1{bottom:444.430533pt;}
.y101{bottom:444.441200pt;}
.y12b{bottom:444.496000pt;}
.y115{bottom:444.500000pt;}
.y1fc{bottom:446.381200pt;}
.y1e8{bottom:446.391733pt;}
.y241{bottom:446.402400pt;}
.y1a3{bottom:446.509067pt;}
.yce{bottom:447.699867pt;}
.ybd{bottom:447.700000pt;}
.y21c{bottom:448.125067pt;}
.y1cf{bottom:448.295733pt;}
.y22a{bottom:448.338533pt;}
.y18e{bottom:448.386533pt;}
.y15b{bottom:449.337333pt;}
.y20c{bottom:450.151733pt;}
.ye2{bottom:450.158533pt;}
.y99{bottom:451.736000pt;}
.y152{bottom:452.217333pt;}
.y25{bottom:455.138667pt;}
.y262{bottom:455.778667pt;}
.y288{bottom:456.720000pt;}
.y68{bottom:459.117333pt;}
.y176{bottom:459.474400pt;}
.y100{bottom:461.769200pt;}
.y141{bottom:461.813333pt;}
.y12a{bottom:461.824000pt;}
.y114{bottom:461.828000pt;}
.y24f{bottom:463.626667pt;}
.y1e7{bottom:463.719733pt;}
.y240{bottom:463.730400pt;}
.y1bb{bottom:463.751733pt;}
.y1a2{bottom:463.837067pt;}
.ycd{bottom:465.027867pt;}
.ybc{bottom:465.028000pt;}
.y21b{bottom:465.453067pt;}
.y1ce{bottom:465.623733pt;}
.y18d{bottom:465.714533pt;}
.y15a{bottom:466.665333pt;}
.y20b{bottom:467.479733pt;}
.ye1{bottom:467.486533pt;}
.y48{bottom:468.517333pt;}
.y151{bottom:469.545333pt;}
.y24{bottom:472.466667pt;}
.y261{bottom:473.106667pt;}
.y287{bottom:474.048000pt;}
.y67{bottom:476.445333pt;}
.y175{bottom:476.802400pt;}
.yf0{bottom:479.102533pt;}
.y129{bottom:479.152000pt;}
.y113{bottom:479.156000pt;}
.y13b{bottom:479.172000pt;}
.y1fb{bottom:481.053200pt;}
.y23f{bottom:481.058400pt;}
.y1ba{bottom:481.079733pt;}
.ybb{bottom:482.356000pt;}
.y21a{bottom:482.781067pt;}
.y1cd{bottom:482.951733pt;}
.y229{bottom:483.010533pt;}
.y159{bottom:483.993333pt;}
.y20a{bottom:484.807733pt;}
.ye0{bottom:484.814533pt;}
.y98{bottom:486.408000pt;}
.y150{bottom:486.873333pt;}
.y23{bottom:489.794667pt;}
.y47{bottom:489.845333pt;}
.y174{bottom:494.130400pt;}
.yef{bottom:496.430533pt;}
.yff{bottom:496.441200pt;}
.y140{bottom:496.478667pt;}
.y112{bottom:496.484000pt;}
.y128{bottom:496.494533pt;}
.y13a{bottom:496.500000pt;}
.y24e{bottom:498.301333pt;}
.y1fa{bottom:498.381200pt;}
.y1e6{bottom:498.391733pt;}
.y1b9{bottom:498.407733pt;}
.y1a1{bottom:498.509067pt;}
.yba{bottom:499.684000pt;}
.ycc{bottom:499.699867pt;}
.y219{bottom:500.109067pt;}
.y1cc{bottom:500.279733pt;}
.y228{bottom:500.338533pt;}
.y18c{bottom:500.386533pt;}
.y158{bottom:501.321333pt;}
.ydf{bottom:502.142533pt;}
.y97{bottom:503.736000pt;}
.y14f{bottom:504.201333pt;}
.y22{bottom:507.122667pt;}
.y286{bottom:508.720000pt;}
.y66{bottom:511.117333pt;}
.y46{bottom:511.173333pt;}
.y173{bottom:511.458400pt;}
.yee{bottom:513.758533pt;}
.yfe{bottom:513.769200pt;}
.y121{bottom:513.806667pt;}
.y127{bottom:513.822533pt;}
.y139{bottom:513.828000pt;}
.y2ac{bottom:514.464000pt;}
.y1f9{bottom:515.709200pt;}
.y1e5{bottom:515.719733pt;}
.y23e{bottom:515.730400pt;}
.y1b8{bottom:515.735733pt;}
.y1a0{bottom:515.837067pt;}
.yb9{bottom:517.012000pt;}
.ycb{bottom:517.027867pt;}
.y1cb{bottom:517.607733pt;}
.y227{bottom:517.666533pt;}
.y18b{bottom:517.714533pt;}
.y209{bottom:519.479733pt;}
.y260{bottom:519.778667pt;}
.y285{bottom:526.048000pt;}
.y65{bottom:528.445333pt;}
.y172{bottom:528.786400pt;}
.yfd{bottom:531.097200pt;}
.y13f{bottom:531.150667pt;}
.y111{bottom:531.156000pt;}
.y2ab{bottom:531.792000pt;}
.y45{bottom:532.501333pt;}
.y24d{bottom:532.973333pt;}
.y1f8{bottom:533.037200pt;}
.y1e4{bottom:533.047733pt;}
.y23d{bottom:533.058400pt;}
.y1b7{bottom:533.063733pt;}
.y19f{bottom:533.165067pt;}
.yca{bottom:534.355867pt;}
.y218{bottom:534.781067pt;}
.y1ca{bottom:534.935733pt;}
.y226{bottom:534.994533pt;}
.y18a{bottom:535.042533pt;}
.y157{bottom:535.993333pt;}
.y208{bottom:536.807733pt;}
.yde{bottom:536.814533pt;}
.y25f{bottom:537.106667pt;}
.y14e{bottom:538.873333pt;}
.y96{bottom:539.064000pt;}
.y21{bottom:541.794667pt;}
.y284{bottom:543.376000pt;}
.y64{bottom:545.773333pt;}
.y171{bottom:546.114400pt;}
.yfc{bottom:548.425200pt;}
.yed{bottom:548.430533pt;}
.y120{bottom:548.478667pt;}
.y110{bottom:548.484000pt;}
.y126{bottom:548.494533pt;}
.y2aa{bottom:549.120000pt;}
.y24c{bottom:550.301333pt;}
.y1f7{bottom:550.365200pt;}
.y1e3{bottom:550.375733pt;}
.y23c{bottom:550.386400pt;}
.y1b6{bottom:550.391733pt;}
.y19e{bottom:550.493067pt;}
.yb8{bottom:551.684000pt;}
.y217{bottom:552.109067pt;}
.y1c9{bottom:552.263733pt;}
.y225{bottom:552.322533pt;}
.y189{bottom:552.370533pt;}
.y156{bottom:553.321333pt;}
.y44{bottom:553.834667pt;}
.ydd{bottom:554.142533pt;}
.y25e{bottom:554.434667pt;}
.y14d{bottom:556.201333pt;}
.y95{bottom:556.392000pt;}
.y63{bottom:563.101333pt;}
.y170{bottom:563.442400pt;}
.yfb{bottom:565.753200pt;}
.yec{bottom:565.758533pt;}
.y11f{bottom:565.806667pt;}
.y10f{bottom:565.812000pt;}
.y125{bottom:565.822533pt;}
.y138{bottom:565.828000pt;}
.y24b{bottom:567.629333pt;}
.y1e2{bottom:567.703733pt;}
.y23b{bottom:567.714400pt;}
.y1b5{bottom:567.719733pt;}
.yb7{bottom:569.012000pt;}
.yc9{bottom:569.027867pt;}
.y1c8{bottom:569.591733pt;}
.y224{bottom:569.650533pt;}
.y188{bottom:569.698533pt;}
.y155{bottom:570.649333pt;}
.ydc{bottom:571.470533pt;}
.y207{bottom:571.479733pt;}
.y14c{bottom:573.529333pt;}
.y20{bottom:576.466667pt;}
.y283{bottom:578.048000pt;}
.y43{bottom:579.226667pt;}
.y16f{bottom:580.770400pt;}
.yfa{bottom:583.081200pt;}
.yeb{bottom:583.086533pt;}
.y10e{bottom:583.140000pt;}
.y124{bottom:583.150533pt;}
.y13e{bottom:583.150667pt;}
.y137{bottom:583.156000pt;}
.y2a9{bottom:583.792000pt;}
.y24a{bottom:584.957333pt;}
.y1e1{bottom:585.031733pt;}
.y23a{bottom:585.042400pt;}
.y1b4{bottom:585.047733pt;}
.yb6{bottom:586.340000pt;}
.yc8{bottom:586.355867pt;}
.y216{bottom:586.781067pt;}
.y1c7{bottom:586.919733pt;}
.y223{bottom:586.978533pt;}
.y87{bottom:588.278667pt;}
.ydb{bottom:588.798533pt;}
.y206{bottom:588.807733pt;}
.y94{bottom:589.710667pt;}
.y1f4{bottom:591.405200pt;}
.y1f{bottom:593.794667pt;}
.y19d{bottom:594.077067pt;}
.y282{bottom:595.376000pt;}
.y62{bottom:597.773333pt;}
.y16e{bottom:598.098400pt;}
.yea{bottom:600.414533pt;}
.y123{bottom:600.478533pt;}
.y11e{bottom:600.478667pt;}
.y136{bottom:600.484000pt;}
.y42{bottom:600.554667pt;}
.y25d{bottom:601.106667pt;}
.y2a8{bottom:601.120000pt;}
.y249{bottom:602.285333pt;}
.y239{bottom:602.370400pt;}
.yb5{bottom:603.668000pt;}
.yc7{bottom:603.683867pt;}
.y215{bottom:604.109067pt;}
.y1c6{bottom:604.247733pt;}
.yda{bottom:606.126533pt;}
.y205{bottom:606.135733pt;}
.y83{bottom:608.296000pt;}
.y14b{bottom:608.857333pt;}
.y7c{bottom:609.624533pt;}
.y1f6{bottom:610.061200pt;}
.y1f3{bottom:610.077200pt;}
.y80{bottom:610.731733pt;}
.y1e{bottom:611.122667pt;}
.y187{bottom:611.410533pt;}
.y281{bottom:612.704000pt;}
.y19c{bottom:612.749067pt;}
.y61{bottom:615.101333pt;}
.y122{bottom:617.806533pt;}
.y11d{bottom:617.806667pt;}
.y135{bottom:617.812000pt;}
.y25c{bottom:618.434667pt;}
.y2a7{bottom:618.448000pt;}
.y248{bottom:619.613333pt;}
.y238{bottom:619.698400pt;}
.yc6{bottom:621.011867pt;}
.y214{bottom:621.437067pt;}
.y41{bottom:621.882667pt;}
.yd9{bottom:623.454533pt;}
.y204{bottom:623.463733pt;}
.yf9{bottom:624.857200pt;}
.y1e0{bottom:626.055733pt;}
.y1b3{bottom:626.071733pt;}
.y10d{bottom:626.196000pt;}
.y222{bottom:627.410533pt;}
.y14a{bottom:627.529333pt;}
.y1d{bottom:628.450667pt;}
.y1f5{bottom:628.733200pt;}
.y1f2{bottom:628.749200pt;}
.y280{bottom:630.032000pt;}
.y186{bottom:630.082533pt;}
.y60{bottom:632.429333pt;}
.y134{bottom:635.140000pt;}
.y25b{bottom:635.762667pt;}
.yc5{bottom:638.339867pt;}
.y213{bottom:638.765067pt;}
.y93{bottom:639.720000pt;}
.y16d{bottom:642.050400pt;}
.y169{bottom:642.066400pt;}
.ye9{bottom:642.190533pt;}
.y40{bottom:643.210667pt;}
.yf8{bottom:643.529200pt;}
.y1df{bottom:644.727733pt;}
.y1b2{bottom:644.743733pt;}
.yb4{bottom:644.868000pt;}
.y19b{bottom:645.405067pt;}
.y1c{bottom:645.778667pt;}
.y221{bottom:646.082533pt;}
.y149{bottom:646.201333pt;}
.y5f{bottom:649.757333pt;}
.y25a{bottom:653.090667pt;}
.y2a6{bottom:653.120000pt;}
.yc4{bottom:655.667867pt;}
.y16c{bottom:660.722400pt;}
.y168{bottom:660.738400pt;}
.yd8{bottom:660.862533pt;}
.y1f1{bottom:661.405200pt;}
.y247{bottom:662.077067pt;}
.yf7{bottom:662.201200pt;}
.y185{bottom:662.738533pt;}
.y1b{bottom:663.106667pt;}
.y1de{bottom:663.399733pt;}
.y1b1{bottom:663.415733pt;}
.y3f{bottom:664.538667pt;}
.y27f{bottom:664.704000pt;}
.y5e{bottom:667.085333pt;}
.y2a5{bottom:670.448000pt;}
.y86{bottom:671.653133pt;}
.y82{bottom:672.317399pt;}
.y7f{bottom:672.538866pt;}
.y92{bottom:674.392000pt;}
.yb3{bottom:677.604000pt;}
.y7b{bottom:677.629867pt;}
.y133{bottom:678.195867pt;}
.y220{bottom:678.738533pt;}
.y148{bottom:678.937333pt;}
.y16b{bottom:679.394400pt;}
.y167{bottom:679.410400pt;}
.yd7{bottom:679.534533pt;}
.y1a{bottom:680.434667pt;}
.y212{bottom:680.749067pt;}
.y27e{bottom:682.032000pt;}
.y85{bottom:684.715600pt;}
.y81{bottom:685.379867pt;}
.y7e{bottom:685.601333pt;}
.y3e{bottom:685.866667pt;}
.y2a4{bottom:687.776000pt;}
.y91{bottom:691.720000pt;}
.yf6{bottom:694.937200pt;}
.y1b0{bottom:696.071733pt;}
.y19a{bottom:696.082667pt;}
.yc3{bottom:696.867867pt;}
.y19{bottom:697.762667pt;}
.y16a{bottom:698.066400pt;}
.y166{bottom:698.082400pt;}
.y27d{bottom:699.360000pt;}
.y259{bottom:699.762667pt;}
.y5d{bottom:701.757333pt;}
.y3d{bottom:707.194667pt;}
.y90{bottom:709.048000pt;}
.y1f0{bottom:712.088000pt;}
.yd6{bottom:712.270533pt;}
.y211{bottom:713.405067pt;}
.y184{bottom:713.410667pt;}
.y18{bottom:715.090667pt;}
.y89{bottom:715.454533pt;}
.y27c{bottom:716.688000pt;}
.y258{bottom:717.090667pt;}
.y5c{bottom:719.085333pt;}
.y2a3{bottom:722.448000pt;}
.ya{bottom:724.640133pt;}
.y8f{bottom:726.376000pt;}
.yb2{bottom:728.360000pt;}
.y3c{bottom:728.522667pt;}
.y1ef{bottom:729.416000pt;}
.yc2{bottom:729.603867pt;}
.y147{bottom:729.682667pt;}
.y165{bottom:730.738400pt;}
.y183{bottom:730.738667pt;}
.y76{bottom:732.558449pt;}
.y257{bottom:734.418667pt;}
.y5b{bottom:736.413333pt;}
.y2a2{bottom:739.776000pt;}
.y84{bottom:740.754933pt;}
.y74{bottom:741.640533pt;}
.y7d{bottom:744.740533pt;}
.yb1{bottom:745.688000pt;}
.y1af{bottom:746.744000pt;}
.y146{bottom:747.010667pt;}
.y182{bottom:748.066667pt;}
.y17{bottom:749.762667pt;}
.y75{bottom:749.833467pt;}
.y3b{bottom:749.850667pt;}
.y27b{bottom:751.360000pt;}
.y256{bottom:751.746667pt;}
.y2a1{bottom:757.104000pt;}
.y8e{bottom:761.704000pt;}
.yb0{bottom:763.016000pt;}
.y1ae{bottom:764.072000pt;}
.y145{bottom:764.338667pt;}
.y181{bottom:765.394667pt;}
.y16{bottom:767.090667pt;}
.y9{bottom:767.320133pt;}
.y27a{bottom:768.688000pt;}
.y255{bottom:769.074667pt;}
.y5a{bottom:771.085333pt;}
.y3a{bottom:771.178667pt;}
.y8d{bottom:779.032000pt;}
.yaf{bottom:780.344000pt;}
.y164{bottom:781.400000pt;}
.y144{bottom:781.666667pt;}
.y180{bottom:782.722667pt;}
.y15{bottom:784.418667pt;}
.y279{bottom:786.016000pt;}
.y254{bottom:786.402667pt;}
.y59{bottom:788.413333pt;}
.y2a0{bottom:791.776000pt;}
.y39{bottom:792.506667pt;}
.yae{bottom:797.672000pt;}
.y8c{bottom:797.694667pt;}
.y163{bottom:798.728000pt;}
.y14{bottom:801.746667pt;}
.y278{bottom:803.344000pt;}
.y58{bottom:805.741333pt;}
.y29f{bottom:809.104000pt;}
.y8{bottom:810.000133pt;}
.y38{bottom:813.834667pt;}
.yad{bottom:815.000000pt;}
.y162{bottom:816.056000pt;}
.y13{bottom:819.074667pt;}
.y143{bottom:822.642667pt;}
.y57{bottom:823.069333pt;}
.y17f{bottom:823.698667pt;}
.y29e{bottom:826.432000pt;}
.y8b{bottom:828.377333pt;}
.y78{bottom:831.360049pt;}
.y7a{bottom:831.802982pt;}
.y253{bottom:833.074667pt;}
.y37{bottom:835.168000pt;}
.y12{bottom:836.402667pt;}
.y277{bottom:838.016000pt;}
.y56{bottom:840.397333pt;}
.y15f{bottom:844.346667pt;}
.yaa{bottom:845.040000pt;}
.y77{bottom:848.635067pt;}
.y79{bottom:849.078000pt;}
.y252{bottom:850.402667pt;}
.y11{bottom:853.730667pt;}
.y142{bottom:854.514667pt;}
.y17e{bottom:855.042667pt;}
.y276{bottom:855.344000pt;}
.yac{bottom:855.976000pt;}
.y161{bottom:857.032000pt;}
.y55{bottom:857.725333pt;}
.y36{bottom:860.512000pt;}
.y29d{bottom:861.104000pt;}
.y251{bottom:867.730667pt;}
.y10{bottom:871.058667pt;}
.y8a{bottom:871.725333pt;}
.y275{bottom:872.672000pt;}
.y29c{bottom:878.432000pt;}
.y35{bottom:881.840000pt;}
.y250{bottom:885.058667pt;}
.yab{bottom:887.848000pt;}
.y160{bottom:888.376000pt;}
.yf{bottom:888.386667pt;}
.y29b{bottom:895.760000pt;}
.y34{bottom:903.168000pt;}
.y274{bottom:907.344000pt;}
.y29a{bottom:913.088000pt;}
.y54{bottom:917.057333pt;}
.y273{bottom:924.672000pt;}
.y272{bottom:942.000000pt;}
.ye{bottom:947.720000pt;}
.y299{bottom:947.760000pt;}
.y33{bottom:950.392000pt;}
.y271{bottom:959.328000pt;}
.y298{bottom:965.088000pt;}
.hc{height:29.062396pt;}
.hb{height:38.750104pt;}
.h11{height:39.312000pt;}
.he{height:43.354667pt;}
.h6{height:43.680000pt;}
.h2{height:47.296000pt;}
.hf{height:48.048000pt;}
.ha{height:51.237333pt;}
.h1{height:52.416000pt;}
.h9{height:55.178667pt;}
.h5{height:59.285333pt;}
.h8{height:90.650667pt;}
.h7{height:98.533333pt;}
.h3{height:117.760000pt;}
.h10{height:118.240000pt;}
.h4{height:131.040000pt;}
.hd{height:305.617333pt;}
.h0{height:1056.000000pt;}
.w1{width:17.714667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:13.794533pt;}
.x7{left:43.200000pt;}
.x8{left:77.760000pt;}
.x1c{left:81.641333pt;}
.x9{left:82.560000pt;}
.x32{left:83.750533pt;}
.x35{left:85.766533pt;}
.x37{left:88.598533pt;}
.x4e{left:89.558533pt;}
.x24{left:91.056000pt;}
.x3e{left:92.822533pt;}
.x1e{left:95.435867pt;}
.x3f{left:99.398533pt;}
.x3c{left:100.800000pt;}
.x4f{left:110.486533pt;}
.x2{left:121.365067pt;}
.x3{left:123.285067pt;}
.x50{left:125.760000pt;}
.x12{left:132.144400pt;}
.x3d{left:134.141467pt;}
.x28{left:136.918533pt;}
.x23{left:145.776400pt;}
.xc{left:147.892400pt;}
.xa{left:153.164800pt;}
.x30{left:157.750533pt;}
.x11{left:164.499600pt;}
.x20{left:165.669467pt;}
.xd{left:167.604910pt;}
.x1f{left:177.725467pt;}
.x27{left:190.797467pt;}
.x29{left:194.438533pt;}
.x44{left:199.750533pt;}
.x33{left:201.462533pt;}
.x36{left:208.278533pt;}
.x2b{left:211.254533pt;}
.x47{left:217.430533pt;}
.xe{left:219.662000pt;}
.x4{left:239.525067pt;}
.x1a{left:287.215600pt;}
.x19{left:302.937067pt;}
.x1b{left:307.803069pt;}
.x4c{left:415.174533pt;}
.x39{left:416.774533pt;}
.x25{left:420.608000pt;}
.x40{left:424.502533pt;}
.x49{left:425.878533pt;}
.x41{left:426.838533pt;}
.x45{left:427.814533pt;}
.x2f{left:430.390533pt;}
.x4a{left:433.110533pt;}
.x2d{left:437.782533pt;}
.x42{left:451.606533pt;}
.x2e{left:455.062533pt;}
.x16{left:457.760267pt;}
.x31{left:460.182533pt;}
.x18{left:466.617467pt;}
.xb{left:468.610267pt;}
.x34{left:478.662533pt;}
.x17{left:484.331600pt;}
.x46{left:489.846533pt;}
.x4d{left:492.662533pt;}
.x48{left:503.830533pt;}
.x4b{left:507.350533pt;}
.x43{left:517.494533pt;}
.x1{left:519.360000pt;}
.x26{left:538.352000pt;}
.x10{left:546.129992pt;}
.xf{left:549.006800pt;}
.x38{left:552.662533pt;}
.x3a{left:553.782533pt;}
.x22{left:588.955333pt;}
.x14{left:600.404800pt;}
.x21{left:604.763333pt;}
.x13{left:608.819200pt;}
.x15{left:637.179525pt;}
.x3b{left:761.635600pt;}
.x2a{left:763.363733pt;}
.x2c{left:765.939600pt;}
.x6{left:766.947467pt;}
.x5{left:781.474800pt;}
}




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