
    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_09ea5e9985733a10c80d1485.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_a827e97fe6b0f2d4cfa8c196.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128906;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_b9b1d94f92fb0ff13cb5c370.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937500;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_ad12de991290a1e07392f43a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.945312;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_a34dee65a53d776228f0223d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.945312;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_ca9941531ef2c3d20fd57769.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.870117;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_93dda6c4275f4301fa57bba4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.164551;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_0695561c15645016b3e292c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.753906;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_996eb895c56997a509ba748a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.128906;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_2302a6047e804030082d9b7f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.164551;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_e8c1b627b4ef0c44a2abccf7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.128906;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_726c73e87352a761fa22b106.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.937500;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_d1940a7c580ec445d10fe950.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.750000;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_ee4c2ecfda90cdaaac1302f9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;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_a9bbdc4627c6a00ffbe882e6.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,0);-ms-transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,0);-webkit-transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-25.800000px;}
.v3{vertical-align:-1.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.ls13{letter-spacing:-9.000000px;}
.ls16{letter-spacing:-6.014682px;}
.ls12{letter-spacing:-6.000000px;}
.ls6{letter-spacing:-3.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.588000px;}
.ls21{letter-spacing:0.960000px;}
.ls31{letter-spacing:1.500000px;}
.ls2e{letter-spacing:1.524000px;}
.ls1f{letter-spacing:2.160000px;}
.ls2b{letter-spacing:2.238000px;}
.ls3{letter-spacing:3.000000px;}
.ls3f{letter-spacing:3.243000px;}
.ls1d{letter-spacing:3.360000px;}
.ls38{letter-spacing:3.480000px;}
.ls1e{letter-spacing:3.960000px;}
.ls20{letter-spacing:4.560000px;}
.ls1a{letter-spacing:5.160000px;}
.ls7{letter-spacing:5.179200px;}
.ls29{letter-spacing:5.640000px;}
.ls3e{letter-spacing:5.790000px;}
.ls5{letter-spacing:5.871000px;}
.ls4{letter-spacing:6.000000px;}
.ls23{letter-spacing:6.360000px;}
.ls2c{letter-spacing:6.540000px;}
.ls1b{letter-spacing:6.960000px;}
.ls1c{letter-spacing:7.560000px;}
.ls3c{letter-spacing:7.924800px;}
.ls22{letter-spacing:8.427000px;}
.ls3d{letter-spacing:8.726400px;}
.ls32{letter-spacing:9.000000px;}
.ls24{letter-spacing:10.353000px;}
.ls15{letter-spacing:10.587000px;}
.lsd{letter-spacing:10.740000px;}
.ls9{letter-spacing:10.986000px;}
.ls34{letter-spacing:11.402400px;}
.ls33{letter-spacing:11.586000px;}
.ls2d{letter-spacing:12.186000px;}
.ls2f{letter-spacing:12.940800px;}
.ls28{letter-spacing:13.386000px;}
.lsb{letter-spacing:14.940000px;}
.ls40{letter-spacing:16.398000px;}
.ls11{letter-spacing:18.000000px;}
.ls30{letter-spacing:18.456000px;}
.ls39{letter-spacing:18.642000px;}
.ls26{letter-spacing:20.586000px;}
.ls3a{letter-spacing:21.063000px;}
.ls36{letter-spacing:21.876000px;}
.lsf{letter-spacing:23.325000px;}
.lsc{letter-spacing:23.850000px;}
.ls2{letter-spacing:24.000000px;}
.ls42{letter-spacing:24.891000px;}
.ls25{letter-spacing:25.263000px;}
.lsa{letter-spacing:26.463000px;}
.ls14{letter-spacing:26.733000px;}
.ls17{letter-spacing:27.225000px;}
.lse{letter-spacing:29.925000px;}
.ls8{letter-spacing:31.263000px;}
.ls2a{letter-spacing:34.263000px;}
.ls27{letter-spacing:34.524000px;}
.ls0{letter-spacing:35.136000px;}
.ls10{letter-spacing:37.275000px;}
.ls19{letter-spacing:42.525000px;}
.ls37{letter-spacing:42.924000px;}
.ls18{letter-spacing:44.925000px;}
.ls3b{letter-spacing:126.063000px;}
.ls41{letter-spacing:217.800000px;}
.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;}
}
.ws6{word-spacing:-36.162000px;}
.ws4d{word-spacing:-32.397000px;}
.ws44{word-spacing:-31.737000px;}
.ws4e{word-spacing:-31.506000px;}
.ws26{word-spacing:-28.413000px;}
.ws16{word-spacing:-25.200000px;}
.ws3{word-spacing:-23.967000px;}
.ws25{word-spacing:-23.930400px;}
.ws27{word-spacing:-23.859000px;}
.wse{word-spacing:-22.413000px;}
.ws15{word-spacing:-21.075000px;}
.ws24{word-spacing:-20.859000px;}
.ws2f{word-spacing:-20.046000px;}
.ws7{word-spacing:-19.737000px;}
.ws20{word-spacing:-19.400357px;}
.ws4{word-spacing:-18.780000px;}
.ws19{word-spacing:-17.460000px;}
.ws46{word-spacing:-16.989600px;}
.ws49{word-spacing:-15.750000px;}
.ws2e{word-spacing:-14.676000px;}
.ws36{word-spacing:-14.568000px;}
.ws1{word-spacing:-13.737000px;}
.wsa{word-spacing:-13.506000px;}
.ws4b{word-spacing:-12.780000px;}
.ws48{word-spacing:-12.600000px;}
.ws11{word-spacing:-12.340800px;}
.ws1d{word-spacing:-11.967000px;}
.ws45{word-spacing:-11.676000px;}
.ws14{word-spacing:-10.989600px;}
.ws1c{word-spacing:-10.680000px;}
.ws47{word-spacing:-9.906000px;}
.ws34{word-spacing:-9.399000px;}
.ws2d{word-spacing:-9.340800px;}
.wsf{word-spacing:-9.021000px;}
.ws21{word-spacing:-8.907000px;}
.ws8{word-spacing:-7.506000px;}
.ws3d{word-spacing:-7.230000px;}
.ws1a{word-spacing:-6.780000px;}
.ws22{word-spacing:-6.300000px;}
.ws17{word-spacing:-6.225000px;}
.ws29{word-spacing:-5.923200px;}
.ws1b{word-spacing:-5.700000px;}
.ws13{word-spacing:-5.654400px;}
.ws23{word-spacing:-5.520000px;}
.ws28{word-spacing:-5.406000px;}
.ws10{word-spacing:-5.049600px;}
.ws33{word-spacing:-4.502400px;}
.ws39{word-spacing:-4.401600px;}
.ws31{word-spacing:-4.047000px;}
.ws2a{word-spacing:-3.990000px;}
.ws40{word-spacing:-3.936000px;}
.ws3a{word-spacing:-3.933000px;}
.wsd{word-spacing:-3.930000px;}
.ws18{word-spacing:-3.900000px;}
.ws42{word-spacing:-3.876000px;}
.ws3e{word-spacing:-3.830400px;}
.ws2b{word-spacing:-3.796800px;}
.ws3b{word-spacing:-3.648000px;}
.ws41{word-spacing:-3.420000px;}
.ws12{word-spacing:-3.288000px;}
.ws38{word-spacing:-2.956800px;}
.ws2c{word-spacing:-2.654400px;}
.ws3f{word-spacing:-2.352000px;}
.ws30{word-spacing:-2.223000px;}
.ws37{word-spacing:-1.814400px;}
.ws35{word-spacing:-1.530000px;}
.ws32{word-spacing:-0.302400px;}
.ws1e{word-spacing:-0.124800px;}
.ws3c{word-spacing:-0.120000px;}
.ws9{word-spacing:0.000000px;}
.ws0{word-spacing:0.342000px;}
.ws1f{word-spacing:3.619200px;}
.ws5{word-spacing:5.742000px;}
.ws2{word-spacing:11.913000px;}
.ws4c{word-spacing:20.679000px;}
.ws43{word-spacing:70.407000px;}
.ws4f{word-spacing:96.501000px;}
.wsc{word-spacing:96.714000px;}
.ws4a{word-spacing:341.160000px;}
.wsb{word-spacing:371.949000px;}
._2c{margin-left:-55.500000px;}
._2f{margin-left:-52.497000px;}
._39{margin-left:-50.958000px;}
._21{margin-left:-49.824000px;}
._59{margin-left:-48.564000px;}
._1e{margin-left:-46.968000px;}
._33{margin-left:-45.315000px;}
._8c{margin-left:-43.998000px;}
._36{margin-left:-42.168000px;}
._70{margin-left:-39.477979px;}
._85{margin-left:-38.418000px;}
._60{margin-left:-36.978000px;}
._42{margin-left:-31.773000px;}
._62{margin-left:-30.741000px;}
._1a{margin-left:-28.614000px;}
._16{margin-left:-27.594000px;}
._18{margin-left:-25.947000px;}
._95{margin-left:-24.918000px;}
._1b{margin-left:-23.781000px;}
._2{margin-left:-22.173000px;}
._86{margin-left:-21.116242px;}
._12{margin-left:-20.088000px;}
._1d{margin-left:-18.747000px;}
._1c{margin-left:-17.340000px;}
._14{margin-left:-15.876000px;}
._20{margin-left:-14.034000px;}
._e{margin-left:-12.300000px;}
._5{margin-left:-10.296000px;}
._3{margin-left:-8.493000px;}
._3d{margin-left:-7.335000px;}
._4{margin-left:-6.156000px;}
._1f{margin-left:-4.161000px;}
._3c{margin-left:-3.045000px;}
._11{margin-left:-1.914000px;}
._13{width:1.782000px;}
._48{width:2.850979px;}
._15{width:3.927000px;}
._2a{width:5.070000px;}
._2d{width:7.049021px;}
._5c{width:8.112979px;}
._1{width:9.519000px;}
._23{width:11.232000px;}
._27{width:12.690979px;}
._24{width:14.124000px;}
._17{width:15.255000px;}
._3e{width:16.424021px;}
._8{width:17.577000px;}
._a{width:19.089000px;}
._32{width:20.235000px;}
._0{width:21.261000px;}
._3b{width:22.776000px;}
._d{width:23.895000px;}
._7{width:25.515000px;}
._52{width:27.284021px;}
._50{width:28.830000px;}
._5e{width:29.834179px;}
._37{width:30.930000px;}
._6d{width:31.986063px;}
._3a{width:33.027979px;}
._30{width:34.545000px;}
._22{width:36.081000px;}
._68{width:37.230000px;}
._61{width:38.553000px;}
._41{width:39.684000px;}
._4f{width:41.357021px;}
._6b{width:42.372000px;}
._46{width:43.773979px;}
._7a{width:44.779863px;}
._65{width:45.821021px;}
._35{width:47.493000px;}
._5f{width:48.750000px;}
._72{width:49.908063px;}
._6{width:50.928000px;}
._6f{width:52.095000px;}
._5d{width:53.124000px;}
._69{width:54.333000px;}
._6a{width:55.497188px;}
._9{width:56.700000px;}
._4a{width:57.915000px;}
._5a{width:59.775000px;}
._71{width:60.873000px;}
._56{width:62.418000px;}
._7e{width:64.566979px;}
._6c{width:66.168000px;}
._7c{width:67.863000px;}
._45{width:70.620000px;}
._b{width:71.712000px;}
._26{width:74.556000px;}
._92{width:76.765137px;}
._31{width:78.966000px;}
._76{width:81.513000px;}
._44{width:83.874000px;}
._2e{width:86.640000px;}
._8f{width:90.231000px;}
._63{width:93.522000px;}
._6e{width:94.767000px;}
._75{width:96.735063px;}
._82{width:98.742000px;}
._28{width:100.866218px;}
._f{width:102.600000px;}
._53{width:104.442000px;}
._51{width:106.590000px;}
._c{width:112.755000px;}
._79{width:118.068000px;}
._3f{width:121.269000px;}
._55{width:123.936000px;}
._40{width:126.096000px;}
._54{width:128.574000px;}
._67{width:134.577000px;}
._91{width:135.812242px;}
._84{width:136.830063px;}
._73{width:140.885051px;}
._49{width:142.139021px;}
._8d{width:149.820000px;}
._8b{width:151.026979px;}
._47{width:156.468000px;}
._4e{width:161.433000px;}
._29{width:165.114000px;}
._94{width:175.591042px;}
._7d{width:177.431021px;}
._8a{width:181.760842px;}
._5b{width:185.490000px;}
._87{width:191.511821px;}
._77{width:197.279021px;}
._93{width:199.428063px;}
._34{width:207.174000px;}
._64{width:210.423000px;}
._78{width:219.093063px;}
._88{width:228.899179px;}
._7f{width:231.962021px;}
._89{width:244.077000px;}
._74{width:246.501979px;}
._38{width:260.358000px;}
._57{width:269.679000px;}
._2b{width:275.646000px;}
._4c{width:284.079000px;}
._81{width:285.777000px;}
._7b{width:290.586000px;}
._8e{width:306.908084px;}
._80{width:337.668000px;}
._90{width:376.302000px;}
._83{width:389.811000px;}
._4d{width:390.855000px;}
._25{width:394.281000px;}
._4b{width:505.221000px;}
._66{width:573.648000px;}
._58{width:676.173979px;}
._10{width:761.199000px;}
._19{width:920.079000px;}
._43{width:1439.369782px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:21.600000px;}
.fs1{font-size:24.000000px;}
.fs2{font-size:27.000000px;}
.fs17{font-size:30.000000px;}
.fs11{font-size:31.200000px;}
.fs1c{font-size:33.000000px;}
.fsd{font-size:33.600000px;}
.fs10{font-size:39.000000px;}
.fs15{font-size:39.095433px;}
.fsc{font-size:42.000000px;}
.fs19{font-size:45.000000px;}
.fsb{font-size:45.600000px;}
.fs16{font-size:48.000000px;}
.fs1b{font-size:50.400000px;}
.fs14{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:60.146820px;}
.fs8{font-size:63.000000px;}
.fs1a{font-size:66.000000px;}
.fs9{font-size:69.000000px;}
.fs13{font-size:74.400000px;}
.fse{font-size:75.000000px;}
.fs12{font-size:81.198207px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:87.000000px;}
.fsa{font-size:93.000000px;}
.fs7{font-size:99.000000px;}
.fsf{font-size:102.249595px;}
.y0{bottom:0.000000px;}
.y1a{bottom:0.030000px;}
.y2e{bottom:14.400000px;}
.y23{bottom:16.530000px;}
.y1b{bottom:17.730000px;}
.y2f{bottom:22.350000px;}
.y18{bottom:42.180000px;}
.y17{bottom:51.930000px;}
.y19{bottom:59.430000px;}
.y16{bottom:59.730000px;}
.y22{bottom:61.980000px;}
.y14d{bottom:64.800000px;}
.y1d4{bottom:66.600000px;}
.y16c{bottom:67.350000px;}
.y101{bottom:68.100000px;}
.y21d{bottom:68.400000px;}
.y206{bottom:68.700000px;}
.yd4{bottom:72.300000px;}
.y3f{bottom:72.750000px;}
.y54{bottom:73.800000px;}
.y91{bottom:74.850000px;}
.ybe{bottom:75.600000px;}
.y7d{bottom:82.500000px;}
.y1bb{bottom:84.150000px;}
.y182{bottom:84.600000px;}
.ya8{bottom:84.900000px;}
.y15{bottom:85.380000px;}
.y1d3{bottom:85.650000px;}
.y14{bottom:86.130000px;}
.y69{bottom:87.150000px;}
.y205{bottom:87.450000px;}
.y21c{bottom:87.750000px;}
.y16b{bottom:88.500000px;}
.y14c{bottom:93.150000px;}
.y131{bottom:93.600000px;}
.y22b{bottom:97.950000px;}
.y100{bottom:98.700000px;}
.y13{bottom:102.330000px;}
.yd3{bottom:102.900000px;}
.y10d{bottom:103.350000px;}
.y1d2{bottom:104.400000px;}
.y53{bottom:105.150000px;}
.y90{bottom:105.450000px;}
.yeb{bottom:106.200000px;}
.ybd{bottom:106.500000px;}
.y22a{bottom:109.050000px;}
.y130{bottom:112.350000px;}
.y7c{bottom:113.400000px;}
.ya7{bottom:114.750000px;}
.y16a{bottom:115.200000px;}
.y19e{bottom:119.850000px;}
.y14b{bottom:121.350000px;}
.y1b9{bottom:121.650000px;}
.y1d1{bottom:122.400000px;}
.y1e9{bottom:123.150000px;}
.y68{bottom:123.450000px;}
.y21b{bottom:124.200000px;}
.y204{bottom:124.650000px;}
.yff{bottom:129.600000px;}
.y181{bottom:131.100000px;}
.yd2{bottom:133.500000px;}
.y10c{bottom:133.950000px;}
.y3e{bottom:135.000000px;}
.y52{bottom:135.300000px;}
.y8f{bottom:136.050000px;}
.yea{bottom:136.800000px;}
.ybc{bottom:137.100000px;}
.y12{bottom:138.330000px;}
.y19d{bottom:138.600000px;}
.y1b8{bottom:140.850000px;}
.y1d0{bottom:141.150000px;}
.y1e8{bottom:141.750000px;}
.y7b{bottom:143.250000px;}
.y169{bottom:143.700000px;}
.y21a{bottom:144.000000px;}
.ya6{bottom:145.050000px;}
.y12f{bottom:148.950000px;}
.y11{bottom:151.530000px;}
.y229{bottom:154.800000px;}
.y19c{bottom:157.050000px;}
.y1b7{bottom:159.150000px;}
.y180{bottom:159.450000px;}
.y67{bottom:160.500000px;}
.yfe{bottom:160.650000px;}
.y219{bottom:161.550000px;}
.y203{bottom:162.000000px;}
.y168{bottom:162.450000px;}
.yd1{bottom:164.250000px;}
.y8e{bottom:165.900000px;}
.y51{bottom:166.350000px;}
.ye9{bottom:166.950000px;}
.ybb{bottom:167.700000px;}
.ye{bottom:172.830000px;}
.y7a{bottom:173.550000px;}
.y19b{bottom:175.050000px;}
.ya5{bottom:175.650000px;}
.y1b6{bottom:177.150000px;}
.y14a{bottom:177.450000px;}
.y17f{bottom:178.200000px;}
.y1e7{bottom:178.950000px;}
.y218{bottom:180.000000px;}
.y202{bottom:180.450000px;}
.y167{bottom:180.750000px;}
.y10{bottom:180.780000px;}
.y12e{bottom:186.150000px;}
.y228{bottom:187.500000px;}
.yd{bottom:187.980000px;}
.y66{bottom:188.550000px;}
.yfd{bottom:190.800000px;}
.y19a{bottom:193.650000px;}
.yd0{bottom:194.400000px;}
.y149{bottom:195.750000px;}
.y17e{bottom:196.200000px;}
.y50{bottom:196.500000px;}
.y8d{bottom:196.950000px;}
.ye8{bottom:197.550000px;}
.yba{bottom:198.300000px;}
.y217{bottom:198.750000px;}
.y166{bottom:199.050000px;}
.yf{bottom:202.680000px;}
.y79{bottom:203.400000px;}
.y12d{bottom:204.450000px;}
.ya4{bottom:205.500000px;}
.y2d{bottom:211.350000px;}
.y199{bottom:212.100000px;}
.y1b5{bottom:213.450000px;}
.y148{bottom:214.200000px;}
.y17d{bottom:215.250000px;}
.y1cf{bottom:215.550000px;}
.y1e6{bottom:216.750000px;}
.y216{bottom:217.350000px;}
.y165{bottom:217.500000px;}
.y201{bottom:217.800000px;}
.yfc{bottom:221.400000px;}
.y12c{bottom:223.200000px;}
.ycf{bottom:225.000000px;}
.y65{bottom:225.450000px;}
.y8c{bottom:227.100000px;}
.y4f{bottom:227.250000px;}
.ye7{bottom:227.850000px;}
.yb9{bottom:228.900000px;}
.y198{bottom:230.850000px;}
.y147{bottom:232.500000px;}
.y1b4{bottom:232.650000px;}
.y17c{bottom:233.550000px;}
.y78{bottom:234.000000px;}
.y1e5{bottom:235.350000px;}
.ya3{bottom:235.500000px;}
.y164{bottom:235.800000px;}
.y200{bottom:236.550000px;}
.y12b{bottom:241.950000px;}
.y21{bottom:243.780000px;}
.y64{bottom:244.050000px;}
.y3d{bottom:244.500000px;}
.y197{bottom:249.150000px;}
.y146{bottom:251.250000px;}
.yfb{bottom:252.000000px;}
.y1ce{bottom:253.050000px;}
.y1e4{bottom:253.800000px;}
.y1b3{bottom:254.250000px;}
.y215{bottom:254.550000px;}
.yce{bottom:255.600000px;}
.y63{bottom:256.650000px;}
.y8b{bottom:257.700000px;}
.y4e{bottom:258.150000px;}
.ye6{bottom:258.300000px;}
.yb8{bottom:259.200000px;}
.y12a{bottom:260.700000px;}
.y163{bottom:264.300000px;}
.y77{bottom:264.600000px;}
.ya2{bottom:265.650000px;}
.y145{bottom:269.250000px;}
.y1b2{bottom:270.000000px;}
.y1cd{bottom:271.350000px;}
.y1e3{bottom:272.550000px;}
.y1ff{bottom:274.050000px;}
.y196{bottom:276.450000px;}
.y129{bottom:279.000000px;}
.y17b{bottom:280.500000px;}
.yfa{bottom:282.600000px;}
.y2c{bottom:285.750000px;}
.ycd{bottom:286.200000px;}
.y62{bottom:286.650000px;}
.yc{bottom:287.280000px;}
.y8a{bottom:288.000000px;}
.y4d{bottom:288.300000px;}
.ye5{bottom:288.600000px;}
.yb7{bottom:289.800000px;}
.y1e2{bottom:290.850000px;}
.y162{bottom:291.600000px;}
.y1fe{bottom:292.050000px;}
.y76{bottom:294.750000px;}
.ya1{bottom:296.250000px;}
.y128{bottom:297.300000px;}
.y195{bottom:304.950000px;}
.y3c{bottom:306.750000px;}
.y144{bottom:307.350000px;}
.y17a{bottom:308.250000px;}
.y1e1{bottom:309.450000px;}
.y214{bottom:310.350000px;}
.y1fd{bottom:310.650000px;}
.y161{bottom:311.100000px;}
.yf9{bottom:313.200000px;}
.y2b{bottom:315.750000px;}
.ycc{bottom:316.500000px;}
.y127{bottom:316.800000px;}
.y1cc{bottom:317.100000px;}
.y61{bottom:317.850000px;}
.y4c{bottom:318.900000px;}
.yb6{bottom:320.400000px;}
.y194{bottom:323.250000px;}
.y1b1{bottom:324.450000px;}
.y75{bottom:325.050000px;}
.ya0{bottom:326.850000px;}
.y1e0{bottom:327.900000px;}
.y1fc{bottom:329.400000px;}
.y160{bottom:329.850000px;}
.y126{bottom:334.350000px;}
.y3b{bottom:338.100000px;}
.y193{bottom:342.000000px;}
.yf8{bottom:343.500000px;}
.y143{bottom:344.550000px;}
.y179{bottom:344.850000px;}
.y1df{bottom:346.350000px;}
.y10b{bottom:346.650000px;}
.ycb{bottom:347.400000px;}
.y15f{bottom:348.150000px;}
.y89{bottom:348.450000px;}
.y60{bottom:348.900000px;}
.ye4{bottom:349.200000px;}
.y4b{bottom:349.500000px;}
.yb5{bottom:350.550000px;}
.y125{bottom:353.550000px;}
.y2a{bottom:354.150000px;}
.y74{bottom:355.350000px;}
.y9f{bottom:357.150000px;}
.y20{bottom:359.280000px;}
.y142{bottom:361.050000px;}
.y1b0{bottom:361.800000px;}
.y178{bottom:363.600000px;}
.y1de{bottom:365.400000px;}
.y213{bottom:366.150000px;}
.y15e{bottom:366.450000px;}
.y1fb{bottom:367.200000px;}
.y3a{bottom:368.250000px;}
.y192{bottom:369.750000px;}
.y124{bottom:372.150000px;}
.y1cb{bottom:373.950000px;}
.yf7{bottom:374.100000px;}
.y10a{bottom:377.250000px;}
.yca{bottom:378.000000px;}
.y5f{bottom:378.750000px;}
.y88{bottom:379.050000px;}
.ye3{bottom:379.800000px;}
.y4a{bottom:380.250000px;}
.yb4{bottom:380.850000px;}
.y141{bottom:381.150000px;}
.y1dd{bottom:382.950000px;}
.y212{bottom:383.400000px;}
.y1af{bottom:383.850000px;}
.y15d{bottom:384.900000px;}
.y1fa{bottom:385.200000px;}
.y73{bottom:385.500000px;}
.y9e{bottom:387.450000px;}
.y123{bottom:390.900000px;}
.y177{bottom:391.350000px;}
.y227{bottom:392.100000px;}
.y1f{bottom:393.180000px;}
.y191{bottom:397.050000px;}
.y1ae{bottom:398.550000px;}
.y39{bottom:398.850000px;}
.y140{bottom:399.900000px;}
.y1ca{bottom:401.700000px;}
.y211{bottom:403.500000px;}
.y1f9{bottom:403.950000px;}
.yf6{bottom:405.150000px;}
.y42{bottom:406.800000px;}
.yc9{bottom:407.550000px;}
.y109{bottom:407.850000px;}
.y87{bottom:408.900000px;}
.y5e{bottom:409.350000px;}
.y49{bottom:410.100000px;}
.yb3{bottom:411.150000px;}
.y15c{bottom:415.050000px;}
.y72{bottom:415.800000px;}
.y9d{bottom:417.300000px;}
.y13f{bottom:418.350000px;}
.y176{bottom:419.400000px;}
.y1c9{bottom:419.700000px;}
.y210{bottom:421.500000px;}
.y1f8{bottom:421.950000px;}
.y41{bottom:425.550000px;}
.y122{bottom:426.600000px;}
.y1ad{bottom:427.350000px;}
.y38{bottom:429.150000px;}
.yf5{bottom:435.300000px;}
.y1e{bottom:435.930000px;}
.y108{bottom:437.850000px;}
.yc8{bottom:438.150000px;}
.y1c8{bottom:438.450000px;}
.y86{bottom:438.750000px;}
.y5d{bottom:439.200000px;}
.y15b{bottom:439.650000px;}
.y48{bottom:439.950000px;}
.ye2{bottom:440.700000px;}
.yb{bottom:441.030000px;}
.yb2{bottom:441.750000px;}
.y190{bottom:443.550000px;}
.y121{bottom:444.900000px;}
.y71{bottom:445.650000px;}
.y13e{bottom:445.950000px;}
.y175{bottom:446.850000px;}
.y9c{bottom:447.900000px;}
.y40{bottom:448.950000px;}
.y1ac{bottom:453.900000px;}
.y37{bottom:455.400000px;}
.y1c7{bottom:457.200000px;}
.y1f7{bottom:458.700000px;}
.y120{bottom:463.950000px;}
.yf4{bottom:465.450000px;}
.y15a{bottom:466.650000px;}
.y107{bottom:468.300000px;}
.yc7{bottom:468.450000px;}
.y85{bottom:469.500000px;}
.y47{bottom:470.250000px;}
.ydc{bottom:470.550000px;}
.ye1{bottom:470.850000px;}
.yb1{bottom:471.600000px;}
.y13d{bottom:472.650000px;}
.y1ab{bottom:472.950000px;}
.y174{bottom:474.150000px;}
.y1c6{bottom:475.200000px;}
.y70{bottom:475.950000px;}
.y1dc{bottom:476.550000px;}
.y1f6{bottom:477.000000px;}
.y20f{bottom:477.300000px;}
.y9b{bottom:477.750000px;}
.y11f{bottom:482.400000px;}
.y18f{bottom:489.600000px;}
.y1aa{bottom:492.150000px;}
.y13c{bottom:492.450000px;}
.y173{bottom:493.200000px;}
.y1c5{bottom:493.950000px;}
.y159{bottom:495.000000px;}
.y20e{bottom:495.300000px;}
.y1f5{bottom:495.450000px;}
.yf3{bottom:496.800000px;}
.y106{bottom:498.150000px;}
.yc6{bottom:498.600000px;}
.y84{bottom:499.650000px;}
.y11e{bottom:500.100000px;}
.y1d{bottom:500.130000px;}
.y5c{bottom:500.400000px;}
.y46{bottom:500.850000px;}
.ydb{bottom:501.450000px;}
.yb0{bottom:502.200000px;}
.y36{bottom:504.300000px;}
.y6f{bottom:505.800000px;}
.y9a{bottom:507.600000px;}
.y18e{bottom:507.900000px;}
.y1a9{bottom:509.400000px;}
.y172{bottom:511.200000px;}
.y1c4{bottom:512.550000px;}
.y20d{bottom:513.300000px;}
.y158{bottom:513.450000px;}
.y1db{bottom:513.750000px;}
.y11d{bottom:518.100000px;}
.y13b{bottom:520.500000px;}
.y35{bottom:523.050000px;}
.y18d{bottom:525.900000px;}
.yf2{bottom:527.100000px;}
.y1a8{bottom:527.850000px;}
.yc5{bottom:528.750000px;}
.y171{bottom:529.500000px;}
.y83{bottom:529.950000px;}
.y5b{bottom:531.000000px;}
.y1c3{bottom:531.300000px;}
.ye0{bottom:531.450000px;}
.y1da{bottom:532.050000px;}
.yda{bottom:532.500000px;}
.yaf{bottom:533.250000px;}
.y6e{bottom:535.650000px;}
.y11c{bottom:537.450000px;}
.y99{bottom:537.900000px;}
.y34{bottom:541.050000px;}
.y18c{bottom:544.350000px;}
.y1a7{bottom:546.450000px;}
.y13a{bottom:547.950000px;}
.y170{bottom:548.250000px;}
.y157{bottom:549.750000px;}
.y1f4{bottom:550.800000px;}
.y114{bottom:556.200000px;}
.yf1{bottom:558.000000px;}
.yc4{bottom:559.500000px;}
.y1d9{bottom:559.800000px;}
.y1c2{bottom:560.250000px;}
.y82{bottom:560.550000px;}
.ydf{bottom:561.600000px;}
.y5a{bottom:562.050000px;}
.yae{bottom:563.100000px;}
.y18b{bottom:563.400000px;}
.y6d{bottom:566.250000px;}
.y139{bottom:566.550000px;}
.y156{bottom:567.750000px;}
.y98{bottom:568.050000px;}
.y45{bottom:569.250000px;}
.y20c{bottom:569.550000px;}
.y1c{bottom:569.580000px;}
.y1f3{bottom:569.850000px;}
.y1a6{bottom:573.750000px;}
.y226{bottom:574.950000px;}
.y11b{bottom:576.000000px;}
.y138{bottom:584.550000px;}
.y225{bottom:585.000000px;}
.y113{bottom:586.800000px;}
.y155{bottom:587.850000px;}
.y1c1{bottom:588.150000px;}
.yf0{bottom:588.300000px;}
.y1f2{bottom:588.600000px;}
.y105{bottom:589.650000px;}
.yc3{bottom:590.100000px;}
.y33{bottom:590.700000px;}
.y18a{bottom:591.450000px;}
.y59{bottom:592.200000px;}
.yde{bottom:592.500000px;}
.yad{bottom:593.250000px;}
.yd9{bottom:593.700000px;}
.y6c{bottom:596.850000px;}
.y97{bottom:598.350000px;}
.y137{bottom:602.250000px;}
.y16f{bottom:603.000000px;}
.y1a5{bottom:603.450000px;}
.y1c0{bottom:605.850000px;}
.y1f1{bottom:606.900000px;}
.y1d8{bottom:607.350000px;}
.y20b{bottom:608.700000px;}
.y11a{bottom:611.700000px;}
.y112{bottom:616.950000px;}
.y189{bottom:618.450000px;}
.yef{bottom:618.900000px;}
.y1a4{bottom:619.950000px;}
.y104{bottom:620.550000px;}
.y136{bottom:621.000000px;}
.y81{bottom:621.300000px;}
.yc2{bottom:621.450000px;}
.y58{bottom:622.500000px;}
.ydd{bottom:623.250000px;}
.yac{bottom:623.850000px;}
.y20a{bottom:624.150000px;}
.yd8{bottom:624.300000px;}
.y1bf{bottom:624.900000px;}
.y154{bottom:625.050000px;}
.y1f0{bottom:625.650000px;}
.y1d7{bottom:626.100000px;}
.y6b{bottom:627.150000px;}
.y96{bottom:629.250000px;}
.y223{bottom:633.600000px;}
.y188{bottom:637.500000px;}
.y224{bottom:637.950000px;}
.y1a3{bottom:638.700000px;}
.y135{bottom:640.050000px;}
.y153{bottom:641.550000px;}
.y1be{bottom:643.350000px;}
.y1ef{bottom:644.400000px;}
.ya{bottom:646.980000px;}
.y111{bottom:647.550000px;}
.yee{bottom:649.050000px;}
.y119{bottom:649.800000px;}
.y103{bottom:651.150000px;}
.y80{bottom:651.900000px;}
.yc1{bottom:652.650000px;}
.y57{bottom:653.400000px;}
.yab{bottom:654.450000px;}
.yd7{bottom:655.200000px;}
.y187{bottom:655.950000px;}
.y1a2{bottom:657.000000px;}
.y95{bottom:659.250000px;}
.y1bd{bottom:661.650000px;}
.y152{bottom:662.100000px;}
.y1ee{bottom:662.850000px;}
.y1d6{bottom:663.750000px;}
.y29{bottom:667.800000px;}
.y25{bottom:668.250000px;}
.y134{bottom:668.550000px;}
.y209{bottom:669.900000px;}
.y44{bottom:674.250000px;}
.y186{bottom:674.550000px;}
.y1a1{bottom:675.300000px;}
.y16e{bottom:677.550000px;}
.y110{bottom:678.150000px;}
.y32{bottom:679.650000px;}
.yed{bottom:680.100000px;}
.y151{bottom:681.150000px;}
.y102{bottom:681.750000px;}
.y7f{bottom:682.500000px;}
.yc0{bottom:682.950000px;}
.y56{bottom:684.000000px;}
.yaa{bottom:685.050000px;}
.yd6{bottom:685.800000px;}
.y118{bottom:686.850000px;}
.y94{bottom:689.850000px;}
.y208{bottom:690.750000px;}
.y1ed{bottom:691.200000px;}
.y185{bottom:693.000000px;}
.y133{bottom:696.150000px;}
.y222{bottom:697.650000px;}
.y150{bottom:699.450000px;}
.y9{bottom:700.230000px;}
.y1a0{bottom:703.500000px;}
.y117{bottom:706.350000px;}
.y27{bottom:707.400000px;}
.y10f{bottom:708.750000px;}
.yec{bottom:710.250000px;}
.y8{bottom:711.780000px;}
.y7e{bottom:712.800000px;}
.ybf{bottom:713.250000px;}
.y221{bottom:713.850000px;}
.y132{bottom:715.350000px;}
.y55{bottom:715.650000px;}
.ya9{bottom:716.100000px;}
.yd5{bottom:716.850000px;}
.y207{bottom:717.450000px;}
.y7{bottom:717.480000px;}
.y14f{bottom:717.750000px;}
.y1ec{bottom:718.500000px;}
.y6a{bottom:719.250000px;}
.y93{bottom:719.700000px;}
.y1d5{bottom:720.000000px;}
.y28{bottom:722.250000px;}
.y6{bottom:723.930000px;}
.y116{bottom:724.350000px;}
.y43{bottom:724.650000px;}
.y24{bottom:725.100000px;}
.y10e{bottom:726.750000px;}
.y184{bottom:729.750000px;}
.y19f{bottom:730.500000px;}
.y14e{bottom:731.550000px;}
.y16d{bottom:733.350000px;}
.y1bc{bottom:734.100000px;}
.y1eb{bottom:734.850000px;}
.y31{bottom:735.750000px;}
.y92{bottom:738.750000px;}
.y1ea{bottom:741.150000px;}
.y115{bottom:743.100000px;}
.y183{bottom:750.900000px;}
.y1ba{bottom:755.700000px;}
.y2{bottom:759.630000px;}
.y30{bottom:762.750000px;}
.y5{bottom:763.230000px;}
.y1{bottom:769.680000px;}
.y4{bottom:783.030000px;}
.y26{bottom:795.600000px;}
.y3{bottom:797.730000px;}
.y21f{bottom:802.800000px;}
.y21e{bottom:803.550000px;}
.y220{bottom:807.450000px;}
.h1f{height:17.824219px;}
.ha{height:18.351562px;}
.h3{height:20.052246px;}
.h1a{height:22.280273px;}
.he{height:23.261719px;}
.h8{height:26.169434px;}
.h1b{height:27.363281px;}
.h17{height:29.894262px;}
.h10{height:31.192383px;}
.h1d{height:33.420410px;}
.h12{height:35.572266px;}
.h16{height:40.500000px;}
.h15{height:40.708008px;}
.h1e{height:43.773926px;}
.h18{height:43.781250px;}
.h5{height:45.878906px;}
.h6{height:45.991172px;}
.h19{height:47.942871px;}
.hc{height:49.593750px;}
.h2{height:51.990234px;}
.h9{height:58.154297px;}
.h1c{height:60.199219px;}
.h13{height:62.088082px;}
.hf{height:68.408203px;}
.h11{height:78.184993px;}
.h4{height:79.353516px;}
.hd{height:84.826172px;}
.h14{height:85.426172px;}
.h7{height:90.298828px;}
.hb{height:810.000000px;}
.h1{height:834.000000px;}
.h0{height:834.150000px;}
.w8{width:541.425000px;}
.w9{width:541.500000px;}
.w7{width:550.500000px;}
.w6{width:550.800000px;}
.w5{width:577.500000px;}
.w4{width:577.800000px;}
.w2{width:587.175000px;}
.w3{width:587.250000px;}
.w0{width:623.850000px;}
.w1{width:624.000000px;}
.x0{left:0.000000px;}
.x8{left:5.400000px;}
.xb0{left:6.450000px;}
.xaf{left:11.550000px;}
.x17{left:13.350000px;}
.x18{left:19.800000px;}
.x5d{left:20.850000px;}
.x19{left:22.350000px;}
.x5c{left:23.850000px;}
.x23{left:27.450000px;}
.x9{left:29.250000px;}
.x51{left:30.600000px;}
.x50{left:31.650000px;}
.x3d{left:34.200000px;}
.x3e{left:36.000000px;}
.x31{left:37.500000px;}
.x3f{left:38.550000px;}
.x40{left:39.600000px;}
.x55{left:40.650000px;}
.x56{left:41.850000px;}
.x34{left:43.200000px;}
.x61{left:44.250000px;}
.x36{left:45.300000px;}
.x93{left:50.400000px;}
.x92{left:51.750000px;}
.x90{left:53.550000px;}
.x5b{left:54.750000px;}
.x1f{left:56.550000px;}
.x3a{left:58.050000px;}
.x59{left:59.400000px;}
.x58{left:60.450000px;}
.x30{left:61.500000px;}
.x53{left:63.000000px;}
.x52{left:64.800000px;}
.x45{left:66.150000px;}
.x44{left:67.350000px;}
.x5f{left:68.400000px;}
.x41{left:69.750000px;}
.x43{left:71.550000px;}
.x42{left:72.750000px;}
.x35{left:74.550000px;}
.x9b{left:76.350000px;}
.x70{left:77.700000px;}
.x71{left:78.900000px;}
.x91{left:79.950000px;}
.x73{left:81.000000px;}
.x75{left:82.800000px;}
.x76{left:83.850000px;}
.x54{left:85.050000px;}
.x69{left:87.450000px;}
.x8c{left:90.000000px;}
.x66{left:91.500000px;}
.x4f{left:93.300000px;}
.x98{left:95.700000px;}
.x89{left:96.750000px;}
.xa{left:97.950000px;}
.x6{left:99.000000px;}
.x6f{left:100.050000px;}
.x33{left:101.550000px;}
.x5a{left:103.650000px;}
.x67{left:105.450000px;}
.xf{left:108.000000px;}
.x2a{left:109.050000px;}
.x8f{left:110.100000px;}
.x57{left:111.300000px;}
.x60{left:113.400000px;}
.x79{left:114.900000px;}
.x7a{left:115.950000px;}
.x46{left:117.300000px;}
.x7d{left:119.100000px;}
.x7e{left:120.150000px;}
.x9a{left:121.350000px;}
.x80{left:123.150000px;}
.x82{left:124.500000px;}
.x64{left:125.700000px;}
.x6c{left:126.750000px;}
.x6d{left:127.800000px;}
.x2f{left:129.600000px;}
.x95{left:133.200000px;}
.x85{left:134.700000px;}
.x72{left:136.350000px;}
.x9e{left:137.850000px;}
.x65{left:139.050000px;}
.xa3{left:140.400000px;}
.x78{left:141.750000px;}
.xa0{left:142.950000px;}
.x32{left:146.550000px;}
.x7c{left:147.600000px;}
.x99{left:149.400000px;}
.x3b{left:151.350000px;}
.x8a{left:153.000000px;}
.x6b{left:154.050000px;}
.x26{left:155.550000px;}
.x38{left:159.900000px;}
.x13{left:163.500000px;}
.x24{left:165.600000px;}
.x7{left:168.450000px;}
.x14{left:171.450000px;}
.x1{left:172.800000px;}
.x47{left:173.850000px;}
.x39{left:174.900000px;}
.x16{left:177.150000px;}
.xa2{left:178.350000px;}
.x84{left:180.750000px;}
.x29{left:182.850000px;}
.xa8{left:187.200000px;}
.xa5{left:188.700000px;}
.xa9{left:190.800000px;}
.x15{left:192.150000px;}
.xa7{left:197.700000px;}
.x2{left:200.250000px;}
.xaa{left:202.050000px;}
.x8d{left:205.650000px;}
.x5e{left:208.350000px;}
.x6a{left:212.850000px;}
.x2e{left:213.900000px;}
.x3c{left:216.750000px;}
.x9c{left:217.800000px;}
.x5{left:218.850000px;}
.x97{left:221.700000px;}
.x1e{left:224.250000px;}
.xa4{left:225.450000px;}
.x9d{left:229.350000px;}
.x1b{left:231.750000px;}
.x8b{left:233.250000px;}
.x94{left:234.750000px;}
.x4d{left:237.300000px;}
.x12{left:239.400000px;}
.x6e{left:240.900000px;}
.x8e{left:242.550000px;}
.x22{left:244.500000px;}
.x86{left:247.050000px;}
.x7b{left:250.650000px;}
.x74{left:252.150000px;}
.x3{left:255.900000px;}
.xa6{left:258.450000px;}
.x77{left:260.250000px;}
.x28{left:262.050000px;}
.xab{left:265.350000px;}
.x11{left:267.900000px;}
.x83{left:270.450000px;}
.x7f{left:271.800000px;}
.x2b{left:275.400000px;}
.x10{left:281.850000px;}
.xae{left:289.350000px;}
.x4a{left:293.100000px;}
.x1a{left:301.350000px;}
.x4e{left:303.150000px;}
.x49{left:306.000000px;}
.x62{left:313.650000px;}
.x63{left:318.600000px;}
.x27{left:323.250000px;}
.x87{left:330.450000px;}
.x21{left:333.300000px;}
.x88{left:339.450000px;}
.x25{left:347.850000px;}
.xb5{left:355.626000px;}
.x2c{left:367.200000px;}
.xb1{left:384.450000px;}
.x4b{left:388.050000px;}
.xad{left:389.250000px;}
.xb2{left:391.350000px;}
.xe{left:400.050000px;}
.x4c{left:404.700000px;}
.x48{left:406.800000px;}
.x1d{left:408.150000px;}
.x37{left:412.200000px;}
.xb3{left:413.700000px;}
.x1c{left:415.050000px;}
.xb4{left:418.650000px;}
.xb{left:423.300000px;}
.x4{left:439.200000px;}
.x9f{left:441.450000px;}
.x81{left:446.400000px;}
.x68{left:449.250000px;}
.x2d{left:451.050000px;}
.x96{left:452.250000px;}
.xb6{left:453.949500px;}
.xc{left:471.900000px;}
.xac{left:477.750000px;}
.x20{left:503.250000px;}
.xd{left:519.450000px;}
.xa1{left:527.400000px;}
@media print{
.v1{vertical-align:-22.933333pt;}
.v3{vertical-align:-1.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.ls13{letter-spacing:-8.000000pt;}
.ls16{letter-spacing:-5.346384pt;}
.ls12{letter-spacing:-5.333333pt;}
.ls6{letter-spacing:-2.666667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.522667pt;}
.ls21{letter-spacing:0.853333pt;}
.ls31{letter-spacing:1.333333pt;}
.ls2e{letter-spacing:1.354667pt;}
.ls1f{letter-spacing:1.920000pt;}
.ls2b{letter-spacing:1.989333pt;}
.ls3{letter-spacing:2.666667pt;}
.ls3f{letter-spacing:2.882667pt;}
.ls1d{letter-spacing:2.986667pt;}
.ls38{letter-spacing:3.093333pt;}
.ls1e{letter-spacing:3.520000pt;}
.ls20{letter-spacing:4.053333pt;}
.ls1a{letter-spacing:4.586667pt;}
.ls7{letter-spacing:4.603733pt;}
.ls29{letter-spacing:5.013333pt;}
.ls3e{letter-spacing:5.146667pt;}
.ls5{letter-spacing:5.218667pt;}
.ls4{letter-spacing:5.333333pt;}
.ls23{letter-spacing:5.653333pt;}
.ls2c{letter-spacing:5.813333pt;}
.ls1b{letter-spacing:6.186667pt;}
.ls1c{letter-spacing:6.720000pt;}
.ls3c{letter-spacing:7.044267pt;}
.ls22{letter-spacing:7.490667pt;}
.ls3d{letter-spacing:7.756800pt;}
.ls32{letter-spacing:8.000000pt;}
.ls24{letter-spacing:9.202667pt;}
.ls15{letter-spacing:9.410667pt;}
.lsd{letter-spacing:9.546667pt;}
.ls9{letter-spacing:9.765333pt;}
.ls34{letter-spacing:10.135467pt;}
.ls33{letter-spacing:10.298667pt;}
.ls2d{letter-spacing:10.832000pt;}
.ls2f{letter-spacing:11.502933pt;}
.ls28{letter-spacing:11.898667pt;}
.lsb{letter-spacing:13.280000pt;}
.ls40{letter-spacing:14.576000pt;}
.ls11{letter-spacing:16.000000pt;}
.ls30{letter-spacing:16.405333pt;}
.ls39{letter-spacing:16.570667pt;}
.ls26{letter-spacing:18.298667pt;}
.ls3a{letter-spacing:18.722667pt;}
.ls36{letter-spacing:19.445333pt;}
.lsf{letter-spacing:20.733333pt;}
.lsc{letter-spacing:21.200000pt;}
.ls2{letter-spacing:21.333333pt;}
.ls42{letter-spacing:22.125333pt;}
.ls25{letter-spacing:22.456000pt;}
.lsa{letter-spacing:23.522667pt;}
.ls14{letter-spacing:23.762667pt;}
.ls17{letter-spacing:24.200000pt;}
.lse{letter-spacing:26.600000pt;}
.ls8{letter-spacing:27.789333pt;}
.ls2a{letter-spacing:30.456000pt;}
.ls27{letter-spacing:30.688000pt;}
.ls0{letter-spacing:31.232000pt;}
.ls10{letter-spacing:33.133333pt;}
.ls19{letter-spacing:37.800000pt;}
.ls37{letter-spacing:38.154667pt;}
.ls18{letter-spacing:39.933333pt;}
.ls3b{letter-spacing:112.056000pt;}
.ls41{letter-spacing:193.600000pt;}
.ws6{word-spacing:-32.144000pt;}
.ws4d{word-spacing:-28.797333pt;}
.ws44{word-spacing:-28.210667pt;}
.ws4e{word-spacing:-28.005333pt;}
.ws26{word-spacing:-25.256000pt;}
.ws16{word-spacing:-22.400000pt;}
.ws3{word-spacing:-21.304000pt;}
.ws25{word-spacing:-21.271467pt;}
.ws27{word-spacing:-21.208000pt;}
.wse{word-spacing:-19.922667pt;}
.ws15{word-spacing:-18.733333pt;}
.ws24{word-spacing:-18.541333pt;}
.ws2f{word-spacing:-17.818667pt;}
.ws7{word-spacing:-17.544000pt;}
.ws20{word-spacing:-17.244762pt;}
.ws4{word-spacing:-16.693333pt;}
.ws19{word-spacing:-15.520000pt;}
.ws46{word-spacing:-15.101867pt;}
.ws49{word-spacing:-14.000000pt;}
.ws2e{word-spacing:-13.045333pt;}
.ws36{word-spacing:-12.949333pt;}
.ws1{word-spacing:-12.210667pt;}
.wsa{word-spacing:-12.005333pt;}
.ws4b{word-spacing:-11.360000pt;}
.ws48{word-spacing:-11.200000pt;}
.ws11{word-spacing:-10.969600pt;}
.ws1d{word-spacing:-10.637333pt;}
.ws45{word-spacing:-10.378667pt;}
.ws14{word-spacing:-9.768533pt;}
.ws1c{word-spacing:-9.493333pt;}
.ws47{word-spacing:-8.805333pt;}
.ws34{word-spacing:-8.354667pt;}
.ws2d{word-spacing:-8.302933pt;}
.wsf{word-spacing:-8.018667pt;}
.ws21{word-spacing:-7.917333pt;}
.ws8{word-spacing:-6.672000pt;}
.ws3d{word-spacing:-6.426667pt;}
.ws1a{word-spacing:-6.026667pt;}
.ws22{word-spacing:-5.600000pt;}
.ws17{word-spacing:-5.533333pt;}
.ws29{word-spacing:-5.265067pt;}
.ws1b{word-spacing:-5.066667pt;}
.ws13{word-spacing:-5.026133pt;}
.ws23{word-spacing:-4.906667pt;}
.ws28{word-spacing:-4.805333pt;}
.ws10{word-spacing:-4.488533pt;}
.ws33{word-spacing:-4.002133pt;}
.ws39{word-spacing:-3.912533pt;}
.ws31{word-spacing:-3.597333pt;}
.ws2a{word-spacing:-3.546667pt;}
.ws40{word-spacing:-3.498667pt;}
.ws3a{word-spacing:-3.496000pt;}
.wsd{word-spacing:-3.493333pt;}
.ws18{word-spacing:-3.466667pt;}
.ws42{word-spacing:-3.445333pt;}
.ws3e{word-spacing:-3.404800pt;}
.ws2b{word-spacing:-3.374933pt;}
.ws3b{word-spacing:-3.242667pt;}
.ws41{word-spacing:-3.040000pt;}
.ws12{word-spacing:-2.922667pt;}
.ws38{word-spacing:-2.628267pt;}
.ws2c{word-spacing:-2.359467pt;}
.ws3f{word-spacing:-2.090667pt;}
.ws30{word-spacing:-1.976000pt;}
.ws37{word-spacing:-1.612800pt;}
.ws35{word-spacing:-1.360000pt;}
.ws32{word-spacing:-0.268800pt;}
.ws1e{word-spacing:-0.110933pt;}
.ws3c{word-spacing:-0.106667pt;}
.ws9{word-spacing:0.000000pt;}
.ws0{word-spacing:0.304000pt;}
.ws1f{word-spacing:3.217067pt;}
.ws5{word-spacing:5.104000pt;}
.ws2{word-spacing:10.589333pt;}
.ws4c{word-spacing:18.381333pt;}
.ws43{word-spacing:62.584000pt;}
.ws4f{word-spacing:85.778667pt;}
.wsc{word-spacing:85.968000pt;}
.ws4a{word-spacing:303.253333pt;}
.wsb{word-spacing:330.621333pt;}
._2c{margin-left:-49.333333pt;}
._2f{margin-left:-46.664000pt;}
._39{margin-left:-45.296000pt;}
._21{margin-left:-44.288000pt;}
._59{margin-left:-43.168000pt;}
._1e{margin-left:-41.749333pt;}
._33{margin-left:-40.280000pt;}
._8c{margin-left:-39.109333pt;}
._36{margin-left:-37.482667pt;}
._70{margin-left:-35.091537pt;}
._85{margin-left:-34.149333pt;}
._60{margin-left:-32.869333pt;}
._42{margin-left:-28.242667pt;}
._62{margin-left:-27.325333pt;}
._1a{margin-left:-25.434667pt;}
._16{margin-left:-24.528000pt;}
._18{margin-left:-23.064000pt;}
._95{margin-left:-22.149333pt;}
._1b{margin-left:-21.138667pt;}
._2{margin-left:-19.709333pt;}
._86{margin-left:-18.769993pt;}
._12{margin-left:-17.856000pt;}
._1d{margin-left:-16.664000pt;}
._1c{margin-left:-15.413333pt;}
._14{margin-left:-14.112000pt;}
._20{margin-left:-12.474667pt;}
._e{margin-left:-10.933333pt;}
._5{margin-left:-9.152000pt;}
._3{margin-left:-7.549333pt;}
._3d{margin-left:-6.520000pt;}
._4{margin-left:-5.472000pt;}
._1f{margin-left:-3.698667pt;}
._3c{margin-left:-2.706667pt;}
._11{margin-left:-1.701333pt;}
._13{width:1.584000pt;}
._48{width:2.534204pt;}
._15{width:3.490667pt;}
._2a{width:4.506667pt;}
._2d{width:6.265796pt;}
._5c{width:7.211537pt;}
._1{width:8.461333pt;}
._23{width:9.984000pt;}
._27{width:11.280870pt;}
._24{width:12.554667pt;}
._17{width:13.560000pt;}
._3e{width:14.599130pt;}
._8{width:15.624000pt;}
._a{width:16.968000pt;}
._32{width:17.986667pt;}
._0{width:18.898667pt;}
._3b{width:20.245333pt;}
._d{width:21.240000pt;}
._7{width:22.680000pt;}
._52{width:24.252463pt;}
._50{width:25.626667pt;}
._5e{width:26.519270pt;}
._37{width:27.493333pt;}
._6d{width:28.432056pt;}
._3a{width:29.358204pt;}
._30{width:30.706667pt;}
._22{width:32.072000pt;}
._68{width:33.093333pt;}
._61{width:34.269333pt;}
._41{width:35.274667pt;}
._4f{width:36.761796pt;}
._6b{width:37.664000pt;}
._46{width:38.910204pt;}
._7a{width:39.804322pt;}
._65{width:40.729796pt;}
._35{width:42.216000pt;}
._5f{width:43.333333pt;}
._72{width:44.362722pt;}
._6{width:45.269333pt;}
._6f{width:46.306667pt;}
._5d{width:47.221333pt;}
._69{width:48.296000pt;}
._6a{width:49.330834pt;}
._9{width:50.400000pt;}
._4a{width:51.480000pt;}
._5a{width:53.133333pt;}
._71{width:54.109333pt;}
._56{width:55.482667pt;}
._7e{width:57.392870pt;}
._6c{width:58.816000pt;}
._7c{width:60.322667pt;}
._45{width:62.773333pt;}
._b{width:63.744000pt;}
._26{width:66.272000pt;}
._92{width:68.235678pt;}
._31{width:70.192000pt;}
._76{width:72.456000pt;}
._44{width:74.554667pt;}
._2e{width:77.013333pt;}
._8f{width:80.205333pt;}
._63{width:83.130667pt;}
._6e{width:84.237333pt;}
._75{width:85.986722pt;}
._82{width:87.770667pt;}
._28{width:89.658860pt;}
._f{width:91.200000pt;}
._53{width:92.837333pt;}
._51{width:94.746667pt;}
._c{width:100.226667pt;}
._79{width:104.949333pt;}
._3f{width:107.794667pt;}
._55{width:110.165333pt;}
._40{width:112.085333pt;}
._54{width:114.288000pt;}
._67{width:119.624000pt;}
._91{width:120.721993pt;}
._84{width:121.626722pt;}
._73{width:125.231156pt;}
._49{width:126.345796pt;}
._8d{width:133.173333pt;}
._8b{width:134.246204pt;}
._47{width:139.082667pt;}
._4e{width:143.496000pt;}
._29{width:146.768000pt;}
._94{width:156.080926pt;}
._7d{width:157.716463pt;}
._8a{width:161.565193pt;}
._5b{width:164.880000pt;}
._87{width:170.232730pt;}
._77{width:175.359130pt;}
._93{width:177.269389pt;}
._34{width:184.154667pt;}
._64{width:187.042667pt;}
._78{width:194.749389pt;}
._88{width:203.465937pt;}
._7f{width:206.188463pt;}
._89{width:216.957333pt;}
._74{width:219.112870pt;}
._38{width:231.429333pt;}
._57{width:239.714667pt;}
._2b{width:245.018667pt;}
._4c{width:252.514667pt;}
._81{width:254.024000pt;}
._7b{width:258.298667pt;}
._8e{width:272.807185pt;}
._80{width:300.149333pt;}
._90{width:334.490667pt;}
._83{width:346.498667pt;}
._4d{width:347.426667pt;}
._25{width:350.472000pt;}
._4b{width:449.085333pt;}
._66{width:509.909333pt;}
._58{width:601.043537pt;}
._10{width:676.621333pt;}
._19{width:817.848000pt;}
._43{width:1279.439806pt;}
.fs18{font-size:19.200000pt;}
.fs1{font-size:21.333333pt;}
.fs2{font-size:24.000000pt;}
.fs17{font-size:26.666667pt;}
.fs11{font-size:27.733333pt;}
.fs1c{font-size:29.333333pt;}
.fsd{font-size:29.866667pt;}
.fs10{font-size:34.666667pt;}
.fs15{font-size:34.751496pt;}
.fsc{font-size:37.333333pt;}
.fs19{font-size:40.000000pt;}
.fsb{font-size:40.533333pt;}
.fs16{font-size:42.666667pt;}
.fs1b{font-size:44.800000pt;}
.fs14{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:53.463840pt;}
.fs8{font-size:56.000000pt;}
.fs1a{font-size:58.666667pt;}
.fs9{font-size:61.333333pt;}
.fs13{font-size:66.133333pt;}
.fse{font-size:66.666667pt;}
.fs12{font-size:72.176184pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:77.333333pt;}
.fsa{font-size:82.666667pt;}
.fs7{font-size:88.000000pt;}
.fsf{font-size:90.888529pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:0.026667pt;}
.y2e{bottom:12.800000pt;}
.y23{bottom:14.693333pt;}
.y1b{bottom:15.760000pt;}
.y2f{bottom:19.866667pt;}
.y18{bottom:37.493333pt;}
.y17{bottom:46.160000pt;}
.y19{bottom:52.826667pt;}
.y16{bottom:53.093333pt;}
.y22{bottom:55.093333pt;}
.y14d{bottom:57.600000pt;}
.y1d4{bottom:59.200000pt;}
.y16c{bottom:59.866667pt;}
.y101{bottom:60.533333pt;}
.y21d{bottom:60.800000pt;}
.y206{bottom:61.066667pt;}
.yd4{bottom:64.266667pt;}
.y3f{bottom:64.666667pt;}
.y54{bottom:65.600000pt;}
.y91{bottom:66.533333pt;}
.ybe{bottom:67.200000pt;}
.y7d{bottom:73.333333pt;}
.y1bb{bottom:74.800000pt;}
.y182{bottom:75.200000pt;}
.ya8{bottom:75.466667pt;}
.y15{bottom:75.893333pt;}
.y1d3{bottom:76.133333pt;}
.y14{bottom:76.560000pt;}
.y69{bottom:77.466667pt;}
.y205{bottom:77.733333pt;}
.y21c{bottom:78.000000pt;}
.y16b{bottom:78.666667pt;}
.y14c{bottom:82.800000pt;}
.y131{bottom:83.200000pt;}
.y22b{bottom:87.066667pt;}
.y100{bottom:87.733333pt;}
.y13{bottom:90.960000pt;}
.yd3{bottom:91.466667pt;}
.y10d{bottom:91.866667pt;}
.y1d2{bottom:92.800000pt;}
.y53{bottom:93.466667pt;}
.y90{bottom:93.733333pt;}
.yeb{bottom:94.400000pt;}
.ybd{bottom:94.666667pt;}
.y22a{bottom:96.933333pt;}
.y130{bottom:99.866667pt;}
.y7c{bottom:100.800000pt;}
.ya7{bottom:102.000000pt;}
.y16a{bottom:102.400000pt;}
.y19e{bottom:106.533333pt;}
.y14b{bottom:107.866667pt;}
.y1b9{bottom:108.133333pt;}
.y1d1{bottom:108.800000pt;}
.y1e9{bottom:109.466667pt;}
.y68{bottom:109.733333pt;}
.y21b{bottom:110.400000pt;}
.y204{bottom:110.800000pt;}
.yff{bottom:115.200000pt;}
.y181{bottom:116.533333pt;}
.yd2{bottom:118.666667pt;}
.y10c{bottom:119.066667pt;}
.y3e{bottom:120.000000pt;}
.y52{bottom:120.266667pt;}
.y8f{bottom:120.933333pt;}
.yea{bottom:121.600000pt;}
.ybc{bottom:121.866667pt;}
.y12{bottom:122.960000pt;}
.y19d{bottom:123.200000pt;}
.y1b8{bottom:125.200000pt;}
.y1d0{bottom:125.466667pt;}
.y1e8{bottom:126.000000pt;}
.y7b{bottom:127.333333pt;}
.y169{bottom:127.733333pt;}
.y21a{bottom:128.000000pt;}
.ya6{bottom:128.933333pt;}
.y12f{bottom:132.400000pt;}
.y11{bottom:134.693333pt;}
.y229{bottom:137.600000pt;}
.y19c{bottom:139.600000pt;}
.y1b7{bottom:141.466667pt;}
.y180{bottom:141.733333pt;}
.y67{bottom:142.666667pt;}
.yfe{bottom:142.800000pt;}
.y219{bottom:143.600000pt;}
.y203{bottom:144.000000pt;}
.y168{bottom:144.400000pt;}
.yd1{bottom:146.000000pt;}
.y8e{bottom:147.466667pt;}
.y51{bottom:147.866667pt;}
.ye9{bottom:148.400000pt;}
.ybb{bottom:149.066667pt;}
.ye{bottom:153.626667pt;}
.y7a{bottom:154.266667pt;}
.y19b{bottom:155.600000pt;}
.ya5{bottom:156.133333pt;}
.y1b6{bottom:157.466667pt;}
.y14a{bottom:157.733333pt;}
.y17f{bottom:158.400000pt;}
.y1e7{bottom:159.066667pt;}
.y218{bottom:160.000000pt;}
.y202{bottom:160.400000pt;}
.y167{bottom:160.666667pt;}
.y10{bottom:160.693333pt;}
.y12e{bottom:165.466667pt;}
.y228{bottom:166.666667pt;}
.yd{bottom:167.093333pt;}
.y66{bottom:167.600000pt;}
.yfd{bottom:169.600000pt;}
.y19a{bottom:172.133333pt;}
.yd0{bottom:172.800000pt;}
.y149{bottom:174.000000pt;}
.y17e{bottom:174.400000pt;}
.y50{bottom:174.666667pt;}
.y8d{bottom:175.066667pt;}
.ye8{bottom:175.600000pt;}
.yba{bottom:176.266667pt;}
.y217{bottom:176.666667pt;}
.y166{bottom:176.933333pt;}
.yf{bottom:180.160000pt;}
.y79{bottom:180.800000pt;}
.y12d{bottom:181.733333pt;}
.ya4{bottom:182.666667pt;}
.y2d{bottom:187.866667pt;}
.y199{bottom:188.533333pt;}
.y1b5{bottom:189.733333pt;}
.y148{bottom:190.400000pt;}
.y17d{bottom:191.333333pt;}
.y1cf{bottom:191.600000pt;}
.y1e6{bottom:192.666667pt;}
.y216{bottom:193.200000pt;}
.y165{bottom:193.333333pt;}
.y201{bottom:193.600000pt;}
.yfc{bottom:196.800000pt;}
.y12c{bottom:198.400000pt;}
.ycf{bottom:200.000000pt;}
.y65{bottom:200.400000pt;}
.y8c{bottom:201.866667pt;}
.y4f{bottom:202.000000pt;}
.ye7{bottom:202.533333pt;}
.yb9{bottom:203.466667pt;}
.y198{bottom:205.200000pt;}
.y147{bottom:206.666667pt;}
.y1b4{bottom:206.800000pt;}
.y17c{bottom:207.600000pt;}
.y78{bottom:208.000000pt;}
.y1e5{bottom:209.200000pt;}
.ya3{bottom:209.333333pt;}
.y164{bottom:209.600000pt;}
.y200{bottom:210.266667pt;}
.y12b{bottom:215.066667pt;}
.y21{bottom:216.693333pt;}
.y64{bottom:216.933333pt;}
.y3d{bottom:217.333333pt;}
.y197{bottom:221.466667pt;}
.y146{bottom:223.333333pt;}
.yfb{bottom:224.000000pt;}
.y1ce{bottom:224.933333pt;}
.y1e4{bottom:225.600000pt;}
.y1b3{bottom:226.000000pt;}
.y215{bottom:226.266667pt;}
.yce{bottom:227.200000pt;}
.y63{bottom:228.133333pt;}
.y8b{bottom:229.066667pt;}
.y4e{bottom:229.466667pt;}
.ye6{bottom:229.600000pt;}
.yb8{bottom:230.400000pt;}
.y12a{bottom:231.733333pt;}
.y163{bottom:234.933333pt;}
.y77{bottom:235.200000pt;}
.ya2{bottom:236.133333pt;}
.y145{bottom:239.333333pt;}
.y1b2{bottom:240.000000pt;}
.y1cd{bottom:241.200000pt;}
.y1e3{bottom:242.266667pt;}
.y1ff{bottom:243.600000pt;}
.y196{bottom:245.733333pt;}
.y129{bottom:248.000000pt;}
.y17b{bottom:249.333333pt;}
.yfa{bottom:251.200000pt;}
.y2c{bottom:254.000000pt;}
.ycd{bottom:254.400000pt;}
.y62{bottom:254.800000pt;}
.yc{bottom:255.360000pt;}
.y8a{bottom:256.000000pt;}
.y4d{bottom:256.266667pt;}
.ye5{bottom:256.533333pt;}
.yb7{bottom:257.600000pt;}
.y1e2{bottom:258.533333pt;}
.y162{bottom:259.200000pt;}
.y1fe{bottom:259.600000pt;}
.y76{bottom:262.000000pt;}
.ya1{bottom:263.333333pt;}
.y128{bottom:264.266667pt;}
.y195{bottom:271.066667pt;}
.y3c{bottom:272.666667pt;}
.y144{bottom:273.200000pt;}
.y17a{bottom:274.000000pt;}
.y1e1{bottom:275.066667pt;}
.y214{bottom:275.866667pt;}
.y1fd{bottom:276.133333pt;}
.y161{bottom:276.533333pt;}
.yf9{bottom:278.400000pt;}
.y2b{bottom:280.666667pt;}
.ycc{bottom:281.333333pt;}
.y127{bottom:281.600000pt;}
.y1cc{bottom:281.866667pt;}
.y61{bottom:282.533333pt;}
.y4c{bottom:283.466667pt;}
.yb6{bottom:284.800000pt;}
.y194{bottom:287.333333pt;}
.y1b1{bottom:288.400000pt;}
.y75{bottom:288.933333pt;}
.ya0{bottom:290.533333pt;}
.y1e0{bottom:291.466667pt;}
.y1fc{bottom:292.800000pt;}
.y160{bottom:293.200000pt;}
.y126{bottom:297.200000pt;}
.y3b{bottom:300.533333pt;}
.y193{bottom:304.000000pt;}
.yf8{bottom:305.333333pt;}
.y143{bottom:306.266667pt;}
.y179{bottom:306.533333pt;}
.y1df{bottom:307.866667pt;}
.y10b{bottom:308.133333pt;}
.ycb{bottom:308.800000pt;}
.y15f{bottom:309.466667pt;}
.y89{bottom:309.733333pt;}
.y60{bottom:310.133333pt;}
.ye4{bottom:310.400000pt;}
.y4b{bottom:310.666667pt;}
.yb5{bottom:311.600000pt;}
.y125{bottom:314.266667pt;}
.y2a{bottom:314.800000pt;}
.y74{bottom:315.866667pt;}
.y9f{bottom:317.466667pt;}
.y20{bottom:319.360000pt;}
.y142{bottom:320.933333pt;}
.y1b0{bottom:321.600000pt;}
.y178{bottom:323.200000pt;}
.y1de{bottom:324.800000pt;}
.y213{bottom:325.466667pt;}
.y15e{bottom:325.733333pt;}
.y1fb{bottom:326.400000pt;}
.y3a{bottom:327.333333pt;}
.y192{bottom:328.666667pt;}
.y124{bottom:330.800000pt;}
.y1cb{bottom:332.400000pt;}
.yf7{bottom:332.533333pt;}
.y10a{bottom:335.333333pt;}
.yca{bottom:336.000000pt;}
.y5f{bottom:336.666667pt;}
.y88{bottom:336.933333pt;}
.ye3{bottom:337.600000pt;}
.y4a{bottom:338.000000pt;}
.yb4{bottom:338.533333pt;}
.y141{bottom:338.800000pt;}
.y1dd{bottom:340.400000pt;}
.y212{bottom:340.800000pt;}
.y1af{bottom:341.200000pt;}
.y15d{bottom:342.133333pt;}
.y1fa{bottom:342.400000pt;}
.y73{bottom:342.666667pt;}
.y9e{bottom:344.400000pt;}
.y123{bottom:347.466667pt;}
.y177{bottom:347.866667pt;}
.y227{bottom:348.533333pt;}
.y1f{bottom:349.493333pt;}
.y191{bottom:352.933333pt;}
.y1ae{bottom:354.266667pt;}
.y39{bottom:354.533333pt;}
.y140{bottom:355.466667pt;}
.y1ca{bottom:357.066667pt;}
.y211{bottom:358.666667pt;}
.y1f9{bottom:359.066667pt;}
.yf6{bottom:360.133333pt;}
.y42{bottom:361.600000pt;}
.yc9{bottom:362.266667pt;}
.y109{bottom:362.533333pt;}
.y87{bottom:363.466667pt;}
.y5e{bottom:363.866667pt;}
.y49{bottom:364.533333pt;}
.yb3{bottom:365.466667pt;}
.y15c{bottom:368.933333pt;}
.y72{bottom:369.600000pt;}
.y9d{bottom:370.933333pt;}
.y13f{bottom:371.866667pt;}
.y176{bottom:372.800000pt;}
.y1c9{bottom:373.066667pt;}
.y210{bottom:374.666667pt;}
.y1f8{bottom:375.066667pt;}
.y41{bottom:378.266667pt;}
.y122{bottom:379.200000pt;}
.y1ad{bottom:379.866667pt;}
.y38{bottom:381.466667pt;}
.yf5{bottom:386.933333pt;}
.y1e{bottom:387.493333pt;}
.y108{bottom:389.200000pt;}
.yc8{bottom:389.466667pt;}
.y1c8{bottom:389.733333pt;}
.y86{bottom:390.000000pt;}
.y5d{bottom:390.400000pt;}
.y15b{bottom:390.800000pt;}
.y48{bottom:391.066667pt;}
.ye2{bottom:391.733333pt;}
.yb{bottom:392.026667pt;}
.yb2{bottom:392.666667pt;}
.y190{bottom:394.266667pt;}
.y121{bottom:395.466667pt;}
.y71{bottom:396.133333pt;}
.y13e{bottom:396.400000pt;}
.y175{bottom:397.200000pt;}
.y9c{bottom:398.133333pt;}
.y40{bottom:399.066667pt;}
.y1ac{bottom:403.466667pt;}
.y37{bottom:404.800000pt;}
.y1c7{bottom:406.400000pt;}
.y1f7{bottom:407.733333pt;}
.y120{bottom:412.400000pt;}
.yf4{bottom:413.733333pt;}
.y15a{bottom:414.800000pt;}
.y107{bottom:416.266667pt;}
.yc7{bottom:416.400000pt;}
.y85{bottom:417.333333pt;}
.y47{bottom:418.000000pt;}
.ydc{bottom:418.266667pt;}
.ye1{bottom:418.533333pt;}
.yb1{bottom:419.200000pt;}
.y13d{bottom:420.133333pt;}
.y1ab{bottom:420.400000pt;}
.y174{bottom:421.466667pt;}
.y1c6{bottom:422.400000pt;}
.y70{bottom:423.066667pt;}
.y1dc{bottom:423.600000pt;}
.y1f6{bottom:424.000000pt;}
.y20f{bottom:424.266667pt;}
.y9b{bottom:424.666667pt;}
.y11f{bottom:428.800000pt;}
.y18f{bottom:435.200000pt;}
.y1aa{bottom:437.466667pt;}
.y13c{bottom:437.733333pt;}
.y173{bottom:438.400000pt;}
.y1c5{bottom:439.066667pt;}
.y159{bottom:440.000000pt;}
.y20e{bottom:440.266667pt;}
.y1f5{bottom:440.400000pt;}
.yf3{bottom:441.600000pt;}
.y106{bottom:442.800000pt;}
.yc6{bottom:443.200000pt;}
.y84{bottom:444.133333pt;}
.y11e{bottom:444.533333pt;}
.y1d{bottom:444.560000pt;}
.y5c{bottom:444.800000pt;}
.y46{bottom:445.200000pt;}
.ydb{bottom:445.733333pt;}
.yb0{bottom:446.400000pt;}
.y36{bottom:448.266667pt;}
.y6f{bottom:449.600000pt;}
.y9a{bottom:451.200000pt;}
.y18e{bottom:451.466667pt;}
.y1a9{bottom:452.800000pt;}
.y172{bottom:454.400000pt;}
.y1c4{bottom:455.600000pt;}
.y20d{bottom:456.266667pt;}
.y158{bottom:456.400000pt;}
.y1db{bottom:456.666667pt;}
.y11d{bottom:460.533333pt;}
.y13b{bottom:462.666667pt;}
.y35{bottom:464.933333pt;}
.y18d{bottom:467.466667pt;}
.yf2{bottom:468.533333pt;}
.y1a8{bottom:469.200000pt;}
.yc5{bottom:470.000000pt;}
.y171{bottom:470.666667pt;}
.y83{bottom:471.066667pt;}
.y5b{bottom:472.000000pt;}
.y1c3{bottom:472.266667pt;}
.ye0{bottom:472.400000pt;}
.y1da{bottom:472.933333pt;}
.yda{bottom:473.333333pt;}
.yaf{bottom:474.000000pt;}
.y6e{bottom:476.133333pt;}
.y11c{bottom:477.733333pt;}
.y99{bottom:478.133333pt;}
.y34{bottom:480.933333pt;}
.y18c{bottom:483.866667pt;}
.y1a7{bottom:485.733333pt;}
.y13a{bottom:487.066667pt;}
.y170{bottom:487.333333pt;}
.y157{bottom:488.666667pt;}
.y1f4{bottom:489.600000pt;}
.y114{bottom:494.400000pt;}
.yf1{bottom:496.000000pt;}
.yc4{bottom:497.333333pt;}
.y1d9{bottom:497.600000pt;}
.y1c2{bottom:498.000000pt;}
.y82{bottom:498.266667pt;}
.ydf{bottom:499.200000pt;}
.y5a{bottom:499.600000pt;}
.yae{bottom:500.533333pt;}
.y18b{bottom:500.800000pt;}
.y6d{bottom:503.333333pt;}
.y139{bottom:503.600000pt;}
.y156{bottom:504.666667pt;}
.y98{bottom:504.933333pt;}
.y45{bottom:506.000000pt;}
.y20c{bottom:506.266667pt;}
.y1c{bottom:506.293333pt;}
.y1f3{bottom:506.533333pt;}
.y1a6{bottom:510.000000pt;}
.y226{bottom:511.066667pt;}
.y11b{bottom:512.000000pt;}
.y138{bottom:519.600000pt;}
.y225{bottom:520.000000pt;}
.y113{bottom:521.600000pt;}
.y155{bottom:522.533333pt;}
.y1c1{bottom:522.800000pt;}
.yf0{bottom:522.933333pt;}
.y1f2{bottom:523.200000pt;}
.y105{bottom:524.133333pt;}
.yc3{bottom:524.533333pt;}
.y33{bottom:525.066667pt;}
.y18a{bottom:525.733333pt;}
.y59{bottom:526.400000pt;}
.yde{bottom:526.666667pt;}
.yad{bottom:527.333333pt;}
.yd9{bottom:527.733333pt;}
.y6c{bottom:530.533333pt;}
.y97{bottom:531.866667pt;}
.y137{bottom:535.333333pt;}
.y16f{bottom:536.000000pt;}
.y1a5{bottom:536.400000pt;}
.y1c0{bottom:538.533333pt;}
.y1f1{bottom:539.466667pt;}
.y1d8{bottom:539.866667pt;}
.y20b{bottom:541.066667pt;}
.y11a{bottom:543.733333pt;}
.y112{bottom:548.400000pt;}
.y189{bottom:549.733333pt;}
.yef{bottom:550.133333pt;}
.y1a4{bottom:551.066667pt;}
.y104{bottom:551.600000pt;}
.y136{bottom:552.000000pt;}
.y81{bottom:552.266667pt;}
.yc2{bottom:552.400000pt;}
.y58{bottom:553.333333pt;}
.ydd{bottom:554.000000pt;}
.yac{bottom:554.533333pt;}
.y20a{bottom:554.800000pt;}
.yd8{bottom:554.933333pt;}
.y1bf{bottom:555.466667pt;}
.y154{bottom:555.600000pt;}
.y1f0{bottom:556.133333pt;}
.y1d7{bottom:556.533333pt;}
.y6b{bottom:557.466667pt;}
.y96{bottom:559.333333pt;}
.y223{bottom:563.200000pt;}
.y188{bottom:566.666667pt;}
.y224{bottom:567.066667pt;}
.y1a3{bottom:567.733333pt;}
.y135{bottom:568.933333pt;}
.y153{bottom:570.266667pt;}
.y1be{bottom:571.866667pt;}
.y1ef{bottom:572.800000pt;}
.ya{bottom:575.093333pt;}
.y111{bottom:575.600000pt;}
.yee{bottom:576.933333pt;}
.y119{bottom:577.600000pt;}
.y103{bottom:578.800000pt;}
.y80{bottom:579.466667pt;}
.yc1{bottom:580.133333pt;}
.y57{bottom:580.800000pt;}
.yab{bottom:581.733333pt;}
.yd7{bottom:582.400000pt;}
.y187{bottom:583.066667pt;}
.y1a2{bottom:584.000000pt;}
.y95{bottom:586.000000pt;}
.y1bd{bottom:588.133333pt;}
.y152{bottom:588.533333pt;}
.y1ee{bottom:589.200000pt;}
.y1d6{bottom:590.000000pt;}
.y29{bottom:593.600000pt;}
.y25{bottom:594.000000pt;}
.y134{bottom:594.266667pt;}
.y209{bottom:595.466667pt;}
.y44{bottom:599.333333pt;}
.y186{bottom:599.600000pt;}
.y1a1{bottom:600.266667pt;}
.y16e{bottom:602.266667pt;}
.y110{bottom:602.800000pt;}
.y32{bottom:604.133333pt;}
.yed{bottom:604.533333pt;}
.y151{bottom:605.466667pt;}
.y102{bottom:606.000000pt;}
.y7f{bottom:606.666667pt;}
.yc0{bottom:607.066667pt;}
.y56{bottom:608.000000pt;}
.yaa{bottom:608.933333pt;}
.yd6{bottom:609.600000pt;}
.y118{bottom:610.533333pt;}
.y94{bottom:613.200000pt;}
.y208{bottom:614.000000pt;}
.y1ed{bottom:614.400000pt;}
.y185{bottom:616.000000pt;}
.y133{bottom:618.800000pt;}
.y222{bottom:620.133333pt;}
.y150{bottom:621.733333pt;}
.y9{bottom:622.426667pt;}
.y1a0{bottom:625.333333pt;}
.y117{bottom:627.866667pt;}
.y27{bottom:628.800000pt;}
.y10f{bottom:630.000000pt;}
.yec{bottom:631.333333pt;}
.y8{bottom:632.693333pt;}
.y7e{bottom:633.600000pt;}
.ybf{bottom:634.000000pt;}
.y221{bottom:634.533333pt;}
.y132{bottom:635.866667pt;}
.y55{bottom:636.133333pt;}
.ya9{bottom:636.533333pt;}
.yd5{bottom:637.200000pt;}
.y207{bottom:637.733333pt;}
.y7{bottom:637.760000pt;}
.y14f{bottom:638.000000pt;}
.y1ec{bottom:638.666667pt;}
.y6a{bottom:639.333333pt;}
.y93{bottom:639.733333pt;}
.y1d5{bottom:640.000000pt;}
.y28{bottom:642.000000pt;}
.y6{bottom:643.493333pt;}
.y116{bottom:643.866667pt;}
.y43{bottom:644.133333pt;}
.y24{bottom:644.533333pt;}
.y10e{bottom:646.000000pt;}
.y184{bottom:648.666667pt;}
.y19f{bottom:649.333333pt;}
.y14e{bottom:650.266667pt;}
.y16d{bottom:651.866667pt;}
.y1bc{bottom:652.533333pt;}
.y1eb{bottom:653.200000pt;}
.y31{bottom:654.000000pt;}
.y92{bottom:656.666667pt;}
.y1ea{bottom:658.800000pt;}
.y115{bottom:660.533333pt;}
.y183{bottom:667.466667pt;}
.y1ba{bottom:671.733333pt;}
.y2{bottom:675.226667pt;}
.y30{bottom:678.000000pt;}
.y5{bottom:678.426667pt;}
.y1{bottom:684.160000pt;}
.y4{bottom:696.026667pt;}
.y26{bottom:707.200000pt;}
.y3{bottom:709.093333pt;}
.y21f{bottom:713.600000pt;}
.y21e{bottom:714.266667pt;}
.y220{bottom:717.733333pt;}
.h1f{height:15.843750pt;}
.ha{height:16.312500pt;}
.h3{height:17.824219pt;}
.h1a{height:19.804688pt;}
.he{height:20.677083pt;}
.h8{height:23.261719pt;}
.h1b{height:24.322917pt;}
.h17{height:26.572677pt;}
.h10{height:27.726562pt;}
.h1d{height:29.707031pt;}
.h12{height:31.619792pt;}
.h16{height:36.000000pt;}
.h15{height:36.184896pt;}
.h1e{height:38.910156pt;}
.h18{height:38.916667pt;}
.h5{height:40.781250pt;}
.h6{height:40.881042pt;}
.h19{height:42.615885pt;}
.hc{height:44.083333pt;}
.h2{height:46.213542pt;}
.h9{height:51.692708pt;}
.h1c{height:53.510417pt;}
.h13{height:55.189407pt;}
.hf{height:60.807292pt;}
.h11{height:69.497771pt;}
.h4{height:70.536458pt;}
.hd{height:75.401042pt;}
.h14{height:75.934375pt;}
.h7{height:80.265625pt;}
.hb{height:720.000000pt;}
.h1{height:741.333333pt;}
.h0{height:741.466667pt;}
.w8{width:481.266667pt;}
.w9{width:481.333333pt;}
.w7{width:489.333333pt;}
.w6{width:489.600000pt;}
.w5{width:513.333333pt;}
.w4{width:513.600000pt;}
.w2{width:521.933333pt;}
.w3{width:522.000000pt;}
.w0{width:554.533333pt;}
.w1{width:554.666667pt;}
.x0{left:0.000000pt;}
.x8{left:4.800000pt;}
.xb0{left:5.733333pt;}
.xaf{left:10.266667pt;}
.x17{left:11.866667pt;}
.x18{left:17.600000pt;}
.x5d{left:18.533333pt;}
.x19{left:19.866667pt;}
.x5c{left:21.200000pt;}
.x23{left:24.400000pt;}
.x9{left:26.000000pt;}
.x51{left:27.200000pt;}
.x50{left:28.133333pt;}
.x3d{left:30.400000pt;}
.x3e{left:32.000000pt;}
.x31{left:33.333333pt;}
.x3f{left:34.266667pt;}
.x40{left:35.200000pt;}
.x55{left:36.133333pt;}
.x56{left:37.200000pt;}
.x34{left:38.400000pt;}
.x61{left:39.333333pt;}
.x36{left:40.266667pt;}
.x93{left:44.800000pt;}
.x92{left:46.000000pt;}
.x90{left:47.600000pt;}
.x5b{left:48.666667pt;}
.x1f{left:50.266667pt;}
.x3a{left:51.600000pt;}
.x59{left:52.800000pt;}
.x58{left:53.733333pt;}
.x30{left:54.666667pt;}
.x53{left:56.000000pt;}
.x52{left:57.600000pt;}
.x45{left:58.800000pt;}
.x44{left:59.866667pt;}
.x5f{left:60.800000pt;}
.x41{left:62.000000pt;}
.x43{left:63.600000pt;}
.x42{left:64.666667pt;}
.x35{left:66.266667pt;}
.x9b{left:67.866667pt;}
.x70{left:69.066667pt;}
.x71{left:70.133333pt;}
.x91{left:71.066667pt;}
.x73{left:72.000000pt;}
.x75{left:73.600000pt;}
.x76{left:74.533333pt;}
.x54{left:75.600000pt;}
.x69{left:77.733333pt;}
.x8c{left:80.000000pt;}
.x66{left:81.333333pt;}
.x4f{left:82.933333pt;}
.x98{left:85.066667pt;}
.x89{left:86.000000pt;}
.xa{left:87.066667pt;}
.x6{left:88.000000pt;}
.x6f{left:88.933333pt;}
.x33{left:90.266667pt;}
.x5a{left:92.133333pt;}
.x67{left:93.733333pt;}
.xf{left:96.000000pt;}
.x2a{left:96.933333pt;}
.x8f{left:97.866667pt;}
.x57{left:98.933333pt;}
.x60{left:100.800000pt;}
.x79{left:102.133333pt;}
.x7a{left:103.066667pt;}
.x46{left:104.266667pt;}
.x7d{left:105.866667pt;}
.x7e{left:106.800000pt;}
.x9a{left:107.866667pt;}
.x80{left:109.466667pt;}
.x82{left:110.666667pt;}
.x64{left:111.733333pt;}
.x6c{left:112.666667pt;}
.x6d{left:113.600000pt;}
.x2f{left:115.200000pt;}
.x95{left:118.400000pt;}
.x85{left:119.733333pt;}
.x72{left:121.200000pt;}
.x9e{left:122.533333pt;}
.x65{left:123.600000pt;}
.xa3{left:124.800000pt;}
.x78{left:126.000000pt;}
.xa0{left:127.066667pt;}
.x32{left:130.266667pt;}
.x7c{left:131.200000pt;}
.x99{left:132.800000pt;}
.x3b{left:134.533333pt;}
.x8a{left:136.000000pt;}
.x6b{left:136.933333pt;}
.x26{left:138.266667pt;}
.x38{left:142.133333pt;}
.x13{left:145.333333pt;}
.x24{left:147.200000pt;}
.x7{left:149.733333pt;}
.x14{left:152.400000pt;}
.x1{left:153.600000pt;}
.x47{left:154.533333pt;}
.x39{left:155.466667pt;}
.x16{left:157.466667pt;}
.xa2{left:158.533333pt;}
.x84{left:160.666667pt;}
.x29{left:162.533333pt;}
.xa8{left:166.400000pt;}
.xa5{left:167.733333pt;}
.xa9{left:169.600000pt;}
.x15{left:170.800000pt;}
.xa7{left:175.733333pt;}
.x2{left:178.000000pt;}
.xaa{left:179.600000pt;}
.x8d{left:182.800000pt;}
.x5e{left:185.200000pt;}
.x6a{left:189.200000pt;}
.x2e{left:190.133333pt;}
.x3c{left:192.666667pt;}
.x9c{left:193.600000pt;}
.x5{left:194.533333pt;}
.x97{left:197.066667pt;}
.x1e{left:199.333333pt;}
.xa4{left:200.400000pt;}
.x9d{left:203.866667pt;}
.x1b{left:206.000000pt;}
.x8b{left:207.333333pt;}
.x94{left:208.666667pt;}
.x4d{left:210.933333pt;}
.x12{left:212.800000pt;}
.x6e{left:214.133333pt;}
.x8e{left:215.600000pt;}
.x22{left:217.333333pt;}
.x86{left:219.600000pt;}
.x7b{left:222.800000pt;}
.x74{left:224.133333pt;}
.x3{left:227.466667pt;}
.xa6{left:229.733333pt;}
.x77{left:231.333333pt;}
.x28{left:232.933333pt;}
.xab{left:235.866667pt;}
.x11{left:238.133333pt;}
.x83{left:240.400000pt;}
.x7f{left:241.600000pt;}
.x2b{left:244.800000pt;}
.x10{left:250.533333pt;}
.xae{left:257.200000pt;}
.x4a{left:260.533333pt;}
.x1a{left:267.866667pt;}
.x4e{left:269.466667pt;}
.x49{left:272.000000pt;}
.x62{left:278.800000pt;}
.x63{left:283.200000pt;}
.x27{left:287.333333pt;}
.x87{left:293.733333pt;}
.x21{left:296.266667pt;}
.x88{left:301.733333pt;}
.x25{left:309.200000pt;}
.xb5{left:316.112000pt;}
.x2c{left:326.400000pt;}
.xb1{left:341.733333pt;}
.x4b{left:344.933333pt;}
.xad{left:346.000000pt;}
.xb2{left:347.866667pt;}
.xe{left:355.600000pt;}
.x4c{left:359.733333pt;}
.x48{left:361.600000pt;}
.x1d{left:362.800000pt;}
.x37{left:366.400000pt;}
.xb3{left:367.733333pt;}
.x1c{left:368.933333pt;}
.xb4{left:372.133333pt;}
.xb{left:376.266667pt;}
.x4{left:390.400000pt;}
.x9f{left:392.400000pt;}
.x81{left:396.800000pt;}
.x68{left:399.333333pt;}
.x2d{left:400.933333pt;}
.x96{left:402.000000pt;}
.xb6{left:403.510667pt;}
.xc{left:419.466667pt;}
.xac{left:424.666667pt;}
.x20{left:447.333333pt;}
.xd{left:461.733333pt;}
.xa1{left:468.800000pt;}
}




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