
    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_2f454a2c2dfa000cac0dfb93.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.887695;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_46e1e33e06303744ddf1e9f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_be3ccec1467ba1896e443044.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8139a9c9bc671e16ba8e0138.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_9cec1fdb7f5a3afb7f00e0c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.689453;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_2e9f162760efc2e89e78095c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.689453;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_ead7a5b91a73b29cf7b5456b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.083008;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_2ce8cf8f895bb2b22cc99fde.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_19555770fea74b3d46a76813.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910527;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_e5165176ec414edfd0518ae9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.810059;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_2da3bc8cb983a3ac562bf72a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_9026bdcea96edf9ecc2188ae.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.732000;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_a278052367a43748e1baa710.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.010000;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_68cca9d43204281b8c8e0d76.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.978000;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_31f4acdffc8eae737f28b46c.woff2')format("woff");}.fff{font-family:fff;line-height:0.000000;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_5b4444beb2dc4b8e5466debc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.762207;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_fcd78ebd618d85752dcfb43b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.762207;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_13238a4fb61dc048099e790c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.762207;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);}
.v2{vertical-align:-29.999700px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.600000px;}
.v1{vertical-align:25.800000px;}
.v3{vertical-align:30.000240px;}
.ls13{letter-spacing:-1.668000px;}
.ls11{letter-spacing:-0.021600px;}
.ls12{letter-spacing:-0.007200px;}
.ls22{letter-spacing:-0.005400px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.192000px;}
.ls4{letter-spacing:0.249600px;}
.ls2{letter-spacing:0.264000px;}
.ls5{letter-spacing:0.318000px;}
.ls3{letter-spacing:0.858000px;}
.lsa{letter-spacing:2.118000px;}
.lsf{letter-spacing:5.983200px;}
.lsc{letter-spacing:5.994000px;}
.lsb{letter-spacing:5.995200px;}
.lsd{letter-spacing:6.002400px;}
.ls9{letter-spacing:6.318000px;}
.ls6{letter-spacing:9.318000px;}
.ls7{letter-spacing:13.518000px;}
.ls1c{letter-spacing:16.496460px;}
.ls10{letter-spacing:16.848000px;}
.ls18{letter-spacing:17.415210px;}
.ls15{letter-spacing:17.417490px;}
.ls1e{letter-spacing:17.418060px;}
.ls21{letter-spacing:18.327000px;}
.ls20{letter-spacing:18.330600px;}
.ls1f{letter-spacing:18.336000px;}
.lse{letter-spacing:22.001760px;}
.ls8{letter-spacing:47.718000px;}
.ls17{letter-spacing:311.139630px;}
.ls1b{letter-spacing:311.163000px;}
.ls1a{letter-spacing:312.189000px;}
.ls1d{letter-spacing:346.332000px;}
.ls14{letter-spacing:349.467000px;}
.ls23{letter-spacing:381.273000px;}
.ls16{letter-spacing:381.476490px;}
.ls19{letter-spacing:381.501000px;}
.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;}
}
.ws17{word-spacing:-397.347000px;}
.ws24{word-spacing:-397.119000px;}
.ws1b{word-spacing:-365.313000px;}
.ws27{word-spacing:-362.178000px;}
.ws1e{word-spacing:-288.762000px;}
.ws1f{word-spacing:-38.949120px;}
.ws2e{word-spacing:-30.309120px;}
.wsa{word-spacing:-28.512000px;}
.ws7{word-spacing:-21.606000px;}
.wse{word-spacing:-20.016000px;}
.ws1{word-spacing:-18.282000px;}
.wsd{word-spacing:-17.172000px;}
.ws2d{word-spacing:-16.680000px;}
.ws8{word-spacing:-16.500000px;}
.ws1d{word-spacing:-15.846000px;}
.ws23{word-spacing:-15.012000px;}
.ws21{word-spacing:-15.006600px;}
.ws3{word-spacing:-10.636800px;}
.ws4{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws2f{word-spacing:1.512000px;}
.ws20{word-spacing:1.596000px;}
.ws2c{word-spacing:1.625400px;}
.ws30{word-spacing:1.680000px;}
.ws10{word-spacing:1.964880px;}
.wsf{word-spacing:1.982160px;}
.ws12{word-spacing:1.990080px;}
.ws13{word-spacing:1.992240px;}
.ws11{word-spacing:1.998000px;}
.ws14{word-spacing:2.016000px;}
.wsb{word-spacing:3.003480px;}
.wsc{word-spacing:10.497000px;}
.ws9{word-spacing:10.530000px;}
.ws6{word-spacing:11.880000px;}
.ws5{word-spacing:12.474000px;}
.ws2a{word-spacing:18.301680px;}
.ws1c{word-spacing:30.924210px;}
.ws19{word-spacing:30.929340px;}
.ws18{word-spacing:30.951000px;}
.ws28{word-spacing:45.414000px;}
.ws16{word-spacing:46.278000px;}
.ws22{word-spacing:114.950880px;}
.ws25{word-spacing:120.042000px;}
.ws15{word-spacing:120.960000px;}
.ws29{word-spacing:154.980000px;}
.ws2b{word-spacing:169.884000px;}
.ws1a{word-spacing:295.293630px;}
.ws26{word-spacing:295.469760px;}
.ws2{word-spacing:1716.240000px;}
._8f{margin-left:-71.421000px;}
._70{margin-left:-70.395000px;}
._75{margin-left:-69.312000px;}
._72{margin-left:-66.177000px;}
._7a{margin-left:-37.278000px;}
._71{margin-left:-35.169000px;}
._74{margin-left:-32.034000px;}
._68{margin-left:-9.480000px;}
._66{margin-left:-8.382000px;}
._2{margin-left:-7.296000px;}
._5{margin-left:-5.610000px;}
._1{margin-left:-4.320000px;}
._3{margin-left:-3.264000px;}
._a{margin-left:-2.250000px;}
._0{margin-left:-1.152000px;}
._4{width:1.050000px;}
._3d{width:2.700000px;}
._5e{width:3.804000px;}
._58{width:5.652000px;}
._5f{width:6.798000px;}
._60{width:7.866000px;}
._61{width:9.222000px;}
._5c{width:10.428000px;}
._5d{width:11.616000px;}
._57{width:12.870000px;}
._29{width:14.040000px;}
._56{width:15.774000px;}
._64{width:16.896000px;}
._5b{width:19.938000px;}
._5a{width:21.846000px;}
._59{width:23.034000px;}
._63{width:24.420000px;}
._65{width:26.334000px;}
._67{width:38.340000px;}
._62{width:40.140000px;}
._69{width:43.890000px;}
._6e{width:46.797000px;}
._9b{width:50.978400px;}
._91{width:56.862000px;}
._8c{width:58.158000px;}
._1b{width:89.514000px;}
._a2{width:95.838000px;}
._1f{width:97.140000px;}
._a5{width:108.753300px;}
._6d{width:127.866000px;}
._90{width:129.330000px;}
._a1{width:130.620000px;}
._8d{width:132.335100px;}
._8b{width:135.270000px;}
._94{width:138.972000px;}
._92{width:144.720000px;}
._98{width:147.906000px;}
._6b{width:149.958000px;}
._6c{width:160.829820px;}
._22{width:167.184000px;}
._95{width:174.042000px;}
._93{width:175.200840px;}
._1e{width:194.118000px;}
._50{width:222.990000px;}
._4e{width:227.094000px;}
._4f{width:230.958000px;}
._88{width:255.507900px;}
._97{width:272.106000px;}
._e{width:293.106000px;}
._6a{width:302.346000px;}
._a0{width:305.100000px;}
._80{width:312.197550px;}
._9f{width:315.203160px;}
._6{width:343.470000px;}
._9e{width:346.131930px;}
._7e{width:349.453320px;}
._46{width:378.426000px;}
._79{width:381.476490px;}
._3f{width:389.976000px;}
._a4{width:396.252000px;}
._17{width:399.714000px;}
._7b{width:401.062800px;}
._96{width:418.526190px;}
._a3{width:427.626000px;}
._11{width:447.510000px;}
._1a{width:452.058000px;}
._9c{width:463.469190px;}
._9d{width:506.774190px;}
._d{width:550.044000px;}
._12{width:572.448000px;}
._89{width:586.506900px;}
._1d{width:589.122000px;}
._87{width:591.179190px;}
._81{width:626.093400px;}
._7f{width:630.843210px;}
._25{width:669.126000px;}
._86{width:675.254190px;}
._9a{width:718.997190px;}
._82{width:747.902400px;}
._49{width:758.658000px;}
._99{width:784.268400px;}
._83{width:789.356400px;}
._4a{width:810.072000px;}
._4b{width:823.476000px;}
._85{width:836.240400px;}
._7c{width:867.904800px;}
._78{width:869.078460px;}
._6f{width:882.130800px;}
._f{width:893.118000px;}
._8{width:920.664000px;}
._4c{width:927.354000px;}
._4d{width:955.428000px;}
._27{width:958.734000px;}
._28{width:989.748000px;}
._51{width:1020.216000px;}
._21{width:1037.946000px;}
._36{width:1045.206000px;}
._42{width:1046.952000px;}
._8a{width:1060.148400px;}
._84{width:1065.446190px;}
._41{width:1088.478000px;}
._18{width:1093.212000px;}
._77{width:1096.018800px;}
._26{width:1098.126000px;}
._8e{width:1102.868400px;}
._47{width:1118.544000px;}
._2b{width:1166.052000px;}
._7d{width:1167.734460px;}
._19{width:1172.634000px;}
._76{width:1209.277800px;}
._10{width:1238.502000px;}
._37{width:1254.228000px;}
._45{width:1287.510000px;}
._73{width:1327.324800px;}
._2d{width:1364.382000px;}
._44{width:1374.522000px;}
._2a{width:1376.790000px;}
._3a{width:1404.510000px;}
._40{width:1444.596000px;}
._16{width:1447.788000px;}
._7{width:1465.224000px;}
._20{width:1480.710000px;}
._2e{width:1489.122000px;}
._31{width:1499.814000px;}
._c{width:1506.462000px;}
._13{width:1513.842000px;}
._52{width:1516.266000px;}
._48{width:1568.730000px;}
._24{width:1576.026000px;}
._53{width:1599.264000px;}
._30{width:1606.272000px;}
._38{width:1635.576000px;}
._34{width:1646.532000px;}
._39{width:1665.144000px;}
._b{width:1668.102000px;}
._23{width:1685.784000px;}
._32{width:1690.554000px;}
._1c{width:1697.718000px;}
._3c{width:1712.730000px;}
._3b{width:1738.272000px;}
._2f{width:1745.532000px;}
._35{width:1756.554000px;}
._15{width:1762.938000px;}
._2c{width:1840.770000px;}
._55{width:1859.568000px;}
._3e{width:1866.444000px;}
._9{width:1876.656000px;}
._43{width:1891.308000px;}
._14{width:1902.198000px;}
._33{width:1921.554000px;}
._54{width:1974.306000px;}
.fc7{color:transparent;}
.fc4{color:rgb(153,51,153);}
.fc3{color:rgb(255,51,255);}
.fc1{color:rgb(192,0,0);}
.fc6{color:rgb(35,31,32);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(28,28,28);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:6.000000px;}
.fs4{font-size:38.400000px;}
.fsb{font-size:51.840000px;}
.fsd{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fse{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs7{font-size:81.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs6{font-size:108.000000px;}
.fs9{font-size:120.000000px;}
.fs8{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y1f5{bottom:11.880000px;}
.y1f4{bottom:12.960000px;}
.y1f3{bottom:14.040000px;}
.y1f2{bottom:16.200000px;}
.y1b{bottom:18.300000px;}
.y216{bottom:19.440000px;}
.y215{bottom:20.520000px;}
.y214{bottom:23.760000px;}
.y23b{bottom:25.920000px;}
.y1f6{bottom:27.000000px;}
.y23a{bottom:35.640000px;}
.y3a{bottom:63.450000px;}
.y5f{bottom:77.700000px;}
.y213{bottom:77.812500px;}
.ya6{bottom:81.900000px;}
.ybd{bottom:84.150000px;}
.yb8{bottom:85.800000px;}
.y22{bottom:87.300000px;}
.y2e{bottom:87.750000px;}
.y23{bottom:88.950000px;}
.y9a{bottom:90.000000px;}
.ybe{bottom:90.300000px;}
.y237{bottom:90.541050px;}
.y82{bottom:90.600000px;}
.y9b{bottom:90.750000px;}
.y94{bottom:91.950000px;}
.y3b{bottom:92.250000px;}
.y93{bottom:93.450000px;}
.y2d{bottom:95.100000px;}
.y212{bottom:113.062875px;}
.ya5{bottom:116.100000px;}
.y239{bottom:116.150700px;}
.y5d{bottom:117.600000px;}
.ybf{bottom:117.750000px;}
.y81{bottom:119.400000px;}
.y211{bottom:130.312500px;}
.y238{bottom:134.286150px;}
.ybc{bottom:144.450000px;}
.y5c{bottom:146.100000px;}
.y80{bottom:148.200000px;}
.y19{bottom:152.250000px;}
.yb7{bottom:153.000000px;}
.y13c{bottom:158.850000px;}
.y19e{bottom:159.300000px;}
.y1b9{bottom:161.250000px;}
.y15a{bottom:162.750000px;}
.y12b{bottom:164.400000px;}
.y1dd{bottom:165.000000px;}
.y16c{bottom:165.300000px;}
.y210{bottom:165.562725px;}
.y14f{bottom:168.750000px;}
.y7f{bottom:168.900000px;}
.ya4{bottom:172.950000px;}
.yef{bottom:174.000000px;}
.y5b{bottom:174.450000px;}
.y1b5{bottom:174.900000px;}
.y164{bottom:176.850000px;}
.ycf{bottom:177.600000px;}
.y1b3{bottom:179.700000px;}
.y18{bottom:180.750000px;}
.yb6{bottom:181.500000px;}
.y20f{bottom:182.812350px;}
.y10c{bottom:185.850000px;}
.y9{bottom:186.150000px;}
.y179{bottom:186.600000px;}
.y19d{bottom:187.800000px;}
.y1c9{bottom:189.300000px;}
.y159{bottom:191.250000px;}
.y1dc{bottom:193.500000px;}
.y16b{bottom:193.650000px;}
.y14e{bottom:197.100000px;}
.y1b7{bottom:200.100000px;}
.ybb{bottom:201.300000px;}
.yee{bottom:202.500000px;}
.y5a{bottom:202.950000px;}
.y183{bottom:203.850000px;}
.y236{bottom:205.130100px;}
.y163{bottom:205.350000px;}
.yce{bottom:205.950000px;}
.y1b2{bottom:208.200000px;}
.y17{bottom:209.100000px;}
.yb5{bottom:209.850000px;}
.y10b{bottom:214.350000px;}
.y178{bottom:215.100000px;}
.y19c{bottom:216.150000px;}
.y1c8{bottom:217.800000px;}
.y20e{bottom:218.062680px;}
.y158{bottom:219.600000px;}
.y12a{bottom:221.250000px;}
.y1db{bottom:221.850000px;}
.y16a{bottom:222.150000px;}
.y235{bottom:222.380190px;}
.y19f{bottom:223.500000px;}
.y14d{bottom:225.600000px;}
.y7e{bottom:227.100000px;}
.ya3{bottom:229.800000px;}
.y13b{bottom:229.950000px;}
.yed{bottom:230.850000px;}
.y59{bottom:231.300000px;}
.y182{bottom:232.350000px;}
.y162{bottom:233.700000px;}
.y19b{bottom:235.200000px;}
.y20d{bottom:235.312590px;}
.y1b1{bottom:236.550000px;}
.y16{bottom:237.600000px;}
.yb4{bottom:238.350000px;}
.y5e{bottom:239.400000px;}
.y234{bottom:239.630100px;}
.y10a{bottom:242.700000px;}
.y177{bottom:243.450000px;}
.y1c7{bottom:246.150000px;}
.y157{bottom:248.100000px;}
.y129{bottom:249.600000px;}
.y1da{bottom:250.350000px;}
.y169{bottom:250.500000px;}
.y20c{bottom:252.562500px;}
.y14c{bottom:253.950000px;}
.y7d{bottom:255.600000px;}
.ya2{bottom:258.150000px;}
.y13a{bottom:258.450000px;}
.yec{bottom:259.350000px;}
.y58{bottom:259.800000px;}
.y181{bottom:260.700000px;}
.y161{bottom:262.200000px;}
.ycd{bottom:262.800000px;}
.yf0{bottom:264.300000px;}
.y1b0{bottom:265.050000px;}
.y15{bottom:265.950000px;}
.y109{bottom:271.200000px;}
.y156{bottom:276.450000px;}
.y128{bottom:278.100000px;}
.y176{bottom:278.850000px;}
.y168{bottom:279.000000px;}
.y233{bottom:279.380100px;}
.y14b{bottom:282.450000px;}
.y8{bottom:282.750000px;}
.y7c{bottom:283.950000px;}
.ya1{bottom:286.650000px;}
.y139{bottom:286.800000px;}
.yeb{bottom:287.700000px;}
.y20b{bottom:287.812733px;}
.y180{bottom:289.200000px;}
.y57{bottom:289.500000px;}
.y160{bottom:290.550000px;}
.ycc{bottom:291.300000px;}
.y232{bottom:291.380100px;}
.y1af{bottom:293.400000px;}
.y14{bottom:294.450000px;}
.y145{bottom:298.650000px;}
.y108{bottom:299.550000px;}
.y1c6{bottom:303.000000px;}
.y155{bottom:304.950000px;}
.y20a{bottom:305.062500px;}
.y127{bottom:306.450000px;}
.y167{bottom:307.350000px;}
.y19a{bottom:310.050000px;}
.y17b{bottom:310.350000px;}
.y1ef{bottom:310.499820px;}
.y14a{bottom:310.800000px;}
.y7b{bottom:312.450000px;}
.yb3{bottom:313.200000px;}
.ya0{bottom:315.000000px;}
.y138{bottom:315.300000px;}
.yea{bottom:316.200000px;}
.y17f{bottom:317.550000px;}
.y56{bottom:319.200000px;}
.ycb{bottom:319.650000px;}
.y1ae{bottom:321.900000px;}
.y13{bottom:322.800000px;}
.y119{bottom:325.350000px;}
.y144{bottom:327.150000px;}
.y107{bottom:328.050000px;}
.y7{bottom:331.050000px;}
.y1c5{bottom:331.500000px;}
.y154{bottom:333.300000px;}
.y126{bottom:334.950000px;}
.y1d9{bottom:335.550000px;}
.y175{bottom:335.700000px;}
.y166{bottom:335.850000px;}
.y1ee{bottom:337.499820px;}
.y199{bottom:338.400000px;}
.y17a{bottom:338.850000px;}
.y209{bottom:340.312500px;}
.y7a{bottom:340.800000px;}
.yba{bottom:343.500000px;}
.y137{bottom:343.650000px;}
.ye9{bottom:344.550000px;}
.y17e{bottom:346.050000px;}
.y15f{bottom:347.400000px;}
.y55{bottom:347.700000px;}
.yca{bottom:348.150000px;}
.y231{bottom:348.380100px;}
.y1ad{bottom:350.250000px;}
.yb2{bottom:350.550000px;}
.y12{bottom:351.300000px;}
.y118{bottom:353.700000px;}
.y143{bottom:355.500000px;}
.y106{bottom:356.400000px;}
.y1c4{bottom:359.850000px;}
.y230{bottom:360.380032px;}
.y125{bottom:363.300000px;}
.y1d8{bottom:364.050000px;}
.y174{bottom:364.200000px;}
.y1ed{bottom:364.499820px;}
.y149{bottom:367.650000px;}
.y79{bottom:369.300000px;}
.y9f{bottom:371.850000px;}
.y136{bottom:372.150000px;}
.y22f{bottom:372.380100px;}
.ye8{bottom:373.050000px;}
.y17d{bottom:374.400000px;}
.y208{bottom:375.562500px;}
.y54{bottom:376.050000px;}
.y1ac{bottom:378.750000px;}
.y11{bottom:379.650000px;}
.y117{bottom:382.200000px;}
.y142{bottom:384.000000px;}
.y105{bottom:384.900000px;}
.yb1{bottom:388.050000px;}
.y1c3{bottom:388.350000px;}
.y153{bottom:390.150000px;}
.y1ec{bottom:391.499820px;}
.y124{bottom:391.800000px;}
.y173{bottom:392.550000px;}
.y165{bottom:392.700000px;}
.y78{bottom:397.650000px;}
.y9e{bottom:400.350000px;}
.y135{bottom:400.500000px;}
.ye7{bottom:401.400000px;}
.y198{bottom:404.250000px;}
.y53{bottom:404.550000px;}
.y22e{bottom:406.880100px;}
.y1ab{bottom:407.100000px;}
.y10{bottom:408.150000px;}
.y116{bottom:410.550000px;}
.y207{bottom:410.812500px;}
.y17c{bottom:411.900000px;}
.y141{bottom:412.350000px;}
.y104{bottom:413.250000px;}
.y22b{bottom:415.880220px;}
.y1c2{bottom:416.700000px;}
.y22d{bottom:418.880190px;}
.y123{bottom:420.150000px;}
.y172{bottom:421.050000px;}
.y148{bottom:424.500000px;}
.yb0{bottom:425.400000px;}
.y77{bottom:426.150000px;}
.y229{bottom:427.880100px;}
.y9d{bottom:428.700000px;}
.y134{bottom:429.000000px;}
.ye6{bottom:429.900000px;}
.y22c{bottom:430.880205px;}
.y1eb{bottom:431.999820px;}
.y197{bottom:432.750000px;}
.y52{bottom:432.900000px;}
.y1aa{bottom:435.600000px;}
.yf{bottom:436.500000px;}
.y115{bottom:439.050000px;}
.y140{bottom:440.850000px;}
.y103{bottom:441.750000px;}
.y22a{bottom:442.880085px;}
.y1c1{bottom:445.200000px;}
.y206{bottom:446.062350px;}
.y152{bottom:447.000000px;}
.y122{bottom:448.650000px;}
.y1d7{bottom:449.250000px;}
.y147{bottom:453.000000px;}
.y76{bottom:454.500000px;}
.yb9{bottom:457.200000px;}
.y133{bottom:457.350000px;}
.ye5{bottom:458.250000px;}
.y1ea{bottom:459.000000px;}
.y196{bottom:461.100000px;}
.y51{bottom:461.400000px;}
.yaf{bottom:462.900000px;}
.y114{bottom:467.400000px;}
.y102{bottom:470.100000px;}
.y1c0{bottom:473.550000px;}
.y15e{bottom:474.000000px;}
.y151{bottom:475.500000px;}
.y121{bottom:477.000000px;}
.y1d6{bottom:477.750000px;}
.y171{bottom:477.900000px;}
.y205{bottom:481.312500px;}
.y146{bottom:481.350000px;}
.y75{bottom:483.000000px;}
.y9c{bottom:485.550000px;}
.y132{bottom:485.850000px;}
.y1e9{bottom:485.999640px;}
.ye4{bottom:486.750000px;}
.y195{bottom:489.600000px;}
.y50{bottom:489.750000px;}
.y1a9{bottom:492.450000px;}
.y113{bottom:495.900000px;}
.y13f{bottom:497.700000px;}
.y101{bottom:498.600000px;}
.y228{bottom:499.880100px;}
.y1bf{bottom:502.050000px;}
.y15d{bottom:502.350000px;}
.y150{bottom:503.850000px;}
.y120{bottom:505.500000px;}
.y1d5{bottom:506.100000px;}
.y170{bottom:506.250000px;}
.y74{bottom:511.350000px;}
.y1e8{bottom:512.999820px;}
.y92{bottom:514.050000px;}
.ye3{bottom:515.100000px;}
.y204{bottom:516.562500px;}
.y194{bottom:517.950000px;}
.y4f{bottom:518.250000px;}
.y112{bottom:524.250000px;}
.y13e{bottom:526.050000px;}
.y100{bottom:526.950000px;}
.y1be{bottom:530.400000px;}
.y15c{bottom:530.850000px;}
.y227{bottom:532.880100px;}
.y1d4{bottom:534.600000px;}
.y16f{bottom:534.750000px;}
.yae{bottom:537.750000px;}
.y73{bottom:539.850000px;}
.y1e7{bottom:539.999820px;}
.y91{bottom:542.400000px;}
.y131{bottom:542.700000px;}
.ye2{bottom:543.600000px;}
.y193{bottom:546.450000px;}
.y4e{bottom:546.600000px;}
.y1a8{bottom:549.300000px;}
.y2c{bottom:551.100000px;}
.y203{bottom:551.812500px;}
.y111{bottom:552.750000px;}
.y13d{bottom:554.550000px;}
.yff{bottom:555.450000px;}
.y1bd{bottom:558.900000px;}
.y11f{bottom:562.350000px;}
.y226{bottom:568.130100px;}
.y72{bottom:568.200000px;}
.y90{bottom:570.900000px;}
.y130{bottom:571.050000px;}
.ye1{bottom:571.950000px;}
.y4d{bottom:575.100000px;}
.y1a7{bottom:577.650000px;}
.y1e6{bottom:580.500000px;}
.y110{bottom:581.100000px;}
.yfe{bottom:583.800000px;}
.y202{bottom:587.062500px;}
.y1bc{bottom:587.250000px;}
.y15b{bottom:587.700000px;}
.y2b{bottom:589.050000px;}
.y11e{bottom:590.700000px;}
.y1d3{bottom:591.450000px;}
.y16e{bottom:591.600000px;}
.y71{bottom:596.700000px;}
.y8f{bottom:599.250000px;}
.y12f{bottom:599.550000px;}
.ye0{bottom:600.450000px;}
.y21{bottom:601.350000px;}
.y225{bottom:603.380047px;}
.y4c{bottom:603.450000px;}
.y1e5{bottom:607.500000px;}
.y39{bottom:608.700000px;}
.yfd{bottom:612.300000px;}
.yad{bottom:612.600000px;}
.y1bb{bottom:615.750000px;}
.y11d{bottom:619.200000px;}
.y1d2{bottom:619.800000px;}
.y224{bottom:620.630100px;}
.y201{bottom:622.312500px;}
.y70{bottom:625.050000px;}
.y2a{bottom:627.000000px;}
.y8e{bottom:627.750000px;}
.yf3{bottom:628.800000px;}
.y20{bottom:629.850000px;}
.y4b{bottom:631.950000px;}
.ye{bottom:632.700000px;}
.y1e4{bottom:634.500000px;}
.y10f{bottom:637.950000px;}
.y1a6{bottom:643.500000px;}
.y11c{bottom:647.550000px;}
.y16d{bottom:648.450000px;}
.y6{bottom:649.050000px;}
.y192{bottom:649.650000px;}
.yac{bottom:649.950000px;}
.y1b8{bottom:651.900000px;}
.y6f{bottom:653.550000px;}
.y223{bottom:655.880100px;}
.y8d{bottom:656.100000px;}
.y12e{bottom:656.400000px;}
.ydf{bottom:657.300000px;}
.y200{bottom:657.562500px;}
.y1f{bottom:658.200000px;}
.y4a{bottom:660.300000px;}
.y29{bottom:664.950000px;}
.y38{bottom:665.550000px;}
.y10e{bottom:666.450000px;}
.yfc{bottom:669.150000px;}
.y1ba{bottom:672.600000px;}
.yd{bottom:674.250000px;}
.y1e3{bottom:675.000000px;}
.y11b{bottom:676.050000px;}
.y191{bottom:678.150000px;}
.y1a5{bottom:681.000000px;}
.y6e{bottom:681.900000px;}
.y8c{bottom:684.600000px;}
.y12d{bottom:684.750000px;}
.yf2{bottom:685.650000px;}
.y1e{bottom:686.700000px;}
.yab{bottom:687.450000px;}
.y49{bottom:688.800000px;}
.y5{bottom:690.600000px;}
.y1ff{bottom:692.812500px;}
.y1b6{bottom:693.150000px;}
.y10d{bottom:694.800000px;}
.y1e2{bottom:702.000000px;}
.y28{bottom:702.900000px;}
.y222{bottom:703.130100px;}
.y190{bottom:706.500000px;}
.y6d{bottom:710.400000px;}
.y8b{bottom:712.950000px;}
.y12c{bottom:713.250000px;}
.yde{bottom:714.150000px;}
.y1d{bottom:715.050000px;}
.y1ca{bottom:716.550000px;}
.y48{bottom:717.150000px;}
.y1a4{bottom:718.350000px;}
.y37{bottom:722.400000px;}
.yaa{bottom:724.800000px;}
.yfb{bottom:726.000000px;}
.y1fe{bottom:728.062500px;}
.y1e1{bottom:729.000000px;}
.y11a{bottom:732.900000px;}
.y18f{bottom:735.000000px;}
.y6c{bottom:738.750000px;}
.y27{bottom:740.850000px;}
.y8a{bottom:741.450000px;}
.yf1{bottom:742.500000px;}
.y47{bottom:745.650000px;}
.y221{bottom:747.000000px;}
.yfa{bottom:754.350000px;}
.yc{bottom:757.200000px;}
.y1fd{bottom:763.312500px;}
.y18e{bottom:763.350000px;}
.y6b{bottom:767.250000px;}
.y1e0{bottom:769.500000px;}
.y89{bottom:769.800000px;}
.yc9{bottom:769.950000px;}
.ydd{bottom:771.000000px;}
.y4{bottom:773.550000px;}
.y46{bottom:774.000000px;}
.y26{bottom:778.800000px;}
.y36{bottom:779.250000px;}
.y220{bottom:782.249888px;}
.yf9{bottom:782.850000px;}
.y18d{bottom:791.850000px;}
.y1a3{bottom:793.200000px;}
.y6a{bottom:795.600000px;}
.y88{bottom:798.300000px;}
.y1fc{bottom:798.562500px;}
.yb{bottom:798.600000px;}
.ydc{bottom:799.350000px;}
.y21f{bottom:799.499797px;}
.ya9{bottom:799.650000px;}
.y45{bottom:802.500000px;}
.y35{bottom:807.600000px;}
.yf8{bottom:811.200000px;}
.y3{bottom:814.950000px;}
.y21e{bottom:816.749850px;}
.y18c{bottom:820.200000px;}
.y69{bottom:824.100000px;}
.y87{bottom:826.650000px;}
.yc8{bottom:826.800000px;}
.ydb{bottom:827.850000px;}
.y1a2{bottom:830.700000px;}
.y44{bottom:830.850000px;}
.y1fb{bottom:833.812350px;}
.y25{bottom:835.800000px;}
.y34{bottom:836.100000px;}
.ya8{bottom:837.150000px;}
.yf7{bottom:839.700000px;}
.ya{bottom:840.150000px;}
.y68{bottom:852.450000px;}
.y86{bottom:855.150000px;}
.yda{bottom:856.200000px;}
.y2{bottom:856.500000px;}
.y18b{bottom:857.700000px;}
.y43{bottom:860.550000px;}
.y1d1{bottom:865.650000px;}
.yf6{bottom:868.050000px;}
.y21d{bottom:868.500000px;}
.y1fa{bottom:869.062350px;}
.yc1{bottom:873.600000px;}
.ya7{bottom:874.500000px;}
.y67{bottom:880.950000px;}
.y85{bottom:883.500000px;}
.yc7{bottom:883.650000px;}
.yd9{bottom:884.700000px;}
.y33{bottom:892.950000px;}
.y1d0{bottom:894.150000px;}
.yf5{bottom:896.550000px;}
.y1f9{bottom:908.812500px;}
.y42{bottom:909.300000px;}
.y66{bottom:910.650000px;}
.y84{bottom:912.000000px;}
.yd8{bottom:913.050000px;}
.y1cf{bottom:922.500000px;}
.y18a{bottom:923.550000px;}
.y1f8{bottom:923.812350px;}
.y21c{bottom:925.500000px;}
.y41{bottom:937.800000px;}
.y83{bottom:940.350000px;}
.yc6{bottom:940.500000px;}
.y21b{bottom:940.500045px;}
.yd7{bottom:941.550000px;}
.y1a1{bottom:942.900000px;}
.y24{bottom:949.650000px;}
.y32{bottom:949.800000px;}
.y1ce{bottom:951.000000px;}
.y189{bottom:951.900000px;}
.yf4{bottom:953.400000px;}
.y21a{bottom:955.500022px;}
.y1df{bottom:957.228600px;}
.y1c{bottom:963.750000px;}
.y40{bottom:966.150000px;}
.y65{bottom:968.850000px;}
.yd6{bottom:969.900000px;}
.y219{bottom:970.500000px;}
.yc0{bottom:978.900000px;}
.y1cd{bottom:979.350000px;}
.y188{bottom:980.400000px;}
.y1f7{bottom:983.812350px;}
.y99{bottom:987.750000px;}
.y3f{bottom:994.650000px;}
.y64{bottom:997.200000px;}
.yc5{bottom:997.350000px;}
.yd5{bottom:998.400000px;}
.y31{bottom:1006.650000px;}
.y1cc{bottom:1007.850000px;}
.y218{bottom:1008.000000px;}
.y187{bottom:1008.750000px;}
.y1f0{bottom:1012.500000px;}
.y217{bottom:1015.500000px;}
.y98{bottom:1016.100000px;}
.y1a0{bottom:1017.750000px;}
.y3e{bottom:1023.000000px;}
.y63{bottom:1025.700000px;}
.yd4{bottom:1026.750000px;}
.y1cb{bottom:1026.900000px;}
.y186{bottom:1037.250000px;}
.y97{bottom:1044.600000px;}
.y1a{bottom:1048.350000px;}
.y3d{bottom:1051.500000px;}
.y62{bottom:1054.050000px;}
.yc4{bottom:1054.200000px;}
.yd3{bottom:1055.250000px;}
.y30{bottom:1063.500000px;}
.y185{bottom:1065.600000px;}
.y96{bottom:1072.950000px;}
.y3c{bottom:1081.200000px;}
.y61{bottom:1082.550000px;}
.yd2{bottom:1083.600000px;}
.yc3{bottom:1093.800000px;}
.y95{bottom:1101.450000px;}
.y1b4{bottom:1101.900000px;}
.y184{bottom:1103.100000px;}
.y60{bottom:1110.900000px;}
.yd1{bottom:1112.100000px;}
.y1de{bottom:1115.891400px;}
.yc2{bottom:1137.600000px;}
.y2f{bottom:1139.400000px;}
.yd0{bottom:1140.450000px;}
.y1f1{bottom:2688.000000px;}
.h13{height:0.000000px;}
.h14{height:38.880000px;}
.h16{height:40.932000px;}
.h1c{height:40.932540px;}
.h15{height:43.206000px;}
.h1e{height:43.206210px;}
.h1d{height:43.206450px;}
.h19{height:43.206570px;}
.h17{height:43.207140px;}
.h18{height:43.208850px;}
.h9{height:44.601562px;}
.h21{height:45.480000px;}
.h20{height:45.482400px;}
.h6{height:48.049805px;}
.h4{height:48.082031px;}
.h7{height:48.656250px;}
.h5{height:52.453125px;}
.h8{height:53.775000px;}
.h11{height:54.576000px;}
.hb{height:56.786133px;}
.hc{height:57.588867px;}
.h22{height:60.480000px;}
.h3{height:61.195312px;}
.hd{height:62.824219px;}
.h1a{height:64.800000px;}
.ha{height:68.059570px;}
.h2{height:69.890625px;}
.h1f{height:70.932240px;}
.h1b{height:70.932780px;}
.hf{height:81.864000px;}
.h12{height:90.960000px;}
.h10{height:230.688000px;}
.he{height:1188.000000px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.w1{width:918.000000px;}
.x31{left:-1500.000000px;}
.x0{left:0.000000px;}
.x34{left:30.609750px;}
.x36{left:38.531400px;}
.x37{left:62.109802px;}
.x3c{left:67.500000px;}
.x45{left:69.000000px;}
.x2f{left:94.500000px;}
.x3d{left:98.999835px;}
.x18{left:128.100000px;}
.x10{left:129.600000px;}
.x21{left:130.650000px;}
.x12{left:131.700000px;}
.x29{left:134.850000px;}
.x28{left:136.350000px;}
.x13{left:141.150000px;}
.xa{left:143.250000px;}
.x2a{left:151.650000px;}
.x38{left:154.182900px;}
.x2c{left:157.650000px;}
.x2b{left:163.050000px;}
.xc{left:170.250000px;}
.x2e{left:177.781650px;}
.x22{left:183.900000px;}
.x7{left:186.150000px;}
.x5{left:193.500000px;}
.x4{left:196.350000px;}
.x2{left:211.350000px;}
.x30{left:239.165100px;}
.x3{left:255.450000px;}
.x16{left:264.600000px;}
.x1{left:294.750000px;}
.x25{left:296.700000px;}
.x24{left:330.750000px;}
.x20{left:342.750000px;}
.x6{left:361.200000px;}
.x26{left:372.150000px;}
.xd{left:373.950000px;}
.x23{left:382.500000px;}
.x1f{left:383.850000px;}
.x17{left:395.400000px;}
.x35{left:397.996350px;}
.x46{left:404.337000px;}
.x1c{left:412.350000px;}
.x33{left:416.880000px;}
.x27{left:419.100000px;}
.x15{left:423.000000px;}
.x39{left:424.440000px;}
.x1b{left:426.750000px;}
.x32{left:428.760000px;}
.x3e{left:430.699950px;}
.x19{left:432.450000px;}
.x3a{left:435.126750px;}
.x8{left:436.950000px;}
.x44{left:438.889950px;}
.xb{left:441.300000px;}
.x9{left:443.700000px;}
.x11{left:445.500000px;}
.x2d{left:446.550000px;}
.x1a{left:447.600000px;}
.xe{left:449.100000px;}
.x1e{left:450.450000px;}
.x14{left:452.250000px;}
.x1d{left:453.300000px;}
.x3f{left:462.012300px;}
.xf{left:463.500000px;}
.x3b{left:737.415900px;}
.x43{left:803.903400px;}
.x41{left:807.398460px;}
.x40{left:811.239750px;}
.x42{left:822.405060px;}
@media print{
.v2{vertical-align:-26.666400pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.200000pt;}
.v1{vertical-align:22.933333pt;}
.v3{vertical-align:26.666880pt;}
.ls13{letter-spacing:-1.482667pt;}
.ls11{letter-spacing:-0.019200pt;}
.ls12{letter-spacing:-0.006400pt;}
.ls22{letter-spacing:-0.004800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.170667pt;}
.ls4{letter-spacing:0.221867pt;}
.ls2{letter-spacing:0.234667pt;}
.ls5{letter-spacing:0.282667pt;}
.ls3{letter-spacing:0.762667pt;}
.lsa{letter-spacing:1.882667pt;}
.lsf{letter-spacing:5.318400pt;}
.lsc{letter-spacing:5.328000pt;}
.lsb{letter-spacing:5.329067pt;}
.lsd{letter-spacing:5.335467pt;}
.ls9{letter-spacing:5.616000pt;}
.ls6{letter-spacing:8.282667pt;}
.ls7{letter-spacing:12.016000pt;}
.ls1c{letter-spacing:14.663520pt;}
.ls10{letter-spacing:14.976000pt;}
.ls18{letter-spacing:15.480187pt;}
.ls15{letter-spacing:15.482213pt;}
.ls1e{letter-spacing:15.482720pt;}
.ls21{letter-spacing:16.290667pt;}
.ls20{letter-spacing:16.293867pt;}
.ls1f{letter-spacing:16.298667pt;}
.lse{letter-spacing:19.557120pt;}
.ls8{letter-spacing:42.416000pt;}
.ls17{letter-spacing:276.568560pt;}
.ls1b{letter-spacing:276.589333pt;}
.ls1a{letter-spacing:277.501333pt;}
.ls1d{letter-spacing:307.850667pt;}
.ls14{letter-spacing:310.637333pt;}
.ls23{letter-spacing:338.909333pt;}
.ls16{letter-spacing:339.090213pt;}
.ls19{letter-spacing:339.112000pt;}
.ws17{word-spacing:-353.197333pt;}
.ws24{word-spacing:-352.994667pt;}
.ws1b{word-spacing:-324.722667pt;}
.ws27{word-spacing:-321.936000pt;}
.ws1e{word-spacing:-256.677333pt;}
.ws1f{word-spacing:-34.621440pt;}
.ws2e{word-spacing:-26.941440pt;}
.wsa{word-spacing:-25.344000pt;}
.ws7{word-spacing:-19.205333pt;}
.wse{word-spacing:-17.792000pt;}
.ws1{word-spacing:-16.250667pt;}
.wsd{word-spacing:-15.264000pt;}
.ws2d{word-spacing:-14.826667pt;}
.ws8{word-spacing:-14.666667pt;}
.ws1d{word-spacing:-14.085333pt;}
.ws23{word-spacing:-13.344000pt;}
.ws21{word-spacing:-13.339200pt;}
.ws3{word-spacing:-9.454933pt;}
.ws4{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws2f{word-spacing:1.344000pt;}
.ws20{word-spacing:1.418667pt;}
.ws2c{word-spacing:1.444800pt;}
.ws30{word-spacing:1.493333pt;}
.ws10{word-spacing:1.746560pt;}
.wsf{word-spacing:1.761920pt;}
.ws12{word-spacing:1.768960pt;}
.ws13{word-spacing:1.770880pt;}
.ws11{word-spacing:1.776000pt;}
.ws14{word-spacing:1.792000pt;}
.wsb{word-spacing:2.669760pt;}
.wsc{word-spacing:9.330667pt;}
.ws9{word-spacing:9.360000pt;}
.ws6{word-spacing:10.560000pt;}
.ws5{word-spacing:11.088000pt;}
.ws2a{word-spacing:16.268160pt;}
.ws1c{word-spacing:27.488187pt;}
.ws19{word-spacing:27.492747pt;}
.ws18{word-spacing:27.512000pt;}
.ws28{word-spacing:40.368000pt;}
.ws16{word-spacing:41.136000pt;}
.ws22{word-spacing:102.178560pt;}
.ws25{word-spacing:106.704000pt;}
.ws15{word-spacing:107.520000pt;}
.ws29{word-spacing:137.760000pt;}
.ws2b{word-spacing:151.008000pt;}
.ws1a{word-spacing:262.483227pt;}
.ws26{word-spacing:262.639787pt;}
.ws2{word-spacing:1525.546667pt;}
._8f{margin-left:-63.485333pt;}
._70{margin-left:-62.573333pt;}
._75{margin-left:-61.610667pt;}
._72{margin-left:-58.824000pt;}
._7a{margin-left:-33.136000pt;}
._71{margin-left:-31.261333pt;}
._74{margin-left:-28.474667pt;}
._68{margin-left:-8.426667pt;}
._66{margin-left:-7.450667pt;}
._2{margin-left:-6.485333pt;}
._5{margin-left:-4.986667pt;}
._1{margin-left:-3.840000pt;}
._3{margin-left:-2.901333pt;}
._a{margin-left:-2.000000pt;}
._0{margin-left:-1.024000pt;}
._4{width:0.933333pt;}
._3d{width:2.400000pt;}
._5e{width:3.381333pt;}
._58{width:5.024000pt;}
._5f{width:6.042667pt;}
._60{width:6.992000pt;}
._61{width:8.197333pt;}
._5c{width:9.269333pt;}
._5d{width:10.325333pt;}
._57{width:11.440000pt;}
._29{width:12.480000pt;}
._56{width:14.021333pt;}
._64{width:15.018667pt;}
._5b{width:17.722667pt;}
._5a{width:19.418667pt;}
._59{width:20.474667pt;}
._63{width:21.706667pt;}
._65{width:23.408000pt;}
._67{width:34.080000pt;}
._62{width:35.680000pt;}
._69{width:39.013333pt;}
._6e{width:41.597333pt;}
._9b{width:45.314133pt;}
._91{width:50.544000pt;}
._8c{width:51.696000pt;}
._1b{width:79.568000pt;}
._a2{width:85.189333pt;}
._1f{width:86.346667pt;}
._a5{width:96.669600pt;}
._6d{width:113.658667pt;}
._90{width:114.960000pt;}
._a1{width:116.106667pt;}
._8d{width:117.631200pt;}
._8b{width:120.240000pt;}
._94{width:123.530667pt;}
._92{width:128.640000pt;}
._98{width:131.472000pt;}
._6b{width:133.296000pt;}
._6c{width:142.959840pt;}
._22{width:148.608000pt;}
._95{width:154.704000pt;}
._93{width:155.734080pt;}
._1e{width:172.549333pt;}
._50{width:198.213333pt;}
._4e{width:201.861333pt;}
._4f{width:205.296000pt;}
._88{width:227.118133pt;}
._97{width:241.872000pt;}
._e{width:260.538667pt;}
._6a{width:268.752000pt;}
._a0{width:271.200000pt;}
._80{width:277.508933pt;}
._9f{width:280.180587pt;}
._6{width:305.306667pt;}
._9e{width:307.672827pt;}
._7e{width:310.625173pt;}
._46{width:336.378667pt;}
._79{width:339.090213pt;}
._3f{width:346.645333pt;}
._a4{width:352.224000pt;}
._17{width:355.301333pt;}
._7b{width:356.500267pt;}
._96{width:372.023280pt;}
._a3{width:380.112000pt;}
._11{width:397.786667pt;}
._1a{width:401.829333pt;}
._9c{width:411.972613pt;}
._9d{width:450.465947pt;}
._d{width:488.928000pt;}
._12{width:508.842667pt;}
._89{width:521.339467pt;}
._1d{width:523.664000pt;}
._87{width:525.492613pt;}
._81{width:556.527467pt;}
._7f{width:560.749520pt;}
._25{width:594.778667pt;}
._86{width:600.225947pt;}
._9a{width:639.108613pt;}
._82{width:664.802133pt;}
._49{width:674.362667pt;}
._99{width:697.127467pt;}
._83{width:701.650133pt;}
._4a{width:720.064000pt;}
._4b{width:731.978667pt;}
._85{width:743.324800pt;}
._7c{width:771.470933pt;}
._78{width:772.514187pt;}
._6f{width:784.116267pt;}
._f{width:793.882667pt;}
._8{width:818.368000pt;}
._4c{width:824.314667pt;}
._4d{width:849.269333pt;}
._27{width:852.208000pt;}
._28{width:879.776000pt;}
._51{width:906.858667pt;}
._21{width:922.618667pt;}
._36{width:929.072000pt;}
._42{width:930.624000pt;}
._8a{width:942.354133pt;}
._84{width:947.063280pt;}
._41{width:967.536000pt;}
._18{width:971.744000pt;}
._77{width:974.238933pt;}
._26{width:976.112000pt;}
._8e{width:980.327467pt;}
._47{width:994.261333pt;}
._2b{width:1036.490667pt;}
._7d{width:1037.986187pt;}
._19{width:1042.341333pt;}
._76{width:1074.913600pt;}
._10{width:1100.890667pt;}
._37{width:1114.869333pt;}
._45{width:1144.453333pt;}
._73{width:1179.844267pt;}
._2d{width:1212.784000pt;}
._44{width:1221.797333pt;}
._2a{width:1223.813333pt;}
._3a{width:1248.453333pt;}
._40{width:1284.085333pt;}
._16{width:1286.922667pt;}
._7{width:1302.421333pt;}
._20{width:1316.186667pt;}
._2e{width:1323.664000pt;}
._31{width:1333.168000pt;}
._c{width:1339.077333pt;}
._13{width:1345.637333pt;}
._52{width:1347.792000pt;}
._48{width:1394.426667pt;}
._24{width:1400.912000pt;}
._53{width:1421.568000pt;}
._30{width:1427.797333pt;}
._38{width:1453.845333pt;}
._34{width:1463.584000pt;}
._39{width:1480.128000pt;}
._b{width:1482.757333pt;}
._23{width:1498.474667pt;}
._32{width:1502.714667pt;}
._1c{width:1509.082667pt;}
._3c{width:1522.426667pt;}
._3b{width:1545.130667pt;}
._2f{width:1551.584000pt;}
._35{width:1561.381333pt;}
._15{width:1567.056000pt;}
._2c{width:1636.240000pt;}
._55{width:1652.949333pt;}
._3e{width:1659.061333pt;}
._9{width:1668.138667pt;}
._43{width:1681.162667pt;}
._14{width:1690.842667pt;}
._33{width:1708.048000pt;}
._54{width:1754.938667pt;}
.fsa{font-size:5.333333pt;}
.fs4{font-size:34.133333pt;}
.fsb{font-size:46.080000pt;}
.fsd{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fse{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs7{font-size:72.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs6{font-size:96.000000pt;}
.fs9{font-size:106.666667pt;}
.fs8{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y1f5{bottom:10.560000pt;}
.y1f4{bottom:11.520000pt;}
.y1f3{bottom:12.480000pt;}
.y1f2{bottom:14.400000pt;}
.y1b{bottom:16.266667pt;}
.y216{bottom:17.280000pt;}
.y215{bottom:18.240000pt;}
.y214{bottom:21.120000pt;}
.y23b{bottom:23.040000pt;}
.y1f6{bottom:24.000000pt;}
.y23a{bottom:31.680000pt;}
.y3a{bottom:56.400000pt;}
.y5f{bottom:69.066667pt;}
.y213{bottom:69.166667pt;}
.ya6{bottom:72.800000pt;}
.ybd{bottom:74.800000pt;}
.yb8{bottom:76.266667pt;}
.y22{bottom:77.600000pt;}
.y2e{bottom:78.000000pt;}
.y23{bottom:79.066667pt;}
.y9a{bottom:80.000000pt;}
.ybe{bottom:80.266667pt;}
.y237{bottom:80.480933pt;}
.y82{bottom:80.533333pt;}
.y9b{bottom:80.666667pt;}
.y94{bottom:81.733333pt;}
.y3b{bottom:82.000000pt;}
.y93{bottom:83.066667pt;}
.y2d{bottom:84.533333pt;}
.y212{bottom:100.500333pt;}
.ya5{bottom:103.200000pt;}
.y239{bottom:103.245067pt;}
.y5d{bottom:104.533333pt;}
.ybf{bottom:104.666667pt;}
.y81{bottom:106.133333pt;}
.y211{bottom:115.833333pt;}
.y238{bottom:119.365467pt;}
.ybc{bottom:128.400000pt;}
.y5c{bottom:129.866667pt;}
.y80{bottom:131.733333pt;}
.y19{bottom:135.333333pt;}
.yb7{bottom:136.000000pt;}
.y13c{bottom:141.200000pt;}
.y19e{bottom:141.600000pt;}
.y1b9{bottom:143.333333pt;}
.y15a{bottom:144.666667pt;}
.y12b{bottom:146.133333pt;}
.y1dd{bottom:146.666667pt;}
.y16c{bottom:146.933333pt;}
.y210{bottom:147.166867pt;}
.y14f{bottom:150.000000pt;}
.y7f{bottom:150.133333pt;}
.ya4{bottom:153.733333pt;}
.yef{bottom:154.666667pt;}
.y5b{bottom:155.066667pt;}
.y1b5{bottom:155.466667pt;}
.y164{bottom:157.200000pt;}
.ycf{bottom:157.866667pt;}
.y1b3{bottom:159.733333pt;}
.y18{bottom:160.666667pt;}
.yb6{bottom:161.333333pt;}
.y20f{bottom:162.499867pt;}
.y10c{bottom:165.200000pt;}
.y9{bottom:165.466667pt;}
.y179{bottom:165.866667pt;}
.y19d{bottom:166.933333pt;}
.y1c9{bottom:168.266667pt;}
.y159{bottom:170.000000pt;}
.y1dc{bottom:172.000000pt;}
.y16b{bottom:172.133333pt;}
.y14e{bottom:175.200000pt;}
.y1b7{bottom:177.866667pt;}
.ybb{bottom:178.933333pt;}
.yee{bottom:180.000000pt;}
.y5a{bottom:180.400000pt;}
.y183{bottom:181.200000pt;}
.y236{bottom:182.337867pt;}
.y163{bottom:182.533333pt;}
.yce{bottom:183.066667pt;}
.y1b2{bottom:185.066667pt;}
.y17{bottom:185.866667pt;}
.yb5{bottom:186.533333pt;}
.y10b{bottom:190.533333pt;}
.y178{bottom:191.200000pt;}
.y19c{bottom:192.133333pt;}
.y1c8{bottom:193.600000pt;}
.y20e{bottom:193.833493pt;}
.y158{bottom:195.200000pt;}
.y12a{bottom:196.666667pt;}
.y1db{bottom:197.200000pt;}
.y16a{bottom:197.466667pt;}
.y235{bottom:197.671280pt;}
.y19f{bottom:198.666667pt;}
.y14d{bottom:200.533333pt;}
.y7e{bottom:201.866667pt;}
.ya3{bottom:204.266667pt;}
.y13b{bottom:204.400000pt;}
.yed{bottom:205.200000pt;}
.y59{bottom:205.600000pt;}
.y182{bottom:206.533333pt;}
.y162{bottom:207.733333pt;}
.y19b{bottom:209.066667pt;}
.y20d{bottom:209.166747pt;}
.y1b1{bottom:210.266667pt;}
.y16{bottom:211.200000pt;}
.yb4{bottom:211.866667pt;}
.y5e{bottom:212.800000pt;}
.y234{bottom:213.004533pt;}
.y10a{bottom:215.733333pt;}
.y177{bottom:216.400000pt;}
.y1c7{bottom:218.800000pt;}
.y157{bottom:220.533333pt;}
.y129{bottom:221.866667pt;}
.y1da{bottom:222.533333pt;}
.y169{bottom:222.666667pt;}
.y20c{bottom:224.500000pt;}
.y14c{bottom:225.733333pt;}
.y7d{bottom:227.200000pt;}
.ya2{bottom:229.466667pt;}
.y13a{bottom:229.733333pt;}
.yec{bottom:230.533333pt;}
.y58{bottom:230.933333pt;}
.y181{bottom:231.733333pt;}
.y161{bottom:233.066667pt;}
.ycd{bottom:233.600000pt;}
.yf0{bottom:234.933333pt;}
.y1b0{bottom:235.600000pt;}
.y15{bottom:236.400000pt;}
.y109{bottom:241.066667pt;}
.y156{bottom:245.733333pt;}
.y128{bottom:247.200000pt;}
.y176{bottom:247.866667pt;}
.y168{bottom:248.000000pt;}
.y233{bottom:248.337867pt;}
.y14b{bottom:251.066667pt;}
.y8{bottom:251.333333pt;}
.y7c{bottom:252.400000pt;}
.ya1{bottom:254.800000pt;}
.y139{bottom:254.933333pt;}
.yeb{bottom:255.733333pt;}
.y20b{bottom:255.833540pt;}
.y180{bottom:257.066667pt;}
.y57{bottom:257.333333pt;}
.y160{bottom:258.266667pt;}
.ycc{bottom:258.933333pt;}
.y232{bottom:259.004533pt;}
.y1af{bottom:260.800000pt;}
.y14{bottom:261.733333pt;}
.y145{bottom:265.466667pt;}
.y108{bottom:266.266667pt;}
.y1c6{bottom:269.333333pt;}
.y155{bottom:271.066667pt;}
.y20a{bottom:271.166667pt;}
.y127{bottom:272.400000pt;}
.y167{bottom:273.200000pt;}
.y19a{bottom:275.600000pt;}
.y17b{bottom:275.866667pt;}
.y1ef{bottom:275.999840pt;}
.y14a{bottom:276.266667pt;}
.y7b{bottom:277.733333pt;}
.yb3{bottom:278.400000pt;}
.ya0{bottom:280.000000pt;}
.y138{bottom:280.266667pt;}
.yea{bottom:281.066667pt;}
.y17f{bottom:282.266667pt;}
.y56{bottom:283.733333pt;}
.ycb{bottom:284.133333pt;}
.y1ae{bottom:286.133333pt;}
.y13{bottom:286.933333pt;}
.y119{bottom:289.200000pt;}
.y144{bottom:290.800000pt;}
.y107{bottom:291.600000pt;}
.y7{bottom:294.266667pt;}
.y1c5{bottom:294.666667pt;}
.y154{bottom:296.266667pt;}
.y126{bottom:297.733333pt;}
.y1d9{bottom:298.266667pt;}
.y175{bottom:298.400000pt;}
.y166{bottom:298.533333pt;}
.y1ee{bottom:299.999840pt;}
.y199{bottom:300.800000pt;}
.y17a{bottom:301.200000pt;}
.y209{bottom:302.500000pt;}
.y7a{bottom:302.933333pt;}
.yba{bottom:305.333333pt;}
.y137{bottom:305.466667pt;}
.ye9{bottom:306.266667pt;}
.y17e{bottom:307.600000pt;}
.y15f{bottom:308.800000pt;}
.y55{bottom:309.066667pt;}
.yca{bottom:309.466667pt;}
.y231{bottom:309.671200pt;}
.y1ad{bottom:311.333333pt;}
.yb2{bottom:311.600000pt;}
.y12{bottom:312.266667pt;}
.y118{bottom:314.400000pt;}
.y143{bottom:316.000000pt;}
.y106{bottom:316.800000pt;}
.y1c4{bottom:319.866667pt;}
.y230{bottom:320.337807pt;}
.y125{bottom:322.933333pt;}
.y1d8{bottom:323.600000pt;}
.y174{bottom:323.733333pt;}
.y1ed{bottom:323.999840pt;}
.y149{bottom:326.800000pt;}
.y79{bottom:328.266667pt;}
.y9f{bottom:330.533333pt;}
.y136{bottom:330.800000pt;}
.y22f{bottom:331.004533pt;}
.ye8{bottom:331.600000pt;}
.y17d{bottom:332.800000pt;}
.y208{bottom:333.833333pt;}
.y54{bottom:334.266667pt;}
.y1ac{bottom:336.666667pt;}
.y11{bottom:337.466667pt;}
.y117{bottom:339.733333pt;}
.y142{bottom:341.333333pt;}
.y105{bottom:342.133333pt;}
.yb1{bottom:344.933333pt;}
.y1c3{bottom:345.200000pt;}
.y153{bottom:346.800000pt;}
.y1ec{bottom:347.999840pt;}
.y124{bottom:348.266667pt;}
.y173{bottom:348.933333pt;}
.y165{bottom:349.066667pt;}
.y78{bottom:353.466667pt;}
.y9e{bottom:355.866667pt;}
.y135{bottom:356.000000pt;}
.ye7{bottom:356.800000pt;}
.y198{bottom:359.333333pt;}
.y53{bottom:359.600000pt;}
.y22e{bottom:361.671200pt;}
.y1ab{bottom:361.866667pt;}
.y10{bottom:362.800000pt;}
.y116{bottom:364.933333pt;}
.y207{bottom:365.166667pt;}
.y17c{bottom:366.133333pt;}
.y141{bottom:366.533333pt;}
.y104{bottom:367.333333pt;}
.y22b{bottom:369.671307pt;}
.y1c2{bottom:370.400000pt;}
.y22d{bottom:372.337947pt;}
.y123{bottom:373.466667pt;}
.y172{bottom:374.266667pt;}
.y148{bottom:377.333333pt;}
.yb0{bottom:378.133333pt;}
.y77{bottom:378.800000pt;}
.y229{bottom:380.337867pt;}
.y9d{bottom:381.066667pt;}
.y134{bottom:381.333333pt;}
.ye6{bottom:382.133333pt;}
.y22c{bottom:383.004627pt;}
.y1eb{bottom:383.999840pt;}
.y197{bottom:384.666667pt;}
.y52{bottom:384.800000pt;}
.y1aa{bottom:387.200000pt;}
.yf{bottom:388.000000pt;}
.y115{bottom:390.266667pt;}
.y140{bottom:391.866667pt;}
.y103{bottom:392.666667pt;}
.y22a{bottom:393.671187pt;}
.y1c1{bottom:395.733333pt;}
.y206{bottom:396.499867pt;}
.y152{bottom:397.333333pt;}
.y122{bottom:398.800000pt;}
.y1d7{bottom:399.333333pt;}
.y147{bottom:402.666667pt;}
.y76{bottom:404.000000pt;}
.yb9{bottom:406.400000pt;}
.y133{bottom:406.533333pt;}
.ye5{bottom:407.333333pt;}
.y1ea{bottom:408.000000pt;}
.y196{bottom:409.866667pt;}
.y51{bottom:410.133333pt;}
.yaf{bottom:411.466667pt;}
.y114{bottom:415.466667pt;}
.y102{bottom:417.866667pt;}
.y1c0{bottom:420.933333pt;}
.y15e{bottom:421.333333pt;}
.y151{bottom:422.666667pt;}
.y121{bottom:424.000000pt;}
.y1d6{bottom:424.666667pt;}
.y171{bottom:424.800000pt;}
.y205{bottom:427.833333pt;}
.y146{bottom:427.866667pt;}
.y75{bottom:429.333333pt;}
.y9c{bottom:431.600000pt;}
.y132{bottom:431.866667pt;}
.y1e9{bottom:431.999680pt;}
.ye4{bottom:432.666667pt;}
.y195{bottom:435.200000pt;}
.y50{bottom:435.333333pt;}
.y1a9{bottom:437.733333pt;}
.y113{bottom:440.800000pt;}
.y13f{bottom:442.400000pt;}
.y101{bottom:443.200000pt;}
.y228{bottom:444.337867pt;}
.y1bf{bottom:446.266667pt;}
.y15d{bottom:446.533333pt;}
.y150{bottom:447.866667pt;}
.y120{bottom:449.333333pt;}
.y1d5{bottom:449.866667pt;}
.y170{bottom:450.000000pt;}
.y74{bottom:454.533333pt;}
.y1e8{bottom:455.999840pt;}
.y92{bottom:456.933333pt;}
.ye3{bottom:457.866667pt;}
.y204{bottom:459.166667pt;}
.y194{bottom:460.400000pt;}
.y4f{bottom:460.666667pt;}
.y112{bottom:466.000000pt;}
.y13e{bottom:467.600000pt;}
.y100{bottom:468.400000pt;}
.y1be{bottom:471.466667pt;}
.y15c{bottom:471.866667pt;}
.y227{bottom:473.671200pt;}
.y1d4{bottom:475.200000pt;}
.y16f{bottom:475.333333pt;}
.yae{bottom:478.000000pt;}
.y73{bottom:479.866667pt;}
.y1e7{bottom:479.999840pt;}
.y91{bottom:482.133333pt;}
.y131{bottom:482.400000pt;}
.ye2{bottom:483.200000pt;}
.y193{bottom:485.733333pt;}
.y4e{bottom:485.866667pt;}
.y1a8{bottom:488.266667pt;}
.y2c{bottom:489.866667pt;}
.y203{bottom:490.500000pt;}
.y111{bottom:491.333333pt;}
.y13d{bottom:492.933333pt;}
.yff{bottom:493.733333pt;}
.y1bd{bottom:496.800000pt;}
.y11f{bottom:499.866667pt;}
.y226{bottom:505.004533pt;}
.y72{bottom:505.066667pt;}
.y90{bottom:507.466667pt;}
.y130{bottom:507.600000pt;}
.ye1{bottom:508.400000pt;}
.y4d{bottom:511.200000pt;}
.y1a7{bottom:513.466667pt;}
.y1e6{bottom:516.000000pt;}
.y110{bottom:516.533333pt;}
.yfe{bottom:518.933333pt;}
.y202{bottom:521.833333pt;}
.y1bc{bottom:522.000000pt;}
.y15b{bottom:522.400000pt;}
.y2b{bottom:523.600000pt;}
.y11e{bottom:525.066667pt;}
.y1d3{bottom:525.733333pt;}
.y16e{bottom:525.866667pt;}
.y71{bottom:530.400000pt;}
.y8f{bottom:532.666667pt;}
.y12f{bottom:532.933333pt;}
.ye0{bottom:533.733333pt;}
.y21{bottom:534.533333pt;}
.y225{bottom:536.337820pt;}
.y4c{bottom:536.400000pt;}
.y1e5{bottom:540.000000pt;}
.y39{bottom:541.066667pt;}
.yfd{bottom:544.266667pt;}
.yad{bottom:544.533333pt;}
.y1bb{bottom:547.333333pt;}
.y11d{bottom:550.400000pt;}
.y1d2{bottom:550.933333pt;}
.y224{bottom:551.671200pt;}
.y201{bottom:553.166667pt;}
.y70{bottom:555.600000pt;}
.y2a{bottom:557.333333pt;}
.y8e{bottom:558.000000pt;}
.yf3{bottom:558.933333pt;}
.y20{bottom:559.866667pt;}
.y4b{bottom:561.733333pt;}
.ye{bottom:562.400000pt;}
.y1e4{bottom:564.000000pt;}
.y10f{bottom:567.066667pt;}
.y1a6{bottom:572.000000pt;}
.y11c{bottom:575.600000pt;}
.y16d{bottom:576.400000pt;}
.y6{bottom:576.933333pt;}
.y192{bottom:577.466667pt;}
.yac{bottom:577.733333pt;}
.y1b8{bottom:579.466667pt;}
.y6f{bottom:580.933333pt;}
.y223{bottom:583.004533pt;}
.y8d{bottom:583.200000pt;}
.y12e{bottom:583.466667pt;}
.ydf{bottom:584.266667pt;}
.y200{bottom:584.500000pt;}
.y1f{bottom:585.066667pt;}
.y4a{bottom:586.933333pt;}
.y29{bottom:591.066667pt;}
.y38{bottom:591.600000pt;}
.y10e{bottom:592.400000pt;}
.yfc{bottom:594.800000pt;}
.y1ba{bottom:597.866667pt;}
.yd{bottom:599.333333pt;}
.y1e3{bottom:600.000000pt;}
.y11b{bottom:600.933333pt;}
.y191{bottom:602.800000pt;}
.y1a5{bottom:605.333333pt;}
.y6e{bottom:606.133333pt;}
.y8c{bottom:608.533333pt;}
.y12d{bottom:608.666667pt;}
.yf2{bottom:609.466667pt;}
.y1e{bottom:610.400000pt;}
.yab{bottom:611.066667pt;}
.y49{bottom:612.266667pt;}
.y5{bottom:613.866667pt;}
.y1ff{bottom:615.833333pt;}
.y1b6{bottom:616.133333pt;}
.y10d{bottom:617.600000pt;}
.y1e2{bottom:624.000000pt;}
.y28{bottom:624.800000pt;}
.y222{bottom:625.004533pt;}
.y190{bottom:628.000000pt;}
.y6d{bottom:631.466667pt;}
.y8b{bottom:633.733333pt;}
.y12c{bottom:634.000000pt;}
.yde{bottom:634.800000pt;}
.y1d{bottom:635.600000pt;}
.y1ca{bottom:636.933333pt;}
.y48{bottom:637.466667pt;}
.y1a4{bottom:638.533333pt;}
.y37{bottom:642.133333pt;}
.yaa{bottom:644.266667pt;}
.yfb{bottom:645.333333pt;}
.y1fe{bottom:647.166667pt;}
.y1e1{bottom:648.000000pt;}
.y11a{bottom:651.466667pt;}
.y18f{bottom:653.333333pt;}
.y6c{bottom:656.666667pt;}
.y27{bottom:658.533333pt;}
.y8a{bottom:659.066667pt;}
.yf1{bottom:660.000000pt;}
.y47{bottom:662.800000pt;}
.y221{bottom:664.000000pt;}
.yfa{bottom:670.533333pt;}
.yc{bottom:673.066667pt;}
.y1fd{bottom:678.500000pt;}
.y18e{bottom:678.533333pt;}
.y6b{bottom:682.000000pt;}
.y1e0{bottom:684.000000pt;}
.y89{bottom:684.266667pt;}
.yc9{bottom:684.400000pt;}
.ydd{bottom:685.333333pt;}
.y4{bottom:687.600000pt;}
.y46{bottom:688.000000pt;}
.y26{bottom:692.266667pt;}
.y36{bottom:692.666667pt;}
.y220{bottom:695.333233pt;}
.yf9{bottom:695.866667pt;}
.y18d{bottom:703.866667pt;}
.y1a3{bottom:705.066667pt;}
.y6a{bottom:707.200000pt;}
.y88{bottom:709.600000pt;}
.y1fc{bottom:709.833333pt;}
.yb{bottom:709.866667pt;}
.ydc{bottom:710.533333pt;}
.y21f{bottom:710.666487pt;}
.ya9{bottom:710.800000pt;}
.y45{bottom:713.333333pt;}
.y35{bottom:717.866667pt;}
.yf8{bottom:721.066667pt;}
.y3{bottom:724.400000pt;}
.y21e{bottom:725.999867pt;}
.y18c{bottom:729.066667pt;}
.y69{bottom:732.533333pt;}
.y87{bottom:734.800000pt;}
.yc8{bottom:734.933333pt;}
.ydb{bottom:735.866667pt;}
.y1a2{bottom:738.400000pt;}
.y44{bottom:738.533333pt;}
.y1fb{bottom:741.166533pt;}
.y25{bottom:742.933333pt;}
.y34{bottom:743.200000pt;}
.ya8{bottom:744.133333pt;}
.yf7{bottom:746.400000pt;}
.ya{bottom:746.800000pt;}
.y68{bottom:757.733333pt;}
.y86{bottom:760.133333pt;}
.yda{bottom:761.066667pt;}
.y2{bottom:761.333333pt;}
.y18b{bottom:762.400000pt;}
.y43{bottom:764.933333pt;}
.y1d1{bottom:769.466667pt;}
.yf6{bottom:771.600000pt;}
.y21d{bottom:772.000000pt;}
.y1fa{bottom:772.499867pt;}
.yc1{bottom:776.533333pt;}
.ya7{bottom:777.333333pt;}
.y67{bottom:783.066667pt;}
.y85{bottom:785.333333pt;}
.yc7{bottom:785.466667pt;}
.yd9{bottom:786.400000pt;}
.y33{bottom:793.733333pt;}
.y1d0{bottom:794.800000pt;}
.yf5{bottom:796.933333pt;}
.y1f9{bottom:807.833333pt;}
.y42{bottom:808.266667pt;}
.y66{bottom:809.466667pt;}
.y84{bottom:810.666667pt;}
.yd8{bottom:811.600000pt;}
.y1cf{bottom:820.000000pt;}
.y18a{bottom:820.933333pt;}
.y1f8{bottom:821.166533pt;}
.y21c{bottom:822.666667pt;}
.y41{bottom:833.600000pt;}
.y83{bottom:835.866667pt;}
.yc6{bottom:836.000000pt;}
.y21b{bottom:836.000040pt;}
.yd7{bottom:836.933333pt;}
.y1a1{bottom:838.133333pt;}
.y24{bottom:844.133333pt;}
.y32{bottom:844.266667pt;}
.y1ce{bottom:845.333333pt;}
.y189{bottom:846.133333pt;}
.yf4{bottom:847.466667pt;}
.y21a{bottom:849.333353pt;}
.y1df{bottom:850.869867pt;}
.y1c{bottom:856.666667pt;}
.y40{bottom:858.800000pt;}
.y65{bottom:861.200000pt;}
.yd6{bottom:862.133333pt;}
.y219{bottom:862.666667pt;}
.yc0{bottom:870.133333pt;}
.y1cd{bottom:870.533333pt;}
.y188{bottom:871.466667pt;}
.y1f7{bottom:874.499867pt;}
.y99{bottom:878.000000pt;}
.y3f{bottom:884.133333pt;}
.y64{bottom:886.400000pt;}
.yc5{bottom:886.533333pt;}
.yd5{bottom:887.466667pt;}
.y31{bottom:894.800000pt;}
.y1cc{bottom:895.866667pt;}
.y218{bottom:896.000000pt;}
.y187{bottom:896.666667pt;}
.y1f0{bottom:900.000000pt;}
.y217{bottom:902.666667pt;}
.y98{bottom:903.200000pt;}
.y1a0{bottom:904.666667pt;}
.y3e{bottom:909.333333pt;}
.y63{bottom:911.733333pt;}
.yd4{bottom:912.666667pt;}
.y1cb{bottom:912.800000pt;}
.y186{bottom:922.000000pt;}
.y97{bottom:928.533333pt;}
.y1a{bottom:931.866667pt;}
.y3d{bottom:934.666667pt;}
.y62{bottom:936.933333pt;}
.yc4{bottom:937.066667pt;}
.yd3{bottom:938.000000pt;}
.y30{bottom:945.333333pt;}
.y185{bottom:947.200000pt;}
.y96{bottom:953.733333pt;}
.y3c{bottom:961.066667pt;}
.y61{bottom:962.266667pt;}
.yd2{bottom:963.200000pt;}
.yc3{bottom:972.266667pt;}
.y95{bottom:979.066667pt;}
.y1b4{bottom:979.466667pt;}
.y184{bottom:980.533333pt;}
.y60{bottom:987.466667pt;}
.yd1{bottom:988.533333pt;}
.y1de{bottom:991.903467pt;}
.yc2{bottom:1011.200000pt;}
.y2f{bottom:1012.800000pt;}
.yd0{bottom:1013.733333pt;}
.y1f1{bottom:2389.333333pt;}
.h13{height:0.000000pt;}
.h14{height:34.560000pt;}
.h16{height:36.384000pt;}
.h1c{height:36.384480pt;}
.h15{height:38.405333pt;}
.h1e{height:38.405520pt;}
.h1d{height:38.405733pt;}
.h19{height:38.405840pt;}
.h17{height:38.406347pt;}
.h18{height:38.407867pt;}
.h9{height:39.645833pt;}
.h21{height:40.426667pt;}
.h20{height:40.428800pt;}
.h6{height:42.710938pt;}
.h4{height:42.739583pt;}
.h7{height:43.250000pt;}
.h5{height:46.625000pt;}
.h8{height:47.800000pt;}
.h11{height:48.512000pt;}
.hb{height:50.476562pt;}
.hc{height:51.190104pt;}
.h22{height:53.760000pt;}
.h3{height:54.395833pt;}
.hd{height:55.843750pt;}
.h1a{height:57.600000pt;}
.ha{height:60.497396pt;}
.h2{height:62.125000pt;}
.h1f{height:63.050880pt;}
.h1b{height:63.051360pt;}
.hf{height:72.768000pt;}
.h12{height:80.853333pt;}
.h10{height:205.056000pt;}
.he{height:1056.000000pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.w1{width:816.000000pt;}
.x31{left:-1333.333333pt;}
.x0{left:0.000000pt;}
.x34{left:27.208667pt;}
.x36{left:34.250133pt;}
.x37{left:55.208713pt;}
.x3c{left:60.000000pt;}
.x45{left:61.333333pt;}
.x2f{left:84.000000pt;}
.x3d{left:87.999853pt;}
.x18{left:113.866667pt;}
.x10{left:115.200000pt;}
.x21{left:116.133333pt;}
.x12{left:117.066667pt;}
.x29{left:119.866667pt;}
.x28{left:121.200000pt;}
.x13{left:125.466667pt;}
.xa{left:127.333333pt;}
.x2a{left:134.800000pt;}
.x38{left:137.051467pt;}
.x2c{left:140.133333pt;}
.x2b{left:144.933333pt;}
.xc{left:151.333333pt;}
.x2e{left:158.028133pt;}
.x22{left:163.466667pt;}
.x7{left:165.466667pt;}
.x5{left:172.000000pt;}
.x4{left:174.533333pt;}
.x2{left:187.866667pt;}
.x30{left:212.591200pt;}
.x3{left:227.066667pt;}
.x16{left:235.200000pt;}
.x1{left:262.000000pt;}
.x25{left:263.733333pt;}
.x24{left:294.000000pt;}
.x20{left:304.666667pt;}
.x6{left:321.066667pt;}
.x26{left:330.800000pt;}
.xd{left:332.400000pt;}
.x23{left:340.000000pt;}
.x1f{left:341.200000pt;}
.x17{left:351.466667pt;}
.x35{left:353.774533pt;}
.x46{left:359.410667pt;}
.x1c{left:366.533333pt;}
.x33{left:370.560000pt;}
.x27{left:372.533333pt;}
.x15{left:376.000000pt;}
.x39{left:377.280000pt;}
.x1b{left:379.333333pt;}
.x32{left:381.120000pt;}
.x3e{left:382.844400pt;}
.x19{left:384.400000pt;}
.x3a{left:386.779333pt;}
.x8{left:388.400000pt;}
.x44{left:390.124400pt;}
.xb{left:392.266667pt;}
.x9{left:394.400000pt;}
.x11{left:396.000000pt;}
.x2d{left:396.933333pt;}
.x1a{left:397.866667pt;}
.xe{left:399.200000pt;}
.x1e{left:400.400000pt;}
.x14{left:402.000000pt;}
.x1d{left:402.933333pt;}
.x3f{left:410.677600pt;}
.xf{left:412.000000pt;}
.x3b{left:655.480800pt;}
.x43{left:714.580800pt;}
.x41{left:717.687520pt;}
.x40{left:721.102000pt;}
.x42{left:731.026720pt;}
}




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