
    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_c2423a49287fedb35c86bfa9.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_1c6a4767172635f4b66cfe03.woff2')format("woff");}.ffb{font-family:ffb;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: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_b2c7e7ecd17d69205c35743b.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cabdb3b8f52ebab3ed2c20ca.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_61ae98d494500a65d798a214.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c2423a49287fedb35c86bfa9.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_53704e05e14b69d8636e3c17.woff2')format("woff");}.ff11{font-family:ff11;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);}
.v4{vertical-align:-18.018000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.986000px;}
.v2{vertical-align:15.984000px;}
.v3{vertical-align:19.979400px;}
.v1{vertical-align:96.000000px;}
.lsd{letter-spacing:-1.200000px;}
.ls36{letter-spacing:-1.050000px;}
.ls2d{letter-spacing:-0.960000px;}
.ls34{letter-spacing:-0.840000px;}
.lsa{letter-spacing:-0.600000px;}
.ls23{letter-spacing:-0.480000px;}
.ls33{letter-spacing:-0.420000px;}
.ls2b{letter-spacing:-0.300000px;}
.ls31{letter-spacing:-0.240000px;}
.ls35{letter-spacing:-0.210000px;}
.ls30{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.060000px;}
.ls25{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.240000px;}
.ls24{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.324000px;}
.lse{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.390000px;}
.ls1f{letter-spacing:0.420000px;}
.ls37{letter-spacing:0.465000px;}
.ls10{letter-spacing:0.480000px;}
.lsf{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.545400px;}
.ls2c{letter-spacing:0.559680px;}
.ls9{letter-spacing:0.600000px;}
.ls11{letter-spacing:0.660000px;}
.ls7{letter-spacing:0.690000px;}
.ls28{letter-spacing:0.690600px;}
.ls21{letter-spacing:0.720000px;}
.ls2e{letter-spacing:0.723600px;}
.ls14{letter-spacing:0.840000px;}
.ls13{letter-spacing:0.900000px;}
.ls29{letter-spacing:0.931200px;}
.ls6{letter-spacing:0.960000px;}
.ls12{letter-spacing:1.020000px;}
.ls17{letter-spacing:1.050000px;}
.ls1{letter-spacing:1.080000px;}
.ls20{letter-spacing:1.140000px;}
.ls27{letter-spacing:1.168800px;}
.ls19{letter-spacing:1.200000px;}
.ls26{letter-spacing:1.260000px;}
.ls1c{letter-spacing:1.320000px;}
.lsc{letter-spacing:1.377600px;}
.ls0{letter-spacing:1.380000px;}
.ls2f{letter-spacing:1.440000px;}
.ls18{letter-spacing:1.500000px;}
.ls1a{letter-spacing:1.620000px;}
.ls1b{letter-spacing:1.650000px;}
.ls5{letter-spacing:1.680000px;}
.ls16{letter-spacing:1.800000px;}
.ls22{letter-spacing:39.072000px;}
.lsb{letter-spacing:72.958800px;}
.ls8{letter-spacing:89.232000px;}
.ls32{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;}
}
.wsa1{word-spacing:-23.232000px;}
.ws0{word-spacing:-21.168000px;}
.ws6{word-spacing:-16.698000px;}
.wsb1{word-spacing:-16.008000px;}
.ws1d{word-spacing:-15.870000px;}
.ws8b{word-spacing:-15.060000px;}
.wsc{word-spacing:-14.940000px;}
.ws1f{word-spacing:-14.400000px;}
.wsf{word-spacing:-13.920000px;}
.ws1e{word-spacing:-11.952000px;}
.ws8c{word-spacing:-11.424000px;}
.ws7{word-spacing:-11.232000px;}
.ws8d{word-spacing:-11.136000px;}
.ws8f{word-spacing:-10.992000px;}
.ws8e{word-spacing:-10.464000px;}
.wsa2{word-spacing:-10.458000px;}
.wsa6{word-spacing:-10.038000px;}
.wsa3{word-spacing:-9.744000px;}
.wsa4{word-spacing:-9.534000px;}
.wsa5{word-spacing:-9.324000px;}
.ws69{word-spacing:-8.605080px;}
.ws68{word-spacing:-8.045400px;}
.ws5b{word-spacing:-6.968016px;}
.wsb0{word-spacing:-6.097014px;}
.ws10{word-spacing:-5.952000px;}
.wsa8{word-spacing:-5.628000px;}
.wsa9{word-spacing:-5.208000px;}
.wsad{word-spacing:-4.914000px;}
.wsa7{word-spacing:-4.494000px;}
.ws79{word-spacing:-3.900000px;}
.ws56{word-spacing:-3.840000px;}
.ws55{word-spacing:-3.540000px;}
.ws6e{word-spacing:-2.880000px;}
.ws2a{word-spacing:-2.760000px;}
.ws29{word-spacing:-2.640000px;}
.ws7d{word-spacing:-2.520000px;}
.ws60{word-spacing:-2.460000px;}
.ws78{word-spacing:-2.400000px;}
.ws90{word-spacing:-2.340000px;}
.ws74{word-spacing:-2.280000px;}
.ws85{word-spacing:-2.100000px;}
.ws27{word-spacing:-2.040000px;}
.ws6f{word-spacing:-1.920000px;}
.ws61{word-spacing:-1.800000px;}
.ws12{word-spacing:-1.680000px;}
.ws21{word-spacing:-1.620000px;}
.ws4f{word-spacing:-1.500000px;}
.ws32{word-spacing:-1.260000px;}
.ws40{word-spacing:-1.200000px;}
.ws6d{word-spacing:-1.140000px;}
.ws70{word-spacing:-1.080000px;}
.ws75{word-spacing:-1.020000px;}
.ws86{word-spacing:-0.960000px;}
.wsae{word-spacing:-0.840000px;}
.ws76{word-spacing:-0.780000px;}
.ws5c{word-spacing:-0.720000px;}
.ws2{word-spacing:-0.690000px;}
.ws6b{word-spacing:-0.660000px;}
.ws9{word-spacing:-0.600000px;}
.ws3{word-spacing:-0.540000px;}
.ws11{word-spacing:-0.420000px;}
.ws66{word-spacing:-0.360000px;}
.wsaf{word-spacing:-0.210000px;}
.ws39{word-spacing:-0.180000px;}
.wsac{word-spacing:-0.168000px;}
.wsaa{word-spacing:-0.126000px;}
.wsa{word-spacing:-0.120000px;}
.ws8{word-spacing:-0.069000px;}
.ws83{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws3e{word-spacing:0.060000px;}
.ws22{word-spacing:0.120000px;}
.ws5{word-spacing:0.216000px;}
.ws25{word-spacing:0.300000px;}
.ws4{word-spacing:0.324000px;}
.ws87{word-spacing:0.360000px;}
.ws51{word-spacing:0.600000px;}
.ws9e{word-spacing:0.660000px;}
.ws9c{word-spacing:0.780000px;}
.wsab{word-spacing:0.840000px;}
.ws59{word-spacing:0.900000px;}
.ws6a{word-spacing:0.960000px;}
.ws73{word-spacing:1.020000px;}
.ws28{word-spacing:1.080000px;}
.ws91{word-spacing:1.140000px;}
.ws2d{word-spacing:1.320000px;}
.ws95{word-spacing:1.380000px;}
.ws54{word-spacing:1.440000px;}
.ws97{word-spacing:1.560000px;}
.ws5d{word-spacing:1.740000px;}
.ws96{word-spacing:1.800000px;}
.ws62{word-spacing:1.920000px;}
.ws71{word-spacing:2.100000px;}
.ws52{word-spacing:2.160000px;}
.ws7b{word-spacing:2.280000px;}
.ws9f{word-spacing:2.340000px;}
.ws80{word-spacing:2.400000px;}
.ws3f{word-spacing:2.460000px;}
.ws5f{word-spacing:2.700000px;}
.ws35{word-spacing:2.760000px;}
.ws9d{word-spacing:2.880000px;}
.ws67{word-spacing:3.000000px;}
.ws2c{word-spacing:3.120000px;}
.ws5e{word-spacing:3.180000px;}
.ws7a{word-spacing:3.240000px;}
.ws36{word-spacing:3.300000px;}
.ws3b{word-spacing:3.360000px;}
.ws72{word-spacing:3.420000px;}
.ws34{word-spacing:3.600000px;}
.ws4d{word-spacing:3.960000px;}
.ws98{word-spacing:4.020000px;}
.ws7f{word-spacing:4.080000px;}
.ws4c{word-spacing:4.140000px;}
.ws20{word-spacing:4.260000px;}
.ws4a{word-spacing:4.320000px;}
.ws6c{word-spacing:4.380000px;}
.ws33{word-spacing:4.500000px;}
.ws2b{word-spacing:4.560000px;}
.ws53{word-spacing:4.680000px;}
.ws65{word-spacing:4.980000px;}
.ws93{word-spacing:5.040000px;}
.ws38{word-spacing:5.160000px;}
.ws63{word-spacing:5.280000px;}
.ws30{word-spacing:5.340000px;}
.ws24{word-spacing:5.400000px;}
.ws49{word-spacing:5.460000px;}
.ws58{word-spacing:5.520000px;}
.ws23{word-spacing:5.580000px;}
.ws48{word-spacing:6.000000px;}
.ws84{word-spacing:6.120000px;}
.ws92{word-spacing:6.360000px;}
.ws2f{word-spacing:6.480000px;}
.ws3a{word-spacing:6.660000px;}
.ws8a{word-spacing:6.780000px;}
.ws89{word-spacing:6.840000px;}
.ws77{word-spacing:7.080000px;}
.ws88{word-spacing:7.140000px;}
.ws3c{word-spacing:7.200000px;}
.ws3d{word-spacing:7.380000px;}
.ws5a{word-spacing:7.440000px;}
.ws50{word-spacing:7.560000px;}
.ws2e{word-spacing:7.680000px;}
.ws31{word-spacing:7.980000px;}
.ws81{word-spacing:8.040000px;}
.ws42{word-spacing:8.220000px;}
.ws94{word-spacing:8.340000px;}
.ws26{word-spacing:8.520000px;}
.ws47{word-spacing:8.820000px;}
.ws45{word-spacing:9.180000px;}
.ws64{word-spacing:9.300000px;}
.ws41{word-spacing:9.420000px;}
.ws82{word-spacing:9.660000px;}
.ws4b{word-spacing:9.960000px;}
.ws99{word-spacing:10.200000px;}
.ws37{word-spacing:10.260000px;}
.ws9a{word-spacing:10.560000px;}
.ws7e{word-spacing:10.740000px;}
.wsa0{word-spacing:11.160000px;}
.ws44{word-spacing:12.000000px;}
.ws7c{word-spacing:12.300000px;}
.ws46{word-spacing:12.480000px;}
.ws9b{word-spacing:14.160000px;}
.ws4e{word-spacing:14.280000px;}
.ws57{word-spacing:17.760000px;}
.ws43{word-spacing:28.440000px;}
.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:1291.776000px;}
.wsb{word-spacing:1297.328400px;}
._17{margin-left:-1986.288000px;}
._14{margin-left:-671.223600px;}
._b{margin-left:-646.168200px;}
._1d{margin-left:-552.480000px;}
._15{margin-left:-50.112000px;}
._16{margin-left:-32.400000px;}
._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;}
._20{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;}
._1e{width:3.523800px;}
._8{width:5.157600px;}
._18{width:9.090000px;}
._1b{width:10.528200px;}
._1c{width:12.360000px;}
._19{width:13.488000px;}
._1a{width:39.072000px;}
._10{width:60.300000px;}
._0{width:89.071200px;}
._1f{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);}
.fsc{font-size:24.486000px;}
.fs8{font-size:27.984000px;}
.fs9{font-size:34.980000px;}
.fsa{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:69.000000px;}
.fs3{font-size:84.000000px;}
.fsb{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;}
.y1ed{bottom:51.383850px;}
.y17a{bottom:52.237650px;}
.yea{bottom:53.149650px;}
.y131{bottom:53.742150px;}
.y1f3{bottom:63.983400px;}
.y1ec{bottom:63.983850px;}
.y179{bottom:64.837650px;}
.ye9{bottom:65.749650px;}
.y130{bottom:66.342150px;}
.y5e{bottom:69.894150px;}
.y95{bottom:70.378050px;}
.y75{bottom:70.511850px;}
.y33{bottom:70.514550px;}
.ye7{bottom:70.519800px;}
.y1f2{bottom:76.583400px;}
.y1eb{bottom:76.583850px;}
.y178{bottom:77.437650px;}
.y12f{bottom:78.942150px;}
.y94{bottom:84.778050px;}
.ye6{bottom:84.919800px;}
.y1f1{bottom:89.183400px;}
.y1ea{bottom:89.183850px;}
.y177{bottom:90.037650px;}
.y5d{bottom:90.594150px;}
.y32{bottom:91.211850px;}
.y12e{bottom:91.542150px;}
.y93{bottom:99.178050px;}
.ye5{bottom:99.319800px;}
.y1e9{bottom:101.783850px;}
.y176{bottom:102.637650px;}
.y5c{bottom:111.294150px;}
.y31{bottom:111.911850px;}
.y6{bottom:111.933150px;}
.y5{bottom:112.136700px;}
.y92{bottom:113.578050px;}
.ye4{bottom:113.719800px;}
.y1f0{bottom:114.383400px;}
.y175{bottom:115.237650px;}
.y12d{bottom:116.742150px;}
.y1ef{bottom:126.983400px;}
.y1e8{bottom:126.983850px;}
.y174{bottom:127.837650px;}
.y91{bottom:127.978050px;}
.y12c{bottom:129.342150px;}
.y5b{bottom:131.994150px;}
.ye3{bottom:132.367800px;}
.y74{bottom:132.611850px;}
.y1ee{bottom:139.583400px;}
.y1e7{bottom:139.583850px;}
.y173{bottom:140.437650px;}
.y12b{bottom:141.942150px;}
.y90{bottom:142.378050px;}
.ye2{bottom:146.767800px;}
.y172{bottom:153.037650px;}
.y30{bottom:153.311850px;}
.y12a{bottom:154.542150px;}
.y1e6{bottom:156.435900px;}
.y8f{bottom:161.026050px;}
.ye1{bottom:161.167800px;}
.y4{bottom:165.137700px;}
.y171{bottom:165.637650px;}
.y129{bottom:167.142150px;}
.y1e5{bottom:173.685900px;}
.y2f{bottom:174.011850px;}
.y8e{bottom:175.426050px;}
.ye0{bottom:175.567800px;}
.y170{bottom:178.237650px;}
.y128{bottom:179.742150px;}
.y57{bottom:183.443850px;}
.y8d{bottom:189.826050px;}
.ydf{bottom:189.967800px;}
.y16f{bottom:190.837650px;}
.y127{bottom:192.342150px;}
.y2e{bottom:194.711850px;}
.y16e{bottom:203.437650px;}
.y8c{bottom:204.226050px;}
.y5a{bottom:205.904250px;}
.yde{bottom:208.615800px;}
.y2a{bottom:215.411850px;}
.y16d{bottom:216.037650px;}
.y126{bottom:217.542150px;}
.y3{bottom:218.138700px;}
.y8b{bottom:218.626050px;}
.y56{bottom:219.653850px;}
.ydd{bottom:223.015800px;}
.y43{bottom:226.062150px;}
.y16c{bottom:228.637650px;}
.y125{bottom:230.142150px;}
.y8a{bottom:233.026050px;}
.y29{bottom:236.111850px;}
.ydc{bottom:237.415800px;}
.y55{bottom:238.403850px;}
.y16b{bottom:241.237650px;}
.y124{bottom:242.742150px;}
.y1dd{bottom:242.752950px;}
.y42{bottom:244.812150px;}
.y1e4{bottom:247.402950px;}
.y89{bottom:251.674050px;}
.ydb{bottom:251.815800px;}
.y16a{bottom:253.837650px;}
.y123{bottom:255.342150px;}
.y1dc{bottom:255.352950px;}
.y2d{bottom:256.811850px;}
.y54{bottom:257.153850px;}
.y1e3{bottom:260.002950px;}
.y41{bottom:263.562150px;}
.y2{bottom:265.146450px;}
.y88{bottom:266.074050px;}
.yda{bottom:266.215800px;}
.y169{bottom:266.437650px;}
.y122{bottom:267.942150px;}
.y1db{bottom:267.952950px;}
.y59{bottom:270.704250px;}
.y1e2{bottom:272.602950px;}
.y53{bottom:275.903850px;}
.y28{bottom:277.511850px;}
.y168{bottom:279.037650px;}
.y87{bottom:280.474050px;}
.y121{bottom:280.542150px;}
.y1da{bottom:280.552950px;}
.y40{bottom:282.312150px;}
.y1e1{bottom:285.202950px;}
.y167{bottom:291.637650px;}
.y120{bottom:293.142150px;}
.y52{bottom:294.653850px;}
.y86{bottom:294.874050px;}
.y27{bottom:298.211850px;}
.y166{bottom:304.237650px;}
.y11f{bottom:305.742150px;}
.y1d9{bottom:305.752950px;}
.y85{bottom:309.274050px;}
.y1e0{bottom:310.402950px;}
.y165{bottom:316.837650px;}
.y1b3{bottom:317.737500px;}
.y11e{bottom:318.342150px;}
.y1d8{bottom:318.352950px;}
.y3f{bottom:318.522150px;}
.y26{bottom:318.911850px;}
.y1df{bottom:323.002950px;}
.y84{bottom:323.674050px;}
.y164{bottom:329.437650px;}
.y1b2{bottom:330.337500px;}
.y51{bottom:330.863850px;}
.y11d{bottom:330.942150px;}
.y1d7{bottom:335.204850px;}
.y58{bottom:335.504250px;}
.y1de{bottom:335.602950px;}
.y3e{bottom:337.272150px;}
.y25{bottom:339.611850px;}
.y163{bottom:342.037650px;}
.y1b1{bottom:342.937500px;}
.y50{bottom:349.613850px;}
.y1d6{bottom:352.454850px;}
.y162{bottom:354.637650px;}
.y1b0{bottom:355.537500px;}
.y3d{bottom:356.022150px;}
.y11c{bottom:356.142150px;}
.y24{bottom:360.311850px;}
.y1af{bottom:368.137500px;}
.y4f{bottom:368.363850px;}
.y11b{bottom:368.742150px;}
.y3c{bottom:374.772150px;}
.y83{bottom:378.336150px;}
.y161{bottom:379.837650px;}
.y1ae{bottom:380.737500px;}
.y23{bottom:381.011850px;}
.y11a{bottom:381.342150px;}
.yd9{bottom:385.847850px;}
.y160{bottom:392.437650px;}
.y82{bottom:392.736150px;}
.y1ad{bottom:393.337500px;}
.y119{bottom:393.942150px;}
.yd8{bottom:400.247850px;}
.y22{bottom:401.711850px;}
.y4e{bottom:404.573850px;}
.y15f{bottom:405.037650px;}
.y118{bottom:406.542150px;}
.y81{bottom:407.136150px;}
.y3b{bottom:410.982150px;}
.yd7{bottom:414.647850px;}
.y1ac{bottom:418.537500px;}
.y117{bottom:419.142150px;}
.y80{bottom:421.536150px;}
.y21{bottom:422.411850px;}
.y1d5{bottom:425.504850px;}
.yd6{bottom:429.047850px;}
.y3a{bottom:429.732150px;}
.y15e{bottom:430.237650px;}
.y1ab{bottom:431.137500px;}
.y116{bottom:431.742150px;}
.y1ce{bottom:433.454850px;}
.y7f{bottom:435.936150px;}
.y1d4{bottom:438.104850px;}
.y4d{bottom:440.783850px;}
.y15d{bottom:442.837650px;}
.y2c{bottom:443.111850px;}
.y1aa{bottom:443.737500px;}
.y115{bottom:444.342150px;}
.y1cd{bottom:446.054850px;}
.yd5{bottom:447.695850px;}
.y39{bottom:448.482150px;}
.y1d3{bottom:450.704850px;}
.y7e{bottom:454.584150px;}
.y15c{bottom:455.437650px;}
.y1a9{bottom:456.337500px;}
.y114{bottom:456.942150px;}
.y1cc{bottom:458.654850px;}
.y4c{bottom:459.533850px;}
.yd4{bottom:462.095850px;}
.y1d2{bottom:463.304850px;}
.y20{bottom:463.811850px;}
.y38{bottom:467.232150px;}
.y7d{bottom:468.984150px;}
.y113{bottom:469.542150px;}
.y1cb{bottom:471.254850px;}
.y1d1{bottom:475.904850px;}
.yd3{bottom:476.495850px;}
.y15b{bottom:480.637650px;}
.y1a8{bottom:481.537500px;}
.y7c{bottom:483.384150px;}
.y1f{bottom:484.511850px;}
.y1d0{bottom:488.504850px;}
.yd2{bottom:490.895850px;}
.y15a{bottom:493.237650px;}
.y1a7{bottom:494.137500px;}
.y112{bottom:494.742150px;}
.y4b{bottom:495.743850px;}
.y1ca{bottom:496.454850px;}
.y7b{bottom:497.784150px;}
.y1e{bottom:505.211850px;}
.yd1{bottom:505.295850px;}
.y159{bottom:505.837650px;}
.y1a6{bottom:506.737500px;}
.y111{bottom:507.342150px;}
.y7a{bottom:512.184150px;}
.y1c9{bottom:513.306750px;}
.y1cf{bottom:513.704850px;}
.y4a{bottom:514.493850px;}
.y37{bottom:516.197850px;}
.y158{bottom:518.437650px;}
.y1a5{bottom:519.337500px;}
.y110{bottom:519.942150px;}
.yd0{bottom:523.943850px;}
.ycf{bottom:525.286050px;}
.yc0{bottom:525.911700px;}
.y1d{bottom:525.911850px;}
.y1c8{bottom:530.556750px;}
.y79{bottom:530.832150px;}
.y157{bottom:531.037650px;}
.y1a4{bottom:531.937500px;}
.y10f{bottom:532.542150px;}
.y49{bottom:533.243850px;}
.yce{bottom:539.686050px;}
.y36{bottom:540.200850px;}
.y1a3{bottom:544.537500px;}
.y10e{bottom:545.142150px;}
.y78{bottom:545.232150px;}
.ybf{bottom:546.611700px;}
.y1c{bottom:546.611850px;}
.y48{bottom:551.993850px;}
.ycd{bottom:554.086050px;}
.y156{bottom:556.237650px;}
.y1a2{bottom:557.137500px;}
.y10d{bottom:557.742150px;}
.y77{bottom:559.632150px;}
.y35{bottom:564.203850px;}
.ybe{bottom:567.311700px;}
.y1b{bottom:567.311850px;}
.ycc{bottom:568.486050px;}
.y155{bottom:568.837650px;}
.y1a1{bottom:569.737500px;}
.y10c{bottom:570.342150px;}
.y76{bottom:574.032150px;}
.y154{bottom:581.437650px;}
.y1a0{bottom:582.337500px;}
.ycb{bottom:582.886050px;}
.ybd{bottom:588.011700px;}
.y1a{bottom:588.011850px;}
.y34{bottom:588.203850px;}
.y1c7{bottom:591.340350px;}
.y19f{bottom:594.937500px;}
.y10b{bottom:595.542150px;}
.yca{bottom:601.534050px;}
.y1c6{bottom:603.940350px;}
.y153{bottom:606.640650px;}
.y19e{bottom:607.537500px;}
.y10a{bottom:608.142150px;}
.ybc{bottom:608.711700px;}
.y19{bottom:608.711850px;}
.yc9{bottom:615.934050px;}
.y1c5{bottom:616.540350px;}
.y19d{bottom:620.137500px;}
.y152{bottom:620.143650px;}
.y109{bottom:620.742150px;}
.y1c4{bottom:629.140350px;}
.ybb{bottom:629.411700px;}
.y18{bottom:629.411850px;}
.yc8{bottom:630.334050px;}
.y19c{bottom:632.737500px;}
.y151{bottom:632.743650px;}
.y108{bottom:633.342150px;}
.y1c3{bottom:641.740350px;}
.yc7{bottom:644.734050px;}
.y19b{bottom:645.337500px;}
.y150{bottom:645.343650px;}
.y107{bottom:645.942150px;}
.yba{bottom:650.111700px;}
.y17{bottom:650.111850px;}
.y1c2{bottom:654.340350px;}
.y19a{bottom:657.937500px;}
.y14f{bottom:657.943650px;}
.y106{bottom:658.537650px;}
.yc6{bottom:659.134050px;}
.y199{bottom:670.537500px;}
.y14e{bottom:670.543650px;}
.yb9{bottom:670.811700px;}
.y16{bottom:670.811850px;}
.yc5{bottom:677.782050px;}
.y1c1{bottom:679.540350px;}
.y198{bottom:683.137500px;}
.y105{bottom:683.139150px;}
.y14d{bottom:683.143650px;}
.yb8{bottom:691.511700px;}
.y2b{bottom:691.511850px;}
.y1c0{bottom:692.140350px;}
.yc4{bottom:692.182050px;}
.y47{bottom:693.569850px;}
.y197{bottom:695.737500px;}
.y104{bottom:695.739150px;}
.y14c{bottom:695.743650px;}
.yc3{bottom:706.582050px;}
.y196{bottom:708.337500px;}
.y103{bottom:708.339150px;}
.y14b{bottom:708.343650px;}
.y1bf{bottom:708.992250px;}
.yb7{bottom:712.211700px;}
.y15{bottom:712.211850px;}
.y45{bottom:714.171600px;}
.y195{bottom:720.937500px;}
.y102{bottom:720.939150px;}
.y14a{bottom:720.943650px;}
.yc2{bottom:720.982050px;}
.yb6{bottom:732.911700px;}
.y14{bottom:732.911850px;}
.y194{bottom:733.537500px;}
.y101{bottom:733.539150px;}
.y149{bottom:733.543650px;}
.yc1{bottom:735.382050px;}
.y46{bottom:740.763600px;}
.y193{bottom:746.137500px;}
.y100{bottom:746.139150px;}
.yb5{bottom:753.611700px;}
.y13{bottom:753.611850px;}
.y192{bottom:758.737500px;}
.yff{bottom:758.739150px;}
.y148{bottom:758.743650px;}
.y1bd{bottom:769.775850px;}
.y191{bottom:771.337500px;}
.yfe{bottom:771.339150px;}
.y147{bottom:771.343650px;}
.yb4{bottom:774.311700px;}
.y12{bottom:774.311850px;}
.y1bc{bottom:782.375850px;}
.y190{bottom:783.937500px;}
.yfd{bottom:783.939150px;}
.y146{bottom:783.943650px;}
.y1bb{bottom:794.975850px;}
.yb3{bottom:795.011700px;}
.y11{bottom:795.011850px;}
.y18f{bottom:796.537500px;}
.yfc{bottom:796.539150px;}
.y145{bottom:796.543650px;}
.y1ba{bottom:807.575850px;}
.y18e{bottom:809.137500px;}
.yfb{bottom:809.139150px;}
.y144{bottom:809.143650px;}
.yb2{bottom:815.711700px;}
.y10{bottom:815.711850px;}
.y1be{bottom:820.175850px;}
.y18d{bottom:821.737500px;}
.y143{bottom:821.743650px;}
.y1b9{bottom:832.775850px;}
.y18c{bottom:834.337500px;}
.yfa{bottom:834.339150px;}
.y142{bottom:834.343650px;}
.yb1{bottom:836.411700px;}
.yf{bottom:836.411850px;}
.y1b8{bottom:845.375850px;}
.ya6{bottom:845.953500px;}
.y18b{bottom:846.937500px;}
.yf9{bottom:846.939150px;}
.y141{bottom:846.943650px;}
.yb0{bottom:857.111700px;}
.ye{bottom:857.111850px;}
.y1b7{bottom:857.975850px;}
.y18a{bottom:859.537500px;}
.yf8{bottom:859.539150px;}
.y140{bottom:859.543650px;}
.ya5{bottom:860.353500px;}
.y6e{bottom:860.769600px;}
.y1b6{bottom:870.575850px;}
.y189{bottom:872.137500px;}
.yf7{bottom:872.139150px;}
.y13f{bottom:872.143650px;}
.ya4{bottom:874.753500px;}
.y6d{bottom:875.169600px;}
.yaf{bottom:877.811700px;}
.yd{bottom:877.811850px;}
.y188{bottom:884.737500px;}
.yf6{bottom:884.739150px;}
.y13e{bottom:884.743650px;}
.y1b5{bottom:887.427900px;}
.ya3{bottom:889.153500px;}
.y6c{bottom:889.569600px;}
.y187{bottom:897.337500px;}
.yf5{bottom:897.339150px;}
.y13d{bottom:897.343650px;}
.yae{bottom:898.511700px;}
.yc{bottom:898.511850px;}
.ya2{bottom:903.553500px;}
.y6b{bottom:903.969600px;}
.y186{bottom:909.937500px;}
.yf4{bottom:909.939150px;}
.y6a{bottom:918.369600px;}
.yad{bottom:919.211700px;}
.yb{bottom:919.211850px;}
.ya1{bottom:922.201500px;}
.y185{bottom:922.537500px;}
.yf3{bottom:922.539150px;}
.y13c{bottom:922.543650px;}
.y184{bottom:935.137500px;}
.y13b{bottom:935.143650px;}
.ya0{bottom:936.601500px;}
.y69{bottom:937.017600px;}
.yac{bottom:939.911700px;}
.ya{bottom:939.911850px;}
.y183{bottom:947.737500px;}
.yf2{bottom:947.739150px;}
.y13a{bottom:947.743650px;}
.y1fc{bottom:948.211350px;}
.y9f{bottom:951.001500px;}
.y68{bottom:951.417600px;}
.y203{bottom:956.161350px;}
.y182{bottom:960.337500px;}
.yf1{bottom:960.339150px;}
.y139{bottom:960.343650px;}
.yab{bottom:960.611700px;}
.y9{bottom:960.611850px;}
.y1fb{bottom:960.811350px;}
.y9e{bottom:965.401500px;}
.y67{bottom:965.817600px;}
.y202{bottom:968.761350px;}
.y181{bottom:972.937500px;}
.yf0{bottom:972.939150px;}
.y138{bottom:972.943650px;}
.y1fa{bottom:973.411350px;}
.y9d{bottom:979.801500px;}
.y66{bottom:980.217600px;}
.yaa{bottom:981.311700px;}
.y8{bottom:981.311850px;}
.y201{bottom:981.361350px;}
.y180{bottom:985.537500px;}
.yef{bottom:985.539150px;}
.y137{bottom:985.543650px;}
.y1f9{bottom:986.011350px;}
.y200{bottom:993.961350px;}
.y9c{bottom:994.201500px;}
.y65{bottom:994.617600px;}
.y17f{bottom:998.140650px;}
.y136{bottom:998.143650px;}
.ya9{bottom:1002.011700px;}
.y73{bottom:1002.011850px;}
.yee{bottom:1010.739150px;}
.y17e{bottom:1010.740650px;}
.y135{bottom:1010.743650px;}
.y1f8{bottom:1011.211350px;}
.y9b{bottom:1012.849500px;}
.y64{bottom:1013.265600px;}
.y1ff{bottom:1019.161350px;}
.ya8{bottom:1022.711700px;}
.y72{bottom:1022.711850px;}
.yed{bottom:1023.339150px;}
.y17d{bottom:1023.340650px;}
.y134{bottom:1023.343650px;}
.y1f7{bottom:1023.811350px;}
.y9a{bottom:1027.249500px;}
.y63{bottom:1027.665600px;}
.y1fe{bottom:1031.761350px;}
.yec{bottom:1035.939150px;}
.y17c{bottom:1035.940650px;}
.y133{bottom:1035.943650px;}
.y1f6{bottom:1036.411350px;}
.y99{bottom:1041.649500px;}
.y62{bottom:1042.065600px;}
.ya7{bottom:1043.411700px;}
.y71{bottom:1043.411850px;}
.yeb{bottom:1048.539150px;}
.y17b{bottom:1048.540650px;}
.y132{bottom:1048.543650px;}
.y1fd{bottom:1048.613400px;}
.y1f5{bottom:1049.011350px;}
.y98{bottom:1056.049500px;}
.y61{bottom:1056.465600px;}
.y70{bottom:1064.111850px;}
.y1f4{bottom:1065.863400px;}
.y97{bottom:1070.449500px;}
.y60{bottom:1070.865600px;}
.y7{bottom:1078.672050px;}
.y6f{bottom:1084.811850px;}
.y96{bottom:1084.849500px;}
.ye8{bottom:1085.050050px;}
.y5f{bottom:1085.265600px;}
.y1b4{bottom:1121.764800px;}
.y1{bottom:1156.934400px;}
.y44{bottom:1156.934550px;}
.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;}
.x19{left:51.139500px;}
.x3{left:63.536400px;}
.x11{left:76.535550px;}
.xf{left:89.294550px;}
.x7{left:95.396100px;}
.x12{left:105.549150px;}
.x2{left:117.259350px;}
.x13{left:118.305150px;}
.x1a{left:168.199950px;}
.xd{left:265.195950px;}
.x4{left:327.401550px;}
.x8{left:341.905500px;}
.xa{left:368.793600px;}
.x6{left:467.714550px;}
.x15{left:480.844500px;}
.x10{left:493.228350px;}
.xc{left:500.119950px;}
.x9{left:588.519600px;}
.x16{left:591.023550px;}
.x14{left:595.905300px;}
.x18{left:599.529600px;}
.xe{left:656.220450px;}
.x1{left:699.188100px;}
.xb{left:792.439950px;}
.x17{left:823.379100px;}
@media print{
.v4{vertical-align:-16.016000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.432000pt;}
.v2{vertical-align:14.208000pt;}
.v3{vertical-align:17.759467pt;}
.v1{vertical-align:85.333333pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls36{letter-spacing:-0.933333pt;}
.ls2d{letter-spacing:-0.853333pt;}
.ls34{letter-spacing:-0.746667pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls23{letter-spacing:-0.426667pt;}
.ls33{letter-spacing:-0.373333pt;}
.ls2b{letter-spacing:-0.266667pt;}
.ls31{letter-spacing:-0.213333pt;}
.ls35{letter-spacing:-0.186667pt;}
.ls30{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.053333pt;}
.ls25{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.213333pt;}
.ls24{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.288000pt;}
.lse{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.346667pt;}
.ls1f{letter-spacing:0.373333pt;}
.ls37{letter-spacing:0.413333pt;}
.ls10{letter-spacing:0.426667pt;}
.lsf{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.484800pt;}
.ls2c{letter-spacing:0.497493pt;}
.ls9{letter-spacing:0.533333pt;}
.ls11{letter-spacing:0.586667pt;}
.ls7{letter-spacing:0.613333pt;}
.ls28{letter-spacing:0.613867pt;}
.ls21{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:0.643200pt;}
.ls14{letter-spacing:0.746667pt;}
.ls13{letter-spacing:0.800000pt;}
.ls29{letter-spacing:0.827733pt;}
.ls6{letter-spacing:0.853333pt;}
.ls12{letter-spacing:0.906667pt;}
.ls17{letter-spacing:0.933333pt;}
.ls1{letter-spacing:0.960000pt;}
.ls20{letter-spacing:1.013333pt;}
.ls27{letter-spacing:1.038933pt;}
.ls19{letter-spacing:1.066667pt;}
.ls26{letter-spacing:1.120000pt;}
.ls1c{letter-spacing:1.173333pt;}
.lsc{letter-spacing:1.224533pt;}
.ls0{letter-spacing:1.226667pt;}
.ls2f{letter-spacing:1.280000pt;}
.ls18{letter-spacing:1.333333pt;}
.ls1a{letter-spacing:1.440000pt;}
.ls1b{letter-spacing:1.466667pt;}
.ls5{letter-spacing:1.493333pt;}
.ls16{letter-spacing:1.600000pt;}
.ls22{letter-spacing:34.730667pt;}
.lsb{letter-spacing:64.852267pt;}
.ls8{letter-spacing:79.317333pt;}
.ls32{letter-spacing:219.350400pt;}
.wsa1{word-spacing:-20.650667pt;}
.ws0{word-spacing:-18.816000pt;}
.ws6{word-spacing:-14.842667pt;}
.wsb1{word-spacing:-14.229333pt;}
.ws1d{word-spacing:-14.106667pt;}
.ws8b{word-spacing:-13.386667pt;}
.wsc{word-spacing:-13.280000pt;}
.ws1f{word-spacing:-12.800000pt;}
.wsf{word-spacing:-12.373333pt;}
.ws1e{word-spacing:-10.624000pt;}
.ws8c{word-spacing:-10.154667pt;}
.ws7{word-spacing:-9.984000pt;}
.ws8d{word-spacing:-9.898667pt;}
.ws8f{word-spacing:-9.770667pt;}
.ws8e{word-spacing:-9.301333pt;}
.wsa2{word-spacing:-9.296000pt;}
.wsa6{word-spacing:-8.922667pt;}
.wsa3{word-spacing:-8.661333pt;}
.wsa4{word-spacing:-8.474667pt;}
.wsa5{word-spacing:-8.288000pt;}
.ws69{word-spacing:-7.648960pt;}
.ws68{word-spacing:-7.151467pt;}
.ws5b{word-spacing:-6.193792pt;}
.wsb0{word-spacing:-5.419568pt;}
.ws10{word-spacing:-5.290667pt;}
.wsa8{word-spacing:-5.002667pt;}
.wsa9{word-spacing:-4.629333pt;}
.wsad{word-spacing:-4.368000pt;}
.wsa7{word-spacing:-3.994667pt;}
.ws79{word-spacing:-3.466667pt;}
.ws56{word-spacing:-3.413333pt;}
.ws55{word-spacing:-3.146667pt;}
.ws6e{word-spacing:-2.560000pt;}
.ws2a{word-spacing:-2.453333pt;}
.ws29{word-spacing:-2.346667pt;}
.ws7d{word-spacing:-2.240000pt;}
.ws60{word-spacing:-2.186667pt;}
.ws78{word-spacing:-2.133333pt;}
.ws90{word-spacing:-2.080000pt;}
.ws74{word-spacing:-2.026667pt;}
.ws85{word-spacing:-1.866667pt;}
.ws27{word-spacing:-1.813333pt;}
.ws6f{word-spacing:-1.706667pt;}
.ws61{word-spacing:-1.600000pt;}
.ws12{word-spacing:-1.493333pt;}
.ws21{word-spacing:-1.440000pt;}
.ws4f{word-spacing:-1.333333pt;}
.ws32{word-spacing:-1.120000pt;}
.ws40{word-spacing:-1.066667pt;}
.ws6d{word-spacing:-1.013333pt;}
.ws70{word-spacing:-0.960000pt;}
.ws75{word-spacing:-0.906667pt;}
.ws86{word-spacing:-0.853333pt;}
.wsae{word-spacing:-0.746667pt;}
.ws76{word-spacing:-0.693333pt;}
.ws5c{word-spacing:-0.640000pt;}
.ws2{word-spacing:-0.613333pt;}
.ws6b{word-spacing:-0.586667pt;}
.ws9{word-spacing:-0.533333pt;}
.ws3{word-spacing:-0.480000pt;}
.ws11{word-spacing:-0.373333pt;}
.ws66{word-spacing:-0.320000pt;}
.wsaf{word-spacing:-0.186667pt;}
.ws39{word-spacing:-0.160000pt;}
.wsac{word-spacing:-0.149333pt;}
.wsaa{word-spacing:-0.112000pt;}
.wsa{word-spacing:-0.106667pt;}
.ws8{word-spacing:-0.061333pt;}
.ws83{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.053333pt;}
.ws22{word-spacing:0.106667pt;}
.ws5{word-spacing:0.192000pt;}
.ws25{word-spacing:0.266667pt;}
.ws4{word-spacing:0.288000pt;}
.ws87{word-spacing:0.320000pt;}
.ws51{word-spacing:0.533333pt;}
.ws9e{word-spacing:0.586667pt;}
.ws9c{word-spacing:0.693333pt;}
.wsab{word-spacing:0.746667pt;}
.ws59{word-spacing:0.800000pt;}
.ws6a{word-spacing:0.853333pt;}
.ws73{word-spacing:0.906667pt;}
.ws28{word-spacing:0.960000pt;}
.ws91{word-spacing:1.013333pt;}
.ws2d{word-spacing:1.173333pt;}
.ws95{word-spacing:1.226667pt;}
.ws54{word-spacing:1.280000pt;}
.ws97{word-spacing:1.386667pt;}
.ws5d{word-spacing:1.546667pt;}
.ws96{word-spacing:1.600000pt;}
.ws62{word-spacing:1.706667pt;}
.ws71{word-spacing:1.866667pt;}
.ws52{word-spacing:1.920000pt;}
.ws7b{word-spacing:2.026667pt;}
.ws9f{word-spacing:2.080000pt;}
.ws80{word-spacing:2.133333pt;}
.ws3f{word-spacing:2.186667pt;}
.ws5f{word-spacing:2.400000pt;}
.ws35{word-spacing:2.453333pt;}
.ws9d{word-spacing:2.560000pt;}
.ws67{word-spacing:2.666667pt;}
.ws2c{word-spacing:2.773333pt;}
.ws5e{word-spacing:2.826667pt;}
.ws7a{word-spacing:2.880000pt;}
.ws36{word-spacing:2.933333pt;}
.ws3b{word-spacing:2.986667pt;}
.ws72{word-spacing:3.040000pt;}
.ws34{word-spacing:3.200000pt;}
.ws4d{word-spacing:3.520000pt;}
.ws98{word-spacing:3.573333pt;}
.ws7f{word-spacing:3.626667pt;}
.ws4c{word-spacing:3.680000pt;}
.ws20{word-spacing:3.786667pt;}
.ws4a{word-spacing:3.840000pt;}
.ws6c{word-spacing:3.893333pt;}
.ws33{word-spacing:4.000000pt;}
.ws2b{word-spacing:4.053333pt;}
.ws53{word-spacing:4.160000pt;}
.ws65{word-spacing:4.426667pt;}
.ws93{word-spacing:4.480000pt;}
.ws38{word-spacing:4.586667pt;}
.ws63{word-spacing:4.693333pt;}
.ws30{word-spacing:4.746667pt;}
.ws24{word-spacing:4.800000pt;}
.ws49{word-spacing:4.853333pt;}
.ws58{word-spacing:4.906667pt;}
.ws23{word-spacing:4.960000pt;}
.ws48{word-spacing:5.333333pt;}
.ws84{word-spacing:5.440000pt;}
.ws92{word-spacing:5.653333pt;}
.ws2f{word-spacing:5.760000pt;}
.ws3a{word-spacing:5.920000pt;}
.ws8a{word-spacing:6.026667pt;}
.ws89{word-spacing:6.080000pt;}
.ws77{word-spacing:6.293333pt;}
.ws88{word-spacing:6.346667pt;}
.ws3c{word-spacing:6.400000pt;}
.ws3d{word-spacing:6.560000pt;}
.ws5a{word-spacing:6.613333pt;}
.ws50{word-spacing:6.720000pt;}
.ws2e{word-spacing:6.826667pt;}
.ws31{word-spacing:7.093333pt;}
.ws81{word-spacing:7.146667pt;}
.ws42{word-spacing:7.306667pt;}
.ws94{word-spacing:7.413333pt;}
.ws26{word-spacing:7.573333pt;}
.ws47{word-spacing:7.840000pt;}
.ws45{word-spacing:8.160000pt;}
.ws64{word-spacing:8.266667pt;}
.ws41{word-spacing:8.373333pt;}
.ws82{word-spacing:8.586667pt;}
.ws4b{word-spacing:8.853333pt;}
.ws99{word-spacing:9.066667pt;}
.ws37{word-spacing:9.120000pt;}
.ws9a{word-spacing:9.386667pt;}
.ws7e{word-spacing:9.546667pt;}
.wsa0{word-spacing:9.920000pt;}
.ws44{word-spacing:10.666667pt;}
.ws7c{word-spacing:10.933333pt;}
.ws46{word-spacing:11.093333pt;}
.ws9b{word-spacing:12.586667pt;}
.ws4e{word-spacing:12.693333pt;}
.ws57{word-spacing:15.786667pt;}
.ws43{word-spacing:25.280000pt;}
.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:1148.245333pt;}
.wsb{word-spacing:1153.180800pt;}
._17{margin-left:-1765.589333pt;}
._14{margin-left:-596.643200pt;}
._b{margin-left:-574.371733pt;}
._1d{margin-left:-491.093333pt;}
._15{margin-left:-44.544000pt;}
._16{margin-left:-28.800000pt;}
._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;}
._20{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;}
._1e{width:3.132267pt;}
._8{width:4.584533pt;}
._18{width:8.080000pt;}
._1b{width:9.358400pt;}
._1c{width:10.986667pt;}
._19{width:11.989333pt;}
._1a{width:34.730667pt;}
._10{width:53.600000pt;}
._0{width:79.174400pt;}
._1f{width:110.309333pt;}
._12{width:493.066667pt;}
._13{width:511.306667pt;}
._11{width:690.933333pt;}
.fsc{font-size:21.765333pt;}
.fs8{font-size:24.874667pt;}
.fs9{font-size:31.093333pt;}
.fsa{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:61.333333pt;}
.fs3{font-size:74.666667pt;}
.fsb{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;}
.y1ed{bottom:45.674533pt;}
.y17a{bottom:46.433467pt;}
.yea{bottom:47.244133pt;}
.y131{bottom:47.770800pt;}
.y1f3{bottom:56.874133pt;}
.y1ec{bottom:56.874533pt;}
.y179{bottom:57.633467pt;}
.ye9{bottom:58.444133pt;}
.y130{bottom:58.970800pt;}
.y5e{bottom:62.128133pt;}
.y95{bottom:62.558267pt;}
.y75{bottom:62.677200pt;}
.y33{bottom:62.679600pt;}
.ye7{bottom:62.684267pt;}
.y1f2{bottom:68.074133pt;}
.y1eb{bottom:68.074533pt;}
.y178{bottom:68.833467pt;}
.y12f{bottom:70.170800pt;}
.y94{bottom:75.358267pt;}
.ye6{bottom:75.484267pt;}
.y1f1{bottom:79.274133pt;}
.y1ea{bottom:79.274533pt;}
.y177{bottom:80.033467pt;}
.y5d{bottom:80.528133pt;}
.y32{bottom:81.077200pt;}
.y12e{bottom:81.370800pt;}
.y93{bottom:88.158267pt;}
.ye5{bottom:88.284267pt;}
.y1e9{bottom:90.474533pt;}
.y176{bottom:91.233467pt;}
.y5c{bottom:98.928133pt;}
.y31{bottom:99.477200pt;}
.y6{bottom:99.496133pt;}
.y5{bottom:99.677067pt;}
.y92{bottom:100.958267pt;}
.ye4{bottom:101.084267pt;}
.y1f0{bottom:101.674133pt;}
.y175{bottom:102.433467pt;}
.y12d{bottom:103.770800pt;}
.y1ef{bottom:112.874133pt;}
.y1e8{bottom:112.874533pt;}
.y174{bottom:113.633467pt;}
.y91{bottom:113.758267pt;}
.y12c{bottom:114.970800pt;}
.y5b{bottom:117.328133pt;}
.ye3{bottom:117.660267pt;}
.y74{bottom:117.877200pt;}
.y1ee{bottom:124.074133pt;}
.y1e7{bottom:124.074533pt;}
.y173{bottom:124.833467pt;}
.y12b{bottom:126.170800pt;}
.y90{bottom:126.558267pt;}
.ye2{bottom:130.460267pt;}
.y172{bottom:136.033467pt;}
.y30{bottom:136.277200pt;}
.y12a{bottom:137.370800pt;}
.y1e6{bottom:139.054133pt;}
.y8f{bottom:143.134267pt;}
.ye1{bottom:143.260267pt;}
.y4{bottom:146.789067pt;}
.y171{bottom:147.233467pt;}
.y129{bottom:148.570800pt;}
.y1e5{bottom:154.387467pt;}
.y2f{bottom:154.677200pt;}
.y8e{bottom:155.934267pt;}
.ye0{bottom:156.060267pt;}
.y170{bottom:158.433467pt;}
.y128{bottom:159.770800pt;}
.y57{bottom:163.061200pt;}
.y8d{bottom:168.734267pt;}
.ydf{bottom:168.860267pt;}
.y16f{bottom:169.633467pt;}
.y127{bottom:170.970800pt;}
.y2e{bottom:173.077200pt;}
.y16e{bottom:180.833467pt;}
.y8c{bottom:181.534267pt;}
.y5a{bottom:183.026000pt;}
.yde{bottom:185.436267pt;}
.y2a{bottom:191.477200pt;}
.y16d{bottom:192.033467pt;}
.y126{bottom:193.370800pt;}
.y3{bottom:193.901067pt;}
.y8b{bottom:194.334267pt;}
.y56{bottom:195.247867pt;}
.ydd{bottom:198.236267pt;}
.y43{bottom:200.944133pt;}
.y16c{bottom:203.233467pt;}
.y125{bottom:204.570800pt;}
.y8a{bottom:207.134267pt;}
.y29{bottom:209.877200pt;}
.ydc{bottom:211.036267pt;}
.y55{bottom:211.914533pt;}
.y16b{bottom:214.433467pt;}
.y124{bottom:215.770800pt;}
.y1dd{bottom:215.780400pt;}
.y42{bottom:217.610800pt;}
.y1e4{bottom:219.913733pt;}
.y89{bottom:223.710267pt;}
.ydb{bottom:223.836267pt;}
.y16a{bottom:225.633467pt;}
.y123{bottom:226.970800pt;}
.y1dc{bottom:226.980400pt;}
.y2d{bottom:228.277200pt;}
.y54{bottom:228.581200pt;}
.y1e3{bottom:231.113733pt;}
.y41{bottom:234.277467pt;}
.y2{bottom:235.685733pt;}
.y88{bottom:236.510267pt;}
.yda{bottom:236.636267pt;}
.y169{bottom:236.833467pt;}
.y122{bottom:238.170800pt;}
.y1db{bottom:238.180400pt;}
.y59{bottom:240.626000pt;}
.y1e2{bottom:242.313733pt;}
.y53{bottom:245.247867pt;}
.y28{bottom:246.677200pt;}
.y168{bottom:248.033467pt;}
.y87{bottom:249.310267pt;}
.y121{bottom:249.370800pt;}
.y1da{bottom:249.380400pt;}
.y40{bottom:250.944133pt;}
.y1e1{bottom:253.513733pt;}
.y167{bottom:259.233467pt;}
.y120{bottom:260.570800pt;}
.y52{bottom:261.914533pt;}
.y86{bottom:262.110267pt;}
.y27{bottom:265.077200pt;}
.y166{bottom:270.433467pt;}
.y11f{bottom:271.770800pt;}
.y1d9{bottom:271.780400pt;}
.y85{bottom:274.910267pt;}
.y1e0{bottom:275.913733pt;}
.y165{bottom:281.633467pt;}
.y1b3{bottom:282.433333pt;}
.y11e{bottom:282.970800pt;}
.y1d8{bottom:282.980400pt;}
.y3f{bottom:283.130800pt;}
.y26{bottom:283.477200pt;}
.y1df{bottom:287.113733pt;}
.y84{bottom:287.710267pt;}
.y164{bottom:292.833467pt;}
.y1b2{bottom:293.633333pt;}
.y51{bottom:294.101200pt;}
.y11d{bottom:294.170800pt;}
.y1d7{bottom:297.959867pt;}
.y58{bottom:298.226000pt;}
.y1de{bottom:298.313733pt;}
.y3e{bottom:299.797467pt;}
.y25{bottom:301.877200pt;}
.y163{bottom:304.033467pt;}
.y1b1{bottom:304.833333pt;}
.y50{bottom:310.767867pt;}
.y1d6{bottom:313.293200pt;}
.y162{bottom:315.233467pt;}
.y1b0{bottom:316.033333pt;}
.y3d{bottom:316.464133pt;}
.y11c{bottom:316.570800pt;}
.y24{bottom:320.277200pt;}
.y1af{bottom:327.233333pt;}
.y4f{bottom:327.434533pt;}
.y11b{bottom:327.770800pt;}
.y3c{bottom:333.130800pt;}
.y83{bottom:336.298800pt;}
.y161{bottom:337.633467pt;}
.y1ae{bottom:338.433333pt;}
.y23{bottom:338.677200pt;}
.y11a{bottom:338.970800pt;}
.yd9{bottom:342.975867pt;}
.y160{bottom:348.833467pt;}
.y82{bottom:349.098800pt;}
.y1ad{bottom:349.633333pt;}
.y119{bottom:350.170800pt;}
.yd8{bottom:355.775867pt;}
.y22{bottom:357.077200pt;}
.y4e{bottom:359.621200pt;}
.y15f{bottom:360.033467pt;}
.y118{bottom:361.370800pt;}
.y81{bottom:361.898800pt;}
.y3b{bottom:365.317467pt;}
.yd7{bottom:368.575867pt;}
.y1ac{bottom:372.033333pt;}
.y117{bottom:372.570800pt;}
.y80{bottom:374.698800pt;}
.y21{bottom:375.477200pt;}
.y1d5{bottom:378.226533pt;}
.yd6{bottom:381.375867pt;}
.y3a{bottom:381.984133pt;}
.y15e{bottom:382.433467pt;}
.y1ab{bottom:383.233333pt;}
.y116{bottom:383.770800pt;}
.y1ce{bottom:385.293200pt;}
.y7f{bottom:387.498800pt;}
.y1d4{bottom:389.426533pt;}
.y4d{bottom:391.807867pt;}
.y15d{bottom:393.633467pt;}
.y2c{bottom:393.877200pt;}
.y1aa{bottom:394.433333pt;}
.y115{bottom:394.970800pt;}
.y1cd{bottom:396.493200pt;}
.yd5{bottom:397.951867pt;}
.y39{bottom:398.650800pt;}
.y1d3{bottom:400.626533pt;}
.y7e{bottom:404.074800pt;}
.y15c{bottom:404.833467pt;}
.y1a9{bottom:405.633333pt;}
.y114{bottom:406.170800pt;}
.y1cc{bottom:407.693200pt;}
.y4c{bottom:408.474533pt;}
.yd4{bottom:410.751867pt;}
.y1d2{bottom:411.826533pt;}
.y20{bottom:412.277200pt;}
.y38{bottom:415.317467pt;}
.y7d{bottom:416.874800pt;}
.y113{bottom:417.370800pt;}
.y1cb{bottom:418.893200pt;}
.y1d1{bottom:423.026533pt;}
.yd3{bottom:423.551867pt;}
.y15b{bottom:427.233467pt;}
.y1a8{bottom:428.033333pt;}
.y7c{bottom:429.674800pt;}
.y1f{bottom:430.677200pt;}
.y1d0{bottom:434.226533pt;}
.yd2{bottom:436.351867pt;}
.y15a{bottom:438.433467pt;}
.y1a7{bottom:439.233333pt;}
.y112{bottom:439.770800pt;}
.y4b{bottom:440.661200pt;}
.y1ca{bottom:441.293200pt;}
.y7b{bottom:442.474800pt;}
.y1e{bottom:449.077200pt;}
.yd1{bottom:449.151867pt;}
.y159{bottom:449.633467pt;}
.y1a6{bottom:450.433333pt;}
.y111{bottom:450.970800pt;}
.y7a{bottom:455.274800pt;}
.y1c9{bottom:456.272667pt;}
.y1cf{bottom:456.626533pt;}
.y4a{bottom:457.327867pt;}
.y37{bottom:458.842533pt;}
.y158{bottom:460.833467pt;}
.y1a5{bottom:461.633333pt;}
.y110{bottom:462.170800pt;}
.yd0{bottom:465.727867pt;}
.ycf{bottom:466.920933pt;}
.yc0{bottom:467.477067pt;}
.y1d{bottom:467.477200pt;}
.y1c8{bottom:471.606000pt;}
.y79{bottom:471.850800pt;}
.y157{bottom:472.033467pt;}
.y1a4{bottom:472.833333pt;}
.y10f{bottom:473.370800pt;}
.y49{bottom:473.994533pt;}
.yce{bottom:479.720933pt;}
.y36{bottom:480.178533pt;}
.y1a3{bottom:484.033333pt;}
.y10e{bottom:484.570800pt;}
.y78{bottom:484.650800pt;}
.ybf{bottom:485.877067pt;}
.y1c{bottom:485.877200pt;}
.y48{bottom:490.661200pt;}
.ycd{bottom:492.520933pt;}
.y156{bottom:494.433467pt;}
.y1a2{bottom:495.233333pt;}
.y10d{bottom:495.770800pt;}
.y77{bottom:497.450800pt;}
.y35{bottom:501.514533pt;}
.ybe{bottom:504.277067pt;}
.y1b{bottom:504.277200pt;}
.ycc{bottom:505.320933pt;}
.y155{bottom:505.633467pt;}
.y1a1{bottom:506.433333pt;}
.y10c{bottom:506.970800pt;}
.y76{bottom:510.250800pt;}
.y154{bottom:516.833467pt;}
.y1a0{bottom:517.633333pt;}
.ycb{bottom:518.120933pt;}
.ybd{bottom:522.677067pt;}
.y1a{bottom:522.677200pt;}
.y34{bottom:522.847867pt;}
.y1c7{bottom:525.635867pt;}
.y19f{bottom:528.833333pt;}
.y10b{bottom:529.370800pt;}
.yca{bottom:534.696933pt;}
.y1c6{bottom:536.835867pt;}
.y153{bottom:539.236133pt;}
.y19e{bottom:540.033333pt;}
.y10a{bottom:540.570800pt;}
.ybc{bottom:541.077067pt;}
.y19{bottom:541.077200pt;}
.yc9{bottom:547.496933pt;}
.y1c5{bottom:548.035867pt;}
.y19d{bottom:551.233333pt;}
.y152{bottom:551.238800pt;}
.y109{bottom:551.770800pt;}
.y1c4{bottom:559.235867pt;}
.ybb{bottom:559.477067pt;}
.y18{bottom:559.477200pt;}
.yc8{bottom:560.296933pt;}
.y19c{bottom:562.433333pt;}
.y151{bottom:562.438800pt;}
.y108{bottom:562.970800pt;}
.y1c3{bottom:570.435867pt;}
.yc7{bottom:573.096933pt;}
.y19b{bottom:573.633333pt;}
.y150{bottom:573.638800pt;}
.y107{bottom:574.170800pt;}
.yba{bottom:577.877067pt;}
.y17{bottom:577.877200pt;}
.y1c2{bottom:581.635867pt;}
.y19a{bottom:584.833333pt;}
.y14f{bottom:584.838800pt;}
.y106{bottom:585.366800pt;}
.yc6{bottom:585.896933pt;}
.y199{bottom:596.033333pt;}
.y14e{bottom:596.038800pt;}
.yb9{bottom:596.277067pt;}
.y16{bottom:596.277200pt;}
.yc5{bottom:602.472933pt;}
.y1c1{bottom:604.035867pt;}
.y198{bottom:607.233333pt;}
.y105{bottom:607.234800pt;}
.y14d{bottom:607.238800pt;}
.yb8{bottom:614.677067pt;}
.y2b{bottom:614.677200pt;}
.y1c0{bottom:615.235867pt;}
.yc4{bottom:615.272933pt;}
.y47{bottom:616.506533pt;}
.y197{bottom:618.433333pt;}
.y104{bottom:618.434800pt;}
.y14c{bottom:618.438800pt;}
.yc3{bottom:628.072933pt;}
.y196{bottom:629.633333pt;}
.y103{bottom:629.634800pt;}
.y14b{bottom:629.638800pt;}
.y1bf{bottom:630.215333pt;}
.yb7{bottom:633.077067pt;}
.y15{bottom:633.077200pt;}
.y45{bottom:634.819200pt;}
.y195{bottom:640.833333pt;}
.y102{bottom:640.834800pt;}
.y14a{bottom:640.838800pt;}
.yc2{bottom:640.872933pt;}
.yb6{bottom:651.477067pt;}
.y14{bottom:651.477200pt;}
.y194{bottom:652.033333pt;}
.y101{bottom:652.034800pt;}
.y149{bottom:652.038800pt;}
.yc1{bottom:653.672933pt;}
.y46{bottom:658.456533pt;}
.y193{bottom:663.233333pt;}
.y100{bottom:663.234800pt;}
.yb5{bottom:669.877067pt;}
.y13{bottom:669.877200pt;}
.y192{bottom:674.433333pt;}
.yff{bottom:674.434800pt;}
.y148{bottom:674.438800pt;}
.y1bd{bottom:684.245200pt;}
.y191{bottom:685.633333pt;}
.yfe{bottom:685.634800pt;}
.y147{bottom:685.638800pt;}
.yb4{bottom:688.277067pt;}
.y12{bottom:688.277200pt;}
.y1bc{bottom:695.445200pt;}
.y190{bottom:696.833333pt;}
.yfd{bottom:696.834800pt;}
.y146{bottom:696.838800pt;}
.y1bb{bottom:706.645200pt;}
.yb3{bottom:706.677067pt;}
.y11{bottom:706.677200pt;}
.y18f{bottom:708.033333pt;}
.yfc{bottom:708.034800pt;}
.y145{bottom:708.038800pt;}
.y1ba{bottom:717.845200pt;}
.y18e{bottom:719.233333pt;}
.yfb{bottom:719.234800pt;}
.y144{bottom:719.238800pt;}
.yb2{bottom:725.077067pt;}
.y10{bottom:725.077200pt;}
.y1be{bottom:729.045200pt;}
.y18d{bottom:730.433333pt;}
.y143{bottom:730.438800pt;}
.y1b9{bottom:740.245200pt;}
.y18c{bottom:741.633333pt;}
.yfa{bottom:741.634800pt;}
.y142{bottom:741.638800pt;}
.yb1{bottom:743.477067pt;}
.yf{bottom:743.477200pt;}
.y1b8{bottom:751.445200pt;}
.ya6{bottom:751.958667pt;}
.y18b{bottom:752.833333pt;}
.yf9{bottom:752.834800pt;}
.y141{bottom:752.838800pt;}
.yb0{bottom:761.877067pt;}
.ye{bottom:761.877200pt;}
.y1b7{bottom:762.645200pt;}
.y18a{bottom:764.033333pt;}
.yf8{bottom:764.034800pt;}
.y140{bottom:764.038800pt;}
.ya5{bottom:764.758667pt;}
.y6e{bottom:765.128533pt;}
.y1b6{bottom:773.845200pt;}
.y189{bottom:775.233333pt;}
.yf7{bottom:775.234800pt;}
.y13f{bottom:775.238800pt;}
.ya4{bottom:777.558667pt;}
.y6d{bottom:777.928533pt;}
.yaf{bottom:780.277067pt;}
.yd{bottom:780.277200pt;}
.y188{bottom:786.433333pt;}
.yf6{bottom:786.434800pt;}
.y13e{bottom:786.438800pt;}
.y1b5{bottom:788.824800pt;}
.ya3{bottom:790.358667pt;}
.y6c{bottom:790.728533pt;}
.y187{bottom:797.633333pt;}
.yf5{bottom:797.634800pt;}
.y13d{bottom:797.638800pt;}
.yae{bottom:798.677067pt;}
.yc{bottom:798.677200pt;}
.ya2{bottom:803.158667pt;}
.y6b{bottom:803.528533pt;}
.y186{bottom:808.833333pt;}
.yf4{bottom:808.834800pt;}
.y6a{bottom:816.328533pt;}
.yad{bottom:817.077067pt;}
.yb{bottom:817.077200pt;}
.ya1{bottom:819.734667pt;}
.y185{bottom:820.033333pt;}
.yf3{bottom:820.034800pt;}
.y13c{bottom:820.038800pt;}
.y184{bottom:831.233333pt;}
.y13b{bottom:831.238800pt;}
.ya0{bottom:832.534667pt;}
.y69{bottom:832.904533pt;}
.yac{bottom:835.477067pt;}
.ya{bottom:835.477200pt;}
.y183{bottom:842.433333pt;}
.yf2{bottom:842.434800pt;}
.y13a{bottom:842.438800pt;}
.y1fc{bottom:842.854533pt;}
.y9f{bottom:845.334667pt;}
.y68{bottom:845.704533pt;}
.y203{bottom:849.921200pt;}
.y182{bottom:853.633333pt;}
.yf1{bottom:853.634800pt;}
.y139{bottom:853.638800pt;}
.yab{bottom:853.877067pt;}
.y9{bottom:853.877200pt;}
.y1fb{bottom:854.054533pt;}
.y9e{bottom:858.134667pt;}
.y67{bottom:858.504533pt;}
.y202{bottom:861.121200pt;}
.y181{bottom:864.833333pt;}
.yf0{bottom:864.834800pt;}
.y138{bottom:864.838800pt;}
.y1fa{bottom:865.254533pt;}
.y9d{bottom:870.934667pt;}
.y66{bottom:871.304533pt;}
.yaa{bottom:872.277067pt;}
.y8{bottom:872.277200pt;}
.y201{bottom:872.321200pt;}
.y180{bottom:876.033333pt;}
.yef{bottom:876.034800pt;}
.y137{bottom:876.038800pt;}
.y1f9{bottom:876.454533pt;}
.y200{bottom:883.521200pt;}
.y9c{bottom:883.734667pt;}
.y65{bottom:884.104533pt;}
.y17f{bottom:887.236133pt;}
.y136{bottom:887.238800pt;}
.ya9{bottom:890.677067pt;}
.y73{bottom:890.677200pt;}
.yee{bottom:898.434800pt;}
.y17e{bottom:898.436133pt;}
.y135{bottom:898.438800pt;}
.y1f8{bottom:898.854533pt;}
.y9b{bottom:900.310667pt;}
.y64{bottom:900.680533pt;}
.y1ff{bottom:905.921200pt;}
.ya8{bottom:909.077067pt;}
.y72{bottom:909.077200pt;}
.yed{bottom:909.634800pt;}
.y17d{bottom:909.636133pt;}
.y134{bottom:909.638800pt;}
.y1f7{bottom:910.054533pt;}
.y9a{bottom:913.110667pt;}
.y63{bottom:913.480533pt;}
.y1fe{bottom:917.121200pt;}
.yec{bottom:920.834800pt;}
.y17c{bottom:920.836133pt;}
.y133{bottom:920.838800pt;}
.y1f6{bottom:921.254533pt;}
.y99{bottom:925.910667pt;}
.y62{bottom:926.280533pt;}
.ya7{bottom:927.477067pt;}
.y71{bottom:927.477200pt;}
.yeb{bottom:932.034800pt;}
.y17b{bottom:932.036133pt;}
.y132{bottom:932.038800pt;}
.y1fd{bottom:932.100800pt;}
.y1f5{bottom:932.454533pt;}
.y98{bottom:938.710667pt;}
.y61{bottom:939.080533pt;}
.y70{bottom:945.877200pt;}
.y1f4{bottom:947.434133pt;}
.y97{bottom:951.510667pt;}
.y60{bottom:951.880533pt;}
.y7{bottom:958.819600pt;}
.y6f{bottom:964.277200pt;}
.y96{bottom:964.310667pt;}
.ye8{bottom:964.488933pt;}
.y5f{bottom:964.680533pt;}
.y1b4{bottom:997.124267pt;}
.y1{bottom:1028.386133pt;}
.y44{bottom:1028.386267pt;}
.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;}
.x19{left:45.457333pt;}
.x3{left:56.476800pt;}
.x11{left:68.031600pt;}
.xf{left:79.372933pt;}
.x7{left:84.796533pt;}
.x12{left:93.821467pt;}
.x2{left:104.230533pt;}
.x13{left:105.160133pt;}
.x1a{left:149.511067pt;}
.xd{left:235.729733pt;}
.x4{left:291.023600pt;}
.x8{left:303.916000pt;}
.xa{left:327.816533pt;}
.x6{left:415.746267pt;}
.x15{left:427.417333pt;}
.x10{left:438.425200pt;}
.xc{left:444.551067pt;}
.x9{left:523.128533pt;}
.x16{left:525.354267pt;}
.x14{left:529.693600pt;}
.x18{left:532.915200pt;}
.xe{left:583.307067pt;}
.x1{left:621.500533pt;}
.xb{left:704.391067pt;}
.x17{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; }
  