
    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_d0dfc189cae02af6b44607ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.165000;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_f8a3fd66494b7641cb2da53f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.167000;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_fb5de5285ebb1dea78f46538.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166000;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_d5c0a2fe74e7eb8ff43e8bd2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.200900;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_75228e4d46d6154c45239f0a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ee30b71be95d4da50f3e803e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.698000;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_067b684366733176ed9cd7d8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.196000;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_ee30b71be95d4da50f3e803e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.698000;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_38a16b3bcb6f8334ffc87314.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.954000;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_9ee11021c147a5d93f27414f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.155000;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_9373cbc91d7560e14d91fe8b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.160048;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_3ed20cfa25b46c76eff2a1db.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.026000;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_55549665c0f0a3c045836d8a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.184000;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_a841fb0dca2dd5373ff4f6a9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.176000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.980600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980600px;}
.ls62{letter-spacing:-5.202000px;}
.ls67{letter-spacing:-4.233000px;}
.ls3e{letter-spacing:-4.073400px;}
.ls68{letter-spacing:-2.805000px;}
.ls65{letter-spacing:-2.550000px;}
.ls69{letter-spacing:-1.530000px;}
.lse{letter-spacing:-1.428000px;}
.ls5a{letter-spacing:-1.350000px;}
.ls66{letter-spacing:-1.020000px;}
.ls43{letter-spacing:-0.900000px;}
.ls5f{letter-spacing:-0.780000px;}
.ls63{letter-spacing:-0.663000px;}
.ls3b{letter-spacing:-0.660000px;}
.ls12{letter-spacing:-0.540000px;}
.ls54{letter-spacing:-0.510000px;}
.ls22{letter-spacing:-0.480000px;}
.ls5c{letter-spacing:-0.414000px;}
.ls51{letter-spacing:-0.408000px;}
.ls42{letter-spacing:-0.324000px;}
.ls10{letter-spacing:-0.300000px;}
.ls23{letter-spacing:-0.240000px;}
.ls64{letter-spacing:-0.204000px;}
.ls11{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.167400px;}
.ls3c{letter-spacing:-0.139920px;}
.ls34{letter-spacing:-0.120000px;}
.ls5b{letter-spacing:-0.104940px;}
.ls21{letter-spacing:-0.060000px;}
.ls4d{letter-spacing:-0.054000px;}
.lsb{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.022200px;}
.ls2c{letter-spacing:0.027900px;}
.ls19{letter-spacing:0.030000px;}
.ls0{letter-spacing:0.051000px;}
.ls2e{letter-spacing:0.055800px;}
.ls6{letter-spacing:0.060000px;}
.ls1d{letter-spacing:0.111600px;}
.ls5{letter-spacing:0.120000px;}
.ls31{letter-spacing:0.139500px;}
.ls7{letter-spacing:0.150000px;}
.ls29{letter-spacing:0.156000px;}
.ls55{letter-spacing:0.163800px;}
.ls1f{letter-spacing:0.167400px;}
.ls17{letter-spacing:0.170700px;}
.ls3d{letter-spacing:0.174900px;}
.ls15{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.204000px;}
.ls26{letter-spacing:0.204960px;}
.ls25{letter-spacing:0.205560px;}
.ls16{letter-spacing:0.210000px;}
.ls57{letter-spacing:0.222000px;}
.ls2d{letter-spacing:0.223200px;}
.ls4{letter-spacing:0.240000px;}
.ls2a{letter-spacing:0.252000px;}
.ls5e{letter-spacing:0.270000px;}
.ls1e{letter-spacing:0.279000px;}
.ls45{letter-spacing:0.279840px;}
.ls8{letter-spacing:0.300000px;}
.ls24{letter-spacing:0.360000px;}
.ls4a{letter-spacing:0.376800px;}
.ls35{letter-spacing:0.383760px;}
.ls36{letter-spacing:0.420000px;}
.ls30{letter-spacing:0.446400px;}
.ls47{letter-spacing:0.474000px;}
.ls40{letter-spacing:0.480000px;}
.ls2f{letter-spacing:0.502200px;}
.ls48{letter-spacing:0.534000px;}
.ls52{letter-spacing:0.540000px;}
.ls39{letter-spacing:0.558000px;}
.ls56{letter-spacing:0.570000px;}
.ls28{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.612000px;}
.ls38{letter-spacing:0.613800px;}
.ls2b{letter-spacing:0.630000px;}
.ls27{letter-spacing:0.660000px;}
.ls1a{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.732600px;}
.ls4f{letter-spacing:0.780000px;}
.ls46{letter-spacing:0.840000px;}
.ls18{letter-spacing:0.900000px;}
.ls1c{letter-spacing:0.909600px;}
.lsd{letter-spacing:0.969000px;}
.ls44{letter-spacing:1.020000px;}
.lsa{letter-spacing:1.080000px;}
.ls50{letter-spacing:1.173000px;}
.lsf{letter-spacing:1.200000px;}
.ls6a{letter-spacing:1.350000px;}
.ls60{letter-spacing:1.512000px;}
.lsc{letter-spacing:1.530000px;}
.ls1b{letter-spacing:1.560000px;}
.ls53{letter-spacing:1.566000px;}
.ls32{letter-spacing:1.674000px;}
.ls3a{letter-spacing:1.836000px;}
.ls49{letter-spacing:1.860000px;}
.ls4e{letter-spacing:1.920000px;}
.ls4c{letter-spacing:1.944000px;}
.ls37{letter-spacing:2.040000px;}
.ls33{letter-spacing:2.052000px;}
.ls3{letter-spacing:2.295000px;}
.ls20{letter-spacing:2.376000px;}
.ls4b{letter-spacing:2.400000px;}
.ls3f{letter-spacing:2.820000px;}
.ls61{letter-spacing:3.315000px;}
.ls41{letter-spacing:3.792000px;}
.ls5d{letter-spacing:4.320000px;}
.ls59{letter-spacing:34.819200px;}
.ls58{letter-spacing:39.618000px;}
.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;}
}
.ws22{word-spacing:-15.174000px;}
.ws8b{word-spacing:-14.742000px;}
.ws59{word-spacing:-14.634000px;}
.wsc0{word-spacing:-14.586000px;}
.wsa2{word-spacing:-14.364000px;}
.ws5b{word-spacing:-14.340000px;}
.ws2{word-spacing:-13.566000px;}
.ws3f{word-spacing:-13.200000px;}
.ws40{word-spacing:-13.080000px;}
.ws8f{word-spacing:-13.020000px;}
.ws3e{word-spacing:-12.960000px;}
.ws5a{word-spacing:-12.660000px;}
.ws8c{word-spacing:-12.600000px;}
.wsb9{word-spacing:-12.300000px;}
.wsb8{word-spacing:-12.258000px;}
.ws1{word-spacing:-12.240000px;}
.wsb3{word-spacing:-11.997000px;}
.ws5c{word-spacing:-11.940000px;}
.wsa3{word-spacing:-11.760000px;}
.ws90{word-spacing:-11.718000px;}
.ws7e{word-spacing:-11.700000px;}
.ws8d{word-spacing:-11.580000px;}
.ws8e{word-spacing:-11.520000px;}
.ws4d{word-spacing:-11.340000px;}
.ws23{word-spacing:-11.280000px;}
.ws7a{word-spacing:-11.220000px;}
.ws7c{word-spacing:-11.160000px;}
.ws5e{word-spacing:-11.100000px;}
.wsa4{word-spacing:-11.040000px;}
.wsc1{word-spacing:-10.965000px;}
.ws5d{word-spacing:-10.800000px;}
.ws0{word-spacing:-10.710000px;}
.wsa6{word-spacing:-10.557000px;}
.wsba{word-spacing:-10.500000px;}
.wsa5{word-spacing:-10.490400px;}
.ws7b{word-spacing:-10.380000px;}
.wsc3{word-spacing:-10.302000px;}
.wsca{word-spacing:-9.435000px;}
.ws4{word-spacing:-8.901000px;}
.wsb4{word-spacing:-8.487000px;}
.wsc4{word-spacing:-8.415000px;}
.wsc9{word-spacing:-8.160000px;}
.ws7d{word-spacing:-7.625640px;}
.ws60{word-spacing:-7.520700px;}
.ws3{word-spacing:-7.345800px;}
.wsb1{word-spacing:-7.240860px;}
.ws5f{word-spacing:-7.205880px;}
.wsc8{word-spacing:-6.732000px;}
.wsc2{word-spacing:-5.763000px;}
.ws6e{word-spacing:-2.640000px;}
.ws87{word-spacing:-2.580000px;}
.ws30{word-spacing:-2.040000px;}
.ws17{word-spacing:-1.980000px;}
.ws18{word-spacing:-1.920000px;}
.ws2d{word-spacing:-1.860000px;}
.ws1f{word-spacing:-1.841400px;}
.wsa9{word-spacing:-1.800000px;}
.ws74{word-spacing:-1.785600px;}
.ws2b{word-spacing:-1.740000px;}
.ws83{word-spacing:-1.680000px;}
.ws41{word-spacing:-1.674000px;}
.wsa{word-spacing:-1.530000px;}
.wsbd{word-spacing:-1.500000px;}
.ws54{word-spacing:-1.450800px;}
.ws44{word-spacing:-1.440000px;}
.wsb6{word-spacing:-1.380000px;}
.wsad{word-spacing:-1.326000px;}
.ws66{word-spacing:-1.320000px;}
.wsac{word-spacing:-1.275000px;}
.ws25{word-spacing:-1.260000px;}
.ws20{word-spacing:-1.227600px;}
.ws13{word-spacing:-1.200000px;}
.ws26{word-spacing:-1.140000px;}
.ws7{word-spacing:-1.080000px;}
.ws80{word-spacing:-1.020000px;}
.ws47{word-spacing:-0.960000px;}
.ws85{word-spacing:-0.900000px;}
.ws8a{word-spacing:-0.840000px;}
.ws86{word-spacing:-0.780000px;}
.ws5{word-spacing:-0.754800px;}
.ws72{word-spacing:-0.725400px;}
.ws9c{word-spacing:-0.720000px;}
.wsc7{word-spacing:-0.714000px;}
.ws68{word-spacing:-0.660000px;}
.ws3d{word-spacing:-0.613800px;}
.ws69{word-spacing:-0.600000px;}
.ws77{word-spacing:-0.558000px;}
.ws14{word-spacing:-0.540000px;}
.ws93{word-spacing:-0.480000px;}
.ws56{word-spacing:-0.446400px;}
.ws71{word-spacing:-0.420000px;}
.ws35{word-spacing:-0.360000px;}
.ws75{word-spacing:-0.334800px;}
.ws70{word-spacing:-0.300000px;}
.ws9{word-spacing:-0.240000px;}
.ws21{word-spacing:-0.223200px;}
.ws10{word-spacing:-0.204000px;}
.ws82{word-spacing:-0.180000px;}
.ws28{word-spacing:-0.120000px;}
.ws99{word-spacing:-0.111600px;}
.ws29{word-spacing:-0.060000px;}
.ws53{word-spacing:-0.055800px;}
.wsc{word-spacing:-0.051000px;}
.ws6{word-spacing:-0.044400px;}
.ws8{word-spacing:0.000000px;}
.ws92{word-spacing:0.060000px;}
.ws49{word-spacing:0.120000px;}
.ws3c{word-spacing:0.167400px;}
.ws4c{word-spacing:0.180000px;}
.wsc6{word-spacing:0.204000px;}
.ws31{word-spacing:0.240000px;}
.ws2c{word-spacing:0.300000px;}
.ws6c{word-spacing:0.360000px;}
.wsae{word-spacing:0.510000px;}
.ws52{word-spacing:0.558000px;}
.ws6f{word-spacing:0.600000px;}
.ws65{word-spacing:0.660000px;}
.ws88{word-spacing:0.720000px;}
.ws73{word-spacing:0.725400px;}
.ws94{word-spacing:0.780000px;}
.ws79{word-spacing:0.781200px;}
.ws46{word-spacing:0.840000px;}
.ws32{word-spacing:0.900000px;}
.ws9a{word-spacing:0.948600px;}
.ws4b{word-spacing:1.020000px;}
.ws39{word-spacing:1.227600px;}
.ws4f{word-spacing:1.260000px;}
.wse{word-spacing:1.275000px;}
.wsab{word-spacing:1.380000px;}
.wsd{word-spacing:1.428000px;}
.ws11{word-spacing:1.530000px;}
.wsaf{word-spacing:1.560000px;}
.ws9e{word-spacing:1.620000px;}
.wsb{word-spacing:1.632000px;}
.ws58{word-spacing:1.674000px;}
.ws2f{word-spacing:1.680000px;}
.ws12{word-spacing:1.683000px;}
.wsf{word-spacing:1.734000px;}
.ws16{word-spacing:1.740000px;}
.ws51{word-spacing:1.785600px;}
.ws6d{word-spacing:1.800000px;}
.ws3a{word-spacing:1.841400px;}
.ws27{word-spacing:1.860000px;}
.ws15{word-spacing:1.920000px;}
.ws34{word-spacing:1.980000px;}
.ws89{word-spacing:2.040000px;}
.ws81{word-spacing:2.100000px;}
.ws4e{word-spacing:2.160000px;}
.ws33{word-spacing:2.220000px;}
.wsbe{word-spacing:2.280000px;}
.ws3b{word-spacing:2.343600px;}
.ws45{word-spacing:2.400000px;}
.wsb7{word-spacing:2.460000px;}
.ws95{word-spacing:2.520000px;}
.ws64{word-spacing:2.580000px;}
.ws1d{word-spacing:2.640000px;}
.ws1b{word-spacing:2.700000px;}
.ws43{word-spacing:2.760000px;}
.ws63{word-spacing:2.820000px;}
.ws48{word-spacing:2.880000px;}
.ws97{word-spacing:3.000000px;}
.ws6a{word-spacing:3.060000px;}
.ws2a{word-spacing:3.180000px;}
.ws96{word-spacing:3.240000px;}
.ws1a{word-spacing:3.360000px;}
.ws6b{word-spacing:3.420000px;}
.ws1c{word-spacing:3.540000px;}
.wsaa{word-spacing:3.600000px;}
.wsbf{word-spacing:3.660000px;}
.ws84{word-spacing:3.720000px;}
.ws57{word-spacing:3.794400px;}
.ws9d{word-spacing:3.900000px;}
.ws2e{word-spacing:3.960000px;}
.ws55{word-spacing:4.073400px;}
.wsa8{word-spacing:4.140000px;}
.ws19{word-spacing:4.260000px;}
.ws78{word-spacing:4.464000px;}
.ws98{word-spacing:4.687200px;}
.wsbc{word-spacing:4.740000px;}
.ws1e{word-spacing:4.920000px;}
.wsb0{word-spacing:4.980000px;}
.ws76{word-spacing:5.022000px;}
.ws50{word-spacing:5.040000px;}
.ws62{word-spacing:5.340000px;}
.ws4a{word-spacing:5.460000px;}
.ws67{word-spacing:5.700000px;}
.ws9f{word-spacing:6.060000px;}
.ws37{word-spacing:6.120000px;}
.ws36{word-spacing:7.320000px;}
.ws38{word-spacing:7.920000px;}
.wsa1{word-spacing:257.940000px;}
.ws42{word-spacing:414.882000px;}
.wsc5{word-spacing:416.016000px;}
.wscc{word-spacing:416.340000px;}
.ws9b{word-spacing:419.148000px;}
.ws7f{word-spacing:419.634000px;}
.wsb5{word-spacing:421.740000px;}
.wsa0{word-spacing:479.400000px;}
.wsb2{word-spacing:523.627200px;}
.ws24{word-spacing:830.034000px;}
.ws91{word-spacing:830.466000px;}
.wscb{word-spacing:830.520000px;}
.ws61{word-spacing:830.574000px;}
.wsa7{word-spacing:830.790000px;}
.wsbb{word-spacing:832.950000px;}
._24{margin-left:-833.390700px;}
._16{margin-left:-831.645300px;}
._9{margin-left:-830.034000px;}
._1e{margin-left:-479.640000px;}
._21{margin-left:-366.000000px;}
._1f{margin-left:-257.700000px;}
._a{margin-left:-11.760000px;}
._1d{margin-left:-9.420000px;}
._25{margin-left:-7.261200px;}
._3{margin-left:-6.037200px;}
._d{margin-left:-4.838040px;}
._7{margin-left:-3.691500px;}
._2{margin-left:-2.683800px;}
._1{margin-left:-1.058400px;}
._0{width:1.090800px;}
._4{width:2.154300px;}
._5{width:3.341700px;}
._6{width:4.380000px;}
._12{width:5.460000px;}
._b{width:6.696000px;}
._17{width:8.280000px;}
._1b{width:11.280000px;}
._11{width:20.378400px;}
._f{width:23.340000px;}
._10{width:29.400000px;}
._1c{width:31.079400px;}
._1a{width:34.260600px;}
._e{width:36.000000px;}
._15{width:46.815600px;}
._14{width:49.549800px;}
._c{width:50.553600px;}
._13{width:51.781800px;}
._19{width:53.344800px;}
._18{width:55.576200px;}
._8{width:59.426400px;}
._22{width:190.200000px;}
._20{width:192.000000px;}
._23{width:544.329000px;}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:22.200000px;}
.fs5{font-size:34.980000px;}
.fs6{font-size:41.400000px;}
.fs4{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:55.800000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:79.612200px;}
.y24{bottom:90.567000px;}
.y71{bottom:90.567150px;}
.y5d{bottom:90.571500px;}
.y68{bottom:90.575700px;}
.y79{bottom:90.575850px;}
.y4d{bottom:90.584400px;}
.y9b{bottom:91.318050px;}
.y112{bottom:94.255050px;}
.ye4{bottom:94.293300px;}
.y172{bottom:94.637550px;}
.y142{bottom:94.675800px;}
.y80{bottom:104.773200px;}
.y5c{bottom:107.967150px;}
.yb5{bottom:107.967300px;}
.y23{bottom:107.971350px;}
.y78{bottom:107.971500px;}
.y4c{bottom:107.980050px;}
.y9a{bottom:109.768050px;}
.y111{bottom:111.505800px;}
.ye3{bottom:111.544050px;}
.y171{bottom:111.888300px;}
.y141{bottom:111.926550px;}
.y7f{bottom:123.223200px;}
.y22{bottom:125.367000px;}
.y5b{bottom:125.367150px;}
.y4b{bottom:125.375700px;}
.y70{bottom:128.218050px;}
.y110{bottom:128.756550px;}
.ye2{bottom:128.794800px;}
.y170{bottom:129.139050px;}
.y140{bottom:129.177300px;}
.y7e{bottom:141.673200px;}
.y67{bottom:142.767150px;}
.y4a{bottom:142.771350px;}
.y77{bottom:142.771650px;}
.y5a{bottom:142.780200px;}
.y10f{bottom:146.007300px;}
.ye1{bottom:146.045550px;}
.y16f{bottom:146.389800px;}
.y13f{bottom:146.428050px;}
.y6f{bottom:146.668050px;}
.y49{bottom:160.167000px;}
.y66{bottom:160.167300px;}
.y59{bottom:160.175850px;}
.y10e{bottom:163.258050px;}
.ye0{bottom:163.296300px;}
.y16e{bottom:163.640550px;}
.y13e{bottom:163.678800px;}
.y6e{bottom:165.118050px;}
.y21{bottom:165.118200px;}
.yb4{bottom:176.744250px;}
.y48{bottom:177.567000px;}
.y65{bottom:177.567300px;}
.y58{bottom:177.571500px;}
.y76{bottom:177.571800px;}
.y10d{bottom:180.508800px;}
.ydf{bottom:180.547050px;}
.y16d{bottom:180.891300px;}
.y13d{bottom:180.929550px;}
.y6d{bottom:183.568050px;}
.y20{bottom:183.568200px;}
.y7d{bottom:186.073200px;}
.y57{bottom:194.967150px;}
.y75{bottom:194.967450px;}
.y64{bottom:194.971650px;}
.y47{bottom:194.976000px;}
.y10c{bottom:197.759550px;}
.yde{bottom:197.797800px;}
.y16c{bottom:198.142050px;}
.y13c{bottom:198.180300px;}
.y6c{bottom:202.018050px;}
.y1f{bottom:202.018200px;}
.yb3{bottom:202.150650px;}
.y56{bottom:212.367300px;}
.y46{bottom:212.371650px;}
.y74{bottom:212.371950px;}
.y10b{bottom:215.010300px;}
.ydd{bottom:215.048550px;}
.y16b{bottom:215.392800px;}
.y13b{bottom:215.431050px;}
.y7c{bottom:215.473200px;}
.y6b{bottom:220.468050px;}
.y1e{bottom:220.468200px;}
.yb1{bottom:221.122650px;}
.y45{bottom:229.767300px;}
.y63{bottom:229.767450px;}
.y73{bottom:229.767600px;}
.y55{bottom:229.776150px;}
.y10a{bottom:232.261050px;}
.ydc{bottom:232.299300px;}
.y16a{bottom:232.643550px;}
.y13a{bottom:232.681800px;}
.y7b{bottom:233.923200px;}
.y99{bottom:238.918050px;}
.y1d{bottom:238.918200px;}
.yb2{bottom:240.094650px;}
.y44{bottom:247.167300px;}
.y62{bottom:247.167450px;}
.y54{bottom:247.171800px;}
.y109{bottom:249.511800px;}
.ydb{bottom:249.550050px;}
.y169{bottom:249.894300px;}
.y139{bottom:249.932550px;}
.y6a{bottom:257.368050px;}
.y1c{bottom:257.368200px;}
.yb0{bottom:259.052700px;}
.y43{bottom:264.567300px;}
.y53{bottom:264.567450px;}
.y61{bottom:264.572100px;}
.y108{bottom:266.762550px;}
.yda{bottom:266.800800px;}
.y168{bottom:267.145050px;}
.y138{bottom:267.183300px;}
.y72{bottom:275.818050px;}
.y1b{bottom:275.818200px;}
.yae{bottom:278.024700px;}
.y52{bottom:281.967450px;}
.y60{bottom:281.967750px;}
.y107{bottom:284.013300px;}
.yd9{bottom:284.051550px;}
.y167{bottom:284.395800px;}
.y137{bottom:284.434050px;}
.yaa{bottom:286.283100px;}
.y69{bottom:294.268050px;}
.y1a{bottom:294.268200px;}
.yaf{bottom:296.996700px;}
.y51{bottom:299.367450px;}
.y5f{bottom:299.367600px;}
.y106{bottom:301.264050px;}
.yd8{bottom:301.302300px;}
.y166{bottom:301.646550px;}
.y136{bottom:301.684800px;}
.y42{bottom:312.718050px;}
.y19{bottom:312.718200px;}
.yad{bottom:315.954750px;}
.y105{bottom:318.514800px;}
.yd7{bottom:318.553050px;}
.y165{bottom:318.897300px;}
.y135{bottom:318.935550px;}
.y41{bottom:331.168050px;}
.y18{bottom:331.168200px;}
.yab{bottom:334.926750px;}
.y104{bottom:335.765550px;}
.yd6{bottom:335.803800px;}
.y164{bottom:336.148050px;}
.y134{bottom:336.186300px;}
.y40{bottom:349.618050px;}
.y17{bottom:349.618200px;}
.y103{bottom:353.016300px;}
.yd5{bottom:353.054550px;}
.y163{bottom:353.398800px;}
.y133{bottom:353.437050px;}
.yac{bottom:353.898750px;}
.y16{bottom:368.068050px;}
.y102{bottom:370.267050px;}
.yd4{bottom:370.305300px;}
.y162{bottom:370.649550px;}
.y132{bottom:370.687800px;}
.ya9{bottom:372.870750px;}
.y98{bottom:376.609050px;}
.y3f{bottom:386.518050px;}
.y101{bottom:387.517800px;}
.yd3{bottom:387.556050px;}
.y161{bottom:387.900300px;}
.y131{bottom:387.938550px;}
.y97{bottom:394.012800px;}
.y100{bottom:404.768550px;}
.yd2{bottom:404.806800px;}
.y15{bottom:404.968050px;}
.y160{bottom:405.151050px;}
.y130{bottom:405.189300px;}
.y96{bottom:419.419050px;}
.yff{bottom:422.019300px;}
.yd1{bottom:422.057550px;}
.y15f{bottom:422.401800px;}
.y12f{bottom:422.440050px;}
.y3e{bottom:423.418050px;}
.y95{bottom:438.391050px;}
.yfe{bottom:439.270050px;}
.yd0{bottom:439.308300px;}
.y15e{bottom:439.652550px;}
.y12e{bottom:439.690800px;}
.y3d{bottom:441.868050px;}
.yfd{bottom:456.520800px;}
.ycf{bottom:456.559050px;}
.y15d{bottom:456.903300px;}
.y12d{bottom:456.941550px;}
.y94{bottom:457.363050px;}
.y3c{bottom:460.318050px;}
.y14{bottom:462.256050px;}
.y90{bottom:466.829550px;}
.yfc{bottom:473.771550px;}
.yce{bottom:473.809800px;}
.y15c{bottom:474.154050px;}
.y12c{bottom:474.192300px;}
.y93{bottom:476.335050px;}
.y3b{bottom:478.768050px;}
.y13{bottom:479.506800px;}
.yfb{bottom:491.022300px;}
.ycd{bottom:491.060550px;}
.y15b{bottom:491.404800px;}
.y12b{bottom:491.443050px;}
.y92{bottom:495.307050px;}
.y3a{bottom:497.218050px;}
.yfa{bottom:508.273050px;}
.ycc{bottom:508.311300px;}
.y15a{bottom:508.655550px;}
.y12a{bottom:508.693800px;}
.y12{bottom:514.008300px;}
.y91{bottom:514.245600px;}
.y39{bottom:515.668050px;}
.yf9{bottom:525.523800px;}
.ycb{bottom:525.562050px;}
.y159{bottom:525.906300px;}
.y129{bottom:525.944550px;}
.y11{bottom:531.259050px;}
.y8f{bottom:533.217600px;}
.y38{bottom:534.118050px;}
.yf8{bottom:542.774550px;}
.yca{bottom:542.812800px;}
.y158{bottom:543.157050px;}
.y128{bottom:543.195300px;}
.y8e{bottom:552.189600px;}
.y37{bottom:552.568050px;}
.yf7{bottom:560.025300px;}
.yc9{bottom:560.063550px;}
.y157{bottom:560.407800px;}
.y127{bottom:560.446050px;}
.y10{bottom:565.760550px;}
.y36{bottom:571.018050px;}
.y8d{bottom:571.161600px;}
.yf6{bottom:577.276050px;}
.yc8{bottom:577.314300px;}
.y156{bottom:577.658550px;}
.y126{bottom:577.696800px;}
.y89{bottom:580.628250px;}
.y81{bottom:580.656000px;}
.yf{bottom:583.011300px;}
.y35{bottom:589.468050px;}
.y50{bottom:589.468200px;}
.y8c{bottom:590.133600px;}
.yf5{bottom:594.526800px;}
.yc7{bottom:594.565050px;}
.y155{bottom:594.909300px;}
.y125{bottom:594.947550px;}
.ya8{bottom:601.094250px;}
.y34{bottom:607.918050px;}
.y8b{bottom:609.105600px;}
.yf4{bottom:611.777550px;}
.yc6{bottom:611.815800px;}
.y154{bottom:612.160050px;}
.y124{bottom:612.198300px;}
.ye{bottom:617.512800px;}
.y5e{bottom:626.368050px;}
.ya7{bottom:626.500650px;}
.y8a{bottom:628.044300px;}
.yf3{bottom:629.028300px;}
.yc5{bottom:629.066550px;}
.y153{bottom:629.410800px;}
.y123{bottom:629.449050px;}
.yd{bottom:634.763550px;}
.y33{bottom:644.818050px;}
.ya5{bottom:645.472650px;}
.yf2{bottom:646.279050px;}
.yc4{bottom:646.317300px;}
.y152{bottom:646.661550px;}
.y122{bottom:646.699800px;}
.y88{bottom:647.016300px;}
.yc{bottom:652.014300px;}
.y4f{bottom:663.268050px;}
.yf1{bottom:663.529800px;}
.yc3{bottom:663.568050px;}
.y151{bottom:663.912300px;}
.y121{bottom:663.950550px;}
.ya6{bottom:664.444650px;}
.y87{bottom:665.988300px;}
.yb{bottom:669.265050px;}
.yf0{bottom:680.780550px;}
.yc2{bottom:680.818800px;}
.y150{bottom:681.163050px;}
.y120{bottom:681.201300px;}
.y4e{bottom:681.718050px;}
.ya4{bottom:683.402700px;}
.y86{bottom:684.960300px;}
.ya{bottom:686.515800px;}
.y82{bottom:694.460100px;}
.yef{bottom:698.031300px;}
.yc1{bottom:698.069550px;}
.y14f{bottom:698.413800px;}
.y11f{bottom:698.452050px;}
.y32{bottom:700.168050px;}
.ya2{bottom:702.374700px;}
.y9{bottom:703.766550px;}
.y85{bottom:703.932300px;}
.y9e{bottom:710.633100px;}
.yee{bottom:715.282050px;}
.yc0{bottom:715.320300px;}
.y14e{bottom:715.664550px;}
.y11e{bottom:715.702800px;}
.y31{bottom:718.618050px;}
.y8{bottom:721.017300px;}
.ya3{bottom:721.346700px;}
.y84{bottom:722.904300px;}
.yed{bottom:732.532800px;}
.ybf{bottom:732.571050px;}
.y14d{bottom:732.915300px;}
.y11d{bottom:732.953550px;}
.y30{bottom:737.068050px;}
.y7{bottom:738.268050px;}
.ya1{bottom:740.304750px;}
.y83{bottom:741.876150px;}
.yec{bottom:749.783550px;}
.ybe{bottom:749.821800px;}
.y14c{bottom:750.166050px;}
.y11c{bottom:750.204300px;}
.y2f{bottom:755.518050px;}
.y9f{bottom:759.276750px;}
.yeb{bottom:767.034300px;}
.ybd{bottom:767.072550px;}
.y14b{bottom:767.416800px;}
.y11b{bottom:767.455050px;}
.y2e{bottom:773.968050px;}
.y6{bottom:773.968200px;}
.ya0{bottom:778.248750px;}
.yea{bottom:784.285050px;}
.ybc{bottom:784.323300px;}
.y14a{bottom:784.667550px;}
.y11a{bottom:784.705800px;}
.y2d{bottom:792.418050px;}
.y9d{bottom:797.220750px;}
.ye9{bottom:801.535800px;}
.ybb{bottom:801.574050px;}
.y149{bottom:801.918300px;}
.y119{bottom:801.956550px;}
.y5{bottom:806.603550px;}
.y2c{bottom:810.868050px;}
.ye8{bottom:818.786550px;}
.yba{bottom:818.824800px;}
.y148{bottom:819.169050px;}
.y118{bottom:819.207300px;}
.y4{bottom:828.203550px;}
.y2b{bottom:829.318050px;}
.ye7{bottom:836.037300px;}
.yb9{bottom:836.075550px;}
.y147{bottom:836.419800px;}
.y117{bottom:836.458050px;}
.y2a{bottom:847.768050px;}
.y9c{bottom:847.768200px;}
.ye6{bottom:853.288050px;}
.yb8{bottom:853.326300px;}
.y146{bottom:853.670550px;}
.y116{bottom:853.708800px;}
.y26{bottom:857.391000px;}
.y25{bottom:864.889050px;}
.y29{bottom:866.218050px;}
.ye5{bottom:870.538800px;}
.yb7{bottom:870.577050px;}
.y3{bottom:870.815700px;}
.y145{bottom:870.921300px;}
.y115{bottom:870.959550px;}
.y28{bottom:884.668050px;}
.y144{bottom:888.172050px;}
.y114{bottom:888.210300px;}
.y2{bottom:896.303700px;}
.y27{bottom:903.118050px;}
.yb6{bottom:905.078550px;}
.y143{bottom:905.422800px;}
.y113{bottom:905.461050px;}
.y1{bottom:955.942350px;}
.hb{height:15.295800px;}
.h14{height:45.543000px;}
.h12{height:45.696000px;}
.h7{height:45.900000px;}
.hf{height:46.308000px;}
.h15{height:46.614000px;}
.h6{height:48.195000px;}
.h11{height:49.829400px;}
.ha{height:49.996800px;}
.h10{height:50.108400px;}
.h13{height:50.666400px;}
.h2{height:50.868000px;}
.hd{height:53.880000px;}
.h5{height:54.000000px;}
.h9{height:54.000600px;}
.he{height:54.840000px;}
.hc{height:56.520000px;}
.h8{height:56.700000px;}
.h4{height:67.824000px;}
.h3{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x8{left:25.310100px;}
.x7{left:28.379250px;}
.x5{left:72.283500px;}
.x1{left:80.787450px;}
.x13{left:85.039350px;}
.x6{left:93.537450px;}
.x2{left:102.053400px;}
.xc{left:115.381950px;}
.x9{left:123.308550px;}
.xa{left:131.807250px;}
.xb{left:140.312250px;}
.xd{left:257.958000px;}
.xf{left:266.475900px;}
.x14{left:353.452350px;}
.x12{left:361.924950px;}
.x15{left:366.202350px;}
.x11{left:374.674950px;}
.xe{left:439.377750px;}
.x10{left:447.895650px;}
.x4{left:650.349450px;}
.x3{left:653.418600px;}
@media print{
.v2{vertical-align:-17.760533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760533pt;}
.ls62{letter-spacing:-4.624000pt;}
.ls67{letter-spacing:-3.762667pt;}
.ls3e{letter-spacing:-3.620800pt;}
.ls68{letter-spacing:-2.493333pt;}
.ls65{letter-spacing:-2.266667pt;}
.ls69{letter-spacing:-1.360000pt;}
.lse{letter-spacing:-1.269333pt;}
.ls5a{letter-spacing:-1.200000pt;}
.ls66{letter-spacing:-0.906667pt;}
.ls43{letter-spacing:-0.800000pt;}
.ls5f{letter-spacing:-0.693333pt;}
.ls63{letter-spacing:-0.589333pt;}
.ls3b{letter-spacing:-0.586667pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls54{letter-spacing:-0.453333pt;}
.ls22{letter-spacing:-0.426667pt;}
.ls5c{letter-spacing:-0.368000pt;}
.ls51{letter-spacing:-0.362667pt;}
.ls42{letter-spacing:-0.288000pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls23{letter-spacing:-0.213333pt;}
.ls64{letter-spacing:-0.181333pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.148800pt;}
.ls3c{letter-spacing:-0.124373pt;}
.ls34{letter-spacing:-0.106667pt;}
.ls5b{letter-spacing:-0.093280pt;}
.ls21{letter-spacing:-0.053333pt;}
.ls4d{letter-spacing:-0.048000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.019733pt;}
.ls2c{letter-spacing:0.024800pt;}
.ls19{letter-spacing:0.026667pt;}
.ls0{letter-spacing:0.045333pt;}
.ls2e{letter-spacing:0.049600pt;}
.ls6{letter-spacing:0.053333pt;}
.ls1d{letter-spacing:0.099200pt;}
.ls5{letter-spacing:0.106667pt;}
.ls31{letter-spacing:0.124000pt;}
.ls7{letter-spacing:0.133333pt;}
.ls29{letter-spacing:0.138667pt;}
.ls55{letter-spacing:0.145600pt;}
.ls1f{letter-spacing:0.148800pt;}
.ls17{letter-spacing:0.151733pt;}
.ls3d{letter-spacing:0.155467pt;}
.ls15{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.181333pt;}
.ls26{letter-spacing:0.182187pt;}
.ls25{letter-spacing:0.182720pt;}
.ls16{letter-spacing:0.186667pt;}
.ls57{letter-spacing:0.197333pt;}
.ls2d{letter-spacing:0.198400pt;}
.ls4{letter-spacing:0.213333pt;}
.ls2a{letter-spacing:0.224000pt;}
.ls5e{letter-spacing:0.240000pt;}
.ls1e{letter-spacing:0.248000pt;}
.ls45{letter-spacing:0.248747pt;}
.ls8{letter-spacing:0.266667pt;}
.ls24{letter-spacing:0.320000pt;}
.ls4a{letter-spacing:0.334933pt;}
.ls35{letter-spacing:0.341120pt;}
.ls36{letter-spacing:0.373333pt;}
.ls30{letter-spacing:0.396800pt;}
.ls47{letter-spacing:0.421333pt;}
.ls40{letter-spacing:0.426667pt;}
.ls2f{letter-spacing:0.446400pt;}
.ls48{letter-spacing:0.474667pt;}
.ls52{letter-spacing:0.480000pt;}
.ls39{letter-spacing:0.496000pt;}
.ls56{letter-spacing:0.506667pt;}
.ls28{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.544000pt;}
.ls38{letter-spacing:0.545600pt;}
.ls2b{letter-spacing:0.560000pt;}
.ls27{letter-spacing:0.586667pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.651200pt;}
.ls4f{letter-spacing:0.693333pt;}
.ls46{letter-spacing:0.746667pt;}
.ls18{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:0.808533pt;}
.lsd{letter-spacing:0.861333pt;}
.ls44{letter-spacing:0.906667pt;}
.lsa{letter-spacing:0.960000pt;}
.ls50{letter-spacing:1.042667pt;}
.lsf{letter-spacing:1.066667pt;}
.ls6a{letter-spacing:1.200000pt;}
.ls60{letter-spacing:1.344000pt;}
.lsc{letter-spacing:1.360000pt;}
.ls1b{letter-spacing:1.386667pt;}
.ls53{letter-spacing:1.392000pt;}
.ls32{letter-spacing:1.488000pt;}
.ls3a{letter-spacing:1.632000pt;}
.ls49{letter-spacing:1.653333pt;}
.ls4e{letter-spacing:1.706667pt;}
.ls4c{letter-spacing:1.728000pt;}
.ls37{letter-spacing:1.813333pt;}
.ls33{letter-spacing:1.824000pt;}
.ls3{letter-spacing:2.040000pt;}
.ls20{letter-spacing:2.112000pt;}
.ls4b{letter-spacing:2.133333pt;}
.ls3f{letter-spacing:2.506667pt;}
.ls61{letter-spacing:2.946667pt;}
.ls41{letter-spacing:3.370667pt;}
.ls5d{letter-spacing:3.840000pt;}
.ls59{letter-spacing:30.950400pt;}
.ls58{letter-spacing:35.216000pt;}
.ws22{word-spacing:-13.488000pt;}
.ws8b{word-spacing:-13.104000pt;}
.ws59{word-spacing:-13.008000pt;}
.wsc0{word-spacing:-12.965333pt;}
.wsa2{word-spacing:-12.768000pt;}
.ws5b{word-spacing:-12.746667pt;}
.ws2{word-spacing:-12.058667pt;}
.ws3f{word-spacing:-11.733333pt;}
.ws40{word-spacing:-11.626667pt;}
.ws8f{word-spacing:-11.573333pt;}
.ws3e{word-spacing:-11.520000pt;}
.ws5a{word-spacing:-11.253333pt;}
.ws8c{word-spacing:-11.200000pt;}
.wsb9{word-spacing:-10.933333pt;}
.wsb8{word-spacing:-10.896000pt;}
.ws1{word-spacing:-10.880000pt;}
.wsb3{word-spacing:-10.664000pt;}
.ws5c{word-spacing:-10.613333pt;}
.wsa3{word-spacing:-10.453333pt;}
.ws90{word-spacing:-10.416000pt;}
.ws7e{word-spacing:-10.400000pt;}
.ws8d{word-spacing:-10.293333pt;}
.ws8e{word-spacing:-10.240000pt;}
.ws4d{word-spacing:-10.080000pt;}
.ws23{word-spacing:-10.026667pt;}
.ws7a{word-spacing:-9.973333pt;}
.ws7c{word-spacing:-9.920000pt;}
.ws5e{word-spacing:-9.866667pt;}
.wsa4{word-spacing:-9.813333pt;}
.wsc1{word-spacing:-9.746667pt;}
.ws5d{word-spacing:-9.600000pt;}
.ws0{word-spacing:-9.520000pt;}
.wsa6{word-spacing:-9.384000pt;}
.wsba{word-spacing:-9.333333pt;}
.wsa5{word-spacing:-9.324800pt;}
.ws7b{word-spacing:-9.226667pt;}
.wsc3{word-spacing:-9.157333pt;}
.wsca{word-spacing:-8.386667pt;}
.ws4{word-spacing:-7.912000pt;}
.wsb4{word-spacing:-7.544000pt;}
.wsc4{word-spacing:-7.480000pt;}
.wsc9{word-spacing:-7.253333pt;}
.ws7d{word-spacing:-6.778347pt;}
.ws60{word-spacing:-6.685067pt;}
.ws3{word-spacing:-6.529600pt;}
.wsb1{word-spacing:-6.436320pt;}
.ws5f{word-spacing:-6.405227pt;}
.wsc8{word-spacing:-5.984000pt;}
.wsc2{word-spacing:-5.122667pt;}
.ws6e{word-spacing:-2.346667pt;}
.ws87{word-spacing:-2.293333pt;}
.ws30{word-spacing:-1.813333pt;}
.ws17{word-spacing:-1.760000pt;}
.ws18{word-spacing:-1.706667pt;}
.ws2d{word-spacing:-1.653333pt;}
.ws1f{word-spacing:-1.636800pt;}
.wsa9{word-spacing:-1.600000pt;}
.ws74{word-spacing:-1.587200pt;}
.ws2b{word-spacing:-1.546667pt;}
.ws83{word-spacing:-1.493333pt;}
.ws41{word-spacing:-1.488000pt;}
.wsa{word-spacing:-1.360000pt;}
.wsbd{word-spacing:-1.333333pt;}
.ws54{word-spacing:-1.289600pt;}
.ws44{word-spacing:-1.280000pt;}
.wsb6{word-spacing:-1.226667pt;}
.wsad{word-spacing:-1.178667pt;}
.ws66{word-spacing:-1.173333pt;}
.wsac{word-spacing:-1.133333pt;}
.ws25{word-spacing:-1.120000pt;}
.ws20{word-spacing:-1.091200pt;}
.ws13{word-spacing:-1.066667pt;}
.ws26{word-spacing:-1.013333pt;}
.ws7{word-spacing:-0.960000pt;}
.ws80{word-spacing:-0.906667pt;}
.ws47{word-spacing:-0.853333pt;}
.ws85{word-spacing:-0.800000pt;}
.ws8a{word-spacing:-0.746667pt;}
.ws86{word-spacing:-0.693333pt;}
.ws5{word-spacing:-0.670933pt;}
.ws72{word-spacing:-0.644800pt;}
.ws9c{word-spacing:-0.640000pt;}
.wsc7{word-spacing:-0.634667pt;}
.ws68{word-spacing:-0.586667pt;}
.ws3d{word-spacing:-0.545600pt;}
.ws69{word-spacing:-0.533333pt;}
.ws77{word-spacing:-0.496000pt;}
.ws14{word-spacing:-0.480000pt;}
.ws93{word-spacing:-0.426667pt;}
.ws56{word-spacing:-0.396800pt;}
.ws71{word-spacing:-0.373333pt;}
.ws35{word-spacing:-0.320000pt;}
.ws75{word-spacing:-0.297600pt;}
.ws70{word-spacing:-0.266667pt;}
.ws9{word-spacing:-0.213333pt;}
.ws21{word-spacing:-0.198400pt;}
.ws10{word-spacing:-0.181333pt;}
.ws82{word-spacing:-0.160000pt;}
.ws28{word-spacing:-0.106667pt;}
.ws99{word-spacing:-0.099200pt;}
.ws29{word-spacing:-0.053333pt;}
.ws53{word-spacing:-0.049600pt;}
.wsc{word-spacing:-0.045333pt;}
.ws6{word-spacing:-0.039467pt;}
.ws8{word-spacing:0.000000pt;}
.ws92{word-spacing:0.053333pt;}
.ws49{word-spacing:0.106667pt;}
.ws3c{word-spacing:0.148800pt;}
.ws4c{word-spacing:0.160000pt;}
.wsc6{word-spacing:0.181333pt;}
.ws31{word-spacing:0.213333pt;}
.ws2c{word-spacing:0.266667pt;}
.ws6c{word-spacing:0.320000pt;}
.wsae{word-spacing:0.453333pt;}
.ws52{word-spacing:0.496000pt;}
.ws6f{word-spacing:0.533333pt;}
.ws65{word-spacing:0.586667pt;}
.ws88{word-spacing:0.640000pt;}
.ws73{word-spacing:0.644800pt;}
.ws94{word-spacing:0.693333pt;}
.ws79{word-spacing:0.694400pt;}
.ws46{word-spacing:0.746667pt;}
.ws32{word-spacing:0.800000pt;}
.ws9a{word-spacing:0.843200pt;}
.ws4b{word-spacing:0.906667pt;}
.ws39{word-spacing:1.091200pt;}
.ws4f{word-spacing:1.120000pt;}
.wse{word-spacing:1.133333pt;}
.wsab{word-spacing:1.226667pt;}
.wsd{word-spacing:1.269333pt;}
.ws11{word-spacing:1.360000pt;}
.wsaf{word-spacing:1.386667pt;}
.ws9e{word-spacing:1.440000pt;}
.wsb{word-spacing:1.450667pt;}
.ws58{word-spacing:1.488000pt;}
.ws2f{word-spacing:1.493333pt;}
.ws12{word-spacing:1.496000pt;}
.wsf{word-spacing:1.541333pt;}
.ws16{word-spacing:1.546667pt;}
.ws51{word-spacing:1.587200pt;}
.ws6d{word-spacing:1.600000pt;}
.ws3a{word-spacing:1.636800pt;}
.ws27{word-spacing:1.653333pt;}
.ws15{word-spacing:1.706667pt;}
.ws34{word-spacing:1.760000pt;}
.ws89{word-spacing:1.813333pt;}
.ws81{word-spacing:1.866667pt;}
.ws4e{word-spacing:1.920000pt;}
.ws33{word-spacing:1.973333pt;}
.wsbe{word-spacing:2.026667pt;}
.ws3b{word-spacing:2.083200pt;}
.ws45{word-spacing:2.133333pt;}
.wsb7{word-spacing:2.186667pt;}
.ws95{word-spacing:2.240000pt;}
.ws64{word-spacing:2.293333pt;}
.ws1d{word-spacing:2.346667pt;}
.ws1b{word-spacing:2.400000pt;}
.ws43{word-spacing:2.453333pt;}
.ws63{word-spacing:2.506667pt;}
.ws48{word-spacing:2.560000pt;}
.ws97{word-spacing:2.666667pt;}
.ws6a{word-spacing:2.720000pt;}
.ws2a{word-spacing:2.826667pt;}
.ws96{word-spacing:2.880000pt;}
.ws1a{word-spacing:2.986667pt;}
.ws6b{word-spacing:3.040000pt;}
.ws1c{word-spacing:3.146667pt;}
.wsaa{word-spacing:3.200000pt;}
.wsbf{word-spacing:3.253333pt;}
.ws84{word-spacing:3.306667pt;}
.ws57{word-spacing:3.372800pt;}
.ws9d{word-spacing:3.466667pt;}
.ws2e{word-spacing:3.520000pt;}
.ws55{word-spacing:3.620800pt;}
.wsa8{word-spacing:3.680000pt;}
.ws19{word-spacing:3.786667pt;}
.ws78{word-spacing:3.968000pt;}
.ws98{word-spacing:4.166400pt;}
.wsbc{word-spacing:4.213333pt;}
.ws1e{word-spacing:4.373333pt;}
.wsb0{word-spacing:4.426667pt;}
.ws76{word-spacing:4.464000pt;}
.ws50{word-spacing:4.480000pt;}
.ws62{word-spacing:4.746667pt;}
.ws4a{word-spacing:4.853333pt;}
.ws67{word-spacing:5.066667pt;}
.ws9f{word-spacing:5.386667pt;}
.ws37{word-spacing:5.440000pt;}
.ws36{word-spacing:6.506667pt;}
.ws38{word-spacing:7.040000pt;}
.wsa1{word-spacing:229.280000pt;}
.ws42{word-spacing:368.784000pt;}
.wsc5{word-spacing:369.792000pt;}
.wscc{word-spacing:370.080000pt;}
.ws9b{word-spacing:372.576000pt;}
.ws7f{word-spacing:373.008000pt;}
.wsb5{word-spacing:374.880000pt;}
.wsa0{word-spacing:426.133333pt;}
.wsb2{word-spacing:465.446400pt;}
.ws24{word-spacing:737.808000pt;}
.ws91{word-spacing:738.192000pt;}
.wscb{word-spacing:738.240000pt;}
.ws61{word-spacing:738.288000pt;}
.wsa7{word-spacing:738.480000pt;}
.wsbb{word-spacing:740.400000pt;}
._24{margin-left:-740.791733pt;}
._16{margin-left:-739.240267pt;}
._9{margin-left:-737.808000pt;}
._1e{margin-left:-426.346667pt;}
._21{margin-left:-325.333333pt;}
._1f{margin-left:-229.066667pt;}
._a{margin-left:-10.453333pt;}
._1d{margin-left:-8.373333pt;}
._25{margin-left:-6.454400pt;}
._3{margin-left:-5.366400pt;}
._d{margin-left:-4.300480pt;}
._7{margin-left:-3.281333pt;}
._2{margin-left:-2.385600pt;}
._1{margin-left:-0.940800pt;}
._0{width:0.969600pt;}
._4{width:1.914933pt;}
._5{width:2.970400pt;}
._6{width:3.893333pt;}
._12{width:4.853333pt;}
._b{width:5.952000pt;}
._17{width:7.360000pt;}
._1b{width:10.026667pt;}
._11{width:18.114133pt;}
._f{width:20.746667pt;}
._10{width:26.133333pt;}
._1c{width:27.626133pt;}
._1a{width:30.453867pt;}
._e{width:32.000000pt;}
._15{width:41.613867pt;}
._14{width:44.044267pt;}
._c{width:44.936533pt;}
._13{width:46.028267pt;}
._19{width:47.417600pt;}
._18{width:49.401067pt;}
._8{width:52.823467pt;}
._22{width:169.066667pt;}
._20{width:170.666667pt;}
._23{width:483.848000pt;}
.fs8{font-size:19.733333pt;}
.fs5{font-size:31.093333pt;}
.fs6{font-size:36.800000pt;}
.fs4{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:49.600000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:70.766400pt;}
.y24{bottom:80.504000pt;}
.y71{bottom:80.504133pt;}
.y5d{bottom:80.508000pt;}
.y68{bottom:80.511733pt;}
.y79{bottom:80.511867pt;}
.y4d{bottom:80.519467pt;}
.y9b{bottom:81.171600pt;}
.y112{bottom:83.782267pt;}
.ye4{bottom:83.816267pt;}
.y172{bottom:84.122267pt;}
.y142{bottom:84.156267pt;}
.y80{bottom:93.131733pt;}
.y5c{bottom:95.970800pt;}
.yb5{bottom:95.970933pt;}
.y23{bottom:95.974533pt;}
.y78{bottom:95.974667pt;}
.y4c{bottom:95.982267pt;}
.y9a{bottom:97.571600pt;}
.y111{bottom:99.116267pt;}
.ye3{bottom:99.150267pt;}
.y171{bottom:99.456267pt;}
.y141{bottom:99.490267pt;}
.y7f{bottom:109.531733pt;}
.y22{bottom:111.437333pt;}
.y5b{bottom:111.437467pt;}
.y4b{bottom:111.445067pt;}
.y70{bottom:113.971600pt;}
.y110{bottom:114.450267pt;}
.ye2{bottom:114.484267pt;}
.y170{bottom:114.790267pt;}
.y140{bottom:114.824267pt;}
.y7e{bottom:125.931733pt;}
.y67{bottom:126.904133pt;}
.y4a{bottom:126.907867pt;}
.y77{bottom:126.908133pt;}
.y5a{bottom:126.915733pt;}
.y10f{bottom:129.784267pt;}
.ye1{bottom:129.818267pt;}
.y16f{bottom:130.124267pt;}
.y13f{bottom:130.158267pt;}
.y6f{bottom:130.371600pt;}
.y49{bottom:142.370667pt;}
.y66{bottom:142.370933pt;}
.y59{bottom:142.378533pt;}
.y10e{bottom:145.118267pt;}
.ye0{bottom:145.152267pt;}
.y16e{bottom:145.458267pt;}
.y13e{bottom:145.492267pt;}
.y6e{bottom:146.771600pt;}
.y21{bottom:146.771733pt;}
.yb4{bottom:157.106000pt;}
.y48{bottom:157.837333pt;}
.y65{bottom:157.837600pt;}
.y58{bottom:157.841333pt;}
.y76{bottom:157.841600pt;}
.y10d{bottom:160.452267pt;}
.ydf{bottom:160.486267pt;}
.y16d{bottom:160.792267pt;}
.y13d{bottom:160.826267pt;}
.y6d{bottom:163.171600pt;}
.y20{bottom:163.171733pt;}
.y7d{bottom:165.398400pt;}
.y57{bottom:173.304133pt;}
.y75{bottom:173.304400pt;}
.y64{bottom:173.308133pt;}
.y47{bottom:173.312000pt;}
.y10c{bottom:175.786267pt;}
.yde{bottom:175.820267pt;}
.y16c{bottom:176.126267pt;}
.y13c{bottom:176.160267pt;}
.y6c{bottom:179.571600pt;}
.y1f{bottom:179.571733pt;}
.yb3{bottom:179.689467pt;}
.y56{bottom:188.770933pt;}
.y46{bottom:188.774800pt;}
.y74{bottom:188.775067pt;}
.y10b{bottom:191.120267pt;}
.ydd{bottom:191.154267pt;}
.y16b{bottom:191.460267pt;}
.y13b{bottom:191.494267pt;}
.y7c{bottom:191.531733pt;}
.y6b{bottom:195.971600pt;}
.y1e{bottom:195.971733pt;}
.yb1{bottom:196.553467pt;}
.y45{bottom:204.237600pt;}
.y63{bottom:204.237733pt;}
.y73{bottom:204.237867pt;}
.y55{bottom:204.245467pt;}
.y10a{bottom:206.454267pt;}
.ydc{bottom:206.488267pt;}
.y16a{bottom:206.794267pt;}
.y13a{bottom:206.828267pt;}
.y7b{bottom:207.931733pt;}
.y99{bottom:212.371600pt;}
.y1d{bottom:212.371733pt;}
.yb2{bottom:213.417467pt;}
.y44{bottom:219.704267pt;}
.y62{bottom:219.704400pt;}
.y54{bottom:219.708267pt;}
.y109{bottom:221.788267pt;}
.ydb{bottom:221.822267pt;}
.y169{bottom:222.128267pt;}
.y139{bottom:222.162267pt;}
.y6a{bottom:228.771600pt;}
.y1c{bottom:228.771733pt;}
.yb0{bottom:230.269067pt;}
.y43{bottom:235.170933pt;}
.y53{bottom:235.171067pt;}
.y61{bottom:235.175200pt;}
.y108{bottom:237.122267pt;}
.yda{bottom:237.156267pt;}
.y168{bottom:237.462267pt;}
.y138{bottom:237.496267pt;}
.y72{bottom:245.171600pt;}
.y1b{bottom:245.171733pt;}
.yae{bottom:247.133067pt;}
.y52{bottom:250.637733pt;}
.y60{bottom:250.638000pt;}
.y107{bottom:252.456267pt;}
.yd9{bottom:252.490267pt;}
.y167{bottom:252.796267pt;}
.y137{bottom:252.830267pt;}
.yaa{bottom:254.473867pt;}
.y69{bottom:261.571600pt;}
.y1a{bottom:261.571733pt;}
.yaf{bottom:263.997067pt;}
.y51{bottom:266.104400pt;}
.y5f{bottom:266.104533pt;}
.y106{bottom:267.790267pt;}
.yd8{bottom:267.824267pt;}
.y166{bottom:268.130267pt;}
.y136{bottom:268.164267pt;}
.y42{bottom:277.971600pt;}
.y19{bottom:277.971733pt;}
.yad{bottom:280.848667pt;}
.y105{bottom:283.124267pt;}
.yd7{bottom:283.158267pt;}
.y165{bottom:283.464267pt;}
.y135{bottom:283.498267pt;}
.y41{bottom:294.371600pt;}
.y18{bottom:294.371733pt;}
.yab{bottom:297.712667pt;}
.y104{bottom:298.458267pt;}
.yd6{bottom:298.492267pt;}
.y164{bottom:298.798267pt;}
.y134{bottom:298.832267pt;}
.y40{bottom:310.771600pt;}
.y17{bottom:310.771733pt;}
.y103{bottom:313.792267pt;}
.yd5{bottom:313.826267pt;}
.y163{bottom:314.132267pt;}
.y133{bottom:314.166267pt;}
.yac{bottom:314.576667pt;}
.y16{bottom:327.171600pt;}
.y102{bottom:329.126267pt;}
.yd4{bottom:329.160267pt;}
.y162{bottom:329.466267pt;}
.y132{bottom:329.500267pt;}
.ya9{bottom:331.440667pt;}
.y98{bottom:334.763600pt;}
.y3f{bottom:343.571600pt;}
.y101{bottom:344.460267pt;}
.yd3{bottom:344.494267pt;}
.y161{bottom:344.800267pt;}
.y131{bottom:344.834267pt;}
.y97{bottom:350.233600pt;}
.y100{bottom:359.794267pt;}
.yd2{bottom:359.828267pt;}
.y15{bottom:359.971600pt;}
.y160{bottom:360.134267pt;}
.y130{bottom:360.168267pt;}
.y96{bottom:372.816933pt;}
.yff{bottom:375.128267pt;}
.yd1{bottom:375.162267pt;}
.y15f{bottom:375.468267pt;}
.y12f{bottom:375.502267pt;}
.y3e{bottom:376.371600pt;}
.y95{bottom:389.680933pt;}
.yfe{bottom:390.462267pt;}
.yd0{bottom:390.496267pt;}
.y15e{bottom:390.802267pt;}
.y12e{bottom:390.836267pt;}
.y3d{bottom:392.771600pt;}
.yfd{bottom:405.796267pt;}
.ycf{bottom:405.830267pt;}
.y15d{bottom:406.136267pt;}
.y12d{bottom:406.170267pt;}
.y94{bottom:406.544933pt;}
.y3c{bottom:409.171600pt;}
.y14{bottom:410.894267pt;}
.y90{bottom:414.959600pt;}
.yfc{bottom:421.130267pt;}
.yce{bottom:421.164267pt;}
.y15c{bottom:421.470267pt;}
.y12c{bottom:421.504267pt;}
.y93{bottom:423.408933pt;}
.y3b{bottom:425.571600pt;}
.y13{bottom:426.228267pt;}
.yfb{bottom:436.464267pt;}
.ycd{bottom:436.498267pt;}
.y15b{bottom:436.804267pt;}
.y12b{bottom:436.838267pt;}
.y92{bottom:440.272933pt;}
.y3a{bottom:441.971600pt;}
.yfa{bottom:451.798267pt;}
.ycc{bottom:451.832267pt;}
.y15a{bottom:452.138267pt;}
.y12a{bottom:452.172267pt;}
.y12{bottom:456.896267pt;}
.y91{bottom:457.107200pt;}
.y39{bottom:458.371600pt;}
.yf9{bottom:467.132267pt;}
.ycb{bottom:467.166267pt;}
.y159{bottom:467.472267pt;}
.y129{bottom:467.506267pt;}
.y11{bottom:472.230267pt;}
.y8f{bottom:473.971200pt;}
.y38{bottom:474.771600pt;}
.yf8{bottom:482.466267pt;}
.yca{bottom:482.500267pt;}
.y158{bottom:482.806267pt;}
.y128{bottom:482.840267pt;}
.y8e{bottom:490.835200pt;}
.y37{bottom:491.171600pt;}
.yf7{bottom:497.800267pt;}
.yc9{bottom:497.834267pt;}
.y157{bottom:498.140267pt;}
.y127{bottom:498.174267pt;}
.y10{bottom:502.898267pt;}
.y36{bottom:507.571600pt;}
.y8d{bottom:507.699200pt;}
.yf6{bottom:513.134267pt;}
.yc8{bottom:513.168267pt;}
.y156{bottom:513.474267pt;}
.y126{bottom:513.508267pt;}
.y89{bottom:516.114000pt;}
.y81{bottom:516.138667pt;}
.yf{bottom:518.232267pt;}
.y35{bottom:523.971600pt;}
.y50{bottom:523.971733pt;}
.y8c{bottom:524.563200pt;}
.yf5{bottom:528.468267pt;}
.yc7{bottom:528.502267pt;}
.y155{bottom:528.808267pt;}
.y125{bottom:528.842267pt;}
.ya8{bottom:534.306000pt;}
.y34{bottom:540.371600pt;}
.y8b{bottom:541.427200pt;}
.yf4{bottom:543.802267pt;}
.yc6{bottom:543.836267pt;}
.y154{bottom:544.142267pt;}
.y124{bottom:544.176267pt;}
.ye{bottom:548.900267pt;}
.y5e{bottom:556.771600pt;}
.ya7{bottom:556.889467pt;}
.y8a{bottom:558.261600pt;}
.yf3{bottom:559.136267pt;}
.yc5{bottom:559.170267pt;}
.y153{bottom:559.476267pt;}
.y123{bottom:559.510267pt;}
.yd{bottom:564.234267pt;}
.y33{bottom:573.171600pt;}
.ya5{bottom:573.753467pt;}
.yf2{bottom:574.470267pt;}
.yc4{bottom:574.504267pt;}
.y152{bottom:574.810267pt;}
.y122{bottom:574.844267pt;}
.y88{bottom:575.125600pt;}
.yc{bottom:579.568267pt;}
.y4f{bottom:589.571600pt;}
.yf1{bottom:589.804267pt;}
.yc3{bottom:589.838267pt;}
.y151{bottom:590.144267pt;}
.y121{bottom:590.178267pt;}
.ya6{bottom:590.617467pt;}
.y87{bottom:591.989600pt;}
.yb{bottom:594.902267pt;}
.yf0{bottom:605.138267pt;}
.yc2{bottom:605.172267pt;}
.y150{bottom:605.478267pt;}
.y120{bottom:605.512267pt;}
.y4e{bottom:605.971600pt;}
.ya4{bottom:607.469067pt;}
.y86{bottom:608.853600pt;}
.ya{bottom:610.236267pt;}
.y82{bottom:617.297867pt;}
.yef{bottom:620.472267pt;}
.yc1{bottom:620.506267pt;}
.y14f{bottom:620.812267pt;}
.y11f{bottom:620.846267pt;}
.y32{bottom:622.371600pt;}
.ya2{bottom:624.333067pt;}
.y9{bottom:625.570267pt;}
.y85{bottom:625.717600pt;}
.y9e{bottom:631.673867pt;}
.yee{bottom:635.806267pt;}
.yc0{bottom:635.840267pt;}
.y14e{bottom:636.146267pt;}
.y11e{bottom:636.180267pt;}
.y31{bottom:638.771600pt;}
.y8{bottom:640.904267pt;}
.ya3{bottom:641.197067pt;}
.y84{bottom:642.581600pt;}
.yed{bottom:651.140267pt;}
.ybf{bottom:651.174267pt;}
.y14d{bottom:651.480267pt;}
.y11d{bottom:651.514267pt;}
.y30{bottom:655.171600pt;}
.y7{bottom:656.238267pt;}
.ya1{bottom:658.048667pt;}
.y83{bottom:659.445467pt;}
.yec{bottom:666.474267pt;}
.ybe{bottom:666.508267pt;}
.y14c{bottom:666.814267pt;}
.y11c{bottom:666.848267pt;}
.y2f{bottom:671.571600pt;}
.y9f{bottom:674.912667pt;}
.yeb{bottom:681.808267pt;}
.ybd{bottom:681.842267pt;}
.y14b{bottom:682.148267pt;}
.y11b{bottom:682.182267pt;}
.y2e{bottom:687.971600pt;}
.y6{bottom:687.971733pt;}
.ya0{bottom:691.776667pt;}
.yea{bottom:697.142267pt;}
.ybc{bottom:697.176267pt;}
.y14a{bottom:697.482267pt;}
.y11a{bottom:697.516267pt;}
.y2d{bottom:704.371600pt;}
.y9d{bottom:708.640667pt;}
.ye9{bottom:712.476267pt;}
.ybb{bottom:712.510267pt;}
.y149{bottom:712.816267pt;}
.y119{bottom:712.850267pt;}
.y5{bottom:716.980933pt;}
.y2c{bottom:720.771600pt;}
.ye8{bottom:727.810267pt;}
.yba{bottom:727.844267pt;}
.y148{bottom:728.150267pt;}
.y118{bottom:728.184267pt;}
.y4{bottom:736.180933pt;}
.y2b{bottom:737.171600pt;}
.ye7{bottom:743.144267pt;}
.yb9{bottom:743.178267pt;}
.y147{bottom:743.484267pt;}
.y117{bottom:743.518267pt;}
.y2a{bottom:753.571600pt;}
.y9c{bottom:753.571733pt;}
.ye6{bottom:758.478267pt;}
.yb8{bottom:758.512267pt;}
.y146{bottom:758.818267pt;}
.y116{bottom:758.852267pt;}
.y26{bottom:762.125333pt;}
.y25{bottom:768.790267pt;}
.y29{bottom:769.971600pt;}
.ye5{bottom:773.812267pt;}
.yb7{bottom:773.846267pt;}
.y3{bottom:774.058400pt;}
.y145{bottom:774.152267pt;}
.y115{bottom:774.186267pt;}
.y28{bottom:786.371600pt;}
.y144{bottom:789.486267pt;}
.y114{bottom:789.520267pt;}
.y2{bottom:796.714400pt;}
.y27{bottom:802.771600pt;}
.yb6{bottom:804.514267pt;}
.y143{bottom:804.820267pt;}
.y113{bottom:804.854267pt;}
.y1{bottom:849.726533pt;}
.hb{height:13.596267pt;}
.h14{height:40.482667pt;}
.h12{height:40.618667pt;}
.h7{height:40.800000pt;}
.hf{height:41.162667pt;}
.h15{height:41.434667pt;}
.h6{height:42.840000pt;}
.h11{height:44.292800pt;}
.ha{height:44.441600pt;}
.h10{height:44.540800pt;}
.h13{height:45.036800pt;}
.h2{height:45.216000pt;}
.hd{height:47.893333pt;}
.h5{height:48.000000pt;}
.h9{height:48.000533pt;}
.he{height:48.746667pt;}
.hc{height:50.240000pt;}
.h8{height:50.400000pt;}
.h4{height:60.288000pt;}
.h3{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x8{left:22.497867pt;}
.x7{left:25.226000pt;}
.x5{left:64.252000pt;}
.x1{left:71.811067pt;}
.x13{left:75.590533pt;}
.x6{left:83.144400pt;}
.x2{left:90.714133pt;}
.xc{left:102.561733pt;}
.x9{left:109.607600pt;}
.xa{left:117.162000pt;}
.xb{left:124.722000pt;}
.xd{left:229.296000pt;}
.xf{left:236.867467pt;}
.x14{left:314.179867pt;}
.x12{left:321.711067pt;}
.x15{left:325.513200pt;}
.x11{left:333.044400pt;}
.xe{left:390.558000pt;}
.x10{left:398.129467pt;}
.x4{left:578.088400pt;}
.x3{left:580.816533pt;}
}




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