
    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_021044bef12063801601b9a1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.995000;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_ce6051b2b783f6ba1ba00e0a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.325000;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_dfffc37299b6afb247d32291.woff')format("woff");}.ff3{font-family:ff3;line-height:1.294000;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_1528196378778a9ece22021e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff5{font-family:ff5;line-height:1.318848;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_bc61b367fce66d7b670d0ec1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.995000;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_1528196378778a9ece22021e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff8{font-family:ff8;line-height:1.318848;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_cf22e6a9cbc20334853ef385.woff')format("woff");}.ff9{font-family:ff9;line-height:0.996000;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_073854f84bccc1f851e2cdeb.woff')format("woff");}.ffa{font-family:ffa;line-height:0.994000;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_33ed5f147d561e04aa89682b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.990000;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_5be8014126b6af875ad9de61.woff')format("woff");}.ffc{font-family:ffc;line-height:0.996000;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_c9ca17b15456f43afeeb6b20.woff')format("woff");}.ffd{font-family:ffd;line-height:0.996000;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_1528196378778a9ece22021e.woff')format("woff");}.ffe{font-family:ffe;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.fff{font-family:fff;line-height:1.318848;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_8037d04548fe0e508d57ab65.woff')format("woff");}.ff10{font-family:ff10;line-height:1.261000;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_1528f01b41404a653301d29a.woff')format("woff");}.ff11{font-family:ff11;line-height:0.968000;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_1528196378778a9ece22021e.woff')format("woff");}.ff12{font-family:ff12;line-height:1.005371;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:ff13;src:url('chunks/assets/font_08bf631650a290d166a489fa.woff')format("woff");}.ff13{font-family:ff13;line-height:1.318848;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:ff14;src:url('chunks/assets/font_8c79f56682027b605383c011.woff')format("woff");}.ff14{font-family:ff14;line-height:1.349000;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);}
.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);}
.va{vertical-align:-24.000000px;}
.v1{vertical-align:-18.000000px;}
.v4{vertical-align:-12.000000px;}
.v5{vertical-align:-9.690000px;}
.vc{vertical-align:-2.167800px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.000000px;}
.ve{vertical-align:6.000000px;}
.vd{vertical-align:12.660000px;}
.v3{vertical-align:16.983000px;}
.v7{vertical-align:19.980000px;}
.v8{vertical-align:24.000000px;}
.v6{vertical-align:25.974000px;}
.v9{vertical-align:27.959400px;}
.vb{vertical-align:54.000000px;}
.ls2f{letter-spacing:-2.940000px;}
.ls2{letter-spacing:-2.822370px;}
.ls25{letter-spacing:-2.550000px;}
.ls14{letter-spacing:-1.800000px;}
.ls3{letter-spacing:-1.744200px;}
.ls15{letter-spacing:-1.200000px;}
.ls23{letter-spacing:-1.173000px;}
.ls24{letter-spacing:-1.020000px;}
.ls28{letter-spacing:-0.630000px;}
.ls1c{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.510000px;}
.ls10{letter-spacing:-0.480000px;}
.ls30{letter-spacing:-0.420000px;}
.lsf{letter-spacing:-0.408000px;}
.ls26{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.324000px;}
.ls11{letter-spacing:-0.312000px;}
.ls27{letter-spacing:-0.300000px;}
.ls29{letter-spacing:-0.294000px;}
.lse{letter-spacing:-0.255000px;}
.ls12{letter-spacing:-0.240000px;}
.ls13{letter-spacing:-0.210000px;}
.ls2e{letter-spacing:-0.181896px;}
.ls1e{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.120000px;}
.ls1f{letter-spacing:0.156000px;}
.ls1b{letter-spacing:0.223680px;}
.lsa{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.270000px;}
.ls0{letter-spacing:0.300000px;}
.ls16{letter-spacing:0.336000px;}
.ls19{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.384000px;}
.ls17{letter-spacing:0.420000px;}
.ls5{letter-spacing:0.510000px;}
.lsd{letter-spacing:0.528000px;}
.ls9{letter-spacing:0.561000px;}
.ls2d{letter-spacing:0.646800px;}
.ls8{letter-spacing:4.131000px;}
.ls22{letter-spacing:56.557200px;}
.ls6{letter-spacing:74.099643px;}
.ls18{letter-spacing:87.600000px;}
.ls2a{letter-spacing:91.108443px;}
.ls7{letter-spacing:92.106843px;}
.ls21{letter-spacing:125.123643px;}
.ls2b{letter-spacing:147.630843px;}
.ls20{letter-spacing:148.119843px;}
.ls2c{letter-spacing:462.720000px;}
.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;}
}
.ws31{word-spacing:-84.000000px;}
.ws1c{word-spacing:-20.094000px;}
.ws8{word-spacing:-18.900000px;}
.wsb{word-spacing:-18.486000px;}
.ws24{word-spacing:-15.357600px;}
.ws9{word-spacing:-14.994000px;}
.ws16{word-spacing:-13.260000px;}
.ws25{word-spacing:-13.200000px;}
.ws47{word-spacing:-13.171200px;}
.ws3f{word-spacing:-12.780000px;}
.ws23{word-spacing:-12.600000px;}
.ws5{word-spacing:-12.597000px;}
.ws41{word-spacing:-12.524400px;}
.ws3e{word-spacing:-12.180000px;}
.ws7{word-spacing:-12.087000px;}
.ws14{word-spacing:-12.000000px;}
.ws26{word-spacing:-11.760000px;}
.ws37{word-spacing:-11.424000px;}
.wsd{word-spacing:-10.965000px;}
.wsa{word-spacing:-10.863000px;}
.wsc{word-spacing:-10.608000px;}
.wse{word-spacing:-10.455000px;}
.ws22{word-spacing:-10.374000px;}
.wsf{word-spacing:-10.353000px;}
.ws35{word-spacing:-9.744000px;}
.ws32{word-spacing:-9.690000px;}
.ws13{word-spacing:-9.685962px;}
.ws42{word-spacing:-9.584400px;}
.ws38{word-spacing:-9.324000px;}
.ws36{word-spacing:-8.313000px;}
.ws15{word-spacing:-6.996000px;}
.ws2a{word-spacing:-6.600000px;}
.ws17{word-spacing:-6.180000px;}
.ws2{word-spacing:-2.822370px;}
.ws49{word-spacing:-2.410800px;}
.ws21{word-spacing:-1.800000px;}
.ws4a{word-spacing:-0.646800px;}
.ws19{word-spacing:-0.561000px;}
.ws18{word-spacing:-0.528000px;}
.ws3a{word-spacing:-0.480000px;}
.ws28{word-spacing:-0.420000px;}
.ws2f{word-spacing:-0.384000px;}
.ws2b{word-spacing:-0.360000px;}
.ws27{word-spacing:-0.336000px;}
.ws2d{word-spacing:-0.300000px;}
.ws4{word-spacing:-0.270000px;}
.ws33{word-spacing:-0.142200px;}
.ws1f{word-spacing:-0.120000px;}
.ws0{word-spacing:0.000000px;}
.ws48{word-spacing:0.181896px;}
.ws20{word-spacing:0.210000px;}
.ws1e{word-spacing:0.240000px;}
.ws1a{word-spacing:0.255000px;}
.ws3c{word-spacing:0.294000px;}
.ws4c{word-spacing:0.300000px;}
.ws29{word-spacing:0.312000px;}
.ws2e{word-spacing:0.324000px;}
.ws3b{word-spacing:0.360000px;}
.ws4b{word-spacing:0.420000px;}
.ws1d{word-spacing:0.480000px;}
.ws1b{word-spacing:0.510000px;}
.ws2c{word-spacing:0.600000px;}
.ws39{word-spacing:1.020000px;}
.ws3{word-spacing:1.744200px;}
.ws1{word-spacing:2.822370px;}
.ws46{word-spacing:89.375400px;}
.ws40{word-spacing:156.359400px;}
.ws43{word-spacing:188.424000px;}
.ws10{word-spacing:311.406000px;}
.ws12{word-spacing:320.943000px;}
.ws34{word-spacing:324.768000px;}
.ws45{word-spacing:395.340000px;}
.ws44{word-spacing:396.240000px;}
.ws11{word-spacing:580.584000px;}
.ws30{word-spacing:1002.483000px;}
.ws6{word-spacing:1088.700000px;}
.ws3d{word-spacing:1164.291600px;}
._24{margin-left:-23.695200px;}
._25{margin-left:-12.184879px;}
._20{margin-left:-9.974583px;}
._13{margin-left:-7.764020px;}
._5{margin-left:-5.616516px;}
._26{margin-left:-4.598440px;}
._1{margin-left:-3.590960px;}
._6{margin-left:-2.053780px;}
._f{margin-left:-1.006220px;}
._7{width:1.409400px;}
._8{width:2.500200px;}
._4{width:3.562736px;}
._14{width:5.175300px;}
._12{width:6.655800px;}
._a{width:8.015680px;}
._2{width:10.190896px;}
._19{width:11.508000px;}
._17{width:12.526200px;}
._3{width:14.289543px;}
._b{width:16.914000px;}
._27{width:19.026000px;}
._15{width:20.604000px;}
._2c{width:23.058000px;}
._1a{width:28.612200px;}
._18{width:30.735600px;}
._1b{width:34.800000px;}
._9{width:36.265200px;}
._16{width:39.135600px;}
._29{width:43.156780px;}
._1e{width:50.541600px;}
._2d{width:51.618000px;}
._e{width:60.190780px;}
._11{width:75.528580px;}
._1d{width:78.000000px;}
._c{width:81.217760px;}
._1f{width:90.000000px;}
._1c{width:92.400000px;}
._23{width:126.600580px;}
._2b{width:152.766020px;}
._d{width:332.638200px;}
._2a{width:367.264780px;}
._10{width:375.985780px;}
._21{width:381.011400px;}
._0{width:403.037475px;}
._28{width:421.929000px;}
._22{width:437.590780px;}
.fc4{color:rgb(252,76,2);}
.fc3{color:rgb(77,77,77);}
.fc1{color:rgb(35,31,32);}
.fc2{color:rgb(84,87,89);}
.fc0{color:rgb(59,148,122);}
.fs16{font-size:0.600000px;}
.fs3{font-size:27.000000px;}
.fs15{font-size:27.984000px;}
.fs7{font-size:29.733000px;}
.fsc{font-size:34.980000px;}
.fsd{font-size:42.000000px;}
.fsb{font-size:45.474000px;}
.fs9{font-size:48.000000px;}
.fs14{font-size:48.972000px;}
.fs5{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs17{font-size:58.800000px;}
.fs4{font-size:60.000000px;}
.fs12{font-size:64.800000px;}
.fs13{font-size:66.000000px;}
.fs10{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs8{font-size:84.000000px;}
.fs11{font-size:108.000000px;}
.fsf{font-size:120.000000px;}
.fs0{font-size:123.826200px;}
.fs2{font-size:174.420000px;}
.fse{font-size:180.000000px;}
.fs1{font-size:282.237000px;}
.y0{bottom:0.000000px;}
.y9{bottom:52.821450px;}
.y8{bottom:64.728450px;}
.y12c{bottom:110.329650px;}
.y5d{bottom:110.834700px;}
.y125{bottom:110.928600px;}
.y63{bottom:111.078150px;}
.y19d{bottom:111.331200px;}
.y1a8{bottom:111.463200px;}
.y72{bottom:118.713150px;}
.y62{bottom:123.079650px;}
.y12b{bottom:123.832650px;}
.y124{bottom:124.127100px;}
.y19c{bottom:124.529700px;}
.y1a7{bottom:124.966200px;}
.y11e{bottom:128.139300px;}
.y5c{bottom:129.134700px;}
.y71{bottom:132.216150px;}
.y61{bottom:135.081150px;}
.y1a4{bottom:135.231300px;}
.y123{bottom:137.325600px;}
.y12a{bottom:137.335650px;}
.y19b{bottom:137.728200px;}
.y1a6{bottom:138.469200px;}
.y11d{bottom:140.140800px;}
.y70{bottom:145.719150px;}
.y60{bottom:147.082650px;}
.y94{bottom:147.434550px;}
.y5b{bottom:147.434700px;}
.y122{bottom:150.524100px;}
.y129{bottom:150.838650px;}
.y1a5{bottom:151.972200px;}
.y11c{bottom:152.142300px;}
.y6f{bottom:159.222150px;}
.y121{bottom:163.722600px;}
.y93{bottom:165.734550px;}
.y5a{bottom:165.734700px;}
.y3{bottom:166.345950px;}
.y120{bottom:176.921100px;}
.y6e{bottom:177.691650px;}
.y92{bottom:184.034550px;}
.y5f{bottom:184.034700px;}
.y1a3{bottom:187.738800px;}
.y6d{bottom:189.693150px;}
.y11f{bottom:190.119600px;}
.y1a2{bottom:200.937300px;}
.y91{bottom:202.334550px;}
.y59{bottom:202.334700px;}
.y6c{bottom:202.891650px;}
.y5e{bottom:207.329700px;}
.y15d{bottom:207.378300px;}
.y2{bottom:211.345950px;}
.y1a1{bottom:214.135800px;}
.y6b{bottom:216.090150px;}
.y90{bottom:220.634550px;}
.y58{bottom:220.634700px;}
.y1a0{bottom:227.334300px;}
.y6a{bottom:229.288650px;}
.y8f{bottom:238.934550px;}
.y57{bottom:238.934700px;}
.y19f{bottom:240.532800px;}
.y69{bottom:242.487150px;}
.y135{bottom:249.952950px;}
.y19e{bottom:253.731300px;}
.y68{bottom:255.685650px;}
.y1{bottom:256.345950px;}
.y8e{bottom:257.234550px;}
.y56{bottom:257.234700px;}
.y11b{bottom:262.229700px;}
.y134{bottom:262.252950px;}
.y67{bottom:268.884150px;}
.y128{bottom:275.534550px;}
.y55{bottom:275.534700px;}
.y66{bottom:282.082650px;}
.y8d{bottom:293.834550px;}
.y54{bottom:293.834700px;}
.y133{bottom:294.508800px;}
.y8c{bottom:312.134550px;}
.y11a{bottom:312.134700px;}
.y132{bottom:312.808800px;}
.yf{bottom:320.162550px;}
.y131{bottom:325.108800px;}
.y8b{bottom:330.434550px;}
.y119{bottom:330.434700px;}
.y19a{bottom:333.998700px;}
.ye{bottom:338.462550px;}
.y10{bottom:341.137350px;}
.y8a{bottom:348.734550px;}
.y118{bottom:348.734700px;}
.y50{bottom:353.392950px;}
.yd{bottom:356.762550px;}
.y130{bottom:357.364800px;}
.y89{bottom:367.034550px;}
.y1b5{bottom:367.034700px;}
.y12f{bottom:369.664800px;}
.yc{bottom:375.062550px;}
.y4d{bottom:380.695650px;}
.y9d{bottom:382.410600px;}
.y1be{bottom:382.867650px;}
.y88{bottom:385.334550px;}
.y1b4{bottom:385.334700px;}
.y196{bottom:387.977700px;}
.yc0{bottom:391.875450px;}
.yb{bottom:393.362550px;}
.y9c{bottom:394.710600px;}
.y1bd{bottom:395.167650px;}
.y4f{bottom:397.634250px;}
.y193{bottom:401.655750px;}
.y199{bottom:403.335750px;}
.y87{bottom:403.634550px;}
.y195{bottom:404.477700px;}
.y4c{bottom:404.698650px;}
.y18f{bottom:405.684750px;}
.ya{bottom:411.662550px;}
.y4e{bottom:412.628250px;}
.y12e{bottom:414.903300px;}
.y192{bottom:419.295750px;}
.y191{bottom:419.477700px;}
.y198{bottom:420.135750px;}
.y194{bottom:420.977700px;}
.y86{bottom:421.934550px;}
.y1b3{bottom:421.934700px;}
.y10f{bottom:422.408550px;}
.y9b{bottom:426.966450px;}
.y1bc{bottom:427.423500px;}
.y10b{bottom:428.408550px;}
.y18e{bottom:429.687750px;}
.y117{bottom:432.904050px;}
.y10e{bottom:435.158550px;}
.y197{bottom:436.935750px;}
.y190{bottom:437.477700px;}
.y12d{bottom:438.906300px;}
.y85{bottom:440.234550px;}
.y1b2{bottom:440.234700px;}
.y47{bottom:442.475250px;}
.y4b{bottom:442.494000px;}
.y10a{bottom:443.408550px;}
.y9a{bottom:445.266450px;}
.y1bb{bottom:445.723500px;}
.y116{bottom:446.406300px;}
.y10d{bottom:447.908550px;}
.y42{bottom:455.542650px;}
.y46{bottom:457.475250px;}
.y4a{bottom:457.488000px;}
.y99{bottom:457.566450px;}
.y1ba{bottom:458.023500px;}
.y109{bottom:458.408550px;}
.y84{bottom:458.534550px;}
.y1b1{bottom:458.534700px;}
.y115{bottom:459.908550px;}
.y10c{bottom:460.658550px;}
.y112{bottom:462.915300px;}
.y18b{bottom:465.335400px;}
.y104{bottom:469.349850px;}
.y45{bottom:472.475250px;}
.y44{bottom:472.481250px;}
.y49{bottom:472.482000px;}
.y108{bottom:473.408550px;}
.y114{bottom:474.908550px;}
.y127{bottom:476.834550px;}
.y1b0{bottom:476.834700px;}
.y18d{bottom:479.128350px;}
.y41{bottom:479.545650px;}
.y43{bottom:487.475250px;}
.y48{bottom:487.476000px;}
.y107{bottom:488.408550px;}
.y106{bottom:488.414550px;}
.y111{bottom:488.415300px;}
.y18a{bottom:489.338400px;}
.y98{bottom:489.822450px;}
.y113{bottom:489.906300px;}
.y1b9{bottom:490.279350px;}
.y103{bottom:493.352850px;}
.y83{bottom:495.134550px;}
.y1af{bottom:495.134700px;}
.y18c{bottom:497.128350px;}
.y97{bottom:502.122450px;}
.y1b8{bottom:502.579350px;}
.y105{bottom:503.408550px;}
.y110{bottom:503.409300px;}
.y82{bottom:513.434550px;}
.y1ae{bottom:513.434700px;}
.y38{bottom:517.347600px;}
.y182{bottom:528.315150px;}
.yf3{bottom:531.153600px;}
.y81{bottom:531.734550px;}
.y1ad{bottom:531.734700px;}
.y3e{bottom:532.340100px;}
.y37{bottom:532.341600px;}
.y181{bottom:545.113200px;}
.y33{bottom:545.390850px;}
.y3a{bottom:545.523600px;}
.yf2{bottom:546.147600px;}
.y40{bottom:547.323600px;}
.y3d{bottom:547.334100px;}
.y36{bottom:547.335600px;}
.y96{bottom:547.360950px;}
.yf7{bottom:547.641600px;}
.y1b7{bottom:547.818000px;}
.y100{bottom:549.127350px;}
.y80{bottom:550.034550px;}
.y1ac{bottom:550.034700px;}
.yee{bottom:557.070900px;}
.y39{bottom:560.523600px;}
.y102{bottom:561.129600px;}
.yf1{bottom:561.141600px;}
.yfa{bottom:561.156600px;}
.yfd{bottom:561.169350px;}
.y180{bottom:561.915300px;}
.y3f{bottom:562.323600px;}
.y3c{bottom:562.328100px;}
.y35{bottom:562.329600px;}
.yff{bottom:562.629600px;}
.yf6{bottom:562.635600px;}
.y7f{bottom:568.334550px;}
.y1ab{bottom:568.334700px;}
.y32{bottom:569.393850px;}
.y95{bottom:571.363950px;}
.y1b6{bottom:571.821000px;}
.y101{bottom:576.129600px;}
.yf0{bottom:576.135600px;}
.yf9{bottom:576.150600px;}
.yfc{bottom:576.163350px;}
.y3b{bottom:577.322100px;}
.y34{bottom:577.323600px;}
.yfe{bottom:577.629600px;}
.yf5{bottom:577.652850px;}
.y185{bottom:577.963050px;}
.y17b{bottom:577.963200px;}
.y189{bottom:578.715150px;}
.y17f{bottom:578.715300px;}
.yed{bottom:581.073900px;}
.y7e{bottom:586.634550px;}
.y1aa{bottom:586.634700px;}
.yef{bottom:591.129600px;}
.yf8{bottom:591.144600px;}
.yf4{bottom:591.155100px;}
.yfb{bottom:591.157350px;}
.y188{bottom:595.515150px;}
.y17e{bottom:595.515300px;}
.y178{bottom:597.020250px;}
.y7d{bottom:604.934550px;}
.y1a9{bottom:604.934700px;}
.y2e{bottom:607.170600px;}
.y2a{bottom:607.194600px;}
.y184{bottom:610.813050px;}
.y17a{bottom:610.813200px;}
.y187{bottom:612.315150px;}
.y17d{bottom:612.315300px;}
.ye2{bottom:618.868500px;}
.ye6{bottom:618.881250px;}
.yea{bottom:620.385750px;}
.y177{bottom:621.023250px;}
.y2d{bottom:622.170600px;}
.y29{bottom:622.188600px;}
.y126{bottom:623.234550px;}
.y183{bottom:628.813050px;}
.y179{bottom:628.813200px;}
.y186{bottom:629.115150px;}
.y17c{bottom:629.115300px;}
.yde{bottom:629.791800px;}
.ye1{bottom:633.862500px;}
.ye5{bottom:633.875250px;}
.y25{bottom:635.237850px;}
.ye9{bottom:635.379750px;}
.y2c{bottom:637.170600px;}
.y31{bottom:637.176600px;}
.y28{bottom:637.182600px;}
.yec{bottom:648.850500px;}
.ye0{bottom:648.856500px;}
.ye4{bottom:648.869250px;}
.ye8{bottom:648.882000px;}
.yeb{bottom:650.350500px;}
.y2b{bottom:652.170600px;}
.y30{bottom:652.171350px;}
.y27{bottom:652.176600px;}
.ydd{bottom:653.794800px;}
.y176{bottom:658.799850px;}
.y24{bottom:659.240850px;}
.ydf{bottom:663.850500px;}
.ye3{bottom:663.863250px;}
.ye7{bottom:663.876000px;}
.y2f{bottom:667.165350px;}
.y26{bottom:667.170600px;}
.ybf{bottom:668.913750px;}
.y1c3{bottom:671.750850px;}
.y175{bottom:675.599850px;}
.y172{bottom:675.897750px;}
.y16e{bottom:677.104800px;}
.ybe{bottom:682.413750px;}
.y1c2{bottom:685.250850px;}
.y170{bottom:690.897750px;}
.yd9{bottom:691.446450px;}
.y171{bottom:692.397750px;}
.y174{bottom:692.399850px;}
.ybd{bottom:695.913750px;}
.y20{bottom:697.017600px;}
.y1c1{bottom:698.750850px;}
.yd3{bottom:700.184850px;}
.y16d{bottom:701.107800px;}
.ydc{bottom:704.249550px;}
.yd8{bottom:704.946450px;}
.y16f{bottom:708.897750px;}
.y173{bottom:709.199850px;}
.ybc{bottom:709.413750px;}
.y1b{bottom:712.017600px;}
.y1c0{bottom:712.250850px;}
.y23{bottom:713.517600px;}
.yda{bottom:719.243550px;}
.yd5{bottom:719.249550px;}
.yd7{bottom:719.944200px;}
.ybb{bottom:722.913750px;}
.yd2{bottom:724.187850px;}
.y1bf{bottom:725.750850px;}
.y1a{bottom:727.017600px;}
.y22{bottom:728.517600px;}
.yd6{bottom:733.446450px;}
.ydb{bottom:734.237550px;}
.yd4{bottom:734.243550px;}
.y169{bottom:738.884550px;}
.y166{bottom:740.442600px;}
.y1f{bottom:742.017600px;}
.y1e{bottom:742.022850px;}
.y19{bottom:742.023600px;}
.y1d{bottom:742.035600px;}
.y21{bottom:743.527350px;}
.y14{bottom:752.580900px;}
.y168{bottom:755.384550px;}
.y18{bottom:757.017600px;}
.y1c{bottom:757.029600px;}
.y161{bottom:757.087650px;}
.y165{bottom:757.242600px;}
.y16c{bottom:758.086650px;}
.yc7{bottom:765.012900px;}
.y154{bottom:766.685700px;}
.ycc{bottom:770.152350px;}
.yb2{bottom:770.447700px;}
.yce{bottom:771.699600px;}
.y167{bottom:771.884550px;}
.y17{bottom:772.017600px;}
.y16{bottom:772.023600px;}
.yd1{bottom:772.445100px;}
.y163{bottom:773.384550px;}
.y164{bottom:774.042600px;}
.y16b{bottom:774.886650px;}
.y13{bottom:776.583900px;}
.y14a{bottom:779.080200px;}
.y14f{bottom:779.281800px;}
.y160{bottom:781.090650px;}
.ya8{bottom:782.842050px;}
.yad{bottom:783.043650px;}
.ycd{bottom:784.449600px;}
.yc9{bottom:784.455600px;}
.ycb{bottom:785.150100px;}
.yd0{bottom:785.947350px;}
.y153{bottom:786.485700px;}
.y15{bottom:787.017600px;}
.yc6{bottom:789.015900px;}
.yb1{bottom:790.247700px;}
.y162{bottom:791.384550px;}
.y16a{bottom:791.686650px;}
.yca{bottom:798.652350px;}
.y149{bottom:798.880200px;}
.y14e{bottom:799.081800px;}
.ycf{bottom:799.443600px;}
.yc8{bottom:799.449600px;}
.ya7{bottom:802.642050px;}
.yac{bottom:802.843650px;}
.y152{bottom:806.285700px;}
.yb0{bottom:810.047700px;}
.y7{bottom:810.630450px;}
.y12{bottom:812.612700px;}
.y148{bottom:818.680200px;}
.y14d{bottom:818.881800px;}
.y15f{bottom:819.245400px;}
.ya6{bottom:822.442050px;}
.yab{bottom:822.643650px;}
.yc5{bottom:822.918600px;}
.y151{bottom:826.085700px;}
.yaf{bottom:829.847700px;}
.y147{bottom:838.480200px;}
.y14c{bottom:838.681800px;}
.y1ce{bottom:841.972050px;}
.ya5{bottom:842.242050px;}
.yaa{bottom:842.443650px;}
.y1dd{bottom:843.851700px;}
.y150{bottom:844.501050px;}
.y11{bottom:848.174400px;}
.yae{bottom:848.262900px;}
.y15e{bottom:852.679200px;}
.y1d3{bottom:856.109700px;}
.y6{bottom:856.800600px;}
.y146{bottom:856.895550px;}
.y14b{bottom:857.097000px;}
.yc4{bottom:858.478350px;}
.ya4{bottom:860.657400px;}
.ya9{bottom:860.858850px;}
.y1cd{bottom:861.475050px;}
.y1dc{bottom:862.116900px;}
.y1d2{bottom:875.612700px;}
.y145{bottom:876.131400px;}
.ya3{bottom:879.893250px;}
.y1cc{bottom:880.978050px;}
.y1db{bottom:881.619900px;}
.y1d1{bottom:895.115700px;}
.y144{bottom:895.931400px;}
.y15c{bottom:898.560150px;}
.yc3{bottom:898.622400px;}
.y53{bottom:899.128650px;}
.ya2{bottom:899.693250px;}
.y1c4{bottom:900.232050px;}
.y1cb{bottom:900.481050px;}
.y1da{bottom:901.122900px;}
.y13f{bottom:902.781600px;}
.y7c{bottom:904.245900px;}
.y1d0{bottom:914.618700px;}
.y143{bottom:915.731400px;}
.y5{bottom:915.827934px;}
.y13e{bottom:917.781600px;}
.y7b{bottom:919.245900px;}
.y1ca{bottom:919.350450px;}
.ya1{bottom:919.493250px;}
.y1d9{bottom:920.625900px;}
.y15b{bottom:921.063150px;}
.yc2{bottom:921.125400px;}
.y52{bottom:921.631650px;}
.y1cf{bottom:933.484050px;}
.y142{bottom:935.531400px;}
.ya0{bottom:939.293250px;}
.y15a{bottom:943.566150px;}
.yc1{bottom:943.628400px;}
.y51{bottom:944.134650px;}
.y13d{bottom:946.281600px;}
.y7a{bottom:947.745900px;}
.y141{bottom:953.946600px;}
.y9f{bottom:957.708600px;}
.y13c{bottom:959.781600px;}
.y79{bottom:961.245900px;}
.y4{bottom:977.355600px;}
.y159{bottom:980.686950px;}
.yb7{bottom:984.448950px;}
.y13b{bottom:988.281600px;}
.y78{bottom:989.745900px;}
.y65{bottom:991.441350px;}
.y158{bottom:998.511150px;}
.y13a{bottom:1001.781600px;}
.yb6{bottom:1002.273000px;}
.y77{bottom:1003.245900px;}
.y1d8{bottom:1013.877300px;}
.y157{bottom:1018.311150px;}
.y140{bottom:1018.691250px;}
.yb5{bottom:1022.073000px;}
.y9e{bottom:1022.453100px;}
.y139{bottom:1030.281600px;}
.y64{bottom:1030.441350px;}
.y76{bottom:1031.745900px;}
.y1d7{bottom:1032.142500px;}
.y156{bottom:1038.111150px;}
.yb4{bottom:1041.873000px;}
.y138{bottom:1043.781600px;}
.y75{bottom:1045.245900px;}
.y1d6{bottom:1051.645500px;}
.y155{bottom:1057.911150px;}
.yb3{bottom:1061.673000px;}
.y1d5{bottom:1071.148500px;}
.y1c9{bottom:1071.338850px;}
.y137{bottom:1072.281600px;}
.y74{bottom:1073.745900px;}
.y1c8{bottom:1090.197600px;}
.y136{bottom:1090.296600px;}
.y1d4{bottom:1090.651500px;}
.y73{bottom:1091.760750px;}
.y1c7{bottom:1109.700600px;}
.y1c6{bottom:1129.203600px;}
.yba{bottom:1143.370200px;}
.y1c5{bottom:1148.706600px;}
.yb9{bottom:1167.373200px;}
.yb8{bottom:1192.867200px;}
.h5{height:20.658691px;}
.h11{height:24.695880px;}
.h6{height:28.291992px;}
.h13{height:29.652000px;}
.h16{height:33.888000px;}
.h1d{height:35.740704px;}
.h8{height:36.006000px;}
.h9{height:38.124000px;}
.h23{height:41.512800px;}
.h7{height:42.360000px;}
.h20{height:42.975000px;}
.hc{height:42.996000px;}
.hd{height:43.029000px;}
.he{height:43.044000px;}
.hb{height:43.068000px;}
.h24{height:43.076400px;}
.h21{height:43.077000px;}
.h1e{height:43.086000px;}
.h12{height:44.675880px;}
.h1a{height:45.748800px;}
.h1b{height:46.596000px;}
.h26{height:47.472000px;}
.h17{height:50.832000px;}
.h25{height:55.020000px;}
.h10{height:55.068000px;}
.h22{height:58.078044px;}
.hf{height:58.078644px;}
.h18{height:58.080000px;}
.ha{height:59.304000px;}
.h1c{height:62.533632px;}
.h19{height:76.248000px;}
.h2{height:87.421297px;}
.h1f{height:90.006000px;}
.h15{height:118.680000px;}
.h4{height:172.501380px;}
.h14{height:181.620000px;}
.h3{height:284.777133px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:42.519750px;}
.x6{left:48.610050px;}
.x17{left:59.841750px;}
.x18{left:61.801500px;}
.x7{left:72.373800px;}
.x3a{left:169.301250px;}
.x21{left:173.553150px;}
.x3b{left:185.399400px;}
.x5{left:187.862100px;}
.x22{left:189.651450px;}
.x28{left:200.407950px;}
.x3f{left:210.420450px;}
.x32{left:242.893650px;}
.x14{left:250.866150px;}
.x8{left:260.519700px;}
.x50{left:266.533050px;}
.x40{left:287.328450px;}
.x29{left:291.574200px;}
.x3{left:300.181200px;}
.x38{left:311.308500px;}
.x45{left:313.818450px;}
.x1f{left:315.560400px;}
.x39{left:327.406650px;}
.x20{left:331.658700px;}
.x9{left:337.058850px;}
.xa{left:345.569400px;}
.x41{left:361.743300px;}
.x3e{left:366.579750px;}
.x26{left:370.831650px;}
.x2a{left:381.189000px;}
.x3d{left:382.826850px;}
.x25{left:387.078750px;}
.x2b{left:389.692950px;}
.xb{left:422.098200px;}
.xc{left:430.602150px;}
.x4a{left:444.301500px;}
.x48{left:452.411700px;}
.x15{left:454.110150px;}
.x1{left:455.456700px;}
.x49{left:469.052400px;}
.x16{left:471.970650px;}
.x23{left:476.972700px;}
.x19{left:480.472350px;}
.x1a{left:482.598450px;}
.x33{left:484.228350px;}
.x3c{left:488.819100px;}
.x24{left:493.071000px;}
.x2c{left:496.244700px;}
.x1b{left:499.606350px;}
.x34{left:501.236250px;}
.x4b{left:523.568100px;}
.xd{left:526.319250px;}
.x4c{left:539.668800px;}
.x35{left:545.175150px;}
.x42{left:546.703950px;}
.x1c{left:549.427200px;}
.x4f{left:571.734750px;}
.x2f{left:581.287200px;}
.x4e{left:587.981850px;}
.x36{left:590.990100px;}
.x1d{left:595.242150px;}
.x4d{left:601.480950px;}
.x12{left:603.096900px;}
.x37{left:607.088400px;}
.x1e{left:611.340300px;}
.x31{left:614.794200px;}
.x30{left:616.812450px;}
.xe{left:632.259000px;}
.x43{left:637.363950px;}
.x2d{left:666.318000px;}
.x46{left:673.633950px;}
.xf{left:675.388050px;}
.x44{left:731.338500px;}
.x4{left:734.083350px;}
.x47{left:739.842450px;}
.x27{left:750.882750px;}
.x10{left:760.275000px;}
.x2e{left:763.866150px;}
.x11{left:768.778950px;}
.x13{left:846.191550px;}
@media print{
.va{vertical-align:-21.333333pt;}
.v1{vertical-align:-16.000000pt;}
.v4{vertical-align:-10.666667pt;}
.v5{vertical-align:-8.613333pt;}
.vc{vertical-align:-1.926933pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.666667pt;}
.ve{vertical-align:5.333333pt;}
.vd{vertical-align:11.253333pt;}
.v3{vertical-align:15.096000pt;}
.v7{vertical-align:17.760000pt;}
.v8{vertical-align:21.333333pt;}
.v6{vertical-align:23.088000pt;}
.v9{vertical-align:24.852800pt;}
.vb{vertical-align:48.000000pt;}
.ls2f{letter-spacing:-2.613333pt;}
.ls2{letter-spacing:-2.508773pt;}
.ls25{letter-spacing:-2.266667pt;}
.ls14{letter-spacing:-1.600000pt;}
.ls3{letter-spacing:-1.550400pt;}
.ls15{letter-spacing:-1.066667pt;}
.ls23{letter-spacing:-1.042667pt;}
.ls24{letter-spacing:-0.906667pt;}
.ls28{letter-spacing:-0.560000pt;}
.ls1c{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.453333pt;}
.ls10{letter-spacing:-0.426667pt;}
.ls30{letter-spacing:-0.373333pt;}
.lsf{letter-spacing:-0.362667pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.288000pt;}
.ls11{letter-spacing:-0.277333pt;}
.ls27{letter-spacing:-0.266667pt;}
.ls29{letter-spacing:-0.261333pt;}
.lse{letter-spacing:-0.226667pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls13{letter-spacing:-0.186667pt;}
.ls2e{letter-spacing:-0.161685pt;}
.ls1e{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls1f{letter-spacing:0.138667pt;}
.ls1b{letter-spacing:0.198827pt;}
.lsa{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.240000pt;}
.ls0{letter-spacing:0.266667pt;}
.ls16{letter-spacing:0.298667pt;}
.ls19{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.341333pt;}
.ls17{letter-spacing:0.373333pt;}
.ls5{letter-spacing:0.453333pt;}
.lsd{letter-spacing:0.469333pt;}
.ls9{letter-spacing:0.498667pt;}
.ls2d{letter-spacing:0.574933pt;}
.ls8{letter-spacing:3.672000pt;}
.ls22{letter-spacing:50.273067pt;}
.ls6{letter-spacing:65.866349pt;}
.ls18{letter-spacing:77.866667pt;}
.ls2a{letter-spacing:80.985283pt;}
.ls7{letter-spacing:81.872749pt;}
.ls21{letter-spacing:111.221016pt;}
.ls2b{letter-spacing:131.227416pt;}
.ls20{letter-spacing:131.662083pt;}
.ls2c{letter-spacing:411.306667pt;}
.ws31{word-spacing:-74.666667pt;}
.ws1c{word-spacing:-17.861333pt;}
.ws8{word-spacing:-16.800000pt;}
.wsb{word-spacing:-16.432000pt;}
.ws24{word-spacing:-13.651200pt;}
.ws9{word-spacing:-13.328000pt;}
.ws16{word-spacing:-11.786667pt;}
.ws25{word-spacing:-11.733333pt;}
.ws47{word-spacing:-11.707733pt;}
.ws3f{word-spacing:-11.360000pt;}
.ws23{word-spacing:-11.200000pt;}
.ws5{word-spacing:-11.197333pt;}
.ws41{word-spacing:-11.132800pt;}
.ws3e{word-spacing:-10.826667pt;}
.ws7{word-spacing:-10.744000pt;}
.ws14{word-spacing:-10.666667pt;}
.ws26{word-spacing:-10.453333pt;}
.ws37{word-spacing:-10.154667pt;}
.wsd{word-spacing:-9.746667pt;}
.wsa{word-spacing:-9.656000pt;}
.wsc{word-spacing:-9.429333pt;}
.wse{word-spacing:-9.293333pt;}
.ws22{word-spacing:-9.221333pt;}
.wsf{word-spacing:-9.202667pt;}
.ws35{word-spacing:-8.661333pt;}
.ws32{word-spacing:-8.613333pt;}
.ws13{word-spacing:-8.609744pt;}
.ws42{word-spacing:-8.519467pt;}
.ws38{word-spacing:-8.288000pt;}
.ws36{word-spacing:-7.389333pt;}
.ws15{word-spacing:-6.218667pt;}
.ws2a{word-spacing:-5.866667pt;}
.ws17{word-spacing:-5.493333pt;}
.ws2{word-spacing:-2.508773pt;}
.ws49{word-spacing:-2.142933pt;}
.ws21{word-spacing:-1.600000pt;}
.ws4a{word-spacing:-0.574933pt;}
.ws19{word-spacing:-0.498667pt;}
.ws18{word-spacing:-0.469333pt;}
.ws3a{word-spacing:-0.426667pt;}
.ws28{word-spacing:-0.373333pt;}
.ws2f{word-spacing:-0.341333pt;}
.ws2b{word-spacing:-0.320000pt;}
.ws27{word-spacing:-0.298667pt;}
.ws2d{word-spacing:-0.266667pt;}
.ws4{word-spacing:-0.240000pt;}
.ws33{word-spacing:-0.126400pt;}
.ws1f{word-spacing:-0.106667pt;}
.ws0{word-spacing:0.000000pt;}
.ws48{word-spacing:0.161685pt;}
.ws20{word-spacing:0.186667pt;}
.ws1e{word-spacing:0.213333pt;}
.ws1a{word-spacing:0.226667pt;}
.ws3c{word-spacing:0.261333pt;}
.ws4c{word-spacing:0.266667pt;}
.ws29{word-spacing:0.277333pt;}
.ws2e{word-spacing:0.288000pt;}
.ws3b{word-spacing:0.320000pt;}
.ws4b{word-spacing:0.373333pt;}
.ws1d{word-spacing:0.426667pt;}
.ws1b{word-spacing:0.453333pt;}
.ws2c{word-spacing:0.533333pt;}
.ws39{word-spacing:0.906667pt;}
.ws3{word-spacing:1.550400pt;}
.ws1{word-spacing:2.508773pt;}
.ws46{word-spacing:79.444800pt;}
.ws40{word-spacing:138.986133pt;}
.ws43{word-spacing:167.488000pt;}
.ws10{word-spacing:276.805333pt;}
.ws12{word-spacing:285.282667pt;}
.ws34{word-spacing:288.682667pt;}
.ws45{word-spacing:351.413333pt;}
.ws44{word-spacing:352.213333pt;}
.ws11{word-spacing:516.074667pt;}
.ws30{word-spacing:891.096000pt;}
.ws6{word-spacing:967.733333pt;}
.ws3d{word-spacing:1034.925867pt;}
._24{margin-left:-21.062400pt;}
._25{margin-left:-10.831004pt;}
._20{margin-left:-8.866296pt;}
._13{margin-left:-6.901351pt;}
._5{margin-left:-4.992459pt;}
._26{margin-left:-4.087502pt;}
._1{margin-left:-3.191964pt;}
._6{margin-left:-1.825582pt;}
._f{margin-left:-0.894418pt;}
._7{width:1.252800pt;}
._8{width:2.222400pt;}
._4{width:3.166877pt;}
._14{width:4.600267pt;}
._12{width:5.916267pt;}
._a{width:7.125049pt;}
._2{width:9.058574pt;}
._19{width:10.229333pt;}
._17{width:11.134400pt;}
._3{width:12.701816pt;}
._b{width:15.034667pt;}
._27{width:16.912000pt;}
._15{width:18.314667pt;}
._2c{width:20.496000pt;}
._1a{width:25.433067pt;}
._18{width:27.320533pt;}
._1b{width:30.933333pt;}
._9{width:32.235733pt;}
._16{width:34.787200pt;}
._29{width:38.361582pt;}
._1e{width:44.925867pt;}
._2d{width:45.882667pt;}
._e{width:53.502916pt;}
._11{width:67.136516pt;}
._1d{width:69.333333pt;}
._c{width:72.193564pt;}
._1f{width:80.000000pt;}
._1c{width:82.133333pt;}
._23{width:112.533849pt;}
._2b{width:135.792018pt;}
._d{width:295.678400pt;}
._2a{width:326.457582pt;}
._10{width:334.209582pt;}
._21{width:338.676800pt;}
._0{width:358.255533pt;}
._28{width:375.048000pt;}
._22{width:388.969582pt;}
.fs16{font-size:0.533333pt;}
.fs3{font-size:24.000000pt;}
.fs15{font-size:24.874667pt;}
.fs7{font-size:26.429333pt;}
.fsc{font-size:31.093333pt;}
.fsd{font-size:37.333333pt;}
.fsb{font-size:40.421333pt;}
.fs9{font-size:42.666667pt;}
.fs14{font-size:43.530667pt;}
.fs5{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs17{font-size:52.266667pt;}
.fs4{font-size:53.333333pt;}
.fs12{font-size:57.600000pt;}
.fs13{font-size:58.666667pt;}
.fs10{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs8{font-size:74.666667pt;}
.fs11{font-size:96.000000pt;}
.fsf{font-size:106.666667pt;}
.fs0{font-size:110.067733pt;}
.fs2{font-size:155.040000pt;}
.fse{font-size:160.000000pt;}
.fs1{font-size:250.877333pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:46.952400pt;}
.y8{bottom:57.536400pt;}
.y12c{bottom:98.070800pt;}
.y5d{bottom:98.519733pt;}
.y125{bottom:98.603200pt;}
.y63{bottom:98.736133pt;}
.y19d{bottom:98.961067pt;}
.y1a8{bottom:99.078400pt;}
.y72{bottom:105.522800pt;}
.y62{bottom:109.404133pt;}
.y12b{bottom:110.073467pt;}
.y124{bottom:110.335200pt;}
.y19c{bottom:110.693067pt;}
.y1a7{bottom:111.081067pt;}
.y11e{bottom:113.901600pt;}
.y5c{bottom:114.786400pt;}
.y71{bottom:117.525467pt;}
.y61{bottom:120.072133pt;}
.y1a4{bottom:120.205600pt;}
.y123{bottom:122.067200pt;}
.y12a{bottom:122.076133pt;}
.y19b{bottom:122.425067pt;}
.y1a6{bottom:123.083733pt;}
.y11d{bottom:124.569600pt;}
.y70{bottom:129.528133pt;}
.y60{bottom:130.740133pt;}
.y94{bottom:131.052933pt;}
.y5b{bottom:131.053067pt;}
.y122{bottom:133.799200pt;}
.y129{bottom:134.078800pt;}
.y1a5{bottom:135.086400pt;}
.y11c{bottom:135.237600pt;}
.y6f{bottom:141.530800pt;}
.y121{bottom:145.531200pt;}
.y93{bottom:147.319600pt;}
.y5a{bottom:147.319733pt;}
.y3{bottom:147.863067pt;}
.y120{bottom:157.263200pt;}
.y6e{bottom:157.948133pt;}
.y92{bottom:163.586267pt;}
.y5f{bottom:163.586400pt;}
.y1a3{bottom:166.878933pt;}
.y6d{bottom:168.616133pt;}
.y11f{bottom:168.995200pt;}
.y1a2{bottom:178.610933pt;}
.y91{bottom:179.852933pt;}
.y59{bottom:179.853067pt;}
.y6c{bottom:180.348133pt;}
.y5e{bottom:184.293067pt;}
.y15d{bottom:184.336267pt;}
.y2{bottom:187.863067pt;}
.y1a1{bottom:190.342933pt;}
.y6b{bottom:192.080133pt;}
.y90{bottom:196.119600pt;}
.y58{bottom:196.119733pt;}
.y1a0{bottom:202.074933pt;}
.y6a{bottom:203.812133pt;}
.y8f{bottom:212.386267pt;}
.y57{bottom:212.386400pt;}
.y19f{bottom:213.806933pt;}
.y69{bottom:215.544133pt;}
.y135{bottom:222.180400pt;}
.y19e{bottom:225.538933pt;}
.y68{bottom:227.276133pt;}
.y1{bottom:227.863067pt;}
.y8e{bottom:228.652933pt;}
.y56{bottom:228.653067pt;}
.y11b{bottom:233.093067pt;}
.y134{bottom:233.113733pt;}
.y67{bottom:239.008133pt;}
.y128{bottom:244.919600pt;}
.y55{bottom:244.919733pt;}
.y66{bottom:250.740133pt;}
.y8d{bottom:261.186267pt;}
.y54{bottom:261.186400pt;}
.y133{bottom:261.785600pt;}
.y8c{bottom:277.452933pt;}
.y11a{bottom:277.453067pt;}
.y132{bottom:278.052267pt;}
.yf{bottom:284.588933pt;}
.y131{bottom:288.985600pt;}
.y8b{bottom:293.719600pt;}
.y119{bottom:293.719733pt;}
.y19a{bottom:296.887733pt;}
.ye{bottom:300.855600pt;}
.y10{bottom:303.233200pt;}
.y8a{bottom:309.986267pt;}
.y118{bottom:309.986400pt;}
.y50{bottom:314.127067pt;}
.yd{bottom:317.122267pt;}
.y130{bottom:317.657600pt;}
.y89{bottom:326.252933pt;}
.y1b5{bottom:326.253067pt;}
.y12f{bottom:328.590933pt;}
.yc{bottom:333.388933pt;}
.y4d{bottom:338.396133pt;}
.y9d{bottom:339.920533pt;}
.y1be{bottom:340.326800pt;}
.y88{bottom:342.519600pt;}
.y1b4{bottom:342.519733pt;}
.y196{bottom:344.869067pt;}
.yc0{bottom:348.333733pt;}
.yb{bottom:349.655600pt;}
.y9c{bottom:350.853867pt;}
.y1bd{bottom:351.260133pt;}
.y4f{bottom:353.452667pt;}
.y193{bottom:357.027333pt;}
.y199{bottom:358.520667pt;}
.y87{bottom:358.786267pt;}
.y195{bottom:359.535733pt;}
.y4c{bottom:359.732133pt;}
.y18f{bottom:360.608667pt;}
.ya{bottom:365.922267pt;}
.y4e{bottom:366.780667pt;}
.y12e{bottom:368.802933pt;}
.y192{bottom:372.707333pt;}
.y191{bottom:372.869067pt;}
.y198{bottom:373.454000pt;}
.y194{bottom:374.202400pt;}
.y86{bottom:375.052933pt;}
.y1b3{bottom:375.053067pt;}
.y10f{bottom:375.474267pt;}
.y9b{bottom:379.525733pt;}
.y1bc{bottom:379.932000pt;}
.y10b{bottom:380.807600pt;}
.y18e{bottom:381.944667pt;}
.y117{bottom:384.803600pt;}
.y10e{bottom:386.807600pt;}
.y197{bottom:388.387333pt;}
.y190{bottom:388.869067pt;}
.y12d{bottom:390.138933pt;}
.y85{bottom:391.319600pt;}
.y1b2{bottom:391.319733pt;}
.y47{bottom:393.311333pt;}
.y4b{bottom:393.328000pt;}
.y10a{bottom:394.140933pt;}
.y9a{bottom:395.792400pt;}
.y1bb{bottom:396.198667pt;}
.y116{bottom:396.805600pt;}
.y10d{bottom:398.140933pt;}
.y42{bottom:404.926800pt;}
.y46{bottom:406.644667pt;}
.y4a{bottom:406.656000pt;}
.y99{bottom:406.725733pt;}
.y1ba{bottom:407.132000pt;}
.y109{bottom:407.474267pt;}
.y84{bottom:407.586267pt;}
.y1b1{bottom:407.586400pt;}
.y115{bottom:408.807600pt;}
.y10c{bottom:409.474267pt;}
.y112{bottom:411.480267pt;}
.y18b{bottom:413.631467pt;}
.y104{bottom:417.199867pt;}
.y45{bottom:419.978000pt;}
.y44{bottom:419.983333pt;}
.y49{bottom:419.984000pt;}
.y108{bottom:420.807600pt;}
.y114{bottom:422.140933pt;}
.y127{bottom:423.852933pt;}
.y1b0{bottom:423.853067pt;}
.y18d{bottom:425.891867pt;}
.y41{bottom:426.262800pt;}
.y43{bottom:433.311333pt;}
.y48{bottom:433.312000pt;}
.y107{bottom:434.140933pt;}
.y106{bottom:434.146267pt;}
.y111{bottom:434.146933pt;}
.y18a{bottom:434.967467pt;}
.y98{bottom:435.397733pt;}
.y113{bottom:435.472267pt;}
.y1b9{bottom:435.803867pt;}
.y103{bottom:438.535867pt;}
.y83{bottom:440.119600pt;}
.y1af{bottom:440.119733pt;}
.y18c{bottom:441.891867pt;}
.y97{bottom:446.331067pt;}
.y1b8{bottom:446.737200pt;}
.y105{bottom:447.474267pt;}
.y110{bottom:447.474933pt;}
.y82{bottom:456.386267pt;}
.y1ae{bottom:456.386400pt;}
.y38{bottom:459.864533pt;}
.y182{bottom:469.613467pt;}
.yf3{bottom:472.136533pt;}
.y81{bottom:472.652933pt;}
.y1ad{bottom:472.653067pt;}
.y3e{bottom:473.191200pt;}
.y37{bottom:473.192533pt;}
.y181{bottom:484.545067pt;}
.y33{bottom:484.791867pt;}
.y3a{bottom:484.909867pt;}
.yf2{bottom:485.464533pt;}
.y40{bottom:486.509867pt;}
.y3d{bottom:486.519200pt;}
.y36{bottom:486.520533pt;}
.y96{bottom:486.543067pt;}
.yf7{bottom:486.792533pt;}
.y1b7{bottom:486.949333pt;}
.y100{bottom:488.113200pt;}
.y80{bottom:488.919600pt;}
.y1ac{bottom:488.919733pt;}
.yee{bottom:495.174133pt;}
.y39{bottom:498.243200pt;}
.y102{bottom:498.781867pt;}
.yf1{bottom:498.792533pt;}
.yfa{bottom:498.805867pt;}
.yfd{bottom:498.817200pt;}
.y180{bottom:499.480267pt;}
.y3f{bottom:499.843200pt;}
.y3c{bottom:499.847200pt;}
.y35{bottom:499.848533pt;}
.yff{bottom:500.115200pt;}
.yf6{bottom:500.120533pt;}
.y7f{bottom:505.186267pt;}
.y1ab{bottom:505.186400pt;}
.y32{bottom:506.127867pt;}
.y95{bottom:507.879067pt;}
.y1b6{bottom:508.285333pt;}
.y101{bottom:512.115200pt;}
.yf0{bottom:512.120533pt;}
.yf9{bottom:512.133867pt;}
.yfc{bottom:512.145200pt;}
.y3b{bottom:513.175200pt;}
.y34{bottom:513.176533pt;}
.yfe{bottom:513.448533pt;}
.yf5{bottom:513.469200pt;}
.y185{bottom:513.744933pt;}
.y17b{bottom:513.745067pt;}
.y189{bottom:514.413467pt;}
.y17f{bottom:514.413600pt;}
.yed{bottom:516.510133pt;}
.y7e{bottom:521.452933pt;}
.y1aa{bottom:521.453067pt;}
.yef{bottom:525.448533pt;}
.yf8{bottom:525.461867pt;}
.yf4{bottom:525.471200pt;}
.yfb{bottom:525.473200pt;}
.y188{bottom:529.346800pt;}
.y17e{bottom:529.346933pt;}
.y178{bottom:530.684667pt;}
.y7d{bottom:537.719600pt;}
.y1a9{bottom:537.719733pt;}
.y2e{bottom:539.707200pt;}
.y2a{bottom:539.728533pt;}
.y184{bottom:542.944933pt;}
.y17a{bottom:542.945067pt;}
.y187{bottom:544.280133pt;}
.y17d{bottom:544.280267pt;}
.ye2{bottom:550.105333pt;}
.ye6{bottom:550.116667pt;}
.yea{bottom:551.454000pt;}
.y177{bottom:552.020667pt;}
.y2d{bottom:553.040533pt;}
.y29{bottom:553.056533pt;}
.y126{bottom:553.986267pt;}
.y183{bottom:558.944933pt;}
.y179{bottom:558.945067pt;}
.y186{bottom:559.213467pt;}
.y17c{bottom:559.213600pt;}
.yde{bottom:559.814933pt;}
.ye1{bottom:563.433333pt;}
.ye5{bottom:563.444667pt;}
.y25{bottom:564.655867pt;}
.ye9{bottom:564.782000pt;}
.y2c{bottom:566.373867pt;}
.y31{bottom:566.379200pt;}
.y28{bottom:566.384533pt;}
.yec{bottom:576.756000pt;}
.ye0{bottom:576.761333pt;}
.ye4{bottom:576.772667pt;}
.ye8{bottom:576.784000pt;}
.yeb{bottom:578.089333pt;}
.y2b{bottom:579.707200pt;}
.y30{bottom:579.707867pt;}
.y27{bottom:579.712533pt;}
.ydd{bottom:581.150933pt;}
.y176{bottom:585.599867pt;}
.y24{bottom:585.991867pt;}
.ydf{bottom:590.089333pt;}
.ye3{bottom:590.100667pt;}
.ye7{bottom:590.112000pt;}
.y2f{bottom:593.035867pt;}
.y26{bottom:593.040533pt;}
.ybf{bottom:594.590000pt;}
.y1c3{bottom:597.111867pt;}
.y175{bottom:600.533200pt;}
.y172{bottom:600.798000pt;}
.y16e{bottom:601.870933pt;}
.ybe{bottom:606.590000pt;}
.y1c2{bottom:609.111867pt;}
.y170{bottom:614.131333pt;}
.yd9{bottom:614.619067pt;}
.y171{bottom:615.464667pt;}
.y174{bottom:615.466533pt;}
.ybd{bottom:618.590000pt;}
.y20{bottom:619.571200pt;}
.y1c1{bottom:621.111867pt;}
.yd3{bottom:622.386533pt;}
.y16d{bottom:623.206933pt;}
.ydc{bottom:625.999600pt;}
.yd8{bottom:626.619067pt;}
.y16f{bottom:630.131333pt;}
.y173{bottom:630.399867pt;}
.ybc{bottom:630.590000pt;}
.y1b{bottom:632.904533pt;}
.y1c0{bottom:633.111867pt;}
.y23{bottom:634.237867pt;}
.yda{bottom:639.327600pt;}
.yd5{bottom:639.332933pt;}
.yd7{bottom:639.950400pt;}
.ybb{bottom:642.590000pt;}
.yd2{bottom:643.722533pt;}
.y1bf{bottom:645.111867pt;}
.y1a{bottom:646.237867pt;}
.y22{bottom:647.571200pt;}
.yd6{bottom:651.952400pt;}
.ydb{bottom:652.655600pt;}
.yd4{bottom:652.660933pt;}
.y169{bottom:656.786267pt;}
.y166{bottom:658.171200pt;}
.y1f{bottom:659.571200pt;}
.y1e{bottom:659.575867pt;}
.y19{bottom:659.576533pt;}
.y1d{bottom:659.587200pt;}
.y21{bottom:660.913200pt;}
.y14{bottom:668.960800pt;}
.y168{bottom:671.452933pt;}
.y18{bottom:672.904533pt;}
.y1c{bottom:672.915200pt;}
.y161{bottom:672.966800pt;}
.y165{bottom:673.104533pt;}
.y16c{bottom:673.854800pt;}
.yc7{bottom:680.011467pt;}
.y154{bottom:681.498400pt;}
.ycc{bottom:684.579867pt;}
.yb2{bottom:684.842400pt;}
.yce{bottom:685.955200pt;}
.y167{bottom:686.119600pt;}
.y17{bottom:686.237867pt;}
.y16{bottom:686.243200pt;}
.yd1{bottom:686.617867pt;}
.y163{bottom:687.452933pt;}
.y164{bottom:688.037867pt;}
.y16b{bottom:688.788133pt;}
.y13{bottom:690.296800pt;}
.y14a{bottom:692.515733pt;}
.y14f{bottom:692.694933pt;}
.y160{bottom:694.302800pt;}
.ya8{bottom:695.859600pt;}
.yad{bottom:696.038800pt;}
.ycd{bottom:697.288533pt;}
.yc9{bottom:697.293867pt;}
.ycb{bottom:697.911200pt;}
.yd0{bottom:698.619867pt;}
.y153{bottom:699.098400pt;}
.y15{bottom:699.571200pt;}
.yc6{bottom:701.347467pt;}
.yb1{bottom:702.442400pt;}
.y162{bottom:703.452933pt;}
.y16a{bottom:703.721467pt;}
.yca{bottom:709.913200pt;}
.y149{bottom:710.115733pt;}
.y14e{bottom:710.294933pt;}
.ycf{bottom:710.616533pt;}
.yc8{bottom:710.621867pt;}
.ya7{bottom:713.459600pt;}
.yac{bottom:713.638800pt;}
.y152{bottom:716.698400pt;}
.yb0{bottom:720.042400pt;}
.y7{bottom:720.560400pt;}
.y12{bottom:722.322400pt;}
.y148{bottom:727.715733pt;}
.y14d{bottom:727.894933pt;}
.y15f{bottom:728.218133pt;}
.ya6{bottom:731.059600pt;}
.yab{bottom:731.238800pt;}
.yc5{bottom:731.483200pt;}
.y151{bottom:734.298400pt;}
.yaf{bottom:737.642400pt;}
.y147{bottom:745.315733pt;}
.y14c{bottom:745.494933pt;}
.y1ce{bottom:748.419600pt;}
.ya5{bottom:748.659600pt;}
.yaa{bottom:748.838800pt;}
.y1dd{bottom:750.090400pt;}
.y150{bottom:750.667600pt;}
.y11{bottom:753.932800pt;}
.yae{bottom:754.011467pt;}
.y15e{bottom:757.937067pt;}
.y1d3{bottom:760.986400pt;}
.y6{bottom:761.600533pt;}
.y146{bottom:761.684933pt;}
.y14b{bottom:761.864000pt;}
.yc4{bottom:763.091867pt;}
.ya4{bottom:765.028800pt;}
.ya9{bottom:765.207867pt;}
.y1cd{bottom:765.755600pt;}
.y1dc{bottom:766.326133pt;}
.y1d2{bottom:778.322400pt;}
.y145{bottom:778.783467pt;}
.ya3{bottom:782.127333pt;}
.y1cc{bottom:783.091600pt;}
.y1db{bottom:783.662133pt;}
.y1d1{bottom:795.658400pt;}
.y144{bottom:796.383467pt;}
.y15c{bottom:798.720133pt;}
.yc3{bottom:798.775467pt;}
.y53{bottom:799.225467pt;}
.ya2{bottom:799.727333pt;}
.y1c4{bottom:800.206267pt;}
.y1cb{bottom:800.427600pt;}
.y1da{bottom:800.998133pt;}
.y13f{bottom:802.472533pt;}
.y7c{bottom:803.774133pt;}
.y1d0{bottom:812.994400pt;}
.y143{bottom:813.983467pt;}
.y5{bottom:814.069275pt;}
.y13e{bottom:815.805867pt;}
.y7b{bottom:817.107467pt;}
.y1ca{bottom:817.200400pt;}
.ya1{bottom:817.327333pt;}
.y1d9{bottom:818.334133pt;}
.y15b{bottom:818.722800pt;}
.yc2{bottom:818.778133pt;}
.y52{bottom:819.228133pt;}
.y1cf{bottom:829.763600pt;}
.y142{bottom:831.583467pt;}
.ya0{bottom:834.927333pt;}
.y15a{bottom:838.725467pt;}
.yc1{bottom:838.780800pt;}
.y51{bottom:839.230800pt;}
.y13d{bottom:841.139200pt;}
.y7a{bottom:842.440800pt;}
.y141{bottom:847.952533pt;}
.y9f{bottom:851.296533pt;}
.y13c{bottom:853.139200pt;}
.y79{bottom:854.440800pt;}
.y4{bottom:868.760533pt;}
.y159{bottom:871.721733pt;}
.yb7{bottom:875.065733pt;}
.y13b{bottom:878.472533pt;}
.y78{bottom:879.774133pt;}
.y65{bottom:881.281200pt;}
.y158{bottom:887.565467pt;}
.y13a{bottom:890.472533pt;}
.yb6{bottom:890.909333pt;}
.y77{bottom:891.774133pt;}
.y1d8{bottom:901.224267pt;}
.y157{bottom:905.165467pt;}
.y140{bottom:905.503333pt;}
.yb5{bottom:908.509333pt;}
.y9e{bottom:908.847200pt;}
.y139{bottom:915.805867pt;}
.y64{bottom:915.947867pt;}
.y76{bottom:917.107467pt;}
.y1d7{bottom:917.460000pt;}
.y156{bottom:922.765467pt;}
.yb4{bottom:926.109333pt;}
.y138{bottom:927.805867pt;}
.y75{bottom:929.107467pt;}
.y1d6{bottom:934.796000pt;}
.y155{bottom:940.365467pt;}
.yb3{bottom:943.709333pt;}
.y1d5{bottom:952.132000pt;}
.y1c9{bottom:952.301200pt;}
.y137{bottom:953.139200pt;}
.y74{bottom:954.440800pt;}
.y1c8{bottom:969.064533pt;}
.y136{bottom:969.152533pt;}
.y1d4{bottom:969.468000pt;}
.y73{bottom:970.454000pt;}
.y1c7{bottom:986.400533pt;}
.y1c6{bottom:1003.736533pt;}
.yba{bottom:1016.329067pt;}
.y1c5{bottom:1021.072533pt;}
.yb9{bottom:1037.665067pt;}
.yb8{bottom:1060.326400pt;}
.h5{height:18.363281pt;}
.h11{height:21.951893pt;}
.h6{height:25.148438pt;}
.h13{height:26.357333pt;}
.h16{height:30.122667pt;}
.h1d{height:31.769515pt;}
.h8{height:32.005333pt;}
.h9{height:33.888000pt;}
.h23{height:36.900267pt;}
.h7{height:37.653333pt;}
.h20{height:38.200000pt;}
.hc{height:38.218667pt;}
.hd{height:38.248000pt;}
.he{height:38.261333pt;}
.hb{height:38.282667pt;}
.h24{height:38.290133pt;}
.h21{height:38.290667pt;}
.h1e{height:38.298667pt;}
.h12{height:39.711893pt;}
.h1a{height:40.665600pt;}
.h1b{height:41.418667pt;}
.h26{height:42.197333pt;}
.h17{height:45.184000pt;}
.h25{height:48.906667pt;}
.h10{height:48.949333pt;}
.h22{height:51.624928pt;}
.hf{height:51.625461pt;}
.h18{height:51.626667pt;}
.ha{height:52.714667pt;}
.h1c{height:55.585451pt;}
.h19{height:67.776000pt;}
.h2{height:77.707820pt;}
.h1f{height:80.005333pt;}
.h15{height:105.493333pt;}
.h4{height:153.334560pt;}
.h14{height:161.440000pt;}
.h3{height:253.135229pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:37.795333pt;}
.x6{left:43.208933pt;}
.x17{left:53.192667pt;}
.x18{left:54.934667pt;}
.x7{left:64.332267pt;}
.x3a{left:150.490000pt;}
.x21{left:154.269467pt;}
.x3b{left:164.799467pt;}
.x5{left:166.988533pt;}
.x22{left:168.579067pt;}
.x28{left:178.140400pt;}
.x3f{left:187.040400pt;}
.x32{left:215.905467pt;}
.x14{left:222.992133pt;}
.x8{left:231.573067pt;}
.x50{left:236.918267pt;}
.x40{left:255.403067pt;}
.x29{left:259.177067pt;}
.x3{left:266.827733pt;}
.x38{left:276.718667pt;}
.x45{left:278.949733pt;}
.x1f{left:280.498133pt;}
.x39{left:291.028133pt;}
.x20{left:294.807733pt;}
.x9{left:299.607867pt;}
.xa{left:307.172800pt;}
.x41{left:321.549600pt;}
.x3e{left:325.848667pt;}
.x26{left:329.628133pt;}
.x2a{left:338.834667pt;}
.x3d{left:340.290533pt;}
.x25{left:344.070000pt;}
.x2b{left:346.393733pt;}
.xb{left:375.198400pt;}
.xc{left:382.757467pt;}
.x4a{left:394.934667pt;}
.x48{left:402.143733pt;}
.x15{left:403.653467pt;}
.x1{left:404.850400pt;}
.x49{left:416.935467pt;}
.x16{left:419.529467pt;}
.x23{left:423.975733pt;}
.x19{left:427.086533pt;}
.x1a{left:428.976400pt;}
.x33{left:430.425200pt;}
.x3c{left:434.505867pt;}
.x24{left:438.285333pt;}
.x2c{left:441.106400pt;}
.x1b{left:444.094533pt;}
.x34{left:445.543333pt;}
.x4b{left:465.393867pt;}
.xd{left:467.839333pt;}
.x4c{left:479.705600pt;}
.x35{left:484.600133pt;}
.x42{left:485.959067pt;}
.x1c{left:488.379733pt;}
.x4f{left:508.208667pt;}
.x2f{left:516.699733pt;}
.x4e{left:522.650533pt;}
.x36{left:525.324533pt;}
.x1d{left:529.104133pt;}
.x4d{left:534.649733pt;}
.x12{left:536.086133pt;}
.x37{left:539.634133pt;}
.x1e{left:543.413600pt;}
.x31{left:546.483733pt;}
.x30{left:548.277733pt;}
.xe{left:562.008000pt;}
.x43{left:566.545733pt;}
.x2d{left:592.282667pt;}
.x46{left:598.785733pt;}
.xf{left:600.344933pt;}
.x44{left:650.078667pt;}
.x4{left:652.518533pt;}
.x47{left:657.637733pt;}
.x27{left:667.451333pt;}
.x10{left:675.800000pt;}
.x2e{left:678.992133pt;}
.x11{left:683.359067pt;}
.x13{left:752.170267pt;}
}




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