
    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_91dc717295f6d30f0f4c3ae2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.956000;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_df83a7b87e45cdb79fee0238.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_a5be8150be2a00600330254b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_c2bd1e4b0a23095d2eeb104f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.718000;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_6ff251393e88393979f90d38.woff')format("woff");}.ff5{font-family:ff5;line-height:0.904000;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_04db2c9a2c35494e9defcdd2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.018000;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_a83a2be3c840d0ff8a82e11c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_655e36819702c3509847f094.woff')format("woff");}.ff8{font-family:ff8;line-height:1.102000;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_b965be2f32a5816c21cca1f9.woff')format("woff");}.ff9{font-family:ff9;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4669ba33164015b9b4a79434.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4facb88f8cd4b2a3512ab3aa.woff')format("woff");}.ffb{font-family:ffb;line-height:1.102000;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_722a88fce6d47e4aeec2ef54.woff')format("woff");}.ffc{font-family:ffc;line-height:0.925000;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_5f1be9d1c0a5c1d945d0b013.woff')format("woff");}.ffd{font-family:ffd;line-height:0.731000;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_8c1b9683e267a88e1bae38ab.woff')format("woff");}.ffe{font-family:ffe;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_cd6a13268d41b61a61fae536.woff')format("woff");}.fff{font-family:fff;line-height:0.964000;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_3f62f0ce3babdc43d3784dea.woff')format("woff");}.ff10{font-family:ff10;line-height:1.091000;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_c6e2cbcbb15fae9388ff6dc2.woff')format("woff");}.ff11{font-family:ff11;line-height:0.738000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b965be2f32a5816c21cca1f9.woff')format("woff");}.ff12{font-family:ff12;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_97b8eb2406fba42f38169dc4.woff')format("woff");}.ff13{font-family:ff13;line-height:0.919000;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_facbf251202c79dd71e1c15b.woff')format("woff");}.ff14{font-family:ff14;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-18.591600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.003600px;}
.ls13{letter-spacing:-2.040000px;}
.ls8{letter-spacing:-1.452000px;}
.ls7{letter-spacing:-1.386000px;}
.lsd{letter-spacing:-1.188000px;}
.ls5{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.378000px;}
.lsf{letter-spacing:-0.300000px;}
.ls9{letter-spacing:-0.108000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.330000px;}
.lsc{letter-spacing:0.462000px;}
.ls3{letter-spacing:0.594000px;}
.ls2{letter-spacing:0.660000px;}
.ls6{letter-spacing:0.726000px;}
.lse{letter-spacing:0.792000px;}
.ls12{letter-spacing:0.864000px;}
.ls11{letter-spacing:0.918000px;}
.ls4{letter-spacing:0.990000px;}
.lsb{letter-spacing:1.320000px;}
.ls10{letter-spacing:3.888000px;}
.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;}
}
.ws29{word-spacing:-75.600000px;}
.ws36{word-spacing:-24.000000px;}
.ws4{word-spacing:-14.400000px;}
.ws34{word-spacing:-13.992000px;}
.ws33{word-spacing:-13.596000px;}
.ws1d{word-spacing:-13.530000px;}
.ws8{word-spacing:-13.398000px;}
.ws1e{word-spacing:-13.266000px;}
.ws5{word-spacing:-12.804000px;}
.ws2{word-spacing:-12.000000px;}
.ws48{word-spacing:-11.718000px;}
.ws3a{word-spacing:-11.700000px;}
.ws37{word-spacing:-11.640000px;}
.wse{word-spacing:-11.352000px;}
.ws14{word-spacing:-10.800000px;}
.ws32{word-spacing:-9.612000px;}
.ws0{word-spacing:-9.600000px;}
.ws1{word-spacing:-8.400000px;}
.ws1b{word-spacing:-5.346000px;}
.ws30{word-spacing:-2.970000px;}
.ws44{word-spacing:-2.220000px;}
.ws43{word-spacing:-2.160000px;}
.ws40{word-spacing:-1.560000px;}
.ws1f{word-spacing:-1.320000px;}
.ws45{word-spacing:-1.200000px;}
.ws42{word-spacing:-1.140000px;}
.ws3b{word-spacing:-1.080000px;}
.wsc{word-spacing:-0.990000px;}
.ws4a{word-spacing:-0.864000px;}
.ws35{word-spacing:-0.792000px;}
.wsd{word-spacing:-0.726000px;}
.ws9{word-spacing:-0.660000px;}
.wsa{word-spacing:-0.594000px;}
.ws23{word-spacing:-0.462000px;}
.ws7{word-spacing:-0.330000px;}
.ws3{word-spacing:0.000000px;}
.ws1a{word-spacing:0.132000px;}
.ws41{word-spacing:0.300000px;}
.ws3f{word-spacing:0.420000px;}
.ws2a{word-spacing:0.462000px;}
.ws26{word-spacing:0.594000px;}
.ws3e{word-spacing:0.660000px;}
.ws22{word-spacing:1.056000px;}
.wsb{word-spacing:1.080000px;}
.ws21{word-spacing:1.122000px;}
.ws39{word-spacing:1.320000px;}
.ws46{word-spacing:1.380000px;}
.ws17{word-spacing:1.386000px;}
.ws47{word-spacing:1.440000px;}
.ws1c{word-spacing:1.452000px;}
.ws38{word-spacing:2.220000px;}
.ws3c{word-spacing:4.740000px;}
.ws3d{word-spacing:4.800000px;}
.ws24{word-spacing:5.610000px;}
.ws27{word-spacing:6.072000px;}
.ws28{word-spacing:6.204000px;}
.ws31{word-spacing:6.534000px;}
.ws25{word-spacing:6.930000px;}
.ws18{word-spacing:7.590000px;}
.ws19{word-spacing:10.098000px;}
.ws20{word-spacing:10.692000px;}
.ws6{word-spacing:36.000000px;}
.ws49{word-spacing:52.849200px;}
.ws2f{word-spacing:139.806000px;}
.ws13{word-spacing:178.524000px;}
.wsf{word-spacing:229.775400px;}
.ws2b{word-spacing:250.511400px;}
.ws2e{word-spacing:258.606000px;}
.ws16{word-spacing:259.632000px;}
.ws11{word-spacing:266.814000px;}
.ws2c{word-spacing:268.974000px;}
.ws12{word-spacing:272.322000px;}
.ws15{word-spacing:282.852000px;}
.ws2d{word-spacing:291.384000px;}
.ws10{word-spacing:294.516000px;}
._3e{margin-left:-58.410000px;}
._3d{margin-left:-23.052000px;}
._1a{margin-left:-7.788000px;}
._10{margin-left:-5.959800px;}
._2{margin-left:-4.954800px;}
._12{margin-left:-3.933600px;}
._1{margin-left:-2.860200px;}
._0{margin-left:-1.092000px;}
._7{width:1.355400px;}
._4{width:2.716200px;}
._5{width:3.855600px;}
._6{width:4.914000px;}
._8{width:6.231600px;}
._3{width:7.722000px;}
._c{width:9.319200px;}
._e{width:10.817400px;}
._14{width:12.196800px;}
._d{width:14.334600px;}
._f{width:15.846600px;}
._13{width:16.971000px;}
._b{width:18.004800px;}
._11{width:19.558800px;}
._18{width:21.384000px;}
._16{width:23.515800px;}
._17{width:24.644400px;}
._9{width:27.616800px;}
._a{width:28.980000px;}
._2c{width:32.400000px;}
._15{width:34.920000px;}
._19{width:36.000000px;}
._33{width:62.058000px;}
._3f{width:73.854000px;}
._34{width:85.266000px;}
._20{width:86.682000px;}
._1d{width:92.610000px;}
._23{width:123.552000px;}
._26{width:129.354000px;}
._2b{width:141.264000px;}
._2f{width:144.528000px;}
._2a{width:154.236000px;}
._30{width:169.290000px;}
._36{width:173.448000px;}
._2e{width:176.148000px;}
._27{width:192.456000px;}
._22{width:197.868000px;}
._1f{width:212.760000px;}
._1c{width:214.542000px;}
._28{width:217.890000px;}
._21{width:225.084000px;}
._24{width:239.382000px;}
._31{width:255.258000px;}
._29{width:268.866000px;}
._25{width:297.552000px;}
._3a{width:301.128000px;}
._1b{width:307.692000px;}
._2d{width:343.440000px;}
._35{width:344.628000px;}
._37{width:356.670000px;}
._1e{width:365.904000px;}
._32{width:375.354000px;}
._39{width:462.024000px;}
._38{width:496.854000px;}
._3c{width:606.960000px;}
._3b{width:654.372000px;}
.fc5{color:rgb(68,65,65);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc6{color:rgb(238,76,168);}
.fc1{color:rgb(123,121,121);}
.fc3{color:rgb(214,218,1);}
.fc0{color:rgb(233,17,141);}
.fs9{font-size:31.482000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:108.000000px;}
.fs4{font-size:120.000000px;}
.fs3{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:40.541100px;}
.y5{bottom:55.545600px;}
.y7{bottom:61.919250px;}
.y4{bottom:70.550100px;}
.y3{bottom:85.554600px;}
.y2{bottom:100.559100px;}
.y1{bottom:115.559100px;}
.yc1{bottom:157.314150px;}
.y144{bottom:157.318500px;}
.y231{bottom:157.322850px;}
.y42{bottom:158.136600px;}
.y1d9{bottom:158.973900px;}
.y1c2{bottom:160.112250px;}
.y11c{bottom:162.017400px;}
.y100{bottom:167.535900px;}
.yc0{bottom:172.318650px;}
.y143{bottom:172.323000px;}
.y6d{bottom:173.894400px;}
.y1af{bottom:173.976900px;}
.y20b{bottom:174.035400px;}
.y18f{bottom:177.015900px;}
.y41{bottom:179.141100px;}
.y8d{bottom:179.946900px;}
.y1d8{bottom:179.978400px;}
.y1c1{bottom:181.116750px;}
.y11b{bottom:183.021900px;}
.y1f4{bottom:183.030450px;}
.yec{bottom:184.374900px;}
.y22b{bottom:186.035400px;}
.y230{bottom:187.222650px;}
.ybf{bottom:187.323150px;}
.yff{bottom:188.540400px;}
.y17b{bottom:190.496400px;}
.y20a{bottom:193.535400px;}
.y6c{bottom:194.898900px;}
.y1ae{bottom:194.981400px;}
.y18e{bottom:198.020400px;}
.y40{bottom:200.145600px;}
.y8c{bottom:200.951400px;}
.y1c0{bottom:202.121250px;}
.y11a{bottom:204.026400px;}
.y1f3{bottom:204.034950px;}
.yeb{bottom:205.379400px;}
.yfe{bottom:209.544900px;}
.y17a{bottom:211.500900px;}
.y6b{bottom:215.903400px;}
.y1bb{bottom:215.952900px;}
.y18d{bottom:219.024900px;}
.y3f{bottom:221.150100px;}
.y8b{bottom:221.955900px;}
.y1d7{bottom:221.970900px;}
.y1bf{bottom:223.125750px;}
.y119{bottom:225.030900px;}
.y22a{bottom:225.035400px;}
.yea{bottom:226.383900px;}
.y179{bottom:232.505400px;}
.y209{bottom:232.535400px;}
.y142{bottom:233.633250px;}
.y98{bottom:236.891400px;}
.y6a{bottom:236.907900px;}
.y1ba{bottom:236.957400px;}
.y1ad{bottom:236.973900px;}
.y8a{bottom:242.960400px;}
.y1d6{bottom:242.975400px;}
.y229{bottom:244.535400px;}
.y1f2{bottom:246.034950px;}
.y118{bottom:246.035400px;}
.ybe{bottom:247.033500px;}
.ye9{bottom:247.388400px;}
.yfd{bottom:251.537400px;}
.y208{bottom:252.035400px;}
.y168{bottom:253.259100px;}
.y178{bottom:253.509900px;}
.y141{bottom:254.637750px;}
.y19{bottom:256.638150px;}
.y97{bottom:257.895900px;}
.y69{bottom:257.912400px;}
.y1b9{bottom:257.961900px;}
.y1ac{bottom:257.978400px;}
.y18c{bottom:261.017400px;}
.y3e{bottom:263.142600px;}
.y89{bottom:263.964900px;}
.y1d5{bottom:263.979900px;}
.y228{bottom:264.035400px;}
.y1be{bottom:265.125750px;}
.ye8{bottom:268.392900px;}
.y22f{bottom:271.355400px;}
.y207{bottom:271.535400px;}
.ybd{bottom:271.962450px;}
.yfc{bottom:272.541900px;}
.y177{bottom:274.514400px;}
.y140{bottom:275.642250px;}
.y18{bottom:277.638150px;}
.y96{bottom:278.900400px;}
.y68{bottom:278.916900px;}
.y1b8{bottom:278.966400px;}
.y1ab{bottom:278.982900px;}
.y18b{bottom:282.021900px;}
.y3d{bottom:284.147100px;}
.y88{bottom:284.969400px;}
.y1d4{bottom:284.984400px;}
.y117{bottom:288.035400px;}
.ybc{bottom:288.459450px;}
.y22e{bottom:289.350900px;}
.ye7{bottom:289.397400px;}
.yfb{bottom:293.546400px;}
.y176{bottom:295.518900px;}
.y13f{bottom:296.646750px;}
.y17{bottom:298.638150px;}
.y95{bottom:299.904900px;}
.y67{bottom:299.921400px;}
.y1b7{bottom:299.970900px;}
.y1aa{bottom:299.987400px;}
.y18a{bottom:303.026400px;}
.y227{bottom:303.035400px;}
.y3c{bottom:305.151600px;}
.y87{bottom:305.973900px;}
.y1d3{bottom:305.988900px;}
.y22d{bottom:307.346400px;}
.ye6{bottom:310.401900px;}
.y206{bottom:310.535400px;}
.yfa{bottom:314.550900px;}
.ybb{bottom:315.567450px;}
.y13e{bottom:317.651250px;}
.y16{bottom:319.638150px;}
.y94{bottom:320.909400px;}
.y125{bottom:320.925900px;}
.y1a9{bottom:320.991900px;}
.y226{bottom:322.535400px;}
.y189{bottom:324.030900px;}
.y1f1{bottom:324.034950px;}
.y3b{bottom:326.156100px;}
.y86{bottom:326.978400px;}
.y1d2{bottom:326.993400px;}
.y205{bottom:330.035400px;}
.ye5{bottom:331.406400px;}
.yba{bottom:332.064450px;}
.yf9{bottom:335.555400px;}
.y1bd{bottom:337.126800px;}
.y175{bottom:337.511400px;}
.y13d{bottom:338.655750px;}
.y66{bottom:341.913900px;}
.y124{bottom:341.930400px;}
.y1b6{bottom:341.963400px;}
.y225{bottom:342.035400px;}
.y188{bottom:345.035400px;}
.y3a{bottom:347.160600px;}
.y85{bottom:347.982900px;}
.y1d1{bottom:347.997900px;}
.ye4{bottom:352.410900px;}
.yf8{bottom:356.559900px;}
.y174{bottom:358.515900px;}
.y15{bottom:358.938150px;}
.yb9{bottom:359.172450px;}
.y13c{bottom:359.660250px;}
.y65{bottom:362.918400px;}
.y123{bottom:362.934900px;}
.y1b5{bottom:362.967900px;}
.y1a8{bottom:362.984400px;}
.y1f0{bottom:366.034950px;}
.y39{bottom:368.165100px;}
.y84{bottom:368.987400px;}
.y116{bottom:368.997900px;}
.y1d0{bottom:369.002400px;}
.y204{bottom:369.035400px;}
.ye3{bottom:373.415400px;}
.yf7{bottom:377.564400px;}
.y173{bottom:379.520400px;}
.y14{bottom:379.938150px;}
.y224{bottom:381.035400px;}
.y64{bottom:383.922900px;}
.y122{bottom:383.939400px;}
.y1b4{bottom:383.972400px;}
.y1a7{bottom:383.988900px;}
.yb8{bottom:386.280450px;}
.y187{bottom:387.035400px;}
.y203{bottom:388.535400px;}
.y38{bottom:389.169600px;}
.y115{bottom:390.002400px;}
.y1cf{bottom:390.006900px;}
.ye2{bottom:394.419900px;}
.yf6{bottom:398.568900px;}
.y172{bottom:400.524900px;}
.y223{bottom:400.535400px;}
.y13{bottom:400.938150px;}
.y13b{bottom:401.652750px;}
.y63{bottom:404.927400px;}
.y121{bottom:404.943900px;}
.y1b3{bottom:404.976900px;}
.y1a6{bottom:404.993400px;}
.y37{bottom:410.174100px;}
.y83{bottom:410.979900px;}
.y114{bottom:411.006900px;}
.yb7{bottom:413.388450px;}
.ye1{bottom:415.424400px;}
.yf5{bottom:419.573400px;}
.y171{bottom:421.529400px;}
.y12{bottom:421.938150px;}
.y13a{bottom:422.657250px;}
.y62{bottom:425.931900px;}
.y120{bottom:425.948400px;}
.y1b2{bottom:425.981400px;}
.y202{bottom:427.535400px;}
.yb6{bottom:429.885450px;}
.y36{bottom:431.178600px;}
.y82{bottom:431.984400px;}
.y1ce{bottom:431.999400px;}
.y113{bottom:432.011400px;}
.ye0{bottom:436.428900px;}
.y222{bottom:439.535400px;}
.y139{bottom:443.661750px;}
.y1ef{bottom:444.021900px;}
.y61{bottom:446.936400px;}
.y11f{bottom:446.952900px;}
.y1a5{bottom:446.985900px;}
.y201{bottom:447.035400px;}
.y35{bottom:452.183100px;}
.y81{bottom:452.988900px;}
.y1cd{bottom:453.003900px;}
.yb5{bottom:456.993450px;}
.ydf{bottom:457.433400px;}
.y221{bottom:459.035400px;}
.y11{bottom:461.238150px;}
.yf4{bottom:461.565900px;}
.y170{bottom:463.521900px;}
.y138{bottom:464.666250px;}
.y1ee{bottom:465.026400px;}
.y60{bottom:467.940900px;}
.y186{bottom:467.957400px;}
.y1a4{bottom:467.990400px;}
.y34{bottom:473.187600px;}
.y80{bottom:473.993400px;}
.y112{bottom:474.003900px;}
.y1cc{bottom:474.008400px;}
.yde{bottom:478.437900px;}
.y10{bottom:482.238150px;}
.yf3{bottom:482.570400px;}
.yb4{bottom:484.101450px;}
.y16f{bottom:484.526400px;}
.y137{bottom:485.670750px;}
.y1ed{bottom:486.030900px;}
.y200{bottom:486.035400px;}
.y5f{bottom:488.945400px;}
.y185{bottom:488.961900px;}
.y1a3{bottom:488.994900px;}
.y33{bottom:494.192100px;}
.y7f{bottom:494.997900px;}
.y111{bottom:495.008400px;}
.y1cb{bottom:495.012900px;}
.y220{bottom:498.035400px;}
.ydd{bottom:499.442400px;}
.yf{bottom:503.238150px;}
.yf2{bottom:503.574900px;}
.y16e{bottom:505.530900px;}
.y1ff{bottom:505.535400px;}
.y136{bottom:506.675250px;}
.y1ec{bottom:507.035400px;}
.y5e{bottom:509.949900px;}
.y184{bottom:509.966400px;}
.y1a2{bottom:509.999400px;}
.y7e{bottom:516.002400px;}
.y110{bottom:516.012900px;}
.y1ca{bottom:516.017400px;}
.yb3{bottom:517.535400px;}
.ydc{bottom:520.446900px;}
.ye{bottom:524.238150px;}
.yf1{bottom:524.579400px;}
.y16d{bottom:526.535400px;}
.y135{bottom:527.679750px;}
.y5d{bottom:530.954400px;}
.y183{bottom:530.970900px;}
.y32{bottom:536.192100px;}
.y7d{bottom:537.006900px;}
.y10f{bottom:537.017400px;}
.y1c9{bottom:537.021900px;}
.y21f{bottom:537.035400px;}
.y1fe{bottom:544.535400px;}
.yf0{bottom:545.583900px;}
.y134{bottom:548.684250px;}
.y1eb{bottom:549.035400px;}
.y93{bottom:551.942400px;}
.y11e{bottom:551.958900px;}
.y182{bottom:551.975400px;}
.y1a1{bottom:551.991900px;}
.y7c{bottom:558.011400px;}
.y10e{bottom:558.021900px;}
.y1c8{bottom:558.026400px;}
.yb2{bottom:559.439400px;}
.ydb{bottom:562.439400px;}
.y1fd{bottom:564.035400px;}
.y16c{bottom:568.535400px;}
.y133{bottom:569.688750px;}
.yd{bottom:572.041950px;}
.y5c{bottom:572.946900px;}
.y11d{bottom:572.963400px;}
.y1a0{bottom:572.996400px;}
.y21e{bottom:576.035400px;}
.y7b{bottom:579.015900px;}
.y10d{bottom:579.026400px;}
.y1c7{bottom:579.030900px;}
.yb1{bottom:580.443900px;}
.yda{bottom:583.443900px;}
.yef{bottom:587.583900px;}
.y132{bottom:590.693250px;}
.y5b{bottom:593.951400px;}
.y181{bottom:593.967900px;}
.y19f{bottom:594.000900px;}
.y21d{bottom:595.535400px;}
.y7a{bottom:600.020400px;}
.y10c{bottom:600.030900px;}
.y1c6{bottom:600.035400px;}
.yb0{bottom:601.448400px;}
.y1fc{bottom:603.035400px;}
.yd9{bottom:604.448400px;}
.yc{bottom:608.041950px;}
.y131{bottom:611.697750px;}
.y5a{bottom:614.955900px;}
.y180{bottom:614.972400px;}
.y19e{bottom:615.005400px;}
.y79{bottom:621.024900px;}
.y10b{bottom:621.035400px;}
.yaf{bottom:622.452900px;}
.yd8{bottom:625.452900px;}
.y1ea{bottom:626.996400px;}
.y21c{bottom:634.535400px;}
.y59{bottom:635.960400px;}
.y17f{bottom:635.976900px;}
.y1c5{bottom:642.035400px;}
.yae{bottom:643.457400px;}
.yd7{bottom:646.457400px;}
.y1e9{bottom:648.000900px;}
.yb{bottom:652.545900px;}
.y130{bottom:653.697750px;}
.y21b{bottom:654.035400px;}
.y58{bottom:656.964900px;}
.y17e{bottom:656.981400px;}
.y19d{bottom:656.997900px;}
.y31{bottom:657.231450px;}
.y1fb{bottom:661.535400px;}
.y78{bottom:663.017400px;}
.y10a{bottom:663.035400px;}
.yad{bottom:664.461900px;}
.yd6{bottom:667.461900px;}
.y1e8{bottom:669.005400px;}
.y30{bottom:675.231450px;}
.y57{bottom:677.969400px;}
.y17d{bottom:677.985900px;}
.y19c{bottom:678.002400px;}
.y77{bottom:684.021900px;}
.yac{bottom:685.466400px;}
.yd5{bottom:688.466400px;}
.yee{bottom:689.584950px;}
.y1e7{bottom:690.009900px;}
.y21a{bottom:693.035400px;}
.y167{bottom:694.948800px;}
.ya{bottom:697.545900px;}
.y56{bottom:698.973900px;}
.y17c{bottom:698.990400px;}
.y19b{bottom:699.006900px;}
.y1fa{bottom:702.035400px;}
.y76{bottom:705.026400px;}
.yab{bottom:706.470900px;}
.yd4{bottom:709.470900px;}
.y1e6{bottom:711.014400px;}
.y219{bottom:712.535400px;}
.y2f{bottom:713.362950px;}
.y55{bottom:719.978400px;}
.y1c4{bottom:719.994900px;}
.y19a{bottom:720.011400px;}
.y12f{bottom:725.698800px;}
.y75{bottom:726.030900px;}
.yaa{bottom:727.475400px;}
.yd3{bottom:730.475400px;}
.y2e{bottom:731.358450px;}
.y1e5{bottom:732.018900px;}
.y92{bottom:740.982900px;}
.y1c3{bottom:740.999400px;}
.y1b1{bottom:741.015900px;}
.y9{bottom:742.545900px;}
.y74{bottom:747.035400px;}
.ya9{bottom:748.479900px;}
.y2d{bottom:749.353950px;}
.yd2{bottom:751.479900px;}
.y218{bottom:751.535400px;}
.y12e{bottom:754.447650px;}
.y166{bottom:757.840800px;}
.y54{bottom:761.970900px;}
.y91{bottom:761.987400px;}
.y199{bottom:762.003900px;}
.y1b0{bottom:762.020400px;}
.y2c{bottom:767.349450px;}
.ya8{bottom:769.484400px;}
.y217{bottom:771.035400px;}
.yd1{bottom:772.484400px;}
.y1e4{bottom:774.011400px;}
.y165{bottom:778.845300px;}
.y1f9{bottom:780.021900px;}
.y53{bottom:782.975400px;}
.y90{bottom:782.991900px;}
.y198{bottom:783.008400px;}
.y2b{bottom:785.344950px;}
.y8{bottom:787.545900px;}
.y73{bottom:789.035400px;}
.y12d{bottom:789.210150px;}
.ya7{bottom:790.488900px;}
.yd0{bottom:793.488900px;}
.y1e3{bottom:795.015900px;}
.y164{bottom:799.849800px;}
.y1f8{bottom:801.026400px;}
.y2a{bottom:803.340450px;}
.y52{bottom:803.979900px;}
.y109{bottom:803.996400px;}
.y197{bottom:804.012900px;}
.y1bc{bottom:804.035400px;}
.y216{bottom:810.035400px;}
.ycf{bottom:814.493400px;}
.y1e2{bottom:816.020400px;}
.y163{bottom:820.854300px;}
.y29{bottom:821.335950px;}
.y1f7{bottom:822.030900px;}
.y12c{bottom:823.972650px;}
.y51{bottom:824.984400px;}
.y108{bottom:825.000900px;}
.y196{bottom:825.017400px;}
.y215{bottom:829.535400px;}
.ya6{bottom:832.481400px;}
.yce{bottom:835.497900px;}
.y1e1{bottom:837.024900px;}
.y28{bottom:839.331450px;}
.y162{bottom:841.858800px;}
.y1f6{bottom:843.035400px;}
.y50{bottom:845.988900px;}
.y107{bottom:846.005400px;}
.y195{bottom:846.021900px;}
.y214{bottom:849.035400px;}
.ya5{bottom:853.485900px;}
.ycd{bottom:856.502400px;}
.y12b{bottom:858.735150px;}
.y27{bottom:861.583350px;}
.y161{bottom:862.863300px;}
.y72{bottom:866.976900px;}
.y4f{bottom:866.993400px;}
.y106{bottom:867.009900px;}
.ya4{bottom:874.490400px;}
.y16b{bottom:877.490400px;}
.ycc{bottom:877.506900px;}
.y1e0{bottom:879.017400px;}
.y160{bottom:883.867800px;}
.y1f5{bottom:885.035400px;}
.y71{bottom:887.981400px;}
.y4e{bottom:887.997900px;}
.y194{bottom:888.014400px;}
.y213{bottom:888.035400px;}
.y12a{bottom:893.494950px;}
.ya3{bottom:895.494900px;}
.y16a{bottom:898.494900px;}
.ycb{bottom:898.511400px;}
.y1df{bottom:900.021900px;}
.y15f{bottom:904.872300px;}
.y212{bottom:907.535400px;}
.y70{bottom:908.985900px;}
.y4d{bottom:909.002400px;}
.y193{bottom:909.018900px;}
.y26{bottom:916.183350px;}
.ya2{bottom:916.499400px;}
.y169{bottom:919.499400px;}
.y1de{bottom:921.026400px;}
.y15e{bottom:925.876800px;}
.y129{bottom:928.249500px;}
.y6f{bottom:929.990400px;}
.y4c{bottom:930.006900px;}
.y192{bottom:930.023400px;}
.y25{bottom:934.183350px;}
.ya1{bottom:937.503900px;}
.yca{bottom:940.503900px;}
.y1dd{bottom:942.030900px;}
.y211{bottom:946.535400px;}
.y6e{bottom:950.994900px;}
.y8f{bottom:951.011400px;}
.y191{bottom:951.027900px;}
.ya0{bottom:958.508400px;}
.yc9{bottom:961.508400px;}
.y128{bottom:963.012000px;}
.y1dc{bottom:963.035400px;}
.y210{bottom:966.035400px;}
.y15d{bottom:967.869300px;}
.y4b{bottom:971.999400px;}
.y8e{bottom:972.015900px;}
.y190{bottom:972.032400px;}
.y24{bottom:972.319500px;}
.y9f{bottom:979.512900px;}
.yc8{bottom:982.512900px;}
.y15c{bottom:988.873800px;}
.y23{bottom:990.315000px;}
.y4a{bottom:993.003900px;}
.y105{bottom:993.020400px;}
.y127{bottom:997.774500px;}
.y9e{bottom:1000.517400px;}
.yc7{bottom:1003.517400px;}
.y1db{bottom:1005.035400px;}
.y22{bottom:1008.310500px;}
.y15b{bottom:1009.878300px;}
.y49{bottom:1014.008400px;}
.y104{bottom:1014.024900px;}
.y9d{bottom:1021.521900px;}
.yc6{bottom:1024.521900px;}
.y20f{bottom:1024.535400px;}
.y21{bottom:1026.306000px;}
.y15a{bottom:1030.882800px;}
.y48{bottom:1035.012900px;}
.y103{bottom:1035.029400px;}
.y126{bottom:1035.035400px;}
.y1da{bottom:1041.035400px;}
.y9c{bottom:1042.526400px;}
.y20e{bottom:1044.035400px;}
.y20{bottom:1044.301500px;}
.yc5{bottom:1045.526400px;}
.y159{bottom:1051.887300px;}
.y47{bottom:1056.017400px;}
.y102{bottom:1056.033900px;}
.y1f{bottom:1062.297000px;}
.y9b{bottom:1063.530900px;}
.y22c{bottom:1063.535400px;}
.yc4{bottom:1066.530900px;}
.y158{bottom:1072.891800px;}
.y46{bottom:1077.021900px;}
.y101{bottom:1077.038400px;}
.y1e{bottom:1080.292500px;}
.y20d{bottom:1083.035400px;}
.y9a{bottom:1084.535400px;}
.yc3{bottom:1087.535400px;}
.y157{bottom:1093.896300px;}
.y45{bottom:1098.026400px;}
.y1d{bottom:1098.288000px;}
.y156{bottom:1114.900800px;}
.y1c{bottom:1116.283500px;}
.y44{bottom:1119.030900px;}
.y20c{bottom:1122.035400px;}
.y99{bottom:1126.535400px;}
.yc2{bottom:1129.535400px;}
.y155{bottom:1135.905300px;}
.y1b{bottom:1138.535400px;}
.y43{bottom:1140.035400px;}
.yed{bottom:1141.535400px;}
.y154{bottom:1156.909800px;}
.y153{bottom:1177.914300px;}
.y1a{bottom:1198.796700px;}
.y152{bottom:1198.918800px;}
.y151{bottom:1240.911300px;}
.y150{bottom:1261.915800px;}
.y14f{bottom:1282.920300px;}
.y14e{bottom:1303.924800px;}
.y14d{bottom:1324.929300px;}
.y14c{bottom:1345.933800px;}
.y14b{bottom:1366.938300px;}
.y14a{bottom:1387.942800px;}
.y149{bottom:1429.935300px;}
.y148{bottom:1450.939800px;}
.y147{bottom:1471.944300px;}
.y146{bottom:1492.948800px;}
.y145{bottom:1551.214050px;}
.ha{height:29.820000px;}
.h3{height:31.920000px;}
.h2{height:36.432000px;}
.h14{height:37.548000px;}
.h11{height:38.340000px;}
.h10{height:39.042000px;}
.h18{height:39.420000px;}
.h1a{height:40.334220px;}
.h19{height:40.355820px;}
.h4{height:41.040000px;}
.h12{height:41.148000px;}
.h8{height:42.600000px;}
.h13{height:42.912000px;}
.h1e{height:43.800000px;}
.h1f{height:45.600000px;}
.hf{height:46.860000px;}
.hc{height:48.276000px;}
.hb{height:52.560000px;}
.h9{height:53.640000px;}
.h7{height:54.780000px;}
.he{height:59.004000px;}
.h1d{height:77.436000px;}
.h17{height:78.084000px;}
.h15{height:82.296000px;}
.h6{height:85.200000px;}
.hd{height:91.080000px;}
.h16{height:96.012000px;}
.h5{height:113.850000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.h1c{height:1615.500000px;}
.h1b{height:1615.755000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x19{left:91.786200px;}
.x3{left:97.245300px;}
.x6{left:104.774250px;}
.xc{left:106.637250px;}
.x18{left:109.957200px;}
.x21{left:121.039350px;}
.x7{left:124.187250px;}
.xb{left:126.846750px;}
.x22{left:129.589350px;}
.x8{left:130.734750px;}
.x4{left:147.755850px;}
.x5{left:172.838250px;}
.x17{left:203.310300px;}
.x16{left:207.756000px;}
.x13{left:221.839200px;}
.x23{left:239.260050px;}
.x1c{left:259.031250px;}
.x1b{left:272.519100px;}
.x1e{left:291.524100px;}
.x1a{left:294.930300px;}
.x15{left:296.038650px;}
.xf{left:356.076750px;}
.xd{left:360.423750px;}
.x1f{left:374.967750px;}
.xe{left:454.437750px;}
.x9{left:463.077750px;}
.x10{left:468.113250px;}
.xa{left:551.894250px;}
.x11{left:563.085750px;}
.x12{left:699.165750px;}
.x1d{left:780.849300px;}
.x20{left:782.442300px;}
.x2{left:783.461550px;}
.x14{left:785.081400px;}
@media print{
.v2{vertical-align:-16.525867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.003200pt;}
.ls13{letter-spacing:-1.813333pt;}
.ls8{letter-spacing:-1.290667pt;}
.ls7{letter-spacing:-1.232000pt;}
.lsd{letter-spacing:-1.056000pt;}
.ls5{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.336000pt;}
.lsf{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.293333pt;}
.lsc{letter-spacing:0.410667pt;}
.ls3{letter-spacing:0.528000pt;}
.ls2{letter-spacing:0.586667pt;}
.ls6{letter-spacing:0.645333pt;}
.lse{letter-spacing:0.704000pt;}
.ls12{letter-spacing:0.768000pt;}
.ls11{letter-spacing:0.816000pt;}
.ls4{letter-spacing:0.880000pt;}
.lsb{letter-spacing:1.173333pt;}
.ls10{letter-spacing:3.456000pt;}
.ws29{word-spacing:-67.200000pt;}
.ws36{word-spacing:-21.333333pt;}
.ws4{word-spacing:-12.800000pt;}
.ws34{word-spacing:-12.437333pt;}
.ws33{word-spacing:-12.085333pt;}
.ws1d{word-spacing:-12.026667pt;}
.ws8{word-spacing:-11.909333pt;}
.ws1e{word-spacing:-11.792000pt;}
.ws5{word-spacing:-11.381333pt;}
.ws2{word-spacing:-10.666667pt;}
.ws48{word-spacing:-10.416000pt;}
.ws3a{word-spacing:-10.400000pt;}
.ws37{word-spacing:-10.346667pt;}
.wse{word-spacing:-10.090667pt;}
.ws14{word-spacing:-9.600000pt;}
.ws32{word-spacing:-8.544000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws1{word-spacing:-7.466667pt;}
.ws1b{word-spacing:-4.752000pt;}
.ws30{word-spacing:-2.640000pt;}
.ws44{word-spacing:-1.973333pt;}
.ws43{word-spacing:-1.920000pt;}
.ws40{word-spacing:-1.386667pt;}
.ws1f{word-spacing:-1.173333pt;}
.ws45{word-spacing:-1.066667pt;}
.ws42{word-spacing:-1.013333pt;}
.ws3b{word-spacing:-0.960000pt;}
.wsc{word-spacing:-0.880000pt;}
.ws4a{word-spacing:-0.768000pt;}
.ws35{word-spacing:-0.704000pt;}
.wsd{word-spacing:-0.645333pt;}
.ws9{word-spacing:-0.586667pt;}
.wsa{word-spacing:-0.528000pt;}
.ws23{word-spacing:-0.410667pt;}
.ws7{word-spacing:-0.293333pt;}
.ws3{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.117333pt;}
.ws41{word-spacing:0.266667pt;}
.ws3f{word-spacing:0.373333pt;}
.ws2a{word-spacing:0.410667pt;}
.ws26{word-spacing:0.528000pt;}
.ws3e{word-spacing:0.586667pt;}
.ws22{word-spacing:0.938667pt;}
.wsb{word-spacing:0.960000pt;}
.ws21{word-spacing:0.997333pt;}
.ws39{word-spacing:1.173333pt;}
.ws46{word-spacing:1.226667pt;}
.ws17{word-spacing:1.232000pt;}
.ws47{word-spacing:1.280000pt;}
.ws1c{word-spacing:1.290667pt;}
.ws38{word-spacing:1.973333pt;}
.ws3c{word-spacing:4.213333pt;}
.ws3d{word-spacing:4.266667pt;}
.ws24{word-spacing:4.986667pt;}
.ws27{word-spacing:5.397333pt;}
.ws28{word-spacing:5.514667pt;}
.ws31{word-spacing:5.808000pt;}
.ws25{word-spacing:6.160000pt;}
.ws18{word-spacing:6.746667pt;}
.ws19{word-spacing:8.976000pt;}
.ws20{word-spacing:9.504000pt;}
.ws6{word-spacing:32.000000pt;}
.ws49{word-spacing:46.977067pt;}
.ws2f{word-spacing:124.272000pt;}
.ws13{word-spacing:158.688000pt;}
.wsf{word-spacing:204.244800pt;}
.ws2b{word-spacing:222.676800pt;}
.ws2e{word-spacing:229.872000pt;}
.ws16{word-spacing:230.784000pt;}
.ws11{word-spacing:237.168000pt;}
.ws2c{word-spacing:239.088000pt;}
.ws12{word-spacing:242.064000pt;}
.ws15{word-spacing:251.424000pt;}
.ws2d{word-spacing:259.008000pt;}
.ws10{word-spacing:261.792000pt;}
._3e{margin-left:-51.920000pt;}
._3d{margin-left:-20.490667pt;}
._1a{margin-left:-6.922667pt;}
._10{margin-left:-5.297600pt;}
._2{margin-left:-4.404267pt;}
._12{margin-left:-3.496533pt;}
._1{margin-left:-2.542400pt;}
._0{margin-left:-0.970667pt;}
._7{width:1.204800pt;}
._4{width:2.414400pt;}
._5{width:3.427200pt;}
._6{width:4.368000pt;}
._8{width:5.539200pt;}
._3{width:6.864000pt;}
._c{width:8.283733pt;}
._e{width:9.615467pt;}
._14{width:10.841600pt;}
._d{width:12.741867pt;}
._f{width:14.085867pt;}
._13{width:15.085333pt;}
._b{width:16.004267pt;}
._11{width:17.385600pt;}
._18{width:19.008000pt;}
._16{width:20.902933pt;}
._17{width:21.906133pt;}
._9{width:24.548267pt;}
._a{width:25.760000pt;}
._2c{width:28.800000pt;}
._15{width:31.040000pt;}
._19{width:32.000000pt;}
._33{width:55.162667pt;}
._3f{width:65.648000pt;}
._34{width:75.792000pt;}
._20{width:77.050667pt;}
._1d{width:82.320000pt;}
._23{width:109.824000pt;}
._26{width:114.981333pt;}
._2b{width:125.568000pt;}
._2f{width:128.469333pt;}
._2a{width:137.098667pt;}
._30{width:150.480000pt;}
._36{width:154.176000pt;}
._2e{width:156.576000pt;}
._27{width:171.072000pt;}
._22{width:175.882667pt;}
._1f{width:189.120000pt;}
._1c{width:190.704000pt;}
._28{width:193.680000pt;}
._21{width:200.074667pt;}
._24{width:212.784000pt;}
._31{width:226.896000pt;}
._29{width:238.992000pt;}
._25{width:264.490667pt;}
._3a{width:267.669333pt;}
._1b{width:273.504000pt;}
._2d{width:305.280000pt;}
._35{width:306.336000pt;}
._37{width:317.040000pt;}
._1e{width:325.248000pt;}
._32{width:333.648000pt;}
._39{width:410.688000pt;}
._38{width:441.648000pt;}
._3c{width:539.520000pt;}
._3b{width:581.664000pt;}
.fs9{font-size:27.984000pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:96.000000pt;}
.fs4{font-size:106.666667pt;}
.fs3{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:36.036533pt;}
.y5{bottom:49.373867pt;}
.y7{bottom:55.039333pt;}
.y4{bottom:62.711200pt;}
.y3{bottom:76.048533pt;}
.y2{bottom:89.385867pt;}
.y1{bottom:102.719200pt;}
.yc1{bottom:139.834800pt;}
.y144{bottom:139.838667pt;}
.y231{bottom:139.842533pt;}
.y42{bottom:140.565867pt;}
.y1d9{bottom:141.310133pt;}
.y1c2{bottom:142.322000pt;}
.y11c{bottom:144.015467pt;}
.y100{bottom:148.920800pt;}
.yc0{bottom:153.172133pt;}
.y143{bottom:153.176000pt;}
.y6d{bottom:154.572800pt;}
.y1af{bottom:154.646133pt;}
.y20b{bottom:154.698133pt;}
.y18f{bottom:157.347467pt;}
.y41{bottom:159.236533pt;}
.y8d{bottom:159.952800pt;}
.y1d8{bottom:159.980800pt;}
.y1c1{bottom:160.992667pt;}
.y11b{bottom:162.686133pt;}
.y1f4{bottom:162.693733pt;}
.yec{bottom:163.888800pt;}
.y22b{bottom:165.364800pt;}
.y230{bottom:166.420133pt;}
.ybf{bottom:166.509467pt;}
.yff{bottom:167.591467pt;}
.y17b{bottom:169.330133pt;}
.y20a{bottom:172.031467pt;}
.y6c{bottom:173.243467pt;}
.y1ae{bottom:173.316800pt;}
.y18e{bottom:176.018133pt;}
.y40{bottom:177.907200pt;}
.y8c{bottom:178.623467pt;}
.y1c0{bottom:179.663333pt;}
.y11a{bottom:181.356800pt;}
.y1f3{bottom:181.364400pt;}
.yeb{bottom:182.559467pt;}
.yfe{bottom:186.262133pt;}
.y17a{bottom:188.000800pt;}
.y6b{bottom:191.914133pt;}
.y1bb{bottom:191.958133pt;}
.y18d{bottom:194.688800pt;}
.y3f{bottom:196.577867pt;}
.y8b{bottom:197.294133pt;}
.y1d7{bottom:197.307467pt;}
.y1bf{bottom:198.334000pt;}
.y119{bottom:200.027467pt;}
.y22a{bottom:200.031467pt;}
.yea{bottom:201.230133pt;}
.y179{bottom:206.671467pt;}
.y209{bottom:206.698133pt;}
.y142{bottom:207.674000pt;}
.y98{bottom:210.570133pt;}
.y6a{bottom:210.584800pt;}
.y1ba{bottom:210.628800pt;}
.y1ad{bottom:210.643467pt;}
.y8a{bottom:215.964800pt;}
.y1d6{bottom:215.978133pt;}
.y229{bottom:217.364800pt;}
.y1f2{bottom:218.697733pt;}
.y118{bottom:218.698133pt;}
.ybe{bottom:219.585333pt;}
.ye9{bottom:219.900800pt;}
.yfd{bottom:223.588800pt;}
.y208{bottom:224.031467pt;}
.y168{bottom:225.119200pt;}
.y178{bottom:225.342133pt;}
.y141{bottom:226.344667pt;}
.y19{bottom:228.122800pt;}
.y97{bottom:229.240800pt;}
.y69{bottom:229.255467pt;}
.y1b9{bottom:229.299467pt;}
.y1ac{bottom:229.314133pt;}
.y18c{bottom:232.015467pt;}
.y3e{bottom:233.904533pt;}
.y89{bottom:234.635467pt;}
.y1d5{bottom:234.648800pt;}
.y228{bottom:234.698133pt;}
.y1be{bottom:235.667333pt;}
.ye8{bottom:238.571467pt;}
.y22f{bottom:241.204800pt;}
.y207{bottom:241.364800pt;}
.ybd{bottom:241.744400pt;}
.yfc{bottom:242.259467pt;}
.y177{bottom:244.012800pt;}
.y140{bottom:245.015333pt;}
.y18{bottom:246.789467pt;}
.y96{bottom:247.911467pt;}
.y68{bottom:247.926133pt;}
.y1b8{bottom:247.970133pt;}
.y1ab{bottom:247.984800pt;}
.y18b{bottom:250.686133pt;}
.y3d{bottom:252.575200pt;}
.y88{bottom:253.306133pt;}
.y1d4{bottom:253.319467pt;}
.y117{bottom:256.031467pt;}
.ybc{bottom:256.408400pt;}
.y22e{bottom:257.200800pt;}
.ye7{bottom:257.242133pt;}
.yfb{bottom:260.930133pt;}
.y176{bottom:262.683467pt;}
.y13f{bottom:263.686000pt;}
.y17{bottom:265.456133pt;}
.y95{bottom:266.582133pt;}
.y67{bottom:266.596800pt;}
.y1b7{bottom:266.640800pt;}
.y1aa{bottom:266.655467pt;}
.y18a{bottom:269.356800pt;}
.y227{bottom:269.364800pt;}
.y3c{bottom:271.245867pt;}
.y87{bottom:271.976800pt;}
.y1d3{bottom:271.990133pt;}
.y22d{bottom:273.196800pt;}
.ye6{bottom:275.912800pt;}
.y206{bottom:276.031467pt;}
.yfa{bottom:279.600800pt;}
.ybb{bottom:280.504400pt;}
.y13e{bottom:282.356667pt;}
.y16{bottom:284.122800pt;}
.y94{bottom:285.252800pt;}
.y125{bottom:285.267467pt;}
.y1a9{bottom:285.326133pt;}
.y226{bottom:286.698133pt;}
.y189{bottom:288.027467pt;}
.y1f1{bottom:288.031067pt;}
.y3b{bottom:289.916533pt;}
.y86{bottom:290.647467pt;}
.y1d2{bottom:290.660800pt;}
.y205{bottom:293.364800pt;}
.ye5{bottom:294.583467pt;}
.yba{bottom:295.168400pt;}
.yf9{bottom:298.271467pt;}
.y1bd{bottom:299.668267pt;}
.y175{bottom:300.010133pt;}
.y13d{bottom:301.027333pt;}
.y66{bottom:303.923467pt;}
.y124{bottom:303.938133pt;}
.y1b6{bottom:303.967467pt;}
.y225{bottom:304.031467pt;}
.y188{bottom:306.698133pt;}
.y3a{bottom:308.587200pt;}
.y85{bottom:309.318133pt;}
.y1d1{bottom:309.331467pt;}
.ye4{bottom:313.254133pt;}
.yf8{bottom:316.942133pt;}
.y174{bottom:318.680800pt;}
.y15{bottom:319.056133pt;}
.yb9{bottom:319.264400pt;}
.y13c{bottom:319.698000pt;}
.y65{bottom:322.594133pt;}
.y123{bottom:322.608800pt;}
.y1b5{bottom:322.638133pt;}
.y1a8{bottom:322.652800pt;}
.y1f0{bottom:325.364400pt;}
.y39{bottom:327.257867pt;}
.y84{bottom:327.988800pt;}
.y116{bottom:327.998133pt;}
.y1d0{bottom:328.002133pt;}
.y204{bottom:328.031467pt;}
.ye3{bottom:331.924800pt;}
.yf7{bottom:335.612800pt;}
.y173{bottom:337.351467pt;}
.y14{bottom:337.722800pt;}
.y224{bottom:338.698133pt;}
.y64{bottom:341.264800pt;}
.y122{bottom:341.279467pt;}
.y1b4{bottom:341.308800pt;}
.y1a7{bottom:341.323467pt;}
.yb8{bottom:343.360400pt;}
.y187{bottom:344.031467pt;}
.y203{bottom:345.364800pt;}
.y38{bottom:345.928533pt;}
.y115{bottom:346.668800pt;}
.y1cf{bottom:346.672800pt;}
.ye2{bottom:350.595467pt;}
.yf6{bottom:354.283467pt;}
.y172{bottom:356.022133pt;}
.y223{bottom:356.031467pt;}
.y13{bottom:356.389467pt;}
.y13b{bottom:357.024667pt;}
.y63{bottom:359.935467pt;}
.y121{bottom:359.950133pt;}
.y1b3{bottom:359.979467pt;}
.y1a6{bottom:359.994133pt;}
.y37{bottom:364.599200pt;}
.y83{bottom:365.315467pt;}
.y114{bottom:365.339467pt;}
.yb7{bottom:367.456400pt;}
.ye1{bottom:369.266133pt;}
.yf5{bottom:372.954133pt;}
.y171{bottom:374.692800pt;}
.y12{bottom:375.056133pt;}
.y13a{bottom:375.695333pt;}
.y62{bottom:378.606133pt;}
.y120{bottom:378.620800pt;}
.y1b2{bottom:378.650133pt;}
.y202{bottom:380.031467pt;}
.yb6{bottom:382.120400pt;}
.y36{bottom:383.269867pt;}
.y82{bottom:383.986133pt;}
.y1ce{bottom:383.999467pt;}
.y113{bottom:384.010133pt;}
.ye0{bottom:387.936800pt;}
.y222{bottom:390.698133pt;}
.y139{bottom:394.366000pt;}
.y1ef{bottom:394.686133pt;}
.y61{bottom:397.276800pt;}
.y11f{bottom:397.291467pt;}
.y1a5{bottom:397.320800pt;}
.y201{bottom:397.364800pt;}
.y35{bottom:401.940533pt;}
.y81{bottom:402.656800pt;}
.y1cd{bottom:402.670133pt;}
.yb5{bottom:406.216400pt;}
.ydf{bottom:406.607467pt;}
.y221{bottom:408.031467pt;}
.y11{bottom:409.989467pt;}
.yf4{bottom:410.280800pt;}
.y170{bottom:412.019467pt;}
.y138{bottom:413.036667pt;}
.y1ee{bottom:413.356800pt;}
.y60{bottom:415.947467pt;}
.y186{bottom:415.962133pt;}
.y1a4{bottom:415.991467pt;}
.y34{bottom:420.611200pt;}
.y80{bottom:421.327467pt;}
.y112{bottom:421.336800pt;}
.y1cc{bottom:421.340800pt;}
.yde{bottom:425.278133pt;}
.y10{bottom:428.656133pt;}
.yf3{bottom:428.951467pt;}
.yb4{bottom:430.312400pt;}
.y16f{bottom:430.690133pt;}
.y137{bottom:431.707333pt;}
.y1ed{bottom:432.027467pt;}
.y200{bottom:432.031467pt;}
.y5f{bottom:434.618133pt;}
.y185{bottom:434.632800pt;}
.y1a3{bottom:434.662133pt;}
.y33{bottom:439.281867pt;}
.y7f{bottom:439.998133pt;}
.y111{bottom:440.007467pt;}
.y1cb{bottom:440.011467pt;}
.y220{bottom:442.698133pt;}
.ydd{bottom:443.948800pt;}
.yf{bottom:447.322800pt;}
.yf2{bottom:447.622133pt;}
.y16e{bottom:449.360800pt;}
.y1ff{bottom:449.364800pt;}
.y136{bottom:450.378000pt;}
.y1ec{bottom:450.698133pt;}
.y5e{bottom:453.288800pt;}
.y184{bottom:453.303467pt;}
.y1a2{bottom:453.332800pt;}
.y7e{bottom:458.668800pt;}
.y110{bottom:458.678133pt;}
.y1ca{bottom:458.682133pt;}
.yb3{bottom:460.031467pt;}
.ydc{bottom:462.619467pt;}
.ye{bottom:465.989467pt;}
.yf1{bottom:466.292800pt;}
.y16d{bottom:468.031467pt;}
.y135{bottom:469.048667pt;}
.y5d{bottom:471.959467pt;}
.y183{bottom:471.974133pt;}
.y32{bottom:476.615200pt;}
.y7d{bottom:477.339467pt;}
.y10f{bottom:477.348800pt;}
.y1c9{bottom:477.352800pt;}
.y21f{bottom:477.364800pt;}
.y1fe{bottom:484.031467pt;}
.yf0{bottom:484.963467pt;}
.y134{bottom:487.719333pt;}
.y1eb{bottom:488.031467pt;}
.y93{bottom:490.615467pt;}
.y11e{bottom:490.630133pt;}
.y182{bottom:490.644800pt;}
.y1a1{bottom:490.659467pt;}
.y7c{bottom:496.010133pt;}
.y10e{bottom:496.019467pt;}
.y1c8{bottom:496.023467pt;}
.yb2{bottom:497.279467pt;}
.ydb{bottom:499.946133pt;}
.y1fd{bottom:501.364800pt;}
.y16c{bottom:505.364800pt;}
.y133{bottom:506.390000pt;}
.yd{bottom:508.481733pt;}
.y5c{bottom:509.286133pt;}
.y11d{bottom:509.300800pt;}
.y1a0{bottom:509.330133pt;}
.y21e{bottom:512.031467pt;}
.y7b{bottom:514.680800pt;}
.y10d{bottom:514.690133pt;}
.y1c7{bottom:514.694133pt;}
.yb1{bottom:515.950133pt;}
.yda{bottom:518.616800pt;}
.yef{bottom:522.296800pt;}
.y132{bottom:525.060667pt;}
.y5b{bottom:527.956800pt;}
.y181{bottom:527.971467pt;}
.y19f{bottom:528.000800pt;}
.y21d{bottom:529.364800pt;}
.y7a{bottom:533.351467pt;}
.y10c{bottom:533.360800pt;}
.y1c6{bottom:533.364800pt;}
.yb0{bottom:534.620800pt;}
.y1fc{bottom:536.031467pt;}
.yd9{bottom:537.287467pt;}
.yc{bottom:540.481733pt;}
.y131{bottom:543.731333pt;}
.y5a{bottom:546.627467pt;}
.y180{bottom:546.642133pt;}
.y19e{bottom:546.671467pt;}
.y79{bottom:552.022133pt;}
.y10b{bottom:552.031467pt;}
.yaf{bottom:553.291467pt;}
.yd8{bottom:555.958133pt;}
.y1ea{bottom:557.330133pt;}
.y21c{bottom:564.031467pt;}
.y59{bottom:565.298133pt;}
.y17f{bottom:565.312800pt;}
.y1c5{bottom:570.698133pt;}
.yae{bottom:571.962133pt;}
.yd7{bottom:574.628800pt;}
.y1e9{bottom:576.000800pt;}
.yb{bottom:580.040800pt;}
.y130{bottom:581.064667pt;}
.y21b{bottom:581.364800pt;}
.y58{bottom:583.968800pt;}
.y17e{bottom:583.983467pt;}
.y19d{bottom:583.998133pt;}
.y31{bottom:584.205733pt;}
.y1fb{bottom:588.031467pt;}
.y78{bottom:589.348800pt;}
.y10a{bottom:589.364800pt;}
.yad{bottom:590.632800pt;}
.yd6{bottom:593.299467pt;}
.y1e8{bottom:594.671467pt;}
.y30{bottom:600.205733pt;}
.y57{bottom:602.639467pt;}
.y17d{bottom:602.654133pt;}
.y19c{bottom:602.668800pt;}
.y77{bottom:608.019467pt;}
.yac{bottom:609.303467pt;}
.yd5{bottom:611.970133pt;}
.yee{bottom:612.964400pt;}
.y1e7{bottom:613.342133pt;}
.y21a{bottom:616.031467pt;}
.y167{bottom:617.732267pt;}
.ya{bottom:620.040800pt;}
.y56{bottom:621.310133pt;}
.y17c{bottom:621.324800pt;}
.y19b{bottom:621.339467pt;}
.y1fa{bottom:624.031467pt;}
.y76{bottom:626.690133pt;}
.yab{bottom:627.974133pt;}
.yd4{bottom:630.640800pt;}
.y1e6{bottom:632.012800pt;}
.y219{bottom:633.364800pt;}
.y2f{bottom:634.100400pt;}
.y55{bottom:639.980800pt;}
.y1c4{bottom:639.995467pt;}
.y19a{bottom:640.010133pt;}
.y12f{bottom:645.065600pt;}
.y75{bottom:645.360800pt;}
.yaa{bottom:646.644800pt;}
.yd3{bottom:649.311467pt;}
.y2e{bottom:650.096400pt;}
.y1e5{bottom:650.683467pt;}
.y92{bottom:658.651467pt;}
.y1c3{bottom:658.666133pt;}
.y1b1{bottom:658.680800pt;}
.y9{bottom:660.040800pt;}
.y74{bottom:664.031467pt;}
.ya9{bottom:665.315467pt;}
.y2d{bottom:666.092400pt;}
.yd2{bottom:667.982133pt;}
.y218{bottom:668.031467pt;}
.y12e{bottom:670.620133pt;}
.y166{bottom:673.636267pt;}
.y54{bottom:677.307467pt;}
.y91{bottom:677.322133pt;}
.y199{bottom:677.336800pt;}
.y1b0{bottom:677.351467pt;}
.y2c{bottom:682.088400pt;}
.ya8{bottom:683.986133pt;}
.y217{bottom:685.364800pt;}
.yd1{bottom:686.652800pt;}
.y1e4{bottom:688.010133pt;}
.y165{bottom:692.306933pt;}
.y1f9{bottom:693.352800pt;}
.y53{bottom:695.978133pt;}
.y90{bottom:695.992800pt;}
.y198{bottom:696.007467pt;}
.y2b{bottom:698.084400pt;}
.y8{bottom:700.040800pt;}
.y73{bottom:701.364800pt;}
.y12d{bottom:701.520133pt;}
.ya7{bottom:702.656800pt;}
.yd0{bottom:705.323467pt;}
.y1e3{bottom:706.680800pt;}
.y164{bottom:710.977600pt;}
.y1f8{bottom:712.023467pt;}
.y2a{bottom:714.080400pt;}
.y52{bottom:714.648800pt;}
.y109{bottom:714.663467pt;}
.y197{bottom:714.678133pt;}
.y1bc{bottom:714.698133pt;}
.y216{bottom:720.031467pt;}
.ycf{bottom:723.994133pt;}
.y1e2{bottom:725.351467pt;}
.y163{bottom:729.648267pt;}
.y29{bottom:730.076400pt;}
.y1f7{bottom:730.694133pt;}
.y12c{bottom:732.420133pt;}
.y51{bottom:733.319467pt;}
.y108{bottom:733.334133pt;}
.y196{bottom:733.348800pt;}
.y215{bottom:737.364800pt;}
.ya6{bottom:739.983467pt;}
.yce{bottom:742.664800pt;}
.y1e1{bottom:744.022133pt;}
.y28{bottom:746.072400pt;}
.y162{bottom:748.318933pt;}
.y1f6{bottom:749.364800pt;}
.y50{bottom:751.990133pt;}
.y107{bottom:752.004800pt;}
.y195{bottom:752.019467pt;}
.y214{bottom:754.698133pt;}
.ya5{bottom:758.654133pt;}
.ycd{bottom:761.335467pt;}
.y12b{bottom:763.320133pt;}
.y27{bottom:765.851867pt;}
.y161{bottom:766.989600pt;}
.y72{bottom:770.646133pt;}
.y4f{bottom:770.660800pt;}
.y106{bottom:770.675467pt;}
.ya4{bottom:777.324800pt;}
.y16b{bottom:779.991467pt;}
.ycc{bottom:780.006133pt;}
.y1e0{bottom:781.348800pt;}
.y160{bottom:785.660267pt;}
.y1f5{bottom:786.698133pt;}
.y71{bottom:789.316800pt;}
.y4e{bottom:789.331467pt;}
.y194{bottom:789.346133pt;}
.y213{bottom:789.364800pt;}
.y12a{bottom:794.217733pt;}
.ya3{bottom:795.995467pt;}
.y16a{bottom:798.662133pt;}
.ycb{bottom:798.676800pt;}
.y1df{bottom:800.019467pt;}
.y15f{bottom:804.330933pt;}
.y212{bottom:806.698133pt;}
.y70{bottom:807.987467pt;}
.y4d{bottom:808.002133pt;}
.y193{bottom:808.016800pt;}
.y26{bottom:814.385200pt;}
.ya2{bottom:814.666133pt;}
.y169{bottom:817.332800pt;}
.y1de{bottom:818.690133pt;}
.y15e{bottom:823.001600pt;}
.y129{bottom:825.110667pt;}
.y6f{bottom:826.658133pt;}
.y4c{bottom:826.672800pt;}
.y192{bottom:826.687467pt;}
.y25{bottom:830.385200pt;}
.ya1{bottom:833.336800pt;}
.yca{bottom:836.003467pt;}
.y1dd{bottom:837.360800pt;}
.y211{bottom:841.364800pt;}
.y6e{bottom:845.328800pt;}
.y8f{bottom:845.343467pt;}
.y191{bottom:845.358133pt;}
.ya0{bottom:852.007467pt;}
.yc9{bottom:854.674133pt;}
.y128{bottom:856.010667pt;}
.y1dc{bottom:856.031467pt;}
.y210{bottom:858.698133pt;}
.y15d{bottom:860.328267pt;}
.y4b{bottom:863.999467pt;}
.y8e{bottom:864.014133pt;}
.y190{bottom:864.028800pt;}
.y24{bottom:864.284000pt;}
.y9f{bottom:870.678133pt;}
.yc8{bottom:873.344800pt;}
.y15c{bottom:878.998933pt;}
.y23{bottom:880.280000pt;}
.y4a{bottom:882.670133pt;}
.y105{bottom:882.684800pt;}
.y127{bottom:886.910667pt;}
.y9e{bottom:889.348800pt;}
.yc7{bottom:892.015467pt;}
.y1db{bottom:893.364800pt;}
.y22{bottom:896.276000pt;}
.y15b{bottom:897.669600pt;}
.y49{bottom:901.340800pt;}
.y104{bottom:901.355467pt;}
.y9d{bottom:908.019467pt;}
.yc6{bottom:910.686133pt;}
.y20f{bottom:910.698133pt;}
.y21{bottom:912.272000pt;}
.y15a{bottom:916.340267pt;}
.y48{bottom:920.011467pt;}
.y103{bottom:920.026133pt;}
.y126{bottom:920.031467pt;}
.y1da{bottom:925.364800pt;}
.y9c{bottom:926.690133pt;}
.y20e{bottom:928.031467pt;}
.y20{bottom:928.268000pt;}
.yc5{bottom:929.356800pt;}
.y159{bottom:935.010933pt;}
.y47{bottom:938.682133pt;}
.y102{bottom:938.696800pt;}
.y1f{bottom:944.264000pt;}
.y9b{bottom:945.360800pt;}
.y22c{bottom:945.364800pt;}
.yc4{bottom:948.027467pt;}
.y158{bottom:953.681600pt;}
.y46{bottom:957.352800pt;}
.y101{bottom:957.367467pt;}
.y1e{bottom:960.260000pt;}
.y20d{bottom:962.698133pt;}
.y9a{bottom:964.031467pt;}
.yc3{bottom:966.698133pt;}
.y157{bottom:972.352267pt;}
.y45{bottom:976.023467pt;}
.y1d{bottom:976.256000pt;}
.y156{bottom:991.022933pt;}
.y1c{bottom:992.252000pt;}
.y44{bottom:994.694133pt;}
.y20c{bottom:997.364800pt;}
.y99{bottom:1001.364800pt;}
.yc2{bottom:1004.031467pt;}
.y155{bottom:1009.693600pt;}
.y1b{bottom:1012.031467pt;}
.y43{bottom:1013.364800pt;}
.yed{bottom:1014.698133pt;}
.y154{bottom:1028.364267pt;}
.y153{bottom:1047.034933pt;}
.y1a{bottom:1065.597067pt;}
.y152{bottom:1065.705600pt;}
.y151{bottom:1103.032267pt;}
.y150{bottom:1121.702933pt;}
.y14f{bottom:1140.373600pt;}
.y14e{bottom:1159.044267pt;}
.y14d{bottom:1177.714933pt;}
.y14c{bottom:1196.385600pt;}
.y14b{bottom:1215.056267pt;}
.y14a{bottom:1233.726933pt;}
.y149{bottom:1271.053600pt;}
.y148{bottom:1289.724267pt;}
.y147{bottom:1308.394933pt;}
.y146{bottom:1327.065600pt;}
.y145{bottom:1378.856933pt;}
.ha{height:26.506667pt;}
.h3{height:28.373333pt;}
.h2{height:32.384000pt;}
.h14{height:33.376000pt;}
.h11{height:34.080000pt;}
.h10{height:34.704000pt;}
.h18{height:35.040000pt;}
.h1a{height:35.852640pt;}
.h19{height:35.871840pt;}
.h4{height:36.480000pt;}
.h12{height:36.576000pt;}
.h8{height:37.866667pt;}
.h13{height:38.144000pt;}
.h1e{height:38.933333pt;}
.h1f{height:40.533333pt;}
.hf{height:41.653333pt;}
.hc{height:42.912000pt;}
.hb{height:46.720000pt;}
.h9{height:47.680000pt;}
.h7{height:48.693333pt;}
.he{height:52.448000pt;}
.h1d{height:68.832000pt;}
.h17{height:69.408000pt;}
.h15{height:73.152000pt;}
.h6{height:75.733333pt;}
.hd{height:80.960000pt;}
.h16{height:85.344000pt;}
.h5{height:101.200000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.h1c{height:1436.000000pt;}
.h1b{height:1436.226667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x19{left:81.587733pt;}
.x3{left:86.440267pt;}
.x6{left:93.132667pt;}
.xc{left:94.788667pt;}
.x18{left:97.739733pt;}
.x21{left:107.590533pt;}
.x7{left:110.388667pt;}
.xb{left:112.752667pt;}
.x22{left:115.190533pt;}
.x8{left:116.208667pt;}
.x4{left:131.338533pt;}
.x5{left:153.634000pt;}
.x17{left:180.720267pt;}
.x16{left:184.672000pt;}
.x13{left:197.190400pt;}
.x23{left:212.675600pt;}
.x1c{left:230.250000pt;}
.x1b{left:242.239200pt;}
.x1e{left:259.132533pt;}
.x1a{left:262.160267pt;}
.x15{left:263.145467pt;}
.xf{left:316.512667pt;}
.xd{left:320.376667pt;}
.x1f{left:333.304667pt;}
.xe{left:403.944667pt;}
.x9{left:411.624667pt;}
.x10{left:416.100667pt;}
.xa{left:490.572667pt;}
.x11{left:500.520667pt;}
.x12{left:621.480667pt;}
.x1d{left:694.088267pt;}
.x20{left:695.504267pt;}
.x2{left:696.410267pt;}
.x14{left:697.850133pt;}
}




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