
    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_dbb425b7dc03a52f239d59cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.947000;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_5071d5a8c87631aad33c9c06.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_428ef4c54c1d17d2c1c018c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f0f3a82a45b130b57529b82b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_0ec4bffd587961011693d8f9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.947000;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_f19b456e93a93ea48a9fa89f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_2b31a0c7402873eb76e0aace.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973000;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_5c9701733c721c1f4ae839fd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_60dd27e70a9341a7dbe459dc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e2a75590918381ef988fd4f4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.076000;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_01ee0ec7aee18817c7e339a0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740234;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_ee88c1d3d97f6bb4f3007587.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.757000;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_ff82a8737be7f46585d80954.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.694000;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_ddc9b54399a16b70bd815917.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.706000;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_ab2b2f939cdb0ef21f3edd97.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_e98f95b397687d3454ecaad7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.700000;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_c67e4ba58ad341922821f86b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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_79984f215f6485b5feb29c59.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;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_d9879730409e1cc1f81760f7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.944000;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_3ef84e4405acd9b27942e0b3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.942000;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_aaccd442cb8fe813ca05f483.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.743000;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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m3{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,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:-24.946860px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.936700px;}
.ls3{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000180px;}
.ls0{letter-spacing:0.000540px;}
.ls23{letter-spacing:0.000720px;}
.lsf{letter-spacing:0.006000px;}
.ls7{letter-spacing:20.376000px;}
.ls6{letter-spacing:26.928000px;}
.ls25{letter-spacing:38.149200px;}
.ls20{letter-spacing:38.435400px;}
.ls21{letter-spacing:38.531400px;}
.ls24{letter-spacing:54.792000px;}
.ls1e{letter-spacing:56.287800px;}
.lsb{letter-spacing:61.128000px;}
.ls28{letter-spacing:61.760400px;}
.ls1f{letter-spacing:63.872400px;}
.ls1c{letter-spacing:74.640000px;}
.ls27{letter-spacing:77.976000px;}
.ls1{letter-spacing:89.280000px;}
.ls1d{letter-spacing:100.920000px;}
.ls8{letter-spacing:112.608000px;}
.ls5{letter-spacing:121.032000px;}
.lsa{letter-spacing:139.680000px;}
.ls4{letter-spacing:157.248000px;}
.ls1b{letter-spacing:175.392000px;}
.ls26{letter-spacing:177.846000px;}
.ls9{letter-spacing:186.696000px;}
.lsc{letter-spacing:191.880000px;}
.ls2{letter-spacing:195.984000px;}
.lsd{letter-spacing:200.988000px;}
.ls1a{letter-spacing:579.504000px;}
.ls16{letter-spacing:1324.284000px;}
.ls17{letter-spacing:1636.122000px;}
.ls19{letter-spacing:1730.412000px;}
.lse{letter-spacing:1766.106000px;}
.ls18{letter-spacing:1771.002000px;}
.ls13{letter-spacing:1885.344000px;}
.ls14{letter-spacing:1898.376000px;}
.ls15{letter-spacing:2116.824000px;}
.ls11{letter-spacing:2138.208000px;}
.ls12{letter-spacing:2165.496000px;}
.ls10{letter-spacing:2208.114000px;}
.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;}
}
.wsf{word-spacing:-34.920000px;}
.ws11{word-spacing:-28.836000px;}
.ws3{word-spacing:-23.040000px;}
.ws4{word-spacing:-22.800000px;}
.ws9{word-spacing:-19.740000px;}
.ws5{word-spacing:-19.200000px;}
.wse{word-spacing:-18.240000px;}
.ws10{word-spacing:-16.680000px;}
.ws2{word-spacing:-15.264000px;}
.ws1{word-spacing:-14.976000px;}
.wsd{word-spacing:-14.150456px;}
.wsc{word-spacing:-13.728000px;}
.ws6{word-spacing:-13.680000px;}
.wsb{word-spacing:-12.540000px;}
.wsa{word-spacing:-12.480000px;}
.ws7{word-spacing:-8.985600px;}
.ws8{word-spacing:-7.488000px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-167.569635px;}
._f{margin-left:-114.650704px;}
._10{margin-left:-43.200000px;}
._a{margin-left:-25.577942px;}
._11{margin-left:-13.951920px;}
._6{margin-left:-12.240000px;}
._1f{margin-left:-9.814341px;}
._4{margin-left:-8.718599px;}
._e{margin-left:-7.472143px;}
._3{margin-left:-6.342631px;}
._0{margin-left:-4.388376px;}
._2{margin-left:-3.366058px;}
._1{margin-left:-1.864307px;}
._c{width:1.864595px;}
._2e{width:3.538865px;}
._28{width:4.749866px;}
._23{width:9.000576px;}
._1b{width:10.720307px;}
._39{width:12.492159px;}
._27{width:13.500576px;}
._2f{width:17.009607px;}
._26{width:18.115359px;}
._25{width:21.731673px;}
._15{width:22.746450px;}
._24{width:26.568008px;}
._2d{width:27.905229px;}
._2a{width:30.920131px;}
._2b{width:32.284487px;}
._29{width:36.000000px;}
._2c{width:40.490286px;}
._38{width:41.490807px;}
._32{width:44.618398px;}
._33{width:45.785509px;}
._31{width:48.704777px;}
._34{width:49.733281px;}
._1a{width:51.840000px;}
._30{width:54.000000px;}
._7{width:55.192165px;}
._37{width:57.853481px;}
._36{width:59.208495px;}
._35{width:62.811646px;}
._22{width:64.072307px;}
._1c{width:66.168000px;}
._3a{width:80.854675px;}
._1e{width:84.736307px;}
._19{width:95.616000px;}
._21{width:96.764376px;}
._1d{width:107.056307px;}
._20{width:132.408000px;}
._b{width:134.776307px;}
._9{width:138.285303px;}
._d{width:192.895117px;}
._8{width:195.984000px;}
._13{width:748.478143px;}
._17{width:1000.506000px;}
._16{width:1202.136000px;}
._12{width:1591.074000px;}
._14{width:1858.678307px;}
._18{width:2183.184000px;}
.fc8{color:rgb(17,85,204);}
.fc6{color:rgb(42,46,128);}
.fc5{color:rgb(58,55,54);}
.fc3{color:rgb(171,80,62);}
.fc1{color:rgb(57,82,164);}
.fc7{color:rgb(34,34,34);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs8{font-size:43.200000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fsc{font-size:68.031039px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:74.215771px;}
.fs2{font-size:84.000000px;}
.fs7{font-size:96.000000px;}
.fs6{font-size:108.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:12.555000px;}
.y40{bottom:12.555150px;}
.y3f{bottom:35.235000px;}
.y23{bottom:56.745150px;}
.y22{bottom:71.865150px;}
.y82{bottom:75.134700px;}
.y42{bottom:75.135300px;}
.y21{bottom:86.984700px;}
.y20{bottom:102.104850px;}
.y41{bottom:109.334700px;}
.y61{bottom:109.335300px;}
.y20c{bottom:109.335900px;}
.y26{bottom:115.368000px;}
.ycb{bottom:115.369500px;}
.y1f{bottom:117.225000px;}
.y1e{bottom:132.345150px;}
.y25{bottom:141.450000px;}
.y119{bottom:145.276200px;}
.y185{bottom:145.276785px;}
.y1c0{bottom:146.599800px;}
.y1e7{bottom:148.795950px;}
.y12a{bottom:151.513500px;}
.y155{bottom:153.120000px;}
.ya4{bottom:155.416800px;}
.y175{bottom:163.682850px;}
.y184{bottom:164.174385px;}
.yf7{bottom:166.008750px;}
.y118{bottom:167.594250px;}
.y7e{bottom:169.927500px;}
.y1c6{bottom:170.411235px;}
.y12b{bottom:170.412885px;}
.y1bf{bottom:172.681650px;}
.y225{bottom:173.754450px;}
.y20b{bottom:174.510000px;}
.y1e6{bottom:174.876300px;}
.y154{bottom:179.202000px;}
.ya3{bottom:181.498650px;}
.y117{bottom:184.842450px;}
.y12c{bottom:189.313470px;}
.y183{bottom:189.313500px;}
.y174{bottom:189.764100px;}
.yf6{bottom:192.090600px;}
.y2{bottom:192.900000px;}
.y7d{bottom:196.009500px;}
.y20a{bottom:198.415500px;}
.y1be{bottom:198.763500px;}
.y224{bottom:199.834500px;}
.y1e5{bottom:200.959350px;}
.y188{bottom:201.253050px;}
.y153{bottom:205.282500px;}
.y1a3{bottom:207.456900px;}
.ya2{bottom:207.580050px;}
.y235{bottom:207.790500px;}
.y1d{bottom:208.164000px;}
.y12d{bottom:208.213455px;}
.y116{bottom:209.049000px;}
.y60{bottom:212.559000px;}
.y173{bottom:215.845350px;}
.yf5{bottom:218.172450px;}
.y187{bottom:218.503050px;}
.y131{bottom:220.875300px;}
.y7c{bottom:222.091500px;}
.y209{bottom:223.002000px;}
.y1bd{bottom:224.844000px;}
.y1e4{bottom:227.042400px;}
.y3e{bottom:230.161500px;}
.y152{bottom:230.692950px;}
.y1a2{bottom:233.539950px;}
.ya1{bottom:233.662950px;}
.y223{bottom:237.612600px;}
.y5f{bottom:238.641000px;}
.y130{bottom:239.776500px;}
.yca{bottom:241.009650px;}
.y172{bottom:241.928400px;}
.y1c{bottom:242.184000px;}
.y186{bottom:242.709450px;}
.yf4{bottom:244.256250px;}
.y7b{bottom:248.173500px;}
.y208{bottom:249.081900px;}
.y115{bottom:249.702600px;}
.y1bc{bottom:250.926750px;}
.y234{bottom:251.871450px;}
.y3d{bottom:252.841500px;}
.y1e3{bottom:253.124250px;}
.y150{bottom:254.600250px;}
.y151{bottom:254.601000px;}
.y12f{bottom:258.675900px;}
.y1a1{bottom:259.619400px;}
.ya0{bottom:259.744800px;}
.y5e{bottom:264.723000px;}
.yc9{bottom:267.091650px;}
.y171{bottom:268.010250px;}
.yf3{bottom:270.336600px;}
.y222{bottom:272.388000px;}
.y7a{bottom:274.255500px;}
.y207{bottom:275.164950px;}
.y114{bottom:275.783850px;}
.y1b{bottom:276.204000px;}
.y1bb{bottom:277.011450px;}
.y233{bottom:277.954500px;}
.y14e{bottom:278.509050px;}
.y14f{bottom:278.509500px;}
.y1e2{bottom:279.205650px;}
.y12e{bottom:283.813455px;}
.y1a0{bottom:285.702450px;}
.y9f{bottom:285.826650px;}
.y5d{bottom:290.805000px;}
.y3c{bottom:292.396500px;}
.yc8{bottom:293.173050px;}
.y170{bottom:294.091500px;}
.yf2{bottom:296.419650px;}
.y79{bottom:300.337500px;}
.y206{bottom:301.245150px;}
.y113{bottom:301.867500px;}
.y14d{bottom:302.416500px;}
.y1ba{bottom:303.091500px;}
.y232{bottom:304.036500px;}
.y1e1{bottom:305.287050px;}
.y1a{bottom:310.223850px;}
.y19f{bottom:311.785500px;}
.y9e{bottom:311.908500px;}
.y5c{bottom:316.887000px;}
.y182{bottom:317.032500px;}
.yc7{bottom:319.254300px;}
.yf1{bottom:322.502250px;}
.y16f{bottom:322.867500px;}
.y14c{bottom:326.325450px;}
.y78{bottom:326.419500px;}
.y129{bottom:326.742600px;}
.y205{bottom:327.328200px;}
.y112{bottom:327.949350px;}
.y1b9{bottom:329.173500px;}
.y231{bottom:330.117000px;}
.y1e0{bottom:331.368300px;}
.y221{bottom:331.470450px;}
.y3b{bottom:331.951500px;}
.y19e{bottom:337.867500px;}
.y9d{bottom:337.990500px;}
.y5b{bottom:342.969000px;}
.y19{bottom:344.244000px;}
.yc6{bottom:345.337350px;}
.y1c5{bottom:345.688500px;}
.yf0{bottom:348.583500px;}
.y14b{bottom:350.233500px;}
.y77{bottom:352.500000px;}
.y128{bottom:352.825650px;}
.y204{bottom:353.411250px;}
.y111{bottom:354.031200px;}
.y16e{bottom:354.949500px;}
.y1b8{bottom:355.254000px;}
.y1df{bottom:357.451350px;}
.y220{bottom:357.550800px;}
.y9c{bottom:364.072050px;}
.y19d{bottom:366.644100px;}
.y5a{bottom:369.051000px;}
.yc5{bottom:371.419200px;}
.y39{bottom:371.506500px;}
.y1c4{bottom:371.769000px;}
.y14a{bottom:374.143500px;}
.y18{bottom:378.264000px;}
.y76{bottom:378.583500px;}
.y127{bottom:378.906750px;}
.y203{bottom:379.494300px;}
.y110{bottom:380.114250px;}
.y16d{bottom:381.031650px;}
.y1b7{bottom:381.337500px;}
.y1de{bottom:383.534400px;}
.y21f{bottom:383.633850px;}
.yef{bottom:386.358000px;}
.y9b{bottom:390.154050px;}
.y59{bottom:395.133000px;}
.yc4{bottom:397.502250px;}
.y1c3{bottom:397.854000px;}
.y149{bottom:398.050500px;}
.y148{bottom:398.051250px;}
.y19c{bottom:401.419500px;}
.y75{bottom:404.665500px;}
.y126{bottom:404.988000px;}
.y202{bottom:405.574350px;}
.y10f{bottom:406.195950px;}
.y16c{bottom:407.114700px;}
.y1b6{bottom:407.419500px;}
.y1dd{bottom:409.614450px;}
.y21e{bottom:409.716900px;}
.y17{bottom:412.284000px;}
.y9a{bottom:416.236950px;}
.y58{bottom:421.215000px;}
.y147{bottom:421.960500px;}
.yc3{bottom:423.582450px;}
.y74{bottom:430.747500px;}
.y125{bottom:431.071500px;}
.y201{bottom:431.654400px;}
.y10e{bottom:432.278400px;}
.y16b{bottom:433.195950px;}
.y19b{bottom:433.501500px;}
.y1dc{bottom:435.697500px;}
.y21d{bottom:435.796950px;}
.y16{bottom:438.366000px;}
.y99{bottom:442.318800px;}
.yee{bottom:445.441500px;}
.y57{bottom:445.515000px;}
.y146{bottom:445.869750px;}
.y38{bottom:446.761500px;}
.yc2{bottom:449.665650px;}
.y73{bottom:456.829500px;}
.y124{bottom:457.153500px;}
.y200{bottom:457.737450px;}
.y10d{bottom:458.358450px;}
.y16a{bottom:459.277950px;}
.y1b5{bottom:459.583500px;}
.y19a{bottom:459.583650px;}
.y1db{bottom:461.781000px;}
.y21c{bottom:461.880000px;}
.y15{bottom:464.448000px;}
.y98{bottom:468.400650px;}
.y145{bottom:469.779000px;}
.yed{bottom:471.523350px;}
.y56{bottom:474.211500px;}
.yc1{bottom:475.747500px;}
.y72{bottom:482.911500px;}
.y123{bottom:483.236250px;}
.y1ff{bottom:483.820500px;}
.y10c{bottom:484.441650px;}
.y169{bottom:485.357850px;}
.y199{bottom:485.664450px;}
.y1b4{bottom:485.665200px;}
.y1da{bottom:487.338723px;}
.y14{bottom:490.530000px;}
.y144{bottom:493.686000px;}
.y97{bottom:494.482950px;}
.yec{bottom:497.606400px;}
.y55{bottom:497.685000px;}
.yc0{bottom:501.829500px;}
.y21b{bottom:502.347000px;}
.y122{bottom:509.317500px;}
.y1fe{bottom:509.904000px;}
.y10b{bottom:510.522750px;}
.y168{bottom:511.440900px;}
.y198{bottom:511.745700px;}
.y1b3{bottom:511.746450px;}
.y1d9{bottom:512.178969px;}
.y143{bottom:517.593750px;}
.y13{bottom:517.959150px;}
.y96{bottom:520.564800px;}
.y54{bottom:521.158500px;}
.y37{bottom:522.781500px;}
.yeb{bottom:523.687650px;}
.ybf{bottom:527.912250px;}
.y71{bottom:532.381500px;}
.y121{bottom:535.401000px;}
.y1fd{bottom:535.464633px;}
.y10a{bottom:536.604450px;}
.y1d8{bottom:537.018000px;}
.y167{bottom:537.522750px;}
.y1b2{bottom:537.828450px;}
.y197{bottom:537.828750px;}
.y142{bottom:541.503000px;}
.y53{bottom:544.632000px;}
.y95{bottom:546.646650px;}
.y12{bottom:548.388000px;}
.yea{bottom:549.768750px;}
.ybe{bottom:553.993050px;}
.y36{bottom:556.801500px;}
.y1fc{bottom:560.301723px;}
.y120{bottom:561.480600px;}
.y109{bottom:562.687650px;}
.y166{bottom:563.604450px;}
.y1b1{bottom:563.911500px;}
.y196{bottom:563.911800px;}
.y141{bottom:565.411950px;}
.y52{bottom:568.105500px;}
.y21a{bottom:570.430950px;}
.y94{bottom:572.728650px;}
.y1d7{bottom:574.075500px;}
.ye9{bottom:575.851200px;}
.y11{bottom:577.470000px;}
.ybd{bottom:580.075650px;}
.y1fb{bottom:585.142500px;}
.y11f{bottom:587.563650px;}
.y70{bottom:588.463500px;}
.y108{bottom:588.769500px;}
.y140{bottom:589.320000px;}
.y165{bottom:589.687650px;}
.y195{bottom:589.991850px;}
.y1b0{bottom:589.992000px;}
.y35{bottom:590.821350px;}
.y51{bottom:591.579000px;}
.y219{bottom:596.513400px;}
.y93{bottom:598.810500px;}
.ye8{bottom:601.933650px;}
.y10{bottom:604.899000px;}
.ybc{bottom:606.156300px;}
.y13f{bottom:613.227000px;}
.y11e{bottom:613.645500px;}
.y6f{bottom:614.545500px;}
.y50{bottom:615.052500px;}
.y164{bottom:615.769500px;}
.y194{bottom:616.074900px;}
.y1af{bottom:616.075500px;}
.y1fa{bottom:622.198500px;}
.y218{bottom:622.596450px;}
.y34{bottom:624.841500px;}
.y92{bottom:624.892500px;}
.y107{bottom:626.546100px;}
.ye7{bottom:628.016100px;}
.ybb{bottom:632.237550px;}
.y1d6{bottom:632.482500px;}
.yf{bottom:635.328000px;}
.y13e{bottom:637.137000px;}
.y11d{bottom:639.726000px;}
.y6e{bottom:640.627500px;}
.y4f{bottom:641.329500px;}
.y163{bottom:641.853000px;}
.y1ae{bottom:642.157500px;}
.y193{bottom:642.157950px;}
.y217{bottom:648.676950px;}
.y91{bottom:650.974050px;}
.ye6{bottom:654.097350px;}
.y1d5{bottom:656.391000px;}
.yba{bottom:658.320600px;}
.y33{bottom:658.861500px;}
.y13d{bottom:661.045500px;}
.y106{bottom:661.321500px;}
.ye{bottom:665.757000px;}
.y6d{bottom:666.709500px;}
.y162{bottom:667.933350px;}
.y230{bottom:668.237850px;}
.y181{bottom:668.238000px;}
.y1ad{bottom:668.239500px;}
.y192{bottom:668.239800px;}
.y4e{bottom:672.829500px;}
.y216{bottom:674.759400px;}
.yda{bottom:675.709500px;}
.y90{bottom:677.057550px;}
.ye5{bottom:680.180400px;}
.y1d4{bottom:680.299500px;}
.y1f9{bottom:680.607750px;}
.yb9{bottom:684.402450px;}
.y13c{bottom:685.626000px;}
.y32{bottom:692.881500px;}
.y161{bottom:694.015200px;}
.y22f{bottom:694.320900px;}
.y1ac{bottom:694.321500px;}
.y191{bottom:694.321650px;}
.y180{bottom:694.321800px;}
.yd{bottom:694.839000px;}
.y215{bottom:700.842450px;}
.yd9{bottom:701.791500px;}
.y8f{bottom:703.138800px;}
.y1d3{bottom:704.209500px;}
.y4d{bottom:704.329500px;}
.y1f8{bottom:704.517000px;}
.ye4{bottom:706.262250px;}
.yb8{bottom:710.485800px;}
.y13b{bottom:711.709500px;}
.y6c{bottom:716.179500px;}
.y160{bottom:720.096450px;}
.y105{bottom:720.402600px;}
.y190{bottom:720.403500px;}
.y17f{bottom:720.403650px;}
.y22e{bottom:720.403950px;}
.yc{bottom:720.921000px;}
.y31{bottom:726.901500px;}
.y214{bottom:726.925500px;}
.yd8{bottom:727.873500px;}
.y1d2{bottom:728.116500px;}
.y1f7{bottom:728.426250px;}
.y8e{bottom:729.220050px;}
.ye3{bottom:732.342600px;}
.y4c{bottom:735.829500px;}
.yb7{bottom:736.567050px;}
.y13a{bottom:737.117700px;}
.y15f{bottom:746.179650px;}
.y18f{bottom:746.484000px;}
.y104{bottom:746.485650px;}
.y17e{bottom:746.486700px;}
.yb{bottom:747.003000px;}
.y1d1{bottom:752.025000px;}
.y213{bottom:752.331750px;}
.y1f6{bottom:752.332500px;}
.yd7{bottom:753.955500px;}
.y8d{bottom:755.302500px;}
.ye2{bottom:758.425650px;}
.y30{bottom:760.921500px;}
.y139{bottom:761.025750px;}
.yb6{bottom:762.649500px;}
.y4b{bottom:767.329500px;}
.y15e{bottom:772.260750px;}
.y6b{bottom:772.261500px;}
.y103{bottom:772.566900px;}
.y22d{bottom:772.567500px;}
.y17d{bottom:772.567950px;}
.ya{bottom:773.085000px;}
.y1d0{bottom:775.933500px;}
.y212{bottom:776.241000px;}
.y1f5{bottom:776.241750px;}
.yd6{bottom:780.037500px;}
.y8c{bottom:781.384500px;}
.ye1{bottom:784.507650px;}
.y138{bottom:784.935000px;}
.yb5{bottom:788.731500px;}
.y2f{bottom:794.941500px;}
.y15d{bottom:798.342600px;}
.y6a{bottom:798.343500px;}
.y102{bottom:798.649950px;}
.y17c{bottom:798.650550px;}
.y1ab{bottom:798.651000px;}
.y4a{bottom:798.829500px;}
.y1cf{bottom:799.845000px;}
.y1f4{bottom:800.151000px;}
.yd5{bottom:806.119500px;}
.y8b{bottom:807.466350px;}
.y137{bottom:808.842750px;}
.y9{bottom:809.054700px;}
.ye0{bottom:810.589500px;}
.yb4{bottom:814.813050px;}
.y1f3{bottom:824.056500px;}
.y15c{bottom:824.424450px;}
.y1ce{bottom:824.425500px;}
.y69{bottom:824.425650px;}
.y1aa{bottom:824.728950px;}
.y22c{bottom:824.730000px;}
.y101{bottom:824.730600px;}
.y2e{bottom:828.961500px;}
.y49{bottom:830.329500px;}
.yd4{bottom:832.201500px;}
.y136{bottom:832.752450px;}
.y8a{bottom:833.548800px;}
.yac{bottom:834.895500px;}
.yb3{bottom:840.894600px;}
.y211{bottom:847.965750px;}
.y1f2{bottom:847.966500px;}
.ydf{bottom:848.365500px;}
.y68{bottom:850.507500px;}
.y15b{bottom:850.508250px;}
.y1a9{bottom:850.812000px;}
.y100{bottom:850.813650px;}
.y22b{bottom:850.813950px;}
.y8{bottom:852.524850px;}
.y135{bottom:856.660500px;}
.yd3{bottom:858.283500px;}
.y89{bottom:859.631250px;}
.y48{bottom:861.829500px;}
.y2d{bottom:862.981500px;}
.yb2{bottom:866.975850px;}
.y1f1{bottom:871.875000px;}
.y15a{bottom:876.588450px;}
.y1cd{bottom:876.589350px;}
.y67{bottom:876.589500px;}
.y1a8{bottom:876.892050px;}
.y18e{bottom:876.893700px;}
.y22a{bottom:876.894000px;}
.yff{bottom:876.895200px;}
.y17b{bottom:876.895500px;}
.y134{bottom:880.568550px;}
.yd2{bottom:884.365500px;}
.y88{bottom:885.711600px;}
.yb1{bottom:893.058900px;}
.y47{bottom:893.329500px;}
.y1f0{bottom:895.783500px;}
.y7{bottom:895.995000px;}
.y2c{bottom:897.001500px;}
.y1cc{bottom:902.671200px;}
.y159{bottom:902.671500px;}
.y66{bottom:902.671650px;}
.yab{bottom:902.976000px;}
.yfe{bottom:902.976450px;}
.y17a{bottom:902.976750px;}
.y18d{bottom:902.978400px;}
.y133{bottom:904.476000px;}
.yde{bottom:907.446600px;}
.y87{bottom:911.794050px;}
.yb0{bottom:919.140750px;}
.y1ef{bottom:919.692000px;}
.y210{bottom:919.693500px;}
.y46{bottom:924.829500px;}
.yd1{bottom:928.446900px;}
.y65{bottom:928.753500px;}
.y1cb{bottom:928.755450px;}
.y1a7{bottom:929.058600px;}
.y1c2{bottom:929.058900px;}
.yaa{bottom:929.059500px;}
.yfd{bottom:929.059650px;}
.y179{bottom:929.059800px;}
.y229{bottom:929.059950px;}
.y2b{bottom:931.021500px;}
.ydd{bottom:933.528450px;}
.y86{bottom:937.876500px;}
.y20f{bottom:943.599000px;}
.y1ee{bottom:943.599750px;}
.y6{bottom:943.965000px;}
.yaf{bottom:945.222450px;}
.yd0{bottom:954.528750px;}
.y1ca{bottom:954.834450px;}
.y64{bottom:954.835200px;}
.y18c{bottom:955.140300px;}
.y1a6{bottom:955.140450px;}
.y1c1{bottom:955.140750px;}
.y178{bottom:955.141050px;}
.yfc{bottom:955.141200px;}
.y11c{bottom:955.141350px;}
.ya9{bottom:955.141500px;}
.y228{bottom:955.143000px;}
.y45{bottom:956.329500px;}
.y158{bottom:957.528900px;}
.ydc{bottom:959.611500px;}
.y85{bottom:963.958500px;}
.y2a{bottom:965.041500px;}
.y1ed{bottom:967.509000px;}
.yae{bottom:971.305500px;}
.ycf{bottom:980.610450px;}
.y63{bottom:980.917650px;}
.y1c9{bottom:980.917950px;}
.y227{bottom:981.222000px;}
.y18b{bottom:981.222150px;}
.y177{bottom:981.222300px;}
.yfb{bottom:981.222450px;}
.y11b{bottom:981.222600px;}
.ya8{bottom:981.224100px;}
.y5{bottom:982.047000px;}
.y44{bottom:989.611500px;}
.y20e{bottom:991.417500px;}
.y1ec{bottom:991.417950px;}
.y157{bottom:992.305500px;}
.y29{bottom:999.061500px;}
.ydb{bottom:1000.081500px;}
.y84{bottom:1004.428500px;}
.yce{bottom:1006.693650px;}
.y1c8{bottom:1006.998000px;}
.y62{bottom:1006.999500px;}
.y226{bottom:1007.302500px;}
.y18a{bottom:1007.304000px;}
.y1a5{bottom:1007.304150px;}
.y176{bottom:1007.305350px;}
.y11a{bottom:1007.305650px;}
.yfa{bottom:1007.305950px;}
.ya7{bottom:1007.306550px;}
.y4{bottom:1008.129000px;}
.yad{bottom:1009.081500px;}
.y20d{bottom:1015.323750px;}
.y1eb{bottom:1015.326000px;}
.y81{bottom:1021.387500px;}
.y43{bottom:1025.581500px;}
.y156{bottom:1027.081500px;}
.ycd{bottom:1032.775500px;}
.y28{bottom:1033.081500px;}
.yf9{bottom:1033.387200px;}
.y132{bottom:1033.387500px;}
.ya6{bottom:1033.387800px;}
.y1a4{bottom:1033.388400px;}
.y189{bottom:1033.389000px;}
.y3{bottom:1034.211000px;}
.y1ea{bottom:1039.233000px;}
.y1c7{bottom:1044.774900px;}
.y1{bottom:1052.100000px;}
.yf8{bottom:1059.468450px;}
.ya5{bottom:1059.469050px;}
.y80{bottom:1059.469500px;}
.y1e9{bottom:1063.142250px;}
.y27{bottom:1073.551500px;}
.y83{bottom:1076.551500px;}
.ycc{bottom:1079.551500px;}
.y7f{bottom:1085.551500px;}
.y1e8{bottom:1087.051500px;}
.y24{bottom:1103.550000px;}
.h23{height:26.568000px;}
.h9{height:35.424000px;}
.ha{height:35.424600px;}
.h11{height:37.800000px;}
.hd{height:38.429850px;}
.h12{height:39.852000px;}
.h24{height:43.681641px;}
.h25{height:44.280000px;}
.h30{height:44.281800px;}
.h28{height:44.760000px;}
.h15{height:48.049805px;}
.h2a{height:48.708000px;}
.h35{height:48.711000px;}
.h29{height:49.830000px;}
.h16{height:49.968000px;}
.h2b{height:50.206907px;}
.hc{height:50.400000px;}
.h14{height:53.064000px;}
.h2{height:53.136000px;}
.h7{height:53.136600px;}
.h20{height:53.137200px;}
.h19{height:53.137800px;}
.h22{height:53.138400px;}
.h1f{height:53.139000px;}
.h18{height:53.139600px;}
.h1d{height:53.140200px;}
.h31{height:53.140800px;}
.h4{height:53.640000px;}
.h2f{height:54.359400px;}
.he{height:54.360000px;}
.h1c{height:54.361800px;}
.h1e{height:54.362400px;}
.h2e{height:54.363000px;}
.h32{height:54.364200px;}
.h1b{height:54.364800px;}
.h26{height:54.771239px;}
.h33{height:54.773427px;}
.h34{height:54.774442px;}
.h13{height:57.672000px;}
.hf{height:61.109700px;}
.h6{height:61.154297px;}
.h21{height:61.818300px;}
.h27{height:61.821300px;}
.h5{height:62.580000px;}
.h1a{height:71.520000px;}
.h2c{height:72.480000px;}
.h2d{height:72.482400px;}
.h17{height:76.248000px;}
.h3{height:88.440000px;}
.h10{height:140.850000px;}
.h8{height:144.450000px;}
.hb{height:159.450000px;}
.h1{height:210.900000px;}
.h0{height:1263.000000px;}
.w3{width:103.500000px;}
.w2{width:124.875000px;}
.w4{width:178.875000px;}
.w5{width:258.750000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x10{left:6.750000px;}
.x2{left:108.000000px;}
.xf{left:109.125000px;}
.x3a{left:110.943150px;}
.x1c{left:114.667950px;}
.xa{left:133.430850px;}
.x5{left:134.865900px;}
.x38{left:145.964100px;}
.x37{left:162.000000px;}
.x4{left:167.178000px;}
.x21{left:182.836500px;}
.x2e{left:201.654000px;}
.x8{left:204.430500px;}
.x11{left:235.125000px;}
.x2f{left:250.146000px;}
.x22{left:268.968000px;}
.x6{left:276.649350px;}
.xd{left:280.818000px;}
.x1d{left:282.375000px;}
.x19{left:302.634000px;}
.x1b{left:310.566000px;}
.x34{left:312.207000px;}
.x16{left:325.395000px;}
.xb{left:328.324800px;}
.x12{left:339.750000px;}
.x17{left:349.684500px;}
.x18{left:355.878000px;}
.xe{left:364.543500px;}
.x7{left:367.779000px;}
.x27{left:376.413000px;}
.x3{left:379.059000px;}
.x30{left:380.929500px;}
.x23{left:389.424000px;}
.x9{left:391.341000px;}
.x1{left:446.457000px;}
.x2b{left:449.292000px;}
.x31{left:454.632000px;}
.x28{left:462.448500px;}
.x2c{left:508.155000px;}
.x13{left:519.750000px;}
.x24{left:533.136000px;}
.x29{left:558.508500px;}
.x14{left:568.914000px;}
.x32{left:574.107000px;}
.x2d{left:582.796500px;}
.x35{left:604.593000px;}
.x1a{left:620.832000px;}
.x25{left:624.792000px;}
.x33{left:640.950000px;}
.x2a{left:648.238500px;}
.x36{left:652.078500px;}
.xc{left:731.250000px;}
.x39{left:732.897000px;}
.x3b{left:734.449500px;}
.x1e{left:735.517500px;}
.x26{left:737.068500px;}
.x1f{left:739.687500px;}
.x15{left:741.753000px;}
.x20{left:789.750000px;}
@media print{
.v2{vertical-align:-22.174987pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.610400pt;}
.ls3{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000160pt;}
.ls0{letter-spacing:0.000480pt;}
.ls23{letter-spacing:0.000640pt;}
.lsf{letter-spacing:0.005333pt;}
.ls7{letter-spacing:18.112000pt;}
.ls6{letter-spacing:23.936000pt;}
.ls25{letter-spacing:33.910400pt;}
.ls20{letter-spacing:34.164800pt;}
.ls21{letter-spacing:34.250133pt;}
.ls24{letter-spacing:48.704000pt;}
.ls1e{letter-spacing:50.033600pt;}
.lsb{letter-spacing:54.336000pt;}
.ls28{letter-spacing:54.898133pt;}
.ls1f{letter-spacing:56.775467pt;}
.ls1c{letter-spacing:66.346667pt;}
.ls27{letter-spacing:69.312000pt;}
.ls1{letter-spacing:79.360000pt;}
.ls1d{letter-spacing:89.706667pt;}
.ls8{letter-spacing:100.096000pt;}
.ls5{letter-spacing:107.584000pt;}
.lsa{letter-spacing:124.160000pt;}
.ls4{letter-spacing:139.776000pt;}
.ls1b{letter-spacing:155.904000pt;}
.ls26{letter-spacing:158.085333pt;}
.ls9{letter-spacing:165.952000pt;}
.lsc{letter-spacing:170.560000pt;}
.ls2{letter-spacing:174.208000pt;}
.lsd{letter-spacing:178.656000pt;}
.ls1a{letter-spacing:515.114667pt;}
.ls16{letter-spacing:1177.141333pt;}
.ls17{letter-spacing:1454.330667pt;}
.ls19{letter-spacing:1538.144000pt;}
.lse{letter-spacing:1569.872000pt;}
.ls18{letter-spacing:1574.224000pt;}
.ls13{letter-spacing:1675.861333pt;}
.ls14{letter-spacing:1687.445333pt;}
.ls15{letter-spacing:1881.621333pt;}
.ls11{letter-spacing:1900.629333pt;}
.ls12{letter-spacing:1924.885333pt;}
.ls10{letter-spacing:1962.768000pt;}
.wsf{word-spacing:-31.040000pt;}
.ws11{word-spacing:-25.632000pt;}
.ws3{word-spacing:-20.480000pt;}
.ws4{word-spacing:-20.266667pt;}
.ws9{word-spacing:-17.546667pt;}
.ws5{word-spacing:-17.066667pt;}
.wse{word-spacing:-16.213333pt;}
.ws10{word-spacing:-14.826667pt;}
.ws2{word-spacing:-13.568000pt;}
.ws1{word-spacing:-13.312000pt;}
.wsd{word-spacing:-12.578183pt;}
.wsc{word-spacing:-12.202667pt;}
.ws6{word-spacing:-12.160000pt;}
.wsb{word-spacing:-11.146667pt;}
.wsa{word-spacing:-11.093333pt;}
.ws7{word-spacing:-7.987200pt;}
.ws8{word-spacing:-6.656000pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-148.950787pt;}
._f{margin-left:-101.911737pt;}
._10{margin-left:-38.400000pt;}
._a{margin-left:-22.735948pt;}
._11{margin-left:-12.401707pt;}
._6{margin-left:-10.880000pt;}
._1f{margin-left:-8.723859pt;}
._4{margin-left:-7.749866pt;}
._e{margin-left:-6.641905pt;}
._3{margin-left:-5.637894pt;}
._0{margin-left:-3.900779pt;}
._2{margin-left:-2.992052pt;}
._1{margin-left:-1.657162pt;}
._c{width:1.657418pt;}
._2e{width:3.145657pt;}
._28{width:4.222103pt;}
._23{width:8.000512pt;}
._1b{width:9.529162pt;}
._39{width:11.104141pt;}
._27{width:12.000512pt;}
._2f{width:15.119651pt;}
._26{width:16.102541pt;}
._25{width:19.317042pt;}
._15{width:20.219067pt;}
._24{width:23.616007pt;}
._2d{width:24.804648pt;}
._2a{width:27.484561pt;}
._2b{width:28.697322pt;}
._29{width:32.000000pt;}
._2c{width:35.991365pt;}
._38{width:36.880717pt;}
._32{width:39.660798pt;}
._33{width:40.698230pt;}
._31{width:43.293135pt;}
._34{width:44.207361pt;}
._1a{width:46.080000pt;}
._30{width:48.000000pt;}
._7{width:49.059702pt;}
._37{width:51.425316pt;}
._36{width:52.629773pt;}
._35{width:55.832574pt;}
._22{width:56.953162pt;}
._1c{width:58.816000pt;}
._3a{width:71.870822pt;}
._1e{width:75.321162pt;}
._19{width:84.992000pt;}
._21{width:86.012779pt;}
._1d{width:95.161162pt;}
._20{width:117.696000pt;}
._b{width:119.801162pt;}
._9{width:122.920269pt;}
._d{width:171.462326pt;}
._8{width:174.208000pt;}
._13{width:665.313905pt;}
._17{width:889.338667pt;}
._16{width:1068.565333pt;}
._12{width:1414.288000pt;}
._14{width:1652.158495pt;}
._18{width:1940.608000pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:38.400000pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fsc{font-size:60.472035pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:65.969574pt;}
.fs2{font-size:74.666667pt;}
.fs7{font-size:85.333333pt;}
.fs6{font-size:96.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:11.160000pt;}
.y40{bottom:11.160133pt;}
.y3f{bottom:31.320000pt;}
.y23{bottom:50.440133pt;}
.y22{bottom:63.880133pt;}
.y82{bottom:66.786400pt;}
.y42{bottom:66.786933pt;}
.y21{bottom:77.319733pt;}
.y20{bottom:90.759867pt;}
.y41{bottom:97.186400pt;}
.y61{bottom:97.186933pt;}
.y20c{bottom:97.187467pt;}
.y26{bottom:102.549333pt;}
.ycb{bottom:102.550667pt;}
.y1f{bottom:104.200000pt;}
.y1e{bottom:117.640133pt;}
.y25{bottom:125.733333pt;}
.y119{bottom:129.134400pt;}
.y185{bottom:129.134920pt;}
.y1c0{bottom:130.310933pt;}
.y1e7{bottom:132.263067pt;}
.y12a{bottom:134.678667pt;}
.y155{bottom:136.106667pt;}
.ya4{bottom:138.148267pt;}
.y175{bottom:145.495867pt;}
.y184{bottom:145.932787pt;}
.yf7{bottom:147.563333pt;}
.y118{bottom:148.972667pt;}
.y7e{bottom:151.046667pt;}
.y1c6{bottom:151.476653pt;}
.y12b{bottom:151.478120pt;}
.y1bf{bottom:153.494800pt;}
.y225{bottom:154.448400pt;}
.y20b{bottom:155.120000pt;}
.y1e6{bottom:155.445600pt;}
.y154{bottom:159.290667pt;}
.ya3{bottom:161.332133pt;}
.y117{bottom:164.304400pt;}
.y12c{bottom:168.278640pt;}
.y183{bottom:168.278667pt;}
.y174{bottom:168.679200pt;}
.yf6{bottom:170.747200pt;}
.y2{bottom:171.466667pt;}
.y7d{bottom:174.230667pt;}
.y20a{bottom:176.369333pt;}
.y1be{bottom:176.678667pt;}
.y224{bottom:177.630667pt;}
.y1e5{bottom:178.630533pt;}
.y188{bottom:178.891600pt;}
.y153{bottom:182.473333pt;}
.y1a3{bottom:184.406133pt;}
.ya2{bottom:184.515600pt;}
.y235{bottom:184.702667pt;}
.y1d{bottom:185.034667pt;}
.y12d{bottom:185.078627pt;}
.y116{bottom:185.821333pt;}
.y60{bottom:188.941333pt;}
.y173{bottom:191.862533pt;}
.yf5{bottom:193.931067pt;}
.y187{bottom:194.224933pt;}
.y131{bottom:196.333600pt;}
.y7c{bottom:197.414667pt;}
.y209{bottom:198.224000pt;}
.y1bd{bottom:199.861333pt;}
.y1e4{bottom:201.815467pt;}
.y3e{bottom:204.588000pt;}
.y152{bottom:205.060400pt;}
.y1a2{bottom:207.591067pt;}
.ya1{bottom:207.700400pt;}
.y223{bottom:211.211200pt;}
.y5f{bottom:212.125333pt;}
.y130{bottom:213.134667pt;}
.yca{bottom:214.230800pt;}
.y172{bottom:215.047467pt;}
.y1c{bottom:215.274667pt;}
.y186{bottom:215.741733pt;}
.yf4{bottom:217.116667pt;}
.y7b{bottom:220.598667pt;}
.y208{bottom:221.406133pt;}
.y115{bottom:221.957867pt;}
.y1bc{bottom:223.046000pt;}
.y234{bottom:223.885733pt;}
.y3d{bottom:224.748000pt;}
.y1e3{bottom:224.999333pt;}
.y150{bottom:226.311333pt;}
.y151{bottom:226.312000pt;}
.y12f{bottom:229.934133pt;}
.y1a1{bottom:230.772800pt;}
.ya0{bottom:230.884267pt;}
.y5e{bottom:235.309333pt;}
.yc9{bottom:237.414800pt;}
.y171{bottom:238.231333pt;}
.yf3{bottom:240.299200pt;}
.y222{bottom:242.122667pt;}
.y7a{bottom:243.782667pt;}
.y207{bottom:244.591067pt;}
.y114{bottom:245.141200pt;}
.y1b{bottom:245.514667pt;}
.y1bb{bottom:246.232400pt;}
.y233{bottom:247.070667pt;}
.y14e{bottom:247.563600pt;}
.y14f{bottom:247.564000pt;}
.y1e2{bottom:248.182800pt;}
.y12e{bottom:252.278627pt;}
.y1a0{bottom:253.957733pt;}
.y9f{bottom:254.068133pt;}
.y5d{bottom:258.493333pt;}
.y3c{bottom:259.908000pt;}
.yc8{bottom:260.598267pt;}
.y170{bottom:261.414667pt;}
.yf2{bottom:263.484133pt;}
.y79{bottom:266.966667pt;}
.y206{bottom:267.773467pt;}
.y113{bottom:268.326667pt;}
.y14d{bottom:268.814667pt;}
.y1ba{bottom:269.414667pt;}
.y232{bottom:270.254667pt;}
.y1e1{bottom:271.366267pt;}
.y1a{bottom:275.754533pt;}
.y19f{bottom:277.142667pt;}
.y9e{bottom:277.252000pt;}
.y5c{bottom:281.677333pt;}
.y182{bottom:281.806667pt;}
.yc7{bottom:283.781600pt;}
.yf1{bottom:286.668667pt;}
.y16f{bottom:286.993333pt;}
.y14c{bottom:290.067067pt;}
.y78{bottom:290.150667pt;}
.y129{bottom:290.437867pt;}
.y205{bottom:290.958400pt;}
.y112{bottom:291.510533pt;}
.y1b9{bottom:292.598667pt;}
.y231{bottom:293.437333pt;}
.y1e0{bottom:294.549600pt;}
.y221{bottom:294.640400pt;}
.y3b{bottom:295.068000pt;}
.y19e{bottom:300.326667pt;}
.y9d{bottom:300.436000pt;}
.y5b{bottom:304.861333pt;}
.y19{bottom:305.994667pt;}
.yc6{bottom:306.966533pt;}
.y1c5{bottom:307.278667pt;}
.yf0{bottom:309.852000pt;}
.y14b{bottom:311.318667pt;}
.y77{bottom:313.333333pt;}
.y128{bottom:313.622800pt;}
.y204{bottom:314.143333pt;}
.y111{bottom:314.694400pt;}
.y16e{bottom:315.510667pt;}
.y1b8{bottom:315.781333pt;}
.y1df{bottom:317.734533pt;}
.y220{bottom:317.822933pt;}
.y9c{bottom:323.619600pt;}
.y19d{bottom:325.905867pt;}
.y5a{bottom:328.045333pt;}
.yc5{bottom:330.150400pt;}
.y39{bottom:330.228000pt;}
.y1c4{bottom:330.461333pt;}
.y14a{bottom:332.572000pt;}
.y18{bottom:336.234667pt;}
.y76{bottom:336.518667pt;}
.y127{bottom:336.806000pt;}
.y203{bottom:337.328267pt;}
.y110{bottom:337.879333pt;}
.y16d{bottom:338.694800pt;}
.y1b7{bottom:338.966667pt;}
.y1de{bottom:340.919467pt;}
.y21f{bottom:341.007867pt;}
.yef{bottom:343.429333pt;}
.y9b{bottom:346.803600pt;}
.y59{bottom:351.229333pt;}
.yc4{bottom:353.335333pt;}
.y1c3{bottom:353.648000pt;}
.y149{bottom:353.822667pt;}
.y148{bottom:353.823333pt;}
.y19c{bottom:356.817333pt;}
.y75{bottom:359.702667pt;}
.y126{bottom:359.989333pt;}
.y202{bottom:360.510533pt;}
.y10f{bottom:361.063067pt;}
.y16c{bottom:361.879733pt;}
.y1b6{bottom:362.150667pt;}
.y1dd{bottom:364.101733pt;}
.y21e{bottom:364.192800pt;}
.y17{bottom:366.474667pt;}
.y9a{bottom:369.988400pt;}
.y58{bottom:374.413333pt;}
.y147{bottom:375.076000pt;}
.yc3{bottom:376.517733pt;}
.y74{bottom:382.886667pt;}
.y125{bottom:383.174667pt;}
.y201{bottom:383.692800pt;}
.y10e{bottom:384.247467pt;}
.y16b{bottom:385.063067pt;}
.y19b{bottom:385.334667pt;}
.y1dc{bottom:387.286667pt;}
.y21d{bottom:387.375067pt;}
.y16{bottom:389.658667pt;}
.y99{bottom:393.172267pt;}
.yee{bottom:395.948000pt;}
.y57{bottom:396.013333pt;}
.y146{bottom:396.328667pt;}
.y38{bottom:397.121333pt;}
.yc2{bottom:399.702800pt;}
.y73{bottom:406.070667pt;}
.y124{bottom:406.358667pt;}
.y200{bottom:406.877733pt;}
.y10d{bottom:407.429733pt;}
.y16a{bottom:408.247067pt;}
.y1b5{bottom:408.518667pt;}
.y19a{bottom:408.518800pt;}
.y1db{bottom:410.472000pt;}
.y21c{bottom:410.560000pt;}
.y15{bottom:412.842667pt;}
.y98{bottom:416.356133pt;}
.y145{bottom:417.581333pt;}
.yed{bottom:419.131867pt;}
.y56{bottom:421.521333pt;}
.yc1{bottom:422.886667pt;}
.y72{bottom:429.254667pt;}
.y123{bottom:429.543333pt;}
.y1ff{bottom:430.062667pt;}
.y10c{bottom:430.614800pt;}
.y169{bottom:431.429200pt;}
.y199{bottom:431.701733pt;}
.y1b4{bottom:431.702400pt;}
.y1da{bottom:433.189976pt;}
.y14{bottom:436.026667pt;}
.y144{bottom:438.832000pt;}
.y97{bottom:439.540400pt;}
.yec{bottom:442.316800pt;}
.y55{bottom:442.386667pt;}
.yc0{bottom:446.070667pt;}
.y21b{bottom:446.530667pt;}
.y122{bottom:452.726667pt;}
.y1fe{bottom:453.248000pt;}
.y10b{bottom:453.798000pt;}
.y168{bottom:454.614133pt;}
.y198{bottom:454.885067pt;}
.y1b3{bottom:454.885733pt;}
.y1d9{bottom:455.270195pt;}
.y143{bottom:460.083333pt;}
.y13{bottom:460.408133pt;}
.y96{bottom:462.724267pt;}
.y54{bottom:463.252000pt;}
.y37{bottom:464.694667pt;}
.yeb{bottom:465.500133pt;}
.ybf{bottom:469.255333pt;}
.y71{bottom:473.228000pt;}
.y121{bottom:475.912000pt;}
.y1fd{bottom:475.968563pt;}
.y10a{bottom:476.981733pt;}
.y1d8{bottom:477.349333pt;}
.y167{bottom:477.798000pt;}
.y1b2{bottom:478.069733pt;}
.y197{bottom:478.070000pt;}
.y142{bottom:481.336000pt;}
.y53{bottom:484.117333pt;}
.y95{bottom:485.908133pt;}
.y12{bottom:487.456000pt;}
.yea{bottom:488.683333pt;}
.ybe{bottom:492.438267pt;}
.y36{bottom:494.934667pt;}
.y1fc{bottom:498.045976pt;}
.y120{bottom:499.093867pt;}
.y109{bottom:500.166800pt;}
.y166{bottom:500.981733pt;}
.y1b1{bottom:501.254667pt;}
.y196{bottom:501.254933pt;}
.y141{bottom:502.588400pt;}
.y52{bottom:504.982667pt;}
.y21a{bottom:507.049733pt;}
.y94{bottom:509.092133pt;}
.y1d7{bottom:510.289333pt;}
.ye9{bottom:511.867733pt;}
.y11{bottom:513.306667pt;}
.ybd{bottom:515.622800pt;}
.y1fb{bottom:520.126667pt;}
.y11f{bottom:522.278800pt;}
.y70{bottom:523.078667pt;}
.y108{bottom:523.350667pt;}
.y140{bottom:523.840000pt;}
.y165{bottom:524.166800pt;}
.y195{bottom:524.437200pt;}
.y1b0{bottom:524.437333pt;}
.y35{bottom:525.174533pt;}
.y51{bottom:525.848000pt;}
.y219{bottom:530.234133pt;}
.y93{bottom:532.276000pt;}
.ye8{bottom:535.052133pt;}
.y10{bottom:537.688000pt;}
.ybc{bottom:538.805600pt;}
.y13f{bottom:545.090667pt;}
.y11e{bottom:545.462667pt;}
.y6f{bottom:546.262667pt;}
.y50{bottom:546.713333pt;}
.y164{bottom:547.350667pt;}
.y194{bottom:547.622133pt;}
.y1af{bottom:547.622667pt;}
.y1fa{bottom:553.065333pt;}
.y218{bottom:553.419067pt;}
.y34{bottom:555.414667pt;}
.y92{bottom:555.460000pt;}
.y107{bottom:556.929867pt;}
.ye7{bottom:558.236533pt;}
.ybb{bottom:561.988933pt;}
.y1d6{bottom:562.206667pt;}
.yf{bottom:564.736000pt;}
.y13e{bottom:566.344000pt;}
.y11d{bottom:568.645333pt;}
.y6e{bottom:569.446667pt;}
.y4f{bottom:570.070667pt;}
.y163{bottom:570.536000pt;}
.y1ae{bottom:570.806667pt;}
.y193{bottom:570.807067pt;}
.y217{bottom:576.601733pt;}
.y91{bottom:578.643600pt;}
.ye6{bottom:581.419867pt;}
.y1d5{bottom:583.458667pt;}
.yba{bottom:585.173867pt;}
.y33{bottom:585.654667pt;}
.y13d{bottom:587.596000pt;}
.y106{bottom:587.841333pt;}
.ye{bottom:591.784000pt;}
.y6d{bottom:592.630667pt;}
.y162{bottom:593.718533pt;}
.y230{bottom:593.989200pt;}
.y181{bottom:593.989333pt;}
.y1ad{bottom:593.990667pt;}
.y192{bottom:593.990933pt;}
.y4e{bottom:598.070667pt;}
.y216{bottom:599.786133pt;}
.yda{bottom:600.630667pt;}
.y90{bottom:601.828933pt;}
.ye5{bottom:604.604800pt;}
.y1d4{bottom:604.710667pt;}
.y1f9{bottom:604.984667pt;}
.yb9{bottom:608.357733pt;}
.y13c{bottom:609.445333pt;}
.y32{bottom:615.894667pt;}
.y161{bottom:616.902400pt;}
.y22f{bottom:617.174133pt;}
.y1ac{bottom:617.174667pt;}
.y191{bottom:617.174800pt;}
.y180{bottom:617.174933pt;}
.yd{bottom:617.634667pt;}
.y215{bottom:622.971067pt;}
.yd9{bottom:623.814667pt;}
.y8f{bottom:625.012267pt;}
.y1d3{bottom:625.964000pt;}
.y4d{bottom:626.070667pt;}
.y1f8{bottom:626.237333pt;}
.ye4{bottom:627.788667pt;}
.yb8{bottom:631.542933pt;}
.y13b{bottom:632.630667pt;}
.y6c{bottom:636.604000pt;}
.y160{bottom:640.085733pt;}
.y105{bottom:640.357867pt;}
.y190{bottom:640.358667pt;}
.y17f{bottom:640.358800pt;}
.y22e{bottom:640.359067pt;}
.yc{bottom:640.818667pt;}
.y31{bottom:646.134667pt;}
.y214{bottom:646.156000pt;}
.yd8{bottom:646.998667pt;}
.y1d2{bottom:647.214667pt;}
.y1f7{bottom:647.490000pt;}
.y8e{bottom:648.195600pt;}
.ye3{bottom:650.971200pt;}
.y4c{bottom:654.070667pt;}
.yb7{bottom:654.726267pt;}
.y13a{bottom:655.215733pt;}
.y15f{bottom:663.270800pt;}
.y18f{bottom:663.541333pt;}
.y104{bottom:663.542800pt;}
.y17e{bottom:663.543733pt;}
.yb{bottom:664.002667pt;}
.y1d1{bottom:668.466667pt;}
.y213{bottom:668.739333pt;}
.y1f6{bottom:668.740000pt;}
.yd7{bottom:670.182667pt;}
.y8d{bottom:671.380000pt;}
.ye2{bottom:674.156133pt;}
.y30{bottom:676.374667pt;}
.y139{bottom:676.467333pt;}
.yb6{bottom:677.910667pt;}
.y4b{bottom:682.070667pt;}
.y15e{bottom:686.454000pt;}
.y6b{bottom:686.454667pt;}
.y103{bottom:686.726133pt;}
.y22d{bottom:686.726667pt;}
.y17d{bottom:686.727067pt;}
.ya{bottom:687.186667pt;}
.y1d0{bottom:689.718667pt;}
.y212{bottom:689.992000pt;}
.y1f5{bottom:689.992667pt;}
.yd6{bottom:693.366667pt;}
.y8c{bottom:694.564000pt;}
.ye1{bottom:697.340133pt;}
.y138{bottom:697.720000pt;}
.yb5{bottom:701.094667pt;}
.y2f{bottom:706.614667pt;}
.y15d{bottom:709.637867pt;}
.y6a{bottom:709.638667pt;}
.y102{bottom:709.911067pt;}
.y17c{bottom:709.911600pt;}
.y1ab{bottom:709.912000pt;}
.y4a{bottom:710.070667pt;}
.y1cf{bottom:710.973333pt;}
.y1f4{bottom:711.245333pt;}
.yd5{bottom:716.550667pt;}
.y8b{bottom:717.747867pt;}
.y137{bottom:718.971333pt;}
.y9{bottom:719.159733pt;}
.ye0{bottom:720.524000pt;}
.yb4{bottom:724.278267pt;}
.y1f3{bottom:732.494667pt;}
.y15c{bottom:732.821733pt;}
.y1ce{bottom:732.822667pt;}
.y69{bottom:732.822800pt;}
.y1aa{bottom:733.092400pt;}
.y22c{bottom:733.093333pt;}
.y101{bottom:733.093867pt;}
.y2e{bottom:736.854667pt;}
.y49{bottom:738.070667pt;}
.yd4{bottom:739.734667pt;}
.y136{bottom:740.224400pt;}
.y8a{bottom:740.932267pt;}
.yac{bottom:742.129333pt;}
.yb3{bottom:747.461867pt;}
.y211{bottom:753.747333pt;}
.y1f2{bottom:753.748000pt;}
.ydf{bottom:754.102667pt;}
.y68{bottom:756.006667pt;}
.y15b{bottom:756.007333pt;}
.y1a9{bottom:756.277333pt;}
.y100{bottom:756.278800pt;}
.y22b{bottom:756.279067pt;}
.y8{bottom:757.799867pt;}
.y135{bottom:761.476000pt;}
.yd3{bottom:762.918667pt;}
.y89{bottom:764.116667pt;}
.y48{bottom:766.070667pt;}
.y2d{bottom:767.094667pt;}
.yb2{bottom:770.645200pt;}
.y1f1{bottom:775.000000pt;}
.y15a{bottom:779.189733pt;}
.y1cd{bottom:779.190533pt;}
.y67{bottom:779.190667pt;}
.y1a8{bottom:779.459600pt;}
.y18e{bottom:779.461067pt;}
.y22a{bottom:779.461333pt;}
.yff{bottom:779.462400pt;}
.y17b{bottom:779.462667pt;}
.y134{bottom:782.727600pt;}
.yd2{bottom:786.102667pt;}
.y88{bottom:787.299200pt;}
.yb1{bottom:793.830133pt;}
.y47{bottom:794.070667pt;}
.y1f0{bottom:796.252000pt;}
.y7{bottom:796.440000pt;}
.y2c{bottom:797.334667pt;}
.y1cc{bottom:802.374400pt;}
.y159{bottom:802.374667pt;}
.y66{bottom:802.374800pt;}
.yab{bottom:802.645333pt;}
.yfe{bottom:802.645733pt;}
.y17a{bottom:802.646000pt;}
.y18d{bottom:802.647467pt;}
.y133{bottom:803.978667pt;}
.yde{bottom:806.619200pt;}
.y87{bottom:810.483600pt;}
.yb0{bottom:817.014000pt;}
.y1ef{bottom:817.504000pt;}
.y210{bottom:817.505333pt;}
.y46{bottom:822.070667pt;}
.yd1{bottom:825.286133pt;}
.y65{bottom:825.558667pt;}
.y1cb{bottom:825.560400pt;}
.y1a7{bottom:825.829867pt;}
.y1c2{bottom:825.830133pt;}
.yaa{bottom:825.830667pt;}
.yfd{bottom:825.830800pt;}
.y179{bottom:825.830933pt;}
.y229{bottom:825.831067pt;}
.y2b{bottom:827.574667pt;}
.ydd{bottom:829.803067pt;}
.y86{bottom:833.668000pt;}
.y20f{bottom:838.754667pt;}
.y1ee{bottom:838.755333pt;}
.y6{bottom:839.080000pt;}
.yaf{bottom:840.197733pt;}
.yd0{bottom:848.470000pt;}
.y1ca{bottom:848.741733pt;}
.y64{bottom:848.742400pt;}
.y18c{bottom:849.013600pt;}
.y1a6{bottom:849.013733pt;}
.y1c1{bottom:849.014000pt;}
.y178{bottom:849.014267pt;}
.yfc{bottom:849.014400pt;}
.y11c{bottom:849.014533pt;}
.ya9{bottom:849.014667pt;}
.y228{bottom:849.016000pt;}
.y45{bottom:850.070667pt;}
.y158{bottom:851.136800pt;}
.ydc{bottom:852.988000pt;}
.y85{bottom:856.852000pt;}
.y2a{bottom:857.814667pt;}
.y1ed{bottom:860.008000pt;}
.yae{bottom:863.382667pt;}
.ycf{bottom:871.653733pt;}
.y63{bottom:871.926800pt;}
.y1c9{bottom:871.927067pt;}
.y227{bottom:872.197333pt;}
.y18b{bottom:872.197467pt;}
.y177{bottom:872.197600pt;}
.yfb{bottom:872.197733pt;}
.y11b{bottom:872.197867pt;}
.ya8{bottom:872.199200pt;}
.y5{bottom:872.930667pt;}
.y44{bottom:879.654667pt;}
.y20e{bottom:881.260000pt;}
.y1ec{bottom:881.260400pt;}
.y157{bottom:882.049333pt;}
.y29{bottom:888.054667pt;}
.ydb{bottom:888.961333pt;}
.y84{bottom:892.825333pt;}
.yce{bottom:894.838800pt;}
.y1c8{bottom:895.109333pt;}
.y62{bottom:895.110667pt;}
.y226{bottom:895.380000pt;}
.y18a{bottom:895.381333pt;}
.y1a5{bottom:895.381467pt;}
.y176{bottom:895.382533pt;}
.y11a{bottom:895.382800pt;}
.yfa{bottom:895.383067pt;}
.ya7{bottom:895.383600pt;}
.y4{bottom:896.114667pt;}
.yad{bottom:896.961333pt;}
.y20d{bottom:902.510000pt;}
.y1eb{bottom:902.512000pt;}
.y81{bottom:907.900000pt;}
.y43{bottom:911.628000pt;}
.y156{bottom:912.961333pt;}
.ycd{bottom:918.022667pt;}
.y28{bottom:918.294667pt;}
.yf9{bottom:918.566400pt;}
.y132{bottom:918.566667pt;}
.ya6{bottom:918.566933pt;}
.y1a4{bottom:918.567467pt;}
.y189{bottom:918.568000pt;}
.y3{bottom:919.298667pt;}
.y1ea{bottom:923.762667pt;}
.y1c7{bottom:928.688800pt;}
.y1{bottom:935.200000pt;}
.yf8{bottom:941.749733pt;}
.ya5{bottom:941.750267pt;}
.y80{bottom:941.750667pt;}
.y1e9{bottom:945.015333pt;}
.y27{bottom:954.268000pt;}
.y83{bottom:956.934667pt;}
.ycc{bottom:959.601333pt;}
.y7f{bottom:964.934667pt;}
.y1e8{bottom:966.268000pt;}
.y24{bottom:980.933333pt;}
.h23{height:23.616000pt;}
.h9{height:31.488000pt;}
.ha{height:31.488533pt;}
.h11{height:33.600000pt;}
.hd{height:34.159867pt;}
.h12{height:35.424000pt;}
.h24{height:38.828125pt;}
.h25{height:39.360000pt;}
.h30{height:39.361600pt;}
.h28{height:39.786667pt;}
.h15{height:42.710938pt;}
.h2a{height:43.296000pt;}
.h35{height:43.298667pt;}
.h29{height:44.293333pt;}
.h16{height:44.416000pt;}
.h2b{height:44.628362pt;}
.hc{height:44.800000pt;}
.h14{height:47.168000pt;}
.h2{height:47.232000pt;}
.h7{height:47.232533pt;}
.h20{height:47.233067pt;}
.h19{height:47.233600pt;}
.h22{height:47.234133pt;}
.h1f{height:47.234667pt;}
.h18{height:47.235200pt;}
.h1d{height:47.235733pt;}
.h31{height:47.236267pt;}
.h4{height:47.680000pt;}
.h2f{height:48.319467pt;}
.he{height:48.320000pt;}
.h1c{height:48.321600pt;}
.h1e{height:48.322133pt;}
.h2e{height:48.322667pt;}
.h32{height:48.323733pt;}
.h1b{height:48.324267pt;}
.h26{height:48.685546pt;}
.h33{height:48.687491pt;}
.h34{height:48.688393pt;}
.h13{height:51.264000pt;}
.hf{height:54.319733pt;}
.h6{height:54.359375pt;}
.h21{height:54.949600pt;}
.h27{height:54.952267pt;}
.h5{height:55.626667pt;}
.h1a{height:63.573333pt;}
.h2c{height:64.426667pt;}
.h2d{height:64.428800pt;}
.h17{height:67.776000pt;}
.h3{height:78.613333pt;}
.h10{height:125.200000pt;}
.h8{height:128.400000pt;}
.hb{height:141.733333pt;}
.h1{height:187.466667pt;}
.h0{height:1122.666667pt;}
.w3{width:92.000000pt;}
.w2{width:111.000000pt;}
.w4{width:159.000000pt;}
.w5{width:230.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x10{left:6.000000pt;}
.x2{left:96.000000pt;}
.xf{left:97.000000pt;}
.x3a{left:98.616133pt;}
.x1c{left:101.927067pt;}
.xa{left:118.605200pt;}
.x5{left:119.880800pt;}
.x38{left:129.745867pt;}
.x37{left:144.000000pt;}
.x4{left:148.602667pt;}
.x21{left:162.521333pt;}
.x2e{left:179.248000pt;}
.x8{left:181.716000pt;}
.x11{left:209.000000pt;}
.x2f{left:222.352000pt;}
.x22{left:239.082667pt;}
.x6{left:245.910533pt;}
.xd{left:249.616000pt;}
.x1d{left:251.000000pt;}
.x19{left:269.008000pt;}
.x1b{left:276.058667pt;}
.x34{left:277.517333pt;}
.x16{left:289.240000pt;}
.xb{left:291.844267pt;}
.x12{left:302.000000pt;}
.x17{left:310.830667pt;}
.x18{left:316.336000pt;}
.xe{left:324.038667pt;}
.x7{left:326.914667pt;}
.x27{left:334.589333pt;}
.x3{left:336.941333pt;}
.x30{left:338.604000pt;}
.x23{left:346.154667pt;}
.x9{left:347.858667pt;}
.x1{left:396.850667pt;}
.x2b{left:399.370667pt;}
.x31{left:404.117333pt;}
.x28{left:411.065333pt;}
.x2c{left:451.693333pt;}
.x13{left:462.000000pt;}
.x24{left:473.898667pt;}
.x29{left:496.452000pt;}
.x14{left:505.701333pt;}
.x32{left:510.317333pt;}
.x2d{left:518.041333pt;}
.x35{left:537.416000pt;}
.x1a{left:551.850667pt;}
.x25{left:555.370667pt;}
.x33{left:569.733333pt;}
.x2a{left:576.212000pt;}
.x36{left:579.625333pt;}
.xc{left:650.000000pt;}
.x39{left:651.464000pt;}
.x3b{left:652.844000pt;}
.x1e{left:653.793333pt;}
.x26{left:655.172000pt;}
.x1f{left:657.500000pt;}
.x15{left:659.336000pt;}
.x20{left:702.000000pt;}
}




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