
    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_988ca688ee85d855dbca9f0b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_82429172f6ad419d3b6cf6cf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_d8d456ace27d455860bdb253.woff')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_858d66c0d14b3d22332b907f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_b22f4417d5b93c5ba3bda332.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_746a6648c3e833ab230e2f3f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_99f141c67a60aeebde76484e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.863281;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_0de2abb0fff3fcd2e7e6f482.woff')format("woff");}.ff8{font-family:ff8;line-height:0.863281;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_f752dd22020afc1c114b792c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.142090;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_0fe4eb82db8a00e00b59cd98.woff')format("woff");}.ffa{font-family:ffa;line-height:0.976562;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_62b286c909c7e1f8d5ed3c5c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.046387;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_2bde4d78f2b0a1118f9bc9e9.woff')format("woff");}.ffc{font-family:ffc;line-height:1.053223;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_4b39ce1b0af0e013e4294667.woff')format("woff");}.ffd{font-family:ffd;line-height:0.999512;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_b3fc7cf30751b7cc259ccce0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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_d8cac1dbc7d3aad90acec888.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;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_9ab8520d2a817e5e1971e993.woff')format("woff");}.ff10{font-family:ff10;line-height:0.934082;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;}
.m2{transform:matrix(0.243766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243766,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.244160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244160,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249553,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252159,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252166,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252491,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254131,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254222,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255761,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.256231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256231,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.v9{vertical-align:-45.354911px;}
.va{vertical-align:-42.718856px;}
.v7{vertical-align:-33.120000px;}
.v8{vertical-align:-29.752621px;}
.v2{vertical-align:-27.360000px;}
.v6{vertical-align:-17.639890px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v1{vertical-align:27.360000px;}
.v3{vertical-align:32.065937px;}
.ls25{letter-spacing:-1.681163px;}
.ls31{letter-spacing:-1.584000px;}
.ls20{letter-spacing:-1.459876px;}
.ls23{letter-spacing:-1.457791px;}
.ls1d{letter-spacing:-1.312711px;}
.ls26{letter-spacing:-1.140369px;}
.ls1f{letter-spacing:-1.000721px;}
.ls11{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.501000px;}
.ls6{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.170967px;}
.ls7{letter-spacing:-0.149122px;}
.lsb{letter-spacing:-0.107072px;}
.lsd{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.000003px;}
.ls12{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.250800px;}
.ls27{letter-spacing:0.501120px;}
.ls22{letter-spacing:0.712278px;}
.ls0{letter-spacing:0.720000px;}
.lse{letter-spacing:0.792000px;}
.ls14{letter-spacing:0.900000px;}
.ls5{letter-spacing:0.924000px;}
.ls1b{letter-spacing:0.936000px;}
.ls1c{letter-spacing:1.152000px;}
.ls1a{letter-spacing:1.206000px;}
.lsc{letter-spacing:1.353113px;}
.lsa{letter-spacing:1.670570px;}
.ls28{letter-spacing:1.847236px;}
.ls1{letter-spacing:2.160000px;}
.ls24{letter-spacing:2.962608px;}
.ls21{letter-spacing:2.966844px;}
.ls1e{letter-spacing:3.108123px;}
.ls2c{letter-spacing:3.600000px;}
.ls2{letter-spacing:6.660000px;}
.ls9{letter-spacing:16.776000px;}
.ls2e{letter-spacing:17.424000px;}
.ls13{letter-spacing:25.200000px;}
.ls8{letter-spacing:33.840000px;}
.ls2f{letter-spacing:39.720000px;}
.ls2b{letter-spacing:53.424000px;}
.ls2d{letter-spacing:74.160000px;}
.ls30{letter-spacing:133.200000px;}
.ls3{letter-spacing:136.944000px;}
.ls17{letter-spacing:379.261368px;}
.ls16{letter-spacing:390.640858px;}
.ls18{letter-spacing:405.613300px;}
.ls15{letter-spacing:416.747911px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.wsf{word-spacing:-71.928000px;}
.ws29{word-spacing:-51.772544px;}
.ws25{word-spacing:-50.849013px;}
.ws2e{word-spacing:-49.816394px;}
.ws24{word-spacing:-47.802528px;}
.ws11{word-spacing:-47.770800px;}
.ws32{word-spacing:-47.730588px;}
.ws2d{word-spacing:-46.992500px;}
.ws28{word-spacing:-46.934164px;}
.ws31{word-spacing:-45.024930px;}
.wsa{word-spacing:-39.055013px;}
.ws22{word-spacing:-21.768004px;}
.ws23{word-spacing:-21.768000px;}
.ws2c{word-spacing:-21.399135px;}
.ws27{word-spacing:-21.372570px;}
.ws2b{word-spacing:-21.228168px;}
.ws30{word-spacing:-20.503156px;}
.ws3{word-spacing:-19.325283px;}
.ws19{word-spacing:-19.152000px;}
.ws10{word-spacing:-18.792000px;}
.ws1a{word-spacing:-18.329388px;}
.ws1e{word-spacing:-18.303218px;}
.ws7{word-spacing:-18.246041px;}
.ws14{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.812694px;}
.wsc{word-spacing:-17.784614px;}
.ws12{word-spacing:-17.712000px;}
.ws1b{word-spacing:-17.328667px;}
.ws1f{word-spacing:-17.162849px;}
.ws34{word-spacing:-16.416000px;}
.ws16{word-spacing:-13.086000px;}
.ws17{word-spacing:-12.816000px;}
.ws18{word-spacing:-12.600000px;}
.ws6{word-spacing:-11.880000px;}
.ws1{word-spacing:-11.520000px;}
.ws15{word-spacing:-11.379000px;}
.ws13{word-spacing:-11.160000px;}
.ws9{word-spacing:-10.371024px;}
.ws5{word-spacing:0.000000px;}
.ws2f{word-spacing:145.728205px;}
.ws2a{word-spacing:150.272656px;}
.ws26{word-spacing:151.104571px;}
.ws33{word-spacing:151.470099px;}
.ws2{word-spacing:264.247937px;}
.ws1d{word-spacing:308.891759px;}
.ws20{word-spacing:333.250826px;}
.ws1c{word-spacing:349.379765px;}
.ws21{word-spacing:371.412043px;}
.ws8{word-spacing:1727.324601px;}
.wsd{word-spacing:1729.358553px;}
.wsb{word-spacing:2134.449539px;}
._16{margin-left:-741.402234px;}
._17{margin-left:-716.343364px;}
._18{margin-left:-695.998226px;}
._13{margin-left:-638.570317px;}
._15{margin-left:-613.943657px;}
._14{margin-left:-612.919997px;}
._1e{margin-left:-369.258346px;}
._3e{margin-left:-358.286436px;}
._3a{margin-left:-354.638624px;}
._24{margin-left:-349.064184px;}
._22{margin-left:-337.214019px;}
._19{margin-left:-289.086802px;}
._1b{margin-left:-284.556814px;}
._1d{margin-left:-264.583686px;}
._20{margin-left:-259.854214px;}
._1c{margin-left:-250.317167px;}
._23{margin-left:-240.086995px;}
._1a{margin-left:-229.373327px;}
._21{margin-left:-225.273376px;}
._1f{margin-left:-220.148131px;}
._2a{margin-left:-179.122650px;}
._2f{margin-left:-173.474536px;}
._2c{margin-left:-141.350453px;}
._2e{margin-left:-139.004822px;}
._41{margin-left:-108.881962px;}
._37{margin-left:-107.445821px;}
._39{margin-left:-101.876253px;}
._3d{margin-left:-100.187892px;}
._3f{margin-left:-98.437432px;}
._12{margin-left:-96.947912px;}
._2b{margin-left:-89.146608px;}
._3b{margin-left:-64.294110px;}
._40{margin-left:-62.311115px;}
._38{margin-left:-57.291019px;}
._3c{margin-left:-56.080947px;}
._29{margin-left:-54.347996px;}
._2d{margin-left:-53.074760px;}
._e{margin-left:-5.941440px;}
._d{margin-left:-4.564800px;}
._8{margin-left:-3.507840px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.914560px;}
._c{width:4.806720px;}
._9{width:6.408000px;}
._a{width:7.724160px;}
._f{width:9.017280px;}
._27{width:10.293120px;}
._b{width:11.358720px;}
._4{width:12.430560px;}
._5{width:13.536000px;}
._6{width:15.264000px;}
._7{width:16.308960px;}
._33{width:19.843680px;}
._49{width:20.862240px;}
._11{width:22.428960px;}
._10{width:23.760000px;}
._28{width:25.145280px;}
._42{width:26.907840px;}
._51{width:27.976320px;}
._43{width:29.000640px;}
._50{width:31.393440px;}
._26{width:33.015840px;}
._25{width:34.488000px;}
._44{width:38.070720px;}
._4c{width:39.503040px;}
._4b{width:40.515840px;}
._4d{width:52.652160px;}
._47{width:54.516000px;}
._35{width:61.860000px;}
._36{width:62.943840px;}
._31{width:64.368000px;}
._30{width:65.430720px;}
._4a{width:74.271840px;}
._45{width:81.012000px;}
._46{width:82.234080px;}
._56{width:87.082560px;}
._57{width:88.268160px;}
._53{width:95.831040px;}
._52{width:97.018560px;}
._32{width:102.224160px;}
._55{width:132.547200px;}
._54{width:133.862400px;}
._4e{width:166.921440px;}
._4f{width:168.660000px;}
._34{width:280.512000px;}
._48{width:467.178720px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(0,112,192);}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc7{color:rgb(51,51,51);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:41.484098px;}
.fsa{font-size:42.512122px;}
.fs11{font-size:42.731511px;}
.fsf{font-size:42.792609px;}
.fs4{font-size:47.520000px;}
.fs19{font-size:47.730588px;}
.fs17{font-size:49.816394px;}
.fs15{font-size:49.925308px;}
.fs13{font-size:50.849013px;}
.fs5{font-size:53.436895px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fsc{font-size:71.138456px;}
.fs7{font-size:71.250777px;}
.fs9{font-size:71.602211px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:72.984162px;}
.fs10{font-size:73.212872px;}
.fse{font-size:73.317551px;}
.fs6{font-size:77.301133px;}
.fs8{font-size:80.150594px;}
.fs18{font-size:82.012623px;}
.fs14{font-size:85.490281px;}
.fs16{font-size:85.596538px;}
.fs12{font-size:87.072000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y110{bottom:3.240000px;}
.y9d{bottom:4.548563px;}
.ya0{bottom:4.548625px;}
.y87{bottom:4.555066px;}
.y8a{bottom:4.555128px;}
.y3d{bottom:4.886600px;}
.y30{bottom:4.986438px;}
.y10a{bottom:5.074043px;}
.yfa{bottom:5.246476px;}
.y102{bottom:5.295779px;}
.yf2{bottom:5.343584px;}
.y96{bottom:6.716137px;}
.y98{bottom:6.716160px;}
.y80{bottom:6.761353px;}
.y82{bottom:6.761375px;}
.y90{bottom:6.761376px;}
.y67{bottom:7.200000px;}
.y6a{bottom:7.560000px;}
.y6e{bottom:7.605000px;}
.y6c{bottom:7.920000px;}
.y119{bottom:9.000000px;}
.y3e{bottom:9.447462px;}
.y41{bottom:10.171457px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y75{bottom:12.240000px;}
.y11b{bottom:12.960000px;}
.y9f{bottom:13.503314px;}
.y89{bottom:13.522621px;}
.y73{bottom:15.840000px;}
.y3c{bottom:17.591916px;}
.y10c{bottom:20.868756px;}
.ya8{bottom:20.930817px;}
.y9c{bottom:20.930819px;}
.ya2{bottom:20.930834px;}
.ya9{bottom:20.930836px;}
.y99{bottom:20.930846px;}
.y86{bottom:20.960743px;}
.y91{bottom:20.960744px;}
.y92{bottom:20.960760px;}
.y8c{bottom:20.960762px;}
.y83{bottom:20.960773px;}
.yfc{bottom:21.711257px;}
.y104{bottom:21.780708px;}
.yf4{bottom:22.113030px;}
.y40{bottom:24.041293px;}
.y42{bottom:24.041295px;}
.y44{bottom:24.041316px;}
.y46{bottom:24.041336px;}
.y48{bottom:24.041355px;}
.y109{bottom:25.984321px;}
.y10e{bottom:25.984394px;}
.yf9{bottom:27.043816px;}
.y101{bottom:27.119830px;}
.y106{bottom:27.119898px;}
.yf1{bottom:27.544186px;}
.yf6{bottom:27.544254px;}
.y68{bottom:30.600000px;}
.y66{bottom:30.960000px;}
.y9e{bottom:30.986903px;}
.ya1{bottom:30.986965px;}
.y88{bottom:31.031208px;}
.y8b{bottom:31.031270px;}
.yc5{bottom:31.320000px;}
.y4a{bottom:31.404011px;}
.y4c{bottom:31.404031px;}
.y4e{bottom:31.404050px;}
.y50{bottom:31.404070px;}
.y97{bottom:32.337413px;}
.y9b{bottom:32.337426px;}
.y81{bottom:32.383649px;}
.y85{bottom:32.383658px;}
.y24{bottom:32.507603px;}
.y10b{bottom:33.553737px;}
.yfb{bottom:35.062940px;}
.y103{bottom:35.106566px;}
.yf3{bottom:35.711710px;}
.y43{bottom:35.848682px;}
.y45{bottom:35.848703px;}
.y47{bottom:35.848723px;}
.y49{bottom:35.848742px;}
.yff{bottom:36.045000px;}
.yef{bottom:36.720000px;}
.yf7{bottom:37.440000px;}
.y107{bottom:38.205000px;}
.y10d{bottom:38.669380px;}
.yfd{bottom:40.393734px;}
.y105{bottom:40.443993px;}
.y9a{bottom:40.509560px;}
.y84{bottom:40.567480px;}
.yf5{bottom:41.141141px;}
.y4b{bottom:43.815904px;}
.y4d{bottom:43.815923px;}
.y4f{bottom:43.815942px;}
.y25{bottom:49.339608px;}
.ydc{bottom:54.405000px;}
.ydb{bottom:54.765000px;}
.y8{bottom:57.240000px;}
.y2d{bottom:70.004138px;}
.y5{bottom:73.476000px;}
.y26{bottom:98.059458px;}
.y122{bottom:109.476000px;}
.yc2{bottom:117.756000px;}
.ye8{bottom:120.276000px;}
.y71{bottom:123.876000px;}
.y22{bottom:127.836000px;}
.y146{bottom:131.436000px;}
.y121{bottom:133.236000px;}
.yc1{bottom:141.516000px;}
.ye7{bottom:144.036000px;}
.y23{bottom:145.781917px;}
.y27{bottom:146.776933px;}
.y70{bottom:147.996000px;}
.y2e{bottom:151.140171px;}
.y145{bottom:155.190000px;}
.y120{bottom:156.630000px;}
.y6f{bottom:164.910000px;}
.yc0{bottom:165.270000px;}
.ye6{bottom:167.790000px;}
.y144{bottom:179.310000px;}
.y11f{bottom:180.750000px;}
.ybf{bottom:189.030000px;}
.y6d{bottom:189.390000px;}
.ye5{bottom:191.550000px;}
.y28{bottom:195.404176px;}
.y143{bottom:203.115000px;}
.y11e{bottom:204.915000px;}
.ybe{bottom:212.835000px;}
.y6b{bottom:214.275000px;}
.ye4{bottom:215.715000px;}
.y142{bottom:226.875000px;}
.y11d{bottom:228.675000px;}
.ybd{bottom:229.755000px;}
.y69{bottom:239.115000px;}
.ye3{bottom:239.475000px;}
.y29{bottom:244.124025px;}
.y141{bottom:250.635000px;}
.y11c{bottom:252.435000px;}
.ybc{bottom:254.595000px;}
.ye2{bottom:263.235000px;}
.y65{bottom:263.595000px;}
.y11a{bottom:269.355000px;}
.y2f{bottom:269.950829px;}
.y140{bottom:274.395000px;}
.ybb{bottom:279.075000px;}
.ye1{bottom:286.995000px;}
.y2a{bottom:292.841501px;}
.y13f{bottom:298.155000px;}
.y118{bottom:299.235000px;}
.yba{bottom:303.555000px;}
.ye0{bottom:310.755000px;}
.y64{bottom:319.035000px;}
.y13e{bottom:321.945000px;}
.ydf{bottom:327.705000px;}
.y117{bottom:332.385000px;}
.yb9{bottom:335.985000px;}
.y2b{bottom:341.557789px;}
.y63{bottom:342.825000px;}
.y13d{bottom:345.705000px;}
.yde{bottom:352.185000px;}
.y32{bottom:352.870150px;}
.y116{bottom:356.145000px;}
.yb8{bottom:359.745000px;}
.y62{bottom:367.305000px;}
.y13c{bottom:369.825000px;}
.ydd{bottom:377.025000px;}
.y115{bottom:379.905000px;}
.yb7{bottom:383.865000px;}
.y2c{bottom:390.188593px;}
.y61{bottom:391.065000px;}
.y13b{bottom:393.585000px;}
.yda{bottom:401.505000px;}
.y114{bottom:404.385000px;}
.yb6{bottom:407.625000px;}
.y31{bottom:409.247927px;}
.y60{bottom:414.825000px;}
.y13a{bottom:417.345000px;}
.y113{bottom:428.145000px;}
.yb5{bottom:431.385000px;}
.y5f{bottom:438.585000px;}
.y139{bottom:441.105000px;}
.y112{bottom:451.590000px;}
.yb4{bottom:455.190000px;}
.y5e{bottom:462.390000px;}
.y138{bottom:464.910000px;}
.y111{bottom:475.350000px;}
.yb3{bottom:478.950000px;}
.yd9{bottom:480.750000px;}
.y5d{bottom:486.870000px;}
.y137{bottom:488.670000px;}
.y10f{bottom:491.910000px;}
.yb2{bottom:502.710000px;}
.yd8{bottom:504.510000px;}
.y5c{bottom:510.630000px;}
.y136{bottom:512.430000px;}
.yb1{bottom:526.830000px;}
.yd7{bottom:528.630000px;}
.y5b{bottom:534.390000px;}
.y135{bottom:536.190000px;}
.yb0{bottom:550.590000px;}
.yd6{bottom:552.750000px;}
.y5a{bottom:558.150000px;}
.y134{bottom:559.950000px;}
.y21{bottom:568.230000px;}
.yaf{bottom:574.020000px;}
.yd5{bottom:576.540000px;}
.y59{bottom:581.940000px;}
.y133{bottom:584.100000px;}
.y20{bottom:592.020000px;}
.yae{bottom:598.140000px;}
.yd4{bottom:600.300000px;}
.y58{bottom:605.700000px;}
.y132{bottom:607.860000px;}
.y1f{bottom:615.780000px;}
.yad{bottom:621.900000px;}
.yd3{bottom:624.060000px;}
.y57{bottom:629.820000px;}
.y131{bottom:631.620000px;}
.y1e{bottom:639.540000px;}
.yac{bottom:645.660000px;}
.yd2{bottom:647.820000px;}
.y56{bottom:653.940000px;}
.y130{bottom:655.380000px;}
.y1d{bottom:663.300000px;}
.yab{bottom:669.420000px;}
.yd1{bottom:671.580000px;}
.y55{bottom:677.700000px;}
.y12f{bottom:679.140000px;}
.y1c{bottom:687.060000px;}
.ya7{bottom:689.249919px;}
.yd0{bottom:695.340000px;}
.y54{bottom:701.850000px;}
.y12e{bottom:702.930000px;}
.yaa{bottom:710.130000px;}
.y1b{bottom:710.850000px;}
.ycf{bottom:712.290000px;}
.y53{bottom:725.610000px;}
.y12d{bottom:726.690000px;}
.y1a{bottom:734.610000px;}
.yce{bottom:737.130000px;}
.y52{bottom:749.370000px;}
.y12c{bottom:750.450000px;}
.y19{bottom:758.010000px;}
.ycd{bottom:761.610000px;}
.y3f{bottom:768.749919px;}
.ya6{bottom:773.130000px;}
.y12b{bottom:774.570000px;}
.y18{bottom:782.490000px;}
.ycc{bottom:786.090000px;}
.y51{bottom:792.930000px;}
.ya5{bottom:796.890000px;}
.y12a{bottom:798.330000px;}
.y17{bottom:806.250000px;}
.yfe{bottom:807.690000px;}
.ya4{bottom:820.650000px;}
.y100{bottom:820.949919px;}
.y129{bottom:822.090000px;}
.y108{bottom:823.124919px;}
.y3b{bottom:827.099919px;}
.y16{bottom:830.055000px;}
.y3a{bottom:836.175000px;}
.y95{bottom:840.449919px;}
.ycb{bottom:841.575000px;}
.y128{bottom:845.895000px;}
.y15{bottom:853.815000px;}
.ya3{bottom:861.375000px;}
.y39{bottom:863.895000px;}
.yca{bottom:865.695000px;}
.y127{bottom:869.655000px;}
.y14{bottom:877.575000px;}
.yee{bottom:881.535000px;}
.y38{bottom:887.655000px;}
.yc9{bottom:889.455000px;}
.y126{bottom:893.415000px;}
.yf0{bottom:895.499919px;}
.yf8{bottom:896.250000px;}
.y94{bottom:900.615000px;}
.y13{bottom:901.335000px;}
.yc8{bottom:906.735000px;}
.y37{bottom:911.415000px;}
.y125{bottom:917.175000px;}
.y8f{bottom:919.949919px;}
.y12{bottom:925.095000px;}
.yc7{bottom:931.215000px;}
.y36{bottom:935.175000px;}
.y93{bottom:940.935000px;}
.y11{bottom:948.855000px;}
.y79{bottom:952.485000px;}
.yc6{bottom:955.725000px;}
.yed{bottom:965.085000px;}
.y10{bottom:972.645000px;}
.y78{bottom:976.965000px;}
.y8e{bottom:980.205000px;}
.y124{bottom:988.485000px;}
.yec{bottom:988.845000px;}
.yf{bottom:996.405000px;}
.y7f{bottom:999.899919px;}
.y77{bottom:1001.445000px;}
.y123{bottom:1012.245000px;}
.yeb{bottom:1012.605000px;}
.ye{bottom:1020.525000px;}
.y8d{bottom:1020.885000px;}
.y76{bottom:1025.925000px;}
.yc4{bottom:1036.005000px;}
.yea{bottom:1036.365000px;}
.yd{bottom:1044.285000px;}
.y72{bottom:1050.405000px;}
.y74{bottom:1053.524919px;}
.yc3{bottom:1059.765000px;}
.y7e{bottom:1060.125000px;}
.yc{bottom:1067.685000px;}
.ye9{bottom:1083.570000px;}
.y7d{bottom:1083.930000px;}
.yb{bottom:1091.490000px;}
.y35{bottom:1107.330000px;}
.y7c{bottom:1107.690000px;}
.ya{bottom:1117.410000px;}
.y34{bottom:1131.090000px;}
.y7b{bottom:1131.450000px;}
.y9{bottom:1149.090000px;}
.y33{bottom:1154.850000px;}
.y7a{bottom:1155.210000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h1d{height:23.760000px;}
.h1f{height:23.796000px;}
.h1e{height:24.120000px;}
.h2d{height:24.156000px;}
.h4e{height:25.236000px;}
.h5{height:27.000000px;}
.h4f{height:29.160000px;}
.h14{height:29.175184px;}
.h20{height:32.436000px;}
.h4a{height:34.889009px;}
.h44{height:36.413643px;}
.h3d{height:36.493255px;}
.h37{height:37.168444px;}
.h1b{height:40.714373px;}
.h15{height:41.723323px;}
.h29{height:41.938641px;}
.h23{height:41.998605px;}
.h49{height:46.821656px;}
.h1c{height:47.520000px;}
.h30{height:47.556000px;}
.h2f{height:47.880000px;}
.h43{height:48.867742px;}
.h3c{height:48.974582px;}
.h10{height:49.019700px;}
.h12{height:49.261482px;}
.h36{height:49.880697px;}
.h7{height:50.229844px;}
.h27{height:52.875881px;}
.h21{height:52.951483px;}
.hf{height:53.182274px;}
.h17{height:55.124737px;}
.h11{height:55.142669px;}
.h4{height:55.147500px;}
.he{height:55.733012px;}
.h47{height:58.351832px;}
.h2e{height:59.800781px;}
.h4b{height:59.947703px;}
.h3a{height:60.826095px;}
.h41{height:60.901778px;}
.h34{height:61.951565px;}
.h3e{height:62.489722px;}
.h45{height:62.567392px;}
.h38{height:63.645891px;}
.h19{height:65.893385px;}
.h3{height:66.757500px;}
.h2b{height:67.814852px;}
.h25{height:67.911814px;}
.h18{height:69.783769px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h31{height:71.316000px;}
.h16{height:71.629964px;}
.h28{height:71.818681px;}
.h2a{height:71.854430px;}
.h22{height:71.921367px;}
.h24{height:71.957167px;}
.h2{height:72.562500px;}
.h1a{height:72.583131px;}
.h2c{height:73.216910px;}
.h26{height:73.321595px;}
.h40{height:73.836000px;}
.ha{height:73.998281px;}
.h33{height:74.004654px;}
.hc{height:75.093750px;}
.h9{height:75.251250px;}
.h32{height:75.636000px;}
.h4c{height:80.450859px;}
.h48{height:80.490904px;}
.h13{height:81.085636px;}
.h3f{height:83.862292px;}
.h3b{height:83.904035px;}
.h46{height:83.966526px;}
.h42{height:84.008321px;}
.h39{height:85.413891px;}
.h35{height:85.456407px;}
.h8{height:97.233750px;}
.h4d{height:315.795000px;}
.hd{height:438.460840px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:46.050283px;}
.wf{width:46.124844px;}
.w4{width:104.076000px;}
.w19{width:104.436000px;}
.w1d{width:108.756000px;}
.w1f{width:109.476000px;}
.wb{width:109.836000px;}
.w8{width:112.716000px;}
.w22{width:113.112000px;}
.w1e{width:118.836000px;}
.w1a{width:121.356000px;}
.w1b{width:122.076000px;}
.w20{width:122.436000px;}
.w18{width:122.796000px;}
.we{width:124.272000px;}
.w24{width:124.596000px;}
.wc{width:127.836000px;}
.w23{width:130.356000px;}
.w16{width:131.832000px;}
.w28{width:132.156000px;}
.w27{width:132.876000px;}
.w10{width:133.956000px;}
.w31{width:140.832000px;}
.wa{width:141.192000px;}
.w25{width:148.032000px;}
.w26{width:150.555000px;}
.w32{width:154.110000px;}
.w33{width:154.155000px;}
.w11{width:162.795000px;}
.w2c{width:163.047748px;}
.w2e{width:163.048293px;}
.w2d{width:169.949490px;}
.w17{width:170.355000px;}
.wd{width:172.470000px;}
.w2a{width:175.651513px;}
.w9{width:176.475000px;}
.w21{width:180.075000px;}
.w13{width:192.226021px;}
.w14{width:198.001821px;}
.w12{width:200.179408px;}
.w15{width:202.642669px;}
.w1c{width:215.385000px;}
.w3{width:298.905000px;}
.w29{width:335.670000px;}
.w30{width:347.145000px;}
.w2b{width:351.825000px;}
.w2f{width:354.750000px;}
.w5{width:571.804650px;}
.w7{width:609.828291px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x44{left:3.027999px;}
.x39{left:7.923000px;}
.x34{left:9.360000px;}
.x41{left:11.017708px;}
.x21{left:13.475437px;}
.x15{left:19.290711px;}
.x14{left:26.668281px;}
.x20{left:27.729422px;}
.x31{left:30.033172px;}
.x1a{left:32.893872px;}
.x45{left:37.321363px;}
.x4d{left:40.613655px;}
.x80{left:43.230000px;}
.x8{left:47.550000px;}
.x3c{left:54.000000px;}
.x77{left:60.088011px;}
.x72{left:63.822357px;}
.x76{left:75.240950px;}
.x53{left:77.775895px;}
.x4c{left:79.233942px;}
.x59{left:83.043332px;}
.x16{left:85.435188px;}
.x71{left:90.747787px;}
.x13{left:94.768255px;}
.x5{left:95.796000px;}
.x69{left:98.315987px;}
.x64{left:99.395987px;}
.x6a{left:100.836000px;}
.x6f{left:104.436000px;}
.x60{left:107.676000px;}
.x7b{left:108.755987px;}
.x2d{left:109.916806px;}
.x33{left:111.276000px;}
.xa{left:113.075987px;}
.x49{left:117.454674px;}
.x51{left:119.272537px;}
.x40{left:124.914907px;}
.x23{left:126.930000px;}
.xe{left:132.515987px;}
.x2c{left:135.022194px;}
.x4b{left:136.638343px;}
.x58{left:138.608107px;}
.x43{left:144.360722px;}
.x1d{left:147.671987px;}
.xc{left:149.111987px;}
.x70{left:150.395555px;}
.xf{left:152.714987px;}
.x17{left:155.485918px;}
.x48{left:158.868915px;}
.x11{left:161.714987px;}
.x50{left:164.022486px;}
.x5b{left:165.674987px;}
.x3f{left:166.906498px;}
.x56{left:168.846638px;}
.x12{left:170.055030px;}
.x5f{left:173.234987px;}
.x4f{left:174.671164px;}
.x30{left:176.972652px;}
.x55{left:179.370853px;}
.x4a{left:180.762767px;}
.x32{left:182.234987px;}
.x52{left:186.208439px;}
.x42{left:189.128575px;}
.x57{left:190.799213px;}
.x3{left:196.274987px;}
.xb{left:218.594987px;}
.x35{left:224.715000px;}
.x6b{left:226.155000px;}
.x61{left:230.475000px;}
.x73{left:236.994000px;}
.x18{left:250.164089px;}
.x2b{left:253.236696px;}
.xd{left:263.264987px;}
.x1f{left:266.955000px;}
.x19{left:276.302605px;}
.x2a{left:278.339094px;}
.x6{left:290.634000px;}
.x7d{left:306.825000px;}
.x22{left:312.944987px;}
.x2f{left:320.261145px;}
.x10{left:322.664987px;}
.x2{left:333.509987px;}
.x3e{left:340.379980px;}
.x4{left:342.869987px;}
.x47{left:344.354959px;}
.x1e{left:346.109987px;}
.x54{left:347.954959px;}
.x7a{left:350.070000px;}
.x78{left:356.544000px;}
.x6c{left:374.910000px;}
.x7{left:394.710000px;}
.x36{left:401.910000px;}
.x29{left:405.211606px;}
.x65{left:406.949987px;}
.x66{left:410.910000px;}
.x7c{left:422.069987px;}
.x5c{left:423.540000px;}
.x28{left:430.314003px;}
.x74{left:440.100000px;}
.x3b{left:446.940000px;}
.x7e{left:448.380000px;}
.x79{left:450.540000px;}
.x3a{left:454.829959px;}
.x1b{left:468.682266px;}
.x2e{left:472.415464px;}
.x25{left:487.710135px;}
.x9{left:498.780000px;}
.x75{left:501.329959px;}
.x67{left:525.090000px;}
.x6d{left:526.170000px;}
.x4e{left:536.609987px;}
.x46{left:540.569987px;}
.x37{left:543.810000px;}
.x5d{left:547.050000px;}
.x5a{left:550.649987px;}
.x62{left:556.050000px;}
.x27{left:558.352678px;}
.x3d{left:581.610000px;}
.x26{left:583.455075px;}
.x24{left:598.062010px;}
.x7f{left:603.210000px;}
.x5e{left:652.215000px;}
.x38{left:654.375000px;}
.x68{left:656.175000px;}
.x6e{left:660.135000px;}
.x63{left:675.975000px;}
.x1c{left:737.564987px;}
.x1{left:797.684987px;}
@media print{
.v9{vertical-align:-40.315476pt;}
.va{vertical-align:-37.972317pt;}
.v7{vertical-align:-29.440000pt;}
.v8{vertical-align:-26.446775pt;}
.v2{vertical-align:-24.320000pt;}
.v6{vertical-align:-15.679902pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v1{vertical-align:24.320000pt;}
.v3{vertical-align:28.503055pt;}
.ls25{letter-spacing:-1.494367pt;}
.ls31{letter-spacing:-1.408000pt;}
.ls20{letter-spacing:-1.297667pt;}
.ls23{letter-spacing:-1.295815pt;}
.ls1d{letter-spacing:-1.166854pt;}
.ls26{letter-spacing:-1.013661pt;}
.ls1f{letter-spacing:-0.889530pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.445333pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.151971pt;}
.ls7{letter-spacing:-0.132553pt;}
.lsb{letter-spacing:-0.095175pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.000003pt;}
.ls12{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.222933pt;}
.ls27{letter-spacing:0.445440pt;}
.ls22{letter-spacing:0.633136pt;}
.ls0{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.704000pt;}
.ls14{letter-spacing:0.800000pt;}
.ls5{letter-spacing:0.821333pt;}
.ls1b{letter-spacing:0.832000pt;}
.ls1c{letter-spacing:1.024000pt;}
.ls1a{letter-spacing:1.072000pt;}
.lsc{letter-spacing:1.202767pt;}
.lsa{letter-spacing:1.484951pt;}
.ls28{letter-spacing:1.641988pt;}
.ls1{letter-spacing:1.920000pt;}
.ls24{letter-spacing:2.633430pt;}
.ls21{letter-spacing:2.637195pt;}
.ls1e{letter-spacing:2.762776pt;}
.ls2c{letter-spacing:3.200000pt;}
.ls2{letter-spacing:5.920000pt;}
.ls9{letter-spacing:14.912000pt;}
.ls2e{letter-spacing:15.488000pt;}
.ls13{letter-spacing:22.400000pt;}
.ls8{letter-spacing:30.080000pt;}
.ls2f{letter-spacing:35.306667pt;}
.ls2b{letter-spacing:47.488000pt;}
.ls2d{letter-spacing:65.920000pt;}
.ls30{letter-spacing:118.400000pt;}
.ls3{letter-spacing:121.728000pt;}
.ls17{letter-spacing:337.121216pt;}
.ls16{letter-spacing:347.236318pt;}
.ls18{letter-spacing:360.545155pt;}
.ls15{letter-spacing:370.442587pt;}
.wse{word-spacing:-64.000000pt;}
.wsf{word-spacing:-63.936000pt;}
.ws29{word-spacing:-46.020039pt;}
.ws25{word-spacing:-45.199123pt;}
.ws2e{word-spacing:-44.281239pt;}
.ws24{word-spacing:-42.491136pt;}
.ws11{word-spacing:-42.462933pt;}
.ws32{word-spacing:-42.427190pt;}
.ws2d{word-spacing:-41.771111pt;}
.ws28{word-spacing:-41.719257pt;}
.ws31{word-spacing:-40.022160pt;}
.wsa{word-spacing:-34.715567pt;}
.ws22{word-spacing:-19.349336pt;}
.ws23{word-spacing:-19.349333pt;}
.ws2c{word-spacing:-19.021453pt;}
.ws27{word-spacing:-18.997840pt;}
.ws2b{word-spacing:-18.869482pt;}
.ws30{word-spacing:-18.225027pt;}
.ws3{word-spacing:-17.178030pt;}
.ws19{word-spacing:-17.024000pt;}
.ws10{word-spacing:-16.704000pt;}
.ws1a{word-spacing:-16.292789pt;}
.ws1e{word-spacing:-16.269527pt;}
.ws7{word-spacing:-16.218703pt;}
.ws14{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.833506pt;}
.wsc{word-spacing:-15.808546pt;}
.ws12{word-spacing:-15.744000pt;}
.ws1b{word-spacing:-15.403259pt;}
.ws1f{word-spacing:-15.255866pt;}
.ws34{word-spacing:-14.592000pt;}
.ws16{word-spacing:-11.632000pt;}
.ws17{word-spacing:-11.392000pt;}
.ws18{word-spacing:-11.200000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws1{word-spacing:-10.240000pt;}
.ws15{word-spacing:-10.114667pt;}
.ws13{word-spacing:-9.920000pt;}
.ws9{word-spacing:-9.218688pt;}
.ws5{word-spacing:0.000000pt;}
.ws2f{word-spacing:129.536183pt;}
.ws2a{word-spacing:133.575695pt;}
.ws26{word-spacing:134.315175pt;}
.ws33{word-spacing:134.640088pt;}
.ws2{word-spacing:234.887055pt;}
.ws1d{word-spacing:274.570452pt;}
.ws20{word-spacing:296.222956pt;}
.ws1c{word-spacing:310.559791pt;}
.ws21{word-spacing:330.144038pt;}
.ws8{word-spacing:1535.399645pt;}
.wsd{word-spacing:1537.207603pt;}
.wsb{word-spacing:1897.288479pt;}
._16{margin-left:-659.024208pt;}
._17{margin-left:-636.749657pt;}
._18{margin-left:-618.665090pt;}
._13{margin-left:-567.618060pt;}
._15{margin-left:-545.727695pt;}
._14{margin-left:-544.817775pt;}
._1e{margin-left:-328.229641pt;}
._3e{margin-left:-318.476832pt;}
._3a{margin-left:-315.234332pt;}
._24{margin-left:-310.279275pt;}
._22{margin-left:-299.745794pt;}
._19{margin-left:-256.966046pt;}
._1b{margin-left:-252.939390pt;}
._1d{margin-left:-235.185499pt;}
._20{margin-left:-230.981524pt;}
._1c{margin-left:-222.504148pt;}
._23{margin-left:-213.410662pt;}
._1a{margin-left:-203.887402pt;}
._21{margin-left:-200.243001pt;}
._1f{margin-left:-195.687227pt;}
._2a{margin-left:-159.220133pt;}
._2f{margin-left:-154.199587pt;}
._2c{margin-left:-125.644847pt;}
._2e{margin-left:-123.559842pt;}
._41{margin-left:-96.783966pt;}
._37{margin-left:-95.507396pt;}
._39{margin-left:-90.556669pt;}
._3d{margin-left:-89.055904pt;}
._3f{margin-left:-87.499940pt;}
._12{margin-left:-86.175922pt;}
._2b{margin-left:-79.241429pt;}
._3b{margin-left:-57.150320pt;}
._40{margin-left:-55.387658pt;}
._38{margin-left:-50.925350pt;}
._3c{margin-left:-49.849730pt;}
._29{margin-left:-48.309330pt;}
._2d{margin-left:-47.177564pt;}
._e{margin-left:-5.281280pt;}
._d{margin-left:-4.057600pt;}
._8{margin-left:-3.118080pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.590720pt;}
._c{width:4.272640pt;}
._9{width:5.696000pt;}
._a{width:6.865920pt;}
._f{width:8.015360pt;}
._27{width:9.149440pt;}
._b{width:10.096640pt;}
._4{width:11.049387pt;}
._5{width:12.032000pt;}
._6{width:13.568000pt;}
._7{width:14.496853pt;}
._33{width:17.638827pt;}
._49{width:18.544213pt;}
._11{width:19.936853pt;}
._10{width:21.120000pt;}
._28{width:22.351360pt;}
._42{width:23.918080pt;}
._51{width:24.867840pt;}
._43{width:25.778347pt;}
._50{width:27.905280pt;}
._26{width:29.347413pt;}
._25{width:30.656000pt;}
._44{width:33.840640pt;}
._4c{width:35.113813pt;}
._4b{width:36.014080pt;}
._4d{width:46.801920pt;}
._47{width:48.458667pt;}
._35{width:54.986667pt;}
._36{width:55.950080pt;}
._31{width:57.216000pt;}
._30{width:58.160640pt;}
._4a{width:66.019413pt;}
._45{width:72.010667pt;}
._46{width:73.096960pt;}
._56{width:77.406720pt;}
._57{width:78.460587pt;}
._53{width:85.183147pt;}
._52{width:86.238720pt;}
._32{width:90.865920pt;}
._55{width:117.819733pt;}
._54{width:118.988800pt;}
._4e{width:148.374613pt;}
._4f{width:149.920000pt;}
._34{width:249.344000pt;}
._48{width:415.269973pt;}
.fsd{font-size:36.874754pt;}
.fsa{font-size:37.788553pt;}
.fs11{font-size:37.983565pt;}
.fsf{font-size:38.037874pt;}
.fs4{font-size:42.240000pt;}
.fs19{font-size:42.427190pt;}
.fs17{font-size:44.281239pt;}
.fs15{font-size:44.378051pt;}
.fs13{font-size:45.199123pt;}
.fs5{font-size:47.499463pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fsc{font-size:63.234183pt;}
.fs7{font-size:63.334024pt;}
.fs9{font-size:63.646409pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:64.874811pt;}
.fs10{font-size:65.078108pt;}
.fse{font-size:65.171157pt;}
.fs6{font-size:68.712118pt;}
.fs8{font-size:71.244973pt;}
.fs18{font-size:72.900109pt;}
.fs14{font-size:75.991361pt;}
.fs16{font-size:76.085812pt;}
.fs12{font-size:77.397334pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y110{bottom:2.880000pt;}
.y9d{bottom:4.043167pt;}
.ya0{bottom:4.043222pt;}
.y87{bottom:4.048948pt;}
.y8a{bottom:4.049003pt;}
.y3d{bottom:4.343645pt;}
.y30{bottom:4.432390pt;}
.y10a{bottom:4.510260pt;}
.yfa{bottom:4.663534pt;}
.y102{bottom:4.707359pt;}
.yf2{bottom:4.749852pt;}
.y96{bottom:5.969900pt;}
.y98{bottom:5.969920pt;}
.y80{bottom:6.010092pt;}
.y82{bottom:6.010111pt;}
.y90{bottom:6.010112pt;}
.y67{bottom:6.400000pt;}
.y6a{bottom:6.720000pt;}
.y6e{bottom:6.760000pt;}
.y6c{bottom:7.040000pt;}
.y119{bottom:8.000000pt;}
.y3e{bottom:8.397744pt;}
.y41{bottom:9.041295pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y75{bottom:10.880000pt;}
.y11b{bottom:11.520000pt;}
.y9f{bottom:12.002946pt;}
.y89{bottom:12.020108pt;}
.y73{bottom:14.080000pt;}
.y3c{bottom:15.637259pt;}
.y10c{bottom:18.550005pt;}
.ya8{bottom:18.605171pt;}
.y9c{bottom:18.605172pt;}
.ya2{bottom:18.605186pt;}
.ya9{bottom:18.605187pt;}
.y99{bottom:18.605197pt;}
.y86{bottom:18.631771pt;}
.y91{bottom:18.631772pt;}
.y92{bottom:18.631787pt;}
.y8c{bottom:18.631789pt;}
.y83{bottom:18.631798pt;}
.yfc{bottom:19.298895pt;}
.y104{bottom:19.360629pt;}
.yf4{bottom:19.656027pt;}
.y40{bottom:21.370039pt;}
.y42{bottom:21.370040pt;}
.y44{bottom:21.370059pt;}
.y46{bottom:21.370077pt;}
.y48{bottom:21.370094pt;}
.y109{bottom:23.097174pt;}
.y10e{bottom:23.097239pt;}
.yf9{bottom:24.038947pt;}
.y101{bottom:24.106515pt;}
.y106{bottom:24.106576pt;}
.yf1{bottom:24.483720pt;}
.yf6{bottom:24.483781pt;}
.y68{bottom:27.200000pt;}
.y66{bottom:27.520000pt;}
.y9e{bottom:27.543914pt;}
.ya1{bottom:27.543969pt;}
.y88{bottom:27.583296pt;}
.y8b{bottom:27.583351pt;}
.yc5{bottom:27.840000pt;}
.y4a{bottom:27.914676pt;}
.y4c{bottom:27.914695pt;}
.y4e{bottom:27.914712pt;}
.y50{bottom:27.914729pt;}
.y97{bottom:28.744368pt;}
.y9b{bottom:28.744379pt;}
.y81{bottom:28.785466pt;}
.y85{bottom:28.785474pt;}
.y24{bottom:28.895647pt;}
.y10b{bottom:29.825544pt;}
.yfb{bottom:31.167058pt;}
.y103{bottom:31.205836pt;}
.yf3{bottom:31.743742pt;}
.y43{bottom:31.865495pt;}
.y45{bottom:31.865514pt;}
.y47{bottom:31.865532pt;}
.y49{bottom:31.865549pt;}
.yff{bottom:32.040000pt;}
.yef{bottom:32.640000pt;}
.yf7{bottom:33.280000pt;}
.y107{bottom:33.960000pt;}
.y10d{bottom:34.372782pt;}
.yfd{bottom:35.905542pt;}
.y105{bottom:35.950216pt;}
.y9a{bottom:36.008498pt;}
.y84{bottom:36.059982pt;}
.yf5{bottom:36.569903pt;}
.y4b{bottom:38.947470pt;}
.y4d{bottom:38.947487pt;}
.y4f{bottom:38.947504pt;}
.y25{bottom:43.857429pt;}
.ydc{bottom:48.360000pt;}
.ydb{bottom:48.680000pt;}
.y8{bottom:50.880000pt;}
.y2d{bottom:62.225900pt;}
.y5{bottom:65.312000pt;}
.y26{bottom:87.163962pt;}
.y122{bottom:97.312000pt;}
.yc2{bottom:104.672000pt;}
.ye8{bottom:106.912000pt;}
.y71{bottom:110.112000pt;}
.y22{bottom:113.632000pt;}
.y146{bottom:116.832000pt;}
.y121{bottom:118.432000pt;}
.yc1{bottom:125.792000pt;}
.ye7{bottom:128.032000pt;}
.y23{bottom:129.583926pt;}
.y27{bottom:130.468385pt;}
.y70{bottom:131.552000pt;}
.y2e{bottom:134.346818pt;}
.y145{bottom:137.946667pt;}
.y120{bottom:139.226667pt;}
.y6f{bottom:146.586667pt;}
.yc0{bottom:146.906667pt;}
.ye6{bottom:149.146667pt;}
.y144{bottom:159.386667pt;}
.y11f{bottom:160.666667pt;}
.ybf{bottom:168.026667pt;}
.y6d{bottom:168.346667pt;}
.ye5{bottom:170.266667pt;}
.y28{bottom:173.692600pt;}
.y143{bottom:180.546667pt;}
.y11e{bottom:182.146667pt;}
.ybe{bottom:189.186667pt;}
.y6b{bottom:190.466667pt;}
.ye4{bottom:191.746667pt;}
.y142{bottom:201.666667pt;}
.y11d{bottom:203.266667pt;}
.ybd{bottom:204.226667pt;}
.y69{bottom:212.546667pt;}
.ye3{bottom:212.866667pt;}
.y29{bottom:216.999134pt;}
.y141{bottom:222.786667pt;}
.y11c{bottom:224.386667pt;}
.ybc{bottom:226.306667pt;}
.ye2{bottom:233.986667pt;}
.y65{bottom:234.306667pt;}
.y11a{bottom:239.426667pt;}
.y2f{bottom:239.956293pt;}
.y140{bottom:243.906667pt;}
.ybb{bottom:248.066667pt;}
.ye1{bottom:255.106667pt;}
.y2a{bottom:260.303556pt;}
.y13f{bottom:265.026667pt;}
.y118{bottom:265.986667pt;}
.yba{bottom:269.826667pt;}
.ye0{bottom:276.226667pt;}
.y64{bottom:283.586667pt;}
.y13e{bottom:286.173333pt;}
.ydf{bottom:291.293333pt;}
.y117{bottom:295.453333pt;}
.yb9{bottom:298.653333pt;}
.y2b{bottom:303.606924pt;}
.y63{bottom:304.733333pt;}
.y13d{bottom:307.293333pt;}
.yde{bottom:313.053333pt;}
.y32{bottom:313.662355pt;}
.y116{bottom:316.573333pt;}
.yb8{bottom:319.773333pt;}
.y62{bottom:326.493333pt;}
.y13c{bottom:328.733333pt;}
.ydd{bottom:335.133333pt;}
.y115{bottom:337.693333pt;}
.yb7{bottom:341.213333pt;}
.y2c{bottom:346.834305pt;}
.y61{bottom:347.613333pt;}
.y13b{bottom:349.853333pt;}
.yda{bottom:356.893333pt;}
.y114{bottom:359.453333pt;}
.yb6{bottom:362.333333pt;}
.y31{bottom:363.775935pt;}
.y60{bottom:368.733333pt;}
.y13a{bottom:370.973333pt;}
.y113{bottom:380.573333pt;}
.yb5{bottom:383.453333pt;}
.y5f{bottom:389.853333pt;}
.y139{bottom:392.093333pt;}
.y112{bottom:401.413333pt;}
.yb4{bottom:404.613333pt;}
.y5e{bottom:411.013333pt;}
.y138{bottom:413.253333pt;}
.y111{bottom:422.533333pt;}
.yb3{bottom:425.733333pt;}
.yd9{bottom:427.333333pt;}
.y5d{bottom:432.773333pt;}
.y137{bottom:434.373333pt;}
.y10f{bottom:437.253333pt;}
.yb2{bottom:446.853333pt;}
.yd8{bottom:448.453333pt;}
.y5c{bottom:453.893333pt;}
.y136{bottom:455.493333pt;}
.yb1{bottom:468.293333pt;}
.yd7{bottom:469.893333pt;}
.y5b{bottom:475.013333pt;}
.y135{bottom:476.613333pt;}
.yb0{bottom:489.413333pt;}
.yd6{bottom:491.333333pt;}
.y5a{bottom:496.133333pt;}
.y134{bottom:497.733333pt;}
.y21{bottom:505.093333pt;}
.yaf{bottom:510.240000pt;}
.yd5{bottom:512.480000pt;}
.y59{bottom:517.280000pt;}
.y133{bottom:519.200000pt;}
.y20{bottom:526.240000pt;}
.yae{bottom:531.680000pt;}
.yd4{bottom:533.600000pt;}
.y58{bottom:538.400000pt;}
.y132{bottom:540.320000pt;}
.y1f{bottom:547.360000pt;}
.yad{bottom:552.800000pt;}
.yd3{bottom:554.720000pt;}
.y57{bottom:559.840000pt;}
.y131{bottom:561.440000pt;}
.y1e{bottom:568.480000pt;}
.yac{bottom:573.920000pt;}
.yd2{bottom:575.840000pt;}
.y56{bottom:581.280000pt;}
.y130{bottom:582.560000pt;}
.y1d{bottom:589.600000pt;}
.yab{bottom:595.040000pt;}
.yd1{bottom:596.960000pt;}
.y55{bottom:602.400000pt;}
.y12f{bottom:603.680000pt;}
.y1c{bottom:610.720000pt;}
.ya7{bottom:612.666594pt;}
.yd0{bottom:618.080000pt;}
.y54{bottom:623.866667pt;}
.y12e{bottom:624.826667pt;}
.yaa{bottom:631.226667pt;}
.y1b{bottom:631.866667pt;}
.ycf{bottom:633.146667pt;}
.y53{bottom:644.986667pt;}
.y12d{bottom:645.946667pt;}
.y1a{bottom:652.986667pt;}
.yce{bottom:655.226667pt;}
.y52{bottom:666.106667pt;}
.y12c{bottom:667.066667pt;}
.y19{bottom:673.786667pt;}
.ycd{bottom:676.986667pt;}
.y3f{bottom:683.333261pt;}
.ya6{bottom:687.226667pt;}
.y12b{bottom:688.506667pt;}
.y18{bottom:695.546667pt;}
.ycc{bottom:698.746667pt;}
.y51{bottom:704.826667pt;}
.ya5{bottom:708.346667pt;}
.y12a{bottom:709.626667pt;}
.y17{bottom:716.666667pt;}
.yfe{bottom:717.946667pt;}
.ya4{bottom:729.466667pt;}
.y100{bottom:729.733261pt;}
.y129{bottom:730.746667pt;}
.y108{bottom:731.666594pt;}
.y3b{bottom:735.199928pt;}
.y16{bottom:737.826667pt;}
.y3a{bottom:743.266667pt;}
.y95{bottom:747.066594pt;}
.ycb{bottom:748.066667pt;}
.y128{bottom:751.906667pt;}
.y15{bottom:758.946667pt;}
.ya3{bottom:765.666667pt;}
.y39{bottom:767.906667pt;}
.yca{bottom:769.506667pt;}
.y127{bottom:773.026667pt;}
.y14{bottom:780.066667pt;}
.yee{bottom:783.586667pt;}
.y38{bottom:789.026667pt;}
.yc9{bottom:790.626667pt;}
.y126{bottom:794.146667pt;}
.yf0{bottom:795.999928pt;}
.yf8{bottom:796.666667pt;}
.y94{bottom:800.546667pt;}
.y13{bottom:801.186667pt;}
.yc8{bottom:805.986667pt;}
.y37{bottom:810.146667pt;}
.y125{bottom:815.266667pt;}
.y8f{bottom:817.733261pt;}
.y12{bottom:822.306667pt;}
.yc7{bottom:827.746667pt;}
.y36{bottom:831.266667pt;}
.y93{bottom:836.386667pt;}
.y11{bottom:843.426667pt;}
.y79{bottom:846.653333pt;}
.yc6{bottom:849.533333pt;}
.yed{bottom:857.853333pt;}
.y10{bottom:864.573333pt;}
.y78{bottom:868.413333pt;}
.y8e{bottom:871.293333pt;}
.y124{bottom:878.653333pt;}
.yec{bottom:878.973333pt;}
.yf{bottom:885.693333pt;}
.y7f{bottom:888.799928pt;}
.y77{bottom:890.173333pt;}
.y123{bottom:899.773333pt;}
.yeb{bottom:900.093333pt;}
.ye{bottom:907.133333pt;}
.y8d{bottom:907.453333pt;}
.y76{bottom:911.933333pt;}
.yc4{bottom:920.893333pt;}
.yea{bottom:921.213333pt;}
.yd{bottom:928.253333pt;}
.y72{bottom:933.693333pt;}
.y74{bottom:936.466594pt;}
.yc3{bottom:942.013333pt;}
.y7e{bottom:942.333333pt;}
.yc{bottom:949.053333pt;}
.ye9{bottom:963.173333pt;}
.y7d{bottom:963.493333pt;}
.yb{bottom:970.213333pt;}
.y35{bottom:984.293333pt;}
.y7c{bottom:984.613333pt;}
.ya{bottom:993.253333pt;}
.y34{bottom:1005.413333pt;}
.y7b{bottom:1005.733333pt;}
.y9{bottom:1021.413333pt;}
.y33{bottom:1026.533333pt;}
.y7a{bottom:1026.853333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h1d{height:21.120000pt;}
.h1f{height:21.152000pt;}
.h1e{height:21.440000pt;}
.h2d{height:21.472000pt;}
.h4e{height:22.432000pt;}
.h5{height:24.000000pt;}
.h4f{height:25.920000pt;}
.h14{height:25.933497pt;}
.h20{height:28.832000pt;}
.h4a{height:31.012452pt;}
.h44{height:32.367683pt;}
.h3d{height:32.438449pt;}
.h37{height:33.038617pt;}
.h1b{height:36.190554pt;}
.h15{height:37.087398pt;}
.h29{height:37.278792pt;}
.h23{height:37.332093pt;}
.h49{height:41.619250pt;}
.h1c{height:42.240000pt;}
.h30{height:42.272000pt;}
.h2f{height:42.560000pt;}
.h43{height:43.437993pt;}
.h3c{height:43.532962pt;}
.h10{height:43.573066pt;}
.h12{height:43.787984pt;}
.h36{height:44.338398pt;}
.h7{height:44.648750pt;}
.h27{height:47.000783pt;}
.h21{height:47.067985pt;}
.hf{height:47.273132pt;}
.h17{height:48.999766pt;}
.h11{height:49.015706pt;}
.h4{height:49.020000pt;}
.he{height:49.540455pt;}
.h47{height:51.868295pt;}
.h2e{height:53.156250pt;}
.h4b{height:53.286847pt;}
.h3a{height:54.067640pt;}
.h41{height:54.134914pt;}
.h34{height:55.068058pt;}
.h3e{height:55.546419pt;}
.h45{height:55.615459pt;}
.h38{height:56.574125pt;}
.h19{height:58.571897pt;}
.h3{height:59.340000pt;}
.h2b{height:60.279869pt;}
.h25{height:60.366057pt;}
.h18{height:62.030017pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h31{height:63.392000pt;}
.h16{height:63.671079pt;}
.h28{height:63.838828pt;}
.h2a{height:63.870604pt;}
.h22{height:63.930104pt;}
.h24{height:63.961926pt;}
.h2{height:64.500000pt;}
.h1a{height:64.518339pt;}
.h2c{height:65.081698pt;}
.h26{height:65.174752pt;}
.h40{height:65.632000pt;}
.ha{height:65.776250pt;}
.h33{height:65.781915pt;}
.hc{height:66.750000pt;}
.h9{height:66.890000pt;}
.h32{height:67.232000pt;}
.h4c{height:71.511874pt;}
.h48{height:71.547470pt;}
.h13{height:72.076121pt;}
.h3f{height:74.544260pt;}
.h3b{height:74.581365pt;}
.h46{height:74.636912pt;}
.h42{height:74.674063pt;}
.h39{height:75.923459pt;}
.h35{height:75.961250pt;}
.h8{height:86.430000pt;}
.h4d{height:280.706667pt;}
.hd{height:389.742969pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:40.933585pt;}
.wf{width:40.999861pt;}
.w4{width:92.512000pt;}
.w19{width:92.832000pt;}
.w1d{width:96.672000pt;}
.w1f{width:97.312000pt;}
.wb{width:97.632000pt;}
.w8{width:100.192000pt;}
.w22{width:100.544000pt;}
.w1e{width:105.632000pt;}
.w1a{width:107.872000pt;}
.w1b{width:108.512000pt;}
.w20{width:108.832000pt;}
.w18{width:109.152000pt;}
.we{width:110.464000pt;}
.w24{width:110.752000pt;}
.wc{width:113.632000pt;}
.w23{width:115.872000pt;}
.w16{width:117.184000pt;}
.w28{width:117.472000pt;}
.w27{width:118.112000pt;}
.w10{width:119.072000pt;}
.w31{width:125.184000pt;}
.wa{width:125.504000pt;}
.w25{width:131.584000pt;}
.w26{width:133.826667pt;}
.w32{width:136.986667pt;}
.w33{width:137.026667pt;}
.w11{width:144.706667pt;}
.w2c{width:144.931332pt;}
.w2e{width:144.931816pt;}
.w2d{width:151.066213pt;}
.w17{width:151.426667pt;}
.wd{width:153.306667pt;}
.w2a{width:156.134678pt;}
.w9{width:156.866667pt;}
.w21{width:160.066667pt;}
.w13{width:170.867574pt;}
.w14{width:176.001619pt;}
.w12{width:177.937252pt;}
.w15{width:180.126817pt;}
.w1c{width:191.453333pt;}
.w3{width:265.693333pt;}
.w29{width:298.373333pt;}
.w30{width:308.573333pt;}
.w2b{width:312.733333pt;}
.w2f{width:315.333333pt;}
.w5{width:508.270800pt;}
.w7{width:542.069592pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x44{left:2.691555pt;}
.x39{left:7.042667pt;}
.x34{left:8.320000pt;}
.x41{left:9.793518pt;}
.x21{left:11.978166pt;}
.x15{left:17.147298pt;}
.x14{left:23.705139pt;}
.x20{left:24.648376pt;}
.x31{left:26.696153pt;}
.x1a{left:29.238998pt;}
.x45{left:33.174545pt;}
.x4d{left:36.101027pt;}
.x80{left:38.426667pt;}
.x8{left:42.266667pt;}
.x3c{left:48.000000pt;}
.x77{left:53.411566pt;}
.x72{left:56.730984pt;}
.x76{left:66.880845pt;}
.x53{left:69.134129pt;}
.x4c{left:70.430171pt;}
.x59{left:73.816295pt;}
.x16{left:75.942390pt;}
.x71{left:80.664700pt;}
.x13{left:84.238449pt;}
.x5{left:85.152000pt;}
.x69{left:87.391988pt;}
.x64{left:88.351988pt;}
.x6a{left:89.632000pt;}
.x6f{left:92.832000pt;}
.x60{left:95.712000pt;}
.x7b{left:96.671988pt;}
.x2d{left:97.703828pt;}
.x33{left:98.912000pt;}
.xa{left:100.511988pt;}
.x49{left:104.404154pt;}
.x51{left:106.020033pt;}
.x40{left:111.035473pt;}
.x23{left:112.826667pt;}
.xe{left:117.791988pt;}
.x2c{left:120.019728pt;}
.x4b{left:121.456305pt;}
.x58{left:123.207206pt;}
.x43{left:128.320642pt;}
.x1d{left:131.263988pt;}
.xc{left:132.543988pt;}
.x70{left:133.684938pt;}
.xf{left:135.746655pt;}
.x17{left:138.209705pt;}
.x48{left:141.216813pt;}
.x11{left:143.746655pt;}
.x50{left:145.797765pt;}
.x5b{left:147.266655pt;}
.x3f{left:148.361332pt;}
.x56{left:150.085901pt;}
.x12{left:151.160027pt;}
.x5f{left:153.986655pt;}
.x4f{left:155.263257pt;}
.x30{left:157.309024pt;}
.x55{left:159.440758pt;}
.x4a{left:160.678015pt;}
.x32{left:161.986655pt;}
.x52{left:165.518612pt;}
.x42{left:168.114289pt;}
.x57{left:169.599300pt;}
.x3{left:174.466655pt;}
.xb{left:194.306655pt;}
.x35{left:199.746667pt;}
.x6b{left:201.026667pt;}
.x61{left:204.866667pt;}
.x73{left:210.661333pt;}
.x18{left:222.368080pt;}
.x2b{left:225.099285pt;}
.xd{left:234.013322pt;}
.x1f{left:237.293333pt;}
.x19{left:245.602316pt;}
.x2a{left:247.412528pt;}
.x6{left:258.341333pt;}
.x7d{left:272.733333pt;}
.x22{left:278.173322pt;}
.x2f{left:284.676573pt;}
.x10{left:286.813322pt;}
.x2{left:296.453322pt;}
.x3e{left:302.559982pt;}
.x4{left:304.773322pt;}
.x47{left:306.093297pt;}
.x1e{left:307.653322pt;}
.x54{left:309.293297pt;}
.x7a{left:311.173333pt;}
.x78{left:316.928000pt;}
.x6c{left:333.253333pt;}
.x7{left:350.853333pt;}
.x36{left:357.253333pt;}
.x29{left:360.188094pt;}
.x65{left:361.733322pt;}
.x66{left:365.253333pt;}
.x7c{left:375.173322pt;}
.x5c{left:376.480000pt;}
.x28{left:382.501336pt;}
.x74{left:391.200000pt;}
.x3b{left:397.280000pt;}
.x7e{left:398.560000pt;}
.x79{left:400.480000pt;}
.x3a{left:404.293297pt;}
.x1b{left:416.606458pt;}
.x2e{left:419.924857pt;}
.x25{left:433.520120pt;}
.x9{left:443.360000pt;}
.x75{left:445.626630pt;}
.x67{left:466.746667pt;}
.x6d{left:467.706667pt;}
.x4e{left:476.986655pt;}
.x46{left:480.506655pt;}
.x37{left:483.386667pt;}
.x5d{left:486.266667pt;}
.x5a{left:489.466655pt;}
.x62{left:494.266667pt;}
.x27{left:496.313491pt;}
.x3d{left:516.986667pt;}
.x26{left:518.626734pt;}
.x24{left:531.610675pt;}
.x7f{left:536.186667pt;}
.x5e{left:579.746667pt;}
.x38{left:581.666667pt;}
.x68{left:583.266667pt;}
.x6e{left:586.786667pt;}
.x63{left:600.866667pt;}
.x1c{left:655.613322pt;}
.x1{left:709.053322pt;}
}




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