
    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_ed76e36cf41a8bcc598fe0e3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b2c7e7ecd17d69205c35743b.woff2')format("woff");}.ffc{font-family:ffc;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: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_68b45ccfca2c9d348294c2eb.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b78ed3b43f37f28ab4300b1a.woff2')format("woff");}.fff{font-family:fff;line-height:0.966000;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_1c6a4767172635f4b66cfe03.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c2423a49287fedb35c86bfa9.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_53704e05e14b69d8636e3c17.woff2')format("woff");}.ff12{font-family:ff12;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:-19.980600px;}
.v5{vertical-align:-18.018000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:13.986000px;}
.v2{vertical-align:15.984000px;}
.v3{vertical-align:19.980600px;}
.v1{vertical-align:96.000000px;}
.ls1b{letter-spacing:-1.392000px;}
.lsd{letter-spacing:-1.200000px;}
.ls2a{letter-spacing:-1.050000px;}
.ls19{letter-spacing:-0.912000px;}
.ls17{letter-spacing:-0.900000px;}
.ls1e{letter-spacing:-0.840000px;}
.ls16{letter-spacing:-0.780000px;}
.lsf{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.660000px;}
.lsa{letter-spacing:-0.600000px;}
.ls18{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.480000px;}
.ls26{letter-spacing:-0.420000px;}
.ls25{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.300000px;}
.ls10{letter-spacing:-0.240000px;}
.ls29{letter-spacing:-0.210000px;}
.ls11{letter-spacing:-0.180000px;}
.ls1c{letter-spacing:-0.120000px;}
.ls1d{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.178200px;}
.ls15{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.270000px;}
.ls1f{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.324000px;}
.ls21{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.420000px;}
.ls2b{letter-spacing:0.465000px;}
.ls14{letter-spacing:0.480000px;}
.ls22{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.600000px;}
.ls24{letter-spacing:0.660000px;}
.ls7{letter-spacing:0.690000px;}
.ls6{letter-spacing:0.960000px;}
.ls1{letter-spacing:1.080000px;}
.lsc{letter-spacing:1.377600px;}
.ls0{letter-spacing:1.380000px;}
.ls5{letter-spacing:1.680000px;}
.lsb{letter-spacing:72.958800px;}
.ls8{letter-spacing:89.232000px;}
.ls27{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;}
}
.ws8a{word-spacing:-23.232000px;}
.ws0{word-spacing:-21.168000px;}
.ws6{word-spacing:-16.698000px;}
.ws99{word-spacing:-16.008000px;}
.wsc{word-spacing:-14.940000px;}
.ws30{word-spacing:-14.280000px;}
.wsf{word-spacing:-13.920000px;}
.ws5b{word-spacing:-13.800000px;}
.ws5c{word-spacing:-13.380000px;}
.ws6a{word-spacing:-13.200000px;}
.ws69{word-spacing:-12.900000px;}
.ws2e{word-spacing:-12.780000px;}
.ws2d{word-spacing:-12.660000px;}
.ws2f{word-spacing:-12.480000px;}
.ws2c{word-spacing:-11.952000px;}
.ws6b{word-spacing:-11.472000px;}
.ws1d{word-spacing:-11.424000px;}
.ws7{word-spacing:-11.232000px;}
.ws6c{word-spacing:-11.136000px;}
.ws32{word-spacing:-10.944000px;}
.ws31{word-spacing:-10.512000px;}
.ws8b{word-spacing:-10.458000px;}
.ws8f{word-spacing:-10.038000px;}
.ws33{word-spacing:-10.032000px;}
.ws8c{word-spacing:-9.744000px;}
.ws8d{word-spacing:-9.534000px;}
.ws8e{word-spacing:-9.324000px;}
.ws68{word-spacing:-8.045400px;}
.ws1e{word-spacing:-6.968016px;}
.ws98{word-spacing:-6.097014px;}
.ws10{word-spacing:-5.952000px;}
.ws91{word-spacing:-5.628000px;}
.ws92{word-spacing:-5.208000px;}
.ws95{word-spacing:-4.914000px;}
.ws90{word-spacing:-4.494000px;}
.ws57{word-spacing:-4.020000px;}
.ws35{word-spacing:-3.240000px;}
.ws62{word-spacing:-3.000000px;}
.ws26{word-spacing:-2.760000px;}
.ws37{word-spacing:-2.520000px;}
.ws47{word-spacing:-2.340000px;}
.ws76{word-spacing:-2.160000px;}
.ws12{word-spacing:-1.680000px;}
.ws25{word-spacing:-1.620000px;}
.ws74{word-spacing:-1.560000px;}
.ws88{word-spacing:-1.500000px;}
.ws5e{word-spacing:-1.140000px;}
.ws24{word-spacing:-1.020000px;}
.ws96{word-spacing:-0.840000px;}
.ws2{word-spacing:-0.690000px;}
.ws9{word-spacing:-0.600000px;}
.ws3{word-spacing:-0.540000px;}
.ws65{word-spacing:-0.480000px;}
.ws11{word-spacing:-0.420000px;}
.ws23{word-spacing:-0.360000px;}
.ws59{word-spacing:-0.300000px;}
.ws1f{word-spacing:-0.216000px;}
.ws97{word-spacing:-0.210000px;}
.ws94{word-spacing:-0.168000px;}
.ws93{word-spacing:-0.126000px;}
.wsa{word-spacing:-0.120000px;}
.ws8{word-spacing:-0.069000px;}
.ws66{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:0.216000px;}
.ws82{word-spacing:0.240000px;}
.ws60{word-spacing:0.300000px;}
.ws4{word-spacing:0.324000px;}
.ws58{word-spacing:0.360000px;}
.ws6f{word-spacing:0.420000px;}
.ws41{word-spacing:0.480000px;}
.ws3a{word-spacing:0.540000px;}
.ws40{word-spacing:0.600000px;}
.ws7d{word-spacing:0.660000px;}
.ws34{word-spacing:0.720000px;}
.ws39{word-spacing:0.840000px;}
.ws3c{word-spacing:0.900000px;}
.ws20{word-spacing:1.020000px;}
.ws3f{word-spacing:1.080000px;}
.ws3e{word-spacing:1.140000px;}
.ws2a{word-spacing:1.260000px;}
.ws2b{word-spacing:1.380000px;}
.ws7c{word-spacing:1.560000px;}
.ws29{word-spacing:1.620000px;}
.ws51{word-spacing:1.680000px;}
.ws89{word-spacing:1.740000px;}
.ws78{word-spacing:1.980000px;}
.ws81{word-spacing:2.100000px;}
.ws5a{word-spacing:2.340000px;}
.ws86{word-spacing:2.580000px;}
.ws22{word-spacing:2.820000px;}
.ws67{word-spacing:2.940000px;}
.ws50{word-spacing:3.000000px;}
.ws56{word-spacing:3.360000px;}
.ws36{word-spacing:3.480000px;}
.ws3d{word-spacing:3.780000px;}
.ws71{word-spacing:3.900000px;}
.ws75{word-spacing:3.960000px;}
.ws38{word-spacing:4.020000px;}
.ws4a{word-spacing:4.200000px;}
.ws42{word-spacing:4.440000px;}
.ws70{word-spacing:4.500000px;}
.ws3b{word-spacing:4.560000px;}
.ws84{word-spacing:4.620000px;}
.ws44{word-spacing:4.680000px;}
.ws5f{word-spacing:4.740000px;}
.ws72{word-spacing:4.800000px;}
.ws7a{word-spacing:4.980000px;}
.ws7b{word-spacing:5.040000px;}
.ws85{word-spacing:5.160000px;}
.ws49{word-spacing:5.220000px;}
.ws21{word-spacing:5.280000px;}
.ws73{word-spacing:5.400000px;}
.ws7e{word-spacing:5.460000px;}
.ws27{word-spacing:5.940000px;}
.ws53{word-spacing:6.000000px;}
.ws54{word-spacing:6.060000px;}
.ws64{word-spacing:6.180000px;}
.ws77{word-spacing:6.240000px;}
.ws63{word-spacing:6.300000px;}
.ws6e{word-spacing:6.480000px;}
.ws6d{word-spacing:6.720000px;}
.ws45{word-spacing:6.780000px;}
.ws28{word-spacing:6.960000px;}
.ws5d{word-spacing:7.560000px;}
.ws83{word-spacing:7.740000px;}
.ws46{word-spacing:8.160000px;}
.ws7f{word-spacing:8.580000px;}
.ws80{word-spacing:8.640000px;}
.ws61{word-spacing:9.120000px;}
.ws79{word-spacing:9.540000px;}
.ws87{word-spacing:10.020000px;}
.ws55{word-spacing:11.220000px;}
.ws48{word-spacing:13.080000px;}
.ws43{word-spacing:14.400000px;}
.ws4f{word-spacing:14.820000px;}
.ws4b{word-spacing:15.540000px;}
.ws52{word-spacing:16.560000px;}
.ws4e{word-spacing:18.900000px;}
.ws4c{word-spacing:23.700000px;}
.ws4d{word-spacing:23.880000px;}
.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;}
._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:4.080000px;}
._8{width:5.157600px;}
._19{width:8.460000px;}
._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);}
.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;}
.y1ab{bottom:51.383850px;}
.y138{bottom:52.237650px;}
.ya8{bottom:53.149650px;}
.yef{bottom:53.742150px;}
.y1b1{bottom:63.983400px;}
.y1aa{bottom:63.983850px;}
.y137{bottom:64.837650px;}
.ya7{bottom:65.749650px;}
.yee{bottom:66.342150px;}
.y6b{bottom:70.378050px;}
.y60{bottom:70.511850px;}
.y33{bottom:70.514550px;}
.y7e{bottom:72.899850px;}
.y1b0{bottom:76.583400px;}
.y1a9{bottom:76.583850px;}
.y136{bottom:77.437650px;}
.yed{bottom:78.942150px;}
.ya5{bottom:83.883900px;}
.y6a{bottom:84.778050px;}
.y7d{bottom:87.299850px;}
.y1af{bottom:89.183400px;}
.y1a8{bottom:89.183850px;}
.y135{bottom:90.037650px;}
.y32{bottom:91.211850px;}
.yec{bottom:91.542150px;}
.ya4{bottom:98.283900px;}
.y69{bottom:99.178050px;}
.y91{bottom:100.383750px;}
.y7c{bottom:101.699850px;}
.y1a7{bottom:101.783850px;}
.y134{bottom:102.637650px;}
.y31{bottom:111.911850px;}
.y6{bottom:111.933150px;}
.y5{bottom:112.136700px;}
.ya3{bottom:112.683900px;}
.y68{bottom:113.578050px;}
.y1ae{bottom:114.383400px;}
.y90{bottom:114.783750px;}
.y133{bottom:115.237650px;}
.y7b{bottom:116.099850px;}
.yeb{bottom:116.742150px;}
.y1ad{bottom:126.983400px;}
.y1a6{bottom:126.983850px;}
.y132{bottom:127.837650px;}
.y8f{bottom:129.183750px;}
.yea{bottom:129.342150px;}
.ya2{bottom:131.331900px;}
.y67{bottom:132.226050px;}
.y5f{bottom:132.611850px;}
.y7a{bottom:134.747850px;}
.y1ac{bottom:139.583400px;}
.y1a5{bottom:139.583850px;}
.y131{bottom:140.437650px;}
.ye9{bottom:141.942150px;}
.ya1{bottom:145.731900px;}
.y66{bottom:146.626050px;}
.y8e{bottom:147.831750px;}
.y79{bottom:149.147850px;}
.y130{bottom:153.037650px;}
.y30{bottom:153.311850px;}
.ye8{bottom:154.542150px;}
.y1a4{bottom:156.435900px;}
.ya0{bottom:160.131900px;}
.y65{bottom:161.026050px;}
.y8d{bottom:162.231750px;}
.y78{bottom:163.547850px;}
.y4{bottom:165.137700px;}
.y12f{bottom:165.637650px;}
.ye7{bottom:167.142150px;}
.y1a3{bottom:173.685900px;}
.y2f{bottom:174.011850px;}
.y9f{bottom:174.531900px;}
.y8c{bottom:176.631750px;}
.y77{bottom:177.947850px;}
.y12e{bottom:178.237650px;}
.y64{bottom:179.674050px;}
.ye6{bottom:179.742150px;}
.y57{bottom:183.443850px;}
.y12d{bottom:190.837650px;}
.y8b{bottom:191.031750px;}
.ye5{bottom:192.342150px;}
.y9e{bottom:193.179900px;}
.y63{bottom:194.074050px;}
.y2e{bottom:194.711850px;}
.y76{bottom:196.595850px;}
.y12c{bottom:203.437650px;}
.y62{bottom:208.474050px;}
.y8a{bottom:209.679750px;}
.y75{bottom:210.995850px;}
.y2a{bottom:215.411850px;}
.y12b{bottom:216.037650px;}
.ye4{bottom:217.542150px;}
.y3{bottom:218.138700px;}
.y56{bottom:219.653850px;}
.y61{bottom:222.874050px;}
.y89{bottom:224.079750px;}
.y74{bottom:225.395850px;}
.y43{bottom:226.062150px;}
.y12a{bottom:228.637650px;}
.ye3{bottom:230.142150px;}
.y29{bottom:236.111850px;}
.y55{bottom:238.403850px;}
.y88{bottom:238.479750px;}
.y73{bottom:239.795850px;}
.y129{bottom:241.237650px;}
.ye2{bottom:242.742150px;}
.y19b{bottom:242.752950px;}
.y42{bottom:244.812150px;}
.y1a2{bottom:247.402950px;}
.y87{bottom:252.879750px;}
.y128{bottom:253.837650px;}
.y72{bottom:254.195850px;}
.ye1{bottom:255.342150px;}
.y19a{bottom:255.352950px;}
.y2d{bottom:256.811850px;}
.y54{bottom:257.153850px;}
.y1a1{bottom:260.002950px;}
.y41{bottom:263.562150px;}
.y2{bottom:265.146450px;}
.y127{bottom:266.437650px;}
.ye0{bottom:267.942150px;}
.y199{bottom:267.952950px;}
.y1a0{bottom:272.602950px;}
.y71{bottom:272.843850px;}
.y53{bottom:275.903850px;}
.y28{bottom:277.511850px;}
.y126{bottom:279.037650px;}
.ydf{bottom:280.542150px;}
.y198{bottom:280.552950px;}
.y40{bottom:282.312150px;}
.y19f{bottom:285.202950px;}
.y125{bottom:291.637650px;}
.yde{bottom:293.142150px;}
.y52{bottom:294.653850px;}
.y27{bottom:298.211850px;}
.y124{bottom:304.237650px;}
.ydd{bottom:305.742150px;}
.y197{bottom:305.752950px;}
.y19e{bottom:310.402950px;}
.y123{bottom:316.837650px;}
.y171{bottom:317.737500px;}
.ydc{bottom:318.342150px;}
.y196{bottom:318.352950px;}
.y3f{bottom:318.522150px;}
.y26{bottom:318.911850px;}
.y19d{bottom:323.002950px;}
.y122{bottom:329.437650px;}
.y170{bottom:330.337500px;}
.y51{bottom:330.863850px;}
.ydb{bottom:330.942150px;}
.y195{bottom:335.204850px;}
.y19c{bottom:335.602950px;}
.y3e{bottom:337.272150px;}
.y25{bottom:339.611850px;}
.y121{bottom:342.037650px;}
.y16f{bottom:342.937500px;}
.y50{bottom:349.613850px;}
.y194{bottom:352.454850px;}
.y120{bottom:354.637650px;}
.y16e{bottom:355.537500px;}
.y3d{bottom:356.022150px;}
.yda{bottom:356.142150px;}
.y24{bottom:360.311850px;}
.y16d{bottom:368.137500px;}
.y4f{bottom:368.363850px;}
.yd9{bottom:368.742150px;}
.y3c{bottom:374.772150px;}
.y11f{bottom:379.837650px;}
.y16c{bottom:380.737500px;}
.y23{bottom:381.011850px;}
.yd8{bottom:381.342150px;}
.y11e{bottom:392.437650px;}
.y16b{bottom:393.337500px;}
.yd7{bottom:393.942150px;}
.y22{bottom:401.711850px;}
.y4e{bottom:404.573850px;}
.y11d{bottom:405.037650px;}
.yd6{bottom:406.542150px;}
.y3b{bottom:410.982150px;}
.y16a{bottom:418.537500px;}
.yd5{bottom:419.142150px;}
.y21{bottom:422.411850px;}
.y193{bottom:425.504850px;}
.y3a{bottom:429.732150px;}
.y11c{bottom:430.237650px;}
.y169{bottom:431.137500px;}
.yd4{bottom:431.742150px;}
.y18c{bottom:433.454850px;}
.y192{bottom:438.104850px;}
.y4d{bottom:440.783850px;}
.y11b{bottom:442.837650px;}
.y2c{bottom:443.111850px;}
.y168{bottom:443.737500px;}
.yd3{bottom:444.342150px;}
.y18b{bottom:446.054850px;}
.y39{bottom:448.482150px;}
.y191{bottom:450.704850px;}
.y11a{bottom:455.437650px;}
.y167{bottom:456.337500px;}
.yd2{bottom:456.942150px;}
.y18a{bottom:458.654850px;}
.y4c{bottom:459.533850px;}
.y190{bottom:463.304850px;}
.y20{bottom:463.811850px;}
.y38{bottom:467.232150px;}
.yd1{bottom:469.542150px;}
.y189{bottom:471.254850px;}
.y18f{bottom:475.904850px;}
.y119{bottom:480.637650px;}
.y166{bottom:481.537500px;}
.y1f{bottom:484.511850px;}
.y18e{bottom:488.504850px;}
.y118{bottom:493.237650px;}
.y165{bottom:494.137500px;}
.yd0{bottom:494.742150px;}
.y4b{bottom:495.743850px;}
.y188{bottom:496.454850px;}
.y1e{bottom:505.211850px;}
.y117{bottom:505.837650px;}
.y164{bottom:506.737500px;}
.ycf{bottom:507.342150px;}
.y187{bottom:513.306750px;}
.y18d{bottom:513.704850px;}
.y4a{bottom:514.493850px;}
.y37{bottom:516.197850px;}
.y116{bottom:518.437650px;}
.y163{bottom:519.337500px;}
.yce{bottom:519.942150px;}
.y1d{bottom:525.911850px;}
.y186{bottom:530.556750px;}
.y115{bottom:531.037650px;}
.y162{bottom:531.937500px;}
.ycd{bottom:532.542150px;}
.y49{bottom:533.243850px;}
.y36{bottom:540.200850px;}
.y161{bottom:544.537500px;}
.ycc{bottom:545.142150px;}
.y1c{bottom:546.611850px;}
.y48{bottom:551.993850px;}
.y114{bottom:556.237650px;}
.y160{bottom:557.137500px;}
.ycb{bottom:557.742150px;}
.y35{bottom:564.203850px;}
.y1b{bottom:567.311850px;}
.y113{bottom:568.837650px;}
.y15f{bottom:569.737500px;}
.yca{bottom:570.342150px;}
.y112{bottom:581.437650px;}
.y15e{bottom:582.337500px;}
.y1a{bottom:588.011850px;}
.y34{bottom:588.203850px;}
.y185{bottom:591.340350px;}
.y15d{bottom:594.937500px;}
.yc9{bottom:595.542150px;}
.y184{bottom:603.940350px;}
.y111{bottom:606.640650px;}
.y15c{bottom:607.537500px;}
.yc8{bottom:608.142150px;}
.y19{bottom:608.711850px;}
.y183{bottom:616.540350px;}
.y15b{bottom:620.137500px;}
.y110{bottom:620.143650px;}
.yc7{bottom:620.742150px;}
.y182{bottom:629.140350px;}
.y18{bottom:629.411850px;}
.y15a{bottom:632.737500px;}
.y10f{bottom:632.743650px;}
.yc6{bottom:633.342150px;}
.y181{bottom:641.740350px;}
.y159{bottom:645.337500px;}
.y10e{bottom:645.343650px;}
.yc5{bottom:645.942150px;}
.y17{bottom:650.111850px;}
.y180{bottom:654.340350px;}
.y158{bottom:657.937500px;}
.y10d{bottom:657.943650px;}
.yc4{bottom:658.537650px;}
.y157{bottom:670.537500px;}
.y10c{bottom:670.543650px;}
.y16{bottom:670.811850px;}
.y17f{bottom:679.540350px;}
.y156{bottom:683.137500px;}
.yc3{bottom:683.139150px;}
.y10b{bottom:683.143650px;}
.y86{bottom:687.686400px;}
.y9d{bottom:689.264850px;}
.y2b{bottom:691.511850px;}
.y17e{bottom:692.140350px;}
.y47{bottom:693.569850px;}
.y155{bottom:695.737500px;}
.yc2{bottom:695.739150px;}
.y10a{bottom:695.743650px;}
.y85{bottom:702.086400px;}
.y9c{bottom:703.664850px;}
.y154{bottom:708.337500px;}
.yc1{bottom:708.339150px;}
.y109{bottom:708.343650px;}
.y17d{bottom:708.992250px;}
.y15{bottom:712.211850px;}
.y45{bottom:714.171600px;}
.y84{bottom:720.734400px;}
.y153{bottom:720.937500px;}
.yc0{bottom:720.939150px;}
.y108{bottom:720.943650px;}
.y9b{bottom:722.312850px;}
.y14{bottom:732.911850px;}
.y152{bottom:733.537500px;}
.ybf{bottom:733.539150px;}
.y107{bottom:733.543650px;}
.y83{bottom:735.134400px;}
.y9a{bottom:736.712850px;}
.y46{bottom:740.763600px;}
.y151{bottom:746.137500px;}
.ybe{bottom:746.139150px;}
.y82{bottom:749.534400px;}
.y99{bottom:751.112850px;}
.y13{bottom:753.611850px;}
.y150{bottom:758.737500px;}
.ybd{bottom:758.739150px;}
.y106{bottom:758.743650px;}
.y81{bottom:768.182400px;}
.y98{bottom:769.760850px;}
.y17b{bottom:769.775850px;}
.y14f{bottom:771.337500px;}
.ybc{bottom:771.339150px;}
.y105{bottom:771.343650px;}
.y12{bottom:774.311850px;}
.y17a{bottom:782.375850px;}
.y80{bottom:782.582400px;}
.y14e{bottom:783.937500px;}
.ybb{bottom:783.939150px;}
.y104{bottom:783.943650px;}
.y97{bottom:784.160850px;}
.y179{bottom:794.975850px;}
.y11{bottom:795.011850px;}
.y14d{bottom:796.537500px;}
.yba{bottom:796.539150px;}
.y103{bottom:796.543650px;}
.y7f{bottom:796.982400px;}
.y96{bottom:798.560850px;}
.y178{bottom:807.575850px;}
.y14c{bottom:809.137500px;}
.yb9{bottom:809.139150px;}
.y102{bottom:809.143650px;}
.y10{bottom:815.711850px;}
.y17c{bottom:820.175850px;}
.y14b{bottom:821.737500px;}
.y101{bottom:821.743650px;}
.y177{bottom:832.775850px;}
.y14a{bottom:834.337500px;}
.yb8{bottom:834.339150px;}
.y100{bottom:834.343650px;}
.y5e{bottom:835.708950px;}
.yf{bottom:836.411850px;}
.y176{bottom:845.375850px;}
.y149{bottom:846.937500px;}
.yb7{bottom:846.939150px;}
.yff{bottom:846.943650px;}
.y5d{bottom:856.408950px;}
.ye{bottom:857.111850px;}
.y175{bottom:857.975850px;}
.y148{bottom:859.537500px;}
.yb6{bottom:859.539150px;}
.yfe{bottom:859.543650px;}
.y174{bottom:870.575850px;}
.y147{bottom:872.137500px;}
.yb5{bottom:872.139150px;}
.yfd{bottom:872.143650px;}
.y5c{bottom:877.108950px;}
.yd{bottom:877.811850px;}
.y146{bottom:884.737500px;}
.yb4{bottom:884.739150px;}
.yfc{bottom:884.743650px;}
.y173{bottom:887.427900px;}
.y145{bottom:897.337500px;}
.yb3{bottom:897.339150px;}
.yfb{bottom:897.343650px;}
.y5b{bottom:897.808950px;}
.yc{bottom:898.511850px;}
.y144{bottom:909.937500px;}
.yb2{bottom:909.939150px;}
.y5a{bottom:918.508950px;}
.yb{bottom:919.211850px;}
.y143{bottom:922.537500px;}
.yb1{bottom:922.539150px;}
.yfa{bottom:922.543650px;}
.y142{bottom:935.137500px;}
.yf9{bottom:935.143650px;}
.ya{bottom:939.911850px;}
.y141{bottom:947.737500px;}
.yb0{bottom:947.739150px;}
.yf8{bottom:947.743650px;}
.y1ba{bottom:948.211350px;}
.y1c1{bottom:956.161350px;}
.y140{bottom:960.337500px;}
.yaf{bottom:960.339150px;}
.yf7{bottom:960.343650px;}
.y9{bottom:960.611850px;}
.y1b9{bottom:960.811350px;}
.y1c0{bottom:968.761350px;}
.y13f{bottom:972.937500px;}
.yae{bottom:972.939150px;}
.yf6{bottom:972.943650px;}
.y1b8{bottom:973.411350px;}
.y8{bottom:981.311850px;}
.y95{bottom:981.312000px;}
.y1bf{bottom:981.361350px;}
.y13e{bottom:985.537500px;}
.yad{bottom:985.539150px;}
.yf5{bottom:985.543650px;}
.y1b7{bottom:986.011350px;}
.y59{bottom:990.952350px;}
.y1be{bottom:993.961350px;}
.y13d{bottom:998.140650px;}
.yf4{bottom:998.143650px;}
.y70{bottom:1002.011850px;}
.y94{bottom:1002.012000px;}
.yac{bottom:1010.739150px;}
.y13c{bottom:1010.740650px;}
.yf3{bottom:1010.743650px;}
.y1b6{bottom:1011.211350px;}
.y1bd{bottom:1019.161350px;}
.y6f{bottom:1022.711850px;}
.y93{bottom:1022.712000px;}
.yab{bottom:1023.339150px;}
.y13b{bottom:1023.340650px;}
.yf2{bottom:1023.343650px;}
.y1b5{bottom:1023.811350px;}
.y1bc{bottom:1031.761350px;}
.yaa{bottom:1035.939150px;}
.y13a{bottom:1035.940650px;}
.yf1{bottom:1035.943650px;}
.y1b4{bottom:1036.411350px;}
.y6e{bottom:1043.411850px;}
.y92{bottom:1043.412000px;}
.ya9{bottom:1048.539150px;}
.y139{bottom:1048.540650px;}
.yf0{bottom:1048.543650px;}
.y1bb{bottom:1048.613400px;}
.y1b3{bottom:1049.011350px;}
.y58{bottom:1055.752350px;}
.y6d{bottom:1064.111850px;}
.y1b2{bottom:1065.863400px;}
.y7{bottom:1078.672050px;}
.y6c{bottom:1084.811850px;}
.ya6{bottom:1085.050050px;}
.y172{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:54.420600px;}
.he{height:55.140000px;}
.h8{height:56.040000px;}
.hb{height:57.060000px;}
.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;}
.x17{left:51.139500px;}
.x3{left:63.536400px;}
.x10{left:76.537650px;}
.x13{left:89.287500px;}
.x7{left:95.396100px;}
.xf{left:105.549150px;}
.x2{left:117.259350px;}
.x18{left:168.199950px;}
.xd{left:265.195950px;}
.x4{left:327.401550px;}
.x8{left:341.905500px;}
.xa{left:368.793600px;}
.x11{left:441.644400px;}
.x6{left:467.714550px;}
.xe{left:480.472500px;}
.x12{left:493.246500px;}
.xc{left:500.119950px;}
.x9{left:588.519600px;}
.x14{left:591.023550px;}
.x19{left:595.275600px;}
.x16{left:599.529600px;}
.x1{left:699.188100px;}
.xb{left:792.439950px;}
.x15{left:823.379100px;}
@media print{
.v4{vertical-align:-17.760533pt;}
.v5{vertical-align:-16.016000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.432000pt;}
.v2{vertical-align:14.208000pt;}
.v3{vertical-align:17.760533pt;}
.v1{vertical-align:85.333333pt;}
.ls1b{letter-spacing:-1.237333pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls2a{letter-spacing:-0.933333pt;}
.ls19{letter-spacing:-0.810667pt;}
.ls17{letter-spacing:-0.800000pt;}
.ls1e{letter-spacing:-0.746667pt;}
.ls16{letter-spacing:-0.693333pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.586667pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.426667pt;}
.ls26{letter-spacing:-0.373333pt;}
.ls25{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.266667pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls29{letter-spacing:-0.186667pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls1c{letter-spacing:-0.106667pt;}
.ls1d{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.158400pt;}
.ls15{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.240000pt;}
.ls1f{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.288000pt;}
.ls21{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.373333pt;}
.ls2b{letter-spacing:0.413333pt;}
.ls14{letter-spacing:0.426667pt;}
.ls22{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.533333pt;}
.ls24{letter-spacing:0.586667pt;}
.ls7{letter-spacing:0.613333pt;}
.ls6{letter-spacing:0.853333pt;}
.ls1{letter-spacing:0.960000pt;}
.lsc{letter-spacing:1.224533pt;}
.ls0{letter-spacing:1.226667pt;}
.ls5{letter-spacing:1.493333pt;}
.lsb{letter-spacing:64.852267pt;}
.ls8{letter-spacing:79.317333pt;}
.ls27{letter-spacing:219.350400pt;}
.ws8a{word-spacing:-20.650667pt;}
.ws0{word-spacing:-18.816000pt;}
.ws6{word-spacing:-14.842667pt;}
.ws99{word-spacing:-14.229333pt;}
.wsc{word-spacing:-13.280000pt;}
.ws30{word-spacing:-12.693333pt;}
.wsf{word-spacing:-12.373333pt;}
.ws5b{word-spacing:-12.266667pt;}
.ws5c{word-spacing:-11.893333pt;}
.ws6a{word-spacing:-11.733333pt;}
.ws69{word-spacing:-11.466667pt;}
.ws2e{word-spacing:-11.360000pt;}
.ws2d{word-spacing:-11.253333pt;}
.ws2f{word-spacing:-11.093333pt;}
.ws2c{word-spacing:-10.624000pt;}
.ws6b{word-spacing:-10.197333pt;}
.ws1d{word-spacing:-10.154667pt;}
.ws7{word-spacing:-9.984000pt;}
.ws6c{word-spacing:-9.898667pt;}
.ws32{word-spacing:-9.728000pt;}
.ws31{word-spacing:-9.344000pt;}
.ws8b{word-spacing:-9.296000pt;}
.ws8f{word-spacing:-8.922667pt;}
.ws33{word-spacing:-8.917333pt;}
.ws8c{word-spacing:-8.661333pt;}
.ws8d{word-spacing:-8.474667pt;}
.ws8e{word-spacing:-8.288000pt;}
.ws68{word-spacing:-7.151467pt;}
.ws1e{word-spacing:-6.193792pt;}
.ws98{word-spacing:-5.419568pt;}
.ws10{word-spacing:-5.290667pt;}
.ws91{word-spacing:-5.002667pt;}
.ws92{word-spacing:-4.629333pt;}
.ws95{word-spacing:-4.368000pt;}
.ws90{word-spacing:-3.994667pt;}
.ws57{word-spacing:-3.573333pt;}
.ws35{word-spacing:-2.880000pt;}
.ws62{word-spacing:-2.666667pt;}
.ws26{word-spacing:-2.453333pt;}
.ws37{word-spacing:-2.240000pt;}
.ws47{word-spacing:-2.080000pt;}
.ws76{word-spacing:-1.920000pt;}
.ws12{word-spacing:-1.493333pt;}
.ws25{word-spacing:-1.440000pt;}
.ws74{word-spacing:-1.386667pt;}
.ws88{word-spacing:-1.333333pt;}
.ws5e{word-spacing:-1.013333pt;}
.ws24{word-spacing:-0.906667pt;}
.ws96{word-spacing:-0.746667pt;}
.ws2{word-spacing:-0.613333pt;}
.ws9{word-spacing:-0.533333pt;}
.ws3{word-spacing:-0.480000pt;}
.ws65{word-spacing:-0.426667pt;}
.ws11{word-spacing:-0.373333pt;}
.ws23{word-spacing:-0.320000pt;}
.ws59{word-spacing:-0.266667pt;}
.ws1f{word-spacing:-0.192000pt;}
.ws97{word-spacing:-0.186667pt;}
.ws94{word-spacing:-0.149333pt;}
.ws93{word-spacing:-0.112000pt;}
.wsa{word-spacing:-0.106667pt;}
.ws8{word-spacing:-0.061333pt;}
.ws66{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:0.192000pt;}
.ws82{word-spacing:0.213333pt;}
.ws60{word-spacing:0.266667pt;}
.ws4{word-spacing:0.288000pt;}
.ws58{word-spacing:0.320000pt;}
.ws6f{word-spacing:0.373333pt;}
.ws41{word-spacing:0.426667pt;}
.ws3a{word-spacing:0.480000pt;}
.ws40{word-spacing:0.533333pt;}
.ws7d{word-spacing:0.586667pt;}
.ws34{word-spacing:0.640000pt;}
.ws39{word-spacing:0.746667pt;}
.ws3c{word-spacing:0.800000pt;}
.ws20{word-spacing:0.906667pt;}
.ws3f{word-spacing:0.960000pt;}
.ws3e{word-spacing:1.013333pt;}
.ws2a{word-spacing:1.120000pt;}
.ws2b{word-spacing:1.226667pt;}
.ws7c{word-spacing:1.386667pt;}
.ws29{word-spacing:1.440000pt;}
.ws51{word-spacing:1.493333pt;}
.ws89{word-spacing:1.546667pt;}
.ws78{word-spacing:1.760000pt;}
.ws81{word-spacing:1.866667pt;}
.ws5a{word-spacing:2.080000pt;}
.ws86{word-spacing:2.293333pt;}
.ws22{word-spacing:2.506667pt;}
.ws67{word-spacing:2.613333pt;}
.ws50{word-spacing:2.666667pt;}
.ws56{word-spacing:2.986667pt;}
.ws36{word-spacing:3.093333pt;}
.ws3d{word-spacing:3.360000pt;}
.ws71{word-spacing:3.466667pt;}
.ws75{word-spacing:3.520000pt;}
.ws38{word-spacing:3.573333pt;}
.ws4a{word-spacing:3.733333pt;}
.ws42{word-spacing:3.946667pt;}
.ws70{word-spacing:4.000000pt;}
.ws3b{word-spacing:4.053333pt;}
.ws84{word-spacing:4.106667pt;}
.ws44{word-spacing:4.160000pt;}
.ws5f{word-spacing:4.213333pt;}
.ws72{word-spacing:4.266667pt;}
.ws7a{word-spacing:4.426667pt;}
.ws7b{word-spacing:4.480000pt;}
.ws85{word-spacing:4.586667pt;}
.ws49{word-spacing:4.640000pt;}
.ws21{word-spacing:4.693333pt;}
.ws73{word-spacing:4.800000pt;}
.ws7e{word-spacing:4.853333pt;}
.ws27{word-spacing:5.280000pt;}
.ws53{word-spacing:5.333333pt;}
.ws54{word-spacing:5.386667pt;}
.ws64{word-spacing:5.493333pt;}
.ws77{word-spacing:5.546667pt;}
.ws63{word-spacing:5.600000pt;}
.ws6e{word-spacing:5.760000pt;}
.ws6d{word-spacing:5.973333pt;}
.ws45{word-spacing:6.026667pt;}
.ws28{word-spacing:6.186667pt;}
.ws5d{word-spacing:6.720000pt;}
.ws83{word-spacing:6.880000pt;}
.ws46{word-spacing:7.253333pt;}
.ws7f{word-spacing:7.626667pt;}
.ws80{word-spacing:7.680000pt;}
.ws61{word-spacing:8.106667pt;}
.ws79{word-spacing:8.480000pt;}
.ws87{word-spacing:8.906667pt;}
.ws55{word-spacing:9.973333pt;}
.ws48{word-spacing:11.626667pt;}
.ws43{word-spacing:12.800000pt;}
.ws4f{word-spacing:13.173333pt;}
.ws4b{word-spacing:13.813333pt;}
.ws52{word-spacing:14.720000pt;}
.ws4e{word-spacing:16.800000pt;}
.ws4c{word-spacing:21.066667pt;}
.ws4d{word-spacing:21.226667pt;}
.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;}
._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.626667pt;}
._8{width:4.584533pt;}
._19{width:7.520000pt;}
._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;}
.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;}
.y1ab{bottom:45.674533pt;}
.y138{bottom:46.433467pt;}
.ya8{bottom:47.244133pt;}
.yef{bottom:47.770800pt;}
.y1b1{bottom:56.874133pt;}
.y1aa{bottom:56.874533pt;}
.y137{bottom:57.633467pt;}
.ya7{bottom:58.444133pt;}
.yee{bottom:58.970800pt;}
.y6b{bottom:62.558267pt;}
.y60{bottom:62.677200pt;}
.y33{bottom:62.679600pt;}
.y7e{bottom:64.799867pt;}
.y1b0{bottom:68.074133pt;}
.y1a9{bottom:68.074533pt;}
.y136{bottom:68.833467pt;}
.yed{bottom:70.170800pt;}
.ya5{bottom:74.563467pt;}
.y6a{bottom:75.358267pt;}
.y7d{bottom:77.599867pt;}
.y1af{bottom:79.274133pt;}
.y1a8{bottom:79.274533pt;}
.y135{bottom:80.033467pt;}
.y32{bottom:81.077200pt;}
.yec{bottom:81.370800pt;}
.ya4{bottom:87.363467pt;}
.y69{bottom:88.158267pt;}
.y91{bottom:89.230000pt;}
.y7c{bottom:90.399867pt;}
.y1a7{bottom:90.474533pt;}
.y134{bottom:91.233467pt;}
.y31{bottom:99.477200pt;}
.y6{bottom:99.496133pt;}
.y5{bottom:99.677067pt;}
.ya3{bottom:100.163467pt;}
.y68{bottom:100.958267pt;}
.y1ae{bottom:101.674133pt;}
.y90{bottom:102.030000pt;}
.y133{bottom:102.433467pt;}
.y7b{bottom:103.199867pt;}
.yeb{bottom:103.770800pt;}
.y1ad{bottom:112.874133pt;}
.y1a6{bottom:112.874533pt;}
.y132{bottom:113.633467pt;}
.y8f{bottom:114.830000pt;}
.yea{bottom:114.970800pt;}
.ya2{bottom:116.739467pt;}
.y67{bottom:117.534267pt;}
.y5f{bottom:117.877200pt;}
.y7a{bottom:119.775867pt;}
.y1ac{bottom:124.074133pt;}
.y1a5{bottom:124.074533pt;}
.y131{bottom:124.833467pt;}
.ye9{bottom:126.170800pt;}
.ya1{bottom:129.539467pt;}
.y66{bottom:130.334267pt;}
.y8e{bottom:131.406000pt;}
.y79{bottom:132.575867pt;}
.y130{bottom:136.033467pt;}
.y30{bottom:136.277200pt;}
.ye8{bottom:137.370800pt;}
.y1a4{bottom:139.054133pt;}
.ya0{bottom:142.339467pt;}
.y65{bottom:143.134267pt;}
.y8d{bottom:144.206000pt;}
.y78{bottom:145.375867pt;}
.y4{bottom:146.789067pt;}
.y12f{bottom:147.233467pt;}
.ye7{bottom:148.570800pt;}
.y1a3{bottom:154.387467pt;}
.y2f{bottom:154.677200pt;}
.y9f{bottom:155.139467pt;}
.y8c{bottom:157.006000pt;}
.y77{bottom:158.175867pt;}
.y12e{bottom:158.433467pt;}
.y64{bottom:159.710267pt;}
.ye6{bottom:159.770800pt;}
.y57{bottom:163.061200pt;}
.y12d{bottom:169.633467pt;}
.y8b{bottom:169.806000pt;}
.ye5{bottom:170.970800pt;}
.y9e{bottom:171.715467pt;}
.y63{bottom:172.510267pt;}
.y2e{bottom:173.077200pt;}
.y76{bottom:174.751867pt;}
.y12c{bottom:180.833467pt;}
.y62{bottom:185.310267pt;}
.y8a{bottom:186.382000pt;}
.y75{bottom:187.551867pt;}
.y2a{bottom:191.477200pt;}
.y12b{bottom:192.033467pt;}
.ye4{bottom:193.370800pt;}
.y3{bottom:193.901067pt;}
.y56{bottom:195.247867pt;}
.y61{bottom:198.110267pt;}
.y89{bottom:199.182000pt;}
.y74{bottom:200.351867pt;}
.y43{bottom:200.944133pt;}
.y12a{bottom:203.233467pt;}
.ye3{bottom:204.570800pt;}
.y29{bottom:209.877200pt;}
.y55{bottom:211.914533pt;}
.y88{bottom:211.982000pt;}
.y73{bottom:213.151867pt;}
.y129{bottom:214.433467pt;}
.ye2{bottom:215.770800pt;}
.y19b{bottom:215.780400pt;}
.y42{bottom:217.610800pt;}
.y1a2{bottom:219.913733pt;}
.y87{bottom:224.782000pt;}
.y128{bottom:225.633467pt;}
.y72{bottom:225.951867pt;}
.ye1{bottom:226.970800pt;}
.y19a{bottom:226.980400pt;}
.y2d{bottom:228.277200pt;}
.y54{bottom:228.581200pt;}
.y1a1{bottom:231.113733pt;}
.y41{bottom:234.277467pt;}
.y2{bottom:235.685733pt;}
.y127{bottom:236.833467pt;}
.ye0{bottom:238.170800pt;}
.y199{bottom:238.180400pt;}
.y1a0{bottom:242.313733pt;}
.y71{bottom:242.527867pt;}
.y53{bottom:245.247867pt;}
.y28{bottom:246.677200pt;}
.y126{bottom:248.033467pt;}
.ydf{bottom:249.370800pt;}
.y198{bottom:249.380400pt;}
.y40{bottom:250.944133pt;}
.y19f{bottom:253.513733pt;}
.y125{bottom:259.233467pt;}
.yde{bottom:260.570800pt;}
.y52{bottom:261.914533pt;}
.y27{bottom:265.077200pt;}
.y124{bottom:270.433467pt;}
.ydd{bottom:271.770800pt;}
.y197{bottom:271.780400pt;}
.y19e{bottom:275.913733pt;}
.y123{bottom:281.633467pt;}
.y171{bottom:282.433333pt;}
.ydc{bottom:282.970800pt;}
.y196{bottom:282.980400pt;}
.y3f{bottom:283.130800pt;}
.y26{bottom:283.477200pt;}
.y19d{bottom:287.113733pt;}
.y122{bottom:292.833467pt;}
.y170{bottom:293.633333pt;}
.y51{bottom:294.101200pt;}
.ydb{bottom:294.170800pt;}
.y195{bottom:297.959867pt;}
.y19c{bottom:298.313733pt;}
.y3e{bottom:299.797467pt;}
.y25{bottom:301.877200pt;}
.y121{bottom:304.033467pt;}
.y16f{bottom:304.833333pt;}
.y50{bottom:310.767867pt;}
.y194{bottom:313.293200pt;}
.y120{bottom:315.233467pt;}
.y16e{bottom:316.033333pt;}
.y3d{bottom:316.464133pt;}
.yda{bottom:316.570800pt;}
.y24{bottom:320.277200pt;}
.y16d{bottom:327.233333pt;}
.y4f{bottom:327.434533pt;}
.yd9{bottom:327.770800pt;}
.y3c{bottom:333.130800pt;}
.y11f{bottom:337.633467pt;}
.y16c{bottom:338.433333pt;}
.y23{bottom:338.677200pt;}
.yd8{bottom:338.970800pt;}
.y11e{bottom:348.833467pt;}
.y16b{bottom:349.633333pt;}
.yd7{bottom:350.170800pt;}
.y22{bottom:357.077200pt;}
.y4e{bottom:359.621200pt;}
.y11d{bottom:360.033467pt;}
.yd6{bottom:361.370800pt;}
.y3b{bottom:365.317467pt;}
.y16a{bottom:372.033333pt;}
.yd5{bottom:372.570800pt;}
.y21{bottom:375.477200pt;}
.y193{bottom:378.226533pt;}
.y3a{bottom:381.984133pt;}
.y11c{bottom:382.433467pt;}
.y169{bottom:383.233333pt;}
.yd4{bottom:383.770800pt;}
.y18c{bottom:385.293200pt;}
.y192{bottom:389.426533pt;}
.y4d{bottom:391.807867pt;}
.y11b{bottom:393.633467pt;}
.y2c{bottom:393.877200pt;}
.y168{bottom:394.433333pt;}
.yd3{bottom:394.970800pt;}
.y18b{bottom:396.493200pt;}
.y39{bottom:398.650800pt;}
.y191{bottom:400.626533pt;}
.y11a{bottom:404.833467pt;}
.y167{bottom:405.633333pt;}
.yd2{bottom:406.170800pt;}
.y18a{bottom:407.693200pt;}
.y4c{bottom:408.474533pt;}
.y190{bottom:411.826533pt;}
.y20{bottom:412.277200pt;}
.y38{bottom:415.317467pt;}
.yd1{bottom:417.370800pt;}
.y189{bottom:418.893200pt;}
.y18f{bottom:423.026533pt;}
.y119{bottom:427.233467pt;}
.y166{bottom:428.033333pt;}
.y1f{bottom:430.677200pt;}
.y18e{bottom:434.226533pt;}
.y118{bottom:438.433467pt;}
.y165{bottom:439.233333pt;}
.yd0{bottom:439.770800pt;}
.y4b{bottom:440.661200pt;}
.y188{bottom:441.293200pt;}
.y1e{bottom:449.077200pt;}
.y117{bottom:449.633467pt;}
.y164{bottom:450.433333pt;}
.ycf{bottom:450.970800pt;}
.y187{bottom:456.272667pt;}
.y18d{bottom:456.626533pt;}
.y4a{bottom:457.327867pt;}
.y37{bottom:458.842533pt;}
.y116{bottom:460.833467pt;}
.y163{bottom:461.633333pt;}
.yce{bottom:462.170800pt;}
.y1d{bottom:467.477200pt;}
.y186{bottom:471.606000pt;}
.y115{bottom:472.033467pt;}
.y162{bottom:472.833333pt;}
.ycd{bottom:473.370800pt;}
.y49{bottom:473.994533pt;}
.y36{bottom:480.178533pt;}
.y161{bottom:484.033333pt;}
.ycc{bottom:484.570800pt;}
.y1c{bottom:485.877200pt;}
.y48{bottom:490.661200pt;}
.y114{bottom:494.433467pt;}
.y160{bottom:495.233333pt;}
.ycb{bottom:495.770800pt;}
.y35{bottom:501.514533pt;}
.y1b{bottom:504.277200pt;}
.y113{bottom:505.633467pt;}
.y15f{bottom:506.433333pt;}
.yca{bottom:506.970800pt;}
.y112{bottom:516.833467pt;}
.y15e{bottom:517.633333pt;}
.y1a{bottom:522.677200pt;}
.y34{bottom:522.847867pt;}
.y185{bottom:525.635867pt;}
.y15d{bottom:528.833333pt;}
.yc9{bottom:529.370800pt;}
.y184{bottom:536.835867pt;}
.y111{bottom:539.236133pt;}
.y15c{bottom:540.033333pt;}
.yc8{bottom:540.570800pt;}
.y19{bottom:541.077200pt;}
.y183{bottom:548.035867pt;}
.y15b{bottom:551.233333pt;}
.y110{bottom:551.238800pt;}
.yc7{bottom:551.770800pt;}
.y182{bottom:559.235867pt;}
.y18{bottom:559.477200pt;}
.y15a{bottom:562.433333pt;}
.y10f{bottom:562.438800pt;}
.yc6{bottom:562.970800pt;}
.y181{bottom:570.435867pt;}
.y159{bottom:573.633333pt;}
.y10e{bottom:573.638800pt;}
.yc5{bottom:574.170800pt;}
.y17{bottom:577.877200pt;}
.y180{bottom:581.635867pt;}
.y158{bottom:584.833333pt;}
.y10d{bottom:584.838800pt;}
.yc4{bottom:585.366800pt;}
.y157{bottom:596.033333pt;}
.y10c{bottom:596.038800pt;}
.y16{bottom:596.277200pt;}
.y17f{bottom:604.035867pt;}
.y156{bottom:607.233333pt;}
.yc3{bottom:607.234800pt;}
.y10b{bottom:607.238800pt;}
.y86{bottom:611.276800pt;}
.y9d{bottom:612.679867pt;}
.y2b{bottom:614.677200pt;}
.y17e{bottom:615.235867pt;}
.y47{bottom:616.506533pt;}
.y155{bottom:618.433333pt;}
.yc2{bottom:618.434800pt;}
.y10a{bottom:618.438800pt;}
.y85{bottom:624.076800pt;}
.y9c{bottom:625.479867pt;}
.y154{bottom:629.633333pt;}
.yc1{bottom:629.634800pt;}
.y109{bottom:629.638800pt;}
.y17d{bottom:630.215333pt;}
.y15{bottom:633.077200pt;}
.y45{bottom:634.819200pt;}
.y84{bottom:640.652800pt;}
.y153{bottom:640.833333pt;}
.yc0{bottom:640.834800pt;}
.y108{bottom:640.838800pt;}
.y9b{bottom:642.055867pt;}
.y14{bottom:651.477200pt;}
.y152{bottom:652.033333pt;}
.ybf{bottom:652.034800pt;}
.y107{bottom:652.038800pt;}
.y83{bottom:653.452800pt;}
.y9a{bottom:654.855867pt;}
.y46{bottom:658.456533pt;}
.y151{bottom:663.233333pt;}
.ybe{bottom:663.234800pt;}
.y82{bottom:666.252800pt;}
.y99{bottom:667.655867pt;}
.y13{bottom:669.877200pt;}
.y150{bottom:674.433333pt;}
.ybd{bottom:674.434800pt;}
.y106{bottom:674.438800pt;}
.y81{bottom:682.828800pt;}
.y98{bottom:684.231867pt;}
.y17b{bottom:684.245200pt;}
.y14f{bottom:685.633333pt;}
.ybc{bottom:685.634800pt;}
.y105{bottom:685.638800pt;}
.y12{bottom:688.277200pt;}
.y17a{bottom:695.445200pt;}
.y80{bottom:695.628800pt;}
.y14e{bottom:696.833333pt;}
.ybb{bottom:696.834800pt;}
.y104{bottom:696.838800pt;}
.y97{bottom:697.031867pt;}
.y179{bottom:706.645200pt;}
.y11{bottom:706.677200pt;}
.y14d{bottom:708.033333pt;}
.yba{bottom:708.034800pt;}
.y103{bottom:708.038800pt;}
.y7f{bottom:708.428800pt;}
.y96{bottom:709.831867pt;}
.y178{bottom:717.845200pt;}
.y14c{bottom:719.233333pt;}
.yb9{bottom:719.234800pt;}
.y102{bottom:719.238800pt;}
.y10{bottom:725.077200pt;}
.y17c{bottom:729.045200pt;}
.y14b{bottom:730.433333pt;}
.y101{bottom:730.438800pt;}
.y177{bottom:740.245200pt;}
.y14a{bottom:741.633333pt;}
.yb8{bottom:741.634800pt;}
.y100{bottom:741.638800pt;}
.y5e{bottom:742.852400pt;}
.yf{bottom:743.477200pt;}
.y176{bottom:751.445200pt;}
.y149{bottom:752.833333pt;}
.yb7{bottom:752.834800pt;}
.yff{bottom:752.838800pt;}
.y5d{bottom:761.252400pt;}
.ye{bottom:761.877200pt;}
.y175{bottom:762.645200pt;}
.y148{bottom:764.033333pt;}
.yb6{bottom:764.034800pt;}
.yfe{bottom:764.038800pt;}
.y174{bottom:773.845200pt;}
.y147{bottom:775.233333pt;}
.yb5{bottom:775.234800pt;}
.yfd{bottom:775.238800pt;}
.y5c{bottom:779.652400pt;}
.yd{bottom:780.277200pt;}
.y146{bottom:786.433333pt;}
.yb4{bottom:786.434800pt;}
.yfc{bottom:786.438800pt;}
.y173{bottom:788.824800pt;}
.y145{bottom:797.633333pt;}
.yb3{bottom:797.634800pt;}
.yfb{bottom:797.638800pt;}
.y5b{bottom:798.052400pt;}
.yc{bottom:798.677200pt;}
.y144{bottom:808.833333pt;}
.yb2{bottom:808.834800pt;}
.y5a{bottom:816.452400pt;}
.yb{bottom:817.077200pt;}
.y143{bottom:820.033333pt;}
.yb1{bottom:820.034800pt;}
.yfa{bottom:820.038800pt;}
.y142{bottom:831.233333pt;}
.yf9{bottom:831.238800pt;}
.ya{bottom:835.477200pt;}
.y141{bottom:842.433333pt;}
.yb0{bottom:842.434800pt;}
.yf8{bottom:842.438800pt;}
.y1ba{bottom:842.854533pt;}
.y1c1{bottom:849.921200pt;}
.y140{bottom:853.633333pt;}
.yaf{bottom:853.634800pt;}
.yf7{bottom:853.638800pt;}
.y9{bottom:853.877200pt;}
.y1b9{bottom:854.054533pt;}
.y1c0{bottom:861.121200pt;}
.y13f{bottom:864.833333pt;}
.yae{bottom:864.834800pt;}
.yf6{bottom:864.838800pt;}
.y1b8{bottom:865.254533pt;}
.y8{bottom:872.277200pt;}
.y95{bottom:872.277333pt;}
.y1bf{bottom:872.321200pt;}
.y13e{bottom:876.033333pt;}
.yad{bottom:876.034800pt;}
.yf5{bottom:876.038800pt;}
.y1b7{bottom:876.454533pt;}
.y59{bottom:880.846533pt;}
.y1be{bottom:883.521200pt;}
.y13d{bottom:887.236133pt;}
.yf4{bottom:887.238800pt;}
.y70{bottom:890.677200pt;}
.y94{bottom:890.677333pt;}
.yac{bottom:898.434800pt;}
.y13c{bottom:898.436133pt;}
.yf3{bottom:898.438800pt;}
.y1b6{bottom:898.854533pt;}
.y1bd{bottom:905.921200pt;}
.y6f{bottom:909.077200pt;}
.y93{bottom:909.077333pt;}
.yab{bottom:909.634800pt;}
.y13b{bottom:909.636133pt;}
.yf2{bottom:909.638800pt;}
.y1b5{bottom:910.054533pt;}
.y1bc{bottom:917.121200pt;}
.yaa{bottom:920.834800pt;}
.y13a{bottom:920.836133pt;}
.yf1{bottom:920.838800pt;}
.y1b4{bottom:921.254533pt;}
.y6e{bottom:927.477200pt;}
.y92{bottom:927.477333pt;}
.ya9{bottom:932.034800pt;}
.y139{bottom:932.036133pt;}
.yf0{bottom:932.038800pt;}
.y1bb{bottom:932.100800pt;}
.y1b3{bottom:932.454533pt;}
.y58{bottom:938.446533pt;}
.y6d{bottom:945.877200pt;}
.y1b2{bottom:947.434133pt;}
.y7{bottom:958.819600pt;}
.y6c{bottom:964.277200pt;}
.ya6{bottom:964.488933pt;}
.y172{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:48.373867pt;}
.he{height:49.013333pt;}
.h8{height:49.813333pt;}
.hb{height:50.720000pt;}
.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;}
.x17{left:45.457333pt;}
.x3{left:56.476800pt;}
.x10{left:68.033467pt;}
.x13{left:79.366667pt;}
.x7{left:84.796533pt;}
.xf{left:93.821467pt;}
.x2{left:104.230533pt;}
.x18{left:149.511067pt;}
.xd{left:235.729733pt;}
.x4{left:291.023600pt;}
.x8{left:303.916000pt;}
.xa{left:327.816533pt;}
.x11{left:392.572800pt;}
.x6{left:415.746267pt;}
.xe{left:427.086667pt;}
.x12{left:438.441333pt;}
.xc{left:444.551067pt;}
.x9{left:523.128533pt;}
.x14{left:525.354267pt;}
.x19{left:529.133867pt;}
.x16{left:532.915200pt;}
.x1{left:621.500533pt;}
.xb{left:704.391067pt;}
.x15{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; }
  