
    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_40fa4943033caf091cdd2f7d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_533b74c433e2f69db5dc011c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.697000;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_a82872c11f5f051d996dbd86.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.165000;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_44a70077ee1e19a0864b0c62.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.193000;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_16647258e75e3db5ef9f5105.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_91b00189ec87628cbb7f3667.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.199900;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_888338a19550148d67849736.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172000;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_16647258e75e3db5ef9f5105.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.698000;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_1983361924bd24c65e48f227.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.196000;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_84f126e1418e7f092b24f1aa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.135000;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_9fa0bfa64bf4f992b863bf25.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.156000;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(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,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);}
.v2{vertical-align:-19.980600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.581400px;}
.v1{vertical-align:19.980600px;}
.v4{vertical-align:66.022800px;}
.ls5b{letter-spacing:-3.132000px;}
.ls5a{letter-spacing:-2.592000px;}
.ls59{letter-spacing:-2.376000px;}
.ls1d{letter-spacing:-2.268000px;}
.ls41{letter-spacing:-2.214000px;}
.ls57{letter-spacing:-2.052000px;}
.ls22{letter-spacing:-1.080000px;}
.ls1f{letter-spacing:-0.840000px;}
.ls31{letter-spacing:-0.613800px;}
.ls58{letter-spacing:-0.600000px;}
.ls49{letter-spacing:-0.558000px;}
.ls37{letter-spacing:-0.540000px;}
.ls35{letter-spacing:-0.420000px;}
.ls4e{letter-spacing:-0.419760px;}
.ls48{letter-spacing:-0.414000px;}
.ls34{letter-spacing:-0.300000px;}
.ls4a{letter-spacing:-0.279000px;}
.ls20{letter-spacing:-0.240000px;}
.ls23{letter-spacing:-0.223200px;}
.ls55{letter-spacing:-0.204000px;}
.ls21{letter-spacing:-0.180000px;}
.ls47{letter-spacing:-0.174900px;}
.ls2f{letter-spacing:-0.167400px;}
.ls53{letter-spacing:-0.139920px;}
.ls36{letter-spacing:-0.120000px;}
.ls30{letter-spacing:-0.111600px;}
.ls4d{letter-spacing:-0.104940px;}
.ls10{letter-spacing:-0.060000px;}
.ls3d{letter-spacing:-0.055800px;}
.ls56{letter-spacing:-0.051000px;}
.lsc{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.002202px;}
.ls2c{letter-spacing:0.055800px;}
.ls32{letter-spacing:0.060000px;}
.ls13{letter-spacing:0.102000px;}
.ls19{letter-spacing:0.111600px;}
.ls7{letter-spacing:0.120000px;}
.ls2e{letter-spacing:0.130126px;}
.ls38{letter-spacing:0.138360px;}
.ls27{letter-spacing:0.150000px;}
.ls18{letter-spacing:0.167400px;}
.ls45{letter-spacing:0.174900px;}
.ls8{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.222000px;}
.ls2b{letter-spacing:0.223200px;}
.ls26{letter-spacing:0.240000px;}
.ls5d{letter-spacing:0.255000px;}
.ls4f{letter-spacing:0.270000px;}
.ls9{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.306000px;}
.ls44{letter-spacing:0.306900px;}
.ls50{letter-spacing:0.330000px;}
.ls12{letter-spacing:0.333000px;}
.ls33{letter-spacing:0.334560px;}
.ls29{letter-spacing:0.334800px;}
.ls14{letter-spacing:0.360000px;}
.ls5c{letter-spacing:0.390000px;}
.ls28{letter-spacing:0.390600px;}
.lsb{letter-spacing:0.420000px;}
.ls1a{letter-spacing:0.446400px;}
.ls39{letter-spacing:0.450000px;}
.lsa{letter-spacing:0.480000px;}
.ls24{letter-spacing:0.502200px;}
.ls1{letter-spacing:0.510000px;}
.ls3b{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.561000px;}
.ls25{letter-spacing:0.600000px;}
.ls5{letter-spacing:0.612000px;}
.ls1b{letter-spacing:0.613800px;}
.ls15{letter-spacing:0.660000px;}
.ls4{letter-spacing:0.663000px;}
.ls3{letter-spacing:0.714000px;}
.ls4c{letter-spacing:0.720000px;}
.lse{letter-spacing:0.765000px;}
.ls46{letter-spacing:0.780000px;}
.ls40{letter-spacing:0.840000px;}
.ls6{letter-spacing:0.867000px;}
.ls1c{letter-spacing:0.892800px;}
.ls4b{letter-spacing:0.900000px;}
.ls0{letter-spacing:0.918000px;}
.ls42{letter-spacing:0.960000px;}
.lsf{letter-spacing:0.969000px;}
.ls3f{letter-spacing:1.020000px;}
.ls1e{letter-spacing:1.080000px;}
.ls3e{letter-spacing:1.200000px;}
.ls3a{letter-spacing:1.440000px;}
.ls52{letter-spacing:1.908000px;}
.ls54{letter-spacing:2.091000px;}
.ls3c{letter-spacing:2.120400px;}
.ls2a{letter-spacing:2.734200px;}
.ls51{letter-spacing:3.084000px;}
.ls17{letter-spacing:3.660000px;}
.ls43{letter-spacing:21.817800px;}
.ls2d{letter-spacing:51.559200px;}
.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;}
}
.wsec{word-spacing:-13.200000px;}
.ws63{word-spacing:-12.600000px;}
.ws41{word-spacing:-12.331800px;}
.ws1{word-spacing:-12.240000px;}
.ws8a{word-spacing:-11.997000px;}
.ws0{word-spacing:-11.577000px;}
.ws87{word-spacing:-11.550600px;}
.ws21{word-spacing:-11.520000px;}
.ws62{word-spacing:-11.280000px;}
.wsdf{word-spacing:-10.980000px;}
.wsc0{word-spacing:-10.965000px;}
.wsbb{word-spacing:-10.761000px;}
.wsca{word-spacing:-10.746000px;}
.wsd4{word-spacing:-10.680000px;}
.ws79{word-spacing:-10.584000px;}
.ws1f{word-spacing:-10.530000px;}
.wsdc{word-spacing:-10.422000px;}
.wseb{word-spacing:-10.206000px;}
.wsc3{word-spacing:-9.588000px;}
.ws22{word-spacing:-8.901000px;}
.ws9a{word-spacing:-8.487000px;}
.ws8e{word-spacing:-7.520700px;}
.ws20{word-spacing:-7.345800px;}
.wsaf{word-spacing:-7.240860px;}
.wsba{word-spacing:-7.205880px;}
.ws99{word-spacing:-7.170900px;}
.ws42{word-spacing:-7.124377px;}
.ws64{word-spacing:-6.994251px;}
.wsb7{word-spacing:-6.926040px;}
.wsd8{word-spacing:-2.520000px;}
.wsd0{word-spacing:-2.460000px;}
.ws67{word-spacing:-2.100000px;}
.wsbf{word-spacing:-2.091000px;}
.ws2d{word-spacing:-2.040000px;}
.ws7b{word-spacing:-1.980000px;}
.ws25{word-spacing:-1.920000px;}
.ws1a{word-spacing:-1.860000px;}
.ws50{word-spacing:-1.841400px;}
.ws3c{word-spacing:-1.785600px;}
.wsb5{word-spacing:-1.740000px;}
.ws26{word-spacing:-1.680000px;}
.ws95{word-spacing:-1.674000px;}
.wsc5{word-spacing:-1.632000px;}
.ws5b{word-spacing:-1.620000px;}
.wsd3{word-spacing:-1.581000px;}
.ws24{word-spacing:-1.560000px;}
.ws98{word-spacing:-1.506600px;}
.ws1b{word-spacing:-1.500000px;}
.ws4d{word-spacing:-1.450800px;}
.ws1c{word-spacing:-1.440000px;}
.ws60{word-spacing:-1.395000px;}
.ws28{word-spacing:-1.380000px;}
.ws73{word-spacing:-1.339200px;}
.ws6b{word-spacing:-1.320000px;}
.wsb4{word-spacing:-1.260000px;}
.wsa1{word-spacing:-1.227600px;}
.wscd{word-spacing:-1.200000px;}
.ws3a{word-spacing:-1.171800px;}
.ws47{word-spacing:-1.140000px;}
.ws13{word-spacing:-1.080000px;}
.ws35{word-spacing:-1.060200px;}
.ws80{word-spacing:-1.020000px;}
.wsc9{word-spacing:-0.918000px;}
.wsef{word-spacing:-0.900000px;}
.ws29{word-spacing:-0.840000px;}
.ws9{word-spacing:-0.816000px;}
.ws3d{word-spacing:-0.781200px;}
.wsb9{word-spacing:-0.780000px;}
.ws9d{word-spacing:-0.720000px;}
.wsc2{word-spacing:-0.714000px;}
.wsaa{word-spacing:-0.660000px;}
.ws32{word-spacing:-0.600000px;}
.ws70{word-spacing:-0.540000px;}
.ws6{word-spacing:-0.510000px;}
.wsda{word-spacing:-0.480000px;}
.ws39{word-spacing:-0.446400px;}
.wsbd{word-spacing:-0.420000px;}
.wsa{word-spacing:-0.408000px;}
.ws2{word-spacing:-0.355200px;}
.ws4a{word-spacing:-0.334800px;}
.ws11{word-spacing:-0.240000px;}
.ws37{word-spacing:-0.223200px;}
.ws1e{word-spacing:-0.222000px;}
.wse{word-spacing:-0.204000px;}
.ws18{word-spacing:-0.180000px;}
.wsa7{word-spacing:-0.120000px;}
.ws94{word-spacing:-0.111600px;}
.wsbc{word-spacing:-0.060000px;}
.wsa3{word-spacing:-0.055800px;}
.ws3{word-spacing:0.000000px;}
.ws74{word-spacing:0.055800px;}
.ws2c{word-spacing:0.060000px;}
.ws78{word-spacing:0.111600px;}
.ws31{word-spacing:0.120000px;}
.ws5f{word-spacing:0.167400px;}
.ws9e{word-spacing:0.223200px;}
.wsae{word-spacing:0.240000px;}
.ws38{word-spacing:0.279000px;}
.ws82{word-spacing:0.300000px;}
.ws56{word-spacing:0.360000px;}
.wsa6{word-spacing:0.420000px;}
.wsc6{word-spacing:0.459000px;}
.ws83{word-spacing:0.480000px;}
.ws55{word-spacing:0.540000px;}
.ws9f{word-spacing:0.558000px;}
.ws7e{word-spacing:0.600000px;}
.ws2e{word-spacing:0.660000px;}
.wsc{word-spacing:0.663000px;}
.wsf8{word-spacing:0.714000px;}
.ws6a{word-spacing:0.720000px;}
.wsa8{word-spacing:0.780000px;}
.ws96{word-spacing:0.781200px;}
.ws46{word-spacing:0.840000px;}
.wsc8{word-spacing:0.867000px;}
.ws9c{word-spacing:0.900000px;}
.wsab{word-spacing:0.960000px;}
.ws71{word-spacing:1.004400px;}
.ws4e{word-spacing:1.060200px;}
.ws2b{word-spacing:1.080000px;}
.ws34{word-spacing:1.116000px;}
.ws27{word-spacing:1.140000px;}
.wsb{word-spacing:1.173000px;}
.ws7f{word-spacing:1.200000px;}
.ws61{word-spacing:1.227600px;}
.ws68{word-spacing:1.260000px;}
.ws72{word-spacing:1.283400px;}
.ws53{word-spacing:1.320000px;}
.ws77{word-spacing:1.339200px;}
.ws19{word-spacing:1.380000px;}
.wsa0{word-spacing:1.395000px;}
.wsc7{word-spacing:1.428000px;}
.ws44{word-spacing:1.440000px;}
.ws58{word-spacing:1.500000px;}
.ws16{word-spacing:1.560000px;}
.ws8{word-spacing:1.581000px;}
.ws6d{word-spacing:1.620000px;}
.ws7{word-spacing:1.632000px;}
.ws75{word-spacing:1.674000px;}
.ws5{word-spacing:1.683000px;}
.ws76{word-spacing:1.729800px;}
.ws6e{word-spacing:1.740000px;}
.ws36{word-spacing:1.785600px;}
.ws7d{word-spacing:1.800000px;}
.ws4c{word-spacing:1.841400px;}
.wsf{word-spacing:1.860000px;}
.ws93{word-spacing:1.897200px;}
.ws10{word-spacing:1.920000px;}
.ws48{word-spacing:1.980000px;}
.wsa2{word-spacing:2.008800px;}
.ws14{word-spacing:2.040000px;}
.ws17{word-spacing:2.100000px;}
.wsa4{word-spacing:2.120400px;}
.ws66{word-spacing:2.160000px;}
.ws6c{word-spacing:2.280000px;}
.ws12{word-spacing:2.340000px;}
.ws97{word-spacing:2.343600px;}
.wse2{word-spacing:2.400000px;}
.ws91{word-spacing:2.460000px;}
.ws84{word-spacing:2.520000px;}
.wsb6{word-spacing:2.566800px;}
.wse3{word-spacing:2.580000px;}
.ws4b{word-spacing:2.622600px;}
.ws5c{word-spacing:2.640000px;}
.ws54{word-spacing:2.700000px;}
.wsd{word-spacing:2.703000px;}
.wsbe{word-spacing:2.760000px;}
.ws2a{word-spacing:2.820000px;}
.ws4f{word-spacing:2.845800px;}
.ws5a{word-spacing:2.880000px;}
.ws92{word-spacing:2.901600px;}
.ws59{word-spacing:3.000000px;}
.ws81{word-spacing:3.060000px;}
.ws2f{word-spacing:3.120000px;}
.ws49{word-spacing:3.124800px;}
.ws1d{word-spacing:3.180000px;}
.ws4{word-spacing:3.213000px;}
.ws5e{word-spacing:3.236400px;}
.ws33{word-spacing:3.240000px;}
.ws57{word-spacing:3.300000px;}
.ws7c{word-spacing:3.360000px;}
.wsee{word-spacing:3.480000px;}
.ws69{word-spacing:3.540000px;}
.ws15{word-spacing:3.600000px;}
.ws3b{word-spacing:3.627000px;}
.wsb3{word-spacing:3.660000px;}
.ws3e{word-spacing:3.794400px;}
.ws52{word-spacing:3.900000px;}
.wsb2{word-spacing:4.020000px;}
.ws85{word-spacing:4.080000px;}
.wse4{word-spacing:4.131000px;}
.ws6f{word-spacing:4.200000px;}
.wsb1{word-spacing:4.260000px;}
.ws5d{word-spacing:4.620000px;}
.ws45{word-spacing:4.680000px;}
.ws3f{word-spacing:4.854600px;}
.wsd1{word-spacing:4.980000px;}
.ws30{word-spacing:5.160000px;}
.wsd2{word-spacing:5.580000px;}
.wsf4{word-spacing:5.640000px;}
.wsad{word-spacing:6.060000px;}
.wsf3{word-spacing:6.240000px;}
.ws40{word-spacing:7.254000px;}
.wsa9{word-spacing:7.920000px;}
.ws90{word-spacing:21.817800px;}
.ws8d{word-spacing:77.171400px;}
.ws89{word-spacing:77.227200px;}
.ws8c{word-spacing:150.269400px;}
.ws8b{word-spacing:150.715800px;}
.ws88{word-spacing:186.327300px;}
.ws86{word-spacing:463.363200px;}
.wsd5{word-spacing:966.384000px;}
.wsdb{word-spacing:966.816000px;}
.wsac{word-spacing:966.924000px;}
.wsd7{word-spacing:966.978000px;}
.wscb{word-spacing:967.032000px;}
.wse5{word-spacing:967.194000px;}
.ws7a{word-spacing:967.248000px;}
.wsc1{word-spacing:967.302000px;}
.wsb8{word-spacing:967.356000px;}
.wsdd{word-spacing:967.464000px;}
.wsf6{word-spacing:967.518000px;}
.wse9{word-spacing:967.572000px;}
.wse7{word-spacing:967.626000px;}
.wsce{word-spacing:968.598000px;}
.ws51{word-spacing:968.814000px;}
.ws23{word-spacing:969.138000px;}
.ws9b{word-spacing:969.354000px;}
.wse0{word-spacing:969.624000px;}
.wsf0{word-spacing:969.678000px;}
.wscf{word-spacing:1396.062000px;}
.wsd6{word-spacing:1396.224000px;}
.wsa5{word-spacing:1396.980000px;}
.wsb0{word-spacing:1397.142000px;}
.wse1{word-spacing:1397.412000px;}
.wse6{word-spacing:1397.574000px;}
.wsf1{word-spacing:1397.628000px;}
.ws65{word-spacing:1397.736000px;}
.wsf2{word-spacing:1397.790000px;}
.wsc4{word-spacing:1398.384000px;}
.wsd9{word-spacing:1398.600000px;}
.wsea{word-spacing:1398.654000px;}
.wse8{word-spacing:1398.708000px;}
.ws43{word-spacing:1398.762000px;}
.wsf7{word-spacing:1398.924000px;}
.ws8f{word-spacing:1399.248000px;}
.wscc{word-spacing:1400.166000px;}
.wsde{word-spacing:1400.274000px;}
.wsf5{word-spacing:1400.976000px;}
.wsed{word-spacing:1403.028000px;}
._9{margin-left:-969.233100px;}
._41{margin-left:-967.705500px;}
._17{margin-left:-966.681000px;}
._c{margin-left:-16.773000px;}
._a{margin-left:-14.640000px;}
._0{margin-left:-11.520000px;}
._38{margin-left:-7.921800px;}
._12{margin-left:-6.740640px;}
._8{margin-left:-5.711400px;}
._7{margin-left:-4.200000px;}
._2{margin-left:-2.880000px;}
._1{margin-left:-1.440000px;}
._5{width:1.013400px;}
._3{width:2.070600px;}
._4{width:3.136500px;}
._6{width:4.445400px;}
._b{width:5.808000px;}
._42{width:6.900000px;}
._1e{width:11.773800px;}
._3b{width:18.484200px;}
._3d{width:20.974200px;}
._1a{width:22.041000px;}
._3a{width:23.640000px;}
._40{width:26.950200px;}
._16{width:30.967800px;}
._1d{width:33.814800px;}
._3f{width:35.041800px;}
._37{width:36.380400px;}
._3e{width:40.254600px;}
._36{width:41.458200px;}
._10{width:46.537200px;}
._13{width:47.653200px;}
._15{width:51.614400px;}
._f{width:53.790600px;}
._d{width:56.302200px;}
._14{width:69.805800px;}
._e{width:72.763200px;}
._11{width:75.051000px;}
._1f{width:88.867800px;}
._33{width:108.865800px;}
._3c{width:110.400000px;}
._39{width:112.620000px;}
._2d{width:214.495200px;}
._21{width:224.974800px;}
._27{width:262.818000px;}
._23{width:275.707800px;}
._25{width:278.227800px;}
._20{width:283.473000px;}
._2b{width:303.886800px;}
._31{width:326.479200px;}
._35{width:328.762800px;}
._26{width:336.920400px;}
._1c{width:342.835200px;}
._28{width:355.278600px;}
._29{width:365.200200px;}
._1b{width:389.707200px;}
._2e{width:390.812400px;}
._22{width:421.122600px;}
._2c{width:446.166000px;}
._2a{width:454.257000px;}
._34{width:460.060200px;}
._32{width:472.012200px;}
._24{width:480.884400px;}
._30{width:492.435000px;}
._18{width:493.606800px;}
._2f{width:533.638800px;}
._19{width:542.766600px;}
.fc1{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:0.349800px;}
.fs4{font-size:22.200000px;}
.fsa{font-size:32.531400px;}
.fs6{font-size:34.980000px;}
.fs8{font-size:41.400000px;}
.fs2{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:55.800000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y18e{bottom:80.273550px;}
.y1b1{bottom:80.273700px;}
.y72{bottom:84.352500px;}
.yba{bottom:84.383250px;}
.y54{bottom:84.395550px;}
.y78{bottom:84.401700px;}
.y26{bottom:84.718050px;}
.y156{bottom:84.718200px;}
.y143{bottom:92.610300px;}
.y127{bottom:94.637550px;}
.yf7{bottom:94.675800px;}
.y18d{bottom:98.573550px;}
.y1b0{bottom:98.573700px;}
.y71{bottom:101.608650px;}
.yb3{bottom:101.639400px;}
.y84{bottom:101.645550px;}
.y53{bottom:101.651700px;}
.ybd{bottom:101.651850px;}
.y25{bottom:103.318050px;}
.y155{bottom:103.318200px;}
.y142{bottom:109.861050px;}
.y126{bottom:111.888300px;}
.yf6{bottom:111.926550px;}
.y18c{bottom:116.873550px;}
.y1af{bottom:116.873700px;}
.y70{bottom:118.864800px;}
.yb9{bottom:118.889400px;}
.y52{bottom:118.889550px;}
.yb2{bottom:118.895550px;}
.y83{bottom:118.901700px;}
.y77{bottom:118.901850px;}
.ybc{bottom:118.902000px;}
.y24{bottom:121.918050px;}
.y154{bottom:121.918200px;}
.y125{bottom:129.139050px;}
.yf5{bottom:129.177300px;}
.y195{bottom:135.173550px;}
.y1ae{bottom:135.173700px;}
.y6f{bottom:136.120950px;}
.yb8{bottom:136.145550px;}
.y51{bottom:136.145700px;}
.yb1{bottom:136.151700px;}
.y82{bottom:136.151850px;}
.ybb{bottom:136.152150px;}
.yc7{bottom:139.724250px;}
.y23{bottom:140.518050px;}
.y153{bottom:140.518200px;}
.y124{bottom:146.389800px;}
.yf4{bottom:146.428050px;}
.y6e{bottom:153.377100px;}
.yb0{bottom:153.401700px;}
.y50{bottom:153.401850px;}
.y81{bottom:153.402000px;}
.y18b{bottom:153.473550px;}
.yc6{bottom:156.975000px;}
.y22{bottom:159.118050px;}
.y152{bottom:159.118200px;}
.y123{bottom:163.640550px;}
.yf3{bottom:163.678800px;}
.y6d{bottom:170.633250px;}
.yaf{bottom:170.651700px;}
.y4f{bottom:170.651850px;}
.y80{bottom:170.652000px;}
.y18a{bottom:171.773550px;}
.y1ad{bottom:171.773700px;}
.yc5{bottom:174.225750px;}
.y21{bottom:177.718050px;}
.y151{bottom:177.718200px;}
.y122{bottom:180.891300px;}
.yf2{bottom:180.929550px;}
.y145{bottom:184.826250px;}
.yb7{bottom:187.883250px;}
.y6c{bottom:187.889400px;}
.y4e{bottom:187.889700px;}
.yae{bottom:187.901850px;}
.y189{bottom:190.073550px;}
.y1ac{bottom:190.073700px;}
.yc4{bottom:191.476500px;}
.y20{bottom:196.318050px;}
.y150{bottom:196.318200px;}
.y121{bottom:198.142050px;}
.yf1{bottom:198.180300px;}
.y165{bottom:200.367300px;}
.yb6{bottom:205.139400px;}
.y6b{bottom:205.145550px;}
.y4d{bottom:205.145850px;}
.yad{bottom:205.152000px;}
.y188{bottom:208.373550px;}
.yc3{bottom:208.727250px;}
.y1f{bottom:214.918050px;}
.y76{bottom:214.918200px;}
.y120{bottom:215.392800px;}
.yf0{bottom:215.431050px;}
.y164{bottom:217.618050px;}
.yac{bottom:222.389700px;}
.yb5{bottom:222.395550px;}
.y6a{bottom:222.401700px;}
.y4c{bottom:222.402000px;}
.yc2{bottom:225.978000px;}
.y194{bottom:226.673550px;}
.y1ab{bottom:226.673700px;}
.y11f{bottom:232.643550px;}
.yef{bottom:232.681800px;}
.y1e{bottom:233.518050px;}
.y75{bottom:233.518200px;}
.y161{bottom:238.916550px;}
.y7f{bottom:239.633700px;}
.y4b{bottom:239.639700px;}
.yab{bottom:239.645850px;}
.yb4{bottom:239.651700px;}
.y69{bottom:239.651850px;}
.yc1{bottom:243.228750px;}
.y187{bottom:244.973550px;}
.y11e{bottom:249.894300px;}
.yee{bottom:249.932550px;}
.y1d{bottom:252.118050px;}
.y74{bottom:252.118200px;}
.y160{bottom:256.167300px;}
.y68{bottom:256.889550px;}
.y7e{bottom:256.889850px;}
.y4a{bottom:256.895850px;}
.yaa{bottom:256.902000px;}
.yc0{bottom:260.479500px;}
.y186{bottom:263.273550px;}
.y1aa{bottom:263.273700px;}
.y11d{bottom:267.145050px;}
.yed{bottom:267.183300px;}
.y1c{bottom:270.718050px;}
.y73{bottom:270.718200px;}
.y15f{bottom:273.418050px;}
.y67{bottom:274.145700px;}
.ya9{bottom:274.145850px;}
.y7d{bottom:274.146000px;}
.y49{bottom:274.152000px;}
.y1b5{bottom:274.762050px;}
.ybf{bottom:277.730250px;}
.y185{bottom:281.573550px;}
.y1a9{bottom:281.573700px;}
.y11c{bottom:284.395800px;}
.yec{bottom:284.434050px;}
.y1b{bottom:289.318050px;}
.y14f{bottom:289.318200px;}
.y48{bottom:291.383550px;}
.y66{bottom:291.401850px;}
.ya8{bottom:291.402000px;}
.y7c{bottom:291.402150px;}
.y1b4{bottom:292.012800px;}
.y184{bottom:299.873550px;}
.y11b{bottom:301.646550px;}
.yeb{bottom:301.684800px;}
.y1a{bottom:307.918050px;}
.y14e{bottom:307.918200px;}
.y65{bottom:308.633400px;}
.y47{bottom:308.639700px;}
.ya7{bottom:308.652000px;}
.y7b{bottom:308.652150px;}
.y1b3{bottom:309.263550px;}
.ybe{bottom:311.968050px;}
.y183{bottom:318.173550px;}
.y1a8{bottom:318.173700px;}
.y11a{bottom:318.897300px;}
.yea{bottom:318.935550px;}
.ya6{bottom:325.883550px;}
.y64{bottom:325.889550px;}
.y46{bottom:325.895850px;}
.y7a{bottom:325.896000px;}
.y19{bottom:326.518050px;}
.y14d{bottom:326.518200px;}
.y119{bottom:336.148050px;}
.ye9{bottom:336.186300px;}
.y193{bottom:336.473550px;}
.y1a7{bottom:336.473700px;}
.ya5{bottom:343.139700px;}
.y63{bottom:343.145700px;}
.y45{bottom:343.152000px;}
.y79{bottom:343.152150px;}
.y18{bottom:345.118050px;}
.y14c{bottom:345.118200px;}
.y1b2{bottom:346.468050px;}
.y118{bottom:353.398800px;}
.ye8{bottom:353.437050px;}
.y182{bottom:354.773550px;}
.y1a6{bottom:354.773700px;}
.ya4{bottom:360.395850px;}
.y62{bottom:360.401850px;}
.y17{bottom:363.718050px;}
.y117{bottom:370.649550px;}
.ye7{bottom:370.687800px;}
.y15e{bottom:371.815200px;}
.y181{bottom:373.073550px;}
.y1a5{bottom:373.073700px;}
.y61{bottom:377.645700px;}
.ya3{bottom:377.652000px;}
.y16{bottom:382.318050px;}
.y14b{bottom:382.318200px;}
.y116{bottom:387.900300px;}
.ye6{bottom:387.938550px;}
.y15d{bottom:389.065950px;}
.y192{bottom:391.373550px;}
.y60{bottom:394.901850px;}
.ya2{bottom:394.902000px;}
.y15{bottom:400.918050px;}
.y115{bottom:405.151050px;}
.ye5{bottom:405.189300px;}
.y15c{bottom:406.316700px;}
.y169{bottom:407.665800px;}
.y180{bottom:409.673550px;}
.y1a4{bottom:409.673700px;}
.y5f{bottom:412.133400px;}
.y44{bottom:419.518050px;}
.y114{bottom:422.401800px;}
.ye4{bottom:422.440050px;}
.y15b{bottom:423.567450px;}
.y168{bottom:424.916550px;}
.y14a{bottom:427.615050px;}
.y17f{bottom:427.973550px;}
.y5e{bottom:429.389550px;}
.y43{bottom:438.118050px;}
.y113{bottom:439.652550px;}
.y141{bottom:439.678050px;}
.ye3{bottom:439.690800px;}
.y15a{bottom:440.818200px;}
.y167{bottom:442.167300px;}
.y149{bottom:444.865800px;}
.y17e{bottom:446.273550px;}
.y1a3{bottom:446.273700px;}
.y5d{bottom:446.645700px;}
.y42{bottom:456.718050px;}
.ya1{bottom:456.718200px;}
.y112{bottom:456.903300px;}
.y140{bottom:456.928800px;}
.ye2{bottom:456.941550px;}
.y166{bottom:459.418050px;}
.y14{bottom:461.056050px;}
.y148{bottom:462.116550px;}
.y5c{bottom:463.901850px;}
.y17d{bottom:464.573550px;}
.y1a2{bottom:464.573700px;}
.y111{bottom:474.154050px;}
.y13f{bottom:474.179550px;}
.ye1{bottom:474.192300px;}
.y41{bottom:475.318050px;}
.ya0{bottom:475.318200px;}
.y13{bottom:478.306800px;}
.y147{bottom:479.367300px;}
.y5b{bottom:481.145700px;}
.y191{bottom:482.873550px;}
.y1a1{bottom:482.873700px;}
.y110{bottom:491.404800px;}
.y13e{bottom:491.430300px;}
.ye0{bottom:491.443050px;}
.y40{bottom:493.918050px;}
.y146{bottom:496.618050px;}
.y5a{bottom:498.401850px;}
.y17c{bottom:501.173550px;}
.y10f{bottom:508.655550px;}
.y13d{bottom:508.681050px;}
.ydf{bottom:508.693800px;}
.y3f{bottom:512.518050px;}
.y12{bottom:512.808300px;}
.y59{bottom:515.639550px;}
.y9f{bottom:516.353250px;}
.y17b{bottom:519.473550px;}
.y1a0{bottom:519.473700px;}
.y10e{bottom:525.906300px;}
.y13c{bottom:525.931800px;}
.yde{bottom:525.944550px;}
.y11{bottom:530.059050px;}
.y3e{bottom:531.118050px;}
.y58{bottom:532.895700px;}
.y9e{bottom:536.176200px;}
.y17a{bottom:537.773550px;}
.y19f{bottom:537.773700px;}
.y10d{bottom:543.157050px;}
.ydd{bottom:543.195300px;}
.y10{bottom:547.309800px;}
.y3d{bottom:549.718050px;}
.y57{bottom:550.151850px;}
.y9c{bottom:552.679050px;}
.y179{bottom:556.073550px;}
.y19e{bottom:556.073700px;}
.y10c{bottom:560.407800px;}
.ydc{bottom:560.446050px;}
.yf{bottom:564.560550px;}
.y56{bottom:567.395850px;}
.y3c{bottom:568.318050px;}
.y9d{bottom:569.181900px;}
.y190{bottom:574.373550px;}
.y10b{bottom:577.658550px;}
.y13b{bottom:577.684050px;}
.ydb{bottom:577.696800px;}
.y144{bottom:581.364000px;}
.ye{bottom:581.811300px;}
.y55{bottom:584.652000px;}
.y3b{bottom:586.918050px;}
.y9b{bottom:588.990900px;}
.y178{bottom:592.673550px;}
.y19d{bottom:592.673700px;}
.y10a{bottom:594.909300px;}
.y13a{bottom:594.934800px;}
.yda{bottom:594.947550px;}
.yd{bottom:599.062050px;}
.y3a{bottom:605.518050px;}
.y9a{bottom:608.813850px;}
.y177{bottom:610.973550px;}
.y19c{bottom:610.973700px;}
.y109{bottom:612.160050px;}
.y139{bottom:612.185550px;}
.yd9{bottom:612.198300px;}
.y163{bottom:613.615050px;}
.yc{bottom:616.312800px;}
.y39{bottom:624.118050px;}
.y99{bottom:628.636800px;}
.y176{bottom:629.273550px;}
.y108{bottom:629.410800px;}
.y138{bottom:629.436300px;}
.yd8{bottom:629.449050px;}
.y162{bottom:630.865800px;}
.yb{bottom:633.563550px;}
.y38{bottom:642.718050px;}
.y107{bottom:646.661550px;}
.y137{bottom:646.687050px;}
.yd7{bottom:646.699800px;}
.y18f{bottom:647.573550px;}
.y19b{bottom:647.573700px;}
.y159{bottom:648.116550px;}
.y98{bottom:648.459750px;}
.ya{bottom:650.814300px;}
.y37{bottom:661.318050px;}
.y106{bottom:663.912300px;}
.y136{bottom:663.937800px;}
.yd6{bottom:663.950550px;}
.y158{bottom:665.367300px;}
.y175{bottom:665.873550px;}
.y9{bottom:668.065050px;}
.y97{bottom:668.282700px;}
.y36{bottom:679.918050px;}
.y105{bottom:681.163050px;}
.y135{bottom:681.188550px;}
.yd5{bottom:681.201300px;}
.y157{bottom:682.618050px;}
.y174{bottom:684.173550px;}
.y19a{bottom:684.188550px;}
.y8{bottom:685.315800px;}
.y96{bottom:688.105650px;}
.y104{bottom:698.413800px;}
.y134{bottom:698.439300px;}
.yd4{bottom:698.452050px;}
.y35{bottom:698.518050px;}
.y173{bottom:702.473550px;}
.y199{bottom:702.484800px;}
.y7{bottom:702.566550px;}
.y95{bottom:707.928600px;}
.y103{bottom:715.664550px;}
.y133{bottom:715.690050px;}
.yd3{bottom:715.702800px;}
.y34{bottom:717.118050px;}
.y6{bottom:719.817300px;}
.y172{bottom:720.773550px;}
.y198{bottom:720.781050px;}
.y94{bottom:727.751550px;}
.y102{bottom:732.915300px;}
.y132{bottom:732.940800px;}
.yd2{bottom:732.953550px;}
.y33{bottom:735.718050px;}
.y5{bottom:737.068050px;}
.y197{bottom:739.077300px;}
.y93{bottom:747.574500px;}
.y101{bottom:750.166050px;}
.y131{bottom:750.191550px;}
.yd1{bottom:750.204300px;}
.y32{bottom:754.318050px;}
.y171{bottom:757.373550px;}
.y92{bottom:767.397450px;}
.y100{bottom:767.416800px;}
.y130{bottom:767.442300px;}
.yd0{bottom:767.455050px;}
.y31{bottom:772.918050px;}
.y170{bottom:775.673550px;}
.yff{bottom:784.667550px;}
.y12f{bottom:784.693050px;}
.ycf{bottom:784.705800px;}
.y91{bottom:787.220400px;}
.y4{bottom:789.118050px;}
.y30{bottom:791.518050px;}
.y16f{bottom:793.973550px;}
.yfe{bottom:801.918300px;}
.y12e{bottom:801.943800px;}
.yce{bottom:801.956550px;}
.y90{bottom:807.043350px;}
.y2f{bottom:810.118050px;}
.y16e{bottom:812.273550px;}
.yfd{bottom:819.169050px;}
.y12d{bottom:819.194550px;}
.ycd{bottom:819.207300px;}
.y8f{bottom:826.866300px;}
.y2e{bottom:828.718050px;}
.y16d{bottom:830.573550px;}
.yfc{bottom:836.419800px;}
.y12c{bottom:836.445300px;}
.ycc{bottom:836.458050px;}
.y3{bottom:845.327700px;}
.y88{bottom:846.680400px;}
.y8b{bottom:846.686400px;}
.y8e{bottom:846.689250px;}
.y2d{bottom:847.318050px;}
.y196{bottom:848.873550px;}
.yfb{bottom:853.670550px;}
.y12b{bottom:853.696050px;}
.ycb{bottom:853.708800px;}
.y28{bottom:857.391000px;}
.y87{bottom:863.183250px;}
.y8a{bottom:863.189250px;}
.y8d{bottom:863.192100px;}
.y27{bottom:864.889050px;}
.y2c{bottom:865.918050px;}
.y16c{bottom:867.173550px;}
.y2{bottom:870.815700px;}
.yfa{bottom:870.921300px;}
.y12a{bottom:870.946800px;}
.yca{bottom:870.959550px;}
.y86{bottom:879.686100px;}
.y89{bottom:879.692100px;}
.y8c{bottom:879.694950px;}
.y2b{bottom:884.518050px;}
.y16b{bottom:885.473550px;}
.yf9{bottom:888.172050px;}
.y129{bottom:888.197550px;}
.yc9{bottom:888.210300px;}
.y1{bottom:896.303700px;}
.y85{bottom:899.509050px;}
.y2a{bottom:903.118050px;}
.y16a{bottom:903.773550px;}
.yf8{bottom:905.422800px;}
.y128{bottom:905.448300px;}
.yc8{bottom:905.461050px;}
.y29{bottom:955.942350px;}
.h7{height:15.295800px;}
.h13{height:45.543000px;}
.h12{height:45.696000px;}
.h5{height:46.308000px;}
.h4{height:48.195000px;}
.he{height:48.378600px;}
.h9{height:49.996800px;}
.hc{height:50.021400px;}
.hb{height:50.046000px;}
.ha{height:50.070600px;}
.h8{height:50.868000px;}
.hf{height:51.788640px;}
.h15{height:52.320000px;}
.h11{height:53.820000px;}
.h6{height:54.480000px;}
.hd{height:54.480600px;}
.h14{height:56.700000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h10{height:114.401400px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x8{left:25.730100px;}
.x7{left:28.599450px;}
.x5{left:72.283500px;}
.x1{left:80.787450px;}
.x19{left:85.039350px;}
.x6{left:93.533100px;}
.x2{left:102.042450px;}
.xc{left:107.860350px;}
.xb{left:121.740600px;}
.xa{left:123.135600px;}
.x9{left:148.496700px;}
.x16{left:157.292250px;}
.xd{left:231.867450px;}
.xe{left:235.829250px;}
.xf{left:254.299050px;}
.x1a{left:353.414100px;}
.x18{left:361.912200px;}
.x1b{left:366.164100px;}
.x17{left:374.662200px;}
.x11{left:505.506900px;}
.x13{left:508.813050px;}
.x14{left:510.570750px;}
.x10{left:512.300550px;}
.x12{left:516.108900px;}
.x15{left:525.427500px;}
.x4{left:650.769450px;}
.x3{left:653.638800px;}
@media print{
.v2{vertical-align:-17.760533pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.516800pt;}
.v1{vertical-align:17.760533pt;}
.v4{vertical-align:58.686933pt;}
.ls5b{letter-spacing:-2.784000pt;}
.ls5a{letter-spacing:-2.304000pt;}
.ls59{letter-spacing:-2.112000pt;}
.ls1d{letter-spacing:-2.016000pt;}
.ls41{letter-spacing:-1.968000pt;}
.ls57{letter-spacing:-1.824000pt;}
.ls22{letter-spacing:-0.960000pt;}
.ls1f{letter-spacing:-0.746667pt;}
.ls31{letter-spacing:-0.545600pt;}
.ls58{letter-spacing:-0.533333pt;}
.ls49{letter-spacing:-0.496000pt;}
.ls37{letter-spacing:-0.480000pt;}
.ls35{letter-spacing:-0.373333pt;}
.ls4e{letter-spacing:-0.373120pt;}
.ls48{letter-spacing:-0.368000pt;}
.ls34{letter-spacing:-0.266667pt;}
.ls4a{letter-spacing:-0.248000pt;}
.ls20{letter-spacing:-0.213333pt;}
.ls23{letter-spacing:-0.198400pt;}
.ls55{letter-spacing:-0.181333pt;}
.ls21{letter-spacing:-0.160000pt;}
.ls47{letter-spacing:-0.155467pt;}
.ls2f{letter-spacing:-0.148800pt;}
.ls53{letter-spacing:-0.124373pt;}
.ls36{letter-spacing:-0.106667pt;}
.ls30{letter-spacing:-0.099200pt;}
.ls4d{letter-spacing:-0.093280pt;}
.ls10{letter-spacing:-0.053333pt;}
.ls3d{letter-spacing:-0.049600pt;}
.ls56{letter-spacing:-0.045333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.001957pt;}
.ls2c{letter-spacing:0.049600pt;}
.ls32{letter-spacing:0.053333pt;}
.ls13{letter-spacing:0.090667pt;}
.ls19{letter-spacing:0.099200pt;}
.ls7{letter-spacing:0.106667pt;}
.ls2e{letter-spacing:0.115667pt;}
.ls38{letter-spacing:0.122987pt;}
.ls27{letter-spacing:0.133333pt;}
.ls18{letter-spacing:0.148800pt;}
.ls45{letter-spacing:0.155467pt;}
.ls8{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.197333pt;}
.ls2b{letter-spacing:0.198400pt;}
.ls26{letter-spacing:0.213333pt;}
.ls5d{letter-spacing:0.226667pt;}
.ls4f{letter-spacing:0.240000pt;}
.ls9{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.272000pt;}
.ls44{letter-spacing:0.272800pt;}
.ls50{letter-spacing:0.293333pt;}
.ls12{letter-spacing:0.296000pt;}
.ls33{letter-spacing:0.297387pt;}
.ls29{letter-spacing:0.297600pt;}
.ls14{letter-spacing:0.320000pt;}
.ls5c{letter-spacing:0.346667pt;}
.ls28{letter-spacing:0.347200pt;}
.lsb{letter-spacing:0.373333pt;}
.ls1a{letter-spacing:0.396800pt;}
.ls39{letter-spacing:0.400000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls24{letter-spacing:0.446400pt;}
.ls1{letter-spacing:0.453333pt;}
.ls3b{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.498667pt;}
.ls25{letter-spacing:0.533333pt;}
.ls5{letter-spacing:0.544000pt;}
.ls1b{letter-spacing:0.545600pt;}
.ls15{letter-spacing:0.586667pt;}
.ls4{letter-spacing:0.589333pt;}
.ls3{letter-spacing:0.634667pt;}
.ls4c{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.680000pt;}
.ls46{letter-spacing:0.693333pt;}
.ls40{letter-spacing:0.746667pt;}
.ls6{letter-spacing:0.770667pt;}
.ls1c{letter-spacing:0.793600pt;}
.ls4b{letter-spacing:0.800000pt;}
.ls0{letter-spacing:0.816000pt;}
.ls42{letter-spacing:0.853333pt;}
.lsf{letter-spacing:0.861333pt;}
.ls3f{letter-spacing:0.906667pt;}
.ls1e{letter-spacing:0.960000pt;}
.ls3e{letter-spacing:1.066667pt;}
.ls3a{letter-spacing:1.280000pt;}
.ls52{letter-spacing:1.696000pt;}
.ls54{letter-spacing:1.858667pt;}
.ls3c{letter-spacing:1.884800pt;}
.ls2a{letter-spacing:2.430400pt;}
.ls51{letter-spacing:2.741333pt;}
.ls17{letter-spacing:3.253333pt;}
.ls43{letter-spacing:19.393600pt;}
.ls2d{letter-spacing:45.830400pt;}
.wsec{word-spacing:-11.733333pt;}
.ws63{word-spacing:-11.200000pt;}
.ws41{word-spacing:-10.961600pt;}
.ws1{word-spacing:-10.880000pt;}
.ws8a{word-spacing:-10.664000pt;}
.ws0{word-spacing:-10.290667pt;}
.ws87{word-spacing:-10.267200pt;}
.ws21{word-spacing:-10.240000pt;}
.ws62{word-spacing:-10.026667pt;}
.wsdf{word-spacing:-9.760000pt;}
.wsc0{word-spacing:-9.746667pt;}
.wsbb{word-spacing:-9.565333pt;}
.wsca{word-spacing:-9.552000pt;}
.wsd4{word-spacing:-9.493333pt;}
.ws79{word-spacing:-9.408000pt;}
.ws1f{word-spacing:-9.360000pt;}
.wsdc{word-spacing:-9.264000pt;}
.wseb{word-spacing:-9.072000pt;}
.wsc3{word-spacing:-8.522667pt;}
.ws22{word-spacing:-7.912000pt;}
.ws9a{word-spacing:-7.544000pt;}
.ws8e{word-spacing:-6.685067pt;}
.ws20{word-spacing:-6.529600pt;}
.wsaf{word-spacing:-6.436320pt;}
.wsba{word-spacing:-6.405227pt;}
.ws99{word-spacing:-6.374133pt;}
.ws42{word-spacing:-6.332779pt;}
.ws64{word-spacing:-6.217112pt;}
.wsb7{word-spacing:-6.156480pt;}
.wsd8{word-spacing:-2.240000pt;}
.wsd0{word-spacing:-2.186667pt;}
.ws67{word-spacing:-1.866667pt;}
.wsbf{word-spacing:-1.858667pt;}
.ws2d{word-spacing:-1.813333pt;}
.ws7b{word-spacing:-1.760000pt;}
.ws25{word-spacing:-1.706667pt;}
.ws1a{word-spacing:-1.653333pt;}
.ws50{word-spacing:-1.636800pt;}
.ws3c{word-spacing:-1.587200pt;}
.wsb5{word-spacing:-1.546667pt;}
.ws26{word-spacing:-1.493333pt;}
.ws95{word-spacing:-1.488000pt;}
.wsc5{word-spacing:-1.450667pt;}
.ws5b{word-spacing:-1.440000pt;}
.wsd3{word-spacing:-1.405333pt;}
.ws24{word-spacing:-1.386667pt;}
.ws98{word-spacing:-1.339200pt;}
.ws1b{word-spacing:-1.333333pt;}
.ws4d{word-spacing:-1.289600pt;}
.ws1c{word-spacing:-1.280000pt;}
.ws60{word-spacing:-1.240000pt;}
.ws28{word-spacing:-1.226667pt;}
.ws73{word-spacing:-1.190400pt;}
.ws6b{word-spacing:-1.173333pt;}
.wsb4{word-spacing:-1.120000pt;}
.wsa1{word-spacing:-1.091200pt;}
.wscd{word-spacing:-1.066667pt;}
.ws3a{word-spacing:-1.041600pt;}
.ws47{word-spacing:-1.013333pt;}
.ws13{word-spacing:-0.960000pt;}
.ws35{word-spacing:-0.942400pt;}
.ws80{word-spacing:-0.906667pt;}
.wsc9{word-spacing:-0.816000pt;}
.wsef{word-spacing:-0.800000pt;}
.ws29{word-spacing:-0.746667pt;}
.ws9{word-spacing:-0.725333pt;}
.ws3d{word-spacing:-0.694400pt;}
.wsb9{word-spacing:-0.693333pt;}
.ws9d{word-spacing:-0.640000pt;}
.wsc2{word-spacing:-0.634667pt;}
.wsaa{word-spacing:-0.586667pt;}
.ws32{word-spacing:-0.533333pt;}
.ws70{word-spacing:-0.480000pt;}
.ws6{word-spacing:-0.453333pt;}
.wsda{word-spacing:-0.426667pt;}
.ws39{word-spacing:-0.396800pt;}
.wsbd{word-spacing:-0.373333pt;}
.wsa{word-spacing:-0.362667pt;}
.ws2{word-spacing:-0.315733pt;}
.ws4a{word-spacing:-0.297600pt;}
.ws11{word-spacing:-0.213333pt;}
.ws37{word-spacing:-0.198400pt;}
.ws1e{word-spacing:-0.197333pt;}
.wse{word-spacing:-0.181333pt;}
.ws18{word-spacing:-0.160000pt;}
.wsa7{word-spacing:-0.106667pt;}
.ws94{word-spacing:-0.099200pt;}
.wsbc{word-spacing:-0.053333pt;}
.wsa3{word-spacing:-0.049600pt;}
.ws3{word-spacing:0.000000pt;}
.ws74{word-spacing:0.049600pt;}
.ws2c{word-spacing:0.053333pt;}
.ws78{word-spacing:0.099200pt;}
.ws31{word-spacing:0.106667pt;}
.ws5f{word-spacing:0.148800pt;}
.ws9e{word-spacing:0.198400pt;}
.wsae{word-spacing:0.213333pt;}
.ws38{word-spacing:0.248000pt;}
.ws82{word-spacing:0.266667pt;}
.ws56{word-spacing:0.320000pt;}
.wsa6{word-spacing:0.373333pt;}
.wsc6{word-spacing:0.408000pt;}
.ws83{word-spacing:0.426667pt;}
.ws55{word-spacing:0.480000pt;}
.ws9f{word-spacing:0.496000pt;}
.ws7e{word-spacing:0.533333pt;}
.ws2e{word-spacing:0.586667pt;}
.wsc{word-spacing:0.589333pt;}
.wsf8{word-spacing:0.634667pt;}
.ws6a{word-spacing:0.640000pt;}
.wsa8{word-spacing:0.693333pt;}
.ws96{word-spacing:0.694400pt;}
.ws46{word-spacing:0.746667pt;}
.wsc8{word-spacing:0.770667pt;}
.ws9c{word-spacing:0.800000pt;}
.wsab{word-spacing:0.853333pt;}
.ws71{word-spacing:0.892800pt;}
.ws4e{word-spacing:0.942400pt;}
.ws2b{word-spacing:0.960000pt;}
.ws34{word-spacing:0.992000pt;}
.ws27{word-spacing:1.013333pt;}
.wsb{word-spacing:1.042667pt;}
.ws7f{word-spacing:1.066667pt;}
.ws61{word-spacing:1.091200pt;}
.ws68{word-spacing:1.120000pt;}
.ws72{word-spacing:1.140800pt;}
.ws53{word-spacing:1.173333pt;}
.ws77{word-spacing:1.190400pt;}
.ws19{word-spacing:1.226667pt;}
.wsa0{word-spacing:1.240000pt;}
.wsc7{word-spacing:1.269333pt;}
.ws44{word-spacing:1.280000pt;}
.ws58{word-spacing:1.333333pt;}
.ws16{word-spacing:1.386667pt;}
.ws8{word-spacing:1.405333pt;}
.ws6d{word-spacing:1.440000pt;}
.ws7{word-spacing:1.450667pt;}
.ws75{word-spacing:1.488000pt;}
.ws5{word-spacing:1.496000pt;}
.ws76{word-spacing:1.537600pt;}
.ws6e{word-spacing:1.546667pt;}
.ws36{word-spacing:1.587200pt;}
.ws7d{word-spacing:1.600000pt;}
.ws4c{word-spacing:1.636800pt;}
.wsf{word-spacing:1.653333pt;}
.ws93{word-spacing:1.686400pt;}
.ws10{word-spacing:1.706667pt;}
.ws48{word-spacing:1.760000pt;}
.wsa2{word-spacing:1.785600pt;}
.ws14{word-spacing:1.813333pt;}
.ws17{word-spacing:1.866667pt;}
.wsa4{word-spacing:1.884800pt;}
.ws66{word-spacing:1.920000pt;}
.ws6c{word-spacing:2.026667pt;}
.ws12{word-spacing:2.080000pt;}
.ws97{word-spacing:2.083200pt;}
.wse2{word-spacing:2.133333pt;}
.ws91{word-spacing:2.186667pt;}
.ws84{word-spacing:2.240000pt;}
.wsb6{word-spacing:2.281600pt;}
.wse3{word-spacing:2.293333pt;}
.ws4b{word-spacing:2.331200pt;}
.ws5c{word-spacing:2.346667pt;}
.ws54{word-spacing:2.400000pt;}
.wsd{word-spacing:2.402667pt;}
.wsbe{word-spacing:2.453333pt;}
.ws2a{word-spacing:2.506667pt;}
.ws4f{word-spacing:2.529600pt;}
.ws5a{word-spacing:2.560000pt;}
.ws92{word-spacing:2.579200pt;}
.ws59{word-spacing:2.666667pt;}
.ws81{word-spacing:2.720000pt;}
.ws2f{word-spacing:2.773333pt;}
.ws49{word-spacing:2.777600pt;}
.ws1d{word-spacing:2.826667pt;}
.ws4{word-spacing:2.856000pt;}
.ws5e{word-spacing:2.876800pt;}
.ws33{word-spacing:2.880000pt;}
.ws57{word-spacing:2.933333pt;}
.ws7c{word-spacing:2.986667pt;}
.wsee{word-spacing:3.093333pt;}
.ws69{word-spacing:3.146667pt;}
.ws15{word-spacing:3.200000pt;}
.ws3b{word-spacing:3.224000pt;}
.wsb3{word-spacing:3.253333pt;}
.ws3e{word-spacing:3.372800pt;}
.ws52{word-spacing:3.466667pt;}
.wsb2{word-spacing:3.573333pt;}
.ws85{word-spacing:3.626667pt;}
.wse4{word-spacing:3.672000pt;}
.ws6f{word-spacing:3.733333pt;}
.wsb1{word-spacing:3.786667pt;}
.ws5d{word-spacing:4.106667pt;}
.ws45{word-spacing:4.160000pt;}
.ws3f{word-spacing:4.315200pt;}
.wsd1{word-spacing:4.426667pt;}
.ws30{word-spacing:4.586667pt;}
.wsd2{word-spacing:4.960000pt;}
.wsf4{word-spacing:5.013333pt;}
.wsad{word-spacing:5.386667pt;}
.wsf3{word-spacing:5.546667pt;}
.ws40{word-spacing:6.448000pt;}
.wsa9{word-spacing:7.040000pt;}
.ws90{word-spacing:19.393600pt;}
.ws8d{word-spacing:68.596800pt;}
.ws89{word-spacing:68.646400pt;}
.ws8c{word-spacing:133.572800pt;}
.ws8b{word-spacing:133.969600pt;}
.ws88{word-spacing:165.624267pt;}
.ws86{word-spacing:411.878400pt;}
.wsd5{word-spacing:859.008000pt;}
.wsdb{word-spacing:859.392000pt;}
.wsac{word-spacing:859.488000pt;}
.wsd7{word-spacing:859.536000pt;}
.wscb{word-spacing:859.584000pt;}
.wse5{word-spacing:859.728000pt;}
.ws7a{word-spacing:859.776000pt;}
.wsc1{word-spacing:859.824000pt;}
.wsb8{word-spacing:859.872000pt;}
.wsdd{word-spacing:859.968000pt;}
.wsf6{word-spacing:860.016000pt;}
.wse9{word-spacing:860.064000pt;}
.wse7{word-spacing:860.112000pt;}
.wsce{word-spacing:860.976000pt;}
.ws51{word-spacing:861.168000pt;}
.ws23{word-spacing:861.456000pt;}
.ws9b{word-spacing:861.648000pt;}
.wse0{word-spacing:861.888000pt;}
.wsf0{word-spacing:861.936000pt;}
.wscf{word-spacing:1240.944000pt;}
.wsd6{word-spacing:1241.088000pt;}
.wsa5{word-spacing:1241.760000pt;}
.wsb0{word-spacing:1241.904000pt;}
.wse1{word-spacing:1242.144000pt;}
.wse6{word-spacing:1242.288000pt;}
.wsf1{word-spacing:1242.336000pt;}
.ws65{word-spacing:1242.432000pt;}
.wsf2{word-spacing:1242.480000pt;}
.wsc4{word-spacing:1243.008000pt;}
.wsd9{word-spacing:1243.200000pt;}
.wsea{word-spacing:1243.248000pt;}
.wse8{word-spacing:1243.296000pt;}
.ws43{word-spacing:1243.344000pt;}
.wsf7{word-spacing:1243.488000pt;}
.ws8f{word-spacing:1243.776000pt;}
.wscc{word-spacing:1244.592000pt;}
.wsde{word-spacing:1244.688000pt;}
.wsf5{word-spacing:1245.312000pt;}
.wsed{word-spacing:1247.136000pt;}
._9{margin-left:-861.540533pt;}
._41{margin-left:-860.182667pt;}
._17{margin-left:-859.272000pt;}
._c{margin-left:-14.909333pt;}
._a{margin-left:-13.013333pt;}
._0{margin-left:-10.240000pt;}
._38{margin-left:-7.041600pt;}
._12{margin-left:-5.991680pt;}
._8{margin-left:-5.076800pt;}
._7{margin-left:-3.733333pt;}
._2{margin-left:-2.560000pt;}
._1{margin-left:-1.280000pt;}
._5{width:0.900800pt;}
._3{width:1.840533pt;}
._4{width:2.788000pt;}
._6{width:3.951467pt;}
._b{width:5.162667pt;}
._42{width:6.133333pt;}
._1e{width:10.465600pt;}
._3b{width:16.430400pt;}
._3d{width:18.643733pt;}
._1a{width:19.592000pt;}
._3a{width:21.013333pt;}
._40{width:23.955733pt;}
._16{width:27.526933pt;}
._1d{width:30.057600pt;}
._3f{width:31.148267pt;}
._37{width:32.338133pt;}
._3e{width:35.781867pt;}
._36{width:36.851733pt;}
._10{width:41.366400pt;}
._13{width:42.358400pt;}
._15{width:45.879467pt;}
._f{width:47.813867pt;}
._d{width:50.046400pt;}
._14{width:62.049600pt;}
._e{width:64.678400pt;}
._11{width:66.712000pt;}
._1f{width:78.993600pt;}
._33{width:96.769600pt;}
._3c{width:98.133333pt;}
._39{width:100.106667pt;}
._2d{width:190.662400pt;}
._21{width:199.977600pt;}
._27{width:233.616000pt;}
._23{width:245.073600pt;}
._25{width:247.313600pt;}
._20{width:251.976000pt;}
._2b{width:270.121600pt;}
._31{width:290.203733pt;}
._35{width:292.233600pt;}
._26{width:299.484800pt;}
._1c{width:304.742400pt;}
._28{width:315.803200pt;}
._29{width:324.622400pt;}
._1b{width:346.406400pt;}
._2e{width:347.388800pt;}
._22{width:374.331200pt;}
._2c{width:396.592000pt;}
._2a{width:403.784000pt;}
._34{width:408.942400pt;}
._32{width:419.566400pt;}
._24{width:427.452800pt;}
._30{width:437.720000pt;}
._18{width:438.761600pt;}
._2f{width:474.345600pt;}
._19{width:482.459200pt;}
.fs7{font-size:0.310933pt;}
.fs4{font-size:19.733333pt;}
.fsa{font-size:28.916800pt;}
.fs6{font-size:31.093333pt;}
.fs8{font-size:36.800000pt;}
.fs2{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:49.600000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y18e{bottom:71.354267pt;}
.y1b1{bottom:71.354400pt;}
.y72{bottom:74.980000pt;}
.yba{bottom:75.007333pt;}
.y54{bottom:75.018267pt;}
.y78{bottom:75.023733pt;}
.y26{bottom:75.304933pt;}
.y156{bottom:75.305067pt;}
.y143{bottom:82.320267pt;}
.y127{bottom:84.122267pt;}
.yf7{bottom:84.156267pt;}
.y18d{bottom:87.620933pt;}
.y1b0{bottom:87.621067pt;}
.y71{bottom:90.318800pt;}
.yb3{bottom:90.346133pt;}
.y84{bottom:90.351600pt;}
.y53{bottom:90.357067pt;}
.ybd{bottom:90.357200pt;}
.y25{bottom:91.838267pt;}
.y155{bottom:91.838400pt;}
.y142{bottom:97.654267pt;}
.y126{bottom:99.456267pt;}
.yf6{bottom:99.490267pt;}
.y18c{bottom:103.887600pt;}
.y1af{bottom:103.887733pt;}
.y70{bottom:105.657600pt;}
.yb9{bottom:105.679467pt;}
.y52{bottom:105.679600pt;}
.yb2{bottom:105.684933pt;}
.y83{bottom:105.690400pt;}
.y77{bottom:105.690533pt;}
.ybc{bottom:105.690667pt;}
.y24{bottom:108.371600pt;}
.y154{bottom:108.371733pt;}
.y125{bottom:114.790267pt;}
.yf5{bottom:114.824267pt;}
.y195{bottom:120.154267pt;}
.y1ae{bottom:120.154400pt;}
.y6f{bottom:120.996400pt;}
.yb8{bottom:121.018267pt;}
.y51{bottom:121.018400pt;}
.yb1{bottom:121.023733pt;}
.y82{bottom:121.023867pt;}
.ybb{bottom:121.024133pt;}
.yc7{bottom:124.199333pt;}
.y23{bottom:124.904933pt;}
.y153{bottom:124.905067pt;}
.y124{bottom:130.124267pt;}
.yf4{bottom:130.158267pt;}
.y6e{bottom:136.335200pt;}
.yb0{bottom:136.357067pt;}
.y50{bottom:136.357200pt;}
.y81{bottom:136.357333pt;}
.y18b{bottom:136.420933pt;}
.yc6{bottom:139.533333pt;}
.y22{bottom:141.438267pt;}
.y152{bottom:141.438400pt;}
.y123{bottom:145.458267pt;}
.yf3{bottom:145.492267pt;}
.y6d{bottom:151.674000pt;}
.yaf{bottom:151.690400pt;}
.y4f{bottom:151.690533pt;}
.y80{bottom:151.690667pt;}
.y18a{bottom:152.687600pt;}
.y1ad{bottom:152.687733pt;}
.yc5{bottom:154.867333pt;}
.y21{bottom:157.971600pt;}
.y151{bottom:157.971733pt;}
.y122{bottom:160.792267pt;}
.yf2{bottom:160.826267pt;}
.y145{bottom:164.290000pt;}
.yb7{bottom:167.007333pt;}
.y6c{bottom:167.012800pt;}
.y4e{bottom:167.013067pt;}
.yae{bottom:167.023867pt;}
.y189{bottom:168.954267pt;}
.y1ac{bottom:168.954400pt;}
.yc4{bottom:170.201333pt;}
.y20{bottom:174.504933pt;}
.y150{bottom:174.505067pt;}
.y121{bottom:176.126267pt;}
.yf1{bottom:176.160267pt;}
.y165{bottom:178.104267pt;}
.yb6{bottom:182.346133pt;}
.y6b{bottom:182.351600pt;}
.y4d{bottom:182.351867pt;}
.yad{bottom:182.357333pt;}
.y188{bottom:185.220933pt;}
.yc3{bottom:185.535333pt;}
.y1f{bottom:191.038267pt;}
.y76{bottom:191.038400pt;}
.y120{bottom:191.460267pt;}
.yf0{bottom:191.494267pt;}
.y164{bottom:193.438267pt;}
.yac{bottom:197.679733pt;}
.yb5{bottom:197.684933pt;}
.y6a{bottom:197.690400pt;}
.y4c{bottom:197.690667pt;}
.yc2{bottom:200.869333pt;}
.y194{bottom:201.487600pt;}
.y1ab{bottom:201.487733pt;}
.y11f{bottom:206.794267pt;}
.yef{bottom:206.828267pt;}
.y1e{bottom:207.571600pt;}
.y75{bottom:207.571733pt;}
.y161{bottom:212.370267pt;}
.y7f{bottom:213.007733pt;}
.y4b{bottom:213.013067pt;}
.yab{bottom:213.018533pt;}
.yb4{bottom:213.023733pt;}
.y69{bottom:213.023867pt;}
.yc1{bottom:216.203333pt;}
.y187{bottom:217.754267pt;}
.y11e{bottom:222.128267pt;}
.yee{bottom:222.162267pt;}
.y1d{bottom:224.104933pt;}
.y74{bottom:224.105067pt;}
.y160{bottom:227.704267pt;}
.y68{bottom:228.346267pt;}
.y7e{bottom:228.346533pt;}
.y4a{bottom:228.351867pt;}
.yaa{bottom:228.357333pt;}
.yc0{bottom:231.537333pt;}
.y186{bottom:234.020933pt;}
.y1aa{bottom:234.021067pt;}
.y11d{bottom:237.462267pt;}
.yed{bottom:237.496267pt;}
.y1c{bottom:240.638267pt;}
.y73{bottom:240.638400pt;}
.y15f{bottom:243.038267pt;}
.y67{bottom:243.685067pt;}
.ya9{bottom:243.685200pt;}
.y7d{bottom:243.685333pt;}
.y49{bottom:243.690667pt;}
.y1b5{bottom:244.232933pt;}
.ybf{bottom:246.871333pt;}
.y185{bottom:250.287600pt;}
.y1a9{bottom:250.287733pt;}
.y11c{bottom:252.796267pt;}
.yec{bottom:252.830267pt;}
.y1b{bottom:257.171600pt;}
.y14f{bottom:257.171733pt;}
.y48{bottom:259.007600pt;}
.y66{bottom:259.023867pt;}
.ya8{bottom:259.024000pt;}
.y7c{bottom:259.024133pt;}
.y1b4{bottom:259.566933pt;}
.y184{bottom:266.554267pt;}
.y11b{bottom:268.130267pt;}
.yeb{bottom:268.164267pt;}
.y1a{bottom:273.704933pt;}
.y14e{bottom:273.705067pt;}
.y65{bottom:274.340800pt;}
.y47{bottom:274.346400pt;}
.ya7{bottom:274.357333pt;}
.y7b{bottom:274.357467pt;}
.y1b3{bottom:274.900933pt;}
.ybe{bottom:277.304933pt;}
.y183{bottom:282.820933pt;}
.y1a8{bottom:282.821067pt;}
.y11a{bottom:283.464267pt;}
.yea{bottom:283.498267pt;}
.ya6{bottom:289.674267pt;}
.y64{bottom:289.679600pt;}
.y46{bottom:289.685200pt;}
.y7a{bottom:289.685333pt;}
.y19{bottom:290.238267pt;}
.y14d{bottom:290.238400pt;}
.y119{bottom:298.798267pt;}
.ye9{bottom:298.832267pt;}
.y193{bottom:299.087600pt;}
.y1a7{bottom:299.087733pt;}
.ya5{bottom:305.013067pt;}
.y63{bottom:305.018400pt;}
.y45{bottom:305.024000pt;}
.y79{bottom:305.024133pt;}
.y18{bottom:306.771600pt;}
.y14c{bottom:306.771733pt;}
.y1b2{bottom:307.971600pt;}
.y118{bottom:314.132267pt;}
.ye8{bottom:314.166267pt;}
.y182{bottom:315.354267pt;}
.y1a6{bottom:315.354400pt;}
.ya4{bottom:320.351867pt;}
.y62{bottom:320.357200pt;}
.y17{bottom:323.304933pt;}
.y117{bottom:329.466267pt;}
.ye7{bottom:329.500267pt;}
.y15e{bottom:330.502400pt;}
.y181{bottom:331.620933pt;}
.y1a5{bottom:331.621067pt;}
.y61{bottom:335.685067pt;}
.ya3{bottom:335.690667pt;}
.y16{bottom:339.838267pt;}
.y14b{bottom:339.838400pt;}
.y116{bottom:344.800267pt;}
.ye6{bottom:344.834267pt;}
.y15d{bottom:345.836400pt;}
.y192{bottom:347.887600pt;}
.y60{bottom:351.023867pt;}
.ya2{bottom:351.024000pt;}
.y15{bottom:356.371600pt;}
.y115{bottom:360.134267pt;}
.ye5{bottom:360.168267pt;}
.y15c{bottom:361.170400pt;}
.y169{bottom:362.369600pt;}
.y180{bottom:364.154267pt;}
.y1a4{bottom:364.154400pt;}
.y5f{bottom:366.340800pt;}
.y44{bottom:372.904933pt;}
.y114{bottom:375.468267pt;}
.ye4{bottom:375.502267pt;}
.y15b{bottom:376.504400pt;}
.y168{bottom:377.703600pt;}
.y14a{bottom:380.102267pt;}
.y17f{bottom:380.420933pt;}
.y5e{bottom:381.679600pt;}
.y43{bottom:389.438267pt;}
.y113{bottom:390.802267pt;}
.y141{bottom:390.824933pt;}
.ye3{bottom:390.836267pt;}
.y15a{bottom:391.838400pt;}
.y167{bottom:393.037600pt;}
.y149{bottom:395.436267pt;}
.y17e{bottom:396.687600pt;}
.y1a3{bottom:396.687733pt;}
.y5d{bottom:397.018400pt;}
.y42{bottom:405.971600pt;}
.ya1{bottom:405.971733pt;}
.y112{bottom:406.136267pt;}
.y140{bottom:406.158933pt;}
.ye2{bottom:406.170267pt;}
.y166{bottom:408.371600pt;}
.y14{bottom:409.827600pt;}
.y148{bottom:410.770267pt;}
.y5c{bottom:412.357200pt;}
.y17d{bottom:412.954267pt;}
.y1a2{bottom:412.954400pt;}
.y111{bottom:421.470267pt;}
.y13f{bottom:421.492933pt;}
.ye1{bottom:421.504267pt;}
.y41{bottom:422.504933pt;}
.ya0{bottom:422.505067pt;}
.y13{bottom:425.161600pt;}
.y147{bottom:426.104267pt;}
.y5b{bottom:427.685067pt;}
.y191{bottom:429.220933pt;}
.y1a1{bottom:429.221067pt;}
.y110{bottom:436.804267pt;}
.y13e{bottom:436.826933pt;}
.ye0{bottom:436.838267pt;}
.y40{bottom:439.038267pt;}
.y146{bottom:441.438267pt;}
.y5a{bottom:443.023867pt;}
.y17c{bottom:445.487600pt;}
.y10f{bottom:452.138267pt;}
.y13d{bottom:452.160933pt;}
.ydf{bottom:452.172267pt;}
.y3f{bottom:455.571600pt;}
.y12{bottom:455.829600pt;}
.y59{bottom:458.346267pt;}
.y9f{bottom:458.980667pt;}
.y17b{bottom:461.754267pt;}
.y1a0{bottom:461.754400pt;}
.y10e{bottom:467.472267pt;}
.y13c{bottom:467.494933pt;}
.yde{bottom:467.506267pt;}
.y11{bottom:471.163600pt;}
.y3e{bottom:472.104933pt;}
.y58{bottom:473.685067pt;}
.y9e{bottom:476.601067pt;}
.y17a{bottom:478.020933pt;}
.y19f{bottom:478.021067pt;}
.y10d{bottom:482.806267pt;}
.ydd{bottom:482.840267pt;}
.y10{bottom:486.497600pt;}
.y3d{bottom:488.638267pt;}
.y57{bottom:489.023867pt;}
.y9c{bottom:491.270267pt;}
.y179{bottom:494.287600pt;}
.y19e{bottom:494.287733pt;}
.y10c{bottom:498.140267pt;}
.ydc{bottom:498.174267pt;}
.yf{bottom:501.831600pt;}
.y56{bottom:504.351867pt;}
.y3c{bottom:505.171600pt;}
.y9d{bottom:505.939467pt;}
.y190{bottom:510.554267pt;}
.y10b{bottom:513.474267pt;}
.y13b{bottom:513.496933pt;}
.ydb{bottom:513.508267pt;}
.y144{bottom:516.768000pt;}
.ye{bottom:517.165600pt;}
.y55{bottom:519.690667pt;}
.y3b{bottom:521.704933pt;}
.y9b{bottom:523.547467pt;}
.y178{bottom:526.820933pt;}
.y19d{bottom:526.821067pt;}
.y10a{bottom:528.808267pt;}
.y13a{bottom:528.830933pt;}
.yda{bottom:528.842267pt;}
.yd{bottom:532.499600pt;}
.y3a{bottom:538.238267pt;}
.y9a{bottom:541.167867pt;}
.y177{bottom:543.087600pt;}
.y19c{bottom:543.087733pt;}
.y109{bottom:544.142267pt;}
.y139{bottom:544.164933pt;}
.yd9{bottom:544.176267pt;}
.y163{bottom:545.435600pt;}
.yc{bottom:547.833600pt;}
.y39{bottom:554.771600pt;}
.y99{bottom:558.788267pt;}
.y176{bottom:559.354267pt;}
.y108{bottom:559.476267pt;}
.y138{bottom:559.498933pt;}
.yd8{bottom:559.510267pt;}
.y162{bottom:560.769600pt;}
.yb{bottom:563.167600pt;}
.y38{bottom:571.304933pt;}
.y107{bottom:574.810267pt;}
.y137{bottom:574.832933pt;}
.yd7{bottom:574.844267pt;}
.y18f{bottom:575.620933pt;}
.y19b{bottom:575.621067pt;}
.y159{bottom:576.103600pt;}
.y98{bottom:576.408667pt;}
.ya{bottom:578.501600pt;}
.y37{bottom:587.838267pt;}
.y106{bottom:590.144267pt;}
.y136{bottom:590.166933pt;}
.yd6{bottom:590.178267pt;}
.y158{bottom:591.437600pt;}
.y175{bottom:591.887600pt;}
.y9{bottom:593.835600pt;}
.y97{bottom:594.029067pt;}
.y36{bottom:604.371600pt;}
.y105{bottom:605.478267pt;}
.y135{bottom:605.500933pt;}
.yd5{bottom:605.512267pt;}
.y157{bottom:606.771600pt;}
.y174{bottom:608.154267pt;}
.y19a{bottom:608.167600pt;}
.y8{bottom:609.169600pt;}
.y96{bottom:611.649467pt;}
.y104{bottom:620.812267pt;}
.y134{bottom:620.834933pt;}
.yd4{bottom:620.846267pt;}
.y35{bottom:620.904933pt;}
.y173{bottom:624.420933pt;}
.y199{bottom:624.430933pt;}
.y7{bottom:624.503600pt;}
.y95{bottom:629.269867pt;}
.y103{bottom:636.146267pt;}
.y133{bottom:636.168933pt;}
.yd3{bottom:636.180267pt;}
.y34{bottom:637.438267pt;}
.y6{bottom:639.837600pt;}
.y172{bottom:640.687600pt;}
.y198{bottom:640.694267pt;}
.y94{bottom:646.890267pt;}
.y102{bottom:651.480267pt;}
.y132{bottom:651.502933pt;}
.yd2{bottom:651.514267pt;}
.y33{bottom:653.971600pt;}
.y5{bottom:655.171600pt;}
.y197{bottom:656.957600pt;}
.y93{bottom:664.510667pt;}
.y101{bottom:666.814267pt;}
.y131{bottom:666.836933pt;}
.yd1{bottom:666.848267pt;}
.y32{bottom:670.504933pt;}
.y171{bottom:673.220933pt;}
.y92{bottom:682.131067pt;}
.y100{bottom:682.148267pt;}
.y130{bottom:682.170933pt;}
.yd0{bottom:682.182267pt;}
.y31{bottom:687.038267pt;}
.y170{bottom:689.487600pt;}
.yff{bottom:697.482267pt;}
.y12f{bottom:697.504933pt;}
.ycf{bottom:697.516267pt;}
.y91{bottom:699.751467pt;}
.y4{bottom:701.438267pt;}
.y30{bottom:703.571600pt;}
.y16f{bottom:705.754267pt;}
.yfe{bottom:712.816267pt;}
.y12e{bottom:712.838933pt;}
.yce{bottom:712.850267pt;}
.y90{bottom:717.371867pt;}
.y2f{bottom:720.104933pt;}
.y16e{bottom:722.020933pt;}
.yfd{bottom:728.150267pt;}
.y12d{bottom:728.172933pt;}
.ycd{bottom:728.184267pt;}
.y8f{bottom:734.992267pt;}
.y2e{bottom:736.638267pt;}
.y16d{bottom:738.287600pt;}
.yfc{bottom:743.484267pt;}
.y12c{bottom:743.506933pt;}
.ycc{bottom:743.518267pt;}
.y3{bottom:751.402400pt;}
.y88{bottom:752.604800pt;}
.y8b{bottom:752.610133pt;}
.y8e{bottom:752.612667pt;}
.y2d{bottom:753.171600pt;}
.y196{bottom:754.554267pt;}
.yfb{bottom:758.818267pt;}
.y12b{bottom:758.840933pt;}
.ycb{bottom:758.852267pt;}
.y28{bottom:762.125333pt;}
.y87{bottom:767.274000pt;}
.y8a{bottom:767.279333pt;}
.y8d{bottom:767.281867pt;}
.y27{bottom:768.790267pt;}
.y2c{bottom:769.704933pt;}
.y16c{bottom:770.820933pt;}
.y2{bottom:774.058400pt;}
.yfa{bottom:774.152267pt;}
.y12a{bottom:774.174933pt;}
.yca{bottom:774.186267pt;}
.y86{bottom:781.943200pt;}
.y89{bottom:781.948533pt;}
.y8c{bottom:781.951067pt;}
.y2b{bottom:786.238267pt;}
.y16b{bottom:787.087600pt;}
.yf9{bottom:789.486267pt;}
.y129{bottom:789.508933pt;}
.yc9{bottom:789.520267pt;}
.y1{bottom:796.714400pt;}
.y85{bottom:799.563600pt;}
.y2a{bottom:802.771600pt;}
.y16a{bottom:803.354267pt;}
.yf8{bottom:804.820267pt;}
.y128{bottom:804.842933pt;}
.yc8{bottom:804.854267pt;}
.y29{bottom:849.726533pt;}
.h7{height:13.596267pt;}
.h13{height:40.482667pt;}
.h12{height:40.618667pt;}
.h5{height:41.162667pt;}
.h4{height:42.840000pt;}
.he{height:43.003200pt;}
.h9{height:44.441600pt;}
.hc{height:44.463467pt;}
.hb{height:44.485333pt;}
.ha{height:44.507200pt;}
.h8{height:45.216000pt;}
.hf{height:46.034347pt;}
.h15{height:46.506667pt;}
.h11{height:47.840000pt;}
.h6{height:48.426667pt;}
.hd{height:48.427200pt;}
.h14{height:50.400000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h10{height:101.690133pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x8{left:22.871200pt;}
.x7{left:25.421733pt;}
.x5{left:64.252000pt;}
.x1{left:71.811067pt;}
.x19{left:75.590533pt;}
.x6{left:83.140533pt;}
.x2{left:90.704400pt;}
.xc{left:95.875867pt;}
.xb{left:108.213867pt;}
.xa{left:109.453867pt;}
.x9{left:131.997067pt;}
.x16{left:139.815333pt;}
.xd{left:206.104400pt;}
.xe{left:209.626000pt;}
.xf{left:226.043600pt;}
.x1a{left:314.145867pt;}
.x18{left:321.699733pt;}
.x1b{left:325.479200pt;}
.x17{left:333.033067pt;}
.x11{left:449.339467pt;}
.x13{left:452.278267pt;}
.x14{left:453.840667pt;}
.x10{left:455.378267pt;}
.x12{left:458.763467pt;}
.x15{left:467.046667pt;}
.x4{left:578.461733pt;}
.x3{left:581.012267pt;}
}




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