
    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_fc31bc2d0b957b21174f9ecf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912000;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_910ce363156c4bd54d51d5f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936000;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_7f2b59ddbd441870495cf5e9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_2317c7b47d0563842943401f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_2fa7d5ca8f49f3adff88f2d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.037000;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_0e19a4a1a84d94adf1b2de43.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.991699;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_f651625d670be7654c8eff8a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_3c187df32a57e863f5b0a6c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765065;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_113a6780d84d03251e153d8a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936000;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_7f2b59ddbd441870495cf5e9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904000;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_d5fcc37a17e8ed1ed560f346.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.707031;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_7402eddca6ca6074846dd0e7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006000;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_910ce363156c4bd54d51d5f5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.936000;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_7f2b59ddbd441870495cf5e9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.904000;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_2317c7b47d0563842943401f.woff2')format("woff");}.fff{font-family:fff;line-height:0.912000;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_276566ea73c31e464e291e6e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.639000;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_910ce363156c4bd54d51d5f5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.936000;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_7f2b59ddbd441870495cf5e9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.904000;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_2317c7b47d0563842943401f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.912000;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_910ce363156c4bd54d51d5f5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.936000;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_7f2b59ddbd441870495cf5e9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.904000;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_2317c7b47d0563842943401f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.912000;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_9b7e0fa2beeef4ee67c18f6f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.941000;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);}
.v3{vertical-align:-21.599400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.000000px;}
.v1{vertical-align:29.700000px;}
.ls4{letter-spacing:-1.776000px;}
.ls6{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.596700px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.596700px;}
.lsa{letter-spacing:0.675000px;}
.ls7{letter-spacing:0.900000px;}
.ls0{letter-spacing:3.780000px;}
.ls1{letter-spacing:17.200200px;}
.ls2{letter-spacing:24.492000px;}
.ls5{letter-spacing:1658.974800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-20.460000px;}
.ws6c{word-spacing:-16.500000px;}
.ws3{word-spacing:-15.600000px;}
.wsb2{word-spacing:-15.012000px;}
.wsc0{word-spacing:-14.700000px;}
.ws2{word-spacing:-14.400000px;}
.ws10a{word-spacing:-13.185000px;}
.ws108{word-spacing:-12.510000px;}
.ws0{word-spacing:-12.164724px;}
.ws7{word-spacing:-11.520000px;}
.ws6d{word-spacing:-10.939500px;}
.ws4{word-spacing:-10.342800px;}
.wsbf{word-spacing:-9.746100px;}
.ws98{word-spacing:-8.100000px;}
.wsee{word-spacing:-7.637760px;}
.wsab{word-spacing:-5.280000px;}
.wsd8{word-spacing:-4.740000px;}
.ws9e{word-spacing:-4.380000px;}
.wsc3{word-spacing:-4.200000px;}
.ws56{word-spacing:-4.020000px;}
.ws70{word-spacing:-3.420000px;}
.ws6e{word-spacing:-3.000000px;}
.wsad{word-spacing:-2.760000px;}
.ws27{word-spacing:-2.700000px;}
.wsf2{word-spacing:-2.580000px;}
.ws78{word-spacing:-2.520000px;}
.ws64{word-spacing:-2.460000px;}
.ws3d{word-spacing:-2.220000px;}
.ws29{word-spacing:-2.160000px;}
.ws57{word-spacing:-2.100000px;}
.ws68{word-spacing:-2.040000px;}
.ws11{word-spacing:-1.860000px;}
.wse0{word-spacing:-1.800000px;}
.ws14{word-spacing:-1.620000px;}
.ws4e{word-spacing:-1.560000px;}
.wse5{word-spacing:-1.500000px;}
.wsdd{word-spacing:-1.440000px;}
.wse3{word-spacing:-1.380000px;}
.ws85{word-spacing:-1.200000px;}
.wsb1{word-spacing:-1.140000px;}
.ws9d{word-spacing:-1.080000px;}
.ws2f{word-spacing:-1.020000px;}
.wsf3{word-spacing:-0.960000px;}
.ws65{word-spacing:-0.900000px;}
.ws86{word-spacing:-0.840000px;}
.ws16{word-spacing:-0.780000px;}
.wsc{word-spacing:-0.756000px;}
.ws109{word-spacing:-0.675000px;}
.ws91{word-spacing:-0.660000px;}
.ws58{word-spacing:-0.600000px;}
.wsba{word-spacing:-0.596700px;}
.ws9b{word-spacing:-0.540000px;}
.ws8a{word-spacing:-0.480000px;}
.wsd0{word-spacing:-0.300000px;}
.ws87{word-spacing:-0.240000px;}
.ws107{word-spacing:-0.144000px;}
.ws10b{word-spacing:-0.135000px;}
.ws44{word-spacing:-0.120000px;}
.ws34{word-spacing:-0.060000px;}
.ws10{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.wsd{word-spacing:0.108000px;}
.ws22{word-spacing:0.240000px;}
.ws89{word-spacing:0.300000px;}
.ws5a{word-spacing:0.360000px;}
.ws72{word-spacing:0.420000px;}
.ws61{word-spacing:0.480000px;}
.ws3a{word-spacing:0.720000px;}
.ws106{word-spacing:0.780000px;}
.wsae{word-spacing:0.840000px;}
.ws102{word-spacing:0.900000px;}
.ws60{word-spacing:0.960000px;}
.ws77{word-spacing:1.020000px;}
.ws93{word-spacing:1.140000px;}
.ws79{word-spacing:1.193400px;}
.wsde{word-spacing:1.320000px;}
.ws69{word-spacing:1.440000px;}
.wsb{word-spacing:1.566000px;}
.ws94{word-spacing:1.620000px;}
.wsf1{word-spacing:1.740000px;}
.ws6{word-spacing:1.776000px;}
.ws1b{word-spacing:1.800000px;}
.ws99{word-spacing:1.860000px;}
.wscc{word-spacing:1.920000px;}
.ws7d{word-spacing:1.980000px;}
.wsd1{word-spacing:2.040000px;}
.ws5c{word-spacing:2.160000px;}
.ws66{word-spacing:2.220000px;}
.ws31{word-spacing:2.280000px;}
.ws6f{word-spacing:2.340000px;}
.wse2{word-spacing:2.400000px;}
.ws25{word-spacing:2.460000px;}
.ws9a{word-spacing:2.520000px;}
.wsc2{word-spacing:2.580000px;}
.wsa1{word-spacing:2.625480px;}
.ws19{word-spacing:2.640000px;}
.ws75{word-spacing:2.700000px;}
.ws36{word-spacing:2.820000px;}
.wsa7{word-spacing:2.880000px;}
.wse9{word-spacing:3.000000px;}
.ws1c{word-spacing:3.060000px;}
.ws5b{word-spacing:3.360000px;}
.ws74{word-spacing:3.540000px;}
.ws9c{word-spacing:3.600000px;}
.wsbe{word-spacing:3.660000px;}
.wsb3{word-spacing:3.720000px;}
.ws24{word-spacing:3.840000px;}
.wsa2{word-spacing:3.960000px;}
.wscd{word-spacing:4.080000px;}
.ws2a{word-spacing:4.140000px;}
.wsbd{word-spacing:4.200000px;}
.wsf{word-spacing:4.212000px;}
.ws88{word-spacing:4.320000px;}
.ws13{word-spacing:4.380000px;}
.ws32{word-spacing:4.500000px;}
.wse1{word-spacing:4.680000px;}
.ws35{word-spacing:4.740000px;}
.wsa5{word-spacing:4.860000px;}
.wsc1{word-spacing:5.040000px;}
.wsc6{word-spacing:5.100000px;}
.ws95{word-spacing:5.280000px;}
.ws52{word-spacing:5.400000px;}
.ws2e{word-spacing:5.460000px;}
.wsec{word-spacing:5.520000px;}
.ws51{word-spacing:5.580000px;}
.ws8f{word-spacing:5.640000px;}
.wse6{word-spacing:5.760000px;}
.ws26{word-spacing:5.820000px;}
.wsa6{word-spacing:6.240000px;}
.wsb9{word-spacing:6.360000px;}
.wsf9{word-spacing:6.420000px;}
.ws67{word-spacing:6.540000px;}
.ws73{word-spacing:6.660000px;}
.ws18{word-spacing:6.720000px;}
.ws4f{word-spacing:6.780000px;}
.ws53{word-spacing:6.900000px;}
.wscb{word-spacing:6.960000px;}
.ws101{word-spacing:7.020000px;}
.ws5e{word-spacing:7.080000px;}
.ws46{word-spacing:7.200000px;}
.ws48{word-spacing:7.260000px;}
.ws3e{word-spacing:7.440000px;}
.wse4{word-spacing:7.560000px;}
.wsb5{word-spacing:7.620000px;}
.ws47{word-spacing:7.740000px;}
.wsda{word-spacing:7.800000px;}
.ws4d{word-spacing:7.980000px;}
.wsac{word-spacing:8.100000px;}
.wsbc{word-spacing:8.160000px;}
.wsdb{word-spacing:8.220000px;}
.wsa{word-spacing:8.262000px;}
.ws23{word-spacing:8.280000px;}
.ws71{word-spacing:8.340000px;}
.wse{word-spacing:8.478000px;}
.ws104{word-spacing:8.520000px;}
.ws9{word-spacing:8.532000px;}
.ws15{word-spacing:8.580000px;}
.ws2d{word-spacing:8.700000px;}
.ws96{word-spacing:8.760000px;}
.ws8d{word-spacing:8.820000px;}
.ws1d{word-spacing:8.940000px;}
.wsa4{word-spacing:9.000000px;}
.ws45{word-spacing:9.060000px;}
.ws33{word-spacing:9.180000px;}
.ws43{word-spacing:9.240000px;}
.wsc8{word-spacing:9.300000px;}
.wsce{word-spacing:9.480000px;}
.ws59{word-spacing:9.540000px;}
.wsd3{word-spacing:9.600000px;}
.ws1e{word-spacing:9.660000px;}
.ws7c{word-spacing:9.720000px;}
.wsb6{word-spacing:9.840000px;}
.wsfa{word-spacing:9.900000px;}
.ws3c{word-spacing:9.960000px;}
.ws82{word-spacing:10.140000px;}
.ws1f{word-spacing:10.260000px;}
.ws54{word-spacing:10.560000px;}
.ws42{word-spacing:10.740000px;}
.ws2c{word-spacing:10.800000px;}
.ws4b{word-spacing:10.860000px;}
.wsd7{word-spacing:11.280000px;}
.ws37{word-spacing:11.400000px;}
.ws38{word-spacing:11.520000px;}
.ws8e{word-spacing:11.580000px;}
.wsaf{word-spacing:11.700000px;}
.ws8c{word-spacing:11.760000px;}
.ws92{word-spacing:11.880000px;}
.wsca{word-spacing:11.940000px;}
.wsa8{word-spacing:12.000000px;}
.wsc9{word-spacing:12.240000px;}
.wsb8{word-spacing:12.420000px;}
.ws105{word-spacing:12.540000px;}
.wsf6{word-spacing:12.720000px;}
.wsb7{word-spacing:12.780000px;}
.ws12{word-spacing:13.020000px;}
.ws40{word-spacing:13.080000px;}
.wsc5{word-spacing:13.260000px;}
.ws55{word-spacing:13.320000px;}
.ws5d{word-spacing:13.380000px;}
.wseb{word-spacing:13.440000px;}
.ws21{word-spacing:13.560000px;}
.wsf4{word-spacing:13.740000px;}
.ws3f{word-spacing:14.100000px;}
.wsd9{word-spacing:14.160000px;}
.ws4a{word-spacing:14.280000px;}
.wsef{word-spacing:14.460000px;}
.ws84{word-spacing:14.580000px;}
.wsf5{word-spacing:14.640000px;}
.ws76{word-spacing:14.940000px;}
.ws41{word-spacing:15.000000px;}
.ws20{word-spacing:15.120000px;}
.ws83{word-spacing:15.180000px;}
.wsfe{word-spacing:15.300000px;}
.ws39{word-spacing:15.360000px;}
.wsbb{word-spacing:15.480000px;}
.ws7b{word-spacing:15.540000px;}
.wsdc{word-spacing:15.720000px;}
.wsd2{word-spacing:15.840000px;}
.ws103{word-spacing:15.900000px;}
.ws63{word-spacing:16.020000px;}
.ws8{word-spacing:16.092000px;}
.wsed{word-spacing:16.200000px;}
.ws7a{word-spacing:16.320000px;}
.ws80{word-spacing:16.380000px;}
.wse8{word-spacing:16.560000px;}
.wse7{word-spacing:16.620000px;}
.wscf{word-spacing:16.740000px;}
.wsea{word-spacing:17.040000px;}
.ws5f{word-spacing:17.100000px;}
.ws30{word-spacing:17.160000px;}
.wsb0{word-spacing:17.280000px;}
.wsd5{word-spacing:17.400000px;}
.wsdf{word-spacing:17.520000px;}
.wsf8{word-spacing:17.700000px;}
.ws9f{word-spacing:17.940000px;}
.wsd6{word-spacing:18.180000px;}
.wsc7{word-spacing:18.420000px;}
.wsfb{word-spacing:18.600000px;}
.wsd4{word-spacing:18.720000px;}
.ws90{word-spacing:18.900000px;}
.wsff{word-spacing:19.320000px;}
.ws3b{word-spacing:19.380000px;}
.ws6a{word-spacing:19.440000px;}
.wsa9{word-spacing:19.620000px;}
.ws8b{word-spacing:19.680000px;}
.wsa0{word-spacing:19.860000px;}
.wsc4{word-spacing:19.920000px;}
.ws62{word-spacing:20.040000px;}
.ws4c{word-spacing:20.760000px;}
.ws50{word-spacing:21.300000px;}
.ws17{word-spacing:21.360000px;}
.wsfc{word-spacing:21.480000px;}
.ws49{word-spacing:21.900000px;}
.ws28{word-spacing:22.200000px;}
.ws2b{word-spacing:22.860000px;}
.ws97{word-spacing:24.060000px;}
.wsa3{word-spacing:24.120000px;}
.wsf0{word-spacing:27.600000px;}
.ws6b{word-spacing:28.500000px;}
.ws1a{word-spacing:30.600000px;}
.ws81{word-spacing:31.500000px;}
.wsf7{word-spacing:33.720000px;}
.ws7e{word-spacing:35.220000px;}
.wsb4{word-spacing:36.300000px;}
.ws100{word-spacing:36.360000px;}
.wsfd{word-spacing:39.720000px;}
.ws7f{word-spacing:45.720000px;}
.wsaa{word-spacing:53.820000px;}
._9{margin-left:-59.040000px;}
._7{margin-left:-47.970000px;}
._2e{margin-left:-24.000000px;}
._30{margin-left:-21.641400px;}
._d{margin-left:-19.020000px;}
._17{margin-left:-15.012000px;}
._2f{margin-left:-13.080000px;}
._8{margin-left:-11.520000px;}
._e{margin-left:-9.060000px;}
._5{margin-left:-7.364880px;}
._4{margin-left:-6.078600px;}
._1{margin-left:-4.890600px;}
._3{margin-left:-3.636600px;}
._2{margin-left:-2.439792px;}
._0{margin-left:-1.300800px;}
._6{width:1.188000px;}
._c{width:2.262600px;}
._32{width:11.520000px;}
._31{width:12.628800px;}
._a{width:14.040000px;}
._33{width:20.475000px;}
._20{width:36.135792px;}
._b{width:38.016000px;}
._f{width:39.072600px;}
._11{width:64.962000px;}
._18{width:158.175792px;}
._26{width:165.726000px;}
._14{width:365.688000px;}
._1d{width:421.794000px;}
._22{width:440.802000px;}
._1b{width:512.838000px;}
._1c{width:534.870000px;}
._19{width:545.724000px;}
._12{width:549.774000px;}
._1f{width:561.816000px;}
._23{width:565.866000px;}
._1a{width:580.824000px;}
._13{width:582.984000px;}
._15{width:639.792000px;}
._1e{width:648.810000px;}
._24{width:662.850000px;}
._16{width:712.854000px;}
._21{width:778.842000px;}
._10{width:852.876000px;}
._25{width:1067.157792px;}
._27{width:1137.780000px;}
._28{width:1335.744000px;}
._2c{width:2042.604000px;}
._29{width:2085.750000px;}
._2b{width:2205.630000px;}
._2a{width:2253.636000px;}
._2d{width:2283.606000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(65,64,153);}
.fs8{font-size:31.824000px;}
.fs5{font-size:39.000000px;}
.fs7{font-size:39.780000px;}
.fs4{font-size:43.758000px;}
.fs9{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:41.383350px;}
.y1{bottom:41.386350px;}
.y175{bottom:81.571350px;}
.y7d{bottom:81.586200px;}
.y107{bottom:81.601350px;}
.y7b{bottom:81.604650px;}
.y5e{bottom:81.610800px;}
.yf2{bottom:81.616350px;}
.y1e5{bottom:81.627600px;}
.y19f{bottom:81.631350px;}
.y1f{bottom:81.637800px;}
.y144{bottom:81.795300px;}
.y137{bottom:81.840300px;}
.y1e4{bottom:94.373850px;}
.y1e{bottom:96.637800px;}
.y174{bottom:99.571350px;}
.y106{bottom:99.601350px;}
.y7a{bottom:99.604650px;}
.y5d{bottom:99.610800px;}
.yf1{bottom:99.616350px;}
.y19e{bottom:99.631350px;}
.y143{bottom:100.050300px;}
.y136{bottom:100.365300px;}
.y1e3{bottom:107.120100px;}
.y1d{bottom:111.637800px;}
.y173{bottom:117.571350px;}
.y105{bottom:117.601350px;}
.y79{bottom:117.604650px;}
.y5c{bottom:117.610800px;}
.yf0{bottom:117.616350px;}
.y19d{bottom:117.631350px;}
.y142{bottom:118.305300px;}
.y135{bottom:118.890300px;}
.y1e2{bottom:119.866350px;}
.y1e1{bottom:132.612600px;}
.y172{bottom:135.571350px;}
.y104{bottom:135.601350px;}
.y78{bottom:135.604650px;}
.y5b{bottom:135.610800px;}
.yef{bottom:135.616350px;}
.y19c{bottom:135.631350px;}
.y141{bottom:136.560300px;}
.y134{bottom:137.415300px;}
.y1c{bottom:140.137800px;}
.y1e0{bottom:145.358850px;}
.y171{bottom:153.571350px;}
.y103{bottom:153.601350px;}
.y77{bottom:153.604650px;}
.y5a{bottom:153.610800px;}
.yee{bottom:153.616350px;}
.y19b{bottom:153.631350px;}
.y140{bottom:154.815300px;}
.y1b{bottom:155.137800px;}
.y133{bottom:155.940300px;}
.y1df{bottom:158.105100px;}
.y1de{bottom:170.851350px;}
.y170{bottom:171.571350px;}
.y102{bottom:171.601350px;}
.y76{bottom:171.604650px;}
.y59{bottom:171.610800px;}
.yed{bottom:171.616350px;}
.y19a{bottom:171.631350px;}
.y13f{bottom:173.070300px;}
.y25{bottom:174.205650px;}
.y132{bottom:174.465300px;}
.y1dd{bottom:183.601350px;}
.y24{bottom:188.605650px;}
.y16f{bottom:189.571350px;}
.y101{bottom:189.601350px;}
.y75{bottom:189.604650px;}
.y58{bottom:189.610800px;}
.yec{bottom:189.616350px;}
.y131{bottom:192.990300px;}
.y23{bottom:203.005650px;}
.y16e{bottom:207.571350px;}
.y100{bottom:207.601350px;}
.y74{bottom:207.604650px;}
.y57{bottom:207.610800px;}
.yeb{bottom:207.616350px;}
.y130{bottom:211.515300px;}
.y13e{bottom:212.655300px;}
.y22{bottom:217.405650px;}
.y16d{bottom:225.571350px;}
.yff{bottom:225.601350px;}
.y73{bottom:225.604650px;}
.y56{bottom:225.610800px;}
.yea{bottom:225.616350px;}
.y199{bottom:229.756350px;}
.y12f{bottom:230.040300px;}
.y13d{bottom:230.910300px;}
.y21{bottom:231.805650px;}
.y16c{bottom:243.571350px;}
.yfe{bottom:243.601350px;}
.y72{bottom:243.604650px;}
.ye9{bottom:243.616350px;}
.y20{bottom:246.205650px;}
.y198{bottom:247.756350px;}
.y12e{bottom:248.565300px;}
.y13c{bottom:249.165300px;}
.y1dc{bottom:253.771350px;}
.y16b{bottom:261.571350px;}
.yfd{bottom:261.601350px;}
.y71{bottom:261.604650px;}
.ye8{bottom:261.616350px;}
.y197{bottom:265.756350px;}
.y12d{bottom:267.090300px;}
.y13b{bottom:267.420300px;}
.y1db{bottom:268.171350px;}
.y55{bottom:271.942800px;}
.y16a{bottom:279.571350px;}
.yfc{bottom:279.601350px;}
.y70{bottom:279.604650px;}
.y1da{bottom:282.571350px;}
.y196{bottom:283.756350px;}
.y12c{bottom:285.615300px;}
.y13a{bottom:285.675300px;}
.y54{bottom:288.439800px;}
.y1d9{bottom:296.971350px;}
.y169{bottom:297.571350px;}
.ye7{bottom:297.601350px;}
.y6f{bottom:297.604650px;}
.y195{bottom:301.756350px;}
.y139{bottom:303.930300px;}
.y12b{bottom:304.140300px;}
.y53{bottom:304.936800px;}
.y1d8{bottom:311.371350px;}
.y168{bottom:315.571350px;}
.ye6{bottom:315.601350px;}
.y6e{bottom:315.604650px;}
.y194{bottom:319.756350px;}
.y52{bottom:321.433800px;}
.y138{bottom:322.185300px;}
.y12a{bottom:322.665300px;}
.y1d7{bottom:325.771350px;}
.y167{bottom:333.571350px;}
.ye5{bottom:333.601350px;}
.y6d{bottom:333.604650px;}
.y193{bottom:337.756350px;}
.y51{bottom:337.930800px;}
.y1d6{bottom:346.171350px;}
.y166{bottom:351.571350px;}
.ye4{bottom:351.601350px;}
.y6c{bottom:351.604650px;}
.y50{bottom:354.427800px;}
.y192{bottom:355.756350px;}
.ya5{bottom:359.461350px;}
.ycd{bottom:359.551350px;}
.y1d5{bottom:366.571350px;}
.y165{bottom:369.571350px;}
.ye3{bottom:369.601350px;}
.y6b{bottom:369.604650px;}
.y4f{bottom:370.924800px;}
.y191{bottom:373.756350px;}
.ya4{bottom:377.461350px;}
.ycc{bottom:377.716350px;}
.y1d4{bottom:380.971350px;}
.y129{bottom:385.402500px;}
.y4e{bottom:387.421800px;}
.y164{bottom:387.571350px;}
.ye2{bottom:387.601350px;}
.y6a{bottom:387.604650px;}
.y190{bottom:391.756350px;}
.ya3{bottom:395.461350px;}
.ycb{bottom:395.881350px;}
.y1d3{bottom:401.371350px;}
.y4d{bottom:403.918800px;}
.y128{bottom:405.544500px;}
.y163{bottom:405.571350px;}
.ye1{bottom:405.601350px;}
.y69{bottom:405.604650px;}
.y18f{bottom:409.756350px;}
.ya2{bottom:413.461350px;}
.y4c{bottom:420.415800px;}
.y1d2{bottom:422.371350px;}
.y162{bottom:423.571350px;}
.ye0{bottom:423.601350px;}
.y68{bottom:423.604650px;}
.y127{bottom:427.185000px;}
.y18e{bottom:427.756350px;}
.ya1{bottom:431.461350px;}
.yca{bottom:435.466350px;}
.y4b{bottom:436.912800px;}
.y161{bottom:441.571350px;}
.ydf{bottom:441.601350px;}
.y67{bottom:441.604650px;}
.y1d1{bottom:442.771350px;}
.y126{bottom:448.825500px;}
.ya0{bottom:449.461350px;}
.y4a{bottom:453.409800px;}
.yc9{bottom:453.631350px;}
.y1d0{bottom:457.171350px;}
.y160{bottom:459.571350px;}
.yde{bottom:459.601350px;}
.y66{bottom:459.604650px;}
.y18d{bottom:462.361350px;}
.y9f{bottom:467.461350px;}
.y49{bottom:469.906800px;}
.y125{bottom:470.466000px;}
.y1cf{bottom:471.571350px;}
.yc8{bottom:471.796350px;}
.y15f{bottom:477.571350px;}
.ydd{bottom:477.601350px;}
.y65{bottom:477.604650px;}
.y18c{bottom:480.361350px;}
.y48{bottom:486.403800px;}
.yc7{bottom:489.961350px;}
.y1ce{bottom:491.971350px;}
.y124{bottom:492.106500px;}
.y15e{bottom:495.571350px;}
.ydc{bottom:495.601350px;}
.y64{bottom:495.604650px;}
.y18b{bottom:498.361350px;}
.y9e{bottom:498.961350px;}
.y47{bottom:502.900800px;}
.y1cd{bottom:506.371350px;}
.yc6{bottom:508.126350px;}
.y15d{bottom:513.571350px;}
.ydb{bottom:513.601350px;}
.y63{bottom:513.604650px;}
.y123{bottom:513.747000px;}
.y18a{bottom:516.361350px;}
.y9d{bottom:516.961350px;}
.y46{bottom:519.397800px;}
.y1cc{bottom:520.771350px;}
.yc5{bottom:526.291350px;}
.y15c{bottom:531.571350px;}
.yda{bottom:531.601350px;}
.y62{bottom:531.604650px;}
.y189{bottom:534.361350px;}
.y9c{bottom:534.961350px;}
.y1cb{bottom:535.171350px;}
.y122{bottom:535.387500px;}
.y45{bottom:535.894800px;}
.yc4{bottom:544.456350px;}
.y15b{bottom:549.571350px;}
.yfb{bottom:549.601350px;}
.y61{bottom:549.610800px;}
.y188{bottom:552.361350px;}
.y44{bottom:552.391800px;}
.y9b{bottom:552.961350px;}
.y121{bottom:557.028000px;}
.yc3{bottom:562.621350px;}
.y1ca{bottom:563.971350px;}
.yd9{bottom:567.586350px;}
.yfa{bottom:567.601350px;}
.y60{bottom:567.610800px;}
.y43{bottom:568.888800px;}
.y187{bottom:570.361350px;}
.y9a{bottom:570.961350px;}
.y120{bottom:578.668500px;}
.yc2{bottom:580.786350px;}
.y15a{bottom:581.071350px;}
.y1c9{bottom:584.371350px;}
.y42{bottom:585.385800px;}
.yd8{bottom:585.586350px;}
.yf9{bottom:585.601350px;}
.y5f{bottom:585.610800px;}
.y186{bottom:588.361350px;}
.y1a{bottom:588.934650px;}
.y99{bottom:588.961350px;}
.y1c8{bottom:598.771350px;}
.yc1{bottom:598.951350px;}
.y159{bottom:599.071350px;}
.y20e{bottom:599.918850px;}
.y237{bottom:600.065100px;}
.y11f{bottom:600.309000px;}
.y41{bottom:601.882800px;}
.yd7{bottom:603.586350px;}
.yf8{bottom:603.601350px;}
.y19{bottom:603.934650px;}
.y185{bottom:606.361350px;}
.y20d{bottom:612.665100px;}
.y236{bottom:612.811350px;}
.y1c7{bottom:613.171350px;}
.y158{bottom:617.071350px;}
.yc0{bottom:617.116350px;}
.y40{bottom:618.379800px;}
.y18{bottom:618.934650px;}
.yd6{bottom:621.586350px;}
.yf7{bottom:621.601350px;}
.y11e{bottom:621.949500px;}
.y184{bottom:624.361350px;}
.y20c{bottom:625.411350px;}
.y235{bottom:625.557600px;}
.y3f{bottom:634.876800px;}
.ybf{bottom:635.281350px;}
.y20b{bottom:638.157600px;}
.y234{bottom:638.303850px;}
.y98{bottom:639.571350px;}
.yd5{bottom:639.586350px;}
.y1ae{bottom:639.601350px;}
.y183{bottom:642.361350px;}
.y11d{bottom:643.590000px;}
.y31{bottom:643.615350px;}
.y1c6{bottom:645.571350px;}
.y17{bottom:647.434650px;}
.y157{bottom:648.571350px;}
.y20a{bottom:650.903850px;}
.y233{bottom:651.050100px;}
.y3e{bottom:651.373800px;}
.ybe{bottom:653.446350px;}
.y97{bottom:657.571350px;}
.yd4{bottom:657.586350px;}
.y1ad{bottom:657.601350px;}
.y30{bottom:660.112350px;}
.y182{bottom:660.361350px;}
.y16{bottom:662.434650px;}
.y209{bottom:663.650100px;}
.y232{bottom:663.796350px;}
.y11c{bottom:665.230500px;}
.y1c5{bottom:665.971350px;}
.y156{bottom:666.571350px;}
.y3d{bottom:667.870800px;}
.ybd{bottom:671.611350px;}
.y96{bottom:675.571350px;}
.yd3{bottom:675.586350px;}
.y1ac{bottom:675.601350px;}
.y208{bottom:676.396350px;}
.y231{bottom:676.542600px;}
.y2f{bottom:676.609350px;}
.y15{bottom:677.434650px;}
.y181{bottom:678.361350px;}
.y3c{bottom:684.367800px;}
.y155{bottom:684.571350px;}
.y11b{bottom:686.871000px;}
.y207{bottom:689.142600px;}
.y230{bottom:689.288850px;}
.ybc{bottom:689.776350px;}
.y14{bottom:692.434650px;}
.y2e{bottom:693.115350px;}
.y95{bottom:693.571350px;}
.yd2{bottom:693.586350px;}
.y1ab{bottom:693.601350px;}
.y1c4{bottom:695.971350px;}
.y180{bottom:696.361350px;}
.y3b{bottom:700.864800px;}
.y206{bottom:701.888850px;}
.y22f{bottom:702.035100px;}
.y154{bottom:702.571350px;}
.y1c3{bottom:705.571350px;}
.y13{bottom:707.434650px;}
.ybb{bottom:707.941350px;}
.y11a{bottom:708.511500px;}
.y2d{bottom:709.612350px;}
.y94{bottom:711.571350px;}
.yd1{bottom:711.586350px;}
.y1aa{bottom:711.601350px;}
.y205{bottom:714.635100px;}
.y22e{bottom:714.781350px;}
.y3a{bottom:717.361800px;}
.y153{bottom:720.571350px;}
.y12{bottom:722.434650px;}
.y1c2{bottom:725.971350px;}
.yba{bottom:726.106350px;}
.y2c{bottom:726.109350px;}
.y204{bottom:727.381350px;}
.y22d{bottom:727.527600px;}
.y93{bottom:729.571350px;}
.yd0{bottom:729.586350px;}
.y1a9{bottom:729.601350px;}
.y119{bottom:730.152000px;}
.y17f{bottom:730.966350px;}
.y39{bottom:733.858800px;}
.y1c1{bottom:735.571350px;}
.y152{bottom:738.571350px;}
.y203{bottom:740.127600px;}
.y22c{bottom:740.273850px;}
.y2b{bottom:742.621350px;}
.yb9{bottom:744.271350px;}
.y11{bottom:746.434650px;}
.y92{bottom:747.571350px;}
.ycf{bottom:747.586350px;}
.y1a8{bottom:747.601350px;}
.y17e{bottom:748.966350px;}
.y38{bottom:750.355800px;}
.y1c0{bottom:750.571350px;}
.y118{bottom:751.792500px;}
.y202{bottom:752.873850px;}
.y22b{bottom:753.020100px;}
.y2a{bottom:759.118350px;}
.y10{bottom:761.434650px;}
.yb8{bottom:762.436350px;}
.y91{bottom:765.571350px;}
.yce{bottom:765.586350px;}
.y1a7{bottom:765.601350px;}
.y201{bottom:765.620100px;}
.y22a{bottom:765.766350px;}
.y37{bottom:766.852800px;}
.y17d{bottom:766.966350px;}
.y151{bottom:770.071350px;}
.y1bf{bottom:770.971350px;}
.y117{bottom:773.433000px;}
.y29{bottom:775.615350px;}
.yf{bottom:776.434650px;}
.y200{bottom:778.366350px;}
.y229{bottom:778.512600px;}
.y1be{bottom:780.571350px;}
.yb7{bottom:780.601350px;}
.y36{bottom:783.349800px;}
.y90{bottom:783.571350px;}
.yf6{bottom:783.586350px;}
.y1a6{bottom:783.601350px;}
.y17c{bottom:784.966350px;}
.y150{bottom:788.071350px;}
.y1ff{bottom:791.112600px;}
.y228{bottom:791.258850px;}
.ye{bottom:791.434650px;}
.y28{bottom:792.112350px;}
.y116{bottom:795.073500px;}
.yb6{bottom:798.766350px;}
.y35{bottom:799.846800px;}
.y1bd{bottom:800.971200px;}
.y8f{bottom:801.571350px;}
.yf5{bottom:801.586350px;}
.y1a5{bottom:801.601350px;}
.y17b{bottom:802.966350px;}
.y1fe{bottom:803.858850px;}
.y227{bottom:804.005100px;}
.y14f{bottom:806.071350px;}
.yd{bottom:806.434650px;}
.y27{bottom:808.609350px;}
.y1bc{bottom:810.571350px;}
.y34{bottom:816.343800px;}
.y1fd{bottom:816.605100px;}
.y115{bottom:816.714000px;}
.y226{bottom:816.751350px;}
.yb5{bottom:816.931350px;}
.y8e{bottom:819.571350px;}
.yf4{bottom:819.586350px;}
.y1a4{bottom:819.601350px;}
.y17a{bottom:820.966350px;}
.yc{bottom:821.434650px;}
.y14e{bottom:824.071350px;}
.y1fc{bottom:829.351350px;}
.y225{bottom:829.497600px;}
.y1bb{bottom:830.971200px;}
.y33{bottom:832.840800px;}
.yb4{bottom:835.096350px;}
.yb{bottom:836.434650px;}
.y8d{bottom:837.571350px;}
.yf3{bottom:837.586350px;}
.y1a3{bottom:837.601350px;}
.y114{bottom:838.354500px;}
.y179{bottom:838.966350px;}
.y26{bottom:840.340650px;}
.y1ba{bottom:840.571350px;}
.y14d{bottom:842.071350px;}
.y1fb{bottom:842.097600px;}
.y224{bottom:842.243850px;}
.y32{bottom:849.340800px;}
.ya{bottom:851.434650px;}
.yb3{bottom:853.261350px;}
.y1fa{bottom:854.843850px;}
.y223{bottom:854.990100px;}
.y8c{bottom:855.571350px;}
.y1a2{bottom:855.601350px;}
.y178{bottom:856.966350px;}
.y113{bottom:859.995000px;}
.y14c{bottom:860.071350px;}
.y1b9{bottom:860.971200px;}
.y1f9{bottom:867.590100px;}
.y222{bottom:867.736350px;}
.y1b8{bottom:870.571350px;}
.yb2{bottom:871.426350px;}
.y8b{bottom:873.571350px;}
.y1a1{bottom:873.601350px;}
.y177{bottom:874.966350px;}
.y14b{bottom:878.071350px;}
.y1f8{bottom:880.336350px;}
.y221{bottom:880.482600px;}
.y112{bottom:881.635500px;}
.yb1{bottom:889.591350px;}
.y1b7{bottom:890.971200px;}
.y8a{bottom:891.571350px;}
.y1a0{bottom:891.601350px;}
.y176{bottom:892.966350px;}
.y1f7{bottom:893.082600px;}
.y220{bottom:893.228850px;}
.y14a{bottom:896.071350px;}
.y111{bottom:903.276000px;}
.y1f6{bottom:905.828850px;}
.y1b6{bottom:905.971200px;}
.y21f{bottom:905.975100px;}
.yb0{bottom:907.756350px;}
.y89{bottom:909.571350px;}
.y149{bottom:914.071350px;}
.y1b5{bottom:915.571350px;}
.y9{bottom:918.337650px;}
.y1f5{bottom:918.575100px;}
.y21e{bottom:918.721350px;}
.y110{bottom:924.916500px;}
.yaf{bottom:925.921350px;}
.y88{bottom:927.571350px;}
.y1f4{bottom:931.321350px;}
.y21d{bottom:931.467600px;}
.y148{bottom:932.071350px;}
.y1b4{bottom:935.971200px;}
.y8{bottom:937.837650px;}
.y1f3{bottom:944.067600px;}
.yae{bottom:944.086350px;}
.y21c{bottom:944.213850px;}
.y87{bottom:945.571350px;}
.y10f{bottom:946.557000px;}
.y147{bottom:950.071350px;}
.y1f2{bottom:956.813850px;}
.y21b{bottom:956.960100px;}
.y7{bottom:957.340650px;}
.yad{bottom:962.251350px;}
.y86{bottom:963.571350px;}
.y1b3{bottom:965.971200px;}
.y146{bottom:968.071350px;}
.y10e{bottom:968.197500px;}
.y1f1{bottom:969.560100px;}
.y21a{bottom:969.706350px;}
.yac{bottom:980.416350px;}
.y1b2{bottom:980.971200px;}
.y85{bottom:981.571350px;}
.y1f0{bottom:982.306350px;}
.y219{bottom:982.452600px;}
.y145{bottom:986.071350px;}
.y10d{bottom:989.838000px;}
.y1b1{bottom:990.571350px;}
.y1ef{bottom:995.052600px;}
.y218{bottom:995.198850px;}
.yab{bottom:998.581350px;}
.y84{bottom:999.571350px;}
.y1ee{bottom:1007.798850px;}
.y217{bottom:1007.945100px;}
.y1b0{bottom:1010.971200px;}
.y10c{bottom:1011.478500px;}
.y6{bottom:1015.828650px;}
.yaa{bottom:1016.746350px;}
.y83{bottom:1017.571350px;}
.y1ed{bottom:1020.545100px;}
.y1af{bottom:1020.571350px;}
.y216{bottom:1020.691350px;}
.y10b{bottom:1033.119000px;}
.y1ec{bottom:1033.291350px;}
.y215{bottom:1033.437600px;}
.ya9{bottom:1034.911350px;}
.y82{bottom:1035.571350px;}
.y1eb{bottom:1046.037600px;}
.y214{bottom:1046.183850px;}
.ya8{bottom:1053.076350px;}
.y10a{bottom:1053.261000px;}
.y81{bottom:1053.571350px;}
.y5{bottom:1054.834650px;}
.y1ea{bottom:1058.783850px;}
.y213{bottom:1058.930100px;}
.ya7{bottom:1071.241350px;}
.y1e9{bottom:1071.530100px;}
.y80{bottom:1071.571350px;}
.y212{bottom:1071.676350px;}
.y109{bottom:1077.898500px;}
.y1e8{bottom:1084.276350px;}
.y211{bottom:1084.422600px;}
.ya6{bottom:1089.406350px;}
.y7f{bottom:1089.571350px;}
.y4{bottom:1093.840650px;}
.y1e7{bottom:1097.022600px;}
.y210{bottom:1097.168850px;}
.y108{bottom:1099.912350px;}
.y7e{bottom:1107.571350px;}
.y1e6{bottom:1109.768850px;}
.y20f{bottom:1109.915100px;}
.y3{bottom:1140.946200px;}
.y7c{bottom:1140.946350px;}
.h10{height:23.931648px;}
.h11{height:32.895000px;}
.h8{height:34.944000px;}
.h3{height:36.096000px;}
.hf{height:39.474000px;}
.h9{height:40.608000px;}
.h2{height:43.680000px;}
.ha{height:44.040000px;}
.he{height:45.120000px;}
.hd{height:45.414000px;}
.h4{height:50.460000px;}
.hc{height:56.173920px;}
.hb{height:56.198520px;}
.h6{height:61.687098px;}
.h7{height:61.699098px;}
.h5{height:95.906250px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:60.750000px;}
.x3{left:66.450000px;}
.x6{left:70.399950px;}
.xd{left:74.245050px;}
.x11{left:80.236500px;}
.x14{left:84.675000px;}
.x4{left:220.379400px;}
.x2{left:271.721850px;}
.xe{left:460.330050px;}
.x12{left:469.748100px;}
.xf{left:473.830050px;}
.x13{left:484.249350px;}
.xb{left:537.520200px;}
.x8{left:546.518850px;}
.xc{left:551.020200px;}
.x9{left:558.395850px;}
.xa{left:564.518850px;}
.x10{left:723.708900px;}
.x7{left:759.024750px;}
.x1{left:824.963400px;}
@media print{
.v3{vertical-align:-19.199467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.000000pt;}
.v1{vertical-align:26.400000pt;}
.ls4{letter-spacing:-1.578667pt;}
.ls6{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.530400pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.530400pt;}
.lsa{letter-spacing:0.600000pt;}
.ls7{letter-spacing:0.800000pt;}
.ls0{letter-spacing:3.360000pt;}
.ls1{letter-spacing:15.289067pt;}
.ls2{letter-spacing:21.770667pt;}
.ls5{letter-spacing:1474.644267pt;}
.ws1{word-spacing:-18.186667pt;}
.ws6c{word-spacing:-14.666667pt;}
.ws3{word-spacing:-13.866667pt;}
.wsb2{word-spacing:-13.344000pt;}
.wsc0{word-spacing:-13.066667pt;}
.ws2{word-spacing:-12.800000pt;}
.ws10a{word-spacing:-11.720000pt;}
.ws108{word-spacing:-11.120000pt;}
.ws0{word-spacing:-10.813088pt;}
.ws7{word-spacing:-10.240000pt;}
.ws6d{word-spacing:-9.724000pt;}
.ws4{word-spacing:-9.193600pt;}
.wsbf{word-spacing:-8.663200pt;}
.ws98{word-spacing:-7.200000pt;}
.wsee{word-spacing:-6.789120pt;}
.wsab{word-spacing:-4.693333pt;}
.wsd8{word-spacing:-4.213333pt;}
.ws9e{word-spacing:-3.893333pt;}
.wsc3{word-spacing:-3.733333pt;}
.ws56{word-spacing:-3.573333pt;}
.ws70{word-spacing:-3.040000pt;}
.ws6e{word-spacing:-2.666667pt;}
.wsad{word-spacing:-2.453333pt;}
.ws27{word-spacing:-2.400000pt;}
.wsf2{word-spacing:-2.293333pt;}
.ws78{word-spacing:-2.240000pt;}
.ws64{word-spacing:-2.186667pt;}
.ws3d{word-spacing:-1.973333pt;}
.ws29{word-spacing:-1.920000pt;}
.ws57{word-spacing:-1.866667pt;}
.ws68{word-spacing:-1.813333pt;}
.ws11{word-spacing:-1.653333pt;}
.wse0{word-spacing:-1.600000pt;}
.ws14{word-spacing:-1.440000pt;}
.ws4e{word-spacing:-1.386667pt;}
.wse5{word-spacing:-1.333333pt;}
.wsdd{word-spacing:-1.280000pt;}
.wse3{word-spacing:-1.226667pt;}
.ws85{word-spacing:-1.066667pt;}
.wsb1{word-spacing:-1.013333pt;}
.ws9d{word-spacing:-0.960000pt;}
.ws2f{word-spacing:-0.906667pt;}
.wsf3{word-spacing:-0.853333pt;}
.ws65{word-spacing:-0.800000pt;}
.ws86{word-spacing:-0.746667pt;}
.ws16{word-spacing:-0.693333pt;}
.wsc{word-spacing:-0.672000pt;}
.ws109{word-spacing:-0.600000pt;}
.ws91{word-spacing:-0.586667pt;}
.ws58{word-spacing:-0.533333pt;}
.wsba{word-spacing:-0.530400pt;}
.ws9b{word-spacing:-0.480000pt;}
.ws8a{word-spacing:-0.426667pt;}
.wsd0{word-spacing:-0.266667pt;}
.ws87{word-spacing:-0.213333pt;}
.ws107{word-spacing:-0.128000pt;}
.ws10b{word-spacing:-0.120000pt;}
.ws44{word-spacing:-0.106667pt;}
.ws34{word-spacing:-0.053333pt;}
.ws10{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.wsd{word-spacing:0.096000pt;}
.ws22{word-spacing:0.213333pt;}
.ws89{word-spacing:0.266667pt;}
.ws5a{word-spacing:0.320000pt;}
.ws72{word-spacing:0.373333pt;}
.ws61{word-spacing:0.426667pt;}
.ws3a{word-spacing:0.640000pt;}
.ws106{word-spacing:0.693333pt;}
.wsae{word-spacing:0.746667pt;}
.ws102{word-spacing:0.800000pt;}
.ws60{word-spacing:0.853333pt;}
.ws77{word-spacing:0.906667pt;}
.ws93{word-spacing:1.013333pt;}
.ws79{word-spacing:1.060800pt;}
.wsde{word-spacing:1.173333pt;}
.ws69{word-spacing:1.280000pt;}
.wsb{word-spacing:1.392000pt;}
.ws94{word-spacing:1.440000pt;}
.wsf1{word-spacing:1.546667pt;}
.ws6{word-spacing:1.578667pt;}
.ws1b{word-spacing:1.600000pt;}
.ws99{word-spacing:1.653333pt;}
.wscc{word-spacing:1.706667pt;}
.ws7d{word-spacing:1.760000pt;}
.wsd1{word-spacing:1.813333pt;}
.ws5c{word-spacing:1.920000pt;}
.ws66{word-spacing:1.973333pt;}
.ws31{word-spacing:2.026667pt;}
.ws6f{word-spacing:2.080000pt;}
.wse2{word-spacing:2.133333pt;}
.ws25{word-spacing:2.186667pt;}
.ws9a{word-spacing:2.240000pt;}
.wsc2{word-spacing:2.293333pt;}
.wsa1{word-spacing:2.333760pt;}
.ws19{word-spacing:2.346667pt;}
.ws75{word-spacing:2.400000pt;}
.ws36{word-spacing:2.506667pt;}
.wsa7{word-spacing:2.560000pt;}
.wse9{word-spacing:2.666667pt;}
.ws1c{word-spacing:2.720000pt;}
.ws5b{word-spacing:2.986667pt;}
.ws74{word-spacing:3.146667pt;}
.ws9c{word-spacing:3.200000pt;}
.wsbe{word-spacing:3.253333pt;}
.wsb3{word-spacing:3.306667pt;}
.ws24{word-spacing:3.413333pt;}
.wsa2{word-spacing:3.520000pt;}
.wscd{word-spacing:3.626667pt;}
.ws2a{word-spacing:3.680000pt;}
.wsbd{word-spacing:3.733333pt;}
.wsf{word-spacing:3.744000pt;}
.ws88{word-spacing:3.840000pt;}
.ws13{word-spacing:3.893333pt;}
.ws32{word-spacing:4.000000pt;}
.wse1{word-spacing:4.160000pt;}
.ws35{word-spacing:4.213333pt;}
.wsa5{word-spacing:4.320000pt;}
.wsc1{word-spacing:4.480000pt;}
.wsc6{word-spacing:4.533333pt;}
.ws95{word-spacing:4.693333pt;}
.ws52{word-spacing:4.800000pt;}
.ws2e{word-spacing:4.853333pt;}
.wsec{word-spacing:4.906667pt;}
.ws51{word-spacing:4.960000pt;}
.ws8f{word-spacing:5.013333pt;}
.wse6{word-spacing:5.120000pt;}
.ws26{word-spacing:5.173333pt;}
.wsa6{word-spacing:5.546667pt;}
.wsb9{word-spacing:5.653333pt;}
.wsf9{word-spacing:5.706667pt;}
.ws67{word-spacing:5.813333pt;}
.ws73{word-spacing:5.920000pt;}
.ws18{word-spacing:5.973333pt;}
.ws4f{word-spacing:6.026667pt;}
.ws53{word-spacing:6.133333pt;}
.wscb{word-spacing:6.186667pt;}
.ws101{word-spacing:6.240000pt;}
.ws5e{word-spacing:6.293333pt;}
.ws46{word-spacing:6.400000pt;}
.ws48{word-spacing:6.453333pt;}
.ws3e{word-spacing:6.613333pt;}
.wse4{word-spacing:6.720000pt;}
.wsb5{word-spacing:6.773333pt;}
.ws47{word-spacing:6.880000pt;}
.wsda{word-spacing:6.933333pt;}
.ws4d{word-spacing:7.093333pt;}
.wsac{word-spacing:7.200000pt;}
.wsbc{word-spacing:7.253333pt;}
.wsdb{word-spacing:7.306667pt;}
.wsa{word-spacing:7.344000pt;}
.ws23{word-spacing:7.360000pt;}
.ws71{word-spacing:7.413333pt;}
.wse{word-spacing:7.536000pt;}
.ws104{word-spacing:7.573333pt;}
.ws9{word-spacing:7.584000pt;}
.ws15{word-spacing:7.626667pt;}
.ws2d{word-spacing:7.733333pt;}
.ws96{word-spacing:7.786667pt;}
.ws8d{word-spacing:7.840000pt;}
.ws1d{word-spacing:7.946667pt;}
.wsa4{word-spacing:8.000000pt;}
.ws45{word-spacing:8.053333pt;}
.ws33{word-spacing:8.160000pt;}
.ws43{word-spacing:8.213333pt;}
.wsc8{word-spacing:8.266667pt;}
.wsce{word-spacing:8.426667pt;}
.ws59{word-spacing:8.480000pt;}
.wsd3{word-spacing:8.533333pt;}
.ws1e{word-spacing:8.586667pt;}
.ws7c{word-spacing:8.640000pt;}
.wsb6{word-spacing:8.746667pt;}
.wsfa{word-spacing:8.800000pt;}
.ws3c{word-spacing:8.853333pt;}
.ws82{word-spacing:9.013333pt;}
.ws1f{word-spacing:9.120000pt;}
.ws54{word-spacing:9.386667pt;}
.ws42{word-spacing:9.546667pt;}
.ws2c{word-spacing:9.600000pt;}
.ws4b{word-spacing:9.653333pt;}
.wsd7{word-spacing:10.026667pt;}
.ws37{word-spacing:10.133333pt;}
.ws38{word-spacing:10.240000pt;}
.ws8e{word-spacing:10.293333pt;}
.wsaf{word-spacing:10.400000pt;}
.ws8c{word-spacing:10.453333pt;}
.ws92{word-spacing:10.560000pt;}
.wsca{word-spacing:10.613333pt;}
.wsa8{word-spacing:10.666667pt;}
.wsc9{word-spacing:10.880000pt;}
.wsb8{word-spacing:11.040000pt;}
.ws105{word-spacing:11.146667pt;}
.wsf6{word-spacing:11.306667pt;}
.wsb7{word-spacing:11.360000pt;}
.ws12{word-spacing:11.573333pt;}
.ws40{word-spacing:11.626667pt;}
.wsc5{word-spacing:11.786667pt;}
.ws55{word-spacing:11.840000pt;}
.ws5d{word-spacing:11.893333pt;}
.wseb{word-spacing:11.946667pt;}
.ws21{word-spacing:12.053333pt;}
.wsf4{word-spacing:12.213333pt;}
.ws3f{word-spacing:12.533333pt;}
.wsd9{word-spacing:12.586667pt;}
.ws4a{word-spacing:12.693333pt;}
.wsef{word-spacing:12.853333pt;}
.ws84{word-spacing:12.960000pt;}
.wsf5{word-spacing:13.013333pt;}
.ws76{word-spacing:13.280000pt;}
.ws41{word-spacing:13.333333pt;}
.ws20{word-spacing:13.440000pt;}
.ws83{word-spacing:13.493333pt;}
.wsfe{word-spacing:13.600000pt;}
.ws39{word-spacing:13.653333pt;}
.wsbb{word-spacing:13.760000pt;}
.ws7b{word-spacing:13.813333pt;}
.wsdc{word-spacing:13.973333pt;}
.wsd2{word-spacing:14.080000pt;}
.ws103{word-spacing:14.133333pt;}
.ws63{word-spacing:14.240000pt;}
.ws8{word-spacing:14.304000pt;}
.wsed{word-spacing:14.400000pt;}
.ws7a{word-spacing:14.506667pt;}
.ws80{word-spacing:14.560000pt;}
.wse8{word-spacing:14.720000pt;}
.wse7{word-spacing:14.773333pt;}
.wscf{word-spacing:14.880000pt;}
.wsea{word-spacing:15.146667pt;}
.ws5f{word-spacing:15.200000pt;}
.ws30{word-spacing:15.253333pt;}
.wsb0{word-spacing:15.360000pt;}
.wsd5{word-spacing:15.466667pt;}
.wsdf{word-spacing:15.573333pt;}
.wsf8{word-spacing:15.733333pt;}
.ws9f{word-spacing:15.946667pt;}
.wsd6{word-spacing:16.160000pt;}
.wsc7{word-spacing:16.373333pt;}
.wsfb{word-spacing:16.533333pt;}
.wsd4{word-spacing:16.640000pt;}
.ws90{word-spacing:16.800000pt;}
.wsff{word-spacing:17.173333pt;}
.ws3b{word-spacing:17.226667pt;}
.ws6a{word-spacing:17.280000pt;}
.wsa9{word-spacing:17.440000pt;}
.ws8b{word-spacing:17.493333pt;}
.wsa0{word-spacing:17.653333pt;}
.wsc4{word-spacing:17.706667pt;}
.ws62{word-spacing:17.813333pt;}
.ws4c{word-spacing:18.453333pt;}
.ws50{word-spacing:18.933333pt;}
.ws17{word-spacing:18.986667pt;}
.wsfc{word-spacing:19.093333pt;}
.ws49{word-spacing:19.466667pt;}
.ws28{word-spacing:19.733333pt;}
.ws2b{word-spacing:20.320000pt;}
.ws97{word-spacing:21.386667pt;}
.wsa3{word-spacing:21.440000pt;}
.wsf0{word-spacing:24.533333pt;}
.ws6b{word-spacing:25.333333pt;}
.ws1a{word-spacing:27.200000pt;}
.ws81{word-spacing:28.000000pt;}
.wsf7{word-spacing:29.973333pt;}
.ws7e{word-spacing:31.306667pt;}
.wsb4{word-spacing:32.266667pt;}
.ws100{word-spacing:32.320000pt;}
.wsfd{word-spacing:35.306667pt;}
.ws7f{word-spacing:40.640000pt;}
.wsaa{word-spacing:47.840000pt;}
._9{margin-left:-52.480000pt;}
._7{margin-left:-42.640000pt;}
._2e{margin-left:-21.333333pt;}
._30{margin-left:-19.236800pt;}
._d{margin-left:-16.906667pt;}
._17{margin-left:-13.344000pt;}
._2f{margin-left:-11.626667pt;}
._8{margin-left:-10.240000pt;}
._e{margin-left:-8.053333pt;}
._5{margin-left:-6.546560pt;}
._4{margin-left:-5.403200pt;}
._1{margin-left:-4.347200pt;}
._3{margin-left:-3.232533pt;}
._2{margin-left:-2.168704pt;}
._0{margin-left:-1.156267pt;}
._6{width:1.056000pt;}
._c{width:2.011200pt;}
._32{width:10.240000pt;}
._31{width:11.225600pt;}
._a{width:12.480000pt;}
._33{width:18.200000pt;}
._20{width:32.120704pt;}
._b{width:33.792000pt;}
._f{width:34.731200pt;}
._11{width:57.744000pt;}
._18{width:140.600704pt;}
._26{width:147.312000pt;}
._14{width:325.056000pt;}
._1d{width:374.928000pt;}
._22{width:391.824000pt;}
._1b{width:455.856000pt;}
._1c{width:475.440000pt;}
._19{width:485.088000pt;}
._12{width:488.688000pt;}
._1f{width:499.392000pt;}
._23{width:502.992000pt;}
._1a{width:516.288000pt;}
._13{width:518.208000pt;}
._15{width:568.704000pt;}
._1e{width:576.720000pt;}
._24{width:589.200000pt;}
._16{width:633.648000pt;}
._21{width:692.304000pt;}
._10{width:758.112000pt;}
._25{width:948.584704pt;}
._27{width:1011.360000pt;}
._28{width:1187.328000pt;}
._2c{width:1815.648000pt;}
._29{width:1854.000000pt;}
._2b{width:1960.560000pt;}
._2a{width:2003.232000pt;}
._2d{width:2029.872000pt;}
.fs8{font-size:28.288000pt;}
.fs5{font-size:34.666667pt;}
.fs7{font-size:35.360000pt;}
.fs4{font-size:38.896000pt;}
.fs9{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:36.785200pt;}
.y1{bottom:36.787867pt;}
.y175{bottom:72.507867pt;}
.y7d{bottom:72.521067pt;}
.y107{bottom:72.534533pt;}
.y7b{bottom:72.537467pt;}
.y5e{bottom:72.542933pt;}
.yf2{bottom:72.547867pt;}
.y1e5{bottom:72.557867pt;}
.y19f{bottom:72.561200pt;}
.y1f{bottom:72.566933pt;}
.y144{bottom:72.706933pt;}
.y137{bottom:72.746933pt;}
.y1e4{bottom:83.887867pt;}
.y1e{bottom:85.900267pt;}
.y174{bottom:88.507867pt;}
.y106{bottom:88.534533pt;}
.y7a{bottom:88.537467pt;}
.y5d{bottom:88.542933pt;}
.yf1{bottom:88.547867pt;}
.y19e{bottom:88.561200pt;}
.y143{bottom:88.933600pt;}
.y136{bottom:89.213600pt;}
.y1e3{bottom:95.217867pt;}
.y1d{bottom:99.233600pt;}
.y173{bottom:104.507867pt;}
.y105{bottom:104.534533pt;}
.y79{bottom:104.537467pt;}
.y5c{bottom:104.542933pt;}
.yf0{bottom:104.547867pt;}
.y19d{bottom:104.561200pt;}
.y142{bottom:105.160267pt;}
.y135{bottom:105.680267pt;}
.y1e2{bottom:106.547867pt;}
.y1e1{bottom:117.877867pt;}
.y172{bottom:120.507867pt;}
.y104{bottom:120.534533pt;}
.y78{bottom:120.537467pt;}
.y5b{bottom:120.542933pt;}
.yef{bottom:120.547867pt;}
.y19c{bottom:120.561200pt;}
.y141{bottom:121.386933pt;}
.y134{bottom:122.146933pt;}
.y1c{bottom:124.566933pt;}
.y1e0{bottom:129.207867pt;}
.y171{bottom:136.507867pt;}
.y103{bottom:136.534533pt;}
.y77{bottom:136.537467pt;}
.y5a{bottom:136.542933pt;}
.yee{bottom:136.547867pt;}
.y19b{bottom:136.561200pt;}
.y140{bottom:137.613600pt;}
.y1b{bottom:137.900267pt;}
.y133{bottom:138.613600pt;}
.y1df{bottom:140.537867pt;}
.y1de{bottom:151.867867pt;}
.y170{bottom:152.507867pt;}
.y102{bottom:152.534533pt;}
.y76{bottom:152.537467pt;}
.y59{bottom:152.542933pt;}
.yed{bottom:152.547867pt;}
.y19a{bottom:152.561200pt;}
.y13f{bottom:153.840267pt;}
.y25{bottom:154.849467pt;}
.y132{bottom:155.080267pt;}
.y1dd{bottom:163.201200pt;}
.y24{bottom:167.649467pt;}
.y16f{bottom:168.507867pt;}
.y101{bottom:168.534533pt;}
.y75{bottom:168.537467pt;}
.y58{bottom:168.542933pt;}
.yec{bottom:168.547867pt;}
.y131{bottom:171.546933pt;}
.y23{bottom:180.449467pt;}
.y16e{bottom:184.507867pt;}
.y100{bottom:184.534533pt;}
.y74{bottom:184.537467pt;}
.y57{bottom:184.542933pt;}
.yeb{bottom:184.547867pt;}
.y130{bottom:188.013600pt;}
.y13e{bottom:189.026933pt;}
.y22{bottom:193.249467pt;}
.y16d{bottom:200.507867pt;}
.yff{bottom:200.534533pt;}
.y73{bottom:200.537467pt;}
.y56{bottom:200.542933pt;}
.yea{bottom:200.547867pt;}
.y199{bottom:204.227867pt;}
.y12f{bottom:204.480267pt;}
.y13d{bottom:205.253600pt;}
.y21{bottom:206.049467pt;}
.y16c{bottom:216.507867pt;}
.yfe{bottom:216.534533pt;}
.y72{bottom:216.537467pt;}
.ye9{bottom:216.547867pt;}
.y20{bottom:218.849467pt;}
.y198{bottom:220.227867pt;}
.y12e{bottom:220.946933pt;}
.y13c{bottom:221.480267pt;}
.y1dc{bottom:225.574533pt;}
.y16b{bottom:232.507867pt;}
.yfd{bottom:232.534533pt;}
.y71{bottom:232.537467pt;}
.ye8{bottom:232.547867pt;}
.y197{bottom:236.227867pt;}
.y12d{bottom:237.413600pt;}
.y13b{bottom:237.706933pt;}
.y1db{bottom:238.374533pt;}
.y55{bottom:241.726933pt;}
.y16a{bottom:248.507867pt;}
.yfc{bottom:248.534533pt;}
.y70{bottom:248.537467pt;}
.y1da{bottom:251.174533pt;}
.y196{bottom:252.227867pt;}
.y12c{bottom:253.880267pt;}
.y13a{bottom:253.933600pt;}
.y54{bottom:256.390933pt;}
.y1d9{bottom:263.974533pt;}
.y169{bottom:264.507867pt;}
.ye7{bottom:264.534533pt;}
.y6f{bottom:264.537467pt;}
.y195{bottom:268.227867pt;}
.y139{bottom:270.160267pt;}
.y12b{bottom:270.346933pt;}
.y53{bottom:271.054933pt;}
.y1d8{bottom:276.774533pt;}
.y168{bottom:280.507867pt;}
.ye6{bottom:280.534533pt;}
.y6e{bottom:280.537467pt;}
.y194{bottom:284.227867pt;}
.y52{bottom:285.718933pt;}
.y138{bottom:286.386933pt;}
.y12a{bottom:286.813600pt;}
.y1d7{bottom:289.574533pt;}
.y167{bottom:296.507867pt;}
.ye5{bottom:296.534533pt;}
.y6d{bottom:296.537467pt;}
.y193{bottom:300.227867pt;}
.y51{bottom:300.382933pt;}
.y1d6{bottom:307.707867pt;}
.y166{bottom:312.507867pt;}
.ye4{bottom:312.534533pt;}
.y6c{bottom:312.537467pt;}
.y50{bottom:315.046933pt;}
.y192{bottom:316.227867pt;}
.ya5{bottom:319.521200pt;}
.ycd{bottom:319.601200pt;}
.y1d5{bottom:325.841200pt;}
.y165{bottom:328.507867pt;}
.ye3{bottom:328.534533pt;}
.y6b{bottom:328.537467pt;}
.y4f{bottom:329.710933pt;}
.y191{bottom:332.227867pt;}
.ya4{bottom:335.521200pt;}
.ycc{bottom:335.747867pt;}
.y1d4{bottom:338.641200pt;}
.y129{bottom:342.580000pt;}
.y4e{bottom:344.374933pt;}
.y164{bottom:344.507867pt;}
.ye2{bottom:344.534533pt;}
.y6a{bottom:344.537467pt;}
.y190{bottom:348.227867pt;}
.ya3{bottom:351.521200pt;}
.ycb{bottom:351.894533pt;}
.y1d3{bottom:356.774533pt;}
.y4d{bottom:359.038933pt;}
.y128{bottom:360.484000pt;}
.y163{bottom:360.507867pt;}
.ye1{bottom:360.534533pt;}
.y69{bottom:360.537467pt;}
.y18f{bottom:364.227867pt;}
.ya2{bottom:367.521200pt;}
.y4c{bottom:373.702933pt;}
.y1d2{bottom:375.441200pt;}
.y162{bottom:376.507867pt;}
.ye0{bottom:376.534533pt;}
.y68{bottom:376.537467pt;}
.y127{bottom:379.720000pt;}
.y18e{bottom:380.227867pt;}
.ya1{bottom:383.521200pt;}
.yca{bottom:387.081200pt;}
.y4b{bottom:388.366933pt;}
.y161{bottom:392.507867pt;}
.ydf{bottom:392.534533pt;}
.y67{bottom:392.537467pt;}
.y1d1{bottom:393.574533pt;}
.y126{bottom:398.956000pt;}
.ya0{bottom:399.521200pt;}
.y4a{bottom:403.030933pt;}
.yc9{bottom:403.227867pt;}
.y1d0{bottom:406.374533pt;}
.y160{bottom:408.507867pt;}
.yde{bottom:408.534533pt;}
.y66{bottom:408.537467pt;}
.y18d{bottom:410.987867pt;}
.y9f{bottom:415.521200pt;}
.y49{bottom:417.694933pt;}
.y125{bottom:418.192000pt;}
.y1cf{bottom:419.174533pt;}
.yc8{bottom:419.374533pt;}
.y15f{bottom:424.507867pt;}
.ydd{bottom:424.534533pt;}
.y65{bottom:424.537467pt;}
.y18c{bottom:426.987867pt;}
.y48{bottom:432.358933pt;}
.yc7{bottom:435.521200pt;}
.y1ce{bottom:437.307867pt;}
.y124{bottom:437.428000pt;}
.y15e{bottom:440.507867pt;}
.ydc{bottom:440.534533pt;}
.y64{bottom:440.537467pt;}
.y18b{bottom:442.987867pt;}
.y9e{bottom:443.521200pt;}
.y47{bottom:447.022933pt;}
.y1cd{bottom:450.107867pt;}
.yc6{bottom:451.667867pt;}
.y15d{bottom:456.507867pt;}
.ydb{bottom:456.534533pt;}
.y63{bottom:456.537467pt;}
.y123{bottom:456.664000pt;}
.y18a{bottom:458.987867pt;}
.y9d{bottom:459.521200pt;}
.y46{bottom:461.686933pt;}
.y1cc{bottom:462.907867pt;}
.yc5{bottom:467.814533pt;}
.y15c{bottom:472.507867pt;}
.yda{bottom:472.534533pt;}
.y62{bottom:472.537467pt;}
.y189{bottom:474.987867pt;}
.y9c{bottom:475.521200pt;}
.y1cb{bottom:475.707867pt;}
.y122{bottom:475.900000pt;}
.y45{bottom:476.350933pt;}
.yc4{bottom:483.961200pt;}
.y15b{bottom:488.507867pt;}
.yfb{bottom:488.534533pt;}
.y61{bottom:488.542933pt;}
.y188{bottom:490.987867pt;}
.y44{bottom:491.014933pt;}
.y9b{bottom:491.521200pt;}
.y121{bottom:495.136000pt;}
.yc3{bottom:500.107867pt;}
.y1ca{bottom:501.307867pt;}
.yd9{bottom:504.521200pt;}
.yfa{bottom:504.534533pt;}
.y60{bottom:504.542933pt;}
.y43{bottom:505.678933pt;}
.y187{bottom:506.987867pt;}
.y9a{bottom:507.521200pt;}
.y120{bottom:514.372000pt;}
.yc2{bottom:516.254533pt;}
.y15a{bottom:516.507867pt;}
.y1c9{bottom:519.441200pt;}
.y42{bottom:520.342933pt;}
.yd8{bottom:520.521200pt;}
.yf9{bottom:520.534533pt;}
.y5f{bottom:520.542933pt;}
.y186{bottom:522.987867pt;}
.y1a{bottom:523.497467pt;}
.y99{bottom:523.521200pt;}
.y1c8{bottom:532.241200pt;}
.yc1{bottom:532.401200pt;}
.y159{bottom:532.507867pt;}
.y20e{bottom:533.261200pt;}
.y237{bottom:533.391200pt;}
.y11f{bottom:533.608000pt;}
.y41{bottom:535.006933pt;}
.yd7{bottom:536.521200pt;}
.yf8{bottom:536.534533pt;}
.y19{bottom:536.830800pt;}
.y185{bottom:538.987867pt;}
.y20d{bottom:544.591200pt;}
.y236{bottom:544.721200pt;}
.y1c7{bottom:545.041200pt;}
.y158{bottom:548.507867pt;}
.yc0{bottom:548.547867pt;}
.y40{bottom:549.670933pt;}
.y18{bottom:550.164133pt;}
.yd6{bottom:552.521200pt;}
.yf7{bottom:552.534533pt;}
.y11e{bottom:552.844000pt;}
.y184{bottom:554.987867pt;}
.y20c{bottom:555.921200pt;}
.y235{bottom:556.051200pt;}
.y3f{bottom:564.334933pt;}
.ybf{bottom:564.694533pt;}
.y20b{bottom:567.251200pt;}
.y234{bottom:567.381200pt;}
.y98{bottom:568.507867pt;}
.yd5{bottom:568.521200pt;}
.y1ae{bottom:568.534533pt;}
.y183{bottom:570.987867pt;}
.y11d{bottom:572.080000pt;}
.y31{bottom:572.102533pt;}
.y1c6{bottom:573.841200pt;}
.y17{bottom:575.497467pt;}
.y157{bottom:576.507867pt;}
.y20a{bottom:578.581200pt;}
.y233{bottom:578.711200pt;}
.y3e{bottom:578.998933pt;}
.ybe{bottom:580.841200pt;}
.y97{bottom:584.507867pt;}
.yd4{bottom:584.521200pt;}
.y1ad{bottom:584.534533pt;}
.y30{bottom:586.766533pt;}
.y182{bottom:586.987867pt;}
.y16{bottom:588.830800pt;}
.y209{bottom:589.911200pt;}
.y232{bottom:590.041200pt;}
.y11c{bottom:591.316000pt;}
.y1c5{bottom:591.974533pt;}
.y156{bottom:592.507867pt;}
.y3d{bottom:593.662933pt;}
.ybd{bottom:596.987867pt;}
.y96{bottom:600.507867pt;}
.yd3{bottom:600.521200pt;}
.y1ac{bottom:600.534533pt;}
.y208{bottom:601.241200pt;}
.y231{bottom:601.371200pt;}
.y2f{bottom:601.430533pt;}
.y15{bottom:602.164133pt;}
.y181{bottom:602.987867pt;}
.y3c{bottom:608.326933pt;}
.y155{bottom:608.507867pt;}
.y11b{bottom:610.552000pt;}
.y207{bottom:612.571200pt;}
.y230{bottom:612.701200pt;}
.ybc{bottom:613.134533pt;}
.y14{bottom:615.497467pt;}
.y2e{bottom:616.102533pt;}
.y95{bottom:616.507867pt;}
.yd2{bottom:616.521200pt;}
.y1ab{bottom:616.534533pt;}
.y1c4{bottom:618.641200pt;}
.y180{bottom:618.987867pt;}
.y3b{bottom:622.990933pt;}
.y206{bottom:623.901200pt;}
.y22f{bottom:624.031200pt;}
.y154{bottom:624.507867pt;}
.y1c3{bottom:627.174533pt;}
.y13{bottom:628.830800pt;}
.ybb{bottom:629.281200pt;}
.y11a{bottom:629.788000pt;}
.y2d{bottom:630.766533pt;}
.y94{bottom:632.507867pt;}
.yd1{bottom:632.521200pt;}
.y1aa{bottom:632.534533pt;}
.y205{bottom:635.231200pt;}
.y22e{bottom:635.361200pt;}
.y3a{bottom:637.654933pt;}
.y153{bottom:640.507867pt;}
.y12{bottom:642.164133pt;}
.y1c2{bottom:645.307867pt;}
.yba{bottom:645.427867pt;}
.y2c{bottom:645.430533pt;}
.y204{bottom:646.561200pt;}
.y22d{bottom:646.691200pt;}
.y93{bottom:648.507867pt;}
.yd0{bottom:648.521200pt;}
.y1a9{bottom:648.534533pt;}
.y119{bottom:649.024000pt;}
.y17f{bottom:649.747867pt;}
.y39{bottom:652.318933pt;}
.y1c1{bottom:653.841200pt;}
.y152{bottom:656.507867pt;}
.y203{bottom:657.891200pt;}
.y22c{bottom:658.021200pt;}
.y2b{bottom:660.107867pt;}
.yb9{bottom:661.574533pt;}
.y11{bottom:663.497467pt;}
.y92{bottom:664.507867pt;}
.ycf{bottom:664.521200pt;}
.y1a8{bottom:664.534533pt;}
.y17e{bottom:665.747867pt;}
.y38{bottom:666.982933pt;}
.y1c0{bottom:667.174533pt;}
.y118{bottom:668.260000pt;}
.y202{bottom:669.221200pt;}
.y22b{bottom:669.351200pt;}
.y2a{bottom:674.771867pt;}
.y10{bottom:676.830800pt;}
.yb8{bottom:677.721200pt;}
.y91{bottom:680.507867pt;}
.yce{bottom:680.521200pt;}
.y1a7{bottom:680.534533pt;}
.y201{bottom:680.551200pt;}
.y22a{bottom:680.681200pt;}
.y37{bottom:681.646933pt;}
.y17d{bottom:681.747867pt;}
.y151{bottom:684.507867pt;}
.y1bf{bottom:685.307867pt;}
.y117{bottom:687.496000pt;}
.y29{bottom:689.435867pt;}
.yf{bottom:690.164133pt;}
.y200{bottom:691.881200pt;}
.y229{bottom:692.011200pt;}
.y1be{bottom:693.841200pt;}
.yb7{bottom:693.867867pt;}
.y36{bottom:696.310933pt;}
.y90{bottom:696.507867pt;}
.yf6{bottom:696.521200pt;}
.y1a6{bottom:696.534533pt;}
.y17c{bottom:697.747867pt;}
.y150{bottom:700.507867pt;}
.y1ff{bottom:703.211200pt;}
.y228{bottom:703.341200pt;}
.ye{bottom:703.497467pt;}
.y28{bottom:704.099867pt;}
.y116{bottom:706.732000pt;}
.yb6{bottom:710.014533pt;}
.y35{bottom:710.974933pt;}
.y1bd{bottom:711.974400pt;}
.y8f{bottom:712.507867pt;}
.yf5{bottom:712.521200pt;}
.y1a5{bottom:712.534533pt;}
.y17b{bottom:713.747867pt;}
.y1fe{bottom:714.541200pt;}
.y227{bottom:714.671200pt;}
.y14f{bottom:716.507867pt;}
.yd{bottom:716.830800pt;}
.y27{bottom:718.763867pt;}
.y1bc{bottom:720.507867pt;}
.y34{bottom:725.638933pt;}
.y1fd{bottom:725.871200pt;}
.y115{bottom:725.968000pt;}
.y226{bottom:726.001200pt;}
.yb5{bottom:726.161200pt;}
.y8e{bottom:728.507867pt;}
.yf4{bottom:728.521200pt;}
.y1a4{bottom:728.534533pt;}
.y17a{bottom:729.747867pt;}
.yc{bottom:730.164133pt;}
.y14e{bottom:732.507867pt;}
.y1fc{bottom:737.201200pt;}
.y225{bottom:737.331200pt;}
.y1bb{bottom:738.641067pt;}
.y33{bottom:740.302933pt;}
.yb4{bottom:742.307867pt;}
.yb{bottom:743.497467pt;}
.y8d{bottom:744.507867pt;}
.yf3{bottom:744.521200pt;}
.y1a3{bottom:744.534533pt;}
.y114{bottom:745.204000pt;}
.y179{bottom:745.747867pt;}
.y26{bottom:746.969467pt;}
.y1ba{bottom:747.174533pt;}
.y14d{bottom:748.507867pt;}
.y1fb{bottom:748.531200pt;}
.y224{bottom:748.661200pt;}
.y32{bottom:754.969600pt;}
.ya{bottom:756.830800pt;}
.yb3{bottom:758.454533pt;}
.y1fa{bottom:759.861200pt;}
.y223{bottom:759.991200pt;}
.y8c{bottom:760.507867pt;}
.y1a2{bottom:760.534533pt;}
.y178{bottom:761.747867pt;}
.y113{bottom:764.440000pt;}
.y14c{bottom:764.507867pt;}
.y1b9{bottom:765.307733pt;}
.y1f9{bottom:771.191200pt;}
.y222{bottom:771.321200pt;}
.y1b8{bottom:773.841200pt;}
.yb2{bottom:774.601200pt;}
.y8b{bottom:776.507867pt;}
.y1a1{bottom:776.534533pt;}
.y177{bottom:777.747867pt;}
.y14b{bottom:780.507867pt;}
.y1f8{bottom:782.521200pt;}
.y221{bottom:782.651200pt;}
.y112{bottom:783.676000pt;}
.yb1{bottom:790.747867pt;}
.y1b7{bottom:791.974400pt;}
.y8a{bottom:792.507867pt;}
.y1a0{bottom:792.534533pt;}
.y176{bottom:793.747867pt;}
.y1f7{bottom:793.851200pt;}
.y220{bottom:793.981200pt;}
.y14a{bottom:796.507867pt;}
.y111{bottom:802.912000pt;}
.y1f6{bottom:805.181200pt;}
.y1b6{bottom:805.307733pt;}
.y21f{bottom:805.311200pt;}
.yb0{bottom:806.894533pt;}
.y89{bottom:808.507867pt;}
.y149{bottom:812.507867pt;}
.y1b5{bottom:813.841200pt;}
.y9{bottom:816.300133pt;}
.y1f5{bottom:816.511200pt;}
.y21e{bottom:816.641200pt;}
.y110{bottom:822.148000pt;}
.yaf{bottom:823.041200pt;}
.y88{bottom:824.507867pt;}
.y1f4{bottom:827.841200pt;}
.y21d{bottom:827.971200pt;}
.y148{bottom:828.507867pt;}
.y1b4{bottom:831.974400pt;}
.y8{bottom:833.633467pt;}
.y1f3{bottom:839.171200pt;}
.yae{bottom:839.187867pt;}
.y21c{bottom:839.301200pt;}
.y87{bottom:840.507867pt;}
.y10f{bottom:841.384000pt;}
.y147{bottom:844.507867pt;}
.y1f2{bottom:850.501200pt;}
.y21b{bottom:850.631200pt;}
.y7{bottom:850.969467pt;}
.yad{bottom:855.334533pt;}
.y86{bottom:856.507867pt;}
.y1b3{bottom:858.641067pt;}
.y146{bottom:860.507867pt;}
.y10e{bottom:860.620000pt;}
.y1f1{bottom:861.831200pt;}
.y21a{bottom:861.961200pt;}
.yac{bottom:871.481200pt;}
.y1b2{bottom:871.974400pt;}
.y85{bottom:872.507867pt;}
.y1f0{bottom:873.161200pt;}
.y219{bottom:873.291200pt;}
.y145{bottom:876.507867pt;}
.y10d{bottom:879.856000pt;}
.y1b1{bottom:880.507867pt;}
.y1ef{bottom:884.491200pt;}
.y218{bottom:884.621200pt;}
.yab{bottom:887.627867pt;}
.y84{bottom:888.507867pt;}
.y1ee{bottom:895.821200pt;}
.y217{bottom:895.951200pt;}
.y1b0{bottom:898.641067pt;}
.y10c{bottom:899.092000pt;}
.y6{bottom:902.958800pt;}
.yaa{bottom:903.774533pt;}
.y83{bottom:904.507867pt;}
.y1ed{bottom:907.151200pt;}
.y1af{bottom:907.174533pt;}
.y216{bottom:907.281200pt;}
.y10b{bottom:918.328000pt;}
.y1ec{bottom:918.481200pt;}
.y215{bottom:918.611200pt;}
.ya9{bottom:919.921200pt;}
.y82{bottom:920.507867pt;}
.y1eb{bottom:929.811200pt;}
.y214{bottom:929.941200pt;}
.ya8{bottom:936.067867pt;}
.y10a{bottom:936.232000pt;}
.y81{bottom:936.507867pt;}
.y5{bottom:937.630800pt;}
.y1ea{bottom:941.141200pt;}
.y213{bottom:941.271200pt;}
.ya7{bottom:952.214533pt;}
.y1e9{bottom:952.471200pt;}
.y80{bottom:952.507867pt;}
.y212{bottom:952.601200pt;}
.y109{bottom:958.132000pt;}
.y1e8{bottom:963.801200pt;}
.y211{bottom:963.931200pt;}
.ya6{bottom:968.361200pt;}
.y7f{bottom:968.507867pt;}
.y4{bottom:972.302800pt;}
.y1e7{bottom:975.131200pt;}
.y210{bottom:975.261200pt;}
.y108{bottom:977.699867pt;}
.y7e{bottom:984.507867pt;}
.y1e6{bottom:986.461200pt;}
.y20f{bottom:986.591200pt;}
.y3{bottom:1014.174400pt;}
.y7c{bottom:1014.174533pt;}
.h10{height:21.272576pt;}
.h11{height:29.240000pt;}
.h8{height:31.061333pt;}
.h3{height:32.085333pt;}
.hf{height:35.088000pt;}
.h9{height:36.096000pt;}
.h2{height:38.826667pt;}
.ha{height:39.146667pt;}
.he{height:40.106667pt;}
.hd{height:40.368000pt;}
.h4{height:44.853333pt;}
.hc{height:49.932373pt;}
.hb{height:49.954240pt;}
.h6{height:54.832976pt;}
.h7{height:54.843643pt;}
.h5{height:85.250000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:54.000000pt;}
.x3{left:59.066667pt;}
.x6{left:62.577733pt;}
.xd{left:65.995600pt;}
.x11{left:71.321333pt;}
.x14{left:75.266667pt;}
.x4{left:195.892800pt;}
.x2{left:241.530533pt;}
.xe{left:409.182267pt;}
.x12{left:417.553867pt;}
.xf{left:421.182267pt;}
.x13{left:430.443867pt;}
.xb{left:477.795733pt;}
.x8{left:485.794533pt;}
.xc{left:489.795733pt;}
.x9{left:496.351867pt;}
.xa{left:501.794533pt;}
.x10{left:643.296800pt;}
.x7{left:674.688667pt;}
.x1{left:733.300800pt;}
}




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