
    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_6f9eb7827ec1a74c57d094e7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_adb0682dcc991459fd91b863.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_75702d9621930e871491e00b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_b1067b983e833a4410bfde03.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_79acae57be62bfbbd4fcc812.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_afa561a8ceb0af90e5deb51b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_abb563537058ad9080c80b9c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_1a3596ffda5a143ec411062e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_69b1cbe97f6a64cc9aef851e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.400000;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_86f69a6860c3953bfb70c6c7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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_1f8fad459104c749824f8055.woff')format("woff");}.ffb{font-family:ffb;line-height:1.051275;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_b80f708a9696eca2c1d478fa.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d134c80724c40dbb73bf4cee.woff')format("woff");}.ffd{font-family:ffd;line-height:1.400000;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_c8fed67161a10bec456a960a.woff')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_947369b45d8257f62353804d.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d35c1f679a8379c7f7eebc24.woff')format("woff");}.ff10{font-family:ff10;line-height:1.400000;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_23519ae2fb25cb2d419dbb7a.woff')format("woff");}.ff11{font-family:ff11;line-height:1.400000;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_ae2c5fb03eb181629e9aaf20.woff')format("woff");}.ff12{font-family:ff12;line-height:1.400000;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_1de84c96e57b603bcd5dfc16.woff')format("woff");}.ff13{font-family:ff13;line-height:1.400000;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_4e8247208f80869702f6925e.woff')format("woff");}.ff14{font-family:ff14;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e13fb8c83a5542569bb6bb7e.woff')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_adb0682dcc991459fd91b863.woff')format("woff");}.ff16{font-family:ff16;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_ebf5b3ad00a63db2180f9929.woff')format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_b4f8606b3e6b34dd6191370f.woff')format("woff");}.ff18{font-family:ff18;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_77afebe342ce958f1e6fd64e.woff')format("woff");}.ff19{font-family:ff19;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_7d600060c18020e2db83d994.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_ece85394c8123a6a2942ca01.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980600px;}
.v5{vertical-align:22.122000px;}
.v3{vertical-align:42.000000px;}
.v4{vertical-align:58.980000px;}
.v2{vertical-align:84.000000px;}
.ls12{letter-spacing:-4.260000px;}
.lsb{letter-spacing:-3.600000px;}
.ls6{letter-spacing:-3.455052px;}
.ls7{letter-spacing:-3.300000px;}
.ls9{letter-spacing:-2.880000px;}
.lsd{letter-spacing:-1.680000px;}
.ls1a{letter-spacing:-1.650000px;}
.ls14{letter-spacing:-1.560000px;}
.ls13{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.200000px;}
.ls16{letter-spacing:-0.858000px;}
.lsf{letter-spacing:-0.840000px;}
.ls10{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.660000px;}
.lse{letter-spacing:-0.600000px;}
.ls1d{letter-spacing:-0.480000px;}
.ls1e{letter-spacing:-0.420000px;}
.ls8{letter-spacing:-0.300000px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.000186px;}
.ls19{letter-spacing:0.264000px;}
.ls0{letter-spacing:0.428985px;}
.ls17{letter-spacing:0.792000px;}
.ls2{letter-spacing:1.200000px;}
.ls1b{letter-spacing:1.254000px;}
.ls1{letter-spacing:3.600000px;}
.ls1c{letter-spacing:5.016000px;}
.ls18{letter-spacing:8.170800px;}
.ls5{letter-spacing:9.590400px;}
.ls3{letter-spacing:14.850000px;}
.ls11{letter-spacing:181.260000px;}
.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;}
}
.ws25{word-spacing:-27.000000px;}
.wsbe{word-spacing:-19.470000px;}
.ws1c{word-spacing:-18.414000px;}
.ws1e{word-spacing:-18.216000px;}
.ws1{word-spacing:-16.740000px;}
.wsa5{word-spacing:-16.566000px;}
.wsc8{word-spacing:-16.560000px;}
.wsd6{word-spacing:-16.320000px;}
.wsd0{word-spacing:-16.080000px;}
.ws0{word-spacing:-15.066000px;}
.ws1a{word-spacing:-14.940000px;}
.ws80{word-spacing:-14.760000px;}
.ws2b{word-spacing:-14.220000px;}
.ws1b{word-spacing:-14.100000px;}
.ws31{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.446000px;}
.ws2c{word-spacing:-13.440000px;}
.ws2{word-spacing:-12.150000px;}
.ws81{word-spacing:-10.735362px;}
.ws1d{word-spacing:-9.686400px;}
.ws29{word-spacing:-8.710020px;}
.ws9f{word-spacing:-6.402000px;}
.wsca{word-spacing:-4.860000px;}
.wsb5{word-spacing:-4.488000px;}
.ws6{word-spacing:-3.456000px;}
.wsc0{word-spacing:-3.432000px;}
.wsac{word-spacing:-3.366000px;}
.wsa4{word-spacing:-2.904000px;}
.ws20{word-spacing:-2.838000px;}
.wsc2{word-spacing:-2.772000px;}
.ws93{word-spacing:-2.706000px;}
.ws8d{word-spacing:-2.442000px;}
.ws94{word-spacing:-2.376000px;}
.wsb6{word-spacing:-2.244000px;}
.wsb7{word-spacing:-2.178000px;}
.wsd4{word-spacing:-2.100000px;}
.ws19{word-spacing:-1.998000px;}
.wscc{word-spacing:-1.860000px;}
.wscd{word-spacing:-1.800000px;}
.wsa{word-spacing:-1.782000px;}
.ws17{word-spacing:-1.458000px;}
.wsde{word-spacing:-1.260000px;}
.wsbf{word-spacing:-1.254000px;}
.ws7{word-spacing:-1.200000px;}
.wsc{word-spacing:-1.080000px;}
.wsa3{word-spacing:-1.056000px;}
.ws9c{word-spacing:-0.792000px;}
.ws27{word-spacing:-0.726000px;}
.ws88{word-spacing:-0.660000px;}
.ws8{word-spacing:-0.600000px;}
.ws8e{word-spacing:-0.528000px;}
.ws18{word-spacing:-0.486000px;}
.ws21{word-spacing:-0.462000px;}
.ws9d{word-spacing:-0.396000px;}
.ws16{word-spacing:-0.162000px;}
.ws28{word-spacing:-0.132000px;}
.wsce{word-spacing:-0.120000px;}
.wsa7{word-spacing:-0.066000px;}
.ws4{word-spacing:0.000000px;}
.ws84{word-spacing:0.198000px;}
.wsab{word-spacing:0.264000px;}
.wsd3{word-spacing:0.300000px;}
.wsbd{word-spacing:0.462000px;}
.wsda{word-spacing:0.480000px;}
.ws26{word-spacing:0.594000px;}
.ws95{word-spacing:0.660000px;}
.wsd9{word-spacing:0.780000px;}
.ws97{word-spacing:0.858000px;}
.wsd7{word-spacing:0.900000px;}
.wsba{word-spacing:0.924000px;}
.wsae{word-spacing:0.990000px;}
.ws14{word-spacing:1.080000px;}
.ws15{word-spacing:1.350000px;}
.wsdb{word-spacing:1.380000px;}
.wsd1{word-spacing:1.620000px;}
.ws22{word-spacing:1.650000px;}
.wsd5{word-spacing:1.800000px;}
.ws82{word-spacing:1.980000px;}
.wsb{word-spacing:2.052000px;}
.wsdd{word-spacing:2.220000px;}
.wsad{word-spacing:2.244000px;}
.wsf{word-spacing:2.268000px;}
.ws8f{word-spacing:2.340000px;}
.ws10{word-spacing:2.538000px;}
.wsd{word-spacing:2.592000px;}
.ws87{word-spacing:2.904000px;}
.ws86{word-spacing:2.970000px;}
.wsc6{word-spacing:3.168000px;}
.ws96{word-spacing:3.234000px;}
.wsb9{word-spacing:3.300000px;}
.ws8a{word-spacing:3.432000px;}
.ws1f{word-spacing:3.455052px;}
.ws89{word-spacing:3.498000px;}
.wsa8{word-spacing:3.630000px;}
.wsd2{word-spacing:3.660000px;}
.wsa1{word-spacing:3.696000px;}
.wsa2{word-spacing:3.960000px;}
.wsd8{word-spacing:4.080000px;}
.ws9a{word-spacing:4.092000px;}
.ws9b{word-spacing:4.158000px;}
.wse{word-spacing:4.482000px;}
.ws5{word-spacing:4.698000px;}
.wsaf{word-spacing:4.752000px;}
.wsdc{word-spacing:4.860000px;}
.wsc3{word-spacing:5.016000px;}
.wsb1{word-spacing:5.082000px;}
.wsb0{word-spacing:5.148000px;}
.wsa6{word-spacing:5.214000px;}
.ws24{word-spacing:5.280000px;}
.wscb{word-spacing:5.460000px;}
.wscf{word-spacing:5.580000px;}
.wsc4{word-spacing:5.676000px;}
.wsc5{word-spacing:5.742000px;}
.ws92{word-spacing:5.808000px;}
.ws90{word-spacing:5.940000px;}
.ws8c{word-spacing:6.006000px;}
.ws8b{word-spacing:6.072000px;}
.ws98{word-spacing:6.336000px;}
.wsb2{word-spacing:6.930000px;}
.ws85{word-spacing:6.996000px;}
.ws91{word-spacing:7.326000px;}
.wsb3{word-spacing:7.524000px;}
.ws9e{word-spacing:8.316000px;}
.wsbc{word-spacing:8.382000px;}
.ws99{word-spacing:8.910000px;}
.wsc7{word-spacing:8.976000px;}
.ws23{word-spacing:9.042000px;}
.wsc9{word-spacing:9.300000px;}
.wsb4{word-spacing:9.504000px;}
.wsbb{word-spacing:9.768000px;}
.ws11{word-spacing:9.936000px;}
.ws13{word-spacing:10.476000px;}
.wsc1{word-spacing:10.626000px;}
.ws12{word-spacing:11.016000px;}
.wsb8{word-spacing:12.078000px;}
.wsa9{word-spacing:12.144000px;}
.wsaa{word-spacing:12.276000px;}
.wsa0{word-spacing:12.474000px;}
.ws83{word-spacing:12.738000px;}
.ws9{word-spacing:13.878000px;}
.ws72{word-spacing:67.386000px;}
.ws63{word-spacing:71.940000px;}
.ws6c{word-spacing:73.440000px;}
.ws65{word-spacing:83.280000px;}
.ws6f{word-spacing:86.520000px;}
.ws2a{word-spacing:90.786000px;}
.ws3a{word-spacing:91.020000px;}
.ws33{word-spacing:91.740000px;}
.ws42{word-spacing:93.660000px;}
.ws5e{word-spacing:93.780000px;}
.ws3d{word-spacing:94.560000px;}
.ws71{word-spacing:95.040000px;}
.ws50{word-spacing:95.220000px;}
.ws49{word-spacing:95.460000px;}
.ws38{word-spacing:95.520000px;}
.ws30{word-spacing:95.580000px;}
.ws68{word-spacing:95.940000px;}
.ws53{word-spacing:96.600000px;}
.ws4e{word-spacing:97.440000px;}
.ws59{word-spacing:98.640000px;}
.ws7a{word-spacing:98.760000px;}
.ws64{word-spacing:99.420000px;}
.ws79{word-spacing:100.140000px;}
.ws76{word-spacing:100.920000px;}
.ws7d{word-spacing:108.300000px;}
.ws3e{word-spacing:108.660000px;}
.ws7f{word-spacing:108.840000px;}
.ws7e{word-spacing:109.980000px;}
.ws2e{word-spacing:111.660000px;}
.ws4c{word-spacing:113.400000px;}
.ws69{word-spacing:113.520000px;}
.ws5a{word-spacing:113.580000px;}
.ws4a{word-spacing:114.306000px;}
.ws51{word-spacing:115.440000px;}
.ws56{word-spacing:115.740000px;}
.ws39{word-spacing:117.246000px;}
.ws35{word-spacing:118.500000px;}
.ws43{word-spacing:121.320000px;}
.ws5f{word-spacing:127.020000px;}
.ws60{word-spacing:133.980000px;}
.ws41{word-spacing:136.500000px;}
.ws6e{word-spacing:138.420000px;}
.ws2d{word-spacing:139.200000px;}
.ws62{word-spacing:139.260000px;}
.ws48{word-spacing:139.740000px;}
.ws32{word-spacing:140.460000px;}
.ws45{word-spacing:140.700000px;}
.ws46{word-spacing:141.060000px;}
.ws5d{word-spacing:141.240000px;}
.ws58{word-spacing:141.660000px;}
.ws67{word-spacing:141.780000px;}
.ws2f{word-spacing:145.560000px;}
.ws52{word-spacing:147.120000px;}
.ws37{word-spacing:150.120000px;}
.ws7b{word-spacing:150.780000px;}
.ws6b{word-spacing:151.500000px;}
.ws3c{word-spacing:151.560000px;}
.ws74{word-spacing:151.920000px;}
.ws7c{word-spacing:152.940000px;}
.ws78{word-spacing:155.700000px;}
.ws36{word-spacing:157.080000px;}
.ws75{word-spacing:157.200000px;}
.ws34{word-spacing:166.260000px;}
.ws47{word-spacing:168.180000px;}
.ws57{word-spacing:169.020000px;}
.ws3f{word-spacing:177.060000px;}
.ws54{word-spacing:193.980000px;}
.ws4b{word-spacing:202.560000px;}
.ws5b{word-spacing:240.420000px;}
.ws73{word-spacing:255.480000px;}
.ws61{word-spacing:293.520000px;}
.ws40{word-spacing:326.400000px;}
.ws55{word-spacing:326.580000px;}
.ws3b{word-spacing:333.600000px;}
.ws6d{word-spacing:363.600000px;}
.ws5c{word-spacing:366.360000px;}
.ws6a{word-spacing:390.480000px;}
.ws77{word-spacing:392.340000px;}
.ws44{word-spacing:398.940000px;}
.ws66{word-spacing:402.360000px;}
.ws4d{word-spacing:412.920000px;}
.ws4f{word-spacing:413.340000px;}
.ws70{word-spacing:418.140000px;}
._14{margin-left:-27.000000px;}
._9{margin-left:-9.590400px;}
._5{margin-left:-7.437105px;}
._3{margin-left:-5.895810px;}
._4{margin-left:-4.227210px;}
._2{margin-left:-2.844000px;}
._0{margin-left:-1.501448px;}
._1{width:1.681621px;}
._6{width:3.110400px;}
._7{width:4.674420px;}
._11{width:5.729940px;}
._13{width:6.774187px;}
._b{width:8.091600px;}
._d{width:9.794400px;}
._e{width:10.919048px;}
._12{width:12.128620px;}
._c{width:13.525442px;}
._8{width:14.561826px;}
._10{width:15.652447px;}
._f{width:16.809600px;}
._15{width:19.449495px;}
._3b{width:29.592000px;}
._a{width:33.000000px;}
._39{width:60.121447px;}
._26{width:64.585448px;}
._31{width:77.521448px;}
._18{width:81.301447px;}
._35{width:88.861447px;}
._33{width:92.227980px;}
._37{width:93.439274px;}
._1c{width:95.220000px;}
._19{width:105.600000px;}
._36{width:108.928657px;}
._30{width:112.799826px;}
._34{width:114.144000px;}
._1d{width:116.701448px;}
._21{width:131.898105px;}
._1f{width:135.030105px;}
._2c{width:140.460000px;}
._2e{width:142.825415px;}
._27{width:145.369415px;}
._2b{width:147.448657px;}
._25{width:150.781762px;}
._20{width:152.029447px;}
._32{width:159.631552px;}
._28{width:167.520000px;}
._17{width:169.261448px;}
._1a{width:171.025447px;}
._22{width:176.931036px;}
._1b{width:182.342895px;}
._24{width:183.781448px;}
._29{width:198.624000px;}
._2d{width:206.881448px;}
._3a{width:235.020000px;}
._2f{width:267.324000px;}
._38{width:269.581448px;}
._2a{width:272.784000px;}
._16{width:286.741448px;}
._23{width:300.001448px;}
._1e{width:351.540000px;}
.fc3{color:rgb(203,196,150);}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(181,170,105);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:34.980000px;}
.fs1{font-size:36.000000px;}
.fsc{font-size:38.478000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs7{font-size:84.000000px;}
.fs0{font-size:85.797000px;}
.fs5{font-size:90.000000px;}
.fs8{font-size:96.000000px;}
.fsb{font-size:108.000000px;}
.fs4{font-size:120.000000px;}
.fs9{font-size:172.752600px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.767300px;}
.y2f{bottom:15.700200px;}
.y32{bottom:17.983350px;}
.y33{bottom:30.614100px;}
.y2e{bottom:36.700200px;}
.y2{bottom:42.949800px;}
.ya{bottom:53.999400px;}
.y34{bottom:55.288350px;}
.y2d{bottom:57.700200px;}
.y9{bottom:70.199400px;}
.y2c{bottom:78.700200px;}
.y8{bottom:86.399400px;}
.y7{bottom:106.851900px;}
.yfb{bottom:170.081700px;}
.y175{bottom:173.399400px;}
.y168{bottom:173.415900px;}
.y1af{bottom:173.432400px;}
.y20a{bottom:176.510400px;}
.y157{bottom:177.753900px;}
.y194{bottom:181.034400px;}
.yfa{bottom:186.578700px;}
.y5b{bottom:188.844900px;}
.y1e6{bottom:189.785400px;}
.y11f{bottom:195.905400px;}
.y167{bottom:195.921900px;}
.y1ae{bottom:195.938400px;}
.y209{bottom:197.510400px;}
.ya9{bottom:199.785600px;}
.y156{bottom:200.259900px;}
.y193{bottom:203.540400px;}
.y183{bottom:209.607900px;}
.y5a{bottom:211.350900px;}
.y11e{bottom:218.411400px;}
.y166{bottom:218.427900px;}
.y1ad{bottom:218.444400px;}
.ya8{bottom:220.785600px;}
.y1e5{bottom:221.285400px;}
.y192{bottom:226.046400px;}
.y208{bottom:229.010400px;}
.y182{bottom:230.607900px;}
.y59{bottom:233.856900px;}
.y11d{bottom:240.917400px;}
.y165{bottom:240.933900px;}
.y1ac{bottom:240.950400px;}
.y155{bottom:245.255400px;}
.y207{bottom:250.010400px;}
.y181{bottom:251.607900px;}
.ya7{bottom:251.820600px;}
.y1e4{bottom:252.785400px;}
.y7c{bottom:256.013400px;}
.y58{bottom:256.362900px;}
.yf9{bottom:258.693900px;}
.y29{bottom:260.909400px;}
.y11c{bottom:263.423400px;}
.y1ab{bottom:263.456400px;}
.y154{bottom:267.761400px;}
.y191{bottom:271.041900px;}
.y180{bottom:272.607900px;}
.ya6{bottom:272.820600px;}
.y1e3{bottom:273.785400px;}
.y7b{bottom:278.519400px;}
.y57{bottom:278.868900px;}
.yf8{bottom:281.199900px;}
.y206{bottom:281.510400px;}
.y28{bottom:281.915400px;}
.y11b{bottom:285.929400px;}
.y1aa{bottom:285.962400px;}
.y153{bottom:290.267400px;}
.y190{bottom:293.547900px;}
.y17f{bottom:293.607900px;}
.yd4{bottom:296.715600px;}
.y27{bottom:298.412400px;}
.y7a{bottom:301.025400px;}
.y56{bottom:301.374900px;}
.y205{bottom:302.510400px;}
.yf7{bottom:303.705900px;}
.ya5{bottom:303.855600px;}
.y1e2{bottom:305.285400px;}
.y174{bottom:308.418900px;}
.y11a{bottom:308.435400px;}
.y1a9{bottom:308.468400px;}
.y152{bottom:312.773400px;}
.y17e{bottom:314.607900px;}
.y26{bottom:314.909400px;}
.y18f{bottom:316.053900px;}
.y138{bottom:319.016400px;}
.yd3{bottom:319.221600px;}
.y79{bottom:323.531400px;}
.ya4{bottom:324.855600px;}
.y1c4{bottom:325.107900px;}
.yf6{bottom:326.211900px;}
.y173{bottom:330.924900px;}
.y119{bottom:330.941400px;}
.y1a8{bottom:330.974400px;}
.y25{bottom:331.406400px;}
.y204{bottom:334.010400px;}
.y151{bottom:335.279400px;}
.y17d{bottom:335.607900px;}
.y1e1{bottom:336.785400px;}
.y18e{bottom:338.559900px;}
.y137{bottom:341.522400px;}
.yd2{bottom:341.727600px;}
.y78{bottom:346.037400px;}
.y1c3{bottom:346.107900px;}
.y55{bottom:346.370400px;}
.y24{bottom:347.903400px;}
.yf5{bottom:348.717900px;}
.y172{bottom:353.430900px;}
.y118{bottom:353.447400px;}
.y203{bottom:355.010400px;}
.ya3{bottom:355.890600px;}
.y17c{bottom:356.607900px;}
.y150{bottom:357.785400px;}
.y18d{bottom:361.065900px;}
.y136{bottom:364.028400px;}
.y23{bottom:364.400400px;}
.y1e0{bottom:368.285400px;}
.y77{bottom:368.543400px;}
.y54{bottom:368.876400px;}
.yf4{bottom:371.223900px;}
.y171{bottom:375.936900px;}
.y117{bottom:375.953400px;}
.y1a7{bottom:375.969900px;}
.ya2{bottom:376.890600px;}
.y17b{bottom:377.607900px;}
.y22{bottom:380.897400px;}
.y18c{bottom:383.571900px;}
.y202{bottom:386.510400px;}
.y135{bottom:386.534400px;}
.yd1{bottom:386.723100px;}
.y1df{bottom:389.285400px;}
.y76{bottom:391.049400px;}
.y53{bottom:391.382400px;}
.yf3{bottom:393.729900px;}
.y21{bottom:397.394400px;}
.ya1{bottom:397.890600px;}
.y170{bottom:398.442900px;}
.y116{bottom:398.459400px;}
.y1a6{bottom:398.475900px;}
.y14f{bottom:402.785400px;}
.y18b{bottom:406.077900px;}
.y201{bottom:407.510400px;}
.y134{bottom:409.040400px;}
.y1c2{bottom:409.107900px;}
.yd0{bottom:409.229100px;}
.y75{bottom:413.555400px;}
.y52{bottom:413.888400px;}
.y20{bottom:413.891400px;}
.yf2{bottom:416.235900px;}
.y1de{bottom:420.785400px;}
.y16f{bottom:420.948900px;}
.y164{bottom:420.965400px;}
.y1a5{bottom:420.981900px;}
.y14e{bottom:423.785400px;}
.y18a{bottom:428.583900px;}
.y9e{bottom:428.925600px;}
.y133{bottom:431.546400px;}
.ycf{bottom:431.735100px;}
.y51{bottom:436.394400px;}
.yf1{bottom:438.741900px;}
.y200{bottom:439.010400px;}
.ya0{bottom:439.425600px;}
.y1c1{bottom:440.607900px;}
.y1dd{bottom:441.785400px;}
.y115{bottom:443.454900px;}
.y163{bottom:443.471400px;}
.y1a4{bottom:443.487900px;}
.y14d{bottom:444.785400px;}
.y1f{bottom:447.641400px;}
.y9d{bottom:449.925600px;}
.y189{bottom:451.089900px;}
.y132{bottom:454.052400px;}
.yce{bottom:454.241100px;}
.y74{bottom:458.550900px;}
.y50{bottom:458.900400px;}
.y1ff{bottom:460.010400px;}
.y9f{bottom:460.425600px;}
.yf0{bottom:461.247900px;}
.y1e{bottom:464.894400px;}
.y14c{bottom:465.785400px;}
.y114{bottom:465.960900px;}
.y162{bottom:465.977400px;}
.y1a3{bottom:465.993900px;}
.y9c{bottom:470.925600px;}
.y1c0{bottom:472.107900px;}
.y1dc{bottom:473.285400px;}
.y188{bottom:473.595900px;}
.y131{bottom:476.558400px;}
.ycd{bottom:476.747100px;}
.y73{bottom:481.056900px;}
.y4f{bottom:481.406400px;}
.yef{bottom:483.753900px;}
.y1d{bottom:485.900400px;}
.y14b{bottom:486.785400px;}
.y16e{bottom:488.450400px;}
.y113{bottom:488.466900px;}
.y161{bottom:488.483400px;}
.y1a2{bottom:488.499900px;}
.y1fe{bottom:491.510400px;}
.y1db{bottom:494.285400px;}
.y187{bottom:496.101900px;}
.y130{bottom:499.064400px;}
.y9b{bottom:501.960600px;}
.y1c{bottom:503.153400px;}
.y72{bottom:503.562900px;}
.y1bf{bottom:503.607900px;}
.y4e{bottom:503.912400px;}
.yee{bottom:506.259900px;}
.y14a{bottom:507.785400px;}
.y16d{bottom:510.956400px;}
.y112{bottom:510.972900px;}
.y160{bottom:510.989400px;}
.y9a{bottom:512.460600px;}
.y1fd{bottom:512.510400px;}
.y1da{bottom:515.285400px;}
.y186{bottom:518.607900px;}
.y1b{bottom:520.406400px;}
.y12f{bottom:521.570400px;}
.y4d{bottom:526.418400px;}
.yed{bottom:528.765900px;}
.ycc{bottom:530.605350px;}
.y16c{bottom:533.462400px;}
.y111{bottom:533.478900px;}
.y15f{bottom:533.495400px;}
.y1be{bottom:535.107900px;}
.y1a{bottom:537.659400px;}
.y1fc{bottom:544.010400px;}
.y12e{bottom:544.076400px;}
.y1d9{bottom:546.785400px;}
.y71{bottom:548.558400px;}
.y4c{bottom:548.924400px;}
.y149{bottom:551.157900px;}
.yec{bottom:551.271900px;}
.ycb{bottom:551.605350px;}
.y99{bottom:553.995600px;}
.y19{bottom:554.912400px;}
.y16b{bottom:555.968400px;}
.y110{bottom:555.984900px;}
.y15e{bottom:556.001400px;}
.y185{bottom:563.607900px;}
.y1fb{bottom:565.010400px;}
.y12d{bottom:566.582400px;}
.y1bd{bottom:566.607900px;}
.y1d8{bottom:567.785400px;}
.y70{bottom:571.064400px;}
.y4b{bottom:571.430400px;}
.y18{bottom:572.165400px;}
.y148{bottom:573.663900px;}
.yeb{bottom:573.777900px;}
.y16a{bottom:578.474400px;}
.y179{bottom:578.490900px;}
.y15d{bottom:578.507400px;}
.yc8{bottom:582.640350px;}
.y98{bottom:583.500600px;}
.y17{bottom:589.418400px;}
.yca{bottom:593.140350px;}
.y6f{bottom:593.570400px;}
.y4a{bottom:593.936400px;}
.y147{bottom:596.169900px;}
.y1fa{bottom:596.510400px;}
.y1bc{bottom:598.107900px;}
.y1d7{bottom:599.285400px;}
.y10f{bottom:600.980400px;}
.y178{bottom:600.996900px;}
.y1a1{bottom:601.013400px;}
.yc7{bottom:603.640350px;}
.y16{bottom:606.671400px;}
.y12c{bottom:611.577900px;}
.yc9{bottom:614.140350px;}
.y97{bottom:614.535600px;}
.y6e{bottom:616.076400px;}
.y49{bottom:616.442400px;}
.y1f9{bottom:617.510400px;}
.yea{bottom:618.773400px;}
.y1d6{bottom:620.285400px;}
.y10e{bottom:623.486400px;}
.y15c{bottom:623.502900px;}
.y1a0{bottom:623.519400px;}
.y15{bottom:623.924400px;}
.yc6{bottom:624.640350px;}
.y1bb{bottom:629.607900px;}
.y12b{bottom:634.083900px;}
.y96{bottom:635.535600px;}
.y1f8{bottom:638.510400px;}
.y6d{bottom:638.582400px;}
.y48{bottom:638.948400px;}
.y146{bottom:641.165400px;}
.y14{bottom:641.177400px;}
.ye9{bottom:641.279400px;}
.y1d5{bottom:641.285400px;}
.y10d{bottom:645.992400px;}
.y15b{bottom:646.008900px;}
.y19f{bottom:646.025400px;}
.yc4{bottom:655.675350px;}
.y12a{bottom:656.589900px;}
.y6c{bottom:661.088400px;}
.y1ba{bottom:661.107900px;}
.y47{bottom:661.454400px;}
.y145{bottom:663.671400px;}
.ye8{bottom:663.740400px;}
.yc5{bottom:666.175350px;}
.y93{bottom:666.570600px;}
.y10c{bottom:668.498400px;}
.y15a{bottom:668.514900px;}
.y19e{bottom:668.531400px;}
.y1f7{bottom:670.010400px;}
.y95{bottom:670.815600px;}
.y1d4{bottom:672.785400px;}
.yc3{bottom:676.675350px;}
.y129{bottom:679.095900px;}
.y6b{bottom:683.594400px;}
.y46{bottom:683.960400px;}
.y144{bottom:686.177400px;}
.ye7{bottom:686.246400px;}
.y10b{bottom:691.004400px;}
.y1f6{bottom:691.010400px;}
.y159{bottom:691.020900px;}
.y94{bottom:691.815600px;}
.y1b9{bottom:692.607900px;}
.y13{bottom:695.430750px;}
.y92{bottom:696.075600px;}
.yc2{bottom:697.675350px;}
.y128{bottom:701.601900px;}
.y1d3{bottom:704.285400px;}
.y45{bottom:706.466400px;}
.y143{bottom:708.683400px;}
.ye6{bottom:708.752400px;}
.y10a{bottom:713.510400px;}
.y158{bottom:713.526900px;}
.y1b8{bottom:713.607900px;}
.y12{bottom:716.430750px;}
.y1f5{bottom:722.510400px;}
.y127{bottom:724.107900px;}
.y91{bottom:727.110600px;}
.y6a{bottom:728.589900px;}
.ybf{bottom:728.710350px;}
.y44{bottom:728.972400px;}
.y142{bottom:731.189400px;}
.ye5{bottom:731.258400px;}
.y1d2{bottom:735.785400px;}
.y109{bottom:736.016400px;}
.y19d{bottom:736.032900px;}
.y11{bottom:737.430750px;}
.yc1{bottom:739.210350px;}
.y2b{bottom:741.725400px;}
.y1b7{bottom:745.107900px;}
.y90{bottom:748.110600px;}
.ybe{bottom:749.710350px;}
.y69{bottom:751.095900px;}
.y43{bottom:751.478400px;}
.y141{bottom:753.695400px;}
.y1f4{bottom:754.010400px;}
.y1d1{bottom:756.785400px;}
.y10{bottom:758.430750px;}
.y108{bottom:758.522400px;}
.y19c{bottom:758.538900px;}
.yc0{bottom:760.210350px;}
.y2a{bottom:761.219400px;}
.y126{bottom:769.107900px;}
.ybd{bottom:770.710350px;}
.y68{bottom:773.601900px;}
.y42{bottom:773.984400px;}
.y140{bottom:776.201400px;}
.ye4{bottom:776.253900px;}
.y1b6{bottom:776.607900px;}
.y8f{bottom:779.145600px;}
.y107{bottom:781.028400px;}
.y19b{bottom:781.044900px;}
.y1f3{bottom:785.510400px;}
.y1d0{bottom:788.285400px;}
.y8c{bottom:789.645600px;}
.y125{bottom:790.107900px;}
.y67{bottom:796.107900px;}
.y13f{bottom:798.707400px;}
.ye3{bottom:798.759900px;}
.y8e{bottom:800.145600px;}
.yba{bottom:801.745350px;}
.y106{bottom:803.534400px;}
.y19a{bottom:803.550900px;}
.y1b5{bottom:808.107900px;}
.y1cf{bottom:809.285400px;}
.y8b{bottom:810.645600px;}
.y124{bottom:811.107900px;}
.ybc{bottom:812.245350px;}
.y1f2{bottom:817.010400px;}
.y41{bottom:818.979900px;}
.y8d{bottom:821.145600px;}
.y13e{bottom:821.213400px;}
.ye2{bottom:821.265900px;}
.yb9{bottom:822.745350px;}
.y105{bottom:826.040400px;}
.y199{bottom:826.056900px;}
.y123{bottom:832.107900px;}
.ybb{bottom:833.245350px;}
.y211{bottom:838.010400px;}
.y1b4{bottom:839.607900px;}
.y1ce{bottom:840.785400px;}
.y66{bottom:841.107900px;}
.y40{bottom:841.485900px;}
.y13d{bottom:843.719400px;}
.yb8{bottom:843.745350px;}
.ye1{bottom:843.771900px;}
.y1f1{bottom:848.510400px;}
.y104{bottom:848.546400px;}
.y198{bottom:848.562900px;}
.y8a{bottom:852.180600px;}
.y122{bottom:853.107900px;}
.y210{bottom:859.010400px;}
.y1cd{bottom:861.785400px;}
.yf{bottom:861.981600px;}
.y3f{bottom:863.991900px;}
.y13c{bottom:866.225400px;}
.ye0{bottom:866.277900px;}
.y103{bottom:871.052400px;}
.y197{bottom:871.068900px;}
.y1b3{bottom:871.107900px;}
.y89{bottom:873.180600px;}
.y121{bottom:874.107900px;}
.yb7{bottom:874.780350px;}
.y65{bottom:878.607900px;}
.y1f0{bottom:880.010400px;}
.y3e{bottom:886.497900px;}
.y13b{bottom:888.731400px;}
.ydf{bottom:888.783900px;}
.ye{bottom:888.981600px;}
.y1b2{bottom:892.107900px;}
.y1cc{bottom:893.285400px;}
.y184{bottom:893.541900px;}
.y102{bottom:893.558400px;}
.y196{bottom:893.574900px;}
.y120{bottom:895.107900px;}
.yb6{bottom:895.780350px;}
.y1ef{bottom:901.010400px;}
.y88{bottom:904.215600px;}
.y87{bottom:904.230600px;}
.y3d{bottom:909.003900px;}
.y13a{bottom:911.237400px;}
.yde{bottom:911.289900px;}
.y20f{bottom:911.510400px;}
.y1cb{bottom:914.285400px;}
.y177{bottom:916.047900px;}
.y101{bottom:916.064400px;}
.y195{bottom:916.080900px;}
.y1ee{bottom:922.010400px;}
.yb5{bottom:926.815350px;}
.yd{bottom:928.737450px;}
.y20e{bottom:932.510400px;}
.y86{bottom:933.735600px;}
.y139{bottom:933.743400px;}
.y1b1{bottom:935.607900px;}
.yb2{bottom:937.315350px;}
.y176{bottom:938.553900px;}
.y100{bottom:938.570400px;}
.y1ca{bottom:945.785400px;}
.yb4{bottom:947.815350px;}
.y1ed{bottom:953.510400px;}
.y3c{bottom:953.999400px;}
.ydd{bottom:956.249400px;}
.yb1{bottom:958.315350px;}
.y64{bottom:961.059900px;}
.yff{bottom:961.076400px;}
.yc{bottom:963.237450px;}
.y85{bottom:964.770600px;}
.yb3{bottom:968.815350px;}
.y1ec{bottom:974.510400px;}
.y3b{bottom:976.505400px;}
.y1c9{bottom:977.285400px;}
.ydc{bottom:978.755400px;}
.y63{bottom:983.565900px;}
.yfe{bottom:983.582400px;}
.y20d{bottom:985.010400px;}
.y1b0{bottom:991.107900px;}
.y84{bottom:994.275600px;}
.yb{bottom:997.737450px;}
.y1c8{bottom:998.285400px;}
.y3a{bottom:999.011400px;}
.yb0{bottom:999.850350px;}
.ydb{bottom:1001.261400px;}
.y1eb{bottom:1006.010400px;}
.y62{bottom:1006.071900px;}
.yfd{bottom:1006.088400px;}
.yaf{bottom:1020.850350px;}
.y39{bottom:1021.517400px;}
.yda{bottom:1023.767400px;}
.y81{bottom:1025.310600px;}
.y1ea{bottom:1027.010400px;}
.y61{bottom:1028.577900px;}
.yfc{bottom:1028.594400px;}
.y83{bottom:1029.555600px;}
.y1c7{bottom:1029.785400px;}
.y20c{bottom:1037.510400px;}
.y38{bottom:1044.023400px;}
.yd9{bottom:1046.273400px;}
.y82{bottom:1050.555600px;}
.y60{bottom:1051.083900px;}
.y169{bottom:1051.100400px;}
.yad{bottom:1051.885350px;}
.y80{bottom:1054.815600px;}
.yae{bottom:1056.130350px;}
.y1e9{bottom:1058.510400px;}
.y1c6{bottom:1061.285400px;}
.y37{bottom:1066.529400px;}
.yd8{bottom:1068.779400px;}
.y5f{bottom:1073.589900px;}
.y17a{bottom:1073.606400px;}
.yac{bottom:1081.390350px;}
.y7f{bottom:1085.850600px;}
.y36{bottom:1089.035400px;}
.y1e8{bottom:1090.010400px;}
.yd7{bottom:1091.285400px;}
.y1c5{bottom:1092.785400px;}
.y5e{bottom:1096.095900px;}
.y6{bottom:1099.267350px;}
.y7e{bottom:1106.850600px;}
.y20b{bottom:1111.010400px;}
.yab{bottom:1112.425350px;}
.y5d{bottom:1118.601900px;}
.y1e7{bottom:1121.510400px;}
.y5{bottom:1131.232500px;}
.yaa{bottom:1133.425350px;}
.y35{bottom:1134.035400px;}
.yd6{bottom:1136.285400px;}
.y5c{bottom:1141.107900px;}
.y7d{bottom:1142.510400px;}
.y1{bottom:1146.411000px;}
.y3{bottom:1168.769550px;}
.yd5{bottom:1169.085300px;}
.y30{bottom:1185.328350px;}
.y31{bottom:1220.509800px;}
.h4{height:37.800000px;}
.h6{height:56.700000px;}
.h2{height:62.424000px;}
.h9{height:63.000000px;}
.h3{height:64.347750px;}
.h5{height:69.300000px;}
.h14{height:69.444000px;}
.h15{height:69.480000px;}
.ha{height:72.000000px;}
.h8{height:72.114787px;}
.h16{height:81.000000px;}
.h13{height:86.537745px;}
.hc{height:90.000000px;}
.he{height:105.000000px;}
.hf{height:121.980000px;}
.h7{height:126.000000px;}
.hd{height:147.000000px;}
.h11{height:163.980000px;}
.h10{height:180.960000px;}
.hb{height:181.390230px;}
.h12{height:189.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:354.229500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:21.259800px;}
.xe{left:52.789050px;}
.x1{left:54.000000px;}
.x5{left:57.401550px;}
.x4{left:60.612150px;}
.xf{left:106.299150px;}
.x22{left:110.922000px;}
.x17{left:111.927000px;}
.x26{left:114.222000px;}
.x28{left:116.037000px;}
.x34{left:117.777000px;}
.x27{left:119.667000px;}
.x2f{left:120.717000px;}
.x2e{left:121.752000px;}
.x32{left:124.827000px;}
.x24{left:126.507000px;}
.x39{left:128.127000px;}
.x25{left:129.687000px;}
.x13{left:134.202000px;}
.x3a{left:135.567000px;}
.x18{left:138.732000px;}
.x1e{left:140.082000px;}
.x11{left:141.837000px;}
.x30{left:143.217000px;}
.x10{left:144.549150px;}
.x1a{left:146.742000px;}
.x14{left:150.342000px;}
.x2{left:155.902500px;}
.x3{left:209.902500px;}
.xa{left:212.598450px;}
.x3b{left:219.252000px;}
.x6{left:221.456700px;}
.x7{left:223.378050px;}
.x35{left:227.997000px;}
.x1f{left:231.867000px;}
.x3d{left:233.187000px;}
.x16{left:234.912000px;}
.x9{left:236.359200px;}
.x8{left:239.130750px;}
.x15{left:242.427000px;}
.x3f{left:244.887000px;}
.x21{left:264.147000px;}
.x29{left:272.967000px;}
.x19{left:275.157000px;}
.x1b{left:280.377000px;}
.x2c{left:284.802000px;}
.x33{left:288.117000px;}
.x3c{left:291.822000px;}
.x20{left:292.902000px;}
.x31{left:293.922000px;}
.x23{left:296.787000px;}
.x41{left:402.544650px;}
.x1c{left:435.147000px;}
.x1d{left:557.892000px;}
.x37{left:618.132000px;}
.x2d{left:623.757000px;}
.x12{left:628.557000px;}
.x3e{left:638.337000px;}
.x36{left:646.362000px;}
.x2b{left:712.992000px;}
.x38{left:715.602000px;}
.x2a{left:718.152000px;}
.x40{left:731.667000px;}
.xb{left:821.251050px;}
.x42{left:829.110900px;}
.xc{left:830.479800px;}
@media print{
.v6{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760533pt;}
.v5{vertical-align:19.664000pt;}
.v3{vertical-align:37.333333pt;}
.v4{vertical-align:52.426667pt;}
.v2{vertical-align:74.666667pt;}
.ls12{letter-spacing:-3.786667pt;}
.lsb{letter-spacing:-3.200000pt;}
.ls6{letter-spacing:-3.071157pt;}
.ls7{letter-spacing:-2.933333pt;}
.ls9{letter-spacing:-2.560000pt;}
.lsd{letter-spacing:-1.493333pt;}
.ls1a{letter-spacing:-1.466667pt;}
.ls14{letter-spacing:-1.386667pt;}
.ls13{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-1.066667pt;}
.ls16{letter-spacing:-0.762667pt;}
.lsf{letter-spacing:-0.746667pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.586667pt;}
.lse{letter-spacing:-0.533333pt;}
.ls1d{letter-spacing:-0.426667pt;}
.ls1e{letter-spacing:-0.373333pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.000165pt;}
.ls19{letter-spacing:0.234667pt;}
.ls0{letter-spacing:0.381320pt;}
.ls17{letter-spacing:0.704000pt;}
.ls2{letter-spacing:1.066667pt;}
.ls1b{letter-spacing:1.114667pt;}
.ls1{letter-spacing:3.200000pt;}
.ls1c{letter-spacing:4.458667pt;}
.ls18{letter-spacing:7.262933pt;}
.ls5{letter-spacing:8.524800pt;}
.ls3{letter-spacing:13.200000pt;}
.ls11{letter-spacing:161.120000pt;}
.ws25{word-spacing:-24.000000pt;}
.wsbe{word-spacing:-17.306667pt;}
.ws1c{word-spacing:-16.368000pt;}
.ws1e{word-spacing:-16.192000pt;}
.ws1{word-spacing:-14.880000pt;}
.wsa5{word-spacing:-14.725333pt;}
.wsc8{word-spacing:-14.720000pt;}
.wsd6{word-spacing:-14.506667pt;}
.wsd0{word-spacing:-14.293333pt;}
.ws0{word-spacing:-13.392000pt;}
.ws1a{word-spacing:-13.280000pt;}
.ws80{word-spacing:-13.120000pt;}
.ws2b{word-spacing:-12.640000pt;}
.ws1b{word-spacing:-12.533333pt;}
.ws31{word-spacing:-12.320000pt;}
.ws3{word-spacing:-11.952000pt;}
.ws2c{word-spacing:-11.946667pt;}
.ws2{word-spacing:-10.800000pt;}
.ws81{word-spacing:-9.542544pt;}
.ws1d{word-spacing:-8.610133pt;}
.ws29{word-spacing:-7.742240pt;}
.ws9f{word-spacing:-5.690667pt;}
.wsca{word-spacing:-4.320000pt;}
.wsb5{word-spacing:-3.989333pt;}
.ws6{word-spacing:-3.072000pt;}
.wsc0{word-spacing:-3.050667pt;}
.wsac{word-spacing:-2.992000pt;}
.wsa4{word-spacing:-2.581333pt;}
.ws20{word-spacing:-2.522667pt;}
.wsc2{word-spacing:-2.464000pt;}
.ws93{word-spacing:-2.405333pt;}
.ws8d{word-spacing:-2.170667pt;}
.ws94{word-spacing:-2.112000pt;}
.wsb6{word-spacing:-1.994667pt;}
.wsb7{word-spacing:-1.936000pt;}
.wsd4{word-spacing:-1.866667pt;}
.ws19{word-spacing:-1.776000pt;}
.wscc{word-spacing:-1.653333pt;}
.wscd{word-spacing:-1.600000pt;}
.wsa{word-spacing:-1.584000pt;}
.ws17{word-spacing:-1.296000pt;}
.wsde{word-spacing:-1.120000pt;}
.wsbf{word-spacing:-1.114667pt;}
.ws7{word-spacing:-1.066667pt;}
.wsc{word-spacing:-0.960000pt;}
.wsa3{word-spacing:-0.938667pt;}
.ws9c{word-spacing:-0.704000pt;}
.ws27{word-spacing:-0.645333pt;}
.ws88{word-spacing:-0.586667pt;}
.ws8{word-spacing:-0.533333pt;}
.ws8e{word-spacing:-0.469333pt;}
.ws18{word-spacing:-0.432000pt;}
.ws21{word-spacing:-0.410667pt;}
.ws9d{word-spacing:-0.352000pt;}
.ws16{word-spacing:-0.144000pt;}
.ws28{word-spacing:-0.117333pt;}
.wsce{word-spacing:-0.106667pt;}
.wsa7{word-spacing:-0.058667pt;}
.ws4{word-spacing:0.000000pt;}
.ws84{word-spacing:0.176000pt;}
.wsab{word-spacing:0.234667pt;}
.wsd3{word-spacing:0.266667pt;}
.wsbd{word-spacing:0.410667pt;}
.wsda{word-spacing:0.426667pt;}
.ws26{word-spacing:0.528000pt;}
.ws95{word-spacing:0.586667pt;}
.wsd9{word-spacing:0.693333pt;}
.ws97{word-spacing:0.762667pt;}
.wsd7{word-spacing:0.800000pt;}
.wsba{word-spacing:0.821333pt;}
.wsae{word-spacing:0.880000pt;}
.ws14{word-spacing:0.960000pt;}
.ws15{word-spacing:1.200000pt;}
.wsdb{word-spacing:1.226667pt;}
.wsd1{word-spacing:1.440000pt;}
.ws22{word-spacing:1.466667pt;}
.wsd5{word-spacing:1.600000pt;}
.ws82{word-spacing:1.760000pt;}
.wsb{word-spacing:1.824000pt;}
.wsdd{word-spacing:1.973333pt;}
.wsad{word-spacing:1.994667pt;}
.wsf{word-spacing:2.016000pt;}
.ws8f{word-spacing:2.080000pt;}
.ws10{word-spacing:2.256000pt;}
.wsd{word-spacing:2.304000pt;}
.ws87{word-spacing:2.581333pt;}
.ws86{word-spacing:2.640000pt;}
.wsc6{word-spacing:2.816000pt;}
.ws96{word-spacing:2.874667pt;}
.wsb9{word-spacing:2.933333pt;}
.ws8a{word-spacing:3.050667pt;}
.ws1f{word-spacing:3.071157pt;}
.ws89{word-spacing:3.109333pt;}
.wsa8{word-spacing:3.226667pt;}
.wsd2{word-spacing:3.253333pt;}
.wsa1{word-spacing:3.285333pt;}
.wsa2{word-spacing:3.520000pt;}
.wsd8{word-spacing:3.626667pt;}
.ws9a{word-spacing:3.637333pt;}
.ws9b{word-spacing:3.696000pt;}
.wse{word-spacing:3.984000pt;}
.ws5{word-spacing:4.176000pt;}
.wsaf{word-spacing:4.224000pt;}
.wsdc{word-spacing:4.320000pt;}
.wsc3{word-spacing:4.458667pt;}
.wsb1{word-spacing:4.517333pt;}
.wsb0{word-spacing:4.576000pt;}
.wsa6{word-spacing:4.634667pt;}
.ws24{word-spacing:4.693333pt;}
.wscb{word-spacing:4.853333pt;}
.wscf{word-spacing:4.960000pt;}
.wsc4{word-spacing:5.045333pt;}
.wsc5{word-spacing:5.104000pt;}
.ws92{word-spacing:5.162667pt;}
.ws90{word-spacing:5.280000pt;}
.ws8c{word-spacing:5.338667pt;}
.ws8b{word-spacing:5.397333pt;}
.ws98{word-spacing:5.632000pt;}
.wsb2{word-spacing:6.160000pt;}
.ws85{word-spacing:6.218667pt;}
.ws91{word-spacing:6.512000pt;}
.wsb3{word-spacing:6.688000pt;}
.ws9e{word-spacing:7.392000pt;}
.wsbc{word-spacing:7.450667pt;}
.ws99{word-spacing:7.920000pt;}
.wsc7{word-spacing:7.978667pt;}
.ws23{word-spacing:8.037333pt;}
.wsc9{word-spacing:8.266667pt;}
.wsb4{word-spacing:8.448000pt;}
.wsbb{word-spacing:8.682667pt;}
.ws11{word-spacing:8.832000pt;}
.ws13{word-spacing:9.312000pt;}
.wsc1{word-spacing:9.445333pt;}
.ws12{word-spacing:9.792000pt;}
.wsb8{word-spacing:10.736000pt;}
.wsa9{word-spacing:10.794667pt;}
.wsaa{word-spacing:10.912000pt;}
.wsa0{word-spacing:11.088000pt;}
.ws83{word-spacing:11.322667pt;}
.ws9{word-spacing:12.336000pt;}
.ws72{word-spacing:59.898667pt;}
.ws63{word-spacing:63.946667pt;}
.ws6c{word-spacing:65.280000pt;}
.ws65{word-spacing:74.026667pt;}
.ws6f{word-spacing:76.906667pt;}
.ws2a{word-spacing:80.698667pt;}
.ws3a{word-spacing:80.906667pt;}
.ws33{word-spacing:81.546667pt;}
.ws42{word-spacing:83.253333pt;}
.ws5e{word-spacing:83.360000pt;}
.ws3d{word-spacing:84.053333pt;}
.ws71{word-spacing:84.480000pt;}
.ws50{word-spacing:84.640000pt;}
.ws49{word-spacing:84.853333pt;}
.ws38{word-spacing:84.906667pt;}
.ws30{word-spacing:84.960000pt;}
.ws68{word-spacing:85.280000pt;}
.ws53{word-spacing:85.866667pt;}
.ws4e{word-spacing:86.613333pt;}
.ws59{word-spacing:87.680000pt;}
.ws7a{word-spacing:87.786667pt;}
.ws64{word-spacing:88.373333pt;}
.ws79{word-spacing:89.013333pt;}
.ws76{word-spacing:89.706667pt;}
.ws7d{word-spacing:96.266667pt;}
.ws3e{word-spacing:96.586667pt;}
.ws7f{word-spacing:96.746667pt;}
.ws7e{word-spacing:97.760000pt;}
.ws2e{word-spacing:99.253333pt;}
.ws4c{word-spacing:100.800000pt;}
.ws69{word-spacing:100.906667pt;}
.ws5a{word-spacing:100.960000pt;}
.ws4a{word-spacing:101.605333pt;}
.ws51{word-spacing:102.613333pt;}
.ws56{word-spacing:102.880000pt;}
.ws39{word-spacing:104.218667pt;}
.ws35{word-spacing:105.333333pt;}
.ws43{word-spacing:107.840000pt;}
.ws5f{word-spacing:112.906667pt;}
.ws60{word-spacing:119.093333pt;}
.ws41{word-spacing:121.333333pt;}
.ws6e{word-spacing:123.040000pt;}
.ws2d{word-spacing:123.733333pt;}
.ws62{word-spacing:123.786667pt;}
.ws48{word-spacing:124.213333pt;}
.ws32{word-spacing:124.853333pt;}
.ws45{word-spacing:125.066667pt;}
.ws46{word-spacing:125.386667pt;}
.ws5d{word-spacing:125.546667pt;}
.ws58{word-spacing:125.920000pt;}
.ws67{word-spacing:126.026667pt;}
.ws2f{word-spacing:129.386667pt;}
.ws52{word-spacing:130.773333pt;}
.ws37{word-spacing:133.440000pt;}
.ws7b{word-spacing:134.026667pt;}
.ws6b{word-spacing:134.666667pt;}
.ws3c{word-spacing:134.720000pt;}
.ws74{word-spacing:135.040000pt;}
.ws7c{word-spacing:135.946667pt;}
.ws78{word-spacing:138.400000pt;}
.ws36{word-spacing:139.626667pt;}
.ws75{word-spacing:139.733333pt;}
.ws34{word-spacing:147.786667pt;}
.ws47{word-spacing:149.493333pt;}
.ws57{word-spacing:150.240000pt;}
.ws3f{word-spacing:157.386667pt;}
.ws54{word-spacing:172.426667pt;}
.ws4b{word-spacing:180.053333pt;}
.ws5b{word-spacing:213.706667pt;}
.ws73{word-spacing:227.093333pt;}
.ws61{word-spacing:260.906667pt;}
.ws40{word-spacing:290.133333pt;}
.ws55{word-spacing:290.293333pt;}
.ws3b{word-spacing:296.533333pt;}
.ws6d{word-spacing:323.200000pt;}
.ws5c{word-spacing:325.653333pt;}
.ws6a{word-spacing:347.093333pt;}
.ws77{word-spacing:348.746667pt;}
.ws44{word-spacing:354.613333pt;}
.ws66{word-spacing:357.653333pt;}
.ws4d{word-spacing:367.040000pt;}
.ws4f{word-spacing:367.413333pt;}
.ws70{word-spacing:371.680000pt;}
._14{margin-left:-24.000000pt;}
._9{margin-left:-8.524800pt;}
._5{margin-left:-6.610760pt;}
._3{margin-left:-5.240720pt;}
._4{margin-left:-3.757520pt;}
._2{margin-left:-2.528000pt;}
._0{margin-left:-1.334620pt;}
._1{width:1.494774pt;}
._6{width:2.764800pt;}
._7{width:4.155040pt;}
._11{width:5.093280pt;}
._13{width:6.021500pt;}
._b{width:7.192533pt;}
._d{width:8.706133pt;}
._e{width:9.705820pt;}
._12{width:10.780996pt;}
._c{width:12.022615pt;}
._8{width:12.943846pt;}
._10{width:13.913287pt;}
._f{width:14.941867pt;}
._15{width:17.288440pt;}
._3b{width:26.304000pt;}
._a{width:29.333333pt;}
._39{width:53.441287pt;}
._26{width:57.409287pt;}
._31{width:68.907953pt;}
._18{width:72.267953pt;}
._35{width:78.987953pt;}
._33{width:81.980427pt;}
._37{width:83.057132pt;}
._1c{width:84.640000pt;}
._19{width:93.866667pt;}
._36{width:96.825473pt;}
._30{width:100.266512pt;}
._34{width:101.461333pt;}
._1d{width:103.734620pt;}
._21{width:117.242760pt;}
._1f{width:120.026760pt;}
._2c{width:124.853333pt;}
._2e{width:126.955925pt;}
._27{width:129.217258pt;}
._2b{width:131.065473pt;}
._25{width:134.028233pt;}
._20{width:135.137287pt;}
._32{width:141.894713pt;}
._28{width:148.906667pt;}
._17{width:150.454620pt;}
._1a{width:152.022620pt;}
._22{width:157.272032pt;}
._1b{width:162.082573pt;}
._24{width:163.361287pt;}
._29{width:176.554667pt;}
._2d{width:183.894620pt;}
._3a{width:208.906667pt;}
._2f{width:237.621333pt;}
._38{width:239.627953pt;}
._2a{width:242.474667pt;}
._16{width:254.881287pt;}
._23{width:266.667953pt;}
._1e{width:312.480000pt;}
.fsa{font-size:31.093333pt;}
.fs1{font-size:32.000000pt;}
.fsc{font-size:34.202667pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs7{font-size:74.666667pt;}
.fs0{font-size:76.264000pt;}
.fs5{font-size:80.000000pt;}
.fs8{font-size:85.333333pt;}
.fsb{font-size:96.000000pt;}
.fs4{font-size:106.666667pt;}
.fs9{font-size:153.557867pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.570933pt;}
.y2f{bottom:13.955733pt;}
.y32{bottom:15.985200pt;}
.y33{bottom:27.212533pt;}
.y2e{bottom:32.622400pt;}
.y2{bottom:38.177600pt;}
.ya{bottom:47.999467pt;}
.y34{bottom:49.145200pt;}
.y2d{bottom:51.289067pt;}
.y9{bottom:62.399467pt;}
.y2c{bottom:69.955733pt;}
.y8{bottom:76.799467pt;}
.y7{bottom:94.979467pt;}
.yfb{bottom:151.183733pt;}
.y175{bottom:154.132800pt;}
.y168{bottom:154.147467pt;}
.y1af{bottom:154.162133pt;}
.y20a{bottom:156.898133pt;}
.y157{bottom:158.003467pt;}
.y194{bottom:160.919467pt;}
.yfa{bottom:165.847733pt;}
.y5b{bottom:167.862133pt;}
.y1e6{bottom:168.698133pt;}
.y11f{bottom:174.138133pt;}
.y167{bottom:174.152800pt;}
.y1ae{bottom:174.167467pt;}
.y209{bottom:175.564800pt;}
.ya9{bottom:177.587200pt;}
.y156{bottom:178.008800pt;}
.y193{bottom:180.924800pt;}
.y183{bottom:186.318133pt;}
.y5a{bottom:187.867467pt;}
.y11e{bottom:194.143467pt;}
.y166{bottom:194.158133pt;}
.y1ad{bottom:194.172800pt;}
.ya8{bottom:196.253867pt;}
.y1e5{bottom:196.698133pt;}
.y192{bottom:200.930133pt;}
.y208{bottom:203.564800pt;}
.y182{bottom:204.984800pt;}
.y59{bottom:207.872800pt;}
.y11d{bottom:214.148800pt;}
.y165{bottom:214.163467pt;}
.y1ac{bottom:214.178133pt;}
.y155{bottom:218.004800pt;}
.y207{bottom:222.231467pt;}
.y181{bottom:223.651467pt;}
.ya7{bottom:223.840533pt;}
.y1e4{bottom:224.698133pt;}
.y7c{bottom:227.567467pt;}
.y58{bottom:227.878133pt;}
.yf9{bottom:229.950133pt;}
.y29{bottom:231.919467pt;}
.y11c{bottom:234.154133pt;}
.y1ab{bottom:234.183467pt;}
.y154{bottom:238.010133pt;}
.y191{bottom:240.926133pt;}
.y180{bottom:242.318133pt;}
.ya6{bottom:242.507200pt;}
.y1e3{bottom:243.364800pt;}
.y7b{bottom:247.572800pt;}
.y57{bottom:247.883467pt;}
.yf8{bottom:249.955467pt;}
.y206{bottom:250.231467pt;}
.y28{bottom:250.591467pt;}
.y11b{bottom:254.159467pt;}
.y1aa{bottom:254.188800pt;}
.y153{bottom:258.015467pt;}
.y190{bottom:260.931467pt;}
.y17f{bottom:260.984800pt;}
.yd4{bottom:263.747200pt;}
.y27{bottom:265.255467pt;}
.y7a{bottom:267.578133pt;}
.y56{bottom:267.888800pt;}
.y205{bottom:268.898133pt;}
.yf7{bottom:269.960800pt;}
.ya5{bottom:270.093867pt;}
.y1e2{bottom:271.364800pt;}
.y174{bottom:274.150133pt;}
.y11a{bottom:274.164800pt;}
.y1a9{bottom:274.194133pt;}
.y152{bottom:278.020800pt;}
.y17e{bottom:279.651467pt;}
.y26{bottom:279.919467pt;}
.y18f{bottom:280.936800pt;}
.y138{bottom:283.570133pt;}
.yd3{bottom:283.752533pt;}
.y79{bottom:287.583467pt;}
.ya4{bottom:288.760533pt;}
.y1c4{bottom:288.984800pt;}
.yf6{bottom:289.966133pt;}
.y173{bottom:294.155467pt;}
.y119{bottom:294.170133pt;}
.y1a8{bottom:294.199467pt;}
.y25{bottom:294.583467pt;}
.y204{bottom:296.898133pt;}
.y151{bottom:298.026133pt;}
.y17d{bottom:298.318133pt;}
.y1e1{bottom:299.364800pt;}
.y18e{bottom:300.942133pt;}
.y137{bottom:303.575467pt;}
.yd2{bottom:303.757867pt;}
.y78{bottom:307.588800pt;}
.y1c3{bottom:307.651467pt;}
.y55{bottom:307.884800pt;}
.y24{bottom:309.247467pt;}
.yf5{bottom:309.971467pt;}
.y172{bottom:314.160800pt;}
.y118{bottom:314.175467pt;}
.y203{bottom:315.564800pt;}
.ya3{bottom:316.347200pt;}
.y17c{bottom:316.984800pt;}
.y150{bottom:318.031467pt;}
.y18d{bottom:320.947467pt;}
.y136{bottom:323.580800pt;}
.y23{bottom:323.911467pt;}
.y1e0{bottom:327.364800pt;}
.y77{bottom:327.594133pt;}
.y54{bottom:327.890133pt;}
.yf4{bottom:329.976800pt;}
.y171{bottom:334.166133pt;}
.y117{bottom:334.180800pt;}
.y1a7{bottom:334.195467pt;}
.ya2{bottom:335.013867pt;}
.y17b{bottom:335.651467pt;}
.y22{bottom:338.575467pt;}
.y18c{bottom:340.952800pt;}
.y202{bottom:343.564800pt;}
.y135{bottom:343.586133pt;}
.yd1{bottom:343.753867pt;}
.y1df{bottom:346.031467pt;}
.y76{bottom:347.599467pt;}
.y53{bottom:347.895467pt;}
.yf3{bottom:349.982133pt;}
.y21{bottom:353.239467pt;}
.ya1{bottom:353.680533pt;}
.y170{bottom:354.171467pt;}
.y116{bottom:354.186133pt;}
.y1a6{bottom:354.200800pt;}
.y14f{bottom:358.031467pt;}
.y18b{bottom:360.958133pt;}
.y201{bottom:362.231467pt;}
.y134{bottom:363.591467pt;}
.y1c2{bottom:363.651467pt;}
.yd0{bottom:363.759200pt;}
.y75{bottom:367.604800pt;}
.y52{bottom:367.900800pt;}
.y20{bottom:367.903467pt;}
.yf2{bottom:369.987467pt;}
.y1de{bottom:374.031467pt;}
.y16f{bottom:374.176800pt;}
.y164{bottom:374.191467pt;}
.y1a5{bottom:374.206133pt;}
.y14e{bottom:376.698133pt;}
.y18a{bottom:380.963467pt;}
.y9e{bottom:381.267200pt;}
.y133{bottom:383.596800pt;}
.ycf{bottom:383.764533pt;}
.y51{bottom:387.906133pt;}
.yf1{bottom:389.992800pt;}
.y200{bottom:390.231467pt;}
.ya0{bottom:390.600533pt;}
.y1c1{bottom:391.651467pt;}
.y1dd{bottom:392.698133pt;}
.y115{bottom:394.182133pt;}
.y163{bottom:394.196800pt;}
.y1a4{bottom:394.211467pt;}
.y14d{bottom:395.364800pt;}
.y1f{bottom:397.903467pt;}
.y9d{bottom:399.933867pt;}
.y189{bottom:400.968800pt;}
.y132{bottom:403.602133pt;}
.yce{bottom:403.769867pt;}
.y74{bottom:407.600800pt;}
.y50{bottom:407.911467pt;}
.y1ff{bottom:408.898133pt;}
.y9f{bottom:409.267200pt;}
.yf0{bottom:409.998133pt;}
.y1e{bottom:413.239467pt;}
.y14c{bottom:414.031467pt;}
.y114{bottom:414.187467pt;}
.y162{bottom:414.202133pt;}
.y1a3{bottom:414.216800pt;}
.y9c{bottom:418.600533pt;}
.y1c0{bottom:419.651467pt;}
.y1dc{bottom:420.698133pt;}
.y188{bottom:420.974133pt;}
.y131{bottom:423.607467pt;}
.ycd{bottom:423.775200pt;}
.y73{bottom:427.606133pt;}
.y4f{bottom:427.916800pt;}
.yef{bottom:430.003467pt;}
.y1d{bottom:431.911467pt;}
.y14b{bottom:432.698133pt;}
.y16e{bottom:434.178133pt;}
.y113{bottom:434.192800pt;}
.y161{bottom:434.207467pt;}
.y1a2{bottom:434.222133pt;}
.y1fe{bottom:436.898133pt;}
.y1db{bottom:439.364800pt;}
.y187{bottom:440.979467pt;}
.y130{bottom:443.612800pt;}
.y9b{bottom:446.187200pt;}
.y1c{bottom:447.247467pt;}
.y72{bottom:447.611467pt;}
.y1bf{bottom:447.651467pt;}
.y4e{bottom:447.922133pt;}
.yee{bottom:450.008800pt;}
.y14a{bottom:451.364800pt;}
.y16d{bottom:454.183467pt;}
.y112{bottom:454.198133pt;}
.y160{bottom:454.212800pt;}
.y9a{bottom:455.520533pt;}
.y1fd{bottom:455.564800pt;}
.y1da{bottom:458.031467pt;}
.y186{bottom:460.984800pt;}
.y1b{bottom:462.583467pt;}
.y12f{bottom:463.618133pt;}
.y4d{bottom:467.927467pt;}
.yed{bottom:470.014133pt;}
.ycc{bottom:471.649200pt;}
.y16c{bottom:474.188800pt;}
.y111{bottom:474.203467pt;}
.y15f{bottom:474.218133pt;}
.y1be{bottom:475.651467pt;}
.y1a{bottom:477.919467pt;}
.y1fc{bottom:483.564800pt;}
.y12e{bottom:483.623467pt;}
.y1d9{bottom:486.031467pt;}
.y71{bottom:487.607467pt;}
.y4c{bottom:487.932800pt;}
.y149{bottom:489.918133pt;}
.yec{bottom:490.019467pt;}
.ycb{bottom:490.315867pt;}
.y99{bottom:492.440533pt;}
.y19{bottom:493.255467pt;}
.y16b{bottom:494.194133pt;}
.y110{bottom:494.208800pt;}
.y15e{bottom:494.223467pt;}
.y185{bottom:500.984800pt;}
.y1fb{bottom:502.231467pt;}
.y12d{bottom:503.628800pt;}
.y1bd{bottom:503.651467pt;}
.y1d8{bottom:504.698133pt;}
.y70{bottom:507.612800pt;}
.y4b{bottom:507.938133pt;}
.y18{bottom:508.591467pt;}
.y148{bottom:509.923467pt;}
.yeb{bottom:510.024800pt;}
.y16a{bottom:514.199467pt;}
.y179{bottom:514.214133pt;}
.y15d{bottom:514.228800pt;}
.yc8{bottom:517.902533pt;}
.y98{bottom:518.667200pt;}
.y17{bottom:523.927467pt;}
.yca{bottom:527.235867pt;}
.y6f{bottom:527.618133pt;}
.y4a{bottom:527.943467pt;}
.y147{bottom:529.928800pt;}
.y1fa{bottom:530.231467pt;}
.y1bc{bottom:531.651467pt;}
.y1d7{bottom:532.698133pt;}
.y10f{bottom:534.204800pt;}
.y178{bottom:534.219467pt;}
.y1a1{bottom:534.234133pt;}
.yc7{bottom:536.569200pt;}
.y16{bottom:539.263467pt;}
.y12c{bottom:543.624800pt;}
.yc9{bottom:545.902533pt;}
.y97{bottom:546.253867pt;}
.y6e{bottom:547.623467pt;}
.y49{bottom:547.948800pt;}
.y1f9{bottom:548.898133pt;}
.yea{bottom:550.020800pt;}
.y1d6{bottom:551.364800pt;}
.y10e{bottom:554.210133pt;}
.y15c{bottom:554.224800pt;}
.y1a0{bottom:554.239467pt;}
.y15{bottom:554.599467pt;}
.yc6{bottom:555.235867pt;}
.y1bb{bottom:559.651467pt;}
.y12b{bottom:563.630133pt;}
.y96{bottom:564.920533pt;}
.y1f8{bottom:567.564800pt;}
.y6d{bottom:567.628800pt;}
.y48{bottom:567.954133pt;}
.y146{bottom:569.924800pt;}
.y14{bottom:569.935467pt;}
.ye9{bottom:570.026133pt;}
.y1d5{bottom:570.031467pt;}
.y10d{bottom:574.215467pt;}
.y15b{bottom:574.230133pt;}
.y19f{bottom:574.244800pt;}
.yc4{bottom:582.822533pt;}
.y12a{bottom:583.635467pt;}
.y6c{bottom:587.634133pt;}
.y1ba{bottom:587.651467pt;}
.y47{bottom:587.959467pt;}
.y145{bottom:589.930133pt;}
.ye8{bottom:589.991467pt;}
.yc5{bottom:592.155867pt;}
.y93{bottom:592.507200pt;}
.y10c{bottom:594.220800pt;}
.y15a{bottom:594.235467pt;}
.y19e{bottom:594.250133pt;}
.y1f7{bottom:595.564800pt;}
.y95{bottom:596.280533pt;}
.y1d4{bottom:598.031467pt;}
.yc3{bottom:601.489200pt;}
.y129{bottom:603.640800pt;}
.y6b{bottom:607.639467pt;}
.y46{bottom:607.964800pt;}
.y144{bottom:609.935467pt;}
.ye7{bottom:609.996800pt;}
.y10b{bottom:614.226133pt;}
.y1f6{bottom:614.231467pt;}
.y159{bottom:614.240800pt;}
.y94{bottom:614.947200pt;}
.y1b9{bottom:615.651467pt;}
.y13{bottom:618.160667pt;}
.y92{bottom:618.733867pt;}
.yc2{bottom:620.155867pt;}
.y128{bottom:623.646133pt;}
.y1d3{bottom:626.031467pt;}
.y45{bottom:627.970133pt;}
.y143{bottom:629.940800pt;}
.ye6{bottom:630.002133pt;}
.y10a{bottom:634.231467pt;}
.y158{bottom:634.246133pt;}
.y1b8{bottom:634.318133pt;}
.y12{bottom:636.827333pt;}
.y1f5{bottom:642.231467pt;}
.y127{bottom:643.651467pt;}
.y91{bottom:646.320533pt;}
.y6a{bottom:647.635467pt;}
.ybf{bottom:647.742533pt;}
.y44{bottom:647.975467pt;}
.y142{bottom:649.946133pt;}
.ye5{bottom:650.007467pt;}
.y1d2{bottom:654.031467pt;}
.y109{bottom:654.236800pt;}
.y19d{bottom:654.251467pt;}
.y11{bottom:655.494000pt;}
.yc1{bottom:657.075867pt;}
.y2b{bottom:659.311467pt;}
.y1b7{bottom:662.318133pt;}
.y90{bottom:664.987200pt;}
.ybe{bottom:666.409200pt;}
.y69{bottom:667.640800pt;}
.y43{bottom:667.980800pt;}
.y141{bottom:669.951467pt;}
.y1f4{bottom:670.231467pt;}
.y1d1{bottom:672.698133pt;}
.y10{bottom:674.160667pt;}
.y108{bottom:674.242133pt;}
.y19c{bottom:674.256800pt;}
.yc0{bottom:675.742533pt;}
.y2a{bottom:676.639467pt;}
.y126{bottom:683.651467pt;}
.ybd{bottom:685.075867pt;}
.y68{bottom:687.646133pt;}
.y42{bottom:687.986133pt;}
.y140{bottom:689.956800pt;}
.ye4{bottom:690.003467pt;}
.y1b6{bottom:690.318133pt;}
.y8f{bottom:692.573867pt;}
.y107{bottom:694.247467pt;}
.y19b{bottom:694.262133pt;}
.y1f3{bottom:698.231467pt;}
.y1d0{bottom:700.698133pt;}
.y8c{bottom:701.907200pt;}
.y125{bottom:702.318133pt;}
.y67{bottom:707.651467pt;}
.y13f{bottom:709.962133pt;}
.ye3{bottom:710.008800pt;}
.y8e{bottom:711.240533pt;}
.yba{bottom:712.662533pt;}
.y106{bottom:714.252800pt;}
.y19a{bottom:714.267467pt;}
.y1b5{bottom:718.318133pt;}
.y1cf{bottom:719.364800pt;}
.y8b{bottom:720.573867pt;}
.y124{bottom:720.984800pt;}
.ybc{bottom:721.995867pt;}
.y1f2{bottom:726.231467pt;}
.y41{bottom:727.982133pt;}
.y8d{bottom:729.907200pt;}
.y13e{bottom:729.967467pt;}
.ye2{bottom:730.014133pt;}
.yb9{bottom:731.329200pt;}
.y105{bottom:734.258133pt;}
.y199{bottom:734.272800pt;}
.y123{bottom:739.651467pt;}
.ybb{bottom:740.662533pt;}
.y211{bottom:744.898133pt;}
.y1b4{bottom:746.318133pt;}
.y1ce{bottom:747.364800pt;}
.y66{bottom:747.651467pt;}
.y40{bottom:747.987467pt;}
.y13d{bottom:749.972800pt;}
.yb8{bottom:749.995867pt;}
.ye1{bottom:750.019467pt;}
.y1f1{bottom:754.231467pt;}
.y104{bottom:754.263467pt;}
.y198{bottom:754.278133pt;}
.y8a{bottom:757.493867pt;}
.y122{bottom:758.318133pt;}
.y210{bottom:763.564800pt;}
.y1cd{bottom:766.031467pt;}
.yf{bottom:766.205867pt;}
.y3f{bottom:767.992800pt;}
.y13c{bottom:769.978133pt;}
.ye0{bottom:770.024800pt;}
.y103{bottom:774.268800pt;}
.y197{bottom:774.283467pt;}
.y1b3{bottom:774.318133pt;}
.y89{bottom:776.160533pt;}
.y121{bottom:776.984800pt;}
.yb7{bottom:777.582533pt;}
.y65{bottom:780.984800pt;}
.y1f0{bottom:782.231467pt;}
.y3e{bottom:787.998133pt;}
.y13b{bottom:789.983467pt;}
.ydf{bottom:790.030133pt;}
.ye{bottom:790.205867pt;}
.y1b2{bottom:792.984800pt;}
.y1cc{bottom:794.031467pt;}
.y184{bottom:794.259467pt;}
.y102{bottom:794.274133pt;}
.y196{bottom:794.288800pt;}
.y120{bottom:795.651467pt;}
.yb6{bottom:796.249200pt;}
.y1ef{bottom:800.898133pt;}
.y88{bottom:803.747200pt;}
.y87{bottom:803.760533pt;}
.y3d{bottom:808.003467pt;}
.y13a{bottom:809.988800pt;}
.yde{bottom:810.035467pt;}
.y20f{bottom:810.231467pt;}
.y1cb{bottom:812.698133pt;}
.y177{bottom:814.264800pt;}
.y101{bottom:814.279467pt;}
.y195{bottom:814.294133pt;}
.y1ee{bottom:819.564800pt;}
.yb5{bottom:823.835867pt;}
.yd{bottom:825.544400pt;}
.y20e{bottom:828.898133pt;}
.y86{bottom:829.987200pt;}
.y139{bottom:829.994133pt;}
.y1b1{bottom:831.651467pt;}
.yb2{bottom:833.169200pt;}
.y176{bottom:834.270133pt;}
.y100{bottom:834.284800pt;}
.y1ca{bottom:840.698133pt;}
.yb4{bottom:842.502533pt;}
.y1ed{bottom:847.564800pt;}
.y3c{bottom:847.999467pt;}
.ydd{bottom:849.999467pt;}
.yb1{bottom:851.835867pt;}
.y64{bottom:854.275467pt;}
.yff{bottom:854.290133pt;}
.yc{bottom:856.211067pt;}
.y85{bottom:857.573867pt;}
.yb3{bottom:861.169200pt;}
.y1ec{bottom:866.231467pt;}
.y3b{bottom:868.004800pt;}
.y1c9{bottom:868.698133pt;}
.ydc{bottom:870.004800pt;}
.y63{bottom:874.280800pt;}
.yfe{bottom:874.295467pt;}
.y20d{bottom:875.564800pt;}
.y1b0{bottom:880.984800pt;}
.y84{bottom:883.800533pt;}
.yb{bottom:886.877733pt;}
.y1c8{bottom:887.364800pt;}
.y3a{bottom:888.010133pt;}
.yb0{bottom:888.755867pt;}
.ydb{bottom:890.010133pt;}
.y1eb{bottom:894.231467pt;}
.y62{bottom:894.286133pt;}
.yfd{bottom:894.300800pt;}
.yaf{bottom:907.422533pt;}
.y39{bottom:908.015467pt;}
.yda{bottom:910.015467pt;}
.y81{bottom:911.387200pt;}
.y1ea{bottom:912.898133pt;}
.y61{bottom:914.291467pt;}
.yfc{bottom:914.306133pt;}
.y83{bottom:915.160533pt;}
.y1c7{bottom:915.364800pt;}
.y20c{bottom:922.231467pt;}
.y38{bottom:928.020800pt;}
.yd9{bottom:930.020800pt;}
.y82{bottom:933.827200pt;}
.y60{bottom:934.296800pt;}
.y169{bottom:934.311467pt;}
.yad{bottom:935.009200pt;}
.y80{bottom:937.613867pt;}
.yae{bottom:938.782533pt;}
.y1e9{bottom:940.898133pt;}
.y1c6{bottom:943.364800pt;}
.y37{bottom:948.026133pt;}
.yd8{bottom:950.026133pt;}
.y5f{bottom:954.302133pt;}
.y17a{bottom:954.316800pt;}
.yac{bottom:961.235867pt;}
.y7f{bottom:965.200533pt;}
.y36{bottom:968.031467pt;}
.y1e8{bottom:968.898133pt;}
.yd7{bottom:970.031467pt;}
.y1c5{bottom:971.364800pt;}
.y5e{bottom:974.307467pt;}
.y6{bottom:977.126533pt;}
.y7e{bottom:983.867200pt;}
.y20b{bottom:987.564800pt;}
.yab{bottom:988.822533pt;}
.y5d{bottom:994.312800pt;}
.y1e7{bottom:996.898133pt;}
.y5{bottom:1005.540000pt;}
.yaa{bottom:1007.489200pt;}
.y35{bottom:1008.031467pt;}
.yd6{bottom:1010.031467pt;}
.y5c{bottom:1014.318133pt;}
.y7d{bottom:1015.564800pt;}
.y1{bottom:1019.032000pt;}
.y3{bottom:1038.906267pt;}
.yd5{bottom:1039.186933pt;}
.y30{bottom:1053.625200pt;}
.y31{bottom:1084.897600pt;}
.h4{height:33.600000pt;}
.h6{height:50.400000pt;}
.h2{height:55.488000pt;}
.h9{height:56.000000pt;}
.h3{height:57.198000pt;}
.h5{height:61.600000pt;}
.h14{height:61.728000pt;}
.h15{height:61.760000pt;}
.ha{height:64.000000pt;}
.h8{height:64.102033pt;}
.h16{height:72.000000pt;}
.h13{height:76.922440pt;}
.hc{height:80.000000pt;}
.he{height:93.333333pt;}
.hf{height:108.426667pt;}
.h7{height:112.000000pt;}
.hd{height:130.666667pt;}
.h11{height:145.760000pt;}
.h10{height:160.853333pt;}
.hb{height:161.235760pt;}
.h12{height:168.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:314.870667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:18.897600pt;}
.xe{left:46.923600pt;}
.x1{left:48.000000pt;}
.x5{left:51.023600pt;}
.x4{left:53.877467pt;}
.xf{left:94.488133pt;}
.x22{left:98.597333pt;}
.x17{left:99.490667pt;}
.x26{left:101.530667pt;}
.x28{left:103.144000pt;}
.x34{left:104.690667pt;}
.x27{left:106.370667pt;}
.x2f{left:107.304000pt;}
.x2e{left:108.224000pt;}
.x32{left:110.957333pt;}
.x24{left:112.450667pt;}
.x39{left:113.890667pt;}
.x25{left:115.277333pt;}
.x13{left:119.290667pt;}
.x3a{left:120.504000pt;}
.x18{left:123.317333pt;}
.x1e{left:124.517333pt;}
.x11{left:126.077333pt;}
.x30{left:127.304000pt;}
.x10{left:128.488133pt;}
.x1a{left:130.437333pt;}
.x14{left:133.637333pt;}
.x2{left:138.580000pt;}
.x3{left:186.580000pt;}
.xa{left:188.976400pt;}
.x3b{left:194.890667pt;}
.x6{left:196.850400pt;}
.x7{left:198.558267pt;}
.x35{left:202.664000pt;}
.x1f{left:206.104000pt;}
.x3d{left:207.277333pt;}
.x16{left:208.810667pt;}
.x9{left:210.097067pt;}
.x8{left:212.560667pt;}
.x15{left:215.490667pt;}
.x3f{left:217.677333pt;}
.x21{left:234.797333pt;}
.x29{left:242.637333pt;}
.x19{left:244.584000pt;}
.x1b{left:249.224000pt;}
.x2c{left:253.157333pt;}
.x33{left:256.104000pt;}
.x3c{left:259.397333pt;}
.x20{left:260.357333pt;}
.x31{left:261.264000pt;}
.x23{left:263.810667pt;}
.x41{left:357.817467pt;}
.x1c{left:386.797333pt;}
.x1d{left:495.904000pt;}
.x37{left:549.450667pt;}
.x2d{left:554.450667pt;}
.x12{left:558.717333pt;}
.x3e{left:567.410667pt;}
.x36{left:574.544000pt;}
.x2b{left:633.770667pt;}
.x38{left:636.090667pt;}
.x2a{left:638.357333pt;}
.x40{left:650.370667pt;}
.xb{left:730.000933pt;}
.x42{left:736.987467pt;}
.xc{left:738.204267pt;}
}




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