
    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_eab2b75152d1f874c9559856.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156000;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_09a23803bef79e437296f18c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.160000;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_09a23803bef79e437296f18c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.160000;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_22ed5664c3215b5ba5cebdbc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.156000;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_1c6a4767172635f4b66cfe03.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.718000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_61ae98d494500a65d798a214.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031000;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_eab2b75152d1f874c9559856.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.156000;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_09a23803bef79e437296f18c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.160000;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_d47b0af70d6f37864bef34f4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.160000;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_596e66c11f1f79656cf54d24.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.156000;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_b2c7e7ecd17d69205c35743b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.116000;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_ed76e36cf41a8bcc598fe0e3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.126000;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_cabdb3b8f52ebab3ed2c20ca.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.965000;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_c2423a49287fedb35c86bfa9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.160000;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_53704e05e14b69d8636e3c17.woff2')format("woff");}.fff{font-family:fff;line-height:1.156000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.018000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.986000px;}
.v1{vertical-align:96.000000px;}
.lsd{letter-spacing:-1.200000px;}
.ls33{letter-spacing:-1.050000px;}
.ls2f{letter-spacing:-0.960000px;}
.ls1c{letter-spacing:-0.900000px;}
.ls31{letter-spacing:-0.840000px;}
.ls22{letter-spacing:-0.780000px;}
.ls1d{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.600000px;}
.ls21{letter-spacing:-0.540000px;}
.ls2e{letter-spacing:-0.480000px;}
.ls2d{letter-spacing:-0.420000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.300000px;}
.ls1a{letter-spacing:-0.240000px;}
.ls32{letter-spacing:-0.210000px;}
.ls1b{letter-spacing:-0.180000px;}
.ls1f{letter-spacing:-0.120000px;}
.ls2c{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.060000px;}
.ls25{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.240000px;}
.ls11{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.324000px;}
.ls24{letter-spacing:0.330000px;}
.ls20{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.420000px;}
.ls34{letter-spacing:0.465000px;}
.ls14{letter-spacing:0.480000px;}
.ls10{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.690000px;}
.ls12{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.780000px;}
.ls16{letter-spacing:0.840000px;}
.lsf{letter-spacing:0.900000px;}
.ls6{letter-spacing:0.960000px;}
.lse{letter-spacing:1.020000px;}
.ls1{letter-spacing:1.080000px;}
.ls18{letter-spacing:1.140000px;}
.ls27{letter-spacing:1.200000px;}
.ls28{letter-spacing:1.260000px;}
.ls29{letter-spacing:1.320000px;}
.lsc{letter-spacing:1.377600px;}
.ls0{letter-spacing:1.380000px;}
.ls26{letter-spacing:1.440000px;}
.ls2a{letter-spacing:1.500000px;}
.ls5{letter-spacing:1.680000px;}
.lsb{letter-spacing:72.958800px;}
.ls8{letter-spacing:89.232000px;}
.ls30{letter-spacing:246.769200px;}
.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;}
}
.wsa3{word-spacing:-23.232000px;}
.ws0{word-spacing:-21.168000px;}
.ws6{word-spacing:-16.698000px;}
.wsb2{word-spacing:-16.008000px;}
.wsc{word-spacing:-14.940000px;}
.wsf{word-spacing:-13.920000px;}
.ws1d{word-spacing:-11.952000px;}
.ws7{word-spacing:-11.232000px;}
.ws8f{word-spacing:-11.136000px;}
.wsa4{word-spacing:-10.458000px;}
.wsa8{word-spacing:-10.038000px;}
.wsa5{word-spacing:-9.744000px;}
.wsa6{word-spacing:-9.534000px;}
.wsa7{word-spacing:-9.324000px;}
.wsb1{word-spacing:-6.097014px;}
.ws10{word-spacing:-5.952000px;}
.wsaa{word-spacing:-5.628000px;}
.wsab{word-spacing:-5.208000px;}
.wsaf{word-spacing:-4.914000px;}
.wsa9{word-spacing:-4.494000px;}
.ws73{word-spacing:-4.200000px;}
.ws77{word-spacing:-3.600000px;}
.ws25{word-spacing:-3.060000px;}
.ws63{word-spacing:-3.000000px;}
.ws52{word-spacing:-2.820000px;}
.ws2e{word-spacing:-2.760000px;}
.ws45{word-spacing:-2.580000px;}
.ws7b{word-spacing:-2.460000px;}
.ws6a{word-spacing:-2.340000px;}
.ws9f{word-spacing:-2.220000px;}
.ws94{word-spacing:-2.100000px;}
.ws5c{word-spacing:-1.980000px;}
.ws9a{word-spacing:-1.920000px;}
.ws68{word-spacing:-1.800000px;}
.ws30{word-spacing:-1.740000px;}
.ws12{word-spacing:-1.680000px;}
.ws57{word-spacing:-1.620000px;}
.ws7c{word-spacing:-1.440000px;}
.ws4f{word-spacing:-1.260000px;}
.ws4d{word-spacing:-1.200000px;}
.ws54{word-spacing:-1.140000px;}
.ws61{word-spacing:-1.080000px;}
.ws3b{word-spacing:-1.020000px;}
.ws59{word-spacing:-0.960000px;}
.ws53{word-spacing:-0.900000px;}
.ws58{word-spacing:-0.840000px;}
.ws72{word-spacing:-0.780000px;}
.ws5a{word-spacing:-0.720000px;}
.ws2{word-spacing:-0.690000px;}
.ws23{word-spacing:-0.660000px;}
.ws9{word-spacing:-0.600000px;}
.ws3{word-spacing:-0.540000px;}
.wsa2{word-spacing:-0.480000px;}
.ws11{word-spacing:-0.420000px;}
.ws44{word-spacing:-0.300000px;}
.wsb0{word-spacing:-0.210000px;}
.ws89{word-spacing:-0.180000px;}
.wsae{word-spacing:-0.168000px;}
.wsac{word-spacing:-0.126000px;}
.wsa{word-spacing:-0.120000px;}
.ws8{word-spacing:-0.069000px;}
.ws36{word-spacing:-0.060000px;}
.ws56{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.ws2c{word-spacing:0.180000px;}
.ws5{word-spacing:0.216000px;}
.ws98{word-spacing:0.240000px;}
.ws4{word-spacing:0.324000px;}
.ws22{word-spacing:0.360000px;}
.ws82{word-spacing:0.480000px;}
.ws84{word-spacing:0.540000px;}
.ws6b{word-spacing:0.660000px;}
.ws80{word-spacing:0.780000px;}
.wsad{word-spacing:0.840000px;}
.ws4c{word-spacing:0.900000px;}
.ws9d{word-spacing:0.960000px;}
.ws88{word-spacing:1.140000px;}
.ws5f{word-spacing:1.200000px;}
.ws74{word-spacing:1.320000px;}
.wsa0{word-spacing:1.380000px;}
.ws62{word-spacing:1.440000px;}
.ws51{word-spacing:1.620000px;}
.ws33{word-spacing:1.920000px;}
.ws8a{word-spacing:2.040000px;}
.ws65{word-spacing:2.160000px;}
.ws5e{word-spacing:2.220000px;}
.ws9b{word-spacing:2.340000px;}
.ws6d{word-spacing:2.400000px;}
.ws70{word-spacing:2.520000px;}
.ws5b{word-spacing:2.580000px;}
.ws96{word-spacing:2.640000px;}
.ws5d{word-spacing:2.700000px;}
.ws7e{word-spacing:2.760000px;}
.ws6e{word-spacing:2.880000px;}
.ws69{word-spacing:2.940000px;}
.ws35{word-spacing:3.060000px;}
.ws4b{word-spacing:3.120000px;}
.ws4e{word-spacing:3.240000px;}
.ws32{word-spacing:3.300000px;}
.ws2f{word-spacing:3.360000px;}
.ws6c{word-spacing:3.420000px;}
.ws49{word-spacing:3.480000px;}
.ws75{word-spacing:3.540000px;}
.ws38{word-spacing:3.720000px;}
.ws9e{word-spacing:3.900000px;}
.ws24{word-spacing:3.960000px;}
.ws97{word-spacing:4.080000px;}
.ws2d{word-spacing:4.440000px;}
.ws71{word-spacing:4.500000px;}
.ws31{word-spacing:4.560000px;}
.ws99{word-spacing:4.620000px;}
.ws66{word-spacing:4.800000px;}
.ws9c{word-spacing:4.860000px;}
.ws34{word-spacing:4.980000px;}
.ws6f{word-spacing:5.100000px;}
.ws21{word-spacing:5.160000px;}
.ws64{word-spacing:5.280000px;}
.ws7d{word-spacing:5.340000px;}
.ws46{word-spacing:5.400000px;}
.ws83{word-spacing:5.520000px;}
.ws92{word-spacing:5.580000px;}
.ws48{word-spacing:5.700000px;}
.ws60{word-spacing:5.760000px;}
.ws67{word-spacing:5.820000px;}
.ws8c{word-spacing:6.000000px;}
.ws2a{word-spacing:6.060000px;}
.ws50{word-spacing:6.120000px;}
.ws29{word-spacing:6.180000px;}
.ws40{word-spacing:6.240000px;}
.ws79{word-spacing:6.360000px;}
.ws78{word-spacing:6.420000px;}
.ws3d{word-spacing:6.480000px;}
.ws41{word-spacing:6.780000px;}
.ws81{word-spacing:6.840000px;}
.ws42{word-spacing:6.900000px;}
.ws27{word-spacing:6.960000px;}
.ws2b{word-spacing:7.260000px;}
.ws3e{word-spacing:7.320000px;}
.ws76{word-spacing:7.440000px;}
.ws86{word-spacing:7.620000px;}
.ws3a{word-spacing:7.680000px;}
.ws28{word-spacing:7.800000px;}
.ws3c{word-spacing:7.920000px;}
.ws85{word-spacing:8.040000px;}
.ws43{word-spacing:8.220000px;}
.ws39{word-spacing:8.280000px;}
.ws37{word-spacing:8.400000px;}
.ws90{word-spacing:8.460000px;}
.ws7a{word-spacing:8.940000px;}
.ws91{word-spacing:9.120000px;}
.ws7f{word-spacing:9.180000px;}
.ws20{word-spacing:9.360000px;}
.ws4a{word-spacing:9.840000px;}
.ws47{word-spacing:10.080000px;}
.ws93{word-spacing:10.140000px;}
.ws55{word-spacing:10.320000px;}
.ws26{word-spacing:11.580000px;}
.wsa1{word-spacing:12.120000px;}
.ws8e{word-spacing:12.420000px;}
.ws3f{word-spacing:12.480000px;}
.ws87{word-spacing:12.840000px;}
.ws8b{word-spacing:14.280000px;}
.ws8d{word-spacing:14.940000px;}
.ws1f{word-spacing:15.000000px;}
.ws1e{word-spacing:17.280000px;}
.ws95{word-spacing:21.240000px;}
.ws19{word-spacing:41.340000px;}
.ws18{word-spacing:43.860000px;}
.ws16{word-spacing:44.640000px;}
.ws15{word-spacing:45.600000px;}
.ws13{word-spacing:46.320000px;}
.ws17{word-spacing:46.380000px;}
.wse{word-spacing:52.200000px;}
.ws1a{word-spacing:52.800000px;}
.wsd{word-spacing:52.980000px;}
.ws1b{word-spacing:668.040000px;}
.ws14{word-spacing:744.600000px;}
.ws1c{word-spacing:1216.368000px;}
.wsb{word-spacing:1297.328400px;}
._17{margin-left:-2061.696000px;}
._14{margin-left:-671.223600px;}
._b{margin-left:-646.168200px;}
._1a{margin-left:-552.480000px;}
._c{margin-left:-25.056000px;}
._7{margin-left:-15.033600px;}
._e{margin-left:-13.020000px;}
._2{margin-left:-11.730000px;}
._9{margin-left:-10.005000px;}
._f{margin-left:-9.000000px;}
._1c{margin-left:-7.911600px;}
._d{margin-left:-6.600000px;}
._a{margin-left:-5.220000px;}
._3{margin-left:-4.020000px;}
._4{margin-left:-2.918400px;}
._1{margin-left:-1.380000px;}
._6{width:1.209600px;}
._5{width:2.300400px;}
._18{width:3.966000px;}
._8{width:5.157600px;}
._19{width:6.912000px;}
._15{width:13.008000px;}
._16{width:39.072000px;}
._10{width:60.300000px;}
._0{width:89.071200px;}
._1b{width:124.098000px;}
._12{width:554.700000px;}
._13{width:575.220000px;}
._11{width:777.300000px;}
.fc4{color:rgb(100,99,99);}
.fc3{color:rgb(212,53,84);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:24.486000px;}
.fs8{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:69.000000px;}
.fs3{font-size:84.000000px;}
.fs9{font-size:93.000000px;}
.fs4{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:138.000000px;}
.fs7{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y204{bottom:51.383850px;}
.y191{bottom:52.237650px;}
.y101{bottom:53.149650px;}
.y148{bottom:53.742150px;}
.y20a{bottom:63.983400px;}
.y203{bottom:63.983850px;}
.y190{bottom:64.837650px;}
.y100{bottom:65.749650px;}
.y147{bottom:66.342150px;}
.yb8{bottom:70.381950px;}
.ycf{bottom:70.511700px;}
.y76{bottom:70.511850px;}
.y33{bottom:70.514550px;}
.yfe{bottom:70.525800px;}
.y209{bottom:76.583400px;}
.y202{bottom:76.583850px;}
.y18f{bottom:77.437650px;}
.y146{bottom:78.942150px;}
.yeb{bottom:84.029700px;}
.yb7{bottom:84.781950px;}
.y208{bottom:89.183400px;}
.y201{bottom:89.183850px;}
.y18e{bottom:90.037650px;}
.yce{bottom:91.211700px;}
.y32{bottom:91.211850px;}
.yfd{bottom:91.225800px;}
.y145{bottom:91.542150px;}
.yea{bottom:98.429700px;}
.yb6{bottom:99.181950px;}
.y200{bottom:101.783850px;}
.y18d{bottom:102.637650px;}
.ycd{bottom:111.911700px;}
.y31{bottom:111.911850px;}
.yfc{bottom:111.925800px;}
.y6{bottom:111.933150px;}
.y5{bottom:112.136700px;}
.ye9{bottom:112.829700px;}
.yb5{bottom:113.581950px;}
.y207{bottom:114.383400px;}
.y18c{bottom:115.237650px;}
.y144{bottom:116.742150px;}
.y206{bottom:126.983400px;}
.y1ff{bottom:126.983850px;}
.ye8{bottom:127.229700px;}
.y18b{bottom:127.837650px;}
.yb4{bottom:127.981950px;}
.y143{bottom:129.342150px;}
.ycc{bottom:132.611700px;}
.y75{bottom:132.611850px;}
.yfb{bottom:132.625800px;}
.y205{bottom:139.583400px;}
.y1fe{bottom:139.583850px;}
.y18a{bottom:140.437650px;}
.y142{bottom:141.942150px;}
.yb3{bottom:142.381950px;}
.ye7{bottom:145.877700px;}
.y189{bottom:153.037650px;}
.ycb{bottom:153.311700px;}
.y30{bottom:153.311850px;}
.yfa{bottom:153.325800px;}
.y141{bottom:154.542150px;}
.y1fd{bottom:156.435900px;}
.ye6{bottom:160.277700px;}
.yb2{bottom:161.029950px;}
.y4{bottom:165.137700px;}
.y188{bottom:165.637650px;}
.y140{bottom:167.142150px;}
.y1fc{bottom:173.685900px;}
.yca{bottom:174.011700px;}
.y2f{bottom:174.011850px;}
.ye5{bottom:174.677700px;}
.yb1{bottom:175.429950px;}
.y187{bottom:178.237650px;}
.y13f{bottom:179.742150px;}
.y57{bottom:183.443850px;}
.ye4{bottom:189.077700px;}
.yb0{bottom:189.829950px;}
.y186{bottom:190.837650px;}
.y13e{bottom:192.342150px;}
.yc9{bottom:194.711700px;}
.y2e{bottom:194.711850px;}
.yf9{bottom:194.725800px;}
.y185{bottom:203.437650px;}
.yaf{bottom:204.229950px;}
.ye3{bottom:207.725700px;}
.yc8{bottom:215.411700px;}
.y2a{bottom:215.411850px;}
.y184{bottom:216.037650px;}
.y13d{bottom:217.542150px;}
.y3{bottom:218.138700px;}
.yae{bottom:218.629950px;}
.y56{bottom:219.653850px;}
.ye2{bottom:222.125700px;}
.y43{bottom:226.062150px;}
.y183{bottom:228.637650px;}
.y13c{bottom:230.142150px;}
.yad{bottom:233.029950px;}
.yc7{bottom:236.111700px;}
.y29{bottom:236.111850px;}
.yf8{bottom:236.125800px;}
.ye1{bottom:236.525700px;}
.y55{bottom:238.403850px;}
.y182{bottom:241.237650px;}
.y13b{bottom:242.742150px;}
.y1f4{bottom:242.752950px;}
.y42{bottom:244.812150px;}
.y1fb{bottom:247.402950px;}
.yac{bottom:251.677950px;}
.y181{bottom:253.837650px;}
.ye0{bottom:255.173700px;}
.y13a{bottom:255.342150px;}
.y1f3{bottom:255.352950px;}
.yc6{bottom:256.811700px;}
.y2d{bottom:256.811850px;}
.yf7{bottom:256.825800px;}
.y54{bottom:257.153850px;}
.y1fa{bottom:260.002950px;}
.y41{bottom:263.562150px;}
.y2{bottom:265.146450px;}
.yab{bottom:266.077950px;}
.y180{bottom:266.437650px;}
.y139{bottom:267.942150px;}
.y1f2{bottom:267.952950px;}
.ydf{bottom:269.573700px;}
.y1f9{bottom:272.602950px;}
.y53{bottom:275.903850px;}
.yc5{bottom:277.511700px;}
.y28{bottom:277.511850px;}
.yf6{bottom:277.525800px;}
.y17f{bottom:279.037650px;}
.yaa{bottom:280.477950px;}
.y138{bottom:280.542150px;}
.y1f1{bottom:280.552950px;}
.y40{bottom:282.312150px;}
.yde{bottom:283.973700px;}
.y1f8{bottom:285.202950px;}
.y17e{bottom:291.637650px;}
.y137{bottom:293.142150px;}
.y52{bottom:294.653850px;}
.ya9{bottom:294.877950px;}
.yd0{bottom:298.211700px;}
.y27{bottom:298.211850px;}
.ydd{bottom:298.373700px;}
.y17d{bottom:304.237650px;}
.y136{bottom:305.742150px;}
.y1f0{bottom:305.752950px;}
.ya8{bottom:309.277950px;}
.y1f7{bottom:310.402950px;}
.ydc{bottom:312.773700px;}
.y17c{bottom:316.837650px;}
.y1ca{bottom:317.737500px;}
.y135{bottom:318.342150px;}
.y1ef{bottom:318.352950px;}
.y3f{bottom:318.522150px;}
.yc4{bottom:318.911700px;}
.y26{bottom:318.911850px;}
.y1f6{bottom:323.002950px;}
.ya7{bottom:323.677950px;}
.ydb{bottom:327.173700px;}
.y17b{bottom:329.437650px;}
.y1c9{bottom:330.337500px;}
.y51{bottom:330.863850px;}
.y134{bottom:330.942150px;}
.y1ee{bottom:335.204850px;}
.y1f5{bottom:335.602950px;}
.y3e{bottom:337.272150px;}
.yc3{bottom:339.611700px;}
.y25{bottom:339.611850px;}
.yda{bottom:341.573700px;}
.y17a{bottom:342.037650px;}
.ya6{bottom:342.325950px;}
.y1c8{bottom:342.937500px;}
.y50{bottom:349.613850px;}
.y1ed{bottom:352.454850px;}
.y179{bottom:354.637650px;}
.y99{bottom:355.307250px;}
.y1c7{bottom:355.537500px;}
.y3d{bottom:356.022150px;}
.y133{bottom:356.142150px;}
.yc2{bottom:360.311700px;}
.y24{bottom:360.311850px;}
.y1c6{bottom:368.137500px;}
.y4f{bottom:368.363850px;}
.y132{bottom:368.742150px;}
.y98{bottom:369.707250px;}
.y3c{bottom:374.772150px;}
.y178{bottom:379.837650px;}
.y1c5{bottom:380.737500px;}
.yc1{bottom:381.011700px;}
.y23{bottom:381.011850px;}
.y131{bottom:381.342150px;}
.y97{bottom:384.107250px;}
.y177{bottom:392.437650px;}
.y1c4{bottom:393.337500px;}
.y130{bottom:393.942150px;}
.y96{bottom:398.507250px;}
.yc0{bottom:401.711700px;}
.y22{bottom:401.711850px;}
.y4e{bottom:404.573850px;}
.y176{bottom:405.037650px;}
.y12f{bottom:406.542150px;}
.y3b{bottom:410.982150px;}
.yf4{bottom:415.957800px;}
.y95{bottom:417.155250px;}
.y1c3{bottom:418.537500px;}
.y12e{bottom:419.142150px;}
.ybf{bottom:422.411700px;}
.y21{bottom:422.411850px;}
.y1ec{bottom:425.504850px;}
.y3a{bottom:429.732150px;}
.y175{bottom:430.237650px;}
.yf3{bottom:430.357800px;}
.y1c2{bottom:431.137500px;}
.y94{bottom:431.555250px;}
.y12d{bottom:431.742150px;}
.y1e5{bottom:433.454850px;}
.y1eb{bottom:438.104850px;}
.y4d{bottom:440.783850px;}
.y174{bottom:442.837650px;}
.ybe{bottom:443.111700px;}
.y2c{bottom:443.111850px;}
.y1c1{bottom:443.737500px;}
.y12c{bottom:444.342150px;}
.yf2{bottom:444.757800px;}
.y93{bottom:445.955250px;}
.y1e4{bottom:446.054850px;}
.y39{bottom:448.482150px;}
.y1ea{bottom:450.704850px;}
.y173{bottom:455.437650px;}
.y1c0{bottom:456.337500px;}
.y12b{bottom:456.942150px;}
.y1e3{bottom:458.654850px;}
.y4c{bottom:459.533850px;}
.y1e9{bottom:463.304850px;}
.yf1{bottom:463.405800px;}
.ybd{bottom:463.811700px;}
.y20{bottom:463.811850px;}
.y92{bottom:464.603250px;}
.y38{bottom:467.232150px;}
.y12a{bottom:469.542150px;}
.y1e2{bottom:471.254850px;}
.y1e8{bottom:475.904850px;}
.yf0{bottom:477.805800px;}
.y91{bottom:479.003250px;}
.y172{bottom:480.637650px;}
.y1bf{bottom:481.537500px;}
.ybc{bottom:484.511700px;}
.y1f{bottom:484.511850px;}
.y1e7{bottom:488.504850px;}
.yef{bottom:492.205800px;}
.y171{bottom:493.237650px;}
.y90{bottom:493.403250px;}
.y1be{bottom:494.137500px;}
.y129{bottom:494.742150px;}
.y4b{bottom:495.743850px;}
.y1e1{bottom:496.454850px;}
.ybb{bottom:505.211700px;}
.y1e{bottom:505.211850px;}
.y170{bottom:505.837650px;}
.y1bd{bottom:506.737500px;}
.y128{bottom:507.342150px;}
.yee{bottom:510.853800px;}
.y1e0{bottom:513.306750px;}
.y1e6{bottom:513.704850px;}
.y4a{bottom:514.493850px;}
.y37{bottom:516.197850px;}
.y16f{bottom:518.437650px;}
.y1bc{bottom:519.337500px;}
.y127{bottom:519.942150px;}
.yed{bottom:525.253800px;}
.yba{bottom:525.911700px;}
.y1d{bottom:525.911850px;}
.y1df{bottom:530.556750px;}
.y16e{bottom:531.037650px;}
.y1bb{bottom:531.937500px;}
.y126{bottom:532.542150px;}
.y49{bottom:533.243850px;}
.yec{bottom:539.653800px;}
.y36{bottom:540.200850px;}
.y1ba{bottom:544.537500px;}
.y125{bottom:545.142150px;}
.yb9{bottom:546.611700px;}
.y1c{bottom:546.611850px;}
.y48{bottom:551.993850px;}
.y16d{bottom:556.237650px;}
.y1b9{bottom:557.137500px;}
.y124{bottom:557.742150px;}
.y35{bottom:564.203850px;}
.y8f{bottom:567.311700px;}
.y1b{bottom:567.311850px;}
.y16c{bottom:568.837650px;}
.y1b8{bottom:569.737500px;}
.y123{bottom:570.342150px;}
.y16b{bottom:581.437650px;}
.y1b7{bottom:582.337500px;}
.y8e{bottom:588.011700px;}
.y1a{bottom:588.011850px;}
.y34{bottom:588.203850px;}
.y1de{bottom:591.340350px;}
.y1b6{bottom:594.937500px;}
.y122{bottom:595.542150px;}
.y1dd{bottom:603.940350px;}
.y16a{bottom:606.640650px;}
.y1b5{bottom:607.537500px;}
.y121{bottom:608.142150px;}
.y8d{bottom:608.711700px;}
.y19{bottom:608.711850px;}
.y1dc{bottom:616.540350px;}
.y1b4{bottom:620.137500px;}
.y169{bottom:620.143650px;}
.y120{bottom:620.742150px;}
.y1db{bottom:629.140350px;}
.y8c{bottom:629.411700px;}
.y18{bottom:629.411850px;}
.y1b3{bottom:632.737500px;}
.y168{bottom:632.743650px;}
.y11f{bottom:633.342150px;}
.y6f{bottom:639.504000px;}
.y1da{bottom:641.740350px;}
.y1b2{bottom:645.337500px;}
.y167{bottom:645.343650px;}
.y11e{bottom:645.942150px;}
.y8b{bottom:650.111700px;}
.y17{bottom:650.111850px;}
.y6e{bottom:653.904000px;}
.y1d9{bottom:654.340350px;}
.y1b1{bottom:657.937500px;}
.y166{bottom:657.943650px;}
.y11d{bottom:658.537650px;}
.y6d{bottom:668.304000px;}
.y63{bottom:670.140900px;}
.y1b0{bottom:670.537500px;}
.y165{bottom:670.543650px;}
.y8a{bottom:670.811700px;}
.y16{bottom:670.811850px;}
.y1d8{bottom:679.540350px;}
.y6c{bottom:682.704000px;}
.y1af{bottom:683.137500px;}
.y11c{bottom:683.139150px;}
.y164{bottom:683.143650px;}
.y62{bottom:690.840900px;}
.y89{bottom:691.511700px;}
.y2b{bottom:691.511850px;}
.y1d7{bottom:692.140350px;}
.y47{bottom:693.569850px;}
.y1ae{bottom:695.737500px;}
.y11b{bottom:695.739150px;}
.y163{bottom:695.743650px;}
.y6b{bottom:701.352000px;}
.y1ad{bottom:708.337500px;}
.y11a{bottom:708.339150px;}
.y162{bottom:708.343650px;}
.y1d6{bottom:708.992250px;}
.y61{bottom:711.540900px;}
.y88{bottom:712.211700px;}
.y15{bottom:712.211850px;}
.y45{bottom:714.171600px;}
.y6a{bottom:715.752000px;}
.y1ac{bottom:720.937500px;}
.y119{bottom:720.939150px;}
.y161{bottom:720.943650px;}
.y69{bottom:730.152000px;}
.y60{bottom:732.240900px;}
.y87{bottom:732.911700px;}
.y14{bottom:732.911850px;}
.y1ab{bottom:733.537500px;}
.y118{bottom:733.539150px;}
.y160{bottom:733.543650px;}
.y46{bottom:740.763600px;}
.y68{bottom:744.552000px;}
.y1aa{bottom:746.137500px;}
.y117{bottom:746.139150px;}
.y5f{bottom:752.940900px;}
.y86{bottom:753.611700px;}
.y13{bottom:753.611850px;}
.y1a9{bottom:758.737500px;}
.y116{bottom:758.739150px;}
.y15f{bottom:758.743650px;}
.y67{bottom:763.200000px;}
.y1d4{bottom:769.775850px;}
.y1a8{bottom:771.337500px;}
.y115{bottom:771.339150px;}
.y15e{bottom:771.343650px;}
.y5e{bottom:773.640900px;}
.y85{bottom:774.311700px;}
.y12{bottom:774.311850px;}
.y66{bottom:777.600000px;}
.y1d3{bottom:782.375850px;}
.y1a7{bottom:783.937500px;}
.y114{bottom:783.939150px;}
.y15d{bottom:783.943650px;}
.y65{bottom:792.000000px;}
.y5d{bottom:794.340900px;}
.y1d2{bottom:794.975850px;}
.y84{bottom:795.011700px;}
.y11{bottom:795.011850px;}
.y1a6{bottom:796.537500px;}
.y113{bottom:796.539150px;}
.y15c{bottom:796.543650px;}
.y64{bottom:806.400000px;}
.y1d1{bottom:807.575850px;}
.y1a5{bottom:809.137500px;}
.y112{bottom:809.139150px;}
.y15b{bottom:809.143650px;}
.y5c{bottom:815.040900px;}
.y10{bottom:815.711850px;}
.y1d5{bottom:820.175850px;}
.y1a4{bottom:821.737500px;}
.y15a{bottom:821.743650px;}
.y1d0{bottom:832.775850px;}
.y1a3{bottom:834.337500px;}
.y111{bottom:834.339150px;}
.y159{bottom:834.343650px;}
.y83{bottom:836.411700px;}
.yf{bottom:836.411850px;}
.y1cf{bottom:845.375850px;}
.y1a2{bottom:846.937500px;}
.y110{bottom:846.939150px;}
.y158{bottom:846.943650px;}
.y82{bottom:857.111700px;}
.ye{bottom:857.111850px;}
.y1ce{bottom:857.975850px;}
.y1a1{bottom:859.537500px;}
.y10f{bottom:859.539150px;}
.y157{bottom:859.543650px;}
.y1cd{bottom:870.575850px;}
.y1a0{bottom:872.137500px;}
.y10e{bottom:872.139150px;}
.y156{bottom:872.143650px;}
.y81{bottom:877.811700px;}
.yd{bottom:877.811850px;}
.y19f{bottom:884.737500px;}
.y10d{bottom:884.739150px;}
.y155{bottom:884.743650px;}
.y1cc{bottom:887.427900px;}
.y5b{bottom:896.205900px;}
.y19e{bottom:897.337500px;}
.y10c{bottom:897.339150px;}
.y154{bottom:897.343650px;}
.y80{bottom:898.511700px;}
.yc{bottom:898.511850px;}
.y19d{bottom:909.937500px;}
.y10b{bottom:909.939150px;}
.y7f{bottom:919.211700px;}
.yb{bottom:919.211850px;}
.ya5{bottom:920.008500px;}
.y19c{bottom:922.537500px;}
.y10a{bottom:922.539150px;}
.y153{bottom:922.543650px;}
.ya4{bottom:934.408500px;}
.y19b{bottom:935.137500px;}
.y152{bottom:935.143650px;}
.y7e{bottom:939.911700px;}
.ya{bottom:939.911850px;}
.y19a{bottom:947.737500px;}
.y109{bottom:947.739150px;}
.y151{bottom:947.743650px;}
.y213{bottom:948.211350px;}
.ya3{bottom:948.808500px;}
.y21a{bottom:956.161350px;}
.y199{bottom:960.337500px;}
.y108{bottom:960.339150px;}
.y150{bottom:960.343650px;}
.y7d{bottom:960.611700px;}
.y9{bottom:960.611850px;}
.y212{bottom:960.811350px;}
.y5a{bottom:961.005900px;}
.ya2{bottom:963.208500px;}
.yd9{bottom:964.139850px;}
.y219{bottom:968.761350px;}
.y198{bottom:972.937500px;}
.y107{bottom:972.939150px;}
.y14f{bottom:972.943650px;}
.y211{bottom:973.411350px;}
.yd8{bottom:978.539850px;}
.y7c{bottom:981.311700px;}
.y8{bottom:981.311850px;}
.y218{bottom:981.361350px;}
.ya1{bottom:981.856500px;}
.y197{bottom:985.537500px;}
.y106{bottom:985.539150px;}
.y14e{bottom:985.543650px;}
.y210{bottom:986.011350px;}
.yd7{bottom:992.939850px;}
.y217{bottom:993.961350px;}
.ya0{bottom:996.256500px;}
.y196{bottom:998.140650px;}
.y14d{bottom:998.143650px;}
.y7b{bottom:1002.011700px;}
.y74{bottom:1002.011850px;}
.y9f{bottom:1010.656500px;}
.y105{bottom:1010.739150px;}
.y195{bottom:1010.740650px;}
.y14c{bottom:1010.743650px;}
.y20f{bottom:1011.211350px;}
.yd6{bottom:1011.587850px;}
.y216{bottom:1019.161350px;}
.y7a{bottom:1022.711700px;}
.y73{bottom:1022.711850px;}
.y104{bottom:1023.339150px;}
.y194{bottom:1023.340650px;}
.y14b{bottom:1023.343650px;}
.y20e{bottom:1023.811350px;}
.y9e{bottom:1025.056500px;}
.y59{bottom:1025.805900px;}
.yd5{bottom:1025.987850px;}
.y215{bottom:1031.761350px;}
.y103{bottom:1035.939150px;}
.y193{bottom:1035.940650px;}
.y14a{bottom:1035.943650px;}
.y20d{bottom:1036.411350px;}
.yd4{bottom:1040.387850px;}
.y79{bottom:1043.411700px;}
.y72{bottom:1043.411850px;}
.y9d{bottom:1043.704500px;}
.y102{bottom:1048.539150px;}
.y192{bottom:1048.540650px;}
.y149{bottom:1048.543650px;}
.y214{bottom:1048.613400px;}
.y20c{bottom:1049.011350px;}
.y9c{bottom:1058.104500px;}
.yd3{bottom:1059.035850px;}
.y78{bottom:1064.111700px;}
.y71{bottom:1064.111850px;}
.y20b{bottom:1065.863400px;}
.y9b{bottom:1072.504500px;}
.yd2{bottom:1073.435850px;}
.y7{bottom:1078.672050px;}
.y58{bottom:1079.805900px;}
.y77{bottom:1084.811700px;}
.y70{bottom:1084.811850px;}
.yff{bottom:1085.050050px;}
.y9a{bottom:1086.904500px;}
.yd1{bottom:1087.835850px;}
.y1cb{bottom:1121.764800px;}
.y1{bottom:1156.934400px;}
.y44{bottom:1156.934550px;}
.yf5{bottom:1156.945800px;}
.h11{height:39.228000px;}
.h12{height:39.942000px;}
.hc{height:42.720000px;}
.h9{height:44.832000px;}
.h2{height:45.648000px;}
.hf{height:54.420000px;}
.h10{height:55.140000px;}
.h8{height:56.040000px;}
.hb{height:57.060000px;}
.he{height:64.446000px;}
.h7{height:65.619000px;}
.h5{height:79.884000px;}
.h13{height:88.443000px;}
.h6{height:91.296000px;}
.h4{height:102.708000px;}
.h3{height:131.238000px;}
.ha{height:152.040000px;}
.hd{height:205.416000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:35.209500px;}
.x1b{left:51.139500px;}
.x3{left:63.536400px;}
.x13{left:76.535550px;}
.x10{left:89.294550px;}
.x7{left:95.396100px;}
.x2{left:117.259350px;}
.x1c{left:168.199950px;}
.xd{left:265.195950px;}
.x4{left:327.401550px;}
.x8{left:341.905500px;}
.x17{left:348.549900px;}
.xa{left:368.793600px;}
.x6{left:467.714550px;}
.x11{left:480.472500px;}
.x12{left:493.229550px;}
.xc{left:500.119950px;}
.xe{left:531.496050px;}
.xf{left:544.252050px;}
.x15{left:565.516500px;}
.x16{left:578.272500px;}
.x9{left:588.519600px;}
.x18{left:591.023550px;}
.x1d{left:595.275600px;}
.x1a{left:599.529600px;}
.x14{left:642.047250px;}
.x1{left:699.188100px;}
.xb{left:792.439950px;}
.x19{left:823.379100px;}
@media print{
.v2{vertical-align:-16.016000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.432000pt;}
.v1{vertical-align:85.333333pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls33{letter-spacing:-0.933333pt;}
.ls2f{letter-spacing:-0.853333pt;}
.ls1c{letter-spacing:-0.800000pt;}
.ls31{letter-spacing:-0.746667pt;}
.ls22{letter-spacing:-0.693333pt;}
.ls1d{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls2e{letter-spacing:-0.426667pt;}
.ls2d{letter-spacing:-0.373333pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.266667pt;}
.ls1a{letter-spacing:-0.213333pt;}
.ls32{letter-spacing:-0.186667pt;}
.ls1b{letter-spacing:-0.160000pt;}
.ls1f{letter-spacing:-0.106667pt;}
.ls2c{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.053333pt;}
.ls25{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.213333pt;}
.ls11{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.288000pt;}
.ls24{letter-spacing:0.293333pt;}
.ls20{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.373333pt;}
.ls34{letter-spacing:0.413333pt;}
.ls14{letter-spacing:0.426667pt;}
.ls10{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.613333pt;}
.ls12{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.693333pt;}
.ls16{letter-spacing:0.746667pt;}
.lsf{letter-spacing:0.800000pt;}
.ls6{letter-spacing:0.853333pt;}
.lse{letter-spacing:0.906667pt;}
.ls1{letter-spacing:0.960000pt;}
.ls18{letter-spacing:1.013333pt;}
.ls27{letter-spacing:1.066667pt;}
.ls28{letter-spacing:1.120000pt;}
.ls29{letter-spacing:1.173333pt;}
.lsc{letter-spacing:1.224533pt;}
.ls0{letter-spacing:1.226667pt;}
.ls26{letter-spacing:1.280000pt;}
.ls2a{letter-spacing:1.333333pt;}
.ls5{letter-spacing:1.493333pt;}
.lsb{letter-spacing:64.852267pt;}
.ls8{letter-spacing:79.317333pt;}
.ls30{letter-spacing:219.350400pt;}
.wsa3{word-spacing:-20.650667pt;}
.ws0{word-spacing:-18.816000pt;}
.ws6{word-spacing:-14.842667pt;}
.wsb2{word-spacing:-14.229333pt;}
.wsc{word-spacing:-13.280000pt;}
.wsf{word-spacing:-12.373333pt;}
.ws1d{word-spacing:-10.624000pt;}
.ws7{word-spacing:-9.984000pt;}
.ws8f{word-spacing:-9.898667pt;}
.wsa4{word-spacing:-9.296000pt;}
.wsa8{word-spacing:-8.922667pt;}
.wsa5{word-spacing:-8.661333pt;}
.wsa6{word-spacing:-8.474667pt;}
.wsa7{word-spacing:-8.288000pt;}
.wsb1{word-spacing:-5.419568pt;}
.ws10{word-spacing:-5.290667pt;}
.wsaa{word-spacing:-5.002667pt;}
.wsab{word-spacing:-4.629333pt;}
.wsaf{word-spacing:-4.368000pt;}
.wsa9{word-spacing:-3.994667pt;}
.ws73{word-spacing:-3.733333pt;}
.ws77{word-spacing:-3.200000pt;}
.ws25{word-spacing:-2.720000pt;}
.ws63{word-spacing:-2.666667pt;}
.ws52{word-spacing:-2.506667pt;}
.ws2e{word-spacing:-2.453333pt;}
.ws45{word-spacing:-2.293333pt;}
.ws7b{word-spacing:-2.186667pt;}
.ws6a{word-spacing:-2.080000pt;}
.ws9f{word-spacing:-1.973333pt;}
.ws94{word-spacing:-1.866667pt;}
.ws5c{word-spacing:-1.760000pt;}
.ws9a{word-spacing:-1.706667pt;}
.ws68{word-spacing:-1.600000pt;}
.ws30{word-spacing:-1.546667pt;}
.ws12{word-spacing:-1.493333pt;}
.ws57{word-spacing:-1.440000pt;}
.ws7c{word-spacing:-1.280000pt;}
.ws4f{word-spacing:-1.120000pt;}
.ws4d{word-spacing:-1.066667pt;}
.ws54{word-spacing:-1.013333pt;}
.ws61{word-spacing:-0.960000pt;}
.ws3b{word-spacing:-0.906667pt;}
.ws59{word-spacing:-0.853333pt;}
.ws53{word-spacing:-0.800000pt;}
.ws58{word-spacing:-0.746667pt;}
.ws72{word-spacing:-0.693333pt;}
.ws5a{word-spacing:-0.640000pt;}
.ws2{word-spacing:-0.613333pt;}
.ws23{word-spacing:-0.586667pt;}
.ws9{word-spacing:-0.533333pt;}
.ws3{word-spacing:-0.480000pt;}
.wsa2{word-spacing:-0.426667pt;}
.ws11{word-spacing:-0.373333pt;}
.ws44{word-spacing:-0.266667pt;}
.wsb0{word-spacing:-0.186667pt;}
.ws89{word-spacing:-0.160000pt;}
.wsae{word-spacing:-0.149333pt;}
.wsac{word-spacing:-0.112000pt;}
.wsa{word-spacing:-0.106667pt;}
.ws8{word-spacing:-0.061333pt;}
.ws36{word-spacing:-0.053333pt;}
.ws56{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.160000pt;}
.ws5{word-spacing:0.192000pt;}
.ws98{word-spacing:0.213333pt;}
.ws4{word-spacing:0.288000pt;}
.ws22{word-spacing:0.320000pt;}
.ws82{word-spacing:0.426667pt;}
.ws84{word-spacing:0.480000pt;}
.ws6b{word-spacing:0.586667pt;}
.ws80{word-spacing:0.693333pt;}
.wsad{word-spacing:0.746667pt;}
.ws4c{word-spacing:0.800000pt;}
.ws9d{word-spacing:0.853333pt;}
.ws88{word-spacing:1.013333pt;}
.ws5f{word-spacing:1.066667pt;}
.ws74{word-spacing:1.173333pt;}
.wsa0{word-spacing:1.226667pt;}
.ws62{word-spacing:1.280000pt;}
.ws51{word-spacing:1.440000pt;}
.ws33{word-spacing:1.706667pt;}
.ws8a{word-spacing:1.813333pt;}
.ws65{word-spacing:1.920000pt;}
.ws5e{word-spacing:1.973333pt;}
.ws9b{word-spacing:2.080000pt;}
.ws6d{word-spacing:2.133333pt;}
.ws70{word-spacing:2.240000pt;}
.ws5b{word-spacing:2.293333pt;}
.ws96{word-spacing:2.346667pt;}
.ws5d{word-spacing:2.400000pt;}
.ws7e{word-spacing:2.453333pt;}
.ws6e{word-spacing:2.560000pt;}
.ws69{word-spacing:2.613333pt;}
.ws35{word-spacing:2.720000pt;}
.ws4b{word-spacing:2.773333pt;}
.ws4e{word-spacing:2.880000pt;}
.ws32{word-spacing:2.933333pt;}
.ws2f{word-spacing:2.986667pt;}
.ws6c{word-spacing:3.040000pt;}
.ws49{word-spacing:3.093333pt;}
.ws75{word-spacing:3.146667pt;}
.ws38{word-spacing:3.306667pt;}
.ws9e{word-spacing:3.466667pt;}
.ws24{word-spacing:3.520000pt;}
.ws97{word-spacing:3.626667pt;}
.ws2d{word-spacing:3.946667pt;}
.ws71{word-spacing:4.000000pt;}
.ws31{word-spacing:4.053333pt;}
.ws99{word-spacing:4.106667pt;}
.ws66{word-spacing:4.266667pt;}
.ws9c{word-spacing:4.320000pt;}
.ws34{word-spacing:4.426667pt;}
.ws6f{word-spacing:4.533333pt;}
.ws21{word-spacing:4.586667pt;}
.ws64{word-spacing:4.693333pt;}
.ws7d{word-spacing:4.746667pt;}
.ws46{word-spacing:4.800000pt;}
.ws83{word-spacing:4.906667pt;}
.ws92{word-spacing:4.960000pt;}
.ws48{word-spacing:5.066667pt;}
.ws60{word-spacing:5.120000pt;}
.ws67{word-spacing:5.173333pt;}
.ws8c{word-spacing:5.333333pt;}
.ws2a{word-spacing:5.386667pt;}
.ws50{word-spacing:5.440000pt;}
.ws29{word-spacing:5.493333pt;}
.ws40{word-spacing:5.546667pt;}
.ws79{word-spacing:5.653333pt;}
.ws78{word-spacing:5.706667pt;}
.ws3d{word-spacing:5.760000pt;}
.ws41{word-spacing:6.026667pt;}
.ws81{word-spacing:6.080000pt;}
.ws42{word-spacing:6.133333pt;}
.ws27{word-spacing:6.186667pt;}
.ws2b{word-spacing:6.453333pt;}
.ws3e{word-spacing:6.506667pt;}
.ws76{word-spacing:6.613333pt;}
.ws86{word-spacing:6.773333pt;}
.ws3a{word-spacing:6.826667pt;}
.ws28{word-spacing:6.933333pt;}
.ws3c{word-spacing:7.040000pt;}
.ws85{word-spacing:7.146667pt;}
.ws43{word-spacing:7.306667pt;}
.ws39{word-spacing:7.360000pt;}
.ws37{word-spacing:7.466667pt;}
.ws90{word-spacing:7.520000pt;}
.ws7a{word-spacing:7.946667pt;}
.ws91{word-spacing:8.106667pt;}
.ws7f{word-spacing:8.160000pt;}
.ws20{word-spacing:8.320000pt;}
.ws4a{word-spacing:8.746667pt;}
.ws47{word-spacing:8.960000pt;}
.ws93{word-spacing:9.013333pt;}
.ws55{word-spacing:9.173333pt;}
.ws26{word-spacing:10.293333pt;}
.wsa1{word-spacing:10.773333pt;}
.ws8e{word-spacing:11.040000pt;}
.ws3f{word-spacing:11.093333pt;}
.ws87{word-spacing:11.413333pt;}
.ws8b{word-spacing:12.693333pt;}
.ws8d{word-spacing:13.280000pt;}
.ws1f{word-spacing:13.333333pt;}
.ws1e{word-spacing:15.360000pt;}
.ws95{word-spacing:18.880000pt;}
.ws19{word-spacing:36.746667pt;}
.ws18{word-spacing:38.986667pt;}
.ws16{word-spacing:39.680000pt;}
.ws15{word-spacing:40.533333pt;}
.ws13{word-spacing:41.173333pt;}
.ws17{word-spacing:41.226667pt;}
.wse{word-spacing:46.400000pt;}
.ws1a{word-spacing:46.933333pt;}
.wsd{word-spacing:47.093333pt;}
.ws1b{word-spacing:593.813333pt;}
.ws14{word-spacing:661.866667pt;}
.ws1c{word-spacing:1081.216000pt;}
.wsb{word-spacing:1153.180800pt;}
._17{margin-left:-1832.618667pt;}
._14{margin-left:-596.643200pt;}
._b{margin-left:-574.371733pt;}
._1a{margin-left:-491.093333pt;}
._c{margin-left:-22.272000pt;}
._7{margin-left:-13.363200pt;}
._e{margin-left:-11.573333pt;}
._2{margin-left:-10.426667pt;}
._9{margin-left:-8.893333pt;}
._f{margin-left:-8.000000pt;}
._1c{margin-left:-7.032533pt;}
._d{margin-left:-5.866667pt;}
._a{margin-left:-4.640000pt;}
._3{margin-left:-3.573333pt;}
._4{margin-left:-2.594133pt;}
._1{margin-left:-1.226667pt;}
._6{width:1.075200pt;}
._5{width:2.044800pt;}
._18{width:3.525333pt;}
._8{width:4.584533pt;}
._19{width:6.144000pt;}
._15{width:11.562667pt;}
._16{width:34.730667pt;}
._10{width:53.600000pt;}
._0{width:79.174400pt;}
._1b{width:110.309333pt;}
._12{width:493.066667pt;}
._13{width:511.306667pt;}
._11{width:690.933333pt;}
.fsa{font-size:21.765333pt;}
.fs8{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:61.333333pt;}
.fs3{font-size:74.666667pt;}
.fs9{font-size:82.666667pt;}
.fs4{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:122.666667pt;}
.fs7{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y204{bottom:45.674533pt;}
.y191{bottom:46.433467pt;}
.y101{bottom:47.244133pt;}
.y148{bottom:47.770800pt;}
.y20a{bottom:56.874133pt;}
.y203{bottom:56.874533pt;}
.y190{bottom:57.633467pt;}
.y100{bottom:58.444133pt;}
.y147{bottom:58.970800pt;}
.yb8{bottom:62.561733pt;}
.ycf{bottom:62.677067pt;}
.y76{bottom:62.677200pt;}
.y33{bottom:62.679600pt;}
.yfe{bottom:62.689600pt;}
.y209{bottom:68.074133pt;}
.y202{bottom:68.074533pt;}
.y18f{bottom:68.833467pt;}
.y146{bottom:70.170800pt;}
.yeb{bottom:74.693067pt;}
.yb7{bottom:75.361733pt;}
.y208{bottom:79.274133pt;}
.y201{bottom:79.274533pt;}
.y18e{bottom:80.033467pt;}
.yce{bottom:81.077067pt;}
.y32{bottom:81.077200pt;}
.yfd{bottom:81.089600pt;}
.y145{bottom:81.370800pt;}
.yea{bottom:87.493067pt;}
.yb6{bottom:88.161733pt;}
.y200{bottom:90.474533pt;}
.y18d{bottom:91.233467pt;}
.ycd{bottom:99.477067pt;}
.y31{bottom:99.477200pt;}
.yfc{bottom:99.489600pt;}
.y6{bottom:99.496133pt;}
.y5{bottom:99.677067pt;}
.ye9{bottom:100.293067pt;}
.yb5{bottom:100.961733pt;}
.y207{bottom:101.674133pt;}
.y18c{bottom:102.433467pt;}
.y144{bottom:103.770800pt;}
.y206{bottom:112.874133pt;}
.y1ff{bottom:112.874533pt;}
.ye8{bottom:113.093067pt;}
.y18b{bottom:113.633467pt;}
.yb4{bottom:113.761733pt;}
.y143{bottom:114.970800pt;}
.ycc{bottom:117.877067pt;}
.y75{bottom:117.877200pt;}
.yfb{bottom:117.889600pt;}
.y205{bottom:124.074133pt;}
.y1fe{bottom:124.074533pt;}
.y18a{bottom:124.833467pt;}
.y142{bottom:126.170800pt;}
.yb3{bottom:126.561733pt;}
.ye7{bottom:129.669067pt;}
.y189{bottom:136.033467pt;}
.ycb{bottom:136.277067pt;}
.y30{bottom:136.277200pt;}
.yfa{bottom:136.289600pt;}
.y141{bottom:137.370800pt;}
.y1fd{bottom:139.054133pt;}
.ye6{bottom:142.469067pt;}
.yb2{bottom:143.137733pt;}
.y4{bottom:146.789067pt;}
.y188{bottom:147.233467pt;}
.y140{bottom:148.570800pt;}
.y1fc{bottom:154.387467pt;}
.yca{bottom:154.677067pt;}
.y2f{bottom:154.677200pt;}
.ye5{bottom:155.269067pt;}
.yb1{bottom:155.937733pt;}
.y187{bottom:158.433467pt;}
.y13f{bottom:159.770800pt;}
.y57{bottom:163.061200pt;}
.ye4{bottom:168.069067pt;}
.yb0{bottom:168.737733pt;}
.y186{bottom:169.633467pt;}
.y13e{bottom:170.970800pt;}
.yc9{bottom:173.077067pt;}
.y2e{bottom:173.077200pt;}
.yf9{bottom:173.089600pt;}
.y185{bottom:180.833467pt;}
.yaf{bottom:181.537733pt;}
.ye3{bottom:184.645067pt;}
.yc8{bottom:191.477067pt;}
.y2a{bottom:191.477200pt;}
.y184{bottom:192.033467pt;}
.y13d{bottom:193.370800pt;}
.y3{bottom:193.901067pt;}
.yae{bottom:194.337733pt;}
.y56{bottom:195.247867pt;}
.ye2{bottom:197.445067pt;}
.y43{bottom:200.944133pt;}
.y183{bottom:203.233467pt;}
.y13c{bottom:204.570800pt;}
.yad{bottom:207.137733pt;}
.yc7{bottom:209.877067pt;}
.y29{bottom:209.877200pt;}
.yf8{bottom:209.889600pt;}
.ye1{bottom:210.245067pt;}
.y55{bottom:211.914533pt;}
.y182{bottom:214.433467pt;}
.y13b{bottom:215.770800pt;}
.y1f4{bottom:215.780400pt;}
.y42{bottom:217.610800pt;}
.y1fb{bottom:219.913733pt;}
.yac{bottom:223.713733pt;}
.y181{bottom:225.633467pt;}
.ye0{bottom:226.821067pt;}
.y13a{bottom:226.970800pt;}
.y1f3{bottom:226.980400pt;}
.yc6{bottom:228.277067pt;}
.y2d{bottom:228.277200pt;}
.yf7{bottom:228.289600pt;}
.y54{bottom:228.581200pt;}
.y1fa{bottom:231.113733pt;}
.y41{bottom:234.277467pt;}
.y2{bottom:235.685733pt;}
.yab{bottom:236.513733pt;}
.y180{bottom:236.833467pt;}
.y139{bottom:238.170800pt;}
.y1f2{bottom:238.180400pt;}
.ydf{bottom:239.621067pt;}
.y1f9{bottom:242.313733pt;}
.y53{bottom:245.247867pt;}
.yc5{bottom:246.677067pt;}
.y28{bottom:246.677200pt;}
.yf6{bottom:246.689600pt;}
.y17f{bottom:248.033467pt;}
.yaa{bottom:249.313733pt;}
.y138{bottom:249.370800pt;}
.y1f1{bottom:249.380400pt;}
.y40{bottom:250.944133pt;}
.yde{bottom:252.421067pt;}
.y1f8{bottom:253.513733pt;}
.y17e{bottom:259.233467pt;}
.y137{bottom:260.570800pt;}
.y52{bottom:261.914533pt;}
.ya9{bottom:262.113733pt;}
.yd0{bottom:265.077067pt;}
.y27{bottom:265.077200pt;}
.ydd{bottom:265.221067pt;}
.y17d{bottom:270.433467pt;}
.y136{bottom:271.770800pt;}
.y1f0{bottom:271.780400pt;}
.ya8{bottom:274.913733pt;}
.y1f7{bottom:275.913733pt;}
.ydc{bottom:278.021067pt;}
.y17c{bottom:281.633467pt;}
.y1ca{bottom:282.433333pt;}
.y135{bottom:282.970800pt;}
.y1ef{bottom:282.980400pt;}
.y3f{bottom:283.130800pt;}
.yc4{bottom:283.477067pt;}
.y26{bottom:283.477200pt;}
.y1f6{bottom:287.113733pt;}
.ya7{bottom:287.713733pt;}
.ydb{bottom:290.821067pt;}
.y17b{bottom:292.833467pt;}
.y1c9{bottom:293.633333pt;}
.y51{bottom:294.101200pt;}
.y134{bottom:294.170800pt;}
.y1ee{bottom:297.959867pt;}
.y1f5{bottom:298.313733pt;}
.y3e{bottom:299.797467pt;}
.yc3{bottom:301.877067pt;}
.y25{bottom:301.877200pt;}
.yda{bottom:303.621067pt;}
.y17a{bottom:304.033467pt;}
.ya6{bottom:304.289733pt;}
.y1c8{bottom:304.833333pt;}
.y50{bottom:310.767867pt;}
.y1ed{bottom:313.293200pt;}
.y179{bottom:315.233467pt;}
.y99{bottom:315.828667pt;}
.y1c7{bottom:316.033333pt;}
.y3d{bottom:316.464133pt;}
.y133{bottom:316.570800pt;}
.yc2{bottom:320.277067pt;}
.y24{bottom:320.277200pt;}
.y1c6{bottom:327.233333pt;}
.y4f{bottom:327.434533pt;}
.y132{bottom:327.770800pt;}
.y98{bottom:328.628667pt;}
.y3c{bottom:333.130800pt;}
.y178{bottom:337.633467pt;}
.y1c5{bottom:338.433333pt;}
.yc1{bottom:338.677067pt;}
.y23{bottom:338.677200pt;}
.y131{bottom:338.970800pt;}
.y97{bottom:341.428667pt;}
.y177{bottom:348.833467pt;}
.y1c4{bottom:349.633333pt;}
.y130{bottom:350.170800pt;}
.y96{bottom:354.228667pt;}
.yc0{bottom:357.077067pt;}
.y22{bottom:357.077200pt;}
.y4e{bottom:359.621200pt;}
.y176{bottom:360.033467pt;}
.y12f{bottom:361.370800pt;}
.y3b{bottom:365.317467pt;}
.yf4{bottom:369.740267pt;}
.y95{bottom:370.804667pt;}
.y1c3{bottom:372.033333pt;}
.y12e{bottom:372.570800pt;}
.ybf{bottom:375.477067pt;}
.y21{bottom:375.477200pt;}
.y1ec{bottom:378.226533pt;}
.y3a{bottom:381.984133pt;}
.y175{bottom:382.433467pt;}
.yf3{bottom:382.540267pt;}
.y1c2{bottom:383.233333pt;}
.y94{bottom:383.604667pt;}
.y12d{bottom:383.770800pt;}
.y1e5{bottom:385.293200pt;}
.y1eb{bottom:389.426533pt;}
.y4d{bottom:391.807867pt;}
.y174{bottom:393.633467pt;}
.ybe{bottom:393.877067pt;}
.y2c{bottom:393.877200pt;}
.y1c1{bottom:394.433333pt;}
.y12c{bottom:394.970800pt;}
.yf2{bottom:395.340267pt;}
.y93{bottom:396.404667pt;}
.y1e4{bottom:396.493200pt;}
.y39{bottom:398.650800pt;}
.y1ea{bottom:400.626533pt;}
.y173{bottom:404.833467pt;}
.y1c0{bottom:405.633333pt;}
.y12b{bottom:406.170800pt;}
.y1e3{bottom:407.693200pt;}
.y4c{bottom:408.474533pt;}
.y1e9{bottom:411.826533pt;}
.yf1{bottom:411.916267pt;}
.ybd{bottom:412.277067pt;}
.y20{bottom:412.277200pt;}
.y92{bottom:412.980667pt;}
.y38{bottom:415.317467pt;}
.y12a{bottom:417.370800pt;}
.y1e2{bottom:418.893200pt;}
.y1e8{bottom:423.026533pt;}
.yf0{bottom:424.716267pt;}
.y91{bottom:425.780667pt;}
.y172{bottom:427.233467pt;}
.y1bf{bottom:428.033333pt;}
.ybc{bottom:430.677067pt;}
.y1f{bottom:430.677200pt;}
.y1e7{bottom:434.226533pt;}
.yef{bottom:437.516267pt;}
.y171{bottom:438.433467pt;}
.y90{bottom:438.580667pt;}
.y1be{bottom:439.233333pt;}
.y129{bottom:439.770800pt;}
.y4b{bottom:440.661200pt;}
.y1e1{bottom:441.293200pt;}
.ybb{bottom:449.077067pt;}
.y1e{bottom:449.077200pt;}
.y170{bottom:449.633467pt;}
.y1bd{bottom:450.433333pt;}
.y128{bottom:450.970800pt;}
.yee{bottom:454.092267pt;}
.y1e0{bottom:456.272667pt;}
.y1e6{bottom:456.626533pt;}
.y4a{bottom:457.327867pt;}
.y37{bottom:458.842533pt;}
.y16f{bottom:460.833467pt;}
.y1bc{bottom:461.633333pt;}
.y127{bottom:462.170800pt;}
.yed{bottom:466.892267pt;}
.yba{bottom:467.477067pt;}
.y1d{bottom:467.477200pt;}
.y1df{bottom:471.606000pt;}
.y16e{bottom:472.033467pt;}
.y1bb{bottom:472.833333pt;}
.y126{bottom:473.370800pt;}
.y49{bottom:473.994533pt;}
.yec{bottom:479.692267pt;}
.y36{bottom:480.178533pt;}
.y1ba{bottom:484.033333pt;}
.y125{bottom:484.570800pt;}
.yb9{bottom:485.877067pt;}
.y1c{bottom:485.877200pt;}
.y48{bottom:490.661200pt;}
.y16d{bottom:494.433467pt;}
.y1b9{bottom:495.233333pt;}
.y124{bottom:495.770800pt;}
.y35{bottom:501.514533pt;}
.y8f{bottom:504.277067pt;}
.y1b{bottom:504.277200pt;}
.y16c{bottom:505.633467pt;}
.y1b8{bottom:506.433333pt;}
.y123{bottom:506.970800pt;}
.y16b{bottom:516.833467pt;}
.y1b7{bottom:517.633333pt;}
.y8e{bottom:522.677067pt;}
.y1a{bottom:522.677200pt;}
.y34{bottom:522.847867pt;}
.y1de{bottom:525.635867pt;}
.y1b6{bottom:528.833333pt;}
.y122{bottom:529.370800pt;}
.y1dd{bottom:536.835867pt;}
.y16a{bottom:539.236133pt;}
.y1b5{bottom:540.033333pt;}
.y121{bottom:540.570800pt;}
.y8d{bottom:541.077067pt;}
.y19{bottom:541.077200pt;}
.y1dc{bottom:548.035867pt;}
.y1b4{bottom:551.233333pt;}
.y169{bottom:551.238800pt;}
.y120{bottom:551.770800pt;}
.y1db{bottom:559.235867pt;}
.y8c{bottom:559.477067pt;}
.y18{bottom:559.477200pt;}
.y1b3{bottom:562.433333pt;}
.y168{bottom:562.438800pt;}
.y11f{bottom:562.970800pt;}
.y6f{bottom:568.448000pt;}
.y1da{bottom:570.435867pt;}
.y1b2{bottom:573.633333pt;}
.y167{bottom:573.638800pt;}
.y11e{bottom:574.170800pt;}
.y8b{bottom:577.877067pt;}
.y17{bottom:577.877200pt;}
.y6e{bottom:581.248000pt;}
.y1d9{bottom:581.635867pt;}
.y1b1{bottom:584.833333pt;}
.y166{bottom:584.838800pt;}
.y11d{bottom:585.366800pt;}
.y6d{bottom:594.048000pt;}
.y63{bottom:595.680800pt;}
.y1b0{bottom:596.033333pt;}
.y165{bottom:596.038800pt;}
.y8a{bottom:596.277067pt;}
.y16{bottom:596.277200pt;}
.y1d8{bottom:604.035867pt;}
.y6c{bottom:606.848000pt;}
.y1af{bottom:607.233333pt;}
.y11c{bottom:607.234800pt;}
.y164{bottom:607.238800pt;}
.y62{bottom:614.080800pt;}
.y89{bottom:614.677067pt;}
.y2b{bottom:614.677200pt;}
.y1d7{bottom:615.235867pt;}
.y47{bottom:616.506533pt;}
.y1ae{bottom:618.433333pt;}
.y11b{bottom:618.434800pt;}
.y163{bottom:618.438800pt;}
.y6b{bottom:623.424000pt;}
.y1ad{bottom:629.633333pt;}
.y11a{bottom:629.634800pt;}
.y162{bottom:629.638800pt;}
.y1d6{bottom:630.215333pt;}
.y61{bottom:632.480800pt;}
.y88{bottom:633.077067pt;}
.y15{bottom:633.077200pt;}
.y45{bottom:634.819200pt;}
.y6a{bottom:636.224000pt;}
.y1ac{bottom:640.833333pt;}
.y119{bottom:640.834800pt;}
.y161{bottom:640.838800pt;}
.y69{bottom:649.024000pt;}
.y60{bottom:650.880800pt;}
.y87{bottom:651.477067pt;}
.y14{bottom:651.477200pt;}
.y1ab{bottom:652.033333pt;}
.y118{bottom:652.034800pt;}
.y160{bottom:652.038800pt;}
.y46{bottom:658.456533pt;}
.y68{bottom:661.824000pt;}
.y1aa{bottom:663.233333pt;}
.y117{bottom:663.234800pt;}
.y5f{bottom:669.280800pt;}
.y86{bottom:669.877067pt;}
.y13{bottom:669.877200pt;}
.y1a9{bottom:674.433333pt;}
.y116{bottom:674.434800pt;}
.y15f{bottom:674.438800pt;}
.y67{bottom:678.400000pt;}
.y1d4{bottom:684.245200pt;}
.y1a8{bottom:685.633333pt;}
.y115{bottom:685.634800pt;}
.y15e{bottom:685.638800pt;}
.y5e{bottom:687.680800pt;}
.y85{bottom:688.277067pt;}
.y12{bottom:688.277200pt;}
.y66{bottom:691.200000pt;}
.y1d3{bottom:695.445200pt;}
.y1a7{bottom:696.833333pt;}
.y114{bottom:696.834800pt;}
.y15d{bottom:696.838800pt;}
.y65{bottom:704.000000pt;}
.y5d{bottom:706.080800pt;}
.y1d2{bottom:706.645200pt;}
.y84{bottom:706.677067pt;}
.y11{bottom:706.677200pt;}
.y1a6{bottom:708.033333pt;}
.y113{bottom:708.034800pt;}
.y15c{bottom:708.038800pt;}
.y64{bottom:716.800000pt;}
.y1d1{bottom:717.845200pt;}
.y1a5{bottom:719.233333pt;}
.y112{bottom:719.234800pt;}
.y15b{bottom:719.238800pt;}
.y5c{bottom:724.480800pt;}
.y10{bottom:725.077200pt;}
.y1d5{bottom:729.045200pt;}
.y1a4{bottom:730.433333pt;}
.y15a{bottom:730.438800pt;}
.y1d0{bottom:740.245200pt;}
.y1a3{bottom:741.633333pt;}
.y111{bottom:741.634800pt;}
.y159{bottom:741.638800pt;}
.y83{bottom:743.477067pt;}
.yf{bottom:743.477200pt;}
.y1cf{bottom:751.445200pt;}
.y1a2{bottom:752.833333pt;}
.y110{bottom:752.834800pt;}
.y158{bottom:752.838800pt;}
.y82{bottom:761.877067pt;}
.ye{bottom:761.877200pt;}
.y1ce{bottom:762.645200pt;}
.y1a1{bottom:764.033333pt;}
.y10f{bottom:764.034800pt;}
.y157{bottom:764.038800pt;}
.y1cd{bottom:773.845200pt;}
.y1a0{bottom:775.233333pt;}
.y10e{bottom:775.234800pt;}
.y156{bottom:775.238800pt;}
.y81{bottom:780.277067pt;}
.yd{bottom:780.277200pt;}
.y19f{bottom:786.433333pt;}
.y10d{bottom:786.434800pt;}
.y155{bottom:786.438800pt;}
.y1cc{bottom:788.824800pt;}
.y5b{bottom:796.627467pt;}
.y19e{bottom:797.633333pt;}
.y10c{bottom:797.634800pt;}
.y154{bottom:797.638800pt;}
.y80{bottom:798.677067pt;}
.yc{bottom:798.677200pt;}
.y19d{bottom:808.833333pt;}
.y10b{bottom:808.834800pt;}
.y7f{bottom:817.077067pt;}
.yb{bottom:817.077200pt;}
.ya5{bottom:817.785333pt;}
.y19c{bottom:820.033333pt;}
.y10a{bottom:820.034800pt;}
.y153{bottom:820.038800pt;}
.ya4{bottom:830.585333pt;}
.y19b{bottom:831.233333pt;}
.y152{bottom:831.238800pt;}
.y7e{bottom:835.477067pt;}
.ya{bottom:835.477200pt;}
.y19a{bottom:842.433333pt;}
.y109{bottom:842.434800pt;}
.y151{bottom:842.438800pt;}
.y213{bottom:842.854533pt;}
.ya3{bottom:843.385333pt;}
.y21a{bottom:849.921200pt;}
.y199{bottom:853.633333pt;}
.y108{bottom:853.634800pt;}
.y150{bottom:853.638800pt;}
.y7d{bottom:853.877067pt;}
.y9{bottom:853.877200pt;}
.y212{bottom:854.054533pt;}
.y5a{bottom:854.227467pt;}
.ya2{bottom:856.185333pt;}
.yd9{bottom:857.013200pt;}
.y219{bottom:861.121200pt;}
.y198{bottom:864.833333pt;}
.y107{bottom:864.834800pt;}
.y14f{bottom:864.838800pt;}
.y211{bottom:865.254533pt;}
.yd8{bottom:869.813200pt;}
.y7c{bottom:872.277067pt;}
.y8{bottom:872.277200pt;}
.y218{bottom:872.321200pt;}
.ya1{bottom:872.761333pt;}
.y197{bottom:876.033333pt;}
.y106{bottom:876.034800pt;}
.y14e{bottom:876.038800pt;}
.y210{bottom:876.454533pt;}
.yd7{bottom:882.613200pt;}
.y217{bottom:883.521200pt;}
.ya0{bottom:885.561333pt;}
.y196{bottom:887.236133pt;}
.y14d{bottom:887.238800pt;}
.y7b{bottom:890.677067pt;}
.y74{bottom:890.677200pt;}
.y9f{bottom:898.361333pt;}
.y105{bottom:898.434800pt;}
.y195{bottom:898.436133pt;}
.y14c{bottom:898.438800pt;}
.y20f{bottom:898.854533pt;}
.yd6{bottom:899.189200pt;}
.y216{bottom:905.921200pt;}
.y7a{bottom:909.077067pt;}
.y73{bottom:909.077200pt;}
.y104{bottom:909.634800pt;}
.y194{bottom:909.636133pt;}
.y14b{bottom:909.638800pt;}
.y20e{bottom:910.054533pt;}
.y9e{bottom:911.161333pt;}
.y59{bottom:911.827467pt;}
.yd5{bottom:911.989200pt;}
.y215{bottom:917.121200pt;}
.y103{bottom:920.834800pt;}
.y193{bottom:920.836133pt;}
.y14a{bottom:920.838800pt;}
.y20d{bottom:921.254533pt;}
.yd4{bottom:924.789200pt;}
.y79{bottom:927.477067pt;}
.y72{bottom:927.477200pt;}
.y9d{bottom:927.737333pt;}
.y102{bottom:932.034800pt;}
.y192{bottom:932.036133pt;}
.y149{bottom:932.038800pt;}
.y214{bottom:932.100800pt;}
.y20c{bottom:932.454533pt;}
.y9c{bottom:940.537333pt;}
.yd3{bottom:941.365200pt;}
.y78{bottom:945.877067pt;}
.y71{bottom:945.877200pt;}
.y20b{bottom:947.434133pt;}
.y9b{bottom:953.337333pt;}
.yd2{bottom:954.165200pt;}
.y7{bottom:958.819600pt;}
.y58{bottom:959.827467pt;}
.y77{bottom:964.277067pt;}
.y70{bottom:964.277200pt;}
.yff{bottom:964.488933pt;}
.y9a{bottom:966.137333pt;}
.yd1{bottom:966.965200pt;}
.y1cb{bottom:997.124267pt;}
.y1{bottom:1028.386133pt;}
.y44{bottom:1028.386267pt;}
.yf5{bottom:1028.396267pt;}
.h11{height:34.869333pt;}
.h12{height:35.504000pt;}
.hc{height:37.973333pt;}
.h9{height:39.850667pt;}
.h2{height:40.576000pt;}
.hf{height:48.373333pt;}
.h10{height:49.013333pt;}
.h8{height:49.813333pt;}
.hb{height:50.720000pt;}
.he{height:57.285333pt;}
.h7{height:58.328000pt;}
.h5{height:71.008000pt;}
.h13{height:78.616000pt;}
.h6{height:81.152000pt;}
.h4{height:91.296000pt;}
.h3{height:116.656000pt;}
.ha{height:135.146667pt;}
.hd{height:182.592000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:31.297333pt;}
.x1b{left:45.457333pt;}
.x3{left:56.476800pt;}
.x13{left:68.031600pt;}
.x10{left:79.372933pt;}
.x7{left:84.796533pt;}
.x2{left:104.230533pt;}
.x1c{left:149.511067pt;}
.xd{left:235.729733pt;}
.x4{left:291.023600pt;}
.x8{left:303.916000pt;}
.x17{left:309.822133pt;}
.xa{left:327.816533pt;}
.x6{left:415.746267pt;}
.x11{left:427.086667pt;}
.x12{left:438.426267pt;}
.xc{left:444.551067pt;}
.xe{left:472.440933pt;}
.xf{left:483.779600pt;}
.x15{left:502.681333pt;}
.x16{left:514.020000pt;}
.x9{left:523.128533pt;}
.x18{left:525.354267pt;}
.x1d{left:529.133867pt;}
.x1a{left:532.915200pt;}
.x14{left:570.708667pt;}
.x1{left:621.500533pt;}
.xb{left:704.391067pt;}
.x19{left:731.892533pt;}
}




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