
    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_0351a588d411067e988c91ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_6919722ff13eb4a8e612c4e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.039333;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_7c730cb68bb89f7ec42ca1aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.953000;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_05d026069d3248abfcf36c11.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.949000;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_292fe95571e848d93c9f0daa.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.042000;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_9d3158bfa1d7ba548ccf4419.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.032000;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_42927e0546952dae8b1ec319.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_e09d5fb56ac6001d1c494311.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.039333;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_0af9ca8584a71718f7754067.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.039333;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_5b923461869344518610e9dd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_7c730cb68bb89f7ec42ca1aa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.953000;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_b9966a233e62d8556b079035.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.961000;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_e6134b61f16f1d3ae44db6fb.woff2')format("woff");}.fff{font-family:fff;line-height:1.032000;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_0af9ca8584a71718f7754067.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.039333;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_5b923461869344518610e9dd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910645;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_0fbf69aaf6ef2aa53bf89a56.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.961000;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_5c83aca1b0a2418fb9ec38d6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910645;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_759bf6563bee52a4ba4f9d99.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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;}
.m3{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,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);}
.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:-36.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.ls10{letter-spacing:-4.260000px;}
.lsc{letter-spacing:-2.829000px;}
.ls15{letter-spacing:-1.380000px;}
.ls13{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-1.197000px;}
.ls6{letter-spacing:-0.768000px;}
.lsd{letter-spacing:-0.759000px;}
.ls1{letter-spacing:-0.630000px;}
.ls17{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.480000px;}
.lsa{letter-spacing:-0.441000px;}
.ls16{letter-spacing:-0.420000px;}
.ls14{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.345000px;}
.ls12{letter-spacing:-0.342000px;}
.ls4{letter-spacing:-0.252000px;}
.ls2{letter-spacing:-0.240000px;}
.ls3{letter-spacing:-0.189000px;}
.lse{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.063000px;}
.lsf{letter-spacing:0.094649px;}
.ls7{letter-spacing:0.345000px;}
.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;}
}
.ws1{word-spacing:-22.302000px;}
.ws58{word-spacing:-13.248000px;}
.ws7a{word-spacing:-13.110000px;}
.ws2b{word-spacing:-12.765000px;}
.ws59{word-spacing:-12.351000px;}
.wsc9{word-spacing:-12.213000px;}
.ws6c{word-spacing:-11.831100px;}
.ws6b{word-spacing:-11.655000px;}
.ws3{word-spacing:-11.520000px;}
.wsb7{word-spacing:-11.400000px;}
.ws2{word-spacing:-11.280000px;}
.wsfd{word-spacing:-11.160000px;}
.ws5a{word-spacing:-11.151000px;}
.wsb8{word-spacing:-11.040000px;}
.ws4{word-spacing:-10.962000px;}
.ws57{word-spacing:-10.281000px;}
.wsd{word-spacing:-9.954000px;}
.ws5{word-spacing:-8.352000px;}
.ws4d{word-spacing:-3.519000px;}
.wsc6{word-spacing:-3.243000px;}
.ws6{word-spacing:-3.024000px;}
.ws89{word-spacing:-2.829000px;}
.wsc1{word-spacing:-2.622000px;}
.ws86{word-spacing:-2.484000px;}
.ws69{word-spacing:-2.346000px;}
.ws71{word-spacing:-2.277000px;}
.wsea{word-spacing:-2.220000px;}
.ws56{word-spacing:-2.208000px;}
.wscb{word-spacing:-2.139000px;}
.ws7b{word-spacing:-2.070000px;}
.ws88{word-spacing:-2.001000px;}
.wsd7{word-spacing:-1.980000px;}
.ws3c{word-spacing:-1.932000px;}
.ws91{word-spacing:-1.863000px;}
.ws8{word-spacing:-1.827000px;}
.wsa5{word-spacing:-1.794000px;}
.wsc5{word-spacing:-1.725000px;}
.ws9d{word-spacing:-1.656000px;}
.wsc7{word-spacing:-1.587000px;}
.wsfa{word-spacing:-1.560000px;}
.ws3d{word-spacing:-1.518000px;}
.ws85{word-spacing:-1.449000px;}
.ws23{word-spacing:-1.380000px;}
.ws60{word-spacing:-1.311000px;}
.wsd9{word-spacing:-1.260000px;}
.ws65{word-spacing:-1.242000px;}
.wsb2{word-spacing:-1.173000px;}
.wsd2{word-spacing:-1.140000px;}
.wsbf{word-spacing:-1.104000px;}
.ws28{word-spacing:-1.035000px;}
.ws4a{word-spacing:-0.966000px;}
.ws51{word-spacing:-0.897000px;}
.ws43{word-spacing:-0.828000px;}
.wsb1{word-spacing:-0.759000px;}
.wseb{word-spacing:-0.720000px;}
.ws3f{word-spacing:-0.690000px;}
.wsad{word-spacing:-0.684000px;}
.ws2e{word-spacing:-0.621000px;}
.wse6{word-spacing:-0.600000px;}
.ws55{word-spacing:-0.552000px;}
.ws8b{word-spacing:-0.483000px;}
.ws64{word-spacing:-0.414000px;}
.ws7c{word-spacing:-0.345000px;}
.wsa0{word-spacing:-0.276000px;}
.ws31{word-spacing:-0.207000px;}
.ws70{word-spacing:-0.189000px;}
.wsd3{word-spacing:-0.180000px;}
.ws45{word-spacing:-0.138000px;}
.ws7{word-spacing:-0.126000px;}
.ws74{word-spacing:-0.094649px;}
.ws41{word-spacing:-0.069000px;}
.ws0{word-spacing:0.000000px;}
.ws73{word-spacing:0.047324px;}
.ws17{word-spacing:0.069000px;}
.ws47{word-spacing:0.138000px;}
.ws72{word-spacing:0.180000px;}
.wsbc{word-spacing:0.240000px;}
.ws4c{word-spacing:0.276000px;}
.wsff{word-spacing:0.300000px;}
.wsa3{word-spacing:0.342000px;}
.ws79{word-spacing:0.345000px;}
.wsd8{word-spacing:0.360000px;}
.ws8e{word-spacing:0.414000px;}
.wsd6{word-spacing:0.420000px;}
.wsa1{word-spacing:0.480000px;}
.wsef{word-spacing:0.540000px;}
.ws29{word-spacing:0.552000px;}
.ws16{word-spacing:0.621000px;}
.ws35{word-spacing:0.690000px;}
.wsd5{word-spacing:0.720000px;}
.wsfe{word-spacing:0.780000px;}
.ws54{word-spacing:0.828000px;}
.wsa4{word-spacing:0.897000px;}
.wsfc{word-spacing:0.900000px;}
.ws26{word-spacing:0.966000px;}
.wsae{word-spacing:0.969000px;}
.ws100{word-spacing:1.020000px;}
.ws24{word-spacing:1.035000px;}
.wsb3{word-spacing:1.104000px;}
.wse0{word-spacing:1.140000px;}
.ws25{word-spacing:1.173000px;}
.ws13{word-spacing:1.242000px;}
.ws7f{word-spacing:1.311000px;}
.ws38{word-spacing:1.380000px;}
.wsc{word-spacing:1.392000px;}
.ws4b{word-spacing:1.449000px;}
.ws30{word-spacing:1.518000px;}
.wscd{word-spacing:1.560000px;}
.ws82{word-spacing:1.587000px;}
.wsce{word-spacing:1.620000px;}
.ws84{word-spacing:1.656000px;}
.wscf{word-spacing:1.680000px;}
.ws87{word-spacing:1.725000px;}
.ws6f{word-spacing:1.794000px;}
.wsd0{word-spacing:1.860000px;}
.ws7d{word-spacing:1.863000px;}
.ws48{word-spacing:1.932000px;}
.wse{word-spacing:1.953000px;}
.wse7{word-spacing:1.980000px;}
.ws33{word-spacing:2.001000px;}
.ws1d{word-spacing:2.070000px;}
.ws2c{word-spacing:2.139000px;}
.ws20{word-spacing:2.208000px;}
.wsa{word-spacing:2.268000px;}
.ws9f{word-spacing:2.277000px;}
.ws27{word-spacing:2.346000px;}
.wsb0{word-spacing:2.415000px;}
.wsc2{word-spacing:2.484000px;}
.wscc{word-spacing:2.520000px;}
.ws67{word-spacing:2.553000px;}
.wsed{word-spacing:2.580000px;}
.ws1e{word-spacing:2.622000px;}
.wsf0{word-spacing:2.640000px;}
.ws3e{word-spacing:2.691000px;}
.wsda{word-spacing:2.700000px;}
.ws68{word-spacing:2.760000px;}
.wsd4{word-spacing:2.820000px;}
.ws46{word-spacing:2.829000px;}
.ws8a{word-spacing:2.898000px;}
.ws11{word-spacing:2.961000px;}
.wsc4{word-spacing:2.967000px;}
.ws8d{word-spacing:3.036000px;}
.ws6a{word-spacing:3.105000px;}
.wsf5{word-spacing:3.120000px;}
.ws32{word-spacing:3.174000px;}
.wsf1{word-spacing:3.180000px;}
.wsdb{word-spacing:3.240000px;}
.ws37{word-spacing:3.243000px;}
.wsbd{word-spacing:3.312000px;}
.ws9{word-spacing:3.402000px;}
.ws40{word-spacing:3.450000px;}
.ws34{word-spacing:3.519000px;}
.ws49{word-spacing:3.588000px;}
.wsdf{word-spacing:3.600000px;}
.ws36{word-spacing:3.657000px;}
.wse2{word-spacing:3.660000px;}
.wse1{word-spacing:3.720000px;}
.ws52{word-spacing:3.726000px;}
.wsb{word-spacing:3.792000px;}
.wsd1{word-spacing:3.840000px;}
.ws3b{word-spacing:3.864000px;}
.ws10{word-spacing:3.906000px;}
.ws50{word-spacing:3.933000px;}
.ws75{word-spacing:4.002000px;}
.wse5{word-spacing:4.020000px;}
.ws5c{word-spacing:4.071000px;}
.wsf9{word-spacing:4.080000px;}
.ws39{word-spacing:4.140000px;}
.ws18{word-spacing:4.209000px;}
.ws5d{word-spacing:4.278000px;}
.wsec{word-spacing:4.320000px;}
.ws63{word-spacing:4.347000px;}
.ws66{word-spacing:4.416000px;}
.ws101{word-spacing:4.440000px;}
.ws14{word-spacing:4.485000px;}
.ws102{word-spacing:4.500000px;}
.ws83{word-spacing:4.554000px;}
.wsf6{word-spacing:4.620000px;}
.ws2a{word-spacing:4.623000px;}
.ws6e{word-spacing:4.692000px;}
.wsf3{word-spacing:4.740000px;}
.wsf4{word-spacing:4.800000px;}
.ws19{word-spacing:4.830000px;}
.wsc3{word-spacing:4.899000px;}
.ws15{word-spacing:4.968000px;}
.ws94{word-spacing:5.037000px;}
.wsee{word-spacing:5.100000px;}
.ws7e{word-spacing:5.106000px;}
.wse8{word-spacing:5.160000px;}
.ws90{word-spacing:5.175000px;}
.wse9{word-spacing:5.220000px;}
.ws1b{word-spacing:5.244000px;}
.ws9e{word-spacing:5.313000px;}
.wsaf{word-spacing:5.382000px;}
.ws76{word-spacing:5.451000px;}
.wsf{word-spacing:5.481000px;}
.ws8c{word-spacing:5.589000px;}
.wsfb{word-spacing:5.640000px;}
.wsdd{word-spacing:5.700000px;}
.ws5e{word-spacing:5.727000px;}
.wsde{word-spacing:5.760000px;}
.ws22{word-spacing:5.865000px;}
.ws53{word-spacing:6.003000px;}
.wsf2{word-spacing:6.060000px;}
.ws6d{word-spacing:6.141000px;}
.ws1a{word-spacing:6.210000px;}
.ws93{word-spacing:6.348000px;}
.ws103{word-spacing:6.360000px;}
.wse3{word-spacing:6.420000px;}
.wse4{word-spacing:6.480000px;}
.ws3a{word-spacing:6.486000px;}
.ws1c{word-spacing:6.555000px;}
.ws92{word-spacing:6.624000px;}
.ws81{word-spacing:6.693000px;}
.ws44{word-spacing:6.762000px;}
.ws4f{word-spacing:6.900000px;}
.ws8f{word-spacing:6.969000px;}
.ws78{word-spacing:7.176000px;}
.ws80{word-spacing:7.245000px;}
.wsdc{word-spacing:7.260000px;}
.ws77{word-spacing:7.314000px;}
.ws1f{word-spacing:7.383000px;}
.ws12{word-spacing:7.452000px;}
.ws2f{word-spacing:7.521000px;}
.ws5f{word-spacing:7.590000px;}
.ws2d{word-spacing:7.659000px;}
.ws5b{word-spacing:7.728000px;}
.wsc8{word-spacing:7.797000px;}
.wsf7{word-spacing:7.800000px;}
.ws61{word-spacing:7.866000px;}
.wsf8{word-spacing:7.920000px;}
.ws4e{word-spacing:8.004000px;}
.wsc0{word-spacing:8.763000px;}
.ws62{word-spacing:8.901000px;}
.wsbe{word-spacing:8.970000px;}
.ws21{word-spacing:9.177000px;}
.wsca{word-spacing:9.453000px;}
.ws42{word-spacing:11.247000px;}
.ws9c{word-spacing:12.627000px;}
.ws99{word-spacing:68.836800px;}
.wsaa{word-spacing:99.548400px;}
.ws97{word-spacing:103.996800px;}
.ws98{word-spacing:105.426600px;}
.ws96{word-spacing:111.445200px;}
.wsab{word-spacing:115.027800px;}
.wsb5{word-spacing:131.622000px;}
.wsb6{word-spacing:133.999200px;}
.wsa7{word-spacing:141.436200px;}
.wsba{word-spacing:155.719200px;}
.wsa8{word-spacing:161.707200px;}
.wsbb{word-spacing:177.439200px;}
.wsa6{word-spacing:300.389400px;}
.wsb4{word-spacing:372.580200px;}
.wsb9{word-spacing:403.702800px;}
.ws95{word-spacing:442.518000px;}
.wsac{word-spacing:534.027000px;}
.wsa9{word-spacing:602.962800px;}
.ws9a{word-spacing:858.520800px;}
.ws9b{word-spacing:912.220800px;}
.wsa2{word-spacing:921.214800px;}
._30{margin-left:-12.891000px;}
._c{margin-left:-10.199100px;}
._7{margin-left:-9.162840px;}
._a{margin-left:-7.905300px;}
._9{margin-left:-6.831000px;}
._5{margin-left:-5.292000px;}
._4{margin-left:-3.318600px;}
._2{margin-left:-2.260800px;}
._0{margin-left:-1.104000px;}
._3{width:1.749600px;}
._8{width:3.508500px;}
._6{width:4.509000px;}
._b{width:7.721100px;}
._2e{width:56.018400px;}
._2f{width:90.183000px;}
._24{width:126.247800px;}
._2c{width:127.255200px;}
._2a{width:130.526400px;}
._14{width:136.153800px;}
._28{width:140.245200px;}
._22{width:150.769800px;}
._20{width:155.566200px;}
._26{width:160.527600px;}
._25{width:166.429200px;}
._27{width:176.247000px;}
._17{width:187.317000px;}
._e{width:189.034800px;}
._23{width:190.690800px;}
._2d{width:201.999000px;}
._1f{width:223.164600px;}
._1d{width:233.382600px;}
._1e{width:243.447000px;}
._11{width:268.177200px;}
._18{width:274.557000px;}
._1c{width:280.154100px;}
._2b{width:283.251000px;}
._15{width:368.626800px;}
._29{width:432.844800px;}
._d{width:482.593200px;}
._16{width:553.997400px;}
._13{width:571.954200px;}
._f{width:593.480400px;}
._1{width:630.949200px;}
._21{width:642.862800px;}
._1a{width:659.360400px;}
._19{width:660.606000px;}
._1b{width:665.970000px;}
._10{width:715.249200px;}
._12{width:825.274800px;}
.fc2{color:transparent;}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs9{font-size:46.200000px;}
.fsd{font-size:47.324400px;}
.fs6{font-size:48.000000px;}
.fsb{font-size:56.676000px;}
.fse{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:61.493400px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fsa{font-size:69.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:126.000000px;}
.ye7{bottom:-53.158800px;}
.ye6{bottom:-3.213600px;}
.y0{bottom:0.000000px;}
.yeb{bottom:0.636300px;}
.y6{bottom:35.925007px;}
.y24{bottom:44.088600px;}
.y5{bottom:66.525004px;}
.y135{bottom:80.618250px;}
.y44{bottom:80.787450px;}
.yd5{bottom:81.452250px;}
.y11f{bottom:84.567900px;}
.y95{bottom:85.782150px;}
.yf9{bottom:87.557100px;}
.y6d{bottom:90.503100px;}
.y1f3{bottom:91.182150px;}
.y43{bottom:95.787450px;}
.y4{bottom:97.125005px;}
.y1df{bottom:98.120100px;}
.y20e{bottom:99.103800px;}
.y134{bottom:101.318250px;}
.y23c{bottom:102.057150px;}
.yd4{bottom:102.152100px;}
.y11e{bottom:104.967900px;}
.y94{bottom:106.482150px;}
.yf8{bottom:108.257100px;}
.y42{bottom:110.787450px;}
.y6c{bottom:111.203100px;}
.y1f2{bottom:111.882150px;}
.y20d{bottom:116.653800px;}
.y1de{bottom:118.820100px;}
.y23b{bottom:119.607150px;}
.y133{bottom:122.018250px;}
.yd3{bottom:122.852100px;}
.y182{bottom:123.035100px;}
.yb8{bottom:124.381650px;}
.y11d{bottom:125.367900px;}
.y41{bottom:125.787450px;}
.y93{bottom:126.732150px;}
.yf7{bottom:128.957100px;}
.y6b{bottom:131.903100px;}
.y1f1{bottom:132.582150px;}
.y20c{bottom:134.203650px;}
.y23a{bottom:137.157150px;}
.y23{bottom:139.264499px;}
.y1dd{bottom:139.520100px;}
.y132{bottom:142.718250px;}
.yd2{bottom:143.552100px;}
.y181{bottom:143.735100px;}
.yb7{bottom:145.081650px;}
.y11c{bottom:145.767900px;}
.y1a7{bottom:146.156400px;}
.y92{bottom:146.982150px;}
.y15a{bottom:147.340650px;}
.yf6{bottom:149.657100px;}
.y20b{bottom:151.753650px;}
.y6a{bottom:152.603250px;}
.y1f0{bottom:153.282150px;}
.y239{bottom:154.707150px;}
.y1dc{bottom:160.220100px;}
.y131{bottom:163.418250px;}
.yd1{bottom:164.252100px;}
.y180{bottom:164.435100px;}
.y159{bottom:165.340650px;}
.yb6{bottom:165.781650px;}
.y11b{bottom:166.167900px;}
.y1a6{bottom:166.856400px;}
.y91{bottom:167.232150px;}
.y20a{bottom:169.303650px;}
.yf5{bottom:170.357100px;}
.y238{bottom:172.257150px;}
.y69{bottom:173.303250px;}
.y1ef{bottom:173.982150px;}
.y1db{bottom:180.920100px;}
.y130{bottom:184.118250px;}
.yd0{bottom:184.952100px;}
.y17f{bottom:185.135100px;}
.yb5{bottom:186.481650px;}
.y158{bottom:186.565800px;}
.y11a{bottom:186.567900px;}
.y209{bottom:186.853800px;}
.y90{bottom:187.482150px;}
.y1a5{bottom:187.556400px;}
.y237{bottom:189.807150px;}
.yf4{bottom:191.057100px;}
.y1b9{bottom:191.151150px;}
.yde{bottom:192.317850px;}
.y68{bottom:194.003100px;}
.y1ee{bottom:194.682150px;}
.y1a{bottom:196.933500px;}
.y40{bottom:197.248350px;}
.y1da{bottom:201.620100px;}
.y208{bottom:204.403650px;}
.y157{bottom:204.565800px;}
.y12f{bottom:204.818250px;}
.y17e{bottom:205.835100px;}
.y119{bottom:206.967900px;}
.yb4{bottom:207.181650px;}
.y236{bottom:207.357150px;}
.y8f{bottom:207.732150px;}
.y1a4{bottom:208.256400px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.yf3{bottom:211.757100px;}
.y1b6{bottom:213.968550px;}
.ycf{bottom:214.156050px;}
.y67{bottom:214.703100px;}
.y1ed{bottom:215.382150px;}
.y3f{bottom:215.848350px;}
.y207{bottom:221.953650px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y1d9{bottom:222.319950px;}
.y1b8{bottom:222.968550px;}
.y235{bottom:224.907150px;}
.y12e{bottom:225.518250px;}
.y156{bottom:225.790800px;}
.y17d{bottom:226.534950px;}
.y118{bottom:227.367900px;}
.yb3{bottom:227.881650px;}
.y8e{bottom:227.982150px;}
.y1a3{bottom:228.956400px;}
.y1b5{bottom:231.968550px;}
.yf2{bottom:232.457100px;}
.y3e{bottom:234.448350px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y66{bottom:235.403250px;}
.y1ec{bottom:236.082150px;}
.y206{bottom:239.503800px;}
.y1b7{bottom:240.968550px;}
.y234{bottom:242.457150px;}
.yce{bottom:242.910000px;}
.y1d8{bottom:243.020100px;}
.y155{bottom:243.790800px;}
.y12d{bottom:246.218250px;}
.y17c{bottom:247.235100px;}
.y117{bottom:247.767900px;}
.y8d{bottom:248.232150px;}
.yb2{bottom:248.581650px;}
.y1a2{bottom:249.656400px;}
.y1b4{bottom:249.968550px;}
.y3d{bottom:253.048350px;}
.y65{bottom:256.103100px;}
.y1eb{bottom:256.782150px;}
.y205{bottom:257.053650px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y233{bottom:260.007150px;}
.ycd{bottom:263.610000px;}
.y1d7{bottom:263.720100px;}
.y154{bottom:265.015800px;}
.yf1{bottom:265.913100px;}
.y12c{bottom:266.918250px;}
.y17b{bottom:267.935100px;}
.y116{bottom:268.167900px;}
.y8c{bottom:268.482150px;}
.y1b1{bottom:268.642350px;}
.yb1{bottom:269.281650px;}
.y1a1{bottom:270.356400px;}
.y3c{bottom:271.648350px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y14e{bottom:274.015800px;}
.y204{bottom:274.603800px;}
.y64{bottom:276.803250px;}
.y1ea{bottom:277.482150px;}
.y232{bottom:277.557150px;}
.y1b3{bottom:277.642350px;}
.y153{bottom:283.015800px;}
.ycc{bottom:284.310000px;}
.y1d6{bottom:284.420100px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y1b0{bottom:286.642350px;}
.y12b{bottom:287.618250px;}
.y115{bottom:288.567900px;}
.y17a{bottom:288.635100px;}
.y8b{bottom:288.732150px;}
.y3b{bottom:290.248350px;}
.y1a0{bottom:291.056400px;}
.y203{bottom:292.153650px;}
.y231{bottom:295.107150px;}
.y1b2{bottom:295.642350px;}
.y63{bottom:297.503100px;}
.y1e9{bottom:298.182150px;}
.yf0{bottom:300.118950px;}
.y152{bottom:304.240800px;}
.y1af{bottom:304.642350px;}
.ycb{bottom:305.010000px;}
.y1d5{bottom:305.120100px;}
.y12a{bottom:308.318250px;}
.y3a{bottom:308.848350px;}
.y114{bottom:308.967900px;}
.y8a{bottom:308.982150px;}
.y179{bottom:309.335100px;}
.y202{bottom:309.703650px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.yb0{bottom:310.681650px;}
.y19f{bottom:311.756400px;}
.y230{bottom:312.657150px;}
.y62{bottom:318.203100px;}
.y1e8{bottom:318.882150px;}
.y151{bottom:322.240800px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y1ae{bottom:323.316150px;}
.yca{bottom:325.710000px;}
.y1d4{bottom:325.819950px;}
.y201{bottom:327.253800px;}
.y39{bottom:327.448350px;}
.y89{bottom:329.232150px;}
.y113{bottom:329.367900px;}
.y178{bottom:330.034950px;}
.y22f{bottom:330.207150px;}
.yaf{bottom:331.381650px;}
.y19e{bottom:332.456400px;}
.y61{bottom:338.903250px;}
.y129{bottom:341.774250px;}
.y1ad{bottom:341.989950px;}
.y150{bottom:343.465800px;}
.y200{bottom:344.803650px;}
.y38{bottom:346.048350px;}
.yc9{bottom:346.410000px;}
.y1d3{bottom:346.520100px;}
.y22e{bottom:347.757150px;}
.y11{bottom:348.133500px;}
.ydd{bottom:349.207500px;}
.y88{bottom:349.482150px;}
.y112{bottom:349.767900px;}
.y177{bottom:350.735100px;}
.yae{bottom:352.081650px;}
.y1e7{bottom:352.338000px;}
.y19d{bottom:353.156400px;}
.y60{bottom:359.603100px;}
.y1ac{bottom:360.663900px;}
.y14f{bottom:361.465800px;}
.y1ff{bottom:362.353800px;}
.y22d{bottom:365.307150px;}
.yc8{bottom:367.110000px;}
.y1d2{bottom:367.220100px;}
.y111{bottom:370.167900px;}
.ye5{bottom:370.434900px;}
.yef{bottom:371.422139px;}
.yad{bottom:372.781650px;}
.y19c{bottom:373.856400px;}
.y128{bottom:375.980100px;}
.y1ab{bottom:378.663900px;}
.y1fe{bottom:379.903650px;}
.y5f{bottom:380.303250px;}
.y87{bottom:382.488000px;}
.y14d{bottom:382.690800px;}
.y22c{bottom:382.857150px;}
.y176{bottom:384.190950px;}
.y10{bottom:386.785499px;}
.yc7{bottom:387.810000px;}
.y1d1{bottom:387.920100px;}
.y110{bottom:390.567900px;}
.yee{bottom:391.759800px;}
.yac{bottom:393.481650px;}
.y19b{bottom:394.556400px;}
.ye4{bottom:394.876425px;}
.y1fd{bottom:397.453650px;}
.y1aa{bottom:399.273300px;}
.y22b{bottom:400.407150px;}
.y14c{bottom:400.690800px;}
.y5e{bottom:401.003100px;}
.y1e6{bottom:401.425800px;}
.y37{bottom:402.916050px;}
.yf{bottom:408.044999px;}
.y1d0{bottom:408.620100px;}
.y10f{bottom:410.967900px;}
.yab{bottom:414.181650px;}
.y1fc{bottom:415.003800px;}
.y19a{bottom:415.256400px;}
.y86{bottom:416.244000px;}
.yc6{bottom:417.013950px;}
.y1a9{bottom:419.223150px;}
.ye3{bottom:419.317950px;}
.y36{bottom:419.416050px;}
.y22a{bottom:421.107150px;}
.y5d{bottom:421.703100px;}
.y1e5{bottom:422.125800px;}
.y175{bottom:422.648850px;}
.y14b{bottom:423.265800px;}
.y127{bottom:425.067900px;}
.y1cf{bottom:429.319950px;}
.y10e{bottom:431.367900px;}
.y1fb{bottom:432.553650px;}
.yaa{bottom:434.881650px;}
.y35{bottom:435.916050px;}
.y199{bottom:435.956400px;}
.y229{bottom:438.657150px;}
.y5c{bottom:442.403250px;}
.y1e4{bottom:442.825800px;}
.ye2{bottom:443.759475px;}
.yc5{bottom:445.767900px;}
.y14a{bottom:445.840950px;}
.y174{bottom:448.091850px;}
.yed{bottom:449.994150px;}
.y1ce{bottom:450.020100px;}
.y1fa{bottom:450.103800px;}
.y10d{bottom:451.767900px;}
.ye8{bottom:453.040350px;}
.y149{bottom:454.840950px;}
.ya9{bottom:455.581650px;}
.y228{bottom:456.207150px;}
.y198{bottom:456.656400px;}
.y34{bottom:458.794050px;}
.y5b{bottom:463.103100px;}
.y1e3{bottom:463.525800px;}
.y85{bottom:465.031800px;}
.yc4{bottom:466.467900px;}
.y1f9{bottom:467.653650px;}
.ye1{bottom:468.201000px;}
.y173{bottom:470.666850px;}
.y1cd{bottom:470.720100px;}
.y227{bottom:473.757150px;}
.y197{bottom:477.356400px;}
.y5a{bottom:483.803250px;}
.y1e2{bottom:484.225800px;}
.ye{bottom:484.864502px;}
.y10c{bottom:484.923750px;}
.y1f8{bottom:485.203650px;}
.y84{bottom:485.281800px;}
.y148{bottom:485.725800px;}
.yc3{bottom:487.167900px;}
.y171{bottom:487.316850px;}
.y172{bottom:488.666850px;}
.y226{bottom:491.307150px;}
.y1cc{bottom:491.420100px;}
.ye0{bottom:492.642525px;}
.ya8{bottom:496.981650px;}
.y196{bottom:498.056400px;}
.yea{bottom:499.020000px;}
.y33{bottom:499.553850px;}
.yec{bottom:499.656300px;}
.y1f7{bottom:502.753800px;}
.yd{bottom:502.864502px;}
.y59{bottom:504.503100px;}
.y1e1{bottom:504.925800px;}
.y83{bottom:505.531800px;}
.y147{bottom:505.675800px;}
.yc2{bottom:507.867900px;}
.y225{bottom:508.857150px;}
.y170{bottom:509.891850px;}
.y1cb{bottom:512.120100px;}
.y32{bottom:516.053850px;}
.ydf{bottom:517.084050px;}
.ya7{bottom:517.681650px;}
.y195{bottom:518.756400px;}
.ye9{bottom:519.988800px;}
.y1f6{bottom:520.303650px;}
.yc{bottom:520.864502px;}
.y10b{bottom:523.081650px;}
.y58{bottom:525.203100px;}
.y1e0{bottom:525.625800px;}
.y82{bottom:525.781800px;}
.y224{bottom:526.407150px;}
.y16f{bottom:527.891850px;}
.yc1{bottom:528.567900px;}
.y31{bottom:532.553850px;}
.y1ca{bottom:532.819950px;}
.y1f5{bottom:537.853800px;}
.ya6{bottom:538.381650px;}
.yb{bottom:538.864499px;}
.y194{bottom:539.456400px;}
.y10a{bottom:543.481650px;}
.y223{bottom:543.957150px;}
.y57{bottom:545.903250px;}
.y81{bottom:546.031800px;}
.y146{bottom:546.325800px;}
.yc0{bottom:549.267900px;}
.y16e{bottom:550.466850px;}
.y1c9{bottom:553.520100px;}
.y30{bottom:555.431850px;}
.ya{bottom:556.864499px;}
.ydc{bottom:557.119800px;}
.ya5{bottom:559.081650px;}
.y193{bottom:560.156400px;}
.y222{bottom:561.507150px;}
.y1f4{bottom:561.781650px;}
.y109{bottom:563.881650px;}
.y80{bottom:566.281800px;}
.y56{bottom:566.603100px;}
.y145{bottom:567.025800px;}
.ybf{bottom:569.967900px;}
.y16d{bottom:573.041850px;}
.y1c8{bottom:574.220100px;}
.ydb{bottom:577.069950px;}
.y221{bottom:579.057150px;}
.ya4{bottom:579.781650px;}
.y192{bottom:580.856400px;}
.y108{bottom:584.281650px;}
.y7f{bottom:586.531800px;}
.y55{bottom:587.303250px;}
.y144{bottom:587.725800px;}
.ybe{bottom:590.667900px;}
.y16c{bottom:591.041850px;}
.y1c7{bottom:594.919950px;}
.y2f{bottom:596.191650px;}
.y220{bottom:596.607150px;}
.ya3{bottom:600.481650px;}
.y191{bottom:601.556400px;}
.y107{bottom:604.681650px;}
.y7e{bottom:606.781800px;}
.y54{bottom:608.003100px;}
.y143{bottom:608.425800px;}
.ybd{bottom:611.367900px;}
.y16b{bottom:612.266850px;}
.y2e{bottom:612.691650px;}
.y169{bottom:613.616850px;}
.y21f{bottom:614.157150px;}
.y1c6{bottom:615.620100px;}
.yda{bottom:617.719800px;}
.ya2{bottom:621.181650px;}
.y190{bottom:622.256400px;}
.y106{bottom:625.081650px;}
.y7d{bottom:627.031800px;}
.y53{bottom:628.703100px;}
.y142{bottom:629.125800px;}
.y2d{bottom:629.191650px;}
.y16a{bottom:630.266850px;}
.y21e{bottom:631.707150px;}
.ybc{bottom:632.067900px;}
.y1c5{bottom:636.320100px;}
.yd9{bottom:638.419800px;}
.ya1{bottom:641.881650px;}
.y18f{bottom:642.956400px;}
.y105{bottom:645.481650px;}
.y9{bottom:645.510000px;}
.y2c{bottom:645.691650px;}
.y7c{bottom:647.281800px;}
.y21d{bottom:649.257150px;}
.y52{bottom:649.403250px;}
.y141{bottom:649.825800px;}
.ybb{bottom:652.767900px;}
.y168{bottom:652.842000px;}
.y1c4{bottom:657.020100px;}
.ya0{bottom:662.581650px;}
.y104{bottom:665.881650px;}
.y8{bottom:666.771000px;}
.y21c{bottom:666.807150px;}
.y7b{bottom:667.531800px;}
.yd8{bottom:667.623750px;}
.y2b{bottom:668.569650px;}
.y51{bottom:670.103100px;}
.y140{bottom:670.525800px;}
.y126{bottom:673.467900px;}
.y18e{bottom:676.412250px;}
.y167{bottom:676.766850px;}
.y1c3{bottom:677.720100px;}
.y9f{bottom:683.281650px;}
.y21b{bottom:684.357150px;}
.yba{bottom:686.223750px;}
.y103{bottom:686.281650px;}
.y7a{bottom:687.781800px;}
.yd7{bottom:687.873750px;}
.y50{bottom:690.803250px;}
.y13f{bottom:691.225800px;}
.y125{bottom:694.167900px;}
.y1c2{bottom:698.419950px;}
.y166{bottom:700.691850px;}
.y21a{bottom:701.907150px;}
.y9e{bottom:703.981650px;}
.y102{bottom:706.681650px;}
.y79{bottom:708.031800px;}
.y2a{bottom:709.329600px;}
.y4f{bottom:711.503100px;}
.y13e{bottom:711.925800px;}
.y18d{bottom:713.309550px;}
.y124{bottom:714.867900px;}
.yd6{bottom:716.627700px;}
.y1c1{bottom:719.120100px;}
.y219{bottom:719.457150px;}
.y165{bottom:723.266850px;}
.y9d{bottom:724.681650px;}
.y7{bottom:726.298500px;}
.y101{bottom:727.081650px;}
.y78{bottom:728.281800px;}
.y18c{bottom:731.309550px;}
.y13d{bottom:732.625800px;}
.y123{bottom:735.567900px;}
.y218{bottom:737.007150px;}
.y1c0{bottom:739.820100px;}
.y164{bottom:741.266850px;}
.y29{bottom:743.829450px;}
.y4e{bottom:744.959100px;}
.y9c{bottom:745.381650px;}
.y100{bottom:747.481650px;}
.y77{bottom:748.531800px;}
.y18b{bottom:749.309550px;}
.y3{bottom:752.599495px;}
.y13c{bottom:753.325800px;}
.y217{bottom:754.557150px;}
.y122{bottom:756.267900px;}
.y1bf{bottom:760.520100px;}
.y163{bottom:762.492000px;}
.y9b{bottom:766.081650px;}
.y18a{bottom:767.475000px;}
.yff{bottom:767.881650px;}
.y76{bottom:768.781800px;}
.y160{bottom:771.492150px;}
.y216{bottom:772.107150px;}
.y13b{bottom:774.025800px;}
.y121{bottom:776.967900px;}
.y28{bottom:778.329600px;}
.y162{bottom:780.492000px;}
.y1be{bottom:781.220100px;}
.y189{bottom:785.475000px;}
.y9a{bottom:786.781650px;}
.yfe{bottom:788.281650px;}
.y75{bottom:789.031800px;}
.y215{bottom:789.657150px;}
.y13a{bottom:794.725950px;}
.y1bd{bottom:801.919950px;}
.y161{bottom:803.067150px;}
.y188{bottom:804.148800px;}
.y214{bottom:807.207150px;}
.y99{bottom:807.481650px;}
.y1a8{bottom:808.231650px;}
.yfd{bottom:808.681650px;}
.y74{bottom:809.281800px;}
.y120{bottom:810.423750px;}
.y27{bottom:812.829600px;}
.y4d{bottom:814.746900px;}
.y139{bottom:815.425800px;}
.y1bc{bottom:822.619950px;}
.y187{bottom:822.822750px;}
.y213{bottom:824.757150px;}
.y15f{bottom:825.642150px;}
.y98{bottom:828.181650px;}
.yfc{bottom:829.081650px;}
.y73{bottom:829.531800px;}
.y138{bottom:836.125800px;}
.y4c{bottom:837.598800px;}
.y186{bottom:842.247150px;}
.y212{bottom:842.307150px;}
.y1bb{bottom:843.319950px;}
.y15e{bottom:843.642150px;}
.y97{bottom:848.881650px;}
.yfb{bottom:849.481650px;}
.y72{bottom:849.781800px;}
.y4b{bottom:856.198800px;}
.y137{bottom:856.825800px;}
.y211{bottom:859.857150px;}
.y15d{bottom:866.217000px;}
.y185{bottom:866.809650px;}
.yb9{bottom:869.581800px;}
.yfa{bottom:869.881650px;}
.y71{bottom:870.181800px;}
.y4a{bottom:874.798800px;}
.y1ba{bottom:876.775800px;}
.y210{bottom:877.407150px;}
.y136{bottom:877.525800px;}
.y2{bottom:879.369000px;}
.y15c{bottom:888.792150px;}
.y26{bottom:889.289400px;}
.y96{bottom:890.281800px;}
.y70{bottom:890.581800px;}
.y184{bottom:892.557150px;}
.y49{bottom:893.398800px;}
.y20f{bottom:894.957150px;}
.y15b{bottom:897.792150px;}
.y25{bottom:905.789400px;}
.y6f{bottom:910.981800px;}
.y48{bottom:911.998650px;}
.y183{bottom:912.507150px;}
.y47{bottom:953.269950px;}
.y6e{bottom:959.441550px;}
.y45{bottom:962.623950px;}
.y46{bottom:965.869950px;}
.y1{bottom:966.726000px;}
.h1d{height:11.263500px;}
.h7{height:32.130000px;}
.h1c{height:32.882139px;}
.h12{height:35.019600px;}
.h11{height:35.296800px;}
.hb{height:36.384000px;}
.h1a{height:37.774775px;}
.h19{height:39.379857px;}
.h17{height:41.580000px;}
.h1b{height:42.727104px;}
.h22{height:43.206000px;}
.h21{height:43.548000px;}
.h1f{height:45.480000px;}
.he{height:45.840000px;}
.h6{height:45.900000px;}
.h13{height:47.817000px;}
.h10{height:48.132000px;}
.h3{height:48.195000px;}
.h15{height:48.300000px;}
.ha{height:50.028000px;}
.h14{height:52.302000px;}
.h16{height:52.716000px;}
.hf{height:54.054000px;}
.h2{height:55.080000px;}
.hd{height:58.968000px;}
.h1e{height:77.580000px;}
.h5{height:78.030000px;}
.h20{height:81.480000px;}
.hc{height:87.318000px;}
.h4{height:119.055004px;}
.h18{height:199.287000px;}
.h8{height:1020.472500px;}
.h9{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:59.650500px;}
.w5{width:551.523000px;}
.w2{width:637.794021px;}
.w3{width:722.835000px;}
.w4{width:723.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:35.820000px;}
.xd{left:46.447350px;}
.x5{left:85.039350px;}
.xb{left:88.983094px;}
.x16{left:97.795350px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:120.859500px;}
.xe{left:132.478350px;}
.x18{left:139.022100px;}
.x1a{left:175.747950px;}
.x14{left:179.497200px;}
.x4{left:203.484001px;}
.x8{left:227.278950px;}
.x1b{left:246.614100px;}
.xc{left:280.238550px;}
.x1c{left:285.944850px;}
.x12{left:341.754000px;}
.x15{left:362.524350px;}
.x6{left:417.695400px;}
.x17{left:437.028300px;}
.x3{left:454.959000px;}
.x19{left:472.646700px;}
.x10{left:521.911500px;}
.xf{left:526.587750px;}
.x11{left:527.863050px;}
.x13{left:536.222850px;}
.x7{left:614.233350px;}
@media print{
.v2{vertical-align:-32.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.ls10{letter-spacing:-3.786667pt;}
.lsc{letter-spacing:-2.514667pt;}
.ls15{letter-spacing:-1.226667pt;}
.ls13{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-1.064000pt;}
.ls6{letter-spacing:-0.682667pt;}
.lsd{letter-spacing:-0.674667pt;}
.ls1{letter-spacing:-0.560000pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.426667pt;}
.lsa{letter-spacing:-0.392000pt;}
.ls16{letter-spacing:-0.373333pt;}
.ls14{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.306667pt;}
.ls12{letter-spacing:-0.304000pt;}
.ls4{letter-spacing:-0.224000pt;}
.ls2{letter-spacing:-0.213333pt;}
.ls3{letter-spacing:-0.168000pt;}
.lse{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.056000pt;}
.lsf{letter-spacing:0.084132pt;}
.ls7{letter-spacing:0.306667pt;}
.ws1{word-spacing:-19.824000pt;}
.ws58{word-spacing:-11.776000pt;}
.ws7a{word-spacing:-11.653333pt;}
.ws2b{word-spacing:-11.346667pt;}
.ws59{word-spacing:-10.978667pt;}
.wsc9{word-spacing:-10.856000pt;}
.ws6c{word-spacing:-10.516533pt;}
.ws6b{word-spacing:-10.360000pt;}
.ws3{word-spacing:-10.240000pt;}
.wsb7{word-spacing:-10.133333pt;}
.ws2{word-spacing:-10.026667pt;}
.wsfd{word-spacing:-9.920000pt;}
.ws5a{word-spacing:-9.912000pt;}
.wsb8{word-spacing:-9.813333pt;}
.ws4{word-spacing:-9.744000pt;}
.ws57{word-spacing:-9.138667pt;}
.wsd{word-spacing:-8.848000pt;}
.ws5{word-spacing:-7.424000pt;}
.ws4d{word-spacing:-3.128000pt;}
.wsc6{word-spacing:-2.882667pt;}
.ws6{word-spacing:-2.688000pt;}
.ws89{word-spacing:-2.514667pt;}
.wsc1{word-spacing:-2.330667pt;}
.ws86{word-spacing:-2.208000pt;}
.ws69{word-spacing:-2.085333pt;}
.ws71{word-spacing:-2.024000pt;}
.wsea{word-spacing:-1.973333pt;}
.ws56{word-spacing:-1.962667pt;}
.wscb{word-spacing:-1.901333pt;}
.ws7b{word-spacing:-1.840000pt;}
.ws88{word-spacing:-1.778667pt;}
.wsd7{word-spacing:-1.760000pt;}
.ws3c{word-spacing:-1.717333pt;}
.ws91{word-spacing:-1.656000pt;}
.ws8{word-spacing:-1.624000pt;}
.wsa5{word-spacing:-1.594667pt;}
.wsc5{word-spacing:-1.533333pt;}
.ws9d{word-spacing:-1.472000pt;}
.wsc7{word-spacing:-1.410667pt;}
.wsfa{word-spacing:-1.386667pt;}
.ws3d{word-spacing:-1.349333pt;}
.ws85{word-spacing:-1.288000pt;}
.ws23{word-spacing:-1.226667pt;}
.ws60{word-spacing:-1.165333pt;}
.wsd9{word-spacing:-1.120000pt;}
.ws65{word-spacing:-1.104000pt;}
.wsb2{word-spacing:-1.042667pt;}
.wsd2{word-spacing:-1.013333pt;}
.wsbf{word-spacing:-0.981333pt;}
.ws28{word-spacing:-0.920000pt;}
.ws4a{word-spacing:-0.858667pt;}
.ws51{word-spacing:-0.797333pt;}
.ws43{word-spacing:-0.736000pt;}
.wsb1{word-spacing:-0.674667pt;}
.wseb{word-spacing:-0.640000pt;}
.ws3f{word-spacing:-0.613333pt;}
.wsad{word-spacing:-0.608000pt;}
.ws2e{word-spacing:-0.552000pt;}
.wse6{word-spacing:-0.533333pt;}
.ws55{word-spacing:-0.490667pt;}
.ws8b{word-spacing:-0.429333pt;}
.ws64{word-spacing:-0.368000pt;}
.ws7c{word-spacing:-0.306667pt;}
.wsa0{word-spacing:-0.245333pt;}
.ws31{word-spacing:-0.184000pt;}
.ws70{word-spacing:-0.168000pt;}
.wsd3{word-spacing:-0.160000pt;}
.ws45{word-spacing:-0.122667pt;}
.ws7{word-spacing:-0.112000pt;}
.ws74{word-spacing:-0.084132pt;}
.ws41{word-spacing:-0.061333pt;}
.ws0{word-spacing:0.000000pt;}
.ws73{word-spacing:0.042066pt;}
.ws17{word-spacing:0.061333pt;}
.ws47{word-spacing:0.122667pt;}
.ws72{word-spacing:0.160000pt;}
.wsbc{word-spacing:0.213333pt;}
.ws4c{word-spacing:0.245333pt;}
.wsff{word-spacing:0.266667pt;}
.wsa3{word-spacing:0.304000pt;}
.ws79{word-spacing:0.306667pt;}
.wsd8{word-spacing:0.320000pt;}
.ws8e{word-spacing:0.368000pt;}
.wsd6{word-spacing:0.373333pt;}
.wsa1{word-spacing:0.426667pt;}
.wsef{word-spacing:0.480000pt;}
.ws29{word-spacing:0.490667pt;}
.ws16{word-spacing:0.552000pt;}
.ws35{word-spacing:0.613333pt;}
.wsd5{word-spacing:0.640000pt;}
.wsfe{word-spacing:0.693333pt;}
.ws54{word-spacing:0.736000pt;}
.wsa4{word-spacing:0.797333pt;}
.wsfc{word-spacing:0.800000pt;}
.ws26{word-spacing:0.858667pt;}
.wsae{word-spacing:0.861333pt;}
.ws100{word-spacing:0.906667pt;}
.ws24{word-spacing:0.920000pt;}
.wsb3{word-spacing:0.981333pt;}
.wse0{word-spacing:1.013333pt;}
.ws25{word-spacing:1.042667pt;}
.ws13{word-spacing:1.104000pt;}
.ws7f{word-spacing:1.165333pt;}
.ws38{word-spacing:1.226667pt;}
.wsc{word-spacing:1.237333pt;}
.ws4b{word-spacing:1.288000pt;}
.ws30{word-spacing:1.349333pt;}
.wscd{word-spacing:1.386667pt;}
.ws82{word-spacing:1.410667pt;}
.wsce{word-spacing:1.440000pt;}
.ws84{word-spacing:1.472000pt;}
.wscf{word-spacing:1.493333pt;}
.ws87{word-spacing:1.533333pt;}
.ws6f{word-spacing:1.594667pt;}
.wsd0{word-spacing:1.653333pt;}
.ws7d{word-spacing:1.656000pt;}
.ws48{word-spacing:1.717333pt;}
.wse{word-spacing:1.736000pt;}
.wse7{word-spacing:1.760000pt;}
.ws33{word-spacing:1.778667pt;}
.ws1d{word-spacing:1.840000pt;}
.ws2c{word-spacing:1.901333pt;}
.ws20{word-spacing:1.962667pt;}
.wsa{word-spacing:2.016000pt;}
.ws9f{word-spacing:2.024000pt;}
.ws27{word-spacing:2.085333pt;}
.wsb0{word-spacing:2.146667pt;}
.wsc2{word-spacing:2.208000pt;}
.wscc{word-spacing:2.240000pt;}
.ws67{word-spacing:2.269333pt;}
.wsed{word-spacing:2.293333pt;}
.ws1e{word-spacing:2.330667pt;}
.wsf0{word-spacing:2.346667pt;}
.ws3e{word-spacing:2.392000pt;}
.wsda{word-spacing:2.400000pt;}
.ws68{word-spacing:2.453333pt;}
.wsd4{word-spacing:2.506667pt;}
.ws46{word-spacing:2.514667pt;}
.ws8a{word-spacing:2.576000pt;}
.ws11{word-spacing:2.632000pt;}
.wsc4{word-spacing:2.637333pt;}
.ws8d{word-spacing:2.698667pt;}
.ws6a{word-spacing:2.760000pt;}
.wsf5{word-spacing:2.773333pt;}
.ws32{word-spacing:2.821333pt;}
.wsf1{word-spacing:2.826667pt;}
.wsdb{word-spacing:2.880000pt;}
.ws37{word-spacing:2.882667pt;}
.wsbd{word-spacing:2.944000pt;}
.ws9{word-spacing:3.024000pt;}
.ws40{word-spacing:3.066667pt;}
.ws34{word-spacing:3.128000pt;}
.ws49{word-spacing:3.189333pt;}
.wsdf{word-spacing:3.200000pt;}
.ws36{word-spacing:3.250667pt;}
.wse2{word-spacing:3.253333pt;}
.wse1{word-spacing:3.306667pt;}
.ws52{word-spacing:3.312000pt;}
.wsb{word-spacing:3.370667pt;}
.wsd1{word-spacing:3.413333pt;}
.ws3b{word-spacing:3.434667pt;}
.ws10{word-spacing:3.472000pt;}
.ws50{word-spacing:3.496000pt;}
.ws75{word-spacing:3.557333pt;}
.wse5{word-spacing:3.573333pt;}
.ws5c{word-spacing:3.618667pt;}
.wsf9{word-spacing:3.626667pt;}
.ws39{word-spacing:3.680000pt;}
.ws18{word-spacing:3.741333pt;}
.ws5d{word-spacing:3.802667pt;}
.wsec{word-spacing:3.840000pt;}
.ws63{word-spacing:3.864000pt;}
.ws66{word-spacing:3.925333pt;}
.ws101{word-spacing:3.946667pt;}
.ws14{word-spacing:3.986667pt;}
.ws102{word-spacing:4.000000pt;}
.ws83{word-spacing:4.048000pt;}
.wsf6{word-spacing:4.106667pt;}
.ws2a{word-spacing:4.109333pt;}
.ws6e{word-spacing:4.170667pt;}
.wsf3{word-spacing:4.213333pt;}
.wsf4{word-spacing:4.266667pt;}
.ws19{word-spacing:4.293333pt;}
.wsc3{word-spacing:4.354667pt;}
.ws15{word-spacing:4.416000pt;}
.ws94{word-spacing:4.477333pt;}
.wsee{word-spacing:4.533333pt;}
.ws7e{word-spacing:4.538667pt;}
.wse8{word-spacing:4.586667pt;}
.ws90{word-spacing:4.600000pt;}
.wse9{word-spacing:4.640000pt;}
.ws1b{word-spacing:4.661333pt;}
.ws9e{word-spacing:4.722667pt;}
.wsaf{word-spacing:4.784000pt;}
.ws76{word-spacing:4.845333pt;}
.wsf{word-spacing:4.872000pt;}
.ws8c{word-spacing:4.968000pt;}
.wsfb{word-spacing:5.013333pt;}
.wsdd{word-spacing:5.066667pt;}
.ws5e{word-spacing:5.090667pt;}
.wsde{word-spacing:5.120000pt;}
.ws22{word-spacing:5.213333pt;}
.ws53{word-spacing:5.336000pt;}
.wsf2{word-spacing:5.386667pt;}
.ws6d{word-spacing:5.458667pt;}
.ws1a{word-spacing:5.520000pt;}
.ws93{word-spacing:5.642667pt;}
.ws103{word-spacing:5.653333pt;}
.wse3{word-spacing:5.706667pt;}
.wse4{word-spacing:5.760000pt;}
.ws3a{word-spacing:5.765333pt;}
.ws1c{word-spacing:5.826667pt;}
.ws92{word-spacing:5.888000pt;}
.ws81{word-spacing:5.949333pt;}
.ws44{word-spacing:6.010667pt;}
.ws4f{word-spacing:6.133333pt;}
.ws8f{word-spacing:6.194667pt;}
.ws78{word-spacing:6.378667pt;}
.ws80{word-spacing:6.440000pt;}
.wsdc{word-spacing:6.453333pt;}
.ws77{word-spacing:6.501333pt;}
.ws1f{word-spacing:6.562667pt;}
.ws12{word-spacing:6.624000pt;}
.ws2f{word-spacing:6.685333pt;}
.ws5f{word-spacing:6.746667pt;}
.ws2d{word-spacing:6.808000pt;}
.ws5b{word-spacing:6.869333pt;}
.wsc8{word-spacing:6.930667pt;}
.wsf7{word-spacing:6.933333pt;}
.ws61{word-spacing:6.992000pt;}
.wsf8{word-spacing:7.040000pt;}
.ws4e{word-spacing:7.114667pt;}
.wsc0{word-spacing:7.789333pt;}
.ws62{word-spacing:7.912000pt;}
.wsbe{word-spacing:7.973333pt;}
.ws21{word-spacing:8.157333pt;}
.wsca{word-spacing:8.402667pt;}
.ws42{word-spacing:9.997333pt;}
.ws9c{word-spacing:11.224000pt;}
.ws99{word-spacing:61.188267pt;}
.wsaa{word-spacing:88.487467pt;}
.ws97{word-spacing:92.441600pt;}
.ws98{word-spacing:93.712533pt;}
.ws96{word-spacing:99.062400pt;}
.wsab{word-spacing:102.246933pt;}
.wsb5{word-spacing:116.997333pt;}
.wsb6{word-spacing:119.110400pt;}
.wsa7{word-spacing:125.721067pt;}
.wsba{word-spacing:138.417067pt;}
.wsa8{word-spacing:143.739733pt;}
.wsbb{word-spacing:157.723733pt;}
.wsa6{word-spacing:267.012800pt;}
.wsb4{word-spacing:331.182400pt;}
.wsb9{word-spacing:358.846933pt;}
.ws95{word-spacing:393.349333pt;}
.wsac{word-spacing:474.690667pt;}
.wsa9{word-spacing:535.966933pt;}
.ws9a{word-spacing:763.129600pt;}
.ws9b{word-spacing:810.862933pt;}
.wsa2{word-spacing:818.857600pt;}
._30{margin-left:-11.458667pt;}
._c{margin-left:-9.065867pt;}
._7{margin-left:-8.144747pt;}
._a{margin-left:-7.026933pt;}
._9{margin-left:-6.072000pt;}
._5{margin-left:-4.704000pt;}
._4{margin-left:-2.949867pt;}
._2{margin-left:-2.009600pt;}
._0{margin-left:-0.981333pt;}
._3{width:1.555200pt;}
._8{width:3.118667pt;}
._6{width:4.008000pt;}
._b{width:6.863200pt;}
._2e{width:49.794133pt;}
._2f{width:80.162667pt;}
._24{width:112.220267pt;}
._2c{width:113.115733pt;}
._2a{width:116.023467pt;}
._14{width:121.025600pt;}
._28{width:124.662400pt;}
._22{width:134.017600pt;}
._20{width:138.281067pt;}
._26{width:142.691200pt;}
._25{width:147.937067pt;}
._27{width:156.664000pt;}
._17{width:166.504000pt;}
._e{width:168.030933pt;}
._23{width:169.502933pt;}
._2d{width:179.554667pt;}
._1f{width:198.368533pt;}
._1d{width:207.451200pt;}
._1e{width:216.397333pt;}
._11{width:238.379733pt;}
._18{width:244.050667pt;}
._1c{width:249.025867pt;}
._2b{width:251.778667pt;}
._15{width:327.668267pt;}
._29{width:384.750933pt;}
._d{width:428.971733pt;}
._16{width:492.442133pt;}
._13{width:508.403733pt;}
._f{width:527.538133pt;}
._1{width:560.843733pt;}
._21{width:571.433600pt;}
._1a{width:586.098133pt;}
._19{width:587.205333pt;}
._1b{width:591.973333pt;}
._10{width:635.777067pt;}
._12{width:733.577600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:41.066667pt;}
.fsd{font-size:42.066133pt;}
.fs6{font-size:42.666667pt;}
.fsb{font-size:50.378667pt;}
.fse{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:54.660800pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fsa{font-size:61.333333pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:112.000000pt;}
.ye7{bottom:-47.252267pt;}
.ye6{bottom:-2.856533pt;}
.y0{bottom:0.000000pt;}
.yeb{bottom:0.565600pt;}
.y6{bottom:31.933340pt;}
.y24{bottom:39.189867pt;}
.y5{bottom:59.133337pt;}
.y135{bottom:71.660667pt;}
.y44{bottom:71.811067pt;}
.yd5{bottom:72.402000pt;}
.y11f{bottom:75.171467pt;}
.y95{bottom:76.250800pt;}
.yf9{bottom:77.828533pt;}
.y6d{bottom:80.447200pt;}
.y1f3{bottom:81.050800pt;}
.y43{bottom:85.144400pt;}
.y4{bottom:86.333337pt;}
.y1df{bottom:87.217867pt;}
.y20e{bottom:88.092267pt;}
.y134{bottom:90.060667pt;}
.y23c{bottom:90.717467pt;}
.yd4{bottom:90.801867pt;}
.y11e{bottom:93.304800pt;}
.y94{bottom:94.650800pt;}
.yf8{bottom:96.228533pt;}
.y42{bottom:98.477733pt;}
.y6c{bottom:98.847200pt;}
.y1f2{bottom:99.450800pt;}
.y20d{bottom:103.692267pt;}
.y1de{bottom:105.617867pt;}
.y23b{bottom:106.317467pt;}
.y133{bottom:108.460667pt;}
.yd3{bottom:109.201867pt;}
.y182{bottom:109.364533pt;}
.yb8{bottom:110.561467pt;}
.y11d{bottom:111.438133pt;}
.y41{bottom:111.811067pt;}
.y93{bottom:112.650800pt;}
.yf7{bottom:114.628533pt;}
.y6b{bottom:117.247200pt;}
.y1f1{bottom:117.850800pt;}
.y20c{bottom:119.292133pt;}
.y23a{bottom:121.917467pt;}
.y23{bottom:123.790666pt;}
.y1dd{bottom:124.017867pt;}
.y132{bottom:126.860667pt;}
.yd2{bottom:127.601867pt;}
.y181{bottom:127.764533pt;}
.yb7{bottom:128.961467pt;}
.y11c{bottom:129.571467pt;}
.y1a7{bottom:129.916800pt;}
.y92{bottom:130.650800pt;}
.y15a{bottom:130.969467pt;}
.yf6{bottom:133.028533pt;}
.y20b{bottom:134.892133pt;}
.y6a{bottom:135.647333pt;}
.y1f0{bottom:136.250800pt;}
.y239{bottom:137.517467pt;}
.y1dc{bottom:142.417867pt;}
.y131{bottom:145.260667pt;}
.yd1{bottom:146.001867pt;}
.y180{bottom:146.164533pt;}
.y159{bottom:146.969467pt;}
.yb6{bottom:147.361467pt;}
.y11b{bottom:147.704800pt;}
.y1a6{bottom:148.316800pt;}
.y91{bottom:148.650800pt;}
.y20a{bottom:150.492133pt;}
.yf5{bottom:151.428533pt;}
.y238{bottom:153.117467pt;}
.y69{bottom:154.047333pt;}
.y1ef{bottom:154.650800pt;}
.y1db{bottom:160.817867pt;}
.y130{bottom:163.660667pt;}
.yd0{bottom:164.401867pt;}
.y17f{bottom:164.564533pt;}
.yb5{bottom:165.761467pt;}
.y158{bottom:165.836267pt;}
.y11a{bottom:165.838133pt;}
.y209{bottom:166.092267pt;}
.y90{bottom:166.650800pt;}
.y1a5{bottom:166.716800pt;}
.y237{bottom:168.717467pt;}
.yf4{bottom:169.828533pt;}
.y1b9{bottom:169.912133pt;}
.yde{bottom:170.949200pt;}
.y68{bottom:172.447200pt;}
.y1ee{bottom:173.050800pt;}
.y1a{bottom:175.052000pt;}
.y40{bottom:175.331867pt;}
.y1da{bottom:179.217867pt;}
.y208{bottom:181.692133pt;}
.y157{bottom:181.836267pt;}
.y12f{bottom:182.060667pt;}
.y17e{bottom:182.964533pt;}
.y119{bottom:183.971467pt;}
.yb4{bottom:184.161467pt;}
.y236{bottom:184.317467pt;}
.y8f{bottom:184.650800pt;}
.y1a4{bottom:185.116800pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.yf3{bottom:188.228533pt;}
.y1b6{bottom:190.194267pt;}
.ycf{bottom:190.360933pt;}
.y67{bottom:190.847200pt;}
.y1ed{bottom:191.450800pt;}
.y3f{bottom:191.865200pt;}
.y207{bottom:197.292133pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y1d9{bottom:197.617733pt;}
.y1b8{bottom:198.194267pt;}
.y235{bottom:199.917467pt;}
.y12e{bottom:200.460667pt;}
.y156{bottom:200.702933pt;}
.y17d{bottom:201.364400pt;}
.y118{bottom:202.104800pt;}
.yb3{bottom:202.561467pt;}
.y8e{bottom:202.650800pt;}
.y1a3{bottom:203.516800pt;}
.y1b5{bottom:206.194267pt;}
.yf2{bottom:206.628533pt;}
.y3e{bottom:208.398533pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y66{bottom:209.247333pt;}
.y1ec{bottom:209.850800pt;}
.y206{bottom:212.892267pt;}
.y1b7{bottom:214.194267pt;}
.y234{bottom:215.517467pt;}
.yce{bottom:215.920000pt;}
.y1d8{bottom:216.017867pt;}
.y155{bottom:216.702933pt;}
.y12d{bottom:218.860667pt;}
.y17c{bottom:219.764533pt;}
.y117{bottom:220.238133pt;}
.y8d{bottom:220.650800pt;}
.yb2{bottom:220.961467pt;}
.y1a2{bottom:221.916800pt;}
.y1b4{bottom:222.194267pt;}
.y3d{bottom:224.931867pt;}
.y65{bottom:227.647200pt;}
.y1eb{bottom:228.250800pt;}
.y205{bottom:228.492133pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y233{bottom:231.117467pt;}
.ycd{bottom:234.320000pt;}
.y1d7{bottom:234.417867pt;}
.y154{bottom:235.569600pt;}
.yf1{bottom:236.367200pt;}
.y12c{bottom:237.260667pt;}
.y17b{bottom:238.164533pt;}
.y116{bottom:238.371467pt;}
.y8c{bottom:238.650800pt;}
.y1b1{bottom:238.793200pt;}
.yb1{bottom:239.361467pt;}
.y1a1{bottom:240.316800pt;}
.y3c{bottom:241.465200pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y14e{bottom:243.569600pt;}
.y204{bottom:244.092267pt;}
.y64{bottom:246.047333pt;}
.y1ea{bottom:246.650800pt;}
.y232{bottom:246.717467pt;}
.y1b3{bottom:246.793200pt;}
.y153{bottom:251.569600pt;}
.ycc{bottom:252.720000pt;}
.y1d6{bottom:252.817867pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y1b0{bottom:254.793200pt;}
.y12b{bottom:255.660667pt;}
.y115{bottom:256.504800pt;}
.y17a{bottom:256.564533pt;}
.y8b{bottom:256.650800pt;}
.y3b{bottom:257.998533pt;}
.y1a0{bottom:258.716800pt;}
.y203{bottom:259.692133pt;}
.y231{bottom:262.317467pt;}
.y1b2{bottom:262.793200pt;}
.y63{bottom:264.447200pt;}
.y1e9{bottom:265.050800pt;}
.yf0{bottom:266.772400pt;}
.y152{bottom:270.436267pt;}
.y1af{bottom:270.793200pt;}
.ycb{bottom:271.120000pt;}
.y1d5{bottom:271.217867pt;}
.y12a{bottom:274.060667pt;}
.y3a{bottom:274.531867pt;}
.y114{bottom:274.638133pt;}
.y8a{bottom:274.650800pt;}
.y179{bottom:274.964533pt;}
.y202{bottom:275.292133pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.yb0{bottom:276.161467pt;}
.y19f{bottom:277.116800pt;}
.y230{bottom:277.917467pt;}
.y62{bottom:282.847200pt;}
.y1e8{bottom:283.450800pt;}
.y151{bottom:286.436267pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y1ae{bottom:287.392133pt;}
.yca{bottom:289.520000pt;}
.y1d4{bottom:289.617733pt;}
.y201{bottom:290.892267pt;}
.y39{bottom:291.065200pt;}
.y89{bottom:292.650800pt;}
.y113{bottom:292.771467pt;}
.y178{bottom:293.364400pt;}
.y22f{bottom:293.517467pt;}
.yaf{bottom:294.561467pt;}
.y19e{bottom:295.516800pt;}
.y61{bottom:301.247333pt;}
.y129{bottom:303.799333pt;}
.y1ad{bottom:303.991067pt;}
.y150{bottom:305.302933pt;}
.y200{bottom:306.492133pt;}
.y38{bottom:307.598533pt;}
.yc9{bottom:307.920000pt;}
.y1d3{bottom:308.017867pt;}
.y22e{bottom:309.117467pt;}
.y11{bottom:309.452000pt;}
.ydd{bottom:310.406667pt;}
.y88{bottom:310.650800pt;}
.y112{bottom:310.904800pt;}
.y177{bottom:311.764533pt;}
.yae{bottom:312.961467pt;}
.y1e7{bottom:313.189333pt;}
.y19d{bottom:313.916800pt;}
.y60{bottom:319.647200pt;}
.y1ac{bottom:320.590133pt;}
.y14f{bottom:321.302933pt;}
.y1ff{bottom:322.092267pt;}
.y22d{bottom:324.717467pt;}
.yc8{bottom:326.320000pt;}
.y1d2{bottom:326.417867pt;}
.y111{bottom:329.038133pt;}
.ye5{bottom:329.275467pt;}
.yef{bottom:330.153013pt;}
.yad{bottom:331.361467pt;}
.y19c{bottom:332.316800pt;}
.y128{bottom:334.204533pt;}
.y1ab{bottom:336.590133pt;}
.y1fe{bottom:337.692133pt;}
.y5f{bottom:338.047333pt;}
.y87{bottom:339.989333pt;}
.y14d{bottom:340.169600pt;}
.y22c{bottom:340.317467pt;}
.y176{bottom:341.503067pt;}
.y10{bottom:343.809333pt;}
.yc7{bottom:344.720000pt;}
.y1d1{bottom:344.817867pt;}
.y110{bottom:347.171467pt;}
.yee{bottom:348.230933pt;}
.yac{bottom:349.761467pt;}
.y19b{bottom:350.716800pt;}
.ye4{bottom:351.001267pt;}
.y1fd{bottom:353.292133pt;}
.y1aa{bottom:354.909600pt;}
.y22b{bottom:355.917467pt;}
.y14c{bottom:356.169600pt;}
.y5e{bottom:356.447200pt;}
.y1e6{bottom:356.822933pt;}
.y37{bottom:358.147600pt;}
.yf{bottom:362.706666pt;}
.y1d0{bottom:363.217867pt;}
.y10f{bottom:365.304800pt;}
.yab{bottom:368.161467pt;}
.y1fc{bottom:368.892267pt;}
.y19a{bottom:369.116800pt;}
.y86{bottom:369.994667pt;}
.yc6{bottom:370.679067pt;}
.y1a9{bottom:372.642800pt;}
.ye3{bottom:372.727067pt;}
.y36{bottom:372.814267pt;}
.y22a{bottom:374.317467pt;}
.y5d{bottom:374.847200pt;}
.y1e5{bottom:375.222933pt;}
.y175{bottom:375.687867pt;}
.y14b{bottom:376.236267pt;}
.y127{bottom:377.838133pt;}
.y1cf{bottom:381.617733pt;}
.y10e{bottom:383.438133pt;}
.y1fb{bottom:384.492133pt;}
.yaa{bottom:386.561467pt;}
.y35{bottom:387.480933pt;}
.y199{bottom:387.516800pt;}
.y229{bottom:389.917467pt;}
.y5c{bottom:393.247333pt;}
.y1e4{bottom:393.622933pt;}
.ye2{bottom:394.452867pt;}
.yc5{bottom:396.238133pt;}
.y14a{bottom:396.303067pt;}
.y174{bottom:398.303867pt;}
.yed{bottom:399.994800pt;}
.y1ce{bottom:400.017867pt;}
.y1fa{bottom:400.092267pt;}
.y10d{bottom:401.571467pt;}
.ye8{bottom:402.702533pt;}
.y149{bottom:404.303067pt;}
.ya9{bottom:404.961467pt;}
.y228{bottom:405.517467pt;}
.y198{bottom:405.916800pt;}
.y34{bottom:407.816933pt;}
.y5b{bottom:411.647200pt;}
.y1e3{bottom:412.022933pt;}
.y85{bottom:413.361600pt;}
.yc4{bottom:414.638133pt;}
.y1f9{bottom:415.692133pt;}
.ye1{bottom:416.178667pt;}
.y173{bottom:418.370533pt;}
.y1cd{bottom:418.417867pt;}
.y227{bottom:421.117467pt;}
.y197{bottom:424.316800pt;}
.y5a{bottom:430.047333pt;}
.y1e2{bottom:430.422933pt;}
.ye{bottom:430.990669pt;}
.y10c{bottom:431.043333pt;}
.y1f8{bottom:431.292133pt;}
.y84{bottom:431.361600pt;}
.y148{bottom:431.756267pt;}
.yc3{bottom:433.038133pt;}
.y171{bottom:433.170533pt;}
.y172{bottom:434.370533pt;}
.y226{bottom:436.717467pt;}
.y1cc{bottom:436.817867pt;}
.ye0{bottom:437.904467pt;}
.ya8{bottom:441.761467pt;}
.y196{bottom:442.716800pt;}
.yea{bottom:443.573333pt;}
.y33{bottom:444.047867pt;}
.yec{bottom:444.138933pt;}
.y1f7{bottom:446.892267pt;}
.yd{bottom:446.990669pt;}
.y59{bottom:448.447200pt;}
.y1e1{bottom:448.822933pt;}
.y83{bottom:449.361600pt;}
.y147{bottom:449.489600pt;}
.yc2{bottom:451.438133pt;}
.y225{bottom:452.317467pt;}
.y170{bottom:453.237200pt;}
.y1cb{bottom:455.217867pt;}
.y32{bottom:458.714533pt;}
.ydf{bottom:459.630267pt;}
.ya7{bottom:460.161467pt;}
.y195{bottom:461.116800pt;}
.ye9{bottom:462.212267pt;}
.y1f6{bottom:462.492133pt;}
.yc{bottom:462.990669pt;}
.y10b{bottom:464.961467pt;}
.y58{bottom:466.847200pt;}
.y1e0{bottom:467.222933pt;}
.y82{bottom:467.361600pt;}
.y224{bottom:467.917467pt;}
.y16f{bottom:469.237200pt;}
.yc1{bottom:469.838133pt;}
.y31{bottom:473.381200pt;}
.y1ca{bottom:473.617733pt;}
.y1f5{bottom:478.092267pt;}
.ya6{bottom:478.561467pt;}
.yb{bottom:478.990666pt;}
.y194{bottom:479.516800pt;}
.y10a{bottom:483.094800pt;}
.y223{bottom:483.517467pt;}
.y57{bottom:485.247333pt;}
.y81{bottom:485.361600pt;}
.y146{bottom:485.622933pt;}
.yc0{bottom:488.238133pt;}
.y16e{bottom:489.303867pt;}
.y1c9{bottom:492.017867pt;}
.y30{bottom:493.717200pt;}
.ya{bottom:494.990666pt;}
.ydc{bottom:495.217600pt;}
.ya5{bottom:496.961467pt;}
.y193{bottom:497.916800pt;}
.y222{bottom:499.117467pt;}
.y1f4{bottom:499.361467pt;}
.y109{bottom:501.228133pt;}
.y80{bottom:503.361600pt;}
.y56{bottom:503.647200pt;}
.y145{bottom:504.022933pt;}
.ybf{bottom:506.638133pt;}
.y16d{bottom:509.370533pt;}
.y1c8{bottom:510.417867pt;}
.ydb{bottom:512.951067pt;}
.y221{bottom:514.717467pt;}
.ya4{bottom:515.361467pt;}
.y192{bottom:516.316800pt;}
.y108{bottom:519.361467pt;}
.y7f{bottom:521.361600pt;}
.y55{bottom:522.047333pt;}
.y144{bottom:522.422933pt;}
.ybe{bottom:525.038133pt;}
.y16c{bottom:525.370533pt;}
.y1c7{bottom:528.817733pt;}
.y2f{bottom:529.948133pt;}
.y220{bottom:530.317467pt;}
.ya3{bottom:533.761467pt;}
.y191{bottom:534.716800pt;}
.y107{bottom:537.494800pt;}
.y7e{bottom:539.361600pt;}
.y54{bottom:540.447200pt;}
.y143{bottom:540.822933pt;}
.ybd{bottom:543.438133pt;}
.y16b{bottom:544.237200pt;}
.y2e{bottom:544.614800pt;}
.y169{bottom:545.437200pt;}
.y21f{bottom:545.917467pt;}
.y1c6{bottom:547.217867pt;}
.yda{bottom:549.084267pt;}
.ya2{bottom:552.161467pt;}
.y190{bottom:553.116800pt;}
.y106{bottom:555.628133pt;}
.y7d{bottom:557.361600pt;}
.y53{bottom:558.847200pt;}
.y142{bottom:559.222933pt;}
.y2d{bottom:559.281467pt;}
.y16a{bottom:560.237200pt;}
.y21e{bottom:561.517467pt;}
.ybc{bottom:561.838133pt;}
.y1c5{bottom:565.617867pt;}
.yd9{bottom:567.484267pt;}
.ya1{bottom:570.561467pt;}
.y18f{bottom:571.516800pt;}
.y105{bottom:573.761467pt;}
.y9{bottom:573.786667pt;}
.y2c{bottom:573.948133pt;}
.y7c{bottom:575.361600pt;}
.y21d{bottom:577.117467pt;}
.y52{bottom:577.247333pt;}
.y141{bottom:577.622933pt;}
.ybb{bottom:580.238133pt;}
.y168{bottom:580.304000pt;}
.y1c4{bottom:584.017867pt;}
.ya0{bottom:588.961467pt;}
.y104{bottom:591.894800pt;}
.y8{bottom:592.685334pt;}
.y21c{bottom:592.717467pt;}
.y7b{bottom:593.361600pt;}
.yd8{bottom:593.443333pt;}
.y2b{bottom:594.284133pt;}
.y51{bottom:595.647200pt;}
.y140{bottom:596.022933pt;}
.y126{bottom:598.638133pt;}
.y18e{bottom:601.255333pt;}
.y167{bottom:601.570533pt;}
.y1c3{bottom:602.417867pt;}
.y9f{bottom:607.361467pt;}
.y21b{bottom:608.317467pt;}
.yba{bottom:609.976667pt;}
.y103{bottom:610.028133pt;}
.y7a{bottom:611.361600pt;}
.yd7{bottom:611.443333pt;}
.y50{bottom:614.047333pt;}
.y13f{bottom:614.422933pt;}
.y125{bottom:617.038133pt;}
.y1c2{bottom:620.817733pt;}
.y166{bottom:622.837200pt;}
.y21a{bottom:623.917467pt;}
.y9e{bottom:625.761467pt;}
.y102{bottom:628.161467pt;}
.y79{bottom:629.361600pt;}
.y2a{bottom:630.515200pt;}
.y4f{bottom:632.447200pt;}
.y13e{bottom:632.822933pt;}
.y18d{bottom:634.052933pt;}
.y124{bottom:635.438133pt;}
.yd6{bottom:637.002400pt;}
.y1c1{bottom:639.217867pt;}
.y219{bottom:639.517467pt;}
.y165{bottom:642.903867pt;}
.y9d{bottom:644.161467pt;}
.y7{bottom:645.598667pt;}
.y101{bottom:646.294800pt;}
.y78{bottom:647.361600pt;}
.y18c{bottom:650.052933pt;}
.y13d{bottom:651.222933pt;}
.y123{bottom:653.838133pt;}
.y218{bottom:655.117467pt;}
.y1c0{bottom:657.617867pt;}
.y164{bottom:658.903867pt;}
.y29{bottom:661.181733pt;}
.y4e{bottom:662.185867pt;}
.y9c{bottom:662.561467pt;}
.y100{bottom:664.428133pt;}
.y77{bottom:665.361600pt;}
.y18b{bottom:666.052933pt;}
.y3{bottom:668.977329pt;}
.y13c{bottom:669.622933pt;}
.y217{bottom:670.717467pt;}
.y122{bottom:672.238133pt;}
.y1bf{bottom:676.017867pt;}
.y163{bottom:677.770667pt;}
.y9b{bottom:680.961467pt;}
.y18a{bottom:682.200000pt;}
.yff{bottom:682.561467pt;}
.y76{bottom:683.361600pt;}
.y160{bottom:685.770800pt;}
.y216{bottom:686.317467pt;}
.y13b{bottom:688.022933pt;}
.y121{bottom:690.638133pt;}
.y28{bottom:691.848533pt;}
.y162{bottom:693.770667pt;}
.y1be{bottom:694.417867pt;}
.y189{bottom:698.200000pt;}
.y9a{bottom:699.361467pt;}
.yfe{bottom:700.694800pt;}
.y75{bottom:701.361600pt;}
.y215{bottom:701.917467pt;}
.y13a{bottom:706.423067pt;}
.y1bd{bottom:712.817733pt;}
.y161{bottom:713.837467pt;}
.y188{bottom:714.798933pt;}
.y214{bottom:717.517467pt;}
.y99{bottom:717.761467pt;}
.y1a8{bottom:718.428133pt;}
.yfd{bottom:718.828133pt;}
.y74{bottom:719.361600pt;}
.y120{bottom:720.376667pt;}
.y27{bottom:722.515200pt;}
.y4d{bottom:724.219467pt;}
.y139{bottom:724.822933pt;}
.y1bc{bottom:731.217733pt;}
.y187{bottom:731.398000pt;}
.y213{bottom:733.117467pt;}
.y15f{bottom:733.904133pt;}
.y98{bottom:736.161467pt;}
.yfc{bottom:736.961467pt;}
.y73{bottom:737.361600pt;}
.y138{bottom:743.222933pt;}
.y4c{bottom:744.532267pt;}
.y186{bottom:748.664133pt;}
.y212{bottom:748.717467pt;}
.y1bb{bottom:749.617733pt;}
.y15e{bottom:749.904133pt;}
.y97{bottom:754.561467pt;}
.yfb{bottom:755.094800pt;}
.y72{bottom:755.361600pt;}
.y4b{bottom:761.065600pt;}
.y137{bottom:761.622933pt;}
.y211{bottom:764.317467pt;}
.y15d{bottom:769.970667pt;}
.y185{bottom:770.497467pt;}
.yb9{bottom:772.961600pt;}
.yfa{bottom:773.228133pt;}
.y71{bottom:773.494933pt;}
.y4a{bottom:777.598933pt;}
.y1ba{bottom:779.356267pt;}
.y210{bottom:779.917467pt;}
.y136{bottom:780.022933pt;}
.y2{bottom:781.661334pt;}
.y15c{bottom:790.037467pt;}
.y26{bottom:790.479467pt;}
.y96{bottom:791.361600pt;}
.y70{bottom:791.628267pt;}
.y184{bottom:793.384133pt;}
.y49{bottom:794.132267pt;}
.y20f{bottom:795.517467pt;}
.y15b{bottom:798.037467pt;}
.y25{bottom:805.146133pt;}
.y6f{bottom:809.761600pt;}
.y48{bottom:810.665467pt;}
.y183{bottom:811.117467pt;}
.y47{bottom:847.351067pt;}
.y6e{bottom:852.836933pt;}
.y45{bottom:855.665733pt;}
.y46{bottom:858.551067pt;}
.y1{bottom:859.312000pt;}
.h1d{height:10.012000pt;}
.h7{height:28.560000pt;}
.h1c{height:29.228568pt;}
.h12{height:31.128533pt;}
.h11{height:31.374933pt;}
.hb{height:32.341333pt;}
.h1a{height:33.577578pt;}
.h19{height:35.004318pt;}
.h17{height:36.960000pt;}
.h1b{height:37.979648pt;}
.h22{height:38.405333pt;}
.h21{height:38.709333pt;}
.h1f{height:40.426667pt;}
.he{height:40.746667pt;}
.h6{height:40.800000pt;}
.h13{height:42.504000pt;}
.h10{height:42.784000pt;}
.h3{height:42.840000pt;}
.h15{height:42.933333pt;}
.ha{height:44.469333pt;}
.h14{height:46.490667pt;}
.h16{height:46.858667pt;}
.hf{height:48.048000pt;}
.h2{height:48.960000pt;}
.hd{height:52.416000pt;}
.h1e{height:68.960000pt;}
.h5{height:69.360000pt;}
.h20{height:72.426667pt;}
.hc{height:77.616000pt;}
.h4{height:105.826671pt;}
.h18{height:177.144000pt;}
.h8{height:907.086667pt;}
.h9{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:53.022667pt;}
.w5{width:490.242667pt;}
.w2{width:566.928019pt;}
.w3{width:642.520000pt;}
.w4{width:642.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:31.840000pt;}
.xd{left:41.286533pt;}
.x5{left:75.590533pt;}
.xb{left:79.096083pt;}
.x16{left:86.929200pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:107.430667pt;}
.xe{left:117.758533pt;}
.x18{left:123.575200pt;}
.x1a{left:156.220400pt;}
.x14{left:159.553067pt;}
.x4{left:180.874667pt;}
.x8{left:202.025733pt;}
.x1b{left:219.212533pt;}
.xc{left:249.100933pt;}
.x1c{left:254.173200pt;}
.x12{left:303.781333pt;}
.x15{left:322.243867pt;}
.x6{left:371.284800pt;}
.x17{left:388.469600pt;}
.x3{left:404.408000pt;}
.x19{left:420.130400pt;}
.x10{left:463.921333pt;}
.xf{left:468.078000pt;}
.x11{left:469.211600pt;}
.x13{left:476.642533pt;}
.x7{left:545.985200pt;}
}




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