
    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_50476f13835a7937c7acd0aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_fd8ac5a3661ff05380d899f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964861;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_cfe8476fc5c3d66491cc443a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.022461;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_1a0b205cab174f2c67e5f276.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_fdd89592d72b668c12917c4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_1bcafe35553707ca0d760b1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_edc67bb9760c2df20785ad84.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_6fd20c70844e8fdb35334c3d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976118;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_28a5a1dc69822bcebe6bec25.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.031738;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_76f712d1dd1e39bf8d03f264.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_89a7d5873e12c86c3d17e078.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964852;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_8aa487ad55ae22026a819aa7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.964844;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_4805e0e6ccc3f0daa7a8b45f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.977087;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_c98360895ad68b6f3c21b062.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.770020;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249962,0.000000,0.004362,0.249962,0,0);-ms-transform:matrix(0.249962,0.000000,0.004362,0.249962,0,0);-webkit-transform:matrix(0.249962,0.000000,0.004362,0.249962,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);}
.m2{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);}
.v7{vertical-align:-19.980000px;}
.v9{vertical-align:-17.982000px;}
.v5{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.984000px;}
.v8{vertical-align:17.982600px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v3{vertical-align:36.879000px;}
.v6{vertical-align:41.301000px;}
.ls39{letter-spacing:-1.200000px;}
.ls8{letter-spacing:-1.080000px;}
.ls3d{letter-spacing:-0.960000px;}
.ls3c{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.840000px;}
.ls7{letter-spacing:-0.691200px;}
.ls18{letter-spacing:-0.672000px;}
.lsa{letter-spacing:-0.600000px;}
.ls3e{letter-spacing:-0.480000px;}
.ls6{letter-spacing:-0.408000px;}
.lsb{letter-spacing:-0.349800px;}
.ls5{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.006000px;}
.ls1{letter-spacing:0.012000px;}
.ls4{letter-spacing:0.025800px;}
.ls40{letter-spacing:0.240000px;}
.ls3f{letter-spacing:0.540000px;}
.ls3{letter-spacing:3.045000px;}
.ls2{letter-spacing:5.385000px;}
.ls3b{letter-spacing:14.447400px;}
.ls0{letter-spacing:43.181364px;}
.ls13{letter-spacing:274.984752px;}
.ls14{letter-spacing:274.996152px;}
.ls12{letter-spacing:276.636552px;}
.lsc{letter-spacing:301.632552px;}
.ls24{letter-spacing:303.851352px;}
.ls1c{letter-spacing:303.863352px;}
.ls26{letter-spacing:308.281752px;}
.lse{letter-spacing:309.144552px;}
.ls2c{letter-spacing:312.160752px;}
.lsf{letter-spacing:314.207352px;}
.ls25{letter-spacing:318.464952px;}
.ls19{letter-spacing:319.156152px;}
.ls1b{letter-spacing:331.742352px;}
.ls22{letter-spacing:332.456952px;}
.ls1a{letter-spacing:332.468952px;}
.ls20{letter-spacing:334.531152px;}
.ls31{letter-spacing:334.543152px;}
.ls27{letter-spacing:334.566552px;}
.ls29{letter-spacing:334.789152px;}
.ls2a{letter-spacing:334.801152px;}
.ls36{letter-spacing:336.183552px;}
.lsd{letter-spacing:339.484152px;}
.ls15{letter-spacing:341.230752px;}
.ls30{letter-spacing:345.230352px;}
.ls10{letter-spacing:346.621152px;}
.ls1f{letter-spacing:348.019752px;}
.ls2b{letter-spacing:348.277752px;}
.ls1e{letter-spacing:348.558552px;}
.ls1d{letter-spacing:348.570552px;}
.ls23{letter-spacing:350.679552px;}
.ls17{letter-spacing:351.401952px;}
.ls28{letter-spacing:352.097952px;}
.ls32{letter-spacing:355.578552px;}
.ls11{letter-spacing:358.644552px;}
.ls2d{letter-spacing:361.496352px;}
.ls21{letter-spacing:364.718952px;}
.ls35{letter-spacing:367.308552px;}
.ls16{letter-spacing:368.183952px;}
.ls2f{letter-spacing:368.609352px;}
.ls38{letter-spacing:369.746352px;}
.ls2e{letter-spacing:369.992352px;}
.ls37{letter-spacing:380.797152px;}
.ls33{letter-spacing:383.222952px;}
.ls34{letter-spacing:394.261752px;}
.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;}
}
.ws6{word-spacing:-17.928000px;}
.wsaa{word-spacing:-16.434000px;}
.ws3{word-spacing:-14.940000px;}
.wsa8{word-spacing:-14.880000px;}
.ws7{word-spacing:-14.700000px;}
.wsab{word-spacing:-14.340000px;}
.wsac{word-spacing:-14.280000px;}
.ws132{word-spacing:-13.932000px;}
.ws2e{word-spacing:-13.860000px;}
.ws111{word-spacing:-13.620000px;}
.wsa9{word-spacing:-13.500000px;}
.wsd8{word-spacing:-13.446000px;}
.wsbf{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.230000px;}
.ws4{word-spacing:-12.150000px;}
.ws9{word-spacing:-12.042000px;}
.ws6f{word-spacing:-11.904000px;}
.ws8{word-spacing:-11.772000px;}
.wsfc{word-spacing:-11.424000px;}
.ws1{word-spacing:-10.896000px;}
.ws2d{word-spacing:-10.800000px;}
.wsa{word-spacing:-10.464000px;}
.ws0{word-spacing:-9.542544px;}
.ws2{word-spacing:-9.417600px;}
.ws4b{word-spacing:-8.675040px;}
.ws2f{word-spacing:-8.325240px;}
.ws10c{word-spacing:-8.220000px;}
.wsbe{word-spacing:-7.807536px;}
.ws84{word-spacing:-6.940032px;}
.ws13f{word-spacing:-6.048000px;}
.ws10a{word-spacing:-4.980000px;}
.ws15a{word-spacing:-4.860000px;}
.wsdf{word-spacing:-3.960000px;}
.ws15f{word-spacing:-3.888000px;}
.ws160{word-spacing:-3.834000px;}
.wscb{word-spacing:-3.510000px;}
.wsbd{word-spacing:-3.180000px;}
.ws13d{word-spacing:-3.078000px;}
.wsc0{word-spacing:-2.940000px;}
.ws24{word-spacing:-2.820000px;}
.wsf0{word-spacing:-2.700000px;}
.ws60{word-spacing:-2.640000px;}
.ws147{word-spacing:-2.592000px;}
.ws3e{word-spacing:-2.580000px;}
.wsde{word-spacing:-2.520000px;}
.ws168{word-spacing:-2.430000px;}
.ws3f{word-spacing:-2.400000px;}
.ws169{word-spacing:-2.376000px;}
.ws38{word-spacing:-2.340000px;}
.ws22{word-spacing:-2.280000px;}
.ws10b{word-spacing:-2.220000px;}
.ws113{word-spacing:-2.160000px;}
.wsca{word-spacing:-2.106000px;}
.ws5f{word-spacing:-2.100000px;}
.ws149{word-spacing:-2.052000px;}
.ws25{word-spacing:-2.040000px;}
.ws27{word-spacing:-1.980000px;}
.ws42{word-spacing:-1.920000px;}
.ws3a{word-spacing:-1.740000px;}
.ws18{word-spacing:-1.728000px;}
.wscd{word-spacing:-1.680000px;}
.ws19{word-spacing:-1.674000px;}
.ws33{word-spacing:-1.620000px;}
.ws14a{word-spacing:-1.566000px;}
.wsc2{word-spacing:-1.560000px;}
.ws144{word-spacing:-1.512000px;}
.wsf7{word-spacing:-1.458000px;}
.ws13b{word-spacing:-1.404000px;}
.ws50{word-spacing:-1.380000px;}
.wsd{word-spacing:-1.254000px;}
.ws15d{word-spacing:-1.242000px;}
.wsce{word-spacing:-1.200000px;}
.ws43{word-spacing:-1.140000px;}
.ws1d{word-spacing:-1.080000px;}
.ws129{word-spacing:-1.026000px;}
.ws10d{word-spacing:-0.900000px;}
.ws12f{word-spacing:-0.864000px;}
.ws14f{word-spacing:-0.810000px;}
.wsae{word-spacing:-0.780000px;}
.ws145{word-spacing:-0.702000px;}
.ws36{word-spacing:-0.660000px;}
.ws130{word-spacing:-0.648000px;}
.ws4d{word-spacing:-0.600000px;}
.ws159{word-spacing:-0.540000px;}
.ws121{word-spacing:-0.420000px;}
.ws16d{word-spacing:-0.324000px;}
.ws45{word-spacing:-0.300000px;}
.wsd7{word-spacing:-0.270000px;}
.ws112{word-spacing:-0.240000px;}
.wse{word-spacing:-0.216000px;}
.wsba{word-spacing:-0.120000px;}
.wsb{word-spacing:0.000000px;}
.ws20{word-spacing:0.060000px;}
.ws1f{word-spacing:0.120000px;}
.ws167{word-spacing:0.216000px;}
.wsbc{word-spacing:0.240000px;}
.ws34{word-spacing:0.300000px;}
.ws125{word-spacing:0.360000px;}
.wsc{word-spacing:0.408000px;}
.ws46{word-spacing:0.420000px;}
.ws171{word-spacing:0.432000px;}
.ws44{word-spacing:0.540000px;}
.ws16f{word-spacing:0.594000px;}
.ws40{word-spacing:0.600000px;}
.ws5c{word-spacing:0.660000px;}
.wsf{word-spacing:0.691200px;}
.ws13c{word-spacing:0.702000px;}
.ws54{word-spacing:0.720000px;}
.ws2c{word-spacing:0.780000px;}
.ws3b{word-spacing:0.840000px;}
.ws41{word-spacing:0.900000px;}
.ws158{word-spacing:0.918000px;}
.wsb6{word-spacing:1.020000px;}
.ws17{word-spacing:1.080000px;}
.ws37{word-spacing:1.140000px;}
.ws152{word-spacing:1.188000px;}
.ws32{word-spacing:1.200000px;}
.wsf4{word-spacing:1.242000px;}
.wsf3{word-spacing:1.296000px;}
.ws47{word-spacing:1.320000px;}
.ws35{word-spacing:1.380000px;}
.ws15c{word-spacing:1.404000px;}
.ws2b{word-spacing:1.440000px;}
.ws3c{word-spacing:1.620000px;}
.wsf2{word-spacing:1.740000px;}
.ws1a{word-spacing:1.782000px;}
.ws165{word-spacing:1.836000px;}
.ws4a{word-spacing:1.860000px;}
.wsb9{word-spacing:1.920000px;}
.ws2a{word-spacing:1.980000px;}
.ws16a{word-spacing:2.052000px;}
.ws162{word-spacing:2.106000px;}
.ws39{word-spacing:2.220000px;}
.ws16b{word-spacing:2.268000px;}
.ws161{word-spacing:2.322000px;}
.ws23{word-spacing:2.340000px;}
.wscc{word-spacing:2.430000px;}
.ws4e{word-spacing:2.460000px;}
.wsb8{word-spacing:2.580000px;}
.ws150{word-spacing:2.592000px;}
.ws5d{word-spacing:2.640000px;}
.ws15b{word-spacing:2.646000px;}
.wsb7{word-spacing:2.760000px;}
.ws118{word-spacing:2.820000px;}
.ws173{word-spacing:2.970000px;}
.ws5a{word-spacing:3.180000px;}
.ws12d{word-spacing:3.186000px;}
.ws26{word-spacing:3.300000px;}
.ws55{word-spacing:3.420000px;}
.ws48{word-spacing:3.480000px;}
.ws16c{word-spacing:3.510000px;}
.wsb1{word-spacing:3.540000px;}
.wse1{word-spacing:3.618000px;}
.wse0{word-spacing:3.672000px;}
.ws10e{word-spacing:3.720000px;}
.ws148{word-spacing:3.780000px;}
.wsb3{word-spacing:3.840000px;}
.wsdb{word-spacing:3.900000px;}
.ws128{word-spacing:3.942000px;}
.ws59{word-spacing:4.020000px;}
.ws15{word-spacing:4.104000px;}
.ws120{word-spacing:4.140000px;}
.ws16{word-spacing:4.158000px;}
.ws30{word-spacing:4.200000px;}
.ws117{word-spacing:4.260000px;}
.ws51{word-spacing:4.320000px;}
.ws163{word-spacing:4.374000px;}
.wsbb{word-spacing:4.380000px;}
.wsf1{word-spacing:4.440000px;}
.ws146{word-spacing:4.482000px;}
.ws5e{word-spacing:4.500000px;}
.wsdd{word-spacing:4.560000px;}
.ws21{word-spacing:4.620000px;}
.ws3d{word-spacing:4.680000px;}
.wscf{word-spacing:4.740000px;}
.ws126{word-spacing:4.752000px;}
.ws11d{word-spacing:4.800000px;}
.wsb4{word-spacing:4.860000px;}
.ws135{word-spacing:4.968000px;}
.wse2{word-spacing:5.022000px;}
.ws31{word-spacing:5.220000px;}
.ws142{word-spacing:5.238000px;}
.wsdc{word-spacing:5.280000px;}
.ws110{word-spacing:5.346000px;}
.ws10f{word-spacing:5.400000px;}
.wsf6{word-spacing:5.454000px;}
.ws29{word-spacing:5.460000px;}
.wsf5{word-spacing:5.508000px;}
.ws28{word-spacing:5.520000px;}
.ws143{word-spacing:5.562000px;}
.ws136{word-spacing:5.670000px;}
.ws115{word-spacing:5.700000px;}
.ws58{word-spacing:5.760000px;}
.wsd6{word-spacing:5.832000px;}
.ws133{word-spacing:5.886000px;}
.ws123{word-spacing:5.940000px;}
.ws119{word-spacing:6.060000px;}
.ws170{word-spacing:6.156000px;}
.ws164{word-spacing:6.210000px;}
.ws124{word-spacing:6.360000px;}
.ws13{word-spacing:6.426000px;}
.ws12{word-spacing:6.480000px;}
.ws14{word-spacing:6.534000px;}
.ws11c{word-spacing:6.540000px;}
.wsc4{word-spacing:6.720000px;}
.ws138{word-spacing:6.804000px;}
.ws11e{word-spacing:6.840000px;}
.wsad{word-spacing:6.900000px;}
.ws137{word-spacing:6.912000px;}
.ws11b{word-spacing:6.960000px;}
.ws116{word-spacing:7.020000px;}
.wsc1{word-spacing:7.200000px;}
.ws14e{word-spacing:7.290000px;}
.ws114{word-spacing:7.380000px;}
.ws57{word-spacing:7.440000px;}
.ws1e{word-spacing:7.500000px;}
.ws16e{word-spacing:7.614000px;}
.ws108{word-spacing:7.740000px;}
.ws11{word-spacing:7.830000px;}
.ws4f{word-spacing:7.860000px;}
.wsc5{word-spacing:7.920000px;}
.ws49{word-spacing:7.980000px;}
.wsc3{word-spacing:8.040000px;}
.ws11f{word-spacing:8.160000px;}
.ws127{word-spacing:8.424000px;}
.ws134{word-spacing:8.532000px;}
.ws56{word-spacing:8.580000px;}
.ws122{word-spacing:8.640000px;}
.wsc9{word-spacing:8.748000px;}
.wsc8{word-spacing:8.802000px;}
.ws12c{word-spacing:9.018000px;}
.wsb2{word-spacing:9.300000px;}
.wsc6{word-spacing:9.540000px;}
.ws13e{word-spacing:9.612000px;}
.ws1b{word-spacing:9.882000px;}
.ws1c{word-spacing:9.990000px;}
.ws109{word-spacing:10.020000px;}
.ws141{word-spacing:10.044000px;}
.ws175{word-spacing:10.260000px;}
.ws53{word-spacing:10.440000px;}
.wsc7{word-spacing:10.680000px;}
.ws10{word-spacing:10.746000px;}
.ws154{word-spacing:10.800000px;}
.ws166{word-spacing:11.664000px;}
.ws153{word-spacing:12.420000px;}
.ws5b{word-spacing:12.780000px;}
.ws151{word-spacing:13.068000px;}
.ws13a{word-spacing:13.338000px;}
.wsd3{word-spacing:13.440000px;}
.ws52{word-spacing:14.280000px;}
.wsd1{word-spacing:14.460000px;}
.wsd0{word-spacing:14.580000px;}
.wsb5{word-spacing:14.700000px;}
.ws14d{word-spacing:15.336000px;}
.wsee{word-spacing:15.480000px;}
.wsef{word-spacing:15.540000px;}
.ws156{word-spacing:15.876000px;}
.ws155{word-spacing:16.038000px;}
.ws12b{word-spacing:16.146000px;}
.ws12e{word-spacing:16.524000px;}
.ws157{word-spacing:16.578000px;}
.ws15e{word-spacing:16.632000px;}
.ws12a{word-spacing:17.334000px;}
.ws140{word-spacing:17.496000px;}
.ws14c{word-spacing:17.658000px;}
.wsda{word-spacing:18.120000px;}
.wsd9{word-spacing:18.300000px;}
.ws172{word-spacing:18.846000px;}
.ws139{word-spacing:19.440000px;}
.wsd4{word-spacing:21.060000px;}
.wsaf{word-spacing:21.120000px;}
.ws131{word-spacing:21.222000px;}
.wsd5{word-spacing:21.240000px;}
.wsb0{word-spacing:21.960000px;}
.ws4c{word-spacing:22.200000px;}
.wsd2{word-spacing:22.740000px;}
.ws11a{word-spacing:23.100000px;}
.ws176{word-spacing:24.786000px;}
.ws174{word-spacing:28.512000px;}
.ws14b{word-spacing:39.744000px;}
.wsf8{word-spacing:166.683600px;}
.wse3{word-spacing:199.034400px;}
.ws71{word-spacing:210.843600px;}
.ws7c{word-spacing:230.460600px;}
.ws74{word-spacing:232.648800px;}
.ws76{word-spacing:232.732800px;}
.ws63{word-spacing:232.758000px;}
.ws72{word-spacing:237.948600px;}
.ws77{word-spacing:237.960600px;}
.ws79{word-spacing:238.711800px;}
.ws78{word-spacing:239.160600px;}
.ws64{word-spacing:241.218000px;}
.ws83{word-spacing:241.230000px;}
.ws6a{word-spacing:241.254000px;}
.ws6b{word-spacing:241.266000px;}
.ws7b{word-spacing:241.752000px;}
.ws68{word-spacing:243.292200px;}
.ws80{word-spacing:243.304200px;}
.ws69{word-spacing:243.328200px;}
.ws7e{word-spacing:244.547400px;}
.ws82{word-spacing:244.573200px;}
.ws75{word-spacing:244.620600px;}
.ws81{word-spacing:244.657200px;}
.ws66{word-spacing:248.700000px;}
.ws65{word-spacing:248.712000px;}
.ws6e{word-spacing:248.736600px;}
.wsed{word-spacing:291.118800px;}
.wse8{word-spacing:292.479000px;}
.wseb{word-spacing:292.796400px;}
.wse4{word-spacing:294.622800px;}
.wse5{word-spacing:310.372800px;}
.wsec{word-spacing:312.414000px;}
.wse9{word-spacing:313.761600px;}
.wse6{word-spacing:313.773600px;}
.wse7{word-spacing:315.900600px;}
.wsea{word-spacing:315.912600px;}
.ws105{word-spacing:318.308400px;}
.ws7f{word-spacing:318.925800px;}
.ws67{word-spacing:322.760400px;}
.ws6d{word-spacing:322.797000px;}
.ws7a{word-spacing:323.500200px;}
.ws6c{word-spacing:324.270000px;}
.ws87{word-spacing:335.731800px;}
.wsa6{word-spacing:349.563600px;}
.ws102{word-spacing:353.709000px;}
.ws92{word-spacing:353.792400px;}
.ws8c{word-spacing:353.828400px;}
.wsa0{word-spacing:354.327000px;}
.ws89{word-spacing:354.556200px;}
.wsa4{word-spacing:356.153400px;}
.wsa5{word-spacing:356.201400px;}
.ws88{word-spacing:357.766800px;}
.ws101{word-spacing:357.877200px;}
.wsfb{word-spacing:357.892800px;}
.ws94{word-spacing:358.170600px;}
.wsa3{word-spacing:358.575600px;}
.wsa1{word-spacing:358.611600px;}
.ws103{word-spacing:359.251800px;}
.wsfd{word-spacing:359.254200px;}
.wsa2{word-spacing:360.172800px;}
.ws9d{word-spacing:360.352200px;}
.wsfa{word-spacing:361.381800px;}
.ws97{word-spacing:361.482600px;}
.wsfe{word-spacing:362.061000px;}
.ws9b{word-spacing:362.091000px;}
.ws62{word-spacing:362.164200px;}
.ws9e{word-spacing:362.335800px;}
.ws91{word-spacing:362.571600px;}
.wsa7{word-spacing:362.619600px;}
.ws90{word-spacing:363.087600px;}
.ws9c{word-spacing:363.147600px;}
.ws98{word-spacing:363.159000px;}
.ws106{word-spacing:363.420000px;}
.ws107{word-spacing:363.438000px;}
.ws8b{word-spacing:364.449000px;}
.ws104{word-spacing:364.797000px;}
.ws8f{word-spacing:365.126400px;}
.ws96{word-spacing:365.138400px;}
.ws8a{word-spacing:365.162400px;}
.ws95{word-spacing:365.199000px;}
.ws9a{word-spacing:365.444400px;}
.ws99{word-spacing:365.456400px;}
.ws8e{word-spacing:365.727600px;}
.ws8d{word-spacing:365.763600px;}
.ws100{word-spacing:366.924600px;}
.ws93{word-spacing:368.361000px;}
.wsf9{word-spacing:369.069000px;}
.ws7d{word-spacing:377.780400px;}
.ws9f{word-spacing:389.946600px;}
.ws73{word-spacing:392.579400px;}
.ws86{word-spacing:481.219200px;}
.ws61{word-spacing:509.105400px;}
.wsff{word-spacing:568.735800px;}
.ws85{word-spacing:611.152800px;}
.ws70{word-spacing:647.795400px;}
._c{margin-left:-10.352400px;}
._6{margin-left:-8.894400px;}
._97{margin-left:-7.846200px;}
._3{margin-left:-6.475800px;}
._5{margin-left:-5.253000px;}
._b{margin-left:-3.565200px;}
._4{margin-left:-2.550000px;}
._2{margin-left:-1.203600px;}
._0{width:1.132200px;}
._1{width:2.743800px;}
._9{width:4.105200px;}
._a{width:5.965800px;}
._d{width:7.008000px;}
._8{width:8.821200px;}
._e{width:10.576800px;}
._64{width:13.063140px;}
._7{width:36.624000px;}
._96{width:42.918600px;}
._95{width:44.073000px;}
._7a{width:52.299000px;}
._7b{width:54.435600px;}
._65{width:109.473000px;}
._66{width:110.655000px;}
._79{width:219.884400px;}
._94{width:231.464400px;}
._92{width:245.396400px;}
._74{width:303.023400px;}
._73{width:304.395600px;}
._6d{width:306.523200px;}
._17{width:314.293800px;}
._2d{width:315.567600px;}
._77{width:321.963600px;}
._75{width:325.596600px;}
._19{width:328.137000px;}
._15{width:330.247200px;}
._1c{width:335.329200px;}
._13{width:338.349000px;}
._2f{width:342.605400px;}
._76{width:352.156800px;}
._36{width:355.368000px;}
._3c{width:368.742600px;}
._89{width:373.300200px;}
._90{width:376.701000px;}
._93{width:379.827000px;}
._78{width:380.928000px;}
._42{width:388.033200px;}
._8f{width:400.896600px;}
._81{width:429.309000px;}
._83{width:430.683600px;}
._88{width:432.813000px;}
._86{width:435.246600px;}
._7f{width:438.372600px;}
._7d{width:440.500200px;}
._4d{width:442.192200px;}
._72{width:476.204400px;}
._87{width:481.540800px;}
._57{width:490.389000px;}
._6e{width:492.940800px;}
._6b{width:499.228800px;}
._4b{width:505.281600px;}
._43{width:512.502600px;}
._82{width:518.397000px;}
._8b{width:522.596400px;}
._4a{width:526.263000px;}
._8a{width:528.260400px;}
._67{width:543.003000px;}
._6a{width:550.059000px;}
._71{width:551.084400px;}
._69{width:553.420800px;}
._44{width:559.437000px;}
._62{width:561.639600px;}
._59{width:563.275800px;}
._8e{width:564.621000px;}
._6c{width:569.788800px;}
._85{width:571.245000px;}
._84{width:574.058400px;}
._68{width:582.261000px;}
._55{width:590.587800px;}
._8c{width:593.156400px;}
._6f{width:597.079800px;}
._7e{width:609.812400px;}
._7c{width:612.292800px;}
._91{width:616.269000px;}
._53{width:619.343400px;}
._28{width:621.441000px;}
._70{width:623.564400px;}
._4c{width:624.849600px;}
._5b{width:645.297600px;}
._8d{width:649.076400px;}
._5a{width:654.811800px;}
._50{width:665.146200px;}
._80{width:667.828800px;}
._54{width:671.719200px;}
._45{width:675.201600px;}
._51{width:677.774400px;}
._60{width:685.530000px;}
._5e{width:693.399600px;}
._40{width:699.287400px;}
._4e{width:701.638200px;}
._46{width:702.756000px;}
._52{width:709.854000px;}
._63{width:712.869000px;}
._47{width:714.032400px;}
._4f{width:719.386200px;}
._5f{width:737.631000px;}
._2b{width:738.885600px;}
._58{width:744.560400px;}
._2a{width:749.617800px;}
._3d{width:752.286000px;}
._48{width:755.035800px;}
._1d{width:757.145400px;}
._61{width:771.555000px;}
._49{width:783.019800px;}
._31{width:797.880600px;}
._33{width:804.145200px;}
._29{width:808.008000px;}
._34{width:809.997600px;}
._56{width:817.114200px;}
._f{width:818.342400px;}
._5c{width:843.675000px;}
._26{width:847.761000px;}
._1b{width:851.311200px;}
._41{width:853.576800px;}
._32{width:856.194600px;}
._14{width:861.305400px;}
._18{width:865.037400px;}
._5d{width:871.011000px;}
._20{width:874.146600px;}
._21{width:877.427400px;}
._2c{width:880.848600px;}
._10{width:883.377000px;}
._12{width:890.307600px;}
._25{width:891.773400px;}
._1f{width:895.386600px;}
._1e{width:897.197400px;}
._23{width:899.549400px;}
._3b{width:903.006600px;}
._3f{width:904.194000px;}
._2e{width:905.263200px;}
._39{width:910.609200px;}
._38{width:919.242000px;}
._1a{width:927.990600px;}
._3a{width:945.666000px;}
._27{width:948.552000px;}
._16{width:950.694600px;}
._24{width:966.282600px;}
._22{width:967.539600px;}
._37{width:1001.406000px;}
._35{width:1018.722000px;}
._30{width:1025.888400px;}
._3e{width:1030.747200px;}
._11{width:1078.996200px;}
.fc2{color:rgb(109,111,79);}
.fc1{color:rgb(70,71,49);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:27.984000px;}
.fsb{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fsc{font-size:48.007308px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3b{bottom:71.212050px;}
.y3c{bottom:75.036150px;}
.y99{bottom:113.078700px;}
.y6b{bottom:113.078850px;}
.y2a{bottom:117.212550px;}
.yc{bottom:117.875550px;}
.y128{bottom:120.500850px;}
.y146{bottom:120.543300px;}
.ycf{bottom:120.849750px;}
.yfa{bottom:121.388550px;}
.yb{bottom:132.275550px;}
.y98{bottom:134.078700px;}
.y6a{bottom:134.078850px;}
.y29{bottom:138.212550px;}
.y127{bottom:140.300850px;}
.yce{bottom:144.141150px;}
.y145{bottom:144.387450px;}
.ya{bottom:146.675550px;}
.yf9{bottom:146.933400px;}
.y97{bottom:155.078700px;}
.y69{bottom:155.078850px;}
.y28{bottom:159.212550px;}
.y126{bottom:160.100850px;}
.y9{bottom:161.075550px;}
.ycd{bottom:162.665550px;}
.y144{bottom:164.017350px;}
.yf8{bottom:169.964850px;}
.y96{bottom:176.078700px;}
.y68{bottom:176.078850px;}
.y27{bottom:180.212550px;}
.ycc{bottom:181.189950px;}
.y143{bottom:183.647250px;}
.yf7{bottom:192.996300px;}
.y95{bottom:197.078700px;}
.y67{bottom:197.078850px;}
.y38{bottom:199.392600px;}
.ycb{bottom:199.714350px;}
.y26{bottom:201.212550px;}
.y142{bottom:203.277150px;}
.yf6{bottom:216.027900px;}
.y37{bottom:217.392600px;}
.y94{bottom:218.078700px;}
.y66{bottom:218.078850px;}
.yca{bottom:218.238900px;}
.y25{bottom:222.212550px;}
.y141{bottom:222.907050px;}
.y36{bottom:235.392600px;}
.yc9{bottom:236.763300px;}
.yf5{bottom:239.059350px;}
.y93{bottom:239.078700px;}
.y65{bottom:239.078850px;}
.y140{bottom:242.536950px;}
.y24{bottom:243.212550px;}
.y35{bottom:253.392600px;}
.yc8{bottom:255.287700px;}
.y92{bottom:260.078700px;}
.y64{bottom:260.078850px;}
.yf4{bottom:262.090800px;}
.y13f{bottom:262.167000px;}
.y23{bottom:264.212550px;}
.y34{bottom:271.392600px;}
.yc7{bottom:273.812100px;}
.y91{bottom:281.078700px;}
.y63{bottom:281.078850px;}
.y13e{bottom:281.796900px;}
.yf3{bottom:285.122400px;}
.y22{bottom:285.212550px;}
.y33{bottom:289.392600px;}
.yc6{bottom:292.336500px;}
.y13d{bottom:301.426800px;}
.y90{bottom:302.078700px;}
.y62{bottom:302.078850px;}
.y21{bottom:306.212550px;}
.y32{bottom:307.392600px;}
.yf2{bottom:308.153850px;}
.yc5{bottom:310.860900px;}
.y100{bottom:316.440900px;}
.y13c{bottom:321.056700px;}
.y8f{bottom:323.078700px;}
.y61{bottom:323.078850px;}
.y31{bottom:325.392600px;}
.y20{bottom:327.212550px;}
.yc4{bottom:329.385300px;}
.yf1{bottom:331.185450px;}
.y13b{bottom:340.686600px;}
.y30{bottom:343.392600px;}
.y8e{bottom:344.078700px;}
.y60{bottom:344.078850px;}
.yc3{bottom:347.909700px;}
.y1f{bottom:348.212550px;}
.yf0{bottom:354.216900px;}
.y13a{bottom:360.316500px;}
.y2f{bottom:361.392600px;}
.y8d{bottom:365.078700px;}
.y5f{bottom:365.078850px;}
.yc2{bottom:366.434100px;}
.y1e{bottom:369.212550px;}
.y10b{bottom:376.699950px;}
.yef{bottom:377.248350px;}
.y139{bottom:379.946400px;}
.yc1{bottom:384.958500px;}
.y8c{bottom:386.078700px;}
.y5e{bottom:386.078850px;}
.y1d{bottom:390.212550px;}
.y2e{bottom:396.400500px;}
.y10a{bottom:396.499950px;}
.y138{bottom:399.576300px;}
.yee{bottom:400.279800px;}
.yc0{bottom:403.482900px;}
.y8b{bottom:407.078700px;}
.y155{bottom:407.078850px;}
.y1c{bottom:411.212550px;}
.y2d{bottom:414.400500px;}
.y109{bottom:416.299950px;}
.y137{bottom:419.206350px;}
.y5d{bottom:420.513600px;}
.y152{bottom:421.441050px;}
.ybf{bottom:422.007300px;}
.yed{bottom:423.311400px;}
.y8a{bottom:428.078700px;}
.y154{bottom:428.078850px;}
.y1b{bottom:432.212550px;}
.y2c{bottom:432.400500px;}
.y108{bottom:436.099950px;}
.y136{bottom:438.836250px;}
.ybe{bottom:440.531700px;}
.yec{bottom:446.342850px;}
.y89{bottom:449.078700px;}
.y153{bottom:449.078850px;}
.y2b{bottom:450.400500px;}
.y5c{bottom:452.811150px;}
.y107{bottom:455.899950px;}
.y135{bottom:458.466150px;}
.ybd{bottom:459.056100px;}
.y1a{bottom:467.308200px;}
.yeb{bottom:469.374300px;}
.y88{bottom:470.078700px;}
.y151{bottom:470.078850px;}
.ybc{bottom:477.580500px;}
.y134{bottom:478.096050px;}
.y106{bottom:478.584750px;}
.y87{bottom:491.078700px;}
.y150{bottom:491.078850px;}
.yea{bottom:492.405900px;}
.ybb{bottom:496.104900px;}
.y133{bottom:497.725950px;}
.y105{bottom:498.384750px;}
.y86{bottom:512.078700px;}
.y5b{bottom:512.078850px;}
.yba{bottom:514.629300px;}
.ye9{bottom:515.437350px;}
.y132{bottom:517.355850px;}
.y14f{bottom:517.529400px;}
.y104{bottom:518.184750px;}
.y131{bottom:521.985750px;}
.y19{bottom:530.827950px;}
.y85{bottom:533.078700px;}
.y5a{bottom:533.078850px;}
.yb9{bottom:533.153850px;}
.y130{bottom:536.985750px;}
.y103{bottom:537.984750px;}
.ye8{bottom:538.468800px;}
.yb8{bottom:551.678250px;}
.y84{bottom:554.078700px;}
.y59{bottom:554.078850px;}
.y12f{bottom:556.615800px;}
.y102{bottom:557.784600px;}
.ye7{bottom:561.500400px;}
.yb7{bottom:570.202650px;}
.y18{bottom:571.887750px;}
.y83{bottom:575.078700px;}
.y58{bottom:575.078850px;}
.y12e{bottom:576.245700px;}
.y101{bottom:577.584750px;}
.y12d{bottom:580.875600px;}
.ye6{bottom:584.531850px;}
.yb6{bottom:588.727050px;}
.y17{bottom:591.687750px;}
.y12c{bottom:595.875600px;}
.y82{bottom:596.078700px;}
.y57{bottom:596.078850px;}
.y14e{bottom:601.529400px;}
.yb5{bottom:607.251450px;}
.ye5{bottom:607.563300px;}
.y16{bottom:611.487750px;}
.y12b{bottom:615.505500px;}
.y81{bottom:617.078700px;}
.y56{bottom:617.078850px;}
.yb4{bottom:625.775850px;}
.ye4{bottom:630.594750px;}
.y15{bottom:631.287750px;}
.y80{bottom:638.078700px;}
.y55{bottom:638.078850px;}
.y125{bottom:643.842000px;}
.yb3{bottom:644.300250px;}
.y12a{bottom:645.987450px;}
.y14{bottom:651.087750px;}
.y157{bottom:651.513600px;}
.ye3{bottom:653.626350px;}
.y7f{bottom:659.078700px;}
.y54{bottom:659.078850px;}
.yb2{bottom:662.824650px;}
.y129{bottom:665.787450px;}
.y124{bottom:667.898550px;}
.y13{bottom:670.887750px;}
.ye2{bottom:676.657800px;}
.yff{bottom:680.078700px;}
.y53{bottom:680.078850px;}
.yb1{bottom:681.349050px;}
.y156{bottom:683.811150px;}
.y123{bottom:687.953700px;}
.y12{bottom:690.687750px;}
.y7e{bottom:694.440900px;}
.ye1{bottom:699.689250px;}
.yb0{bottom:699.873450px;}
.yfe{bottom:701.078700px;}
.y52{bottom:701.078850px;}
.y14d{bottom:706.529400px;}
.y122{bottom:708.008850px;}
.y11{bottom:710.487750px;}
.yaf{bottom:718.397850px;}
.yfd{bottom:722.078700px;}
.y51{bottom:722.078850px;}
.ye0{bottom:722.720700px;}
.y121{bottom:728.064000px;}
.y10{bottom:730.287750px;}
.yae{bottom:736.922250px;}
.y7d{bottom:743.078700px;}
.y50{bottom:743.078850px;}
.ydf{bottom:745.752300px;}
.y120{bottom:748.119150px;}
.yf{bottom:750.087750px;}
.yad{bottom:755.446650px;}
.y7c{bottom:764.078700px;}
.y4f{bottom:764.078850px;}
.y11f{bottom:768.174150px;}
.yde{bottom:768.783750px;}
.yac{bottom:773.971050px;}
.ye{bottom:781.185300px;}
.y7b{bottom:785.078700px;}
.y4e{bottom:785.078850px;}
.y11e{bottom:788.229300px;}
.ydd{bottom:791.815200px;}
.yab{bottom:792.495450px;}
.y7a{bottom:806.078700px;}
.y4d{bottom:806.078850px;}
.y11d{bottom:808.284450px;}
.yaa{bottom:811.019850px;}
.y14c{bottom:811.529250px;}
.ydc{bottom:814.846800px;}
.y79{bottom:827.078700px;}
.y4c{bottom:827.078850px;}
.y10e{bottom:827.581650px;}
.y11c{bottom:828.339600px;}
.ya9{bottom:829.544250px;}
.ydb{bottom:837.878250px;}
.y10d{bottom:847.381650px;}
.ya8{bottom:848.068800px;}
.y78{bottom:848.078700px;}
.y4b{bottom:848.078850px;}
.y11b{bottom:848.394600px;}
.y8{bottom:860.466750px;}
.yda{bottom:860.909700px;}
.ya7{bottom:866.593200px;}
.y10c{bottom:867.181800px;}
.y11a{bottom:868.449900px;}
.y77{bottom:869.078700px;}
.y4a{bottom:869.078850px;}
.y14b{bottom:874.529250px;}
.y7{bottom:878.466750px;}
.yd9{bottom:883.941300px;}
.ya6{bottom:885.117600px;}
.y119{bottom:888.504900px;}
.y76{bottom:890.078700px;}
.y49{bottom:890.078850px;}
.ya5{bottom:903.642000px;}
.yd8{bottom:906.972750px;}
.y118{bottom:908.560050px;}
.y75{bottom:911.078700px;}
.y48{bottom:911.078850px;}
.y6{bottom:913.474800px;}
.ya4{bottom:922.166400px;}
.y117{bottom:928.615200px;}
.yd7{bottom:930.004200px;}
.y74{bottom:932.078700px;}
.y47{bottom:932.078850px;}
.y14a{bottom:937.529250px;}
.ya3{bottom:940.690800px;}
.y116{bottom:948.670200px;}
.y5{bottom:950.282550px;}
.yd6{bottom:953.035800px;}
.y73{bottom:953.078700px;}
.y46{bottom:953.078850px;}
.ya2{bottom:959.215200px;}
.y115{bottom:968.725500px;}
.y72{bottom:974.078700px;}
.y45{bottom:974.078850px;}
.yd5{bottom:976.067250px;}
.ya1{bottom:977.739600px;}
.y4{bottom:983.282550px;}
.y114{bottom:988.780500px;}
.y71{bottom:995.078700px;}
.y44{bottom:995.078850px;}
.ya0{bottom:996.264000px;}
.yd4{bottom:999.098850px;}
.y149{bottom:1000.937100px;}
.y113{bottom:1008.835650px;}
.y9f{bottom:1014.788400px;}
.y70{bottom:1016.078700px;}
.y43{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yd3{bottom:1022.130300px;}
.y112{bottom:1028.890800px;}
.y148{bottom:1030.441050px;}
.y9e{bottom:1033.312800px;}
.y6f{bottom:1037.078700px;}
.y42{bottom:1037.078850px;}
.yd2{bottom:1045.161750px;}
.y111{bottom:1048.945800px;}
.y2{bottom:1049.282550px;}
.y9d{bottom:1051.837350px;}
.y6e{bottom:1058.078700px;}
.y41{bottom:1058.078850px;}
.yd1{bottom:1068.150750px;}
.y110{bottom:1069.001100px;}
.y9c{bottom:1070.361600px;}
.yd0{bottom:1078.475850px;}
.y6d{bottom:1079.078700px;}
.y40{bottom:1079.078850px;}
.y9b{bottom:1079.581350px;}
.yfc{bottom:1092.029250px;}
.y10f{bottom:1099.482900px;}
.y3f{bottom:1100.078850px;}
.yd{bottom:1109.815500px;}
.y147{bottom:1111.570800px;}
.y6c{bottom:1112.695800px;}
.y9a{bottom:1119.282900px;}
.y3e{bottom:1121.078850px;}
.yfb{bottom:1124.326650px;}
.y3a{bottom:1155.615300px;}
.y39{bottom:1175.115300px;}
.y3d{bottom:1178.691750px;}
.h6{height:34.446094px;}
.h15{height:36.492188px;}
.h2{height:38.039062px;}
.h13{height:38.226562px;}
.h10{height:38.273438px;}
.h5{height:38.531250px;}
.h14{height:39.000000px;}
.h17{height:39.005937px;}
.hf{height:42.793945px;}
.h7{height:43.004883px;}
.he{height:43.057617px;}
.ha{height:43.321289px;}
.h9{height:43.875000px;}
.h8{height:45.615234px;}
.hd{height:48.134766px;}
.hc{height:48.750000px;}
.h11{height:50.176758px;}
.h4{height:53.625000px;}
.hb{height:54.738281px;}
.h12{height:75.105562px;}
.h16{height:79.527562px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xc{left:108.286950px;}
.xf{left:112.251900px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.x10{left:219.935400px;}
.xd{left:245.447250px;}
.x4{left:300.189000px;}
.x13{left:304.440900px;}
.x5{left:317.196900px;}
.x16{left:363.968400px;}
.x3{left:396.050700px;}
.x15{left:398.728500px;}
.x14{left:402.236250px;}
.x12{left:436.996200px;}
.x11{left:586.876500px;}
.xe{left:631.522200px;}
.xa{left:649.641600px;}
.x9{left:670.366200px;}
.x1{left:801.350850px;}
@media print{
.v7{vertical-align:-17.760000pt;}
.v9{vertical-align:-15.984000pt;}
.v5{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.208000pt;}
.v8{vertical-align:15.984533pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v3{vertical-align:32.781333pt;}
.v6{vertical-align:36.712000pt;}
.ls39{letter-spacing:-1.066667pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls3d{letter-spacing:-0.853333pt;}
.ls3c{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.746667pt;}
.ls7{letter-spacing:-0.614400pt;}
.ls18{letter-spacing:-0.597333pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls3e{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:-0.362667pt;}
.lsb{letter-spacing:-0.310933pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.005333pt;}
.ls1{letter-spacing:0.010667pt;}
.ls4{letter-spacing:0.022933pt;}
.ls40{letter-spacing:0.213333pt;}
.ls3f{letter-spacing:0.480000pt;}
.ls3{letter-spacing:2.706667pt;}
.ls2{letter-spacing:4.786667pt;}
.ls3b{letter-spacing:12.842133pt;}
.ls0{letter-spacing:38.383435pt;}
.ls13{letter-spacing:244.430891pt;}
.ls14{letter-spacing:244.441024pt;}
.ls12{letter-spacing:245.899157pt;}
.lsc{letter-spacing:268.117824pt;}
.ls24{letter-spacing:270.090091pt;}
.ls1c{letter-spacing:270.100757pt;}
.ls26{letter-spacing:274.028224pt;}
.lse{letter-spacing:274.795157pt;}
.ls2c{letter-spacing:277.476224pt;}
.lsf{letter-spacing:279.295424pt;}
.ls25{letter-spacing:283.079957pt;}
.ls19{letter-spacing:283.694357pt;}
.ls1b{letter-spacing:294.882091pt;}
.ls22{letter-spacing:295.517291pt;}
.ls1a{letter-spacing:295.527957pt;}
.ls20{letter-spacing:297.361024pt;}
.ls31{letter-spacing:297.371691pt;}
.ls27{letter-spacing:297.392491pt;}
.ls29{letter-spacing:297.590357pt;}
.ls2a{letter-spacing:297.601024pt;}
.ls36{letter-spacing:298.829824pt;}
.lsd{letter-spacing:301.763691pt;}
.ls15{letter-spacing:303.316224pt;}
.ls30{letter-spacing:306.871424pt;}
.ls10{letter-spacing:308.107691pt;}
.ls1f{letter-spacing:309.350891pt;}
.ls2b{letter-spacing:309.580224pt;}
.ls1e{letter-spacing:309.829824pt;}
.ls1d{letter-spacing:309.840491pt;}
.ls23{letter-spacing:311.715157pt;}
.ls17{letter-spacing:312.357291pt;}
.ls28{letter-spacing:312.975957pt;}
.ls32{letter-spacing:316.069824pt;}
.ls11{letter-spacing:318.795157pt;}
.ls2d{letter-spacing:321.330091pt;}
.ls21{letter-spacing:324.194624pt;}
.ls35{letter-spacing:326.496491pt;}
.ls16{letter-spacing:327.274624pt;}
.ls2f{letter-spacing:327.652757pt;}
.ls38{letter-spacing:328.663424pt;}
.ls2e{letter-spacing:328.882091pt;}
.ls37{letter-spacing:338.486357pt;}
.ls33{letter-spacing:340.642624pt;}
.ls34{letter-spacing:350.454891pt;}
.ws6{word-spacing:-15.936000pt;}
.wsaa{word-spacing:-14.608000pt;}
.ws3{word-spacing:-13.280000pt;}
.wsa8{word-spacing:-13.226667pt;}
.ws7{word-spacing:-13.066667pt;}
.wsab{word-spacing:-12.746667pt;}
.wsac{word-spacing:-12.693333pt;}
.ws132{word-spacing:-12.384000pt;}
.ws2e{word-spacing:-12.320000pt;}
.ws111{word-spacing:-12.106667pt;}
.wsa9{word-spacing:-12.000000pt;}
.wsd8{word-spacing:-11.952000pt;}
.wsbf{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.760000pt;}
.ws4{word-spacing:-10.800000pt;}
.ws9{word-spacing:-10.704000pt;}
.ws6f{word-spacing:-10.581333pt;}
.ws8{word-spacing:-10.464000pt;}
.wsfc{word-spacing:-10.154667pt;}
.ws1{word-spacing:-9.685333pt;}
.ws2d{word-spacing:-9.600000pt;}
.wsa{word-spacing:-9.301333pt;}
.ws0{word-spacing:-8.482261pt;}
.ws2{word-spacing:-8.371200pt;}
.ws4b{word-spacing:-7.711147pt;}
.ws2f{word-spacing:-7.400213pt;}
.ws10c{word-spacing:-7.306667pt;}
.wsbe{word-spacing:-6.940032pt;}
.ws84{word-spacing:-6.168917pt;}
.ws13f{word-spacing:-5.376000pt;}
.ws10a{word-spacing:-4.426667pt;}
.ws15a{word-spacing:-4.320000pt;}
.wsdf{word-spacing:-3.520000pt;}
.ws15f{word-spacing:-3.456000pt;}
.ws160{word-spacing:-3.408000pt;}
.wscb{word-spacing:-3.120000pt;}
.wsbd{word-spacing:-2.826667pt;}
.ws13d{word-spacing:-2.736000pt;}
.wsc0{word-spacing:-2.613333pt;}
.ws24{word-spacing:-2.506667pt;}
.wsf0{word-spacing:-2.400000pt;}
.ws60{word-spacing:-2.346667pt;}
.ws147{word-spacing:-2.304000pt;}
.ws3e{word-spacing:-2.293333pt;}
.wsde{word-spacing:-2.240000pt;}
.ws168{word-spacing:-2.160000pt;}
.ws3f{word-spacing:-2.133333pt;}
.ws169{word-spacing:-2.112000pt;}
.ws38{word-spacing:-2.080000pt;}
.ws22{word-spacing:-2.026667pt;}
.ws10b{word-spacing:-1.973333pt;}
.ws113{word-spacing:-1.920000pt;}
.wsca{word-spacing:-1.872000pt;}
.ws5f{word-spacing:-1.866667pt;}
.ws149{word-spacing:-1.824000pt;}
.ws25{word-spacing:-1.813333pt;}
.ws27{word-spacing:-1.760000pt;}
.ws42{word-spacing:-1.706667pt;}
.ws3a{word-spacing:-1.546667pt;}
.ws18{word-spacing:-1.536000pt;}
.wscd{word-spacing:-1.493333pt;}
.ws19{word-spacing:-1.488000pt;}
.ws33{word-spacing:-1.440000pt;}
.ws14a{word-spacing:-1.392000pt;}
.wsc2{word-spacing:-1.386667pt;}
.ws144{word-spacing:-1.344000pt;}
.wsf7{word-spacing:-1.296000pt;}
.ws13b{word-spacing:-1.248000pt;}
.ws50{word-spacing:-1.226667pt;}
.wsd{word-spacing:-1.114667pt;}
.ws15d{word-spacing:-1.104000pt;}
.wsce{word-spacing:-1.066667pt;}
.ws43{word-spacing:-1.013333pt;}
.ws1d{word-spacing:-0.960000pt;}
.ws129{word-spacing:-0.912000pt;}
.ws10d{word-spacing:-0.800000pt;}
.ws12f{word-spacing:-0.768000pt;}
.ws14f{word-spacing:-0.720000pt;}
.wsae{word-spacing:-0.693333pt;}
.ws145{word-spacing:-0.624000pt;}
.ws36{word-spacing:-0.586667pt;}
.ws130{word-spacing:-0.576000pt;}
.ws4d{word-spacing:-0.533333pt;}
.ws159{word-spacing:-0.480000pt;}
.ws121{word-spacing:-0.373333pt;}
.ws16d{word-spacing:-0.288000pt;}
.ws45{word-spacing:-0.266667pt;}
.wsd7{word-spacing:-0.240000pt;}
.ws112{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.192000pt;}
.wsba{word-spacing:-0.106667pt;}
.wsb{word-spacing:0.000000pt;}
.ws20{word-spacing:0.053333pt;}
.ws1f{word-spacing:0.106667pt;}
.ws167{word-spacing:0.192000pt;}
.wsbc{word-spacing:0.213333pt;}
.ws34{word-spacing:0.266667pt;}
.ws125{word-spacing:0.320000pt;}
.wsc{word-spacing:0.362667pt;}
.ws46{word-spacing:0.373333pt;}
.ws171{word-spacing:0.384000pt;}
.ws44{word-spacing:0.480000pt;}
.ws16f{word-spacing:0.528000pt;}
.ws40{word-spacing:0.533333pt;}
.ws5c{word-spacing:0.586667pt;}
.wsf{word-spacing:0.614400pt;}
.ws13c{word-spacing:0.624000pt;}
.ws54{word-spacing:0.640000pt;}
.ws2c{word-spacing:0.693333pt;}
.ws3b{word-spacing:0.746667pt;}
.ws41{word-spacing:0.800000pt;}
.ws158{word-spacing:0.816000pt;}
.wsb6{word-spacing:0.906667pt;}
.ws17{word-spacing:0.960000pt;}
.ws37{word-spacing:1.013333pt;}
.ws152{word-spacing:1.056000pt;}
.ws32{word-spacing:1.066667pt;}
.wsf4{word-spacing:1.104000pt;}
.wsf3{word-spacing:1.152000pt;}
.ws47{word-spacing:1.173333pt;}
.ws35{word-spacing:1.226667pt;}
.ws15c{word-spacing:1.248000pt;}
.ws2b{word-spacing:1.280000pt;}
.ws3c{word-spacing:1.440000pt;}
.wsf2{word-spacing:1.546667pt;}
.ws1a{word-spacing:1.584000pt;}
.ws165{word-spacing:1.632000pt;}
.ws4a{word-spacing:1.653333pt;}
.wsb9{word-spacing:1.706667pt;}
.ws2a{word-spacing:1.760000pt;}
.ws16a{word-spacing:1.824000pt;}
.ws162{word-spacing:1.872000pt;}
.ws39{word-spacing:1.973333pt;}
.ws16b{word-spacing:2.016000pt;}
.ws161{word-spacing:2.064000pt;}
.ws23{word-spacing:2.080000pt;}
.wscc{word-spacing:2.160000pt;}
.ws4e{word-spacing:2.186667pt;}
.wsb8{word-spacing:2.293333pt;}
.ws150{word-spacing:2.304000pt;}
.ws5d{word-spacing:2.346667pt;}
.ws15b{word-spacing:2.352000pt;}
.wsb7{word-spacing:2.453333pt;}
.ws118{word-spacing:2.506667pt;}
.ws173{word-spacing:2.640000pt;}
.ws5a{word-spacing:2.826667pt;}
.ws12d{word-spacing:2.832000pt;}
.ws26{word-spacing:2.933333pt;}
.ws55{word-spacing:3.040000pt;}
.ws48{word-spacing:3.093333pt;}
.ws16c{word-spacing:3.120000pt;}
.wsb1{word-spacing:3.146667pt;}
.wse1{word-spacing:3.216000pt;}
.wse0{word-spacing:3.264000pt;}
.ws10e{word-spacing:3.306667pt;}
.ws148{word-spacing:3.360000pt;}
.wsb3{word-spacing:3.413333pt;}
.wsdb{word-spacing:3.466667pt;}
.ws128{word-spacing:3.504000pt;}
.ws59{word-spacing:3.573333pt;}
.ws15{word-spacing:3.648000pt;}
.ws120{word-spacing:3.680000pt;}
.ws16{word-spacing:3.696000pt;}
.ws30{word-spacing:3.733333pt;}
.ws117{word-spacing:3.786667pt;}
.ws51{word-spacing:3.840000pt;}
.ws163{word-spacing:3.888000pt;}
.wsbb{word-spacing:3.893333pt;}
.wsf1{word-spacing:3.946667pt;}
.ws146{word-spacing:3.984000pt;}
.ws5e{word-spacing:4.000000pt;}
.wsdd{word-spacing:4.053333pt;}
.ws21{word-spacing:4.106667pt;}
.ws3d{word-spacing:4.160000pt;}
.wscf{word-spacing:4.213333pt;}
.ws126{word-spacing:4.224000pt;}
.ws11d{word-spacing:4.266667pt;}
.wsb4{word-spacing:4.320000pt;}
.ws135{word-spacing:4.416000pt;}
.wse2{word-spacing:4.464000pt;}
.ws31{word-spacing:4.640000pt;}
.ws142{word-spacing:4.656000pt;}
.wsdc{word-spacing:4.693333pt;}
.ws110{word-spacing:4.752000pt;}
.ws10f{word-spacing:4.800000pt;}
.wsf6{word-spacing:4.848000pt;}
.ws29{word-spacing:4.853333pt;}
.wsf5{word-spacing:4.896000pt;}
.ws28{word-spacing:4.906667pt;}
.ws143{word-spacing:4.944000pt;}
.ws136{word-spacing:5.040000pt;}
.ws115{word-spacing:5.066667pt;}
.ws58{word-spacing:5.120000pt;}
.wsd6{word-spacing:5.184000pt;}
.ws133{word-spacing:5.232000pt;}
.ws123{word-spacing:5.280000pt;}
.ws119{word-spacing:5.386667pt;}
.ws170{word-spacing:5.472000pt;}
.ws164{word-spacing:5.520000pt;}
.ws124{word-spacing:5.653333pt;}
.ws13{word-spacing:5.712000pt;}
.ws12{word-spacing:5.760000pt;}
.ws14{word-spacing:5.808000pt;}
.ws11c{word-spacing:5.813333pt;}
.wsc4{word-spacing:5.973333pt;}
.ws138{word-spacing:6.048000pt;}
.ws11e{word-spacing:6.080000pt;}
.wsad{word-spacing:6.133333pt;}
.ws137{word-spacing:6.144000pt;}
.ws11b{word-spacing:6.186667pt;}
.ws116{word-spacing:6.240000pt;}
.wsc1{word-spacing:6.400000pt;}
.ws14e{word-spacing:6.480000pt;}
.ws114{word-spacing:6.560000pt;}
.ws57{word-spacing:6.613333pt;}
.ws1e{word-spacing:6.666667pt;}
.ws16e{word-spacing:6.768000pt;}
.ws108{word-spacing:6.880000pt;}
.ws11{word-spacing:6.960000pt;}
.ws4f{word-spacing:6.986667pt;}
.wsc5{word-spacing:7.040000pt;}
.ws49{word-spacing:7.093333pt;}
.wsc3{word-spacing:7.146667pt;}
.ws11f{word-spacing:7.253333pt;}
.ws127{word-spacing:7.488000pt;}
.ws134{word-spacing:7.584000pt;}
.ws56{word-spacing:7.626667pt;}
.ws122{word-spacing:7.680000pt;}
.wsc9{word-spacing:7.776000pt;}
.wsc8{word-spacing:7.824000pt;}
.ws12c{word-spacing:8.016000pt;}
.wsb2{word-spacing:8.266667pt;}
.wsc6{word-spacing:8.480000pt;}
.ws13e{word-spacing:8.544000pt;}
.ws1b{word-spacing:8.784000pt;}
.ws1c{word-spacing:8.880000pt;}
.ws109{word-spacing:8.906667pt;}
.ws141{word-spacing:8.928000pt;}
.ws175{word-spacing:9.120000pt;}
.ws53{word-spacing:9.280000pt;}
.wsc7{word-spacing:9.493333pt;}
.ws10{word-spacing:9.552000pt;}
.ws154{word-spacing:9.600000pt;}
.ws166{word-spacing:10.368000pt;}
.ws153{word-spacing:11.040000pt;}
.ws5b{word-spacing:11.360000pt;}
.ws151{word-spacing:11.616000pt;}
.ws13a{word-spacing:11.856000pt;}
.wsd3{word-spacing:11.946667pt;}
.ws52{word-spacing:12.693333pt;}
.wsd1{word-spacing:12.853333pt;}
.wsd0{word-spacing:12.960000pt;}
.wsb5{word-spacing:13.066667pt;}
.ws14d{word-spacing:13.632000pt;}
.wsee{word-spacing:13.760000pt;}
.wsef{word-spacing:13.813333pt;}
.ws156{word-spacing:14.112000pt;}
.ws155{word-spacing:14.256000pt;}
.ws12b{word-spacing:14.352000pt;}
.ws12e{word-spacing:14.688000pt;}
.ws157{word-spacing:14.736000pt;}
.ws15e{word-spacing:14.784000pt;}
.ws12a{word-spacing:15.408000pt;}
.ws140{word-spacing:15.552000pt;}
.ws14c{word-spacing:15.696000pt;}
.wsda{word-spacing:16.106667pt;}
.wsd9{word-spacing:16.266667pt;}
.ws172{word-spacing:16.752000pt;}
.ws139{word-spacing:17.280000pt;}
.wsd4{word-spacing:18.720000pt;}
.wsaf{word-spacing:18.773333pt;}
.ws131{word-spacing:18.864000pt;}
.wsd5{word-spacing:18.880000pt;}
.wsb0{word-spacing:19.520000pt;}
.ws4c{word-spacing:19.733333pt;}
.wsd2{word-spacing:20.213333pt;}
.ws11a{word-spacing:20.533333pt;}
.ws176{word-spacing:22.032000pt;}
.ws174{word-spacing:25.344000pt;}
.ws14b{word-spacing:35.328000pt;}
.wsf8{word-spacing:148.163200pt;}
.wse3{word-spacing:176.919467pt;}
.ws71{word-spacing:187.416533pt;}
.ws7c{word-spacing:204.853867pt;}
.ws74{word-spacing:206.798933pt;}
.ws76{word-spacing:206.873600pt;}
.ws63{word-spacing:206.896000pt;}
.ws72{word-spacing:211.509867pt;}
.ws77{word-spacing:211.520533pt;}
.ws79{word-spacing:212.188267pt;}
.ws78{word-spacing:212.587200pt;}
.ws64{word-spacing:214.416000pt;}
.ws83{word-spacing:214.426667pt;}
.ws6a{word-spacing:214.448000pt;}
.ws6b{word-spacing:214.458667pt;}
.ws7b{word-spacing:214.890667pt;}
.ws68{word-spacing:216.259733pt;}
.ws80{word-spacing:216.270400pt;}
.ws69{word-spacing:216.291733pt;}
.ws7e{word-spacing:217.375467pt;}
.ws82{word-spacing:217.398400pt;}
.ws75{word-spacing:217.440533pt;}
.ws81{word-spacing:217.473067pt;}
.ws66{word-spacing:221.066667pt;}
.ws65{word-spacing:221.077333pt;}
.ws6e{word-spacing:221.099200pt;}
.wsed{word-spacing:258.772267pt;}
.wse8{word-spacing:259.981333pt;}
.wseb{word-spacing:260.263467pt;}
.wse4{word-spacing:261.886933pt;}
.wse5{word-spacing:275.886933pt;}
.wsec{word-spacing:277.701333pt;}
.wse9{word-spacing:278.899200pt;}
.wse6{word-spacing:278.909867pt;}
.wse7{word-spacing:280.800533pt;}
.wsea{word-spacing:280.811200pt;}
.ws105{word-spacing:282.940800pt;}
.ws7f{word-spacing:283.489600pt;}
.ws67{word-spacing:286.898133pt;}
.ws6d{word-spacing:286.930667pt;}
.ws7a{word-spacing:287.555733pt;}
.ws6c{word-spacing:288.240000pt;}
.ws87{word-spacing:298.428267pt;}
.wsa6{word-spacing:310.723200pt;}
.ws102{word-spacing:314.408000pt;}
.ws92{word-spacing:314.482133pt;}
.ws8c{word-spacing:314.514133pt;}
.wsa0{word-spacing:314.957333pt;}
.ws89{word-spacing:315.161067pt;}
.wsa4{word-spacing:316.580800pt;}
.wsa5{word-spacing:316.623467pt;}
.ws88{word-spacing:318.014933pt;}
.ws101{word-spacing:318.113067pt;}
.wsfb{word-spacing:318.126933pt;}
.ws94{word-spacing:318.373867pt;}
.wsa3{word-spacing:318.733867pt;}
.wsa1{word-spacing:318.765867pt;}
.ws103{word-spacing:319.334933pt;}
.wsfd{word-spacing:319.337067pt;}
.wsa2{word-spacing:320.153600pt;}
.ws9d{word-spacing:320.313067pt;}
.wsfa{word-spacing:321.228267pt;}
.ws97{word-spacing:321.317867pt;}
.wsfe{word-spacing:321.832000pt;}
.ws9b{word-spacing:321.858667pt;}
.ws62{word-spacing:321.923733pt;}
.ws9e{word-spacing:322.076267pt;}
.ws91{word-spacing:322.285867pt;}
.wsa7{word-spacing:322.328533pt;}
.ws90{word-spacing:322.744533pt;}
.ws9c{word-spacing:322.797867pt;}
.ws98{word-spacing:322.808000pt;}
.ws106{word-spacing:323.040000pt;}
.ws107{word-spacing:323.056000pt;}
.ws8b{word-spacing:323.954667pt;}
.ws104{word-spacing:324.264000pt;}
.ws8f{word-spacing:324.556800pt;}
.ws96{word-spacing:324.567467pt;}
.ws8a{word-spacing:324.588800pt;}
.ws95{word-spacing:324.621333pt;}
.ws9a{word-spacing:324.839467pt;}
.ws99{word-spacing:324.850133pt;}
.ws8e{word-spacing:325.091200pt;}
.ws8d{word-spacing:325.123200pt;}
.ws100{word-spacing:326.155200pt;}
.ws93{word-spacing:327.432000pt;}
.wsf9{word-spacing:328.061333pt;}
.ws7d{word-spacing:335.804800pt;}
.ws9f{word-spacing:346.619200pt;}
.ws73{word-spacing:348.959467pt;}
.ws86{word-spacing:427.750400pt;}
.ws61{word-spacing:452.538133pt;}
.wsff{word-spacing:505.542933pt;}
.ws85{word-spacing:543.246933pt;}
.ws70{word-spacing:575.818133pt;}
._c{margin-left:-9.202133pt;}
._6{margin-left:-7.906133pt;}
._97{margin-left:-6.974400pt;}
._3{margin-left:-5.756267pt;}
._5{margin-left:-4.669333pt;}
._b{margin-left:-3.169067pt;}
._4{margin-left:-2.266667pt;}
._2{margin-left:-1.069867pt;}
._0{width:1.006400pt;}
._1{width:2.438933pt;}
._9{width:3.649067pt;}
._a{width:5.302933pt;}
._d{width:6.229333pt;}
._8{width:7.841067pt;}
._e{width:9.401600pt;}
._64{width:11.611680pt;}
._7{width:32.554667pt;}
._96{width:38.149867pt;}
._95{width:39.176000pt;}
._7a{width:46.488000pt;}
._7b{width:48.387200pt;}
._65{width:97.309333pt;}
._66{width:98.360000pt;}
._79{width:195.452800pt;}
._94{width:205.746133pt;}
._92{width:218.130133pt;}
._74{width:269.354133pt;}
._73{width:270.573867pt;}
._6d{width:272.465067pt;}
._17{width:279.372267pt;}
._2d{width:280.504533pt;}
._77{width:286.189867pt;}
._75{width:289.419200pt;}
._19{width:291.677333pt;}
._15{width:293.553067pt;}
._1c{width:298.070400pt;}
._13{width:300.754667pt;}
._2f{width:304.538133pt;}
._76{width:313.028267pt;}
._36{width:315.882667pt;}
._3c{width:327.771200pt;}
._89{width:331.822400pt;}
._90{width:334.845333pt;}
._93{width:337.624000pt;}
._78{width:338.602667pt;}
._42{width:344.918400pt;}
._8f{width:356.352533pt;}
._81{width:381.608000pt;}
._83{width:382.829867pt;}
._88{width:384.722667pt;}
._86{width:386.885867pt;}
._7f{width:389.664533pt;}
._7d{width:391.555733pt;}
._4d{width:393.059733pt;}
._72{width:423.292800pt;}
._87{width:428.036267pt;}
._57{width:435.901333pt;}
._6e{width:438.169600pt;}
._6b{width:443.758933pt;}
._4b{width:449.139200pt;}
._43{width:455.557867pt;}
._82{width:460.797333pt;}
._8b{width:464.530133pt;}
._4a{width:467.789333pt;}
._8a{width:469.564800pt;}
._67{width:482.669333pt;}
._6a{width:488.941333pt;}
._71{width:489.852800pt;}
._69{width:491.929600pt;}
._44{width:497.277333pt;}
._62{width:499.235200pt;}
._59{width:500.689600pt;}
._8e{width:501.885333pt;}
._6c{width:506.478933pt;}
._85{width:507.773333pt;}
._84{width:510.274133pt;}
._68{width:517.565333pt;}
._55{width:524.966933pt;}
._8c{width:527.250133pt;}
._6f{width:530.737600pt;}
._7e{width:542.055467pt;}
._7c{width:544.260267pt;}
._91{width:547.794667pt;}
._53{width:550.527467pt;}
._28{width:552.392000pt;}
._70{width:554.279467pt;}
._4c{width:555.421867pt;}
._5b{width:573.597867pt;}
._8d{width:576.956800pt;}
._5a{width:582.054933pt;}
._50{width:591.241067pt;}
._80{width:593.625600pt;}
._54{width:597.083733pt;}
._45{width:600.179200pt;}
._51{width:602.466133pt;}
._60{width:609.360000pt;}
._5e{width:616.355200pt;}
._40{width:621.588800pt;}
._4e{width:623.678400pt;}
._46{width:624.672000pt;}
._52{width:630.981333pt;}
._63{width:633.661333pt;}
._47{width:634.695467pt;}
._4f{width:639.454400pt;}
._5f{width:655.672000pt;}
._2b{width:656.787200pt;}
._58{width:661.831467pt;}
._2a{width:666.326933pt;}
._3d{width:668.698667pt;}
._48{width:671.142933pt;}
._1d{width:673.018133pt;}
._61{width:685.826667pt;}
._49{width:696.017600pt;}
._31{width:709.227200pt;}
._33{width:714.795733pt;}
._29{width:718.229333pt;}
._34{width:719.997867pt;}
._56{width:726.323733pt;}
._f{width:727.415467pt;}
._5c{width:749.933333pt;}
._26{width:753.565333pt;}
._1b{width:756.721067pt;}
._41{width:758.734933pt;}
._32{width:761.061867pt;}
._14{width:765.604800pt;}
._18{width:768.922133pt;}
._5d{width:774.232000pt;}
._20{width:777.019200pt;}
._21{width:779.935467pt;}
._2c{width:782.976533pt;}
._10{width:785.224000pt;}
._12{width:791.384533pt;}
._25{width:792.687467pt;}
._1f{width:795.899200pt;}
._1e{width:797.508800pt;}
._23{width:799.599467pt;}
._3b{width:802.672533pt;}
._3f{width:803.728000pt;}
._2e{width:804.678400pt;}
._39{width:809.430400pt;}
._38{width:817.104000pt;}
._1a{width:824.880533pt;}
._3a{width:840.592000pt;}
._27{width:843.157333pt;}
._16{width:845.061867pt;}
._24{width:858.917867pt;}
._22{width:860.035200pt;}
._37{width:890.138667pt;}
._35{width:905.530667pt;}
._30{width:911.900800pt;}
._3e{width:916.219733pt;}
._11{width:959.107733pt;}
.fsa{font-size:24.874667pt;}
.fsb{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fsc{font-size:42.673162pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3b{bottom:63.299600pt;}
.y3c{bottom:66.698800pt;}
.y99{bottom:100.514400pt;}
.y6b{bottom:100.514533pt;}
.y2a{bottom:104.188933pt;}
.yc{bottom:104.778267pt;}
.y128{bottom:107.111867pt;}
.y146{bottom:107.149600pt;}
.ycf{bottom:107.422000pt;}
.yfa{bottom:107.900933pt;}
.yb{bottom:117.578267pt;}
.y98{bottom:119.181067pt;}
.y6a{bottom:119.181200pt;}
.y29{bottom:122.855600pt;}
.y127{bottom:124.711867pt;}
.yce{bottom:128.125467pt;}
.y145{bottom:128.344400pt;}
.ya{bottom:130.378267pt;}
.yf9{bottom:130.607467pt;}
.y97{bottom:137.847733pt;}
.y69{bottom:137.847867pt;}
.y28{bottom:141.522267pt;}
.y126{bottom:142.311867pt;}
.y9{bottom:143.178267pt;}
.ycd{bottom:144.591600pt;}
.y144{bottom:145.793200pt;}
.yf8{bottom:151.079867pt;}
.y96{bottom:156.514400pt;}
.y68{bottom:156.514533pt;}
.y27{bottom:160.188933pt;}
.ycc{bottom:161.057733pt;}
.y143{bottom:163.242000pt;}
.yf7{bottom:171.552267pt;}
.y95{bottom:175.181067pt;}
.y67{bottom:175.181200pt;}
.y38{bottom:177.237867pt;}
.ycb{bottom:177.523867pt;}
.y26{bottom:178.855600pt;}
.y142{bottom:180.690800pt;}
.yf6{bottom:192.024800pt;}
.y37{bottom:193.237867pt;}
.y94{bottom:193.847733pt;}
.y66{bottom:193.847867pt;}
.yca{bottom:193.990133pt;}
.y25{bottom:197.522267pt;}
.y141{bottom:198.139600pt;}
.y36{bottom:209.237867pt;}
.yc9{bottom:210.456267pt;}
.yf5{bottom:212.497200pt;}
.y93{bottom:212.514400pt;}
.y65{bottom:212.514533pt;}
.y140{bottom:215.588400pt;}
.y24{bottom:216.188933pt;}
.y35{bottom:225.237867pt;}
.yc8{bottom:226.922400pt;}
.y92{bottom:231.181067pt;}
.y64{bottom:231.181200pt;}
.yf4{bottom:232.969600pt;}
.y13f{bottom:233.037333pt;}
.y23{bottom:234.855600pt;}
.y34{bottom:241.237867pt;}
.yc7{bottom:243.388533pt;}
.y91{bottom:249.847733pt;}
.y63{bottom:249.847867pt;}
.y13e{bottom:250.486133pt;}
.yf3{bottom:253.442133pt;}
.y22{bottom:253.522267pt;}
.y33{bottom:257.237867pt;}
.yc6{bottom:259.854667pt;}
.y13d{bottom:267.934933pt;}
.y90{bottom:268.514400pt;}
.y62{bottom:268.514533pt;}
.y21{bottom:272.188933pt;}
.y32{bottom:273.237867pt;}
.yf2{bottom:273.914533pt;}
.yc5{bottom:276.320800pt;}
.y100{bottom:281.280800pt;}
.y13c{bottom:285.383733pt;}
.y8f{bottom:287.181067pt;}
.y61{bottom:287.181200pt;}
.y31{bottom:289.237867pt;}
.y20{bottom:290.855600pt;}
.yc4{bottom:292.786933pt;}
.yf1{bottom:294.387067pt;}
.y13b{bottom:302.832533pt;}
.y30{bottom:305.237867pt;}
.y8e{bottom:305.847733pt;}
.y60{bottom:305.847867pt;}
.yc3{bottom:309.253067pt;}
.y1f{bottom:309.522267pt;}
.yf0{bottom:314.859467pt;}
.y13a{bottom:320.281333pt;}
.y2f{bottom:321.237867pt;}
.y8d{bottom:324.514400pt;}
.y5f{bottom:324.514533pt;}
.yc2{bottom:325.719200pt;}
.y1e{bottom:328.188933pt;}
.y10b{bottom:334.844400pt;}
.yef{bottom:335.331867pt;}
.y139{bottom:337.730133pt;}
.yc1{bottom:342.185333pt;}
.y8c{bottom:343.181067pt;}
.y5e{bottom:343.181200pt;}
.y1d{bottom:346.855600pt;}
.y2e{bottom:352.356000pt;}
.y10a{bottom:352.444400pt;}
.y138{bottom:355.178933pt;}
.yee{bottom:355.804267pt;}
.yc0{bottom:358.651467pt;}
.y8b{bottom:361.847733pt;}
.y155{bottom:361.847867pt;}
.y1c{bottom:365.522267pt;}
.y2d{bottom:368.356000pt;}
.y109{bottom:370.044400pt;}
.y137{bottom:372.627867pt;}
.y5d{bottom:373.789867pt;}
.y152{bottom:374.614267pt;}
.ybf{bottom:375.117600pt;}
.yed{bottom:376.276800pt;}
.y8a{bottom:380.514400pt;}
.y154{bottom:380.514533pt;}
.y1b{bottom:384.188933pt;}
.y2c{bottom:384.356000pt;}
.y108{bottom:387.644400pt;}
.y136{bottom:390.076667pt;}
.ybe{bottom:391.583733pt;}
.yec{bottom:396.749200pt;}
.y89{bottom:399.181067pt;}
.y153{bottom:399.181200pt;}
.y2b{bottom:400.356000pt;}
.y5c{bottom:402.498800pt;}
.y107{bottom:405.244400pt;}
.y135{bottom:407.525467pt;}
.ybd{bottom:408.049867pt;}
.y1a{bottom:415.385067pt;}
.yeb{bottom:417.221600pt;}
.y88{bottom:417.847733pt;}
.y151{bottom:417.847867pt;}
.ybc{bottom:424.516000pt;}
.y134{bottom:424.974267pt;}
.y106{bottom:425.408667pt;}
.y87{bottom:436.514400pt;}
.y150{bottom:436.514533pt;}
.yea{bottom:437.694133pt;}
.ybb{bottom:440.982133pt;}
.y133{bottom:442.423067pt;}
.y105{bottom:443.008667pt;}
.y86{bottom:455.181067pt;}
.y5b{bottom:455.181200pt;}
.yba{bottom:457.448267pt;}
.ye9{bottom:458.166533pt;}
.y132{bottom:459.871867pt;}
.y14f{bottom:460.026133pt;}
.y104{bottom:460.608667pt;}
.y131{bottom:463.987333pt;}
.y19{bottom:471.847067pt;}
.y85{bottom:473.847733pt;}
.y5a{bottom:473.847867pt;}
.yb9{bottom:473.914533pt;}
.y130{bottom:477.320667pt;}
.y103{bottom:478.208667pt;}
.ye8{bottom:478.638933pt;}
.yb8{bottom:490.380667pt;}
.y84{bottom:492.514400pt;}
.y59{bottom:492.514533pt;}
.y12f{bottom:494.769600pt;}
.y102{bottom:495.808533pt;}
.ye7{bottom:499.111467pt;}
.yb7{bottom:506.846800pt;}
.y18{bottom:508.344667pt;}
.y83{bottom:511.181067pt;}
.y58{bottom:511.181200pt;}
.y12e{bottom:512.218400pt;}
.y101{bottom:513.408667pt;}
.y12d{bottom:516.333867pt;}
.ye6{bottom:519.583867pt;}
.yb6{bottom:523.312933pt;}
.y17{bottom:525.944667pt;}
.y12c{bottom:529.667200pt;}
.y82{bottom:529.847733pt;}
.y57{bottom:529.847867pt;}
.y14e{bottom:534.692800pt;}
.yb5{bottom:539.779067pt;}
.ye5{bottom:540.056267pt;}
.y16{bottom:543.544667pt;}
.y12b{bottom:547.116000pt;}
.y81{bottom:548.514400pt;}
.y56{bottom:548.514533pt;}
.yb4{bottom:556.245200pt;}
.ye4{bottom:560.528667pt;}
.y15{bottom:561.144667pt;}
.y80{bottom:567.181067pt;}
.y55{bottom:567.181200pt;}
.y125{bottom:572.304000pt;}
.yb3{bottom:572.711333pt;}
.y12a{bottom:574.211067pt;}
.y14{bottom:578.744667pt;}
.y157{bottom:579.123200pt;}
.ye3{bottom:581.001200pt;}
.y7f{bottom:585.847733pt;}
.y54{bottom:585.847867pt;}
.yb2{bottom:589.177467pt;}
.y129{bottom:591.811067pt;}
.y124{bottom:593.687600pt;}
.y13{bottom:596.344667pt;}
.ye2{bottom:601.473600pt;}
.yff{bottom:604.514400pt;}
.y53{bottom:604.514533pt;}
.yb1{bottom:605.643600pt;}
.y156{bottom:607.832133pt;}
.y123{bottom:611.514400pt;}
.y12{bottom:613.944667pt;}
.y7e{bottom:617.280800pt;}
.ye1{bottom:621.946000pt;}
.yb0{bottom:622.109733pt;}
.yfe{bottom:623.181067pt;}
.y52{bottom:623.181200pt;}
.y14d{bottom:628.026133pt;}
.y122{bottom:629.341200pt;}
.y11{bottom:631.544667pt;}
.yaf{bottom:638.575867pt;}
.yfd{bottom:641.847733pt;}
.y51{bottom:641.847867pt;}
.ye0{bottom:642.418400pt;}
.y121{bottom:647.168000pt;}
.y10{bottom:649.144667pt;}
.yae{bottom:655.042000pt;}
.y7d{bottom:660.514400pt;}
.y50{bottom:660.514533pt;}
.ydf{bottom:662.890933pt;}
.y120{bottom:664.994800pt;}
.yf{bottom:666.744667pt;}
.yad{bottom:671.508133pt;}
.y7c{bottom:679.181067pt;}
.y4f{bottom:679.181200pt;}
.y11f{bottom:682.821467pt;}
.yde{bottom:683.363333pt;}
.yac{bottom:687.974267pt;}
.ye{bottom:694.386933pt;}
.y7b{bottom:697.847733pt;}
.y4e{bottom:697.847867pt;}
.y11e{bottom:700.648267pt;}
.ydd{bottom:703.835733pt;}
.yab{bottom:704.440400pt;}
.y7a{bottom:716.514400pt;}
.y4d{bottom:716.514533pt;}
.y11d{bottom:718.475067pt;}
.yaa{bottom:720.906533pt;}
.y14c{bottom:721.359333pt;}
.ydc{bottom:724.308267pt;}
.y79{bottom:735.181067pt;}
.y4c{bottom:735.181200pt;}
.y10e{bottom:735.628133pt;}
.y11c{bottom:736.301867pt;}
.ya9{bottom:737.372667pt;}
.ydb{bottom:744.780667pt;}
.y10d{bottom:753.228133pt;}
.ya8{bottom:753.838933pt;}
.y78{bottom:753.847733pt;}
.y4b{bottom:753.847867pt;}
.y11b{bottom:754.128533pt;}
.y8{bottom:764.859333pt;}
.yda{bottom:765.253067pt;}
.ya7{bottom:770.305067pt;}
.y10c{bottom:770.828267pt;}
.y11a{bottom:771.955467pt;}
.y77{bottom:772.514400pt;}
.y4a{bottom:772.514533pt;}
.y14b{bottom:777.359333pt;}
.y7{bottom:780.859333pt;}
.yd9{bottom:785.725600pt;}
.ya6{bottom:786.771200pt;}
.y119{bottom:789.782133pt;}
.y76{bottom:791.181067pt;}
.y49{bottom:791.181200pt;}
.ya5{bottom:803.237333pt;}
.yd8{bottom:806.198000pt;}
.y118{bottom:807.608933pt;}
.y75{bottom:809.847733pt;}
.y48{bottom:809.847867pt;}
.y6{bottom:811.977600pt;}
.ya4{bottom:819.703467pt;}
.y117{bottom:825.435733pt;}
.yd7{bottom:826.670400pt;}
.y74{bottom:828.514400pt;}
.y47{bottom:828.514533pt;}
.y14a{bottom:833.359333pt;}
.ya3{bottom:836.169600pt;}
.y116{bottom:843.262400pt;}
.y5{bottom:844.695600pt;}
.yd6{bottom:847.142933pt;}
.y73{bottom:847.181067pt;}
.y46{bottom:847.181200pt;}
.ya2{bottom:852.635733pt;}
.y115{bottom:861.089333pt;}
.y72{bottom:865.847733pt;}
.y45{bottom:865.847867pt;}
.yd5{bottom:867.615333pt;}
.ya1{bottom:869.101867pt;}
.y4{bottom:874.028933pt;}
.y114{bottom:878.916000pt;}
.y71{bottom:884.514400pt;}
.y44{bottom:884.514533pt;}
.ya0{bottom:885.568000pt;}
.yd4{bottom:888.087867pt;}
.y149{bottom:889.721867pt;}
.y113{bottom:896.742800pt;}
.y9f{bottom:902.034133pt;}
.y70{bottom:903.181067pt;}
.y43{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yd3{bottom:908.560267pt;}
.y112{bottom:914.569600pt;}
.y148{bottom:915.947600pt;}
.y9e{bottom:918.500267pt;}
.y6f{bottom:921.847733pt;}
.y42{bottom:921.847867pt;}
.yd2{bottom:929.032667pt;}
.y111{bottom:932.396267pt;}
.y2{bottom:932.695600pt;}
.y9d{bottom:934.966533pt;}
.y6e{bottom:940.514400pt;}
.y41{bottom:940.514533pt;}
.yd1{bottom:949.467333pt;}
.y110{bottom:950.223200pt;}
.y9c{bottom:951.432533pt;}
.yd0{bottom:958.645200pt;}
.y6d{bottom:959.181067pt;}
.y40{bottom:959.181200pt;}
.y9b{bottom:959.627867pt;}
.yfc{bottom:970.692667pt;}
.y10f{bottom:977.318133pt;}
.y3f{bottom:977.847867pt;}
.yd{bottom:986.502667pt;}
.y147{bottom:988.062933pt;}
.y6c{bottom:989.062933pt;}
.y9a{bottom:994.918133pt;}
.y3e{bottom:996.514533pt;}
.yfb{bottom:999.401467pt;}
.y3a{bottom:1027.213600pt;}
.y39{bottom:1044.546933pt;}
.y3d{bottom:1047.726000pt;}
.h6{height:30.618750pt;}
.h15{height:32.437500pt;}
.h2{height:33.812500pt;}
.h13{height:33.979167pt;}
.h10{height:34.020833pt;}
.h5{height:34.250000pt;}
.h14{height:34.666667pt;}
.h17{height:34.671944pt;}
.hf{height:38.039062pt;}
.h7{height:38.226562pt;}
.he{height:38.273438pt;}
.ha{height:38.507812pt;}
.h9{height:39.000000pt;}
.h8{height:40.546875pt;}
.hd{height:42.786458pt;}
.hc{height:43.333333pt;}
.h11{height:44.601562pt;}
.h4{height:47.666667pt;}
.hb{height:48.656250pt;}
.h12{height:66.760500pt;}
.h16{height:70.691167pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xc{left:96.255067pt;}
.xf{left:99.779467pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.x10{left:195.498133pt;}
.xd{left:218.175333pt;}
.x4{left:266.834667pt;}
.x13{left:270.614133pt;}
.x5{left:281.952800pt;}
.x16{left:323.527467pt;}
.x3{left:352.045067pt;}
.x15{left:354.425333pt;}
.x14{left:357.543333pt;}
.x12{left:388.441067pt;}
.x11{left:521.668000pt;}
.xe{left:561.353067pt;}
.xa{left:577.459200pt;}
.x9{left:595.881067pt;}
.x1{left:712.311867pt;}
}




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