
    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_16d1114d37b19cbffa3c4baa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.903000;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_3bba2c218ba3a649752db0d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_e7a72765d9f093b789695554.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_8f854c7926f1c92925767c29.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.665000;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_be17e6a0b031708f5b79732f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_b646425611145a90eafb9b0d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.621000;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_17b9869e07edc1644c0f3173.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.706000;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_4d4cf379f36d75ba64ff0e51.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999000;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_2994476b8209fa46a1d7ac43.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.901000;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_a0de5d512abc21f991f44e7c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.702000;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_dc2a84c0395f13c9bf065cf2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_940e1136c4d95e9f58c88628.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910000;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_ef4e1630af9fc6ffbfa54853.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.930000;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_e429746d6ade9847cef76905.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_001d2c47c339468f2af6419c.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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_d2bfb7317b9bfd441523f976.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910000;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_0e0320d052d1002709ac9cc1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.901000;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_bcadba70945274a687930357.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.388000;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_af7f578a22af77bf75034eb6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.706000;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_5375ff7e62b837bd06b445a5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.727000;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:ff15;src:url('chunks/assets/font_acd79b4e6457ef62c75a105e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.922000;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:ff16;src:url('chunks/assets/font_63e6d038a6c1261b2741bd5b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.637000;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:ff17;src:url('chunks/assets/font_6a43a6902e72ca1397842697.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.908000;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:ff18;src:url('chunks/assets/font_a73d104e830136bbdd50147a.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;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:ff19;src:url('chunks/assets/font_56c9b67a8df799fcbbb2cc58.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.903000;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:ff1a;src:url('chunks/assets/font_66e7b3dd96309d0956b1396b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.702000;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:ff1b;src:url('chunks/assets/font_7ef7f8f181451081be3ef8f6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.999000;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);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.440000px;}
.v4{vertical-align:13.602000px;}
.v1{vertical-align:26.028000px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.002823px;}
.lsa{letter-spacing:0.003031px;}
.ls0{letter-spacing:2.984915px;}
.ls1{letter-spacing:2.990915px;}
.ls7{letter-spacing:6.027031px;}
.ls9{letter-spacing:13.281031px;}
.lsb{letter-spacing:17.166141px;}
.ls8{letter-spacing:17.967031px;}
.ls11{letter-spacing:18.428338px;}
.ls12{letter-spacing:22.415850px;}
.ls13{letter-spacing:22.475626px;}
.lsc{letter-spacing:22.953830px;}
.ls10{letter-spacing:23.790689px;}
.ls5{letter-spacing:25.105752px;}
.ls3{letter-spacing:28.094532px;}
.lsd{letter-spacing:28.166338px;}
.lse{letter-spacing:29.372338px;}
.lsf{letter-spacing:29.612338px;}
.ls6{letter-spacing:29.890200px;}
.ls2{letter-spacing:30.636532px;}
.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;}
}
.wse2{word-spacing:-16.605662px;}
.ws15b{word-spacing:-14.111320px;}
.wsb7{word-spacing:-3.036600px;}
.wsbd{word-spacing:-2.976825px;}
.ws86{word-spacing:-2.438844px;}
.ws34{word-spacing:-2.013247px;}
.ws69{word-spacing:-1.601986px;}
.ws183{word-spacing:-1.587053px;}
.wsf6{word-spacing:-1.542210px;}
.ws20{word-spacing:-1.422659px;}
.ws25{word-spacing:-1.303108px;}
.ws24{word-spacing:-1.243332px;}
.ws156{word-spacing:-1.102867px;}
.ws7a{word-spacing:-1.064006px;}
.ws9{word-spacing:-0.526783px;}
.wsb{word-spacing:-0.511085px;}
.ws8a{word-spacing:-0.406474px;}
.ws95{word-spacing:-0.346698px;}
.ws94{word-spacing:-0.310988px;}
.ws184{word-spacing:-0.295891px;}
.ws96{word-spacing:-0.286923px;}
.ws17{word-spacing:-0.167372px;}
.wsd8{word-spacing:-0.107596px;}
.ws153{word-spacing:-0.086077px;}
.wsfc{word-spacing:-0.074108px;}
.ws58{word-spacing:-0.059776px;}
.wsf9{word-spacing:-0.059551px;}
.ws33{word-spacing:-0.047821px;}
.ws36{word-spacing:0.000000px;}
.wse7{word-spacing:0.071731px;}
.ws101{word-spacing:0.191282px;}
.wsb5{word-spacing:0.310833px;}
.ws17a{word-spacing:0.349690px;}
.wsec{word-spacing:0.370609px;}
.ws186{word-spacing:0.403488px;}
.ws39{word-spacing:0.430384px;}
.wsc{word-spacing:0.457286px;}
.ws8f{word-spacing:0.609711px;}
.wscb{word-spacing:0.669487px;}
.wsa{word-spacing:0.720618px;}
.ws54{word-spacing:0.729262px;}
.ws22{word-spacing:0.789038px;}
.ws15d{word-spacing:0.833875px;}
.ws23{word-spacing:0.848814px;}
.ws84{word-spacing:0.908589px;}
.wsb2{word-spacing:1.095092px;}
.ws165{word-spacing:1.102867px;}
.wsc0{word-spacing:1.147692px;}
.ws166{word-spacing:1.156666px;}
.wsa1{word-spacing:1.207467px;}
.wsb0{word-spacing:1.327018px;}
.wsf8{word-spacing:1.443892px;}
.wsee{word-spacing:1.446570px;}
.ws97{word-spacing:1.506345px;}
.wsf1{word-spacing:1.566121px;}
.ws87{word-spacing:1.685672px;}
.wscc{word-spacing:1.745448px;}
.wsc7{word-spacing:1.805223px;}
.ws99{word-spacing:1.864999px;}
.wsfd{word-spacing:1.924774px;}
.wseb{word-spacing:1.984550px;}
.ws100{word-spacing:2.044326px;}
.ws3b{word-spacing:2.104101px;}
.ws178{word-spacing:2.125037px;}
.wse9{word-spacing:2.163877px;}
.ws45{word-spacing:2.196023px;}
.ws9d{word-spacing:2.215235px;}
.ws2d{word-spacing:2.223652px;}
.ws154{word-spacing:2.283428px;}
.wsb1{word-spacing:2.343204px;}
.ws103{word-spacing:2.434069px;}
.ws4a{word-spacing:2.462755px;}
.wsc5{word-spacing:2.522530px;}
.ws104{word-spacing:2.529710px;}
.ws179{word-spacing:2.555424px;}
.ws185{word-spacing:2.566184px;}
.ws77{word-spacing:2.642082px;}
.ws7d{word-spacing:2.761633px;}
.ws7f{word-spacing:2.776436px;}
.ws81{word-spacing:2.788539px;}
.ws35{word-spacing:2.816633px;}
.ws5e{word-spacing:2.821408px;}
.wsc1{word-spacing:2.881184px;}
.ws102{word-spacing:3.000735px;}
.wsb3{word-spacing:3.007916px;}
.ws3{word-spacing:3.039610px;}
.ws92{word-spacing:3.060511px;}
.ws2{word-spacing:3.093408px;}
.ws8e{word-spacing:3.120286px;}
.wsc2{word-spacing:3.180062px;}
.wsa6{word-spacing:3.239838px;}
.ws2a{word-spacing:3.293243px;}
.ws2c{word-spacing:3.299613px;}
.ws68{word-spacing:3.326108px;}
.ws1f{word-spacing:3.359389px;}
.wsa9{word-spacing:3.419164px;}
.ws4c{word-spacing:3.478940px;}
.ws15e{word-spacing:3.588353px;}
.wsf3{word-spacing:3.598491px;}
.ws6a{word-spacing:3.658267px;}
.ws55{word-spacing:3.718042px;}
.wsbb{word-spacing:3.868800px;}
.wsb8{word-spacing:3.897369px;}
.ws17e{word-spacing:3.900384px;}
.ws79{word-spacing:3.957145px;}
.ws175{word-spacing:4.061779px;}
.ws78{word-spacing:4.076696px;}
.ws26{word-spacing:4.196247px;}
.ws28{word-spacing:4.256023px;}
.wsc4{word-spacing:4.315798px;}
.ws4e{word-spacing:4.375574px;}
.ws60{word-spacing:4.554901px;}
.ws6c{word-spacing:4.614676px;}
.ws90{word-spacing:4.674452px;}
.ws83{word-spacing:4.794003px;}
.ws174{word-spacing:4.814957px;}
.ws3c{word-spacing:4.913554px;}
.ws10{word-spacing:5.030150px;}
.ws66{word-spacing:5.033106px;}
.ws64{word-spacing:5.092881px;}
.ws16a{word-spacing:5.137747px;}
.wsf2{word-spacing:5.272208px;}
.wsac{word-spacing:5.391759px;}
.ws176{word-spacing:5.406739px;}
.ws7b{word-spacing:5.451535px;}
.ws47{word-spacing:5.511310px;}
.ws158{word-spacing:5.568134px;}
.ws157{word-spacing:5.632692px;}
.ws16f{word-spacing:5.686491px;}
.wsb9{word-spacing:5.690637px;}
.ws5d{word-spacing:5.810188px;}
.ws8{word-spacing:5.837126px;}
.ws5b{word-spacing:5.989515px;}
.ws172{word-spacing:6.106118px;}
.ws48{word-spacing:6.109066px;}
.wsca{word-spacing:6.168842px;}
.ws18{word-spacing:6.228618px;}
.ws30{word-spacing:6.288393px;}
.ws11{word-spacing:6.294050px;}
.wscd{word-spacing:6.348169px;}
.ws17d{word-spacing:6.385870px;}
.ws59{word-spacing:6.407944px;}
.ws169{word-spacing:6.428909px;}
.wsa2{word-spacing:6.467720px;}
.ws167{word-spacing:6.482707px;}
.ws9c{word-spacing:6.527496px;}
.wse5{word-spacing:6.587271px;}
.wse3{word-spacing:6.624832px;}
.ws74{word-spacing:6.706822px;}
.ws40{word-spacing:6.826374px;}
.ws2f{word-spacing:6.886149px;}
.ws41{word-spacing:7.005700px;}
.wsf5{word-spacing:7.182378px;}
.ws1b{word-spacing:7.185027px;}
.ws1e{word-spacing:7.304578px;}
.wsf{word-spacing:7.397280px;}
.ws61{word-spacing:7.424130px;}
.ws17f{word-spacing:7.451078px;}
.ws16e{word-spacing:7.461838px;}
.ws15{word-spacing:7.483905px;}
.wsfe{word-spacing:7.515512px;}
.ws29{word-spacing:7.543681px;}
.ws98{word-spacing:7.603456px;}
.ws91{word-spacing:7.663232px;}
.ws17c{word-spacing:7.679416px;}
.ws57{word-spacing:7.723008px;}
.ws75{word-spacing:7.782783px;}
.ws177{word-spacing:7.784628px;}
.ws17b{word-spacing:7.946024px;}
.ws9f{word-spacing:7.962110px;}
.ws8d{word-spacing:8.081661px;}
.wse0{word-spacing:8.109892px;}
.wsde{word-spacing:8.141437px;}
.ws162{word-spacing:8.204256px;}
.ws16d{word-spacing:8.258054px;}
.ws8c{word-spacing:8.260988px;}
.wsd{word-spacing:8.362861px;}
.ws7{word-spacing:8.365651px;}
.ws5{word-spacing:8.367725px;}
.ws173{word-spacing:8.430209px;}
.ws52{word-spacing:8.440315px;}
.ws50{word-spacing:8.500090px;}
.wsc3{word-spacing:8.559866px;}
.wsa0{word-spacing:8.739193px;}
.ws171{word-spacing:8.753000px;}
.ws31{word-spacing:8.798968px;}
.ws107{word-spacing:9.157622px;}
.ws88{word-spacing:9.217398px;}
.ws9e{word-spacing:9.277173px;}
.wsf0{word-spacing:9.336949px;}
.ws16b{word-spacing:9.441619px;}
.wse{word-spacing:9.600050px;}
.ws6{word-spacing:9.612050px;}
.wsa4{word-spacing:9.635827px;}
.ws180{word-spacing:9.667572px;}
.wsa3{word-spacing:9.695602px;}
.ws76{word-spacing:9.815154px;}
.ws168{word-spacing:9.872006px;}
.ws93{word-spacing:9.874929px;}
.wsd1{word-spacing:9.912733px;}
.ws181{word-spacing:9.925805px;}
.wscf{word-spacing:9.934705px;}
.ws3d{word-spacing:10.054256px;}
.ws85{word-spacing:10.233583px;}
.ws155{word-spacing:10.293358px;}
.ws163{word-spacing:10.366952px;}
.ws37{word-spacing:10.592236px;}
.ws9b{word-spacing:10.652012px;}
.ws43{word-spacing:10.831339px;}
.wsd6{word-spacing:10.875892px;}
.wsd4{word-spacing:10.891114px;}
.ws12{word-spacing:10.947974px;}
.wsa5{word-spacing:10.950890px;}
.ws4{word-spacing:11.055571px;}
.wsdb{word-spacing:11.067892px;}
.wsdd{word-spacing:11.070441px;}
.ws2e{word-spacing:11.429095px;}
.ws16c{word-spacing:11.496718px;}
.ws170{word-spacing:11.701152px;}
.ws15c{word-spacing:11.862547px;}
.ws182{word-spacing:11.980904px;}
.ws32{word-spacing:12.085224px;}
.wsaf{word-spacing:12.505056px;}
.wsbe{word-spacing:13.582077px;}
.ws15a{word-spacing:13.662488px;}
.ws15f{word-spacing:14.552467px;}
.ws21{word-spacing:15.148077px;}
.ws8b{word-spacing:16.107686px;}
.wsd9{word-spacing:16.424319px;}
.wsfb{word-spacing:16.455915px;}
.wsfa{word-spacing:16.461915px;}
.wsb6{word-spacing:16.864077px;}
.wsed{word-spacing:16.934319px;}
.ws3a{word-spacing:16.948077px;}
.ws159{word-spacing:17.193721px;}
.ws53{word-spacing:17.308077px;}
.wsc6{word-spacing:17.438319px;}
.ws105{word-spacing:17.980546px;}
.wsf7{word-spacing:17.988536px;}
.wsef{word-spacing:18.014319px;}
.ws106{word-spacing:18.315290px;}
.wsc8{word-spacing:18.382077px;}
.ws9a{word-spacing:18.418077px;}
.wsff{word-spacing:18.595263px;}
.ws19{word-spacing:18.660220px;}
.wsea{word-spacing:18.724941px;}
.ws46{word-spacing:18.742077px;}
.ws4b{word-spacing:19.012077px;}
.ws82{word-spacing:19.318610px;}
.ws80{word-spacing:19.321749px;}
.ws7e{word-spacing:19.325991px;}
.ws5f{word-spacing:19.382319px;}
.wsa7{word-spacing:19.808319px;}
.ws109{word-spacing:19.847683px;}
.ws67{word-spacing:19.858077px;}
.ws44{word-spacing:19.862319px;}
.ws2b{word-spacing:19.864077px;}
.ws10a{word-spacing:19.870516px;}
.wsaa{word-spacing:19.951433px;}
.wsa8{word-spacing:19.954610px;}
.ws4d{word-spacing:20.026077px;}
.wsf4{word-spacing:20.162319px;}
.ws56{word-spacing:20.278077px;}
.wsbc{word-spacing:20.401433px;}
.ws27{word-spacing:20.740610px;}
.ws4f{word-spacing:20.902077px;}
.ws65{word-spacing:21.604077px;}
.wsba{word-spacing:22.228077px;}
.wsbf{word-spacing:22.358319px;}
.ws5c{word-spacing:22.516077px;}
.wsc9{word-spacing:22.672077px;}
.ws49{word-spacing:22.678077px;}
.wse8{word-spacing:22.720077px;}
.ws1a{word-spacing:22.761782px;}
.ws6d{word-spacing:22.834279px;}
.wsab{word-spacing:22.846077px;}
.wsce{word-spacing:22.894077px;}
.ws5a{word-spacing:22.928319px;}
.ws7c{word-spacing:22.950036px;}
.wsae{word-spacing:23.006319px;}
.ws1{word-spacing:23.312640px;}
.ws1c{word-spacing:23.752077px;}
.ws1d{word-spacing:23.872077px;}
.ws161{word-spacing:24.020986px;}
.ws16{word-spacing:24.040610px;}
.ws164{word-spacing:24.558970px;}
.wsad{word-spacing:24.608319px;}
.ws160{word-spacing:24.892520px;}
.ws51{word-spacing:25.012077px;}
.ws89{word-spacing:25.774077px;}
.ws63{word-spacing:26.827469px;}
.ws38{word-spacing:27.166077px;}
.wsd3{word-spacing:27.418077px;}
.ws108{word-spacing:27.568507px;}
.wse6{word-spacing:27.728736px;}
.wse4{word-spacing:27.754463px;}
.ws42{word-spacing:28.103492px;}
.wsdf{word-spacing:29.216736px;}
.wse1{word-spacing:29.231492px;}
.ws3f{word-spacing:29.817735px;}
.wsd2{word-spacing:31.036474px;}
.wsd0{word-spacing:31.041228px;}
.ws0{word-spacing:31.091012px;}
.ws3e{word-spacing:31.869108px;}
.wsd5{word-spacing:31.993418px;}
.wsd7{word-spacing:32.002474px;}
.wsdc{word-spacing:32.192342px;}
.ws62{word-spacing:32.192873px;}
.wsda{word-spacing:32.197433px;}
.ws13{word-spacing:41.747442px;}
.ws14{word-spacing:41.785585px;}
.ws121{word-spacing:70.188120px;}
.ws138{word-spacing:70.228553px;}
.ws6b{word-spacing:80.625869px;}
.ws6e{word-spacing:82.609879px;}
.ws125{word-spacing:90.202590px;}
.ws122{word-spacing:91.658188px;}
.ws142{word-spacing:91.698621px;}
.wsb4{word-spacing:96.750773px;}
.ws11f{word-spacing:99.948094px;}
.ws136{word-spacing:100.351342px;}
.ws12a{word-spacing:109.348264px;}
.ws11c{word-spacing:109.350035px;}
.ws114{word-spacing:109.351966px;}
.ws11e{word-spacing:109.356009px;}
.ws133{word-spacing:109.358122px;}
.ws111{word-spacing:109.358472px;}
.ws13d{word-spacing:109.360052px;}
.ws10e{word-spacing:109.361080px;}
.ws12b{word-spacing:109.362165px;}
.ws116{word-spacing:109.363689px;}
.ws13e{word-spacing:109.376226px;}
.ws13c{word-spacing:109.384312px;}
.ws127{word-spacing:109.384654px;}
.ws14c{word-spacing:117.681450px;}
.ws12f{word-spacing:120.072944px;}
.ws73{word-spacing:130.083661px;}
.ws71{word-spacing:131.578051px;}
.ws117{word-spacing:147.904565px;}
.ws110{word-spacing:148.773881px;}
.ws11b{word-spacing:153.408633px;}
.ws140{word-spacing:158.201521px;}
.ws70{word-spacing:159.971461px;}
.ws132{word-spacing:164.850907px;}
.ws131{word-spacing:167.529477px;}
.ws144{word-spacing:170.483262px;}
.ws14d{word-spacing:171.433037px;}
.ws124{word-spacing:181.806466px;}
.ws126{word-spacing:184.972392px;}
.ws128{word-spacing:186.050073px;}
.ws6f{word-spacing:189.859261px;}
.ws14f{word-spacing:191.407074px;}
.ws11d{word-spacing:192.095189px;}
.ws118{word-spacing:192.786598px;}
.ws113{word-spacing:195.385023px;}
.ws12c{word-spacing:197.373277px;}
.ws146{word-spacing:198.048512px;}
.ws135{word-spacing:200.072332px;}
.ws150{word-spacing:200.775871px;}
.ws10d{word-spacing:205.824894px;}
.ws134{word-spacing:211.395536px;}
.ws148{word-spacing:212.099075px;}
.ws14b{word-spacing:220.357298px;}
.ws129{word-spacing:221.435118px;}
.ws13a{word-spacing:224.558723px;}
.ws130{word-spacing:227.769125px;}
.ws13b{word-spacing:228.498811px;}
.ws12e{word-spacing:229.374326px;}
.ws14a{word-spacing:231.527263px;}
.ws14e{word-spacing:233.943286px;}
.ws13f{word-spacing:239.967843px;}
.ws120{word-spacing:240.697530px;}
.ws119{word-spacing:242.048722px;}
.ws115{word-spacing:242.834904px;}
.ws112{word-spacing:243.504772px;}
.ws11a{word-spacing:253.371926px;}
.ws10f{word-spacing:253.661158px;}
.ws143{word-spacing:256.292643px;}
.ws72{word-spacing:261.416697px;}
.ws141{word-spacing:267.915322px;}
.ws123{word-spacing:268.019014px;}
.ws151{word-spacing:277.028982px;}
.ws12d{word-spacing:285.174131px;}
.ws139{word-spacing:287.757817px;}
.ws149{word-spacing:294.067156px;}
.ws152{word-spacing:294.269323px;}
.ws137{word-spacing:319.787169px;}
.ws147{word-spacing:356.334398px;}
.ws10c{word-spacing:459.685889px;}
.ws145{word-spacing:690.646851px;}
.ws10b{word-spacing:1026.156054px;}
._5f{margin-left:-37.725631px;}
._5{margin-left:-35.058543px;}
._5c{margin-left:-28.421747px;}
._5d{margin-left:-27.068255px;}
._5b{margin-left:-26.004008px;}
._61{margin-left:-24.699515px;}
._0{margin-left:-8.056807px;}
._6{margin-left:-5.499401px;}
._4{margin-left:-3.873485px;}
._2{margin-left:-2.685602px;}
._3{margin-left:-1.175905px;}
._7{width:1.506355px;}
._1{width:2.582310px;}
._2e{width:4.789897px;}
._24{width:6.037336px;}
._28{width:12.912701px;}
._29{width:14.864563px;}
._2d{width:15.955759px;}
._f{width:18.004247px;}
._23{width:19.287910px;}
._12{width:20.565765px;}
._15{width:22.631046px;}
._2c{width:23.736886px;}
._9{width:24.739605px;}
._a{width:25.877030px;}
._1b{width:27.078392px;}
._8{width:28.447377px;}
._18{width:29.923645px;}
._25{width:31.238744px;}
._b{width:32.924621px;}
._17{width:35.005098px;}
._11{width:36.140332px;}
._c{width:37.443686px;}
._16{width:38.463706px;}
._21{width:40.097462px;}
._26{width:41.174163px;}
._19{width:42.420795px;}
._22{width:44.907784px;}
._2a{width:47.061165px;}
._14{width:48.867505px;}
._2b{width:50.598925px;}
._10{width:51.610247px;}
._27{width:53.766468px;}
._e{width:62.337108px;}
._60{width:63.912499px;}
._1c{width:71.790496px;}
._1a{width:80.697600px;}
._5e{width:87.839015px;}
._d{width:96.836850px;}
._3b{width:121.300340px;}
._3f{width:127.740842px;}
._34{width:134.658850px;}
._52{width:139.511788px;}
._37{width:140.626926px;}
._35{width:144.781229px;}
._3d{width:159.579326px;}
._39{width:164.015462px;}
._43{width:167.410760px;}
._4f{width:168.440261px;}
._20{width:176.577122px;}
._1f{width:178.071512px;}
._48{width:183.850096px;}
._3c{width:188.338189px;}
._50{width:197.686845px;}
._33{width:200.714111px;}
._56{width:202.860415px;}
._1e{width:207.959312px;}
._41{width:212.133932px;}
._58{width:214.828664px;}
._53{width:222.966078px;}
._51{width:231.529130px;}
._55{width:233.380856px;}
._4c{width:234.839794px;}
._1d{width:237.847112px;}
._42{width:238.986679px;}
._3a{width:240.723964px;}
._3e{width:244.476814px;}
._47{width:248.229889px;}
._49{width:250.999439px;}
._54{width:253.279480px;}
._57{width:255.423146px;}
._36{width:259.162351px;}
._45{width:260.396964px;}
._4d{width:264.029277px;}
._4e{width:269.912449px;}
._32{width:284.982828px;}
._38{width:291.463371px;}
._46{width:297.427161px;}
._40{width:301.959029px;}
._4a{width:304.599682px;}
._5a{width:334.827940px;}
._44{width:341.119699px;}
._4b{width:387.596702px;}
._31{width:465.427414px;}
._30{width:475.737898px;}
._59{width:702.297891px;}
._2f{width:864.194730px;}
._13{width:1488.511832px;}
.fc4{color:rgb(0,51,153);}
.fc3{color:rgb(170,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(44,160,46);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs7{font-size:40.433274px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y54{bottom:117.778500px;}
.y7e{bottom:117.780000px;}
.y53{bottom:156.633000px;}
.y29{bottom:156.634500px;}
.y154{bottom:161.628000px;}
.y28{bottom:170.830500px;}
.y12a{bottom:173.071500px;}
.y52{bottom:174.567000px;}
.y153{bottom:178.066500px;}
.ya4{bottom:185.028000px;}
.y7d{bottom:186.382500px;}
.ycb{bottom:192.499500px;}
.y152{bottom:197.493000px;}
.y51{bottom:202.150500px;}
.y27{bottom:203.242500px;}
.y7c{bottom:204.315000px;}
.y129{bottom:208.938000px;}
.yca{bottom:210.432000px;}
.y151{bottom:213.931500px;}
.y26{bottom:221.175000px;}
.y7b{bottom:222.249000px;}
.y128{bottom:225.376500px;}
.yde{bottom:228.364500px;}
.yc9{bottom:228.616500px;}
.y150{bottom:233.359500px;}
.y25{bottom:239.107500px;}
.y7a{bottom:240.181500px;}
.y50{bottom:243.933000px;}
.y127{bottom:244.803000px;}
.ydd{bottom:246.297000px;}
.yc8{bottom:246.549000px;}
.y14f{bottom:249.796500px;}
.y24{bottom:257.040000px;}
.y79{bottom:258.114000px;}
.y126{bottom:261.241500px;}
.y4f{bottom:261.865500px;}
.yf7{bottom:262.507500px;}
.ya3{bottom:262.572000px;}
.ydc{bottom:264.229500px;}
.yc7{bottom:264.481500px;}
.y14e{bottom:269.224500px;}
.y23{bottom:274.972500px;}
.y78{bottom:276.046500px;}
.yf6{bottom:280.441500px;}
.ya2{bottom:280.504500px;}
.y125{bottom:280.668000px;}
.ydb{bottom:282.163500px;}
.yc6{bottom:282.414000px;}
.y14d{bottom:288.651000px;}
.y4e{bottom:291.517500px;}
.y22{bottom:292.905000px;}
.y77{bottom:293.979000px;}
.y124{bottom:297.106500px;}
.yf5{bottom:298.374000px;}
.ya1{bottom:298.437000px;}
.yc5{bottom:300.348000px;}
.yda{bottom:300.507000px;}
.y14c{bottom:305.089500px;}
.y4d{bottom:309.450000px;}
.y21{bottom:310.839000px;}
.y76{bottom:311.913000px;}
.yf4{bottom:316.306500px;}
.ya0{bottom:316.369500px;}
.yc4{bottom:318.280500px;}
.yd9{bottom:318.439500px;}
.y14b{bottom:324.517500px;}
.y20{bottom:328.771500px;}
.y123{bottom:328.933500px;}
.y75{bottom:329.845500px;}
.yf3{bottom:334.239000px;}
.y9f{bottom:334.303500px;}
.yc3{bottom:336.213000px;}
.yd8{bottom:336.372000px;}
.y4c{bottom:339.220500px;}
.y14a{bottom:340.956000px;}
.y1f{bottom:346.704000px;}
.y74{bottom:347.778000px;}
.yf2{bottom:352.171500px;}
.y9e{bottom:352.236000px;}
.yc2{bottom:354.145500px;}
.yd7{bottom:354.304500px;}
.y149{bottom:357.393000px;}
.y1e{bottom:364.636500px;}
.y73{bottom:365.710500px;}
.y4b{bottom:368.991000px;}
.yf1{bottom:370.104000px;}
.y9d{bottom:370.168500px;}
.yc1{bottom:372.078000px;}
.yd6{bottom:372.648000px;}
.y148{bottom:376.821000px;}
.y122{bottom:381.786000px;}
.y1d{bottom:382.569000px;}
.y72{bottom:383.643000px;}
.y9c{bottom:388.101000px;}
.yc0{bottom:390.010500px;}
.yd5{bottom:390.582000px;}
.y147{bottom:393.259500px;}
.y4a{bottom:398.644500px;}
.y121{bottom:399.718500px;}
.y1c{bottom:400.501500px;}
.y71{bottom:401.575500px;}
.yf0{bottom:402.835500px;}
.y9b{bottom:406.033500px;}
.yd4{bottom:408.514500px;}
.y146{bottom:409.698000px;}
.y49{bottom:416.577000px;}
.y120{bottom:417.651000px;}
.ybf{bottom:418.063500px;}
.y1b{bottom:418.435500px;}
.y70{bottom:419.509500px;}
.y9a{bottom:423.966000px;}
.y145{bottom:426.136500px;}
.yd3{bottom:426.447000px;}
.y1a{bottom:436.368000px;}
.y6f{bottom:437.442000px;}
.y99{bottom:441.900000px;}
.y48{bottom:444.160500px;}
.yd2{bottom:444.379500px;}
.y144{bottom:445.563000px;}
.yef{bottom:452.254500px;}
.y11f{bottom:452.553000px;}
.y19{bottom:454.300500px;}
.y6e{bottom:455.374500px;}
.y98{bottom:459.832500px;}
.y143{bottom:462.001500px;}
.yd1{bottom:462.312000px;}
.yee{bottom:470.187000px;}
.y18{bottom:472.233000px;}
.ybe{bottom:476.931000px;}
.y97{bottom:477.765000px;}
.y47{bottom:479.880000px;}
.yd0{bottom:480.244500px;}
.y142{bottom:481.428000px;}
.y6d{bottom:482.958000px;}
.yed{bottom:488.121000px;}
.y17{bottom:490.165500px;}
.ybd{bottom:494.863500px;}
.y96{bottom:495.697500px;}
.y141{bottom:497.866500px;}
.ycf{bottom:498.178500px;}
.yec{bottom:506.053500px;}
.y11e{bottom:506.505089px;}
.y16{bottom:508.099500px;}
.ybc{bottom:512.796000px;}
.y95{bottom:513.630000px;}
.y140{bottom:517.294500px;}
.y11d{bottom:518.508091px;}
.yeb{bottom:523.986000px;}
.y6c{bottom:524.791500px;}
.y46{bottom:529.249500px;}
.y11c{bottom:530.512361px;}
.ybb{bottom:530.730000px;}
.y94{bottom:531.562500px;}
.y13f{bottom:533.733000px;}
.y15{bottom:540.829500px;}
.yea{bottom:541.918500px;}
.y11b{bottom:542.515363px;}
.y6b{bottom:542.724000px;}
.y45{bottom:547.182000px;}
.yba{bottom:548.662500px;}
.yce{bottom:549.211500px;}
.y93{bottom:549.496500px;}
.y13e{bottom:553.159500px;}
.y11a{bottom:554.519633px;}
.ye9{bottom:559.851000px;}
.y6a{bottom:560.656500px;}
.y44{bottom:565.114500px;}
.y119{bottom:566.522635px;}
.yb9{bottom:566.595000px;}
.ycd{bottom:567.144000px;}
.y92{bottom:567.429000px;}
.y14{bottom:567.729000px;}
.y13d{bottom:569.598000px;}
.ye8{bottom:577.783500px;}
.y118{bottom:578.526905px;}
.y69{bottom:578.589000px;}
.y43{bottom:583.047000px;}
.yb8{bottom:584.527500px;}
.ycc{bottom:585.076500px;}
.y91{bottom:585.361500px;}
.y13c{bottom:586.036500px;}
.y117{bottom:590.529907px;}
.ye7{bottom:595.717500px;}
.y68{bottom:596.521500px;}
.y42{bottom:600.979500px;}
.yb7{bottom:602.460000px;}
.y116{bottom:602.534177px;}
.y90{bottom:603.294000px;}
.y13b{bottom:605.463000px;}
.ye6{bottom:613.650000px;}
.y67{bottom:614.455500px;}
.y115{bottom:614.537179px;}
.y13{bottom:617.148000px;}
.y41{bottom:618.912000px;}
.yb6{bottom:620.392500px;}
.y8f{bottom:621.226500px;}
.y13a{bottom:621.901500px;}
.y114{bottom:626.541449px;}
.ye5{bottom:631.582500px;}
.y66{bottom:632.388000px;}
.y12{bottom:633.586500px;}
.y40{bottom:636.846000px;}
.yb5{bottom:638.326500px;}
.y113{bottom:638.544451px;}
.y8e{bottom:639.160500px;}
.y139{bottom:641.329500px;}
.ye4{bottom:649.515000px;}
.y11{bottom:650.025000px;}
.y65{bottom:650.320500px;}
.y112{bottom:650.548722px;}
.y3f{bottom:654.778500px;}
.yb4{bottom:656.259000px;}
.y8d{bottom:657.093000px;}
.y138{bottom:657.766500px;}
.y111{bottom:662.551723px;}
.y10{bottom:666.463500px;}
.y64{bottom:668.253000px;}
.y3e{bottom:672.711000px;}
.yb3{bottom:674.191500px;}
.y137{bottom:674.205000px;}
.y110{bottom:674.555994px;}
.y8c{bottom:675.025500px;}
.yf{bottom:682.902000px;}
.y63{bottom:686.185500px;}
.y10f{bottom:686.558996px;}
.y3d{bottom:690.643500px;}
.yb2{bottom:692.124000px;}
.y8b{bottom:692.958000px;}
.y136{bottom:693.633000px;}
.y10e{bottom:698.563266px;}
.ye{bottom:699.340500px;}
.ye3{bottom:699.727500px;}
.y62{bottom:704.118000px;}
.y3c{bottom:708.576000px;}
.y135{bottom:710.071500px;}
.y10d{bottom:710.566268px;}
.y8a{bottom:710.890500px;}
.yd{bottom:715.777500px;}
.ye2{bottom:717.660000px;}
.y61{bottom:722.052000px;}
.y10c{bottom:722.570538px;}
.yb1{bottom:723.019500px;}
.y3b{bottom:726.508500px;}
.y134{bottom:726.510000px;}
.y89{bottom:728.823000px;}
.yc{bottom:732.216000px;}
.y10b{bottom:734.573540px;}
.ye1{bottom:735.592500px;}
.y60{bottom:739.984500px;}
.yb0{bottom:740.952000px;}
.y3a{bottom:744.442500px;}
.y133{bottom:745.936500px;}
.y10a{bottom:746.577810px;}
.y88{bottom:746.757000px;}
.yb{bottom:748.654500px;}
.ye0{bottom:753.525000px;}
.y5f{bottom:757.917000px;}
.y109{bottom:758.580812px;}
.yaf{bottom:758.884500px;}
.y39{bottom:762.375000px;}
.y87{bottom:764.689500px;}
.ya{bottom:765.093000px;}
.y108{bottom:770.585082px;}
.y5e{bottom:775.849500px;}
.yae{bottom:776.817000px;}
.y38{bottom:780.307500px;}
.y132{bottom:781.801500px;}
.y107{bottom:782.588084px;}
.y86{bottom:782.622000px;}
.ydf{bottom:785.953500px;}
.y9{bottom:788.518500px;}
.y106{bottom:794.592354px;}
.yad{bottom:794.749500px;}
.y37{bottom:798.240000px;}
.y85{bottom:800.554500px;}
.y105{bottom:806.595356px;}
.y36{bottom:816.172500px;}
.y131{bottom:817.668000px;}
.y84{bottom:818.487000px;}
.y104{bottom:818.599626px;}
.yac{bottom:825.645000px;}
.y5d{bottom:829.830000px;}
.y103{bottom:830.602628px;}
.y35{bottom:834.106500px;}
.y8{bottom:834.844500px;}
.y83{bottom:836.419500px;}
.y102{bottom:842.605630px;}
.yab{bottom:843.577500px;}
.y34{bottom:852.039000px;}
.y130{bottom:853.533000px;}
.y82{bottom:854.353500px;}
.y101{bottom:854.609900px;}
.y5c{bottom:855.267000px;}
.y7{bottom:856.996500px;}
.yaa{bottom:861.510000px;}
.y100{bottom:866.612902px;}
.y6{bottom:867.721500px;}
.y33{bottom:869.971500px;}
.y81{bottom:872.286000px;}
.y12f{bottom:872.959500px;}
.y5b{bottom:873.199500px;}
.yff{bottom:878.617173px;}
.ya9{bottom:879.442500px;}
.y32{bottom:887.904000px;}
.y12e{bottom:889.398000px;}
.y5{bottom:889.873500px;}
.y80{bottom:890.218500px;}
.yfe{bottom:890.620174px;}
.y5a{bottom:891.132000px;}
.ya8{bottom:897.376500px;}
.yfd{bottom:902.624445px;}
.y31{bottom:905.836500px;}
.y59{bottom:909.064500px;}
.yfc{bottom:914.627447px;}
.y4{bottom:915.480000px;}
.y7f{bottom:917.802000px;}
.y30{bottom:923.769000px;}
.y12d{bottom:925.264500px;}
.yfb{bottom:926.631717px;}
.y58{bottom:926.997000px;}
.ya7{bottom:931.260000px;}
.y3{bottom:936.402000px;}
.y2f{bottom:941.703000px;}
.yfa{bottom:944.726268px;}
.ya6{bottom:949.192500px;}
.y57{bottom:952.134000px;}
.y2e{bottom:959.635500px;}
.y12c{bottom:961.129500px;}
.yf9{bottom:962.820818px;}
.y2{bottom:975.255000px;}
.ya5{bottom:977.244000px;}
.y2d{bottom:977.568000px;}
.y56{bottom:977.569500px;}
.y2c{bottom:995.500500px;}
.y12b{bottom:996.994500px;}
.yf8{bottom:997.891500px;}
.y1{bottom:1008.132000px;}
.y2b{bottom:1013.433000px;}
.y55{bottom:1015.824000px;}
.y2a{bottom:1057.668000px;}
.h3{height:23.850624px;}
.hf{height:28.343725px;}
.h10{height:28.505458px;}
.h11{height:30.324955px;}
.h4{height:33.139814px;}
.he{height:33.187496px;}
.ha{height:35.865450px;}
.h9{height:37.305450px;}
.h5{height:37.658880px;}
.h6{height:40.348800px;}
.hc{height:41.842920px;}
.hd{height:42.141798px;}
.h8{height:44.831700px;}
.hb{height:50.211840px;}
.h12{height:53.950800px;}
.h7{height:60.254040px;}
.h2{height:61.893450px;}
.h1{height:72.201388px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:150.732000px;}
.x1{left:154.108500px;}
.x19{left:157.644000px;}
.x17{left:161.894132px;}
.xe{left:173.148000px;}
.xf{left:177.631500px;}
.x1b{left:179.707500px;}
.x15{left:181.771500px;}
.xd{left:187.045500px;}
.xb{left:188.092500px;}
.x16{left:205.119651px;}
.xa{left:208.827000px;}
.x1e{left:223.954500px;}
.x10{left:236.062500px;}
.x1c{left:240.852000px;}
.x14{left:266.305500px;}
.x2{left:277.063500px;}
.x1d{left:286.207500px;}
.x1a{left:308.883000px;}
.x18{left:315.210160px;}
.x4{left:319.581000px;}
.x3{left:324.241500px;}
.x7{left:326.487000px;}
.x5{left:331.056000px;}
.x11{left:347.005500px;}
.x6{left:353.086500px;}
.x8{left:367.207500px;}
.x9{left:428.559000px;}
.x12{left:441.435000px;}
.x13{left:759.795000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.280000pt;}
.v4{vertical-align:12.090667pt;}
.v1{vertical-align:23.136000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.002510pt;}
.lsa{letter-spacing:0.002694pt;}
.ls0{letter-spacing:2.653258pt;}
.ls1{letter-spacing:2.658591pt;}
.ls7{letter-spacing:5.357361pt;}
.ls9{letter-spacing:11.805361pt;}
.lsb{letter-spacing:15.258792pt;}
.ls8{letter-spacing:15.970694pt;}
.ls11{letter-spacing:16.380745pt;}
.ls12{letter-spacing:19.925200pt;}
.ls13{letter-spacing:19.978334pt;}
.lsc{letter-spacing:20.403405pt;}
.ls10{letter-spacing:21.147279pt;}
.ls5{letter-spacing:22.316224pt;}
.ls3{letter-spacing:24.972917pt;}
.lsd{letter-spacing:25.036745pt;}
.lse{letter-spacing:26.108745pt;}
.lsf{letter-spacing:26.322079pt;}
.ls6{letter-spacing:26.569067pt;}
.ls2{letter-spacing:27.232473pt;}
.wse2{word-spacing:-14.760588pt;}
.ws15b{word-spacing:-12.543396pt;}
.wsb7{word-spacing:-2.699200pt;}
.wsbd{word-spacing:-2.646067pt;}
.ws86{word-spacing:-2.167862pt;}
.ws34{word-spacing:-1.789553pt;}
.ws69{word-spacing:-1.423988pt;}
.ws183{word-spacing:-1.410714pt;}
.wsf6{word-spacing:-1.370854pt;}
.ws20{word-spacing:-1.264586pt;}
.ws25{word-spacing:-1.158318pt;}
.ws24{word-spacing:-1.105184pt;}
.ws156{word-spacing:-0.980326pt;}
.ws7a{word-spacing:-0.945783pt;}
.ws9{word-spacing:-0.468251pt;}
.wsb{word-spacing:-0.454298pt;}
.ws8a{word-spacing:-0.361310pt;}
.ws95{word-spacing:-0.308176pt;}
.ws94{word-spacing:-0.276433pt;}
.ws184{word-spacing:-0.263014pt;}
.ws96{word-spacing:-0.255043pt;}
.ws17{word-spacing:-0.148775pt;}
.wsd8{word-spacing:-0.095641pt;}
.ws153{word-spacing:-0.076513pt;}
.wsfc{word-spacing:-0.065874pt;}
.ws58{word-spacing:-0.053134pt;}
.wsf9{word-spacing:-0.052934pt;}
.ws33{word-spacing:-0.042507pt;}
.ws36{word-spacing:0.000000pt;}
.wse7{word-spacing:0.063761pt;}
.ws101{word-spacing:0.170028pt;}
.wsb5{word-spacing:0.276296pt;}
.ws17a{word-spacing:0.310835pt;}
.wsec{word-spacing:0.329430pt;}
.ws186{word-spacing:0.358656pt;}
.ws39{word-spacing:0.382564pt;}
.wsc{word-spacing:0.406477pt;}
.ws8f{word-spacing:0.541965pt;}
.wscb{word-spacing:0.595099pt;}
.wsa{word-spacing:0.640550pt;}
.ws54{word-spacing:0.648233pt;}
.ws22{word-spacing:0.701367pt;}
.ws15d{word-spacing:0.741222pt;}
.ws23{word-spacing:0.754501pt;}
.ws84{word-spacing:0.807635pt;}
.wsb2{word-spacing:0.973415pt;}
.ws165{word-spacing:0.980326pt;}
.wsc0{word-spacing:1.020170pt;}
.ws166{word-spacing:1.028147pt;}
.wsa1{word-spacing:1.073304pt;}
.wsb0{word-spacing:1.179572pt;}
.wsf8{word-spacing:1.283459pt;}
.wsee{word-spacing:1.285840pt;}
.ws97{word-spacing:1.338973pt;}
.wsf1{word-spacing:1.392107pt;}
.ws87{word-spacing:1.498375pt;}
.wscc{word-spacing:1.551509pt;}
.wsc7{word-spacing:1.604643pt;}
.ws99{word-spacing:1.657777pt;}
.wsfd{word-spacing:1.710911pt;}
.wseb{word-spacing:1.764044pt;}
.ws100{word-spacing:1.817178pt;}
.ws3b{word-spacing:1.870312pt;}
.ws178{word-spacing:1.888922pt;}
.wse9{word-spacing:1.923446pt;}
.ws45{word-spacing:1.952021pt;}
.ws9d{word-spacing:1.969098pt;}
.ws2d{word-spacing:1.976580pt;}
.ws154{word-spacing:2.029714pt;}
.wsb1{word-spacing:2.082848pt;}
.ws103{word-spacing:2.163616pt;}
.ws4a{word-spacing:2.189115pt;}
.wsc5{word-spacing:2.242249pt;}
.ws104{word-spacing:2.248631pt;}
.ws179{word-spacing:2.271488pt;}
.ws185{word-spacing:2.281052pt;}
.ws77{word-spacing:2.348517pt;}
.ws7d{word-spacing:2.454785pt;}
.ws7f{word-spacing:2.467943pt;}
.ws81{word-spacing:2.478702pt;}
.ws35{word-spacing:2.503674pt;}
.ws5e{word-spacing:2.507919pt;}
.wsc1{word-spacing:2.561052pt;}
.ws102{word-spacing:2.667320pt;}
.wsb3{word-spacing:2.673703pt;}
.ws3{word-spacing:2.701875pt;}
.ws92{word-spacing:2.720454pt;}
.ws2{word-spacing:2.749696pt;}
.ws8e{word-spacing:2.773588pt;}
.wsc2{word-spacing:2.826722pt;}
.wsa6{word-spacing:2.879856pt;}
.ws2a{word-spacing:2.927327pt;}
.ws2c{word-spacing:2.932989pt;}
.ws68{word-spacing:2.956541pt;}
.ws1f{word-spacing:2.986123pt;}
.wsa9{word-spacing:3.039257pt;}
.ws4c{word-spacing:3.092391pt;}
.ws15e{word-spacing:3.189647pt;}
.wsf3{word-spacing:3.198659pt;}
.ws6a{word-spacing:3.251793pt;}
.ws55{word-spacing:3.304927pt;}
.wsbb{word-spacing:3.438933pt;}
.wsb8{word-spacing:3.464328pt;}
.ws17e{word-spacing:3.467008pt;}
.ws79{word-spacing:3.517462pt;}
.ws175{word-spacing:3.610470pt;}
.ws78{word-spacing:3.623730pt;}
.ws26{word-spacing:3.729997pt;}
.ws28{word-spacing:3.783131pt;}
.wsc4{word-spacing:3.836265pt;}
.ws4e{word-spacing:3.889399pt;}
.ws60{word-spacing:4.048801pt;}
.ws6c{word-spacing:4.101935pt;}
.ws90{word-spacing:4.155068pt;}
.ws83{word-spacing:4.261336pt;}
.ws174{word-spacing:4.279962pt;}
.ws3c{word-spacing:4.367604pt;}
.ws10{word-spacing:4.471245pt;}
.ws66{word-spacing:4.473872pt;}
.ws64{word-spacing:4.527005pt;}
.ws16a{word-spacing:4.566886pt;}
.wsf2{word-spacing:4.686407pt;}
.wsac{word-spacing:4.792675pt;}
.ws176{word-spacing:4.805990pt;}
.ws7b{word-spacing:4.845809pt;}
.ws47{word-spacing:4.898943pt;}
.ws158{word-spacing:4.949453pt;}
.ws157{word-spacing:5.006838pt;}
.ws16f{word-spacing:5.054659pt;}
.wsb9{word-spacing:5.058344pt;}
.ws5d{word-spacing:5.164612pt;}
.ws8{word-spacing:5.188557pt;}
.ws5b{word-spacing:5.324013pt;}
.ws172{word-spacing:5.427661pt;}
.ws48{word-spacing:5.430281pt;}
.wsca{word-spacing:5.483415pt;}
.ws18{word-spacing:5.536549pt;}
.ws30{word-spacing:5.589683pt;}
.ws11{word-spacing:5.594711pt;}
.wscd{word-spacing:5.642817pt;}
.ws17d{word-spacing:5.676329pt;}
.ws59{word-spacing:5.695951pt;}
.ws169{word-spacing:5.714586pt;}
.wsa2{word-spacing:5.749084pt;}
.ws167{word-spacing:5.762406pt;}
.ws9c{word-spacing:5.802218pt;}
.wse5{word-spacing:5.855352pt;}
.wse3{word-spacing:5.888739pt;}
.ws74{word-spacing:5.961620pt;}
.ws40{word-spacing:6.067888pt;}
.ws2f{word-spacing:6.121021pt;}
.ws41{word-spacing:6.227289pt;}
.wsf5{word-spacing:6.384336pt;}
.ws1b{word-spacing:6.386691pt;}
.ws1e{word-spacing:6.492959pt;}
.wsf{word-spacing:6.575360pt;}
.ws61{word-spacing:6.599226pt;}
.ws17f{word-spacing:6.623181pt;}
.ws16e{word-spacing:6.632745pt;}
.ws15{word-spacing:6.652360pt;}
.wsfe{word-spacing:6.680455pt;}
.ws29{word-spacing:6.705494pt;}
.ws98{word-spacing:6.758628pt;}
.ws91{word-spacing:6.811762pt;}
.ws17c{word-spacing:6.826148pt;}
.ws57{word-spacing:6.864896pt;}
.ws75{word-spacing:6.918029pt;}
.ws177{word-spacing:6.919670pt;}
.ws17b{word-spacing:7.063132pt;}
.ws9f{word-spacing:7.077431pt;}
.ws8d{word-spacing:7.183699pt;}
.wse0{word-spacing:7.208793pt;}
.wsde{word-spacing:7.236833pt;}
.ws162{word-spacing:7.292672pt;}
.ws16d{word-spacing:7.340493pt;}
.ws8c{word-spacing:7.343100pt;}
.wsd{word-spacing:7.433655pt;}
.ws7{word-spacing:7.436134pt;}
.ws5{word-spacing:7.437978pt;}
.ws173{word-spacing:7.493519pt;}
.ws52{word-spacing:7.502502pt;}
.ws50{word-spacing:7.555636pt;}
.wsc3{word-spacing:7.608770pt;}
.wsa0{word-spacing:7.768171pt;}
.ws171{word-spacing:7.780444pt;}
.ws31{word-spacing:7.821305pt;}
.ws107{word-spacing:8.140108pt;}
.ws88{word-spacing:8.193242pt;}
.ws9e{word-spacing:8.246376pt;}
.wsf0{word-spacing:8.299510pt;}
.ws16b{word-spacing:8.392550pt;}
.wse{word-spacing:8.533378pt;}
.ws6{word-spacing:8.544044pt;}
.wsa4{word-spacing:8.565179pt;}
.ws180{word-spacing:8.593398pt;}
.wsa3{word-spacing:8.618313pt;}
.ws76{word-spacing:8.724581pt;}
.ws168{word-spacing:8.775117pt;}
.ws93{word-spacing:8.777715pt;}
.wsd1{word-spacing:8.811319pt;}
.ws181{word-spacing:8.822938pt;}
.wscf{word-spacing:8.830849pt;}
.ws3d{word-spacing:8.937116pt;}
.ws85{word-spacing:9.096518pt;}
.ws155{word-spacing:9.149652pt;}
.ws163{word-spacing:9.215068pt;}
.ws37{word-spacing:9.415321pt;}
.ws9b{word-spacing:9.468455pt;}
.ws43{word-spacing:9.627857pt;}
.wsd6{word-spacing:9.667459pt;}
.wsd4{word-spacing:9.680991pt;}
.ws12{word-spacing:9.731533pt;}
.wsa5{word-spacing:9.734124pt;}
.ws4{word-spacing:9.827174pt;}
.wsdb{word-spacing:9.838126pt;}
.wsdd{word-spacing:9.840392pt;}
.ws2e{word-spacing:10.159195pt;}
.ws16c{word-spacing:10.219305pt;}
.ws170{word-spacing:10.401024pt;}
.ws15c{word-spacing:10.544486pt;}
.ws182{word-spacing:10.649692pt;}
.ws32{word-spacing:10.742421pt;}
.wsaf{word-spacing:11.115605pt;}
.wsbe{word-spacing:12.072957pt;}
.ws15a{word-spacing:12.144433pt;}
.ws15f{word-spacing:12.935526pt;}
.ws21{word-spacing:13.464957pt;}
.ws8b{word-spacing:14.317943pt;}
.wsd9{word-spacing:14.599395pt;}
.wsfb{word-spacing:14.627480pt;}
.wsfa{word-spacing:14.632813pt;}
.wsb6{word-spacing:14.990290pt;}
.wsed{word-spacing:15.052728pt;}
.ws3a{word-spacing:15.064957pt;}
.ws159{word-spacing:15.283308pt;}
.ws53{word-spacing:15.384957pt;}
.wsc6{word-spacing:15.500728pt;}
.ws105{word-spacing:15.982707pt;}
.wsf7{word-spacing:15.989809pt;}
.wsef{word-spacing:16.012728pt;}
.ws106{word-spacing:16.280258pt;}
.wsc8{word-spacing:16.339624pt;}
.ws9a{word-spacing:16.371624pt;}
.wsff{word-spacing:16.529123pt;}
.ws19{word-spacing:16.586862pt;}
.wsea{word-spacing:16.644392pt;}
.ws46{word-spacing:16.659624pt;}
.ws4b{word-spacing:16.899624pt;}
.ws82{word-spacing:17.172097pt;}
.ws80{word-spacing:17.174888pt;}
.ws7e{word-spacing:17.178659pt;}
.ws5f{word-spacing:17.228728pt;}
.wsa7{word-spacing:17.607395pt;}
.ws109{word-spacing:17.642385pt;}
.ws67{word-spacing:17.651624pt;}
.ws44{word-spacing:17.655395pt;}
.ws2b{word-spacing:17.656957pt;}
.ws10a{word-spacing:17.662681pt;}
.wsaa{word-spacing:17.734607pt;}
.wsa8{word-spacing:17.737431pt;}
.ws4d{word-spacing:17.800957pt;}
.wsf4{word-spacing:17.922062pt;}
.ws56{word-spacing:18.024957pt;}
.wsbc{word-spacing:18.134607pt;}
.ws27{word-spacing:18.436097pt;}
.ws4f{word-spacing:18.579624pt;}
.ws65{word-spacing:19.203624pt;}
.wsba{word-spacing:19.758290pt;}
.wsbf{word-spacing:19.874062pt;}
.ws5c{word-spacing:20.014290pt;}
.wsc9{word-spacing:20.152957pt;}
.ws49{word-spacing:20.158290pt;}
.wse8{word-spacing:20.195624pt;}
.ws1a{word-spacing:20.232695pt;}
.ws6d{word-spacing:20.297137pt;}
.wsab{word-spacing:20.307624pt;}
.wsce{word-spacing:20.350290pt;}
.ws5a{word-spacing:20.380728pt;}
.ws7c{word-spacing:20.400032pt;}
.wsae{word-spacing:20.450062pt;}
.ws1{word-spacing:20.722347pt;}
.ws1c{word-spacing:21.112957pt;}
.ws1d{word-spacing:21.219624pt;}
.ws161{word-spacing:21.351987pt;}
.ws16{word-spacing:21.369431pt;}
.ws164{word-spacing:21.830195pt;}
.wsad{word-spacing:21.874062pt;}
.ws160{word-spacing:22.126684pt;}
.ws51{word-spacing:22.232957pt;}
.ws89{word-spacing:22.910290pt;}
.ws63{word-spacing:23.846639pt;}
.ws38{word-spacing:24.147624pt;}
.wsd3{word-spacing:24.371624pt;}
.ws108{word-spacing:24.505339pt;}
.wse6{word-spacing:24.647765pt;}
.wse4{word-spacing:24.670634pt;}
.ws42{word-spacing:24.980882pt;}
.wsdf{word-spacing:25.970432pt;}
.wse1{word-spacing:25.983548pt;}
.ws3f{word-spacing:26.504653pt;}
.wsd2{word-spacing:27.587977pt;}
.wsd0{word-spacing:27.592203pt;}
.ws0{word-spacing:27.636455pt;}
.ws3e{word-spacing:28.328096pt;}
.wsd5{word-spacing:28.438594pt;}
.wsd7{word-spacing:28.446644pt;}
.wsdc{word-spacing:28.615415pt;}
.ws62{word-spacing:28.615887pt;}
.wsda{word-spacing:28.619940pt;}
.ws13{word-spacing:37.108837pt;}
.ws14{word-spacing:37.142743pt;}
.ws121{word-spacing:62.389440pt;}
.ws138{word-spacing:62.425381pt;}
.ws6b{word-spacing:71.667439pt;}
.ws6e{word-spacing:73.431004pt;}
.ws125{word-spacing:80.180080pt;}
.ws122{word-spacing:81.473945pt;}
.ws142{word-spacing:81.509886pt;}
.wsb4{word-spacing:86.000687pt;}
.ws11f{word-spacing:88.842750pt;}
.ws136{word-spacing:89.201193pt;}
.ws12a{word-spacing:97.198457pt;}
.ws11c{word-spacing:97.200031pt;}
.ws114{word-spacing:97.201747pt;}
.ws11e{word-spacing:97.205341pt;}
.ws133{word-spacing:97.207219pt;}
.ws111{word-spacing:97.207531pt;}
.ws13d{word-spacing:97.208935pt;}
.ws10e{word-spacing:97.209849pt;}
.ws12b{word-spacing:97.210814pt;}
.ws116{word-spacing:97.212168pt;}
.ws13e{word-spacing:97.223312pt;}
.ws13c{word-spacing:97.230500pt;}
.ws127{word-spacing:97.230804pt;}
.ws14c{word-spacing:104.605734pt;}
.ws12f{word-spacing:106.731506pt;}
.ws73{word-spacing:115.629921pt;}
.ws71{word-spacing:116.958267pt;}
.ws117{word-spacing:131.470725pt;}
.ws110{word-spacing:132.243449pt;}
.ws11b{word-spacing:136.363229pt;}
.ws140{word-spacing:140.623574pt;}
.ws70{word-spacing:142.196854pt;}
.ws132{word-spacing:146.534140pt;}
.ws131{word-spacing:148.915091pt;}
.ws144{word-spacing:151.540678pt;}
.ws14d{word-spacing:152.384922pt;}
.ws124{word-spacing:161.605748pt;}
.ws126{word-spacing:164.419904pt;}
.ws128{word-spacing:165.377843pt;}
.ws6f{word-spacing:168.763787pt;}
.ws14f{word-spacing:170.139622pt;}
.ws11d{word-spacing:170.751279pt;}
.ws118{word-spacing:171.365865pt;}
.ws113{word-spacing:173.675576pt;}
.ws12c{word-spacing:175.442913pt;}
.ws146{word-spacing:176.043122pt;}
.ws135{word-spacing:177.842073pt;}
.ws150{word-spacing:178.467441pt;}
.ws10d{word-spacing:182.955461pt;}
.ws134{word-spacing:187.907143pt;}
.ws148{word-spacing:188.532511pt;}
.ws14b{word-spacing:195.873154pt;}
.ws129{word-spacing:196.831216pt;}
.ws13a{word-spacing:199.607754pt;}
.ws130{word-spacing:202.461444pt;}
.ws13b{word-spacing:203.110054pt;}
.ws12e{word-spacing:203.888289pt;}
.ws14a{word-spacing:205.802012pt;}
.ws14e{word-spacing:207.949587pt;}
.ws13f{word-spacing:213.304750pt;}
.ws120{word-spacing:213.953360pt;}
.ws119{word-spacing:215.154419pt;}
.ws115{word-spacing:215.853248pt;}
.ws112{word-spacing:216.448686pt;}
.ws11a{word-spacing:225.219490pt;}
.ws10f{word-spacing:225.476585pt;}
.ws143{word-spacing:227.815683pt;}
.ws72{word-spacing:232.370397pt;}
.ws141{word-spacing:238.146953pt;}
.ws123{word-spacing:238.239123pt;}
.ws151{word-spacing:246.247984pt;}
.ws12d{word-spacing:253.488116pt;}
.ws139{word-spacing:255.784726pt;}
.ws149{word-spacing:261.393028pt;}
.ws152{word-spacing:261.572731pt;}
.ws137{word-spacing:284.255261pt;}
.ws147{word-spacing:316.741687pt;}
.ws10c{word-spacing:408.609679pt;}
.ws145{word-spacing:613.908312pt;}
.ws10b{word-spacing:912.138714pt;}
._5f{margin-left:-33.533894pt;}
._5{margin-left:-31.163150pt;}
._5c{margin-left:-25.263775pt;}
._5d{margin-left:-24.060671pt;}
._5b{margin-left:-23.114674pt;}
._61{margin-left:-21.955125pt;}
._0{margin-left:-7.161606pt;}
._6{margin-left:-4.888356pt;}
._4{margin-left:-3.443098pt;}
._2{margin-left:-2.387202pt;}
._3{margin-left:-1.045249pt;}
._7{width:1.338982pt;}
._1{width:2.295387pt;}
._2e{width:4.257686pt;}
._24{width:5.366521pt;}
._28{width:11.477956pt;}
._29{width:13.212945pt;}
._2d{width:14.182897pt;}
._f{width:16.003775pt;}
._23{width:17.144809pt;}
._12{width:18.280680pt;}
._15{width:20.116486pt;}
._2c{width:21.099454pt;}
._9{width:21.990760pt;}
._a{width:23.001805pt;}
._1b{width:24.069682pt;}
._8{width:25.286557pt;}
._18{width:26.598796pt;}
._25{width:27.767773pt;}
._b{width:29.266330pt;}
._17{width:31.115643pt;}
._11{width:32.124739pt;}
._c{width:33.283277pt;}
._16{width:34.189961pt;}
._21{width:35.642189pt;}
._26{width:36.599256pt;}
._19{width:37.707373pt;}
._22{width:39.918030pt;}
._2a{width:41.832147pt;}
._14{width:43.437782pt;}
._2b{width:44.976823pt;}
._10{width:45.875775pt;}
._27{width:47.792416pt;}
._e{width:55.410763pt;}
._60{width:56.811110pt;}
._1c{width:63.813774pt;}
._1a{width:71.731200pt;}
._5e{width:78.079124pt;}
._d{width:86.077200pt;}
._3b{width:107.822524pt;}
._3f{width:113.547415pt;}
._34{width:119.696756pt;}
._52{width:124.010478pt;}
._37{width:125.001712pt;}
._35{width:128.694426pt;}
._3d{width:141.848289pt;}
._39{width:145.791522pt;}
._43{width:148.809564pt;}
._4f{width:149.724676pt;}
._20{width:156.957442pt;}
._1f{width:158.285789pt;}
._48{width:163.422307pt;}
._3c{width:167.411724pt;}
._50{width:175.721640pt;}
._33{width:178.412543pt;}
._56{width:180.320369pt;}
._1e{width:184.852722pt;}
._41{width:188.563495pt;}
._58{width:190.958813pt;}
._53{width:198.192069pt;}
._51{width:205.803671pt;}
._55{width:207.449650pt;}
._4c{width:208.746484pt;}
._1d{width:211.419655pt;}
._42{width:212.432603pt;}
._3a{width:213.976857pt;}
._3e{width:217.312724pt;}
._47{width:220.648790pt;}
._49{width:223.110613pt;}
._54{width:225.137315pt;}
._57{width:227.042797pt;}
._36{width:230.366535pt;}
._45{width:231.463968pt;}
._4d{width:234.692691pt;}
._4e{width:239.922177pt;}
._32{width:253.318069pt;}
._38{width:259.078552pt;}
._46{width:264.379699pt;}
._40{width:268.408025pt;}
._4a{width:270.755273pt;}
._5a{width:297.624835pt;}
._44{width:303.217510pt;}
._4b{width:344.530402pt;}
._31{width:413.713257pt;}
._30{width:422.878132pt;}
._59{width:624.264792pt;}
._2f{width:768.173094pt;}
._13{width:1323.121629pt;}
.fs3{font-size:31.880533pt;}
.fs7{font-size:35.940688pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:104.692000pt;}
.y7e{bottom:104.693333pt;}
.y53{bottom:139.229333pt;}
.y29{bottom:139.230667pt;}
.y154{bottom:143.669333pt;}
.y28{bottom:151.849333pt;}
.y12a{bottom:153.841333pt;}
.y52{bottom:155.170667pt;}
.y153{bottom:158.281333pt;}
.ya4{bottom:164.469333pt;}
.y7d{bottom:165.673333pt;}
.ycb{bottom:171.110667pt;}
.y152{bottom:175.549333pt;}
.y51{bottom:179.689333pt;}
.y27{bottom:180.660000pt;}
.y7c{bottom:181.613333pt;}
.y129{bottom:185.722667pt;}
.yca{bottom:187.050667pt;}
.y151{bottom:190.161333pt;}
.y26{bottom:196.600000pt;}
.y7b{bottom:197.554667pt;}
.y128{bottom:200.334667pt;}
.yde{bottom:202.990667pt;}
.yc9{bottom:203.214667pt;}
.y150{bottom:207.430667pt;}
.y25{bottom:212.540000pt;}
.y7a{bottom:213.494667pt;}
.y50{bottom:216.829333pt;}
.y127{bottom:217.602667pt;}
.ydd{bottom:218.930667pt;}
.yc8{bottom:219.154667pt;}
.y14f{bottom:222.041333pt;}
.y24{bottom:228.480000pt;}
.y79{bottom:229.434667pt;}
.y126{bottom:232.214667pt;}
.y4f{bottom:232.769333pt;}
.yf7{bottom:233.340000pt;}
.ya3{bottom:233.397333pt;}
.ydc{bottom:234.870667pt;}
.yc7{bottom:235.094667pt;}
.y14e{bottom:239.310667pt;}
.y23{bottom:244.420000pt;}
.y78{bottom:245.374667pt;}
.yf6{bottom:249.281333pt;}
.ya2{bottom:249.337333pt;}
.y125{bottom:249.482667pt;}
.ydb{bottom:250.812000pt;}
.yc6{bottom:251.034667pt;}
.y14d{bottom:256.578667pt;}
.y4e{bottom:259.126667pt;}
.y22{bottom:260.360000pt;}
.y77{bottom:261.314667pt;}
.y124{bottom:264.094667pt;}
.yf5{bottom:265.221333pt;}
.ya1{bottom:265.277333pt;}
.yc5{bottom:266.976000pt;}
.yda{bottom:267.117333pt;}
.y14c{bottom:271.190667pt;}
.y4d{bottom:275.066667pt;}
.y21{bottom:276.301333pt;}
.y76{bottom:277.256000pt;}
.yf4{bottom:281.161333pt;}
.ya0{bottom:281.217333pt;}
.yc4{bottom:282.916000pt;}
.yd9{bottom:283.057333pt;}
.y14b{bottom:288.460000pt;}
.y20{bottom:292.241333pt;}
.y123{bottom:292.385333pt;}
.y75{bottom:293.196000pt;}
.yf3{bottom:297.101333pt;}
.y9f{bottom:297.158667pt;}
.yc3{bottom:298.856000pt;}
.yd8{bottom:298.997333pt;}
.y4c{bottom:301.529333pt;}
.y14a{bottom:303.072000pt;}
.y1f{bottom:308.181333pt;}
.y74{bottom:309.136000pt;}
.yf2{bottom:313.041333pt;}
.y9e{bottom:313.098667pt;}
.yc2{bottom:314.796000pt;}
.yd7{bottom:314.937333pt;}
.y149{bottom:317.682667pt;}
.y1e{bottom:324.121333pt;}
.y73{bottom:325.076000pt;}
.y4b{bottom:327.992000pt;}
.yf1{bottom:328.981333pt;}
.y9d{bottom:329.038667pt;}
.yc1{bottom:330.736000pt;}
.yd6{bottom:331.242667pt;}
.y148{bottom:334.952000pt;}
.y122{bottom:339.365333pt;}
.y1d{bottom:340.061333pt;}
.y72{bottom:341.016000pt;}
.y9c{bottom:344.978667pt;}
.yc0{bottom:346.676000pt;}
.yd5{bottom:347.184000pt;}
.y147{bottom:349.564000pt;}
.y4a{bottom:354.350667pt;}
.y121{bottom:355.305333pt;}
.y1c{bottom:356.001333pt;}
.y71{bottom:356.956000pt;}
.yf0{bottom:358.076000pt;}
.y9b{bottom:360.918667pt;}
.yd4{bottom:363.124000pt;}
.y146{bottom:364.176000pt;}
.y49{bottom:370.290667pt;}
.y120{bottom:371.245333pt;}
.ybf{bottom:371.612000pt;}
.y1b{bottom:371.942667pt;}
.y70{bottom:372.897333pt;}
.y9a{bottom:376.858667pt;}
.y145{bottom:378.788000pt;}
.yd3{bottom:379.064000pt;}
.y1a{bottom:387.882667pt;}
.y6f{bottom:388.837333pt;}
.y99{bottom:392.800000pt;}
.y48{bottom:394.809333pt;}
.yd2{bottom:395.004000pt;}
.y144{bottom:396.056000pt;}
.yef{bottom:402.004000pt;}
.y11f{bottom:402.269333pt;}
.y19{bottom:403.822667pt;}
.y6e{bottom:404.777333pt;}
.y98{bottom:408.740000pt;}
.y143{bottom:410.668000pt;}
.yd1{bottom:410.944000pt;}
.yee{bottom:417.944000pt;}
.y18{bottom:419.762667pt;}
.ybe{bottom:423.938667pt;}
.y97{bottom:424.680000pt;}
.y47{bottom:426.560000pt;}
.yd0{bottom:426.884000pt;}
.y142{bottom:427.936000pt;}
.y6d{bottom:429.296000pt;}
.yed{bottom:433.885333pt;}
.y17{bottom:435.702667pt;}
.ybd{bottom:439.878667pt;}
.y96{bottom:440.620000pt;}
.y141{bottom:442.548000pt;}
.ycf{bottom:442.825333pt;}
.yec{bottom:449.825333pt;}
.y11e{bottom:450.226746pt;}
.y16{bottom:451.644000pt;}
.ybc{bottom:455.818667pt;}
.y95{bottom:456.560000pt;}
.y140{bottom:459.817333pt;}
.y11d{bottom:460.896081pt;}
.yeb{bottom:465.765333pt;}
.y6c{bottom:466.481333pt;}
.y46{bottom:470.444000pt;}
.y11c{bottom:471.566543pt;}
.ybb{bottom:471.760000pt;}
.y94{bottom:472.500000pt;}
.y13f{bottom:474.429333pt;}
.y15{bottom:480.737333pt;}
.yea{bottom:481.705333pt;}
.y11b{bottom:482.235878pt;}
.y6b{bottom:482.421333pt;}
.y45{bottom:486.384000pt;}
.yba{bottom:487.700000pt;}
.yce{bottom:488.188000pt;}
.y93{bottom:488.441333pt;}
.y13e{bottom:491.697333pt;}
.y11a{bottom:492.906340pt;}
.ye9{bottom:497.645333pt;}
.y6a{bottom:498.361333pt;}
.y44{bottom:502.324000pt;}
.y119{bottom:503.575676pt;}
.yb9{bottom:503.640000pt;}
.ycd{bottom:504.128000pt;}
.y92{bottom:504.381333pt;}
.y14{bottom:504.648000pt;}
.y13d{bottom:506.309333pt;}
.ye8{bottom:513.585333pt;}
.y118{bottom:514.246138pt;}
.y69{bottom:514.301333pt;}
.y43{bottom:518.264000pt;}
.yb8{bottom:519.580000pt;}
.ycc{bottom:520.068000pt;}
.y91{bottom:520.321333pt;}
.y13c{bottom:520.921333pt;}
.y117{bottom:524.915473pt;}
.ye7{bottom:529.526667pt;}
.y68{bottom:530.241333pt;}
.y42{bottom:534.204000pt;}
.yb7{bottom:535.520000pt;}
.y116{bottom:535.585935pt;}
.y90{bottom:536.261333pt;}
.y13b{bottom:538.189333pt;}
.ye6{bottom:545.466667pt;}
.y67{bottom:546.182667pt;}
.y115{bottom:546.255270pt;}
.y13{bottom:548.576000pt;}
.y41{bottom:550.144000pt;}
.yb6{bottom:551.460000pt;}
.y8f{bottom:552.201333pt;}
.y13a{bottom:552.801333pt;}
.y114{bottom:556.925733pt;}
.ye5{bottom:561.406667pt;}
.y66{bottom:562.122667pt;}
.y12{bottom:563.188000pt;}
.y40{bottom:566.085333pt;}
.yb5{bottom:567.401333pt;}
.y113{bottom:567.595068pt;}
.y8e{bottom:568.142667pt;}
.y139{bottom:570.070667pt;}
.ye4{bottom:577.346667pt;}
.y11{bottom:577.800000pt;}
.y65{bottom:578.062667pt;}
.y112{bottom:578.265530pt;}
.y3f{bottom:582.025333pt;}
.yb4{bottom:583.341333pt;}
.y8d{bottom:584.082667pt;}
.y138{bottom:584.681333pt;}
.y111{bottom:588.934865pt;}
.y10{bottom:592.412000pt;}
.y64{bottom:594.002667pt;}
.y3e{bottom:597.965333pt;}
.yb3{bottom:599.281333pt;}
.y137{bottom:599.293333pt;}
.y110{bottom:599.605328pt;}
.y8c{bottom:600.022667pt;}
.yf{bottom:607.024000pt;}
.y63{bottom:609.942667pt;}
.y10f{bottom:610.274663pt;}
.y3d{bottom:613.905333pt;}
.yb2{bottom:615.221333pt;}
.y8b{bottom:615.962667pt;}
.y136{bottom:616.562667pt;}
.y10e{bottom:620.945125pt;}
.ye{bottom:621.636000pt;}
.ye3{bottom:621.980000pt;}
.y62{bottom:625.882667pt;}
.y3c{bottom:629.845333pt;}
.y135{bottom:631.174667pt;}
.y10d{bottom:631.614460pt;}
.y8a{bottom:631.902667pt;}
.yd{bottom:636.246667pt;}
.ye2{bottom:637.920000pt;}
.y61{bottom:641.824000pt;}
.y10c{bottom:642.284923pt;}
.yb1{bottom:642.684000pt;}
.y3b{bottom:645.785333pt;}
.y134{bottom:645.786667pt;}
.y89{bottom:647.842667pt;}
.yc{bottom:650.858667pt;}
.y10b{bottom:652.954258pt;}
.ye1{bottom:653.860000pt;}
.y60{bottom:657.764000pt;}
.yb0{bottom:658.624000pt;}
.y3a{bottom:661.726667pt;}
.y133{bottom:663.054667pt;}
.y10a{bottom:663.624720pt;}
.y88{bottom:663.784000pt;}
.yb{bottom:665.470667pt;}
.ye0{bottom:669.800000pt;}
.y5f{bottom:673.704000pt;}
.y109{bottom:674.294055pt;}
.yaf{bottom:674.564000pt;}
.y39{bottom:677.666667pt;}
.y87{bottom:679.724000pt;}
.ya{bottom:680.082667pt;}
.y108{bottom:684.964517pt;}
.y5e{bottom:689.644000pt;}
.yae{bottom:690.504000pt;}
.y38{bottom:693.606667pt;}
.y132{bottom:694.934667pt;}
.y107{bottom:695.633852pt;}
.y86{bottom:695.664000pt;}
.ydf{bottom:698.625333pt;}
.y9{bottom:700.905333pt;}
.y106{bottom:706.304315pt;}
.yad{bottom:706.444000pt;}
.y37{bottom:709.546667pt;}
.y85{bottom:711.604000pt;}
.y105{bottom:716.973650pt;}
.y36{bottom:725.486667pt;}
.y131{bottom:726.816000pt;}
.y84{bottom:727.544000pt;}
.y104{bottom:727.644112pt;}
.yac{bottom:733.906667pt;}
.y5d{bottom:737.626667pt;}
.y103{bottom:738.313447pt;}
.y35{bottom:741.428000pt;}
.y8{bottom:742.084000pt;}
.y83{bottom:743.484000pt;}
.y102{bottom:748.982782pt;}
.yab{bottom:749.846667pt;}
.y34{bottom:757.368000pt;}
.y130{bottom:758.696000pt;}
.y82{bottom:759.425333pt;}
.y101{bottom:759.653245pt;}
.y5c{bottom:760.237333pt;}
.y7{bottom:761.774667pt;}
.yaa{bottom:765.786667pt;}
.y100{bottom:770.322580pt;}
.y6{bottom:771.308000pt;}
.y33{bottom:773.308000pt;}
.y81{bottom:775.365333pt;}
.y12f{bottom:775.964000pt;}
.y5b{bottom:776.177333pt;}
.yff{bottom:780.993042pt;}
.ya9{bottom:781.726667pt;}
.y32{bottom:789.248000pt;}
.y12e{bottom:790.576000pt;}
.y5{bottom:790.998667pt;}
.y80{bottom:791.305333pt;}
.yfe{bottom:791.662377pt;}
.y5a{bottom:792.117333pt;}
.ya8{bottom:797.668000pt;}
.yfd{bottom:802.332840pt;}
.y31{bottom:805.188000pt;}
.y59{bottom:808.057333pt;}
.yfc{bottom:813.002175pt;}
.y4{bottom:813.760000pt;}
.y7f{bottom:815.824000pt;}
.y30{bottom:821.128000pt;}
.y12d{bottom:822.457333pt;}
.yfb{bottom:823.672637pt;}
.y58{bottom:823.997333pt;}
.ya7{bottom:827.786667pt;}
.y3{bottom:832.357333pt;}
.y2f{bottom:837.069333pt;}
.yfa{bottom:839.756682pt;}
.ya6{bottom:843.726667pt;}
.y57{bottom:846.341333pt;}
.y2e{bottom:853.009333pt;}
.y12c{bottom:854.337333pt;}
.yf9{bottom:855.840727pt;}
.y2{bottom:866.893333pt;}
.ya5{bottom:868.661333pt;}
.y2d{bottom:868.949333pt;}
.y56{bottom:868.950667pt;}
.y2c{bottom:884.889333pt;}
.y12b{bottom:886.217333pt;}
.yf8{bottom:887.014667pt;}
.y1{bottom:896.117333pt;}
.y2b{bottom:900.829333pt;}
.y55{bottom:902.954667pt;}
.y2a{bottom:940.149333pt;}
.h3{height:21.200555pt;}
.hf{height:25.194422pt;}
.h10{height:25.338185pt;}
.h11{height:26.955516pt;}
.h4{height:29.457613pt;}
.he{height:29.499997pt;}
.ha{height:31.880400pt;}
.h9{height:33.160400pt;}
.h5{height:33.474560pt;}
.h6{height:35.865600pt;}
.hc{height:37.193707pt;}
.hd{height:37.459376pt;}
.h8{height:39.850400pt;}
.hb{height:44.632747pt;}
.h12{height:47.956267pt;}
.h7{height:53.559147pt;}
.h2{height:55.016400pt;}
.h1{height:64.179011pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:133.984000pt;}
.x1{left:136.985333pt;}
.x19{left:140.128000pt;}
.x17{left:143.905895pt;}
.xe{left:153.909333pt;}
.xf{left:157.894667pt;}
.x1b{left:159.740000pt;}
.x15{left:161.574667pt;}
.xd{left:166.262667pt;}
.xb{left:167.193333pt;}
.x16{left:182.328579pt;}
.xa{left:185.624000pt;}
.x1e{left:199.070667pt;}
.x10{left:209.833333pt;}
.x1c{left:214.090667pt;}
.x14{left:236.716000pt;}
.x2{left:246.278667pt;}
.x1d{left:254.406667pt;}
.x1a{left:274.562667pt;}
.x18{left:280.186809pt;}
.x4{left:284.072000pt;}
.x3{left:288.214667pt;}
.x7{left:290.210667pt;}
.x5{left:294.272000pt;}
.x11{left:308.449333pt;}
.x6{left:313.854667pt;}
.x8{left:326.406667pt;}
.x9{left:380.941333pt;}
.x12{left:392.386667pt;}
.x13{left:675.373333pt;}
}




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