
    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_9cf1f8068dcc44427f13091c.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_9cb071e9e17a9db7c2dd5596.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2b42acabece1ba37bfc785e2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.243000;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_4b529333a5fb54661ff93291.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.184000;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_bbe644c4cd319d682e4afba1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.160000;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_40a899c644000a05ee63afd2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6b7fda808b36452a458b09d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.229000;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_5e546e5d1d8ad01a31b5b9d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.170000;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_a684ee49f8a76fe40dcee767.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930176;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_7918bac4e36a53f7aa964afe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_ad943586a2b7ccddbe37d253.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_223eb9df1e0458fd590c0b08.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.930176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v3{vertical-align:64.783800px;}
.ls72{letter-spacing:-3.621000px;}
.ls4a{letter-spacing:-3.000000px;}
.ls49{letter-spacing:-2.880000px;}
.ls75{letter-spacing:-2.805000px;}
.ls73{letter-spacing:-2.652000px;}
.ls3b{letter-spacing:-2.640000px;}
.ls6c{letter-spacing:-1.992540px;}
.ls50{letter-spacing:-1.920000px;}
.ls74{letter-spacing:-1.632000px;}
.ls28{letter-spacing:-1.620000px;}
.lsb{letter-spacing:-1.479000px;}
.ls34{letter-spacing:-1.392000px;}
.ls69{letter-spacing:-1.200000px;}
.ls67{letter-spacing:-1.140000px;}
.ls21{letter-spacing:-1.116000px;}
.ls62{letter-spacing:-1.080000px;}
.ls68{letter-spacing:-1.020000px;}
.ls3a{letter-spacing:-0.840000px;}
.ls38{letter-spacing:-0.720000px;}
.ls44{letter-spacing:-0.660000px;}
.ls5e{letter-spacing:-0.648000px;}
.ls33{letter-spacing:-0.600000px;}
.ls63{letter-spacing:-0.558000px;}
.ls48{letter-spacing:-0.540000px;}
.ls31{letter-spacing:-0.510000px;}
.ls61{letter-spacing:-0.486000px;}
.ls39{letter-spacing:-0.480000px;}
.ls32{letter-spacing:-0.420000px;}
.ls43{letter-spacing:-0.360000px;}
.ls6b{letter-spacing:-0.357000px;}
.ls22{letter-spacing:-0.334800px;}
.ls1f{letter-spacing:-0.300000px;}
.lsd{letter-spacing:-0.240000px;}
.ls29{letter-spacing:-0.223200px;}
.ls47{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.167400px;}
.ls1e{letter-spacing:-0.120000px;}
.ls2f{letter-spacing:-0.111600px;}
.ls3c{letter-spacing:-0.060000px;}
.ls2a{letter-spacing:-0.055800px;}
.ls4b{letter-spacing:-0.054000px;}
.ls77{letter-spacing:-0.051000px;}
.lsa{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.027360px;}
.ls46{letter-spacing:0.030000px;}
.ls23{letter-spacing:0.060000px;}
.ls18{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.102000px;}
.ls4f{letter-spacing:0.108000px;}
.ls6f{letter-spacing:0.110400px;}
.ls60{letter-spacing:0.111600px;}
.ls11{letter-spacing:0.120000px;}
.ls5d{letter-spacing:0.150000px;}
.ls3{letter-spacing:0.153000px;}
.ls9{letter-spacing:0.167400px;}
.lsf{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.195300px;}
.ls25{letter-spacing:0.197400px;}
.ls4{letter-spacing:0.204000px;}
.ls51{letter-spacing:0.210000px;}
.ls5f{letter-spacing:0.238080px;}
.ls14{letter-spacing:0.240000px;}
.ls4e{letter-spacing:0.270000px;}
.ls2d{letter-spacing:0.279000px;}
.ls17{letter-spacing:0.281700px;}
.ls8{letter-spacing:0.300000px;}
.ls35{letter-spacing:0.330000px;}
.ls26{letter-spacing:0.334800px;}
.ls53{letter-spacing:0.342960px;}
.ls1{letter-spacing:0.357000px;}
.ls5{letter-spacing:0.360000px;}
.ls52{letter-spacing:0.366000px;}
.ls37{letter-spacing:0.378000px;}
.ls0{letter-spacing:0.382500px;}
.ls2c{letter-spacing:0.390000px;}
.ls7{letter-spacing:0.420000px;}
.ls1a{letter-spacing:0.446400px;}
.ls16{letter-spacing:0.480000px;}
.ls66{letter-spacing:0.502200px;}
.ls6{letter-spacing:0.540000px;}
.ls19{letter-spacing:0.558000px;}
.ls10{letter-spacing:0.570000px;}
.ls13{letter-spacing:0.600000px;}
.ls65{letter-spacing:0.630000px;}
.ls64{letter-spacing:0.648000px;}
.ls15{letter-spacing:0.660000px;}
.ls3d{letter-spacing:0.690000px;}
.ls12{letter-spacing:0.720000px;}
.ls56{letter-spacing:0.780000px;}
.ls1d{letter-spacing:0.810000px;}
.ls24{letter-spacing:0.840000px;}
.ls76{letter-spacing:0.864000px;}
.ls58{letter-spacing:0.900000px;}
.ls1c{letter-spacing:0.918000px;}
.ls55{letter-spacing:0.960000px;}
.ls45{letter-spacing:0.972000px;}
.ls30{letter-spacing:1.020000px;}
.ls5b{letter-spacing:1.050000px;}
.ls54{letter-spacing:1.080000px;}
.ls5a{letter-spacing:1.140000px;}
.lsc{letter-spacing:1.200000px;}
.ls27{letter-spacing:1.242000px;}
.ls57{letter-spacing:1.260000px;}
.ls2e{letter-spacing:1.350000px;}
.ls59{letter-spacing:1.410000px;}
.ls6d{letter-spacing:1.458000px;}
.ls70{letter-spacing:1.512000px;}
.ls5c{letter-spacing:1.620000px;}
.ls36{letter-spacing:1.680000px;}
.ls3e{letter-spacing:1.920000px;}
.ls3f{letter-spacing:1.980000px;}
.ls6a{letter-spacing:1.998000px;}
.ls41{letter-spacing:2.016000px;}
.ls42{letter-spacing:2.070000px;}
.ls71{letter-spacing:3.315000px;}
.ls40{letter-spacing:3.528000px;}
.ls4c{letter-spacing:4.380000px;}
.ls4d{letter-spacing:4.428000px;}
.ls6e{letter-spacing:5.604900px;}
.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;}
}
.wse3{word-spacing:-14.796000px;}
.wsf1{word-spacing:-14.586000px;}
.wsc4{word-spacing:-14.418000px;}
.wsf0{word-spacing:-14.310000px;}
.ws4f{word-spacing:-14.148000px;}
.ws1f{word-spacing:-13.716000px;}
.ws73{word-spacing:-13.176000px;}
.wsc5{word-spacing:-13.140000px;}
.wsb2{word-spacing:-12.906000px;}
.ws99{word-spacing:-12.582000px;}
.ws9a{word-spacing:-12.540000px;}
.wsb5{word-spacing:-12.480000px;}
.wsd5{word-spacing:-12.312000px;}
.wsc6{word-spacing:-12.240000px;}
.ws50{word-spacing:-11.997000px;}
.ws9d{word-spacing:-11.760000px;}
.wsb6{word-spacing:-11.700000px;}
.wsa1{word-spacing:-11.640000px;}
.ws74{word-spacing:-11.580000px;}
.ws8a{word-spacing:-11.520000px;}
.ws87{word-spacing:-11.460000px;}
.wsdb{word-spacing:-11.430000px;}
.ws9f{word-spacing:-11.400000px;}
.wsb3{word-spacing:-11.340000px;}
.ws75{word-spacing:-11.280000px;}
.ws8b{word-spacing:-11.220000px;}
.ws20{word-spacing:-11.160000px;}
.ws89{word-spacing:-11.100000px;}
.ws9b{word-spacing:-11.040000px;}
.wsb4{word-spacing:-10.980000px;}
.wsf2{word-spacing:-10.965000px;}
.wse5{word-spacing:-10.936800px;}
.ws9e{word-spacing:-10.920000px;}
.ws22{word-spacing:-10.825200px;}
.wsa0{word-spacing:-10.800000px;}
.ws9c{word-spacing:-10.740000px;}
.ws88{word-spacing:-10.620000px;}
.ws86{word-spacing:-10.557000px;}
.wsfb{word-spacing:-10.455000px;}
.wsdc{word-spacing:-10.260000px;}
.wsd6{word-spacing:-10.200000px;}
.wsda{word-spacing:-10.140000px;}
.wsdd{word-spacing:-10.080000px;}
.ws21{word-spacing:-10.044000px;}
.wsf5{word-spacing:-9.945000px;}
.ws65{word-spacing:-9.936000px;}
.ws0{word-spacing:-9.792000px;}
.wsde{word-spacing:-9.540000px;}
.wsf6{word-spacing:-9.333000px;}
.ws2{word-spacing:-8.901000px;}
.ws63{word-spacing:-8.544000px;}
.wsf4{word-spacing:-8.313000px;}
.wsf7{word-spacing:-8.160000px;}
.wsf3{word-spacing:-7.344000px;}
.ws1{word-spacing:-7.310820px;}
.wscc{word-spacing:-3.360000px;}
.ws32{word-spacing:-2.280000px;}
.ws98{word-spacing:-2.040000px;}
.ws18{word-spacing:-1.980000px;}
.ws34{word-spacing:-1.920000px;}
.ws4a{word-spacing:-1.897200px;}
.ws19{word-spacing:-1.860000px;}
.ws4b{word-spacing:-1.841400px;}
.ws5f{word-spacing:-1.800000px;}
.ws35{word-spacing:-1.785600px;}
.wsa3{word-spacing:-1.740000px;}
.ws80{word-spacing:-1.680000px;}
.wsfe{word-spacing:-1.632000px;}
.ws60{word-spacing:-1.620000px;}
.wsfd{word-spacing:-1.581000px;}
.ws8f{word-spacing:-1.560000px;}
.ws3b{word-spacing:-1.506600px;}
.wsb9{word-spacing:-1.500000px;}
.ws7f{word-spacing:-1.380000px;}
.ws7{word-spacing:-1.377000px;}
.ws5d{word-spacing:-1.320000px;}
.ws84{word-spacing:-1.260000px;}
.ws3c{word-spacing:-1.242000px;}
.wsaf{word-spacing:-1.227600px;}
.ws11{word-spacing:-1.200000px;}
.ws4c{word-spacing:-1.171800px;}
.ws9{word-spacing:-1.122000px;}
.wse{word-spacing:-1.071000px;}
.ws97{word-spacing:-1.020000px;}
.ws36{word-spacing:-1.004400px;}
.wsa8{word-spacing:-0.960000px;}
.ws71{word-spacing:-0.900000px;}
.ws78{word-spacing:-0.840000px;}
.wsc3{word-spacing:-0.837000px;}
.wsc0{word-spacing:-0.780000px;}
.wsb8{word-spacing:-0.720000px;}
.wsfa{word-spacing:-0.714000px;}
.ws40{word-spacing:-0.660000px;}
.wsc8{word-spacing:-0.600000px;}
.ws43{word-spacing:-0.540000px;}
.wsa6{word-spacing:-0.480000px;}
.ws85{word-spacing:-0.446400px;}
.ws12{word-spacing:-0.420000px;}
.ws7c{word-spacing:-0.360000px;}
.wsb{word-spacing:-0.306000px;}
.ws6c{word-spacing:-0.300000px;}
.wsba{word-spacing:-0.279000px;}
.ws28{word-spacing:-0.240000px;}
.ws1e{word-spacing:-0.223200px;}
.ws10{word-spacing:-0.204000px;}
.ws62{word-spacing:-0.192000px;}
.ws72{word-spacing:-0.180000px;}
.ws77{word-spacing:-0.120000px;}
.wsb0{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws91{word-spacing:0.060000px;}
.ws81{word-spacing:0.120000px;}
.ws82{word-spacing:0.180000px;}
.ws8d{word-spacing:0.223200px;}
.ws6f{word-spacing:0.240000px;}
.ws8{word-spacing:0.255000px;}
.wsad{word-spacing:0.300000px;}
.ws57{word-spacing:0.360000px;}
.ws3a{word-spacing:0.390600px;}
.ws58{word-spacing:0.420000px;}
.wscf{word-spacing:0.480000px;}
.ws4e{word-spacing:0.502200px;}
.ws6d{word-spacing:0.540000px;}
.wsd9{word-spacing:0.558000px;}
.ws52{word-spacing:0.600000px;}
.wsf{word-spacing:0.714000px;}
.ws7e{word-spacing:0.720000px;}
.wsf9{word-spacing:0.780000px;}
.ws27{word-spacing:0.840000px;}
.ws70{word-spacing:0.900000px;}
.ws5e{word-spacing:0.960000px;}
.wsa9{word-spacing:1.020000px;}
.ws6{word-spacing:1.071000px;}
.wsd3{word-spacing:1.080000px;}
.wsc2{word-spacing:1.116000px;}
.wsaa{word-spacing:1.140000px;}
.wse9{word-spacing:1.173000px;}
.ws56{word-spacing:1.200000px;}
.ws90{word-spacing:1.260000px;}
.ws3f{word-spacing:1.320000px;}
.ws1d{word-spacing:1.339200px;}
.ws55{word-spacing:1.380000px;}
.wsd{word-spacing:1.479000px;}
.wsab{word-spacing:1.500000px;}
.ws2b{word-spacing:1.560000px;}
.ws1b{word-spacing:1.562400px;}
.wsc{word-spacing:1.581000px;}
.ws2c{word-spacing:1.620000px;}
.wsa{word-spacing:1.632000px;}
.ws92{word-spacing:1.680000px;}
.ws37{word-spacing:1.729800px;}
.wsac{word-spacing:1.740000px;}
.ws1c{word-spacing:1.785600px;}
.wsbc{word-spacing:1.800000px;}
.wsd8{word-spacing:1.841400px;}
.ws25{word-spacing:1.860000px;}
.ws14{word-spacing:1.920000px;}
.ws42{word-spacing:1.980000px;}
.wsea{word-spacing:1.992540px;}
.ws61{word-spacing:2.008800px;}
.ws83{word-spacing:2.040000px;}
.ws1a{word-spacing:2.100000px;}
.ws93{word-spacing:2.160000px;}
.wsb1{word-spacing:2.220000px;}
.wsef{word-spacing:2.232000px;}
.wsbd{word-spacing:2.280000px;}
.ws94{word-spacing:2.340000px;}
.ws3e{word-spacing:2.400000px;}
.wsa5{word-spacing:2.460000px;}
.ws6e{word-spacing:2.520000px;}
.ws4d{word-spacing:2.566800px;}
.ws13{word-spacing:2.580000px;}
.ws7d{word-spacing:2.640000px;}
.ws5{word-spacing:2.652000px;}
.wsa4{word-spacing:2.700000px;}
.ws2e{word-spacing:2.760000px;}
.ws26{word-spacing:2.820000px;}
.wse0{word-spacing:2.845800px;}
.ws2f{word-spacing:2.880000px;}
.ws95{word-spacing:2.940000px;}
.ws46{word-spacing:3.000000px;}
.ws4{word-spacing:3.009000px;}
.ws16{word-spacing:3.060000px;}
.ws17{word-spacing:3.120000px;}
.ws59{word-spacing:3.240000px;}
.wsd0{word-spacing:3.300000px;}
.ws39{word-spacing:3.348000px;}
.ws8e{word-spacing:3.420000px;}
.ws7b{word-spacing:3.480000px;}
.wsbe{word-spacing:3.540000px;}
.ws33{word-spacing:3.660000px;}
.ws30{word-spacing:3.720000px;}
.ws31{word-spacing:3.840000px;}
.ws54{word-spacing:3.900000px;}
.ws44{word-spacing:3.960000px;}
.ws45{word-spacing:4.020000px;}
.wsbf{word-spacing:4.080000px;}
.wse2{word-spacing:4.185000px;}
.wsee{word-spacing:4.320000px;}
.ws38{word-spacing:4.352400px;}
.ws41{word-spacing:4.380000px;}
.ws5b{word-spacing:4.440000px;}
.ws15{word-spacing:4.500000px;}
.wse1{word-spacing:4.519800px;}
.ws24{word-spacing:4.560000px;}
.ws5a{word-spacing:4.740000px;}
.ws48{word-spacing:4.800000px;}
.wsa7{word-spacing:4.860000px;}
.ws2a{word-spacing:5.040000px;}
.ws79{word-spacing:5.100000px;}
.ws53{word-spacing:5.160000px;}
.ws5c{word-spacing:5.220000px;}
.ws96{word-spacing:5.280000px;}
.ws2d{word-spacing:5.460000px;}
.ws29{word-spacing:5.640000px;}
.wsce{word-spacing:5.940000px;}
.ws49{word-spacing:6.000000px;}
.wsc1{word-spacing:6.060000px;}
.wsd4{word-spacing:6.180000px;}
.wsec{word-spacing:6.426000px;}
.wsed{word-spacing:6.681000px;}
.wsd2{word-spacing:7.020000px;}
.ws47{word-spacing:7.140000px;}
.wscd{word-spacing:7.620000px;}
.wscb{word-spacing:13.140000px;}
.ws7a{word-spacing:13.980000px;}
.wsc9{word-spacing:24.240000px;}
.wsca{word-spacing:24.300000px;}
.ws64{word-spacing:131.424000px;}
.wse7{word-spacing:150.660000px;}
.ws68{word-spacing:155.068200px;}
.ws69{word-spacing:155.403000px;}
.ws6a{word-spacing:159.532200px;}
.wse6{word-spacing:222.474600px;}
.wse4{word-spacing:238.768200px;}
.ws67{word-spacing:243.343800px;}
.ws66{word-spacing:249.705000px;}
.wse8{word-spacing:998.136000px;}
.wsc7{word-spacing:998.460000px;}
.wsf8{word-spacing:998.622000px;}
.ws51{word-spacing:998.784000px;}
.ws23{word-spacing:999.216000px;}
.ws76{word-spacing:999.756000px;}
.wsb7{word-spacing:999.972000px;}
.wsa2{word-spacing:1000.296000px;}
.wsd7{word-spacing:1000.566000px;}
.wsdf{word-spacing:1646.784000px;}
.wseb{word-spacing:1647.108000px;}
.wsbb{word-spacing:1648.080000px;}
.wsfc{word-spacing:1648.242000px;}
.ws6b{word-spacing:1648.890000px;}
.ws8c{word-spacing:1648.944000px;}
.wsae{word-spacing:1650.132000px;}
.wsd1{word-spacing:1651.320000px;}
.ws3d{word-spacing:1653.264000px;}
._38{margin-left:-1000.452900px;}
._f{margin-left:-999.353400px;}
._12{margin-left:-998.199900px;}
._2d{margin-left:-27.660000px;}
._2e{margin-left:-16.560000px;}
._b{margin-left:-15.237600px;}
._e{margin-left:-13.876500px;}
._7{margin-left:-12.393000px;}
._8{margin-left:-10.962000px;}
._3c{margin-left:-9.876000px;}
._2f{margin-left:-8.280000px;}
._9{margin-left:-7.175100px;}
._c{margin-left:-6.024000px;}
._6{margin-left:-4.237200px;}
._0{margin-left:-2.400000px;}
._1{margin-left:-1.080000px;}
._4{width:1.153500px;}
._2{width:2.325600px;}
._3{width:3.391500px;}
._5{width:4.428600px;}
._a{width:5.439900px;}
._11{width:6.732000px;}
._3b{width:8.520000px;}
._3d{width:15.360000px;}
._3a{width:16.440000px;}
._34{width:18.720000px;}
._35{width:20.940000px;}
._39{width:22.140000px;}
._3e{width:23.160000px;}
._31{width:24.180000px;}
._33{width:26.460000px;}
._32{width:28.200000px;}
._30{width:29.880000px;}
._47{width:39.228000px;}
._2c{width:50.052000px;}
._29{width:52.005600px;}
._10{width:53.734200px;}
._d{width:55.855200px;}
._2b{width:59.335200px;}
._43{width:70.921800px;}
._48{width:109.555200px;}
._13{width:145.032000px;}
._1c{width:153.840600px;}
._44{width:156.965400px;}
._23{width:159.309000px;}
._18{width:167.176800px;}
._4b{width:169.112304px;}
._17{width:171.529200px;}
._4a{width:173.900196px;}
._27{width:175.993200px;}
._49{width:177.276600px;}
._28{width:180.959400px;}
._26{width:188.213400px;}
._45{width:201.344700px;}
._15{width:207.648000px;}
._42{width:208.860000px;}
._14{width:210.000000px;}
._41{width:216.960000px;}
._16{width:219.504000px;}
._2a{width:221.232000px;}
._40{width:224.688000px;}
._3f{width:227.040000px;}
._1b{width:229.784400px;}
._1e{width:236.145600px;}
._22{width:242.506800px;}
._1a{width:244.683000px;}
._46{width:250.039800px;}
._21{width:251.044200px;}
._1f{width:254.950800px;}
._20{width:261.702000px;}
._1d{width:263.822400px;}
._25{width:267.673200px;}
._24{width:270.183600px;}
._19{width:276.544800px;}
._37{width:366.271800px;}
._36{width:812.664000px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:34.980000px;}
.fsb{font-size:35.083800px;}
.fs9{font-size:36.228000px;}
.fs5{font-size:41.400000px;}
.fsa{font-size:42.901200px;}
.fs8{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:55.800000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y142{bottom:5.693850px;}
.yb2{bottom:90.566850px;}
.ydc{bottom:90.567000px;}
.yf3{bottom:90.571200px;}
.y51{bottom:90.571350px;}
.y24{bottom:90.575550px;}
.y49{bottom:90.575700px;}
.y6a{bottom:91.318050px;}
.y18d{bottom:104.038200px;}
.y173{bottom:104.050950px;}
.yf2{bottom:107.966850px;}
.y50{bottom:107.967000px;}
.y23{bottom:107.971200px;}
.y48{bottom:107.971350px;}
.y10d{bottom:107.975700px;}
.y69{bottom:109.768050px;}
.y18c{bottom:121.288950px;}
.y172{bottom:121.301700px;}
.y131{bottom:123.813150px;}
.y22{bottom:125.366850px;}
.y47{bottom:125.367000px;}
.ydd{bottom:125.371350px;}
.y4f{bottom:125.380050px;}
.y68{bottom:128.218050px;}
.y18b{bottom:138.539700px;}
.y171{bottom:138.552450px;}
.y130{bottom:140.009100px;}
.y21{bottom:142.766850px;}
.y46{bottom:142.767000px;}
.y4e{bottom:142.775700px;}
.y67{bottom:146.668050px;}
.y98{bottom:146.668200px;}
.y18a{bottom:155.790450px;}
.y170{bottom:155.803200px;}
.y12f{bottom:156.205050px;}
.y45{bottom:160.171350px;}
.y53{bottom:165.118050px;}
.y97{bottom:165.118200px;}
.y12a{bottom:172.387050px;}
.y12e{bottom:172.401000px;}
.y138{bottom:172.442850px;}
.y189{bottom:173.041200px;}
.y16f{bottom:173.053950px;}
.y44{bottom:177.567000px;}
.y20{bottom:183.568050px;}
.y96{bottom:183.568200px;}
.y126{bottom:188.569050px;}
.y129{bottom:188.583000px;}
.y12d{bottom:188.596950px;}
.y134{bottom:188.624850px;}
.y137{bottom:188.638800px;}
.y188{bottom:190.291950px;}
.y16e{bottom:190.304700px;}
.y43{bottom:194.967000px;}
.y1f{bottom:202.018050px;}
.y95{bottom:202.018200px;}
.y125{bottom:204.765000px;}
.y128{bottom:204.778950px;}
.y12c{bottom:204.792900px;}
.y133{bottom:204.820800px;}
.y136{bottom:204.834750px;}
.y187{bottom:207.542700px;}
.y16d{bottom:207.555450px;}
.y42{bottom:212.367000px;}
.y1e{bottom:220.468050px;}
.y94{bottom:220.468200px;}
.y127{bottom:220.974900px;}
.y12b{bottom:220.988850px;}
.y132{bottom:221.016750px;}
.y135{bottom:221.030700px;}
.y186{bottom:224.793450px;}
.y16c{bottom:224.806200px;}
.y41{bottom:229.767000px;}
.y1d{bottom:238.918050px;}
.y4d{bottom:238.918200px;}
.y123{bottom:239.932950px;}
.y185{bottom:242.044200px;}
.y16b{bottom:242.056950px;}
.y11f{bottom:256.114950px;}
.y122{bottom:256.128900px;}
.y1c{bottom:257.368050px;}
.y4c{bottom:257.368200px;}
.y184{bottom:259.294950px;}
.y16a{bottom:259.307700px;}
.y11e{bottom:272.310900px;}
.y121{bottom:272.324850px;}
.y1b{bottom:275.818050px;}
.y93{bottom:275.818200px;}
.y183{bottom:276.545700px;}
.y169{bottom:276.558450px;}
.y120{bottom:288.520800px;}
.y124{bottom:288.534750px;}
.y182{bottom:293.796450px;}
.y168{bottom:293.809200px;}
.y1a{bottom:294.268050px;}
.y92{bottom:294.268200px;}
.y11a{bottom:307.464900px;}
.y11d{bottom:307.478850px;}
.y181{bottom:311.047200px;}
.y167{bottom:311.059950px;}
.y19{bottom:312.718050px;}
.y91{bottom:312.718200px;}
.y119{bottom:323.660850px;}
.y11c{bottom:323.674800px;}
.y180{bottom:328.297950px;}
.y166{bottom:328.310700px;}
.y18{bottom:331.168050px;}
.y90{bottom:331.168200px;}
.y11b{bottom:339.870750px;}
.y17f{bottom:345.548700px;}
.y165{bottom:345.561450px;}
.y4b{bottom:349.618050px;}
.y8f{bottom:349.618200px;}
.y118{bottom:358.828800px;}
.y17e{bottom:362.799450px;}
.y164{bottom:362.812200px;}
.y17{bottom:368.068050px;}
.y8e{bottom:368.068200px;}
.y117{bottom:375.024750px;}
.y17d{bottom:380.050200px;}
.y163{bottom:380.062950px;}
.y52{bottom:386.518050px;}
.y8d{bottom:386.518200px;}
.y114{bottom:393.982800px;}
.y17c{bottom:397.300950px;}
.y162{bottom:397.313700px;}
.y40{bottom:404.968050px;}
.y8c{bottom:404.968200px;}
.y113{bottom:410.178750px;}
.y116{bottom:410.192700px;}
.y17b{bottom:414.551700px;}
.y161{bottom:414.564450px;}
.y3f{bottom:423.418050px;}
.y8b{bottom:423.418200px;}
.y112{bottom:426.374700px;}
.y115{bottom:426.388650px;}
.y16{bottom:430.153050px;}
.y17a{bottom:431.802450px;}
.y160{bottom:431.815200px;}
.y1bd{bottom:439.678050px;}
.y3e{bottom:441.868050px;}
.y8a{bottom:441.868200px;}
.y111{bottom:445.341150px;}
.y15{bottom:447.403800px;}
.y179{bottom:449.053200px;}
.y15f{bottom:449.065950px;}
.y1bc{bottom:456.928800px;}
.y4a{bottom:460.318050px;}
.y89{bottom:460.318200px;}
.y110{bottom:461.541150px;}
.yeb{bottom:462.097800px;}
.y14{bottom:464.654550px;}
.y178{bottom:466.303950px;}
.y15e{bottom:466.316700px;}
.y1bb{bottom:474.179550px;}
.y3d{bottom:478.768050px;}
.y88{bottom:478.768200px;}
.y177{bottom:483.554700px;}
.y15d{bottom:483.567450px;}
.ye1{bottom:483.982800px;}
.ye4{bottom:483.996750px;}
.ye7{bottom:484.010700px;}
.yea{bottom:484.024650px;}
.y3c{bottom:497.218050px;}
.y13{bottom:499.156050px;}
.ye0{bottom:500.178750px;}
.ye3{bottom:500.192700px;}
.ye6{bottom:500.206650px;}
.ye9{bottom:500.220600px;}
.y176{bottom:500.805450px;}
.y15c{bottom:500.818200px;}
.y3b{bottom:515.668050px;}
.y87{bottom:515.668200px;}
.ydf{bottom:516.374700px;}
.ye2{bottom:516.388650px;}
.ye5{bottom:516.402600px;}
.y12{bottom:516.406800px;}
.ye8{bottom:516.416550px;}
.y175{bottom:518.056200px;}
.y15b{bottom:518.068950px;}
.y1a4{bottom:525.944550px;}
.y11{bottom:533.657550px;}
.y3a{bottom:534.118050px;}
.y174{bottom:535.306950px;}
.y15a{bottom:535.319700px;}
.yde{bottom:535.341150px;}
.y1ba{bottom:543.182550px;}
.y1a3{bottom:543.195300px;}
.y10{bottom:550.908300px;}
.y39{bottom:552.568050px;}
.y86{bottom:552.568200px;}
.ycb{bottom:554.347650px;}
.y1b9{bottom:560.433300px;}
.y1a2{bottom:560.446050px;}
.yf{bottom:568.159050px;}
.y66{bottom:569.147400px;}
.y38{bottom:571.018050px;}
.y85{bottom:571.018200px;}
.y159{bottom:572.218200px;}
.yc8{bottom:576.232800px;}
.y1b8{bottom:577.684050px;}
.y1a1{bottom:577.696800px;}
.ye{bottom:585.409800px;}
.y65{bottom:586.398150px;}
.y37{bottom:589.468050px;}
.y84{bottom:589.468200px;}
.yc7{bottom:592.428750px;}
.yca{bottom:592.442700px;}
.y1b7{bottom:594.934800px;}
.y1a0{bottom:594.947550px;}
.yd{bottom:602.660550px;}
.y36{bottom:607.918050px;}
.y83{bottom:607.918200px;}
.yc6{bottom:608.624700px;}
.yc9{bottom:608.638650px;}
.y64{bottom:608.998950px;}
.y1b6{bottom:612.185550px;}
.y19f{bottom:612.198300px;}
.y10f{bottom:616.014900px;}
.yc{bottom:619.911300px;}
.y63{bottom:625.194900px;}
.y35{bottom:626.368050px;}
.y82{bottom:626.368200px;}
.yc5{bottom:627.591000px;}
.y1b5{bottom:629.436300px;}
.y19e{bottom:629.449050px;}
.y10e{bottom:633.265650px;}
.yb{bottom:637.162050px;}
.y5b{bottom:641.421000px;}
.y62{bottom:641.448900px;}
.y34{bottom:644.818050px;}
.y81{bottom:644.818200px;}
.y1b4{bottom:646.687050px;}
.y19d{bottom:646.699800px;}
.ya{bottom:654.412800px;}
.y141{bottom:655.584000px;}
.y78{bottom:656.159100px;}
.y57{bottom:657.603000px;}
.y5a{bottom:657.616950px;}
.y5e{bottom:657.630900px;}
.y61{bottom:657.644850px;}
.y143{bottom:661.011450px;}
.y33{bottom:663.268050px;}
.y1b3{bottom:663.937800px;}
.y19c{bottom:663.950550px;}
.y9{bottom:671.663550px;}
.y77{bottom:673.409850px;}
.y56{bottom:673.798950px;}
.y59{bottom:673.812900px;}
.y5d{bottom:673.826850px;}
.y60{bottom:673.840800px;}
.y140{bottom:676.696758px;}
.yf5{bottom:680.159100px;}
.y1b2{bottom:681.188550px;}
.y19b{bottom:681.201300px;}
.y32{bottom:681.718050px;}
.y80{bottom:681.718200px;}
.y139{bottom:687.619500px;}
.y8{bottom:688.914300px;}
.y14a{bottom:689.216700px;}
.y55{bottom:689.994900px;}
.y58{bottom:690.008850px;}
.y5c{bottom:690.022800px;}
.y5f{bottom:690.036750px;}
.yf4{bottom:697.409850px;}
.y76{bottom:698.159700px;}
.y1b1{bottom:698.439300px;}
.y19a{bottom:698.452050px;}
.y31{bottom:700.168050px;}
.y7f{bottom:700.168200px;}
.y149{bottom:703.672200px;}
.y7{bottom:706.165050px;}
.y54{bottom:708.961350px;}
.yb1{bottom:710.501250px;}
.y1b0{bottom:715.690050px;}
.y199{bottom:715.702800px;}
.y75{bottom:717.131700px;}
.y148{bottom:718.127850px;}
.y30{bottom:718.618050px;}
.y13a{bottom:718.992948px;}
.y10c{bottom:720.937050px;}
.y6{bottom:723.415800px;}
.y147{bottom:732.583500px;}
.y1af{bottom:732.940800px;}
.y198{bottom:732.953550px;}
.y74{bottom:736.103700px;}
.yb0{bottom:736.668450px;}
.y2f{bottom:737.068050px;}
.y10b{bottom:737.133000px;}
.y5{bottom:740.666550px;}
.yb3{bottom:746.850900px;}
.y146{bottom:747.039150px;}
.y1ae{bottom:750.191550px;}
.y197{bottom:750.204300px;}
.y13b{bottom:750.366396px;}
.yaf{bottom:752.864400px;}
.y10a{bottom:753.328950px;}
.y73{bottom:755.075700px;}
.y2e{bottom:755.518050px;}
.y7e{bottom:755.518200px;}
.y158{bottom:755.518950px;}
.y4{bottom:757.917300px;}
.y145{bottom:761.494650px;}
.y1ad{bottom:767.442300px;}
.y196{bottom:767.455050px;}
.yae{bottom:769.060350px;}
.y109{bottom:769.524900px;}
.ybf{bottom:770.707350px;}
.y2d{bottom:773.968050px;}
.y7d{bottom:773.968200px;}
.y72{bottom:774.047700px;}
.y3{bottom:775.168050px;}
.y13c{bottom:781.739844px;}
.y1ac{bottom:784.693050px;}
.y195{bottom:784.705800px;}
.yad{bottom:785.256300px;}
.yfe{bottom:785.679000px;}
.y108{bottom:785.720850px;}
.ybe{bottom:786.911400px;}
.y2c{bottom:792.418050px;}
.y7c{bottom:792.418200px;}
.y71{bottom:793.019700px;}
.ydb{bottom:795.930300px;}
.y152{bottom:801.434250px;}
.ya6{bottom:801.438300px;}
.yac{bottom:801.452250px;}
.yfd{bottom:801.883050px;}
.y107{bottom:801.916800px;}
.y1ab{bottom:801.943800px;}
.y194{bottom:801.956550px;}
.ybd{bottom:803.107350px;}
.yec{bottom:804.659850px;}
.y2b{bottom:810.868050px;}
.y7b{bottom:810.868200px;}
.y70{bottom:811.991700px;}
.y13d{bottom:813.113292px;}
.y151{bottom:817.630200px;}
.ya5{bottom:817.634250px;}
.yab{bottom:817.648200px;}
.yda{bottom:817.865400px;}
.yfc{bottom:818.079000px;}
.y106{bottom:818.112750px;}
.y1aa{bottom:819.194550px;}
.y193{bottom:819.207300px;}
.ybc{bottom:819.337500px;}
.yf1{bottom:828.739200px;}
.y2a{bottom:829.318050px;}
.y7a{bottom:829.318200px;}
.y6f{bottom:830.963700px;}
.ya4{bottom:833.830200px;}
.y14d{bottom:833.834250px;}
.y155{bottom:833.840100px;}
.yaa{bottom:833.844150px;}
.y150{bottom:833.848200px;}
.ya0{bottom:833.856450px;}
.yd9{bottom:834.061350px;}
.yfb{bottom:834.305250px;}
.y105{bottom:834.308700px;}
.yc4{bottom:835.515450px;}
.ybb{bottom:835.533450px;}
.y1a9{bottom:836.445300px;}
.y192{bottom:836.458050px;}
.y13e{bottom:844.486740px;}
.y2{bottom:845.218050px;}
.yf0{bottom:847.711200px;}
.y29{bottom:847.768050px;}
.y79{bottom:847.768200px;}
.y6e{bottom:849.935700px;}
.y14c{bottom:850.030200px;}
.ya3{bottom:850.034250px;}
.y154{bottom:850.036050px;}
.y9c{bottom:850.038450px;}
.ya9{bottom:850.040100px;}
.y14f{bottom:850.044150px;}
.y157{bottom:850.050000px;}
.y9f{bottom:850.052400px;}
.ycf{bottom:850.215450px;}
.yd2{bottom:850.229400px;}
.yd5{bottom:850.243350px;}
.yd8{bottom:850.257300px;}
.yf7{bottom:850.487250px;}
.y101{bottom:850.490700px;}
.yfa{bottom:850.501200px;}
.y104{bottom:850.504650px;}
.yc3{bottom:851.711400px;}
.yb7{bottom:851.715450px;}
.yba{bottom:851.729400px;}
.y1a8{bottom:853.696050px;}
.y191{bottom:853.708800px;}
.yef{bottom:863.907150px;}
.y28{bottom:866.218050px;}
.ya2{bottom:866.230200px;}
.y153{bottom:866.232000px;}
.y9b{bottom:866.234400px;}
.ya8{bottom:866.236050px;}
.y14e{bottom:866.240100px;}
.y156{bottom:866.245950px;}
.y9e{bottom:866.248350px;}
.yce{bottom:866.411400px;}
.yd1{bottom:866.425350px;}
.yd4{bottom:866.439300px;}
.yd7{bottom:866.453250px;}
.yf6{bottom:866.683200px;}
.y100{bottom:866.686650px;}
.yf9{bottom:866.697150px;}
.y103{bottom:866.700600px;}
.yc2{bottom:867.907350px;}
.yc1{bottom:867.910950px;}
.yb6{bottom:867.911400px;}
.yb9{bottom:867.925350px;}
.y6d{bottom:868.902150px;}
.y1a7{bottom:870.946800px;}
.y190{bottom:870.959550px;}
.y13f{bottom:875.860188px;}
.y9a{bottom:882.430350px;}
.ya7{bottom:882.432000px;}
.y9d{bottom:882.444300px;}
.ya1{bottom:882.458250px;}
.ycd{bottom:882.607350px;}
.yd0{bottom:882.621300px;}
.yd3{bottom:882.635250px;}
.yd6{bottom:882.649200px;}
.yee{bottom:882.879150px;}
.yff{bottom:882.882600px;}
.yf8{bottom:882.893100px;}
.y102{bottom:882.896550px;}
.yc0{bottom:884.106900px;}
.yb5{bottom:884.107350px;}
.yb8{bottom:884.121300px;}
.y27{bottom:884.668050px;}
.y6c{bottom:885.102150px;}
.y14b{bottom:885.196650px;}
.y1a6{bottom:888.197550px;}
.y18f{bottom:888.210300px;}
.y1{bottom:893.752500px;}
.y6b{bottom:901.302150px;}
.y99{bottom:901.396650px;}
.ycc{bottom:901.573650px;}
.yed{bottom:901.845450px;}
.yb4{bottom:903.073650px;}
.y26{bottom:903.118050px;}
.y144{bottom:904.895550px;}
.y1a5{bottom:905.448300px;}
.y18e{bottom:905.461050px;}
.y25{bottom:955.942350px;}
.h17{height:25.250743px;}
.h13{height:26.074254px;}
.h15{height:26.374975px;}
.h16{height:31.233247px;}
.hb{height:43.584000px;}
.h18{height:45.543000px;}
.hd{height:45.696000px;}
.hc{height:46.308000px;}
.h4{height:48.195000px;}
.h5{height:49.827000px;}
.hf{height:49.829400px;}
.h8{height:49.996800px;}
.h10{height:50.666400px;}
.h9{height:50.868000px;}
.he{height:56.520000px;}
.h6{height:56.700000px;}
.h7{height:58.620000px;}
.ha{height:58.620600px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h12{height:114.613200px;}
.h11{height:114.780600px;}
.h14{height:262.002000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:546.232500px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x2b{left:8.556750px;}
.x2a{left:70.302000px;}
.x3{left:72.283500px;}
.x21{left:76.535400px;}
.x1{left:80.787450px;}
.xb{left:84.135150px;}
.x4{left:93.538500px;}
.x2{left:102.047250px;}
.x28{left:104.243604px;}
.x27{left:109.424208px;}
.x5{left:114.788850px;}
.xa{left:123.302250px;}
.x29{left:149.564832px;}
.xc{left:160.887150px;}
.x25{left:174.310950px;}
.x30{left:182.828850px;}
.x6{left:185.548950px;}
.x2d{left:189.603150px;}
.x1c{left:193.461600px;}
.x22{left:198.863400px;}
.x2f{left:207.367350px;}
.xe{left:218.223150px;}
.xd{left:222.639150px;}
.x2c{left:257.776350px;}
.xf{left:284.343150px;}
.x23{left:286.999050px;}
.x10{left:292.263150px;}
.x7{left:293.982300px;}
.x31{left:295.508700px;}
.x1d{left:301.894950px;}
.x34{left:353.433750px;}
.x20{left:357.164850px;}
.x12{left:359.319150px;}
.x36{left:361.924950px;}
.x13{left:365.499150px;}
.x11{left:369.507150px;}
.x35{left:374.674950px;}
.x24{left:399.673200px;}
.x8{left:402.415650px;}
.x32{left:408.182850px;}
.x1e{left:410.328300px;}
.x14{left:428.811150px;}
.x15{left:448.947150px;}
.x2e{left:490.726200px;}
.x16{left:505.275150px;}
.x18{left:508.983150px;}
.x9{left:510.849000px;}
.x26{left:512.333400px;}
.x17{left:514.335150px;}
.x1f{left:518.748300px;}
.x33{left:520.863150px;}
.x19{left:569.403150px;}
.x1b{left:574.887150px;}
.x1a{left:580.239150px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v3{vertical-align:57.585600pt;}
.ls72{letter-spacing:-3.218667pt;}
.ls4a{letter-spacing:-2.666667pt;}
.ls49{letter-spacing:-2.560000pt;}
.ls75{letter-spacing:-2.493333pt;}
.ls73{letter-spacing:-2.357333pt;}
.ls3b{letter-spacing:-2.346667pt;}
.ls6c{letter-spacing:-1.771147pt;}
.ls50{letter-spacing:-1.706667pt;}
.ls74{letter-spacing:-1.450667pt;}
.ls28{letter-spacing:-1.440000pt;}
.lsb{letter-spacing:-1.314667pt;}
.ls34{letter-spacing:-1.237333pt;}
.ls69{letter-spacing:-1.066667pt;}
.ls67{letter-spacing:-1.013333pt;}
.ls21{letter-spacing:-0.992000pt;}
.ls62{letter-spacing:-0.960000pt;}
.ls68{letter-spacing:-0.906667pt;}
.ls3a{letter-spacing:-0.746667pt;}
.ls38{letter-spacing:-0.640000pt;}
.ls44{letter-spacing:-0.586667pt;}
.ls5e{letter-spacing:-0.576000pt;}
.ls33{letter-spacing:-0.533333pt;}
.ls63{letter-spacing:-0.496000pt;}
.ls48{letter-spacing:-0.480000pt;}
.ls31{letter-spacing:-0.453333pt;}
.ls61{letter-spacing:-0.432000pt;}
.ls39{letter-spacing:-0.426667pt;}
.ls32{letter-spacing:-0.373333pt;}
.ls43{letter-spacing:-0.320000pt;}
.ls6b{letter-spacing:-0.317333pt;}
.ls22{letter-spacing:-0.297600pt;}
.ls1f{letter-spacing:-0.266667pt;}
.lsd{letter-spacing:-0.213333pt;}
.ls29{letter-spacing:-0.198400pt;}
.ls47{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.148800pt;}
.ls1e{letter-spacing:-0.106667pt;}
.ls2f{letter-spacing:-0.099200pt;}
.ls3c{letter-spacing:-0.053333pt;}
.ls2a{letter-spacing:-0.049600pt;}
.ls4b{letter-spacing:-0.048000pt;}
.ls77{letter-spacing:-0.045333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.024320pt;}
.ls46{letter-spacing:0.026667pt;}
.ls23{letter-spacing:0.053333pt;}
.ls18{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.090667pt;}
.ls4f{letter-spacing:0.096000pt;}
.ls6f{letter-spacing:0.098133pt;}
.ls60{letter-spacing:0.099200pt;}
.ls11{letter-spacing:0.106667pt;}
.ls5d{letter-spacing:0.133333pt;}
.ls3{letter-spacing:0.136000pt;}
.ls9{letter-spacing:0.148800pt;}
.lsf{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.173600pt;}
.ls25{letter-spacing:0.175467pt;}
.ls4{letter-spacing:0.181333pt;}
.ls51{letter-spacing:0.186667pt;}
.ls5f{letter-spacing:0.211627pt;}
.ls14{letter-spacing:0.213333pt;}
.ls4e{letter-spacing:0.240000pt;}
.ls2d{letter-spacing:0.248000pt;}
.ls17{letter-spacing:0.250400pt;}
.ls8{letter-spacing:0.266667pt;}
.ls35{letter-spacing:0.293333pt;}
.ls26{letter-spacing:0.297600pt;}
.ls53{letter-spacing:0.304853pt;}
.ls1{letter-spacing:0.317333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls52{letter-spacing:0.325333pt;}
.ls37{letter-spacing:0.336000pt;}
.ls0{letter-spacing:0.340000pt;}
.ls2c{letter-spacing:0.346667pt;}
.ls7{letter-spacing:0.373333pt;}
.ls1a{letter-spacing:0.396800pt;}
.ls16{letter-spacing:0.426667pt;}
.ls66{letter-spacing:0.446400pt;}
.ls6{letter-spacing:0.480000pt;}
.ls19{letter-spacing:0.496000pt;}
.ls10{letter-spacing:0.506667pt;}
.ls13{letter-spacing:0.533333pt;}
.ls65{letter-spacing:0.560000pt;}
.ls64{letter-spacing:0.576000pt;}
.ls15{letter-spacing:0.586667pt;}
.ls3d{letter-spacing:0.613333pt;}
.ls12{letter-spacing:0.640000pt;}
.ls56{letter-spacing:0.693333pt;}
.ls1d{letter-spacing:0.720000pt;}
.ls24{letter-spacing:0.746667pt;}
.ls76{letter-spacing:0.768000pt;}
.ls58{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:0.816000pt;}
.ls55{letter-spacing:0.853333pt;}
.ls45{letter-spacing:0.864000pt;}
.ls30{letter-spacing:0.906667pt;}
.ls5b{letter-spacing:0.933333pt;}
.ls54{letter-spacing:0.960000pt;}
.ls5a{letter-spacing:1.013333pt;}
.lsc{letter-spacing:1.066667pt;}
.ls27{letter-spacing:1.104000pt;}
.ls57{letter-spacing:1.120000pt;}
.ls2e{letter-spacing:1.200000pt;}
.ls59{letter-spacing:1.253333pt;}
.ls6d{letter-spacing:1.296000pt;}
.ls70{letter-spacing:1.344000pt;}
.ls5c{letter-spacing:1.440000pt;}
.ls36{letter-spacing:1.493333pt;}
.ls3e{letter-spacing:1.706667pt;}
.ls3f{letter-spacing:1.760000pt;}
.ls6a{letter-spacing:1.776000pt;}
.ls41{letter-spacing:1.792000pt;}
.ls42{letter-spacing:1.840000pt;}
.ls71{letter-spacing:2.946667pt;}
.ls40{letter-spacing:3.136000pt;}
.ls4c{letter-spacing:3.893333pt;}
.ls4d{letter-spacing:3.936000pt;}
.ls6e{letter-spacing:4.982133pt;}
.wse3{word-spacing:-13.152000pt;}
.wsf1{word-spacing:-12.965333pt;}
.wsc4{word-spacing:-12.816000pt;}
.wsf0{word-spacing:-12.720000pt;}
.ws4f{word-spacing:-12.576000pt;}
.ws1f{word-spacing:-12.192000pt;}
.ws73{word-spacing:-11.712000pt;}
.wsc5{word-spacing:-11.680000pt;}
.wsb2{word-spacing:-11.472000pt;}
.ws99{word-spacing:-11.184000pt;}
.ws9a{word-spacing:-11.146667pt;}
.wsb5{word-spacing:-11.093333pt;}
.wsd5{word-spacing:-10.944000pt;}
.wsc6{word-spacing:-10.880000pt;}
.ws50{word-spacing:-10.664000pt;}
.ws9d{word-spacing:-10.453333pt;}
.wsb6{word-spacing:-10.400000pt;}
.wsa1{word-spacing:-10.346667pt;}
.ws74{word-spacing:-10.293333pt;}
.ws8a{word-spacing:-10.240000pt;}
.ws87{word-spacing:-10.186667pt;}
.wsdb{word-spacing:-10.160000pt;}
.ws9f{word-spacing:-10.133333pt;}
.wsb3{word-spacing:-10.080000pt;}
.ws75{word-spacing:-10.026667pt;}
.ws8b{word-spacing:-9.973333pt;}
.ws20{word-spacing:-9.920000pt;}
.ws89{word-spacing:-9.866667pt;}
.ws9b{word-spacing:-9.813333pt;}
.wsb4{word-spacing:-9.760000pt;}
.wsf2{word-spacing:-9.746667pt;}
.wse5{word-spacing:-9.721600pt;}
.ws9e{word-spacing:-9.706667pt;}
.ws22{word-spacing:-9.622400pt;}
.wsa0{word-spacing:-9.600000pt;}
.ws9c{word-spacing:-9.546667pt;}
.ws88{word-spacing:-9.440000pt;}
.ws86{word-spacing:-9.384000pt;}
.wsfb{word-spacing:-9.293333pt;}
.wsdc{word-spacing:-9.120000pt;}
.wsd6{word-spacing:-9.066667pt;}
.wsda{word-spacing:-9.013333pt;}
.wsdd{word-spacing:-8.960000pt;}
.ws21{word-spacing:-8.928000pt;}
.wsf5{word-spacing:-8.840000pt;}
.ws65{word-spacing:-8.832000pt;}
.ws0{word-spacing:-8.704000pt;}
.wsde{word-spacing:-8.480000pt;}
.wsf6{word-spacing:-8.296000pt;}
.ws2{word-spacing:-7.912000pt;}
.ws63{word-spacing:-7.594667pt;}
.wsf4{word-spacing:-7.389333pt;}
.wsf7{word-spacing:-7.253333pt;}
.wsf3{word-spacing:-6.528000pt;}
.ws1{word-spacing:-6.498507pt;}
.wscc{word-spacing:-2.986667pt;}
.ws32{word-spacing:-2.026667pt;}
.ws98{word-spacing:-1.813333pt;}
.ws18{word-spacing:-1.760000pt;}
.ws34{word-spacing:-1.706667pt;}
.ws4a{word-spacing:-1.686400pt;}
.ws19{word-spacing:-1.653333pt;}
.ws4b{word-spacing:-1.636800pt;}
.ws5f{word-spacing:-1.600000pt;}
.ws35{word-spacing:-1.587200pt;}
.wsa3{word-spacing:-1.546667pt;}
.ws80{word-spacing:-1.493333pt;}
.wsfe{word-spacing:-1.450667pt;}
.ws60{word-spacing:-1.440000pt;}
.wsfd{word-spacing:-1.405333pt;}
.ws8f{word-spacing:-1.386667pt;}
.ws3b{word-spacing:-1.339200pt;}
.wsb9{word-spacing:-1.333333pt;}
.ws7f{word-spacing:-1.226667pt;}
.ws7{word-spacing:-1.224000pt;}
.ws5d{word-spacing:-1.173333pt;}
.ws84{word-spacing:-1.120000pt;}
.ws3c{word-spacing:-1.104000pt;}
.wsaf{word-spacing:-1.091200pt;}
.ws11{word-spacing:-1.066667pt;}
.ws4c{word-spacing:-1.041600pt;}
.ws9{word-spacing:-0.997333pt;}
.wse{word-spacing:-0.952000pt;}
.ws97{word-spacing:-0.906667pt;}
.ws36{word-spacing:-0.892800pt;}
.wsa8{word-spacing:-0.853333pt;}
.ws71{word-spacing:-0.800000pt;}
.ws78{word-spacing:-0.746667pt;}
.wsc3{word-spacing:-0.744000pt;}
.wsc0{word-spacing:-0.693333pt;}
.wsb8{word-spacing:-0.640000pt;}
.wsfa{word-spacing:-0.634667pt;}
.ws40{word-spacing:-0.586667pt;}
.wsc8{word-spacing:-0.533333pt;}
.ws43{word-spacing:-0.480000pt;}
.wsa6{word-spacing:-0.426667pt;}
.ws85{word-spacing:-0.396800pt;}
.ws12{word-spacing:-0.373333pt;}
.ws7c{word-spacing:-0.320000pt;}
.wsb{word-spacing:-0.272000pt;}
.ws6c{word-spacing:-0.266667pt;}
.wsba{word-spacing:-0.248000pt;}
.ws28{word-spacing:-0.213333pt;}
.ws1e{word-spacing:-0.198400pt;}
.ws10{word-spacing:-0.181333pt;}
.ws62{word-spacing:-0.170667pt;}
.ws72{word-spacing:-0.160000pt;}
.ws77{word-spacing:-0.106667pt;}
.wsb0{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws91{word-spacing:0.053333pt;}
.ws81{word-spacing:0.106667pt;}
.ws82{word-spacing:0.160000pt;}
.ws8d{word-spacing:0.198400pt;}
.ws6f{word-spacing:0.213333pt;}
.ws8{word-spacing:0.226667pt;}
.wsad{word-spacing:0.266667pt;}
.ws57{word-spacing:0.320000pt;}
.ws3a{word-spacing:0.347200pt;}
.ws58{word-spacing:0.373333pt;}
.wscf{word-spacing:0.426667pt;}
.ws4e{word-spacing:0.446400pt;}
.ws6d{word-spacing:0.480000pt;}
.wsd9{word-spacing:0.496000pt;}
.ws52{word-spacing:0.533333pt;}
.wsf{word-spacing:0.634667pt;}
.ws7e{word-spacing:0.640000pt;}
.wsf9{word-spacing:0.693333pt;}
.ws27{word-spacing:0.746667pt;}
.ws70{word-spacing:0.800000pt;}
.ws5e{word-spacing:0.853333pt;}
.wsa9{word-spacing:0.906667pt;}
.ws6{word-spacing:0.952000pt;}
.wsd3{word-spacing:0.960000pt;}
.wsc2{word-spacing:0.992000pt;}
.wsaa{word-spacing:1.013333pt;}
.wse9{word-spacing:1.042667pt;}
.ws56{word-spacing:1.066667pt;}
.ws90{word-spacing:1.120000pt;}
.ws3f{word-spacing:1.173333pt;}
.ws1d{word-spacing:1.190400pt;}
.ws55{word-spacing:1.226667pt;}
.wsd{word-spacing:1.314667pt;}
.wsab{word-spacing:1.333333pt;}
.ws2b{word-spacing:1.386667pt;}
.ws1b{word-spacing:1.388800pt;}
.wsc{word-spacing:1.405333pt;}
.ws2c{word-spacing:1.440000pt;}
.wsa{word-spacing:1.450667pt;}
.ws92{word-spacing:1.493333pt;}
.ws37{word-spacing:1.537600pt;}
.wsac{word-spacing:1.546667pt;}
.ws1c{word-spacing:1.587200pt;}
.wsbc{word-spacing:1.600000pt;}
.wsd8{word-spacing:1.636800pt;}
.ws25{word-spacing:1.653333pt;}
.ws14{word-spacing:1.706667pt;}
.ws42{word-spacing:1.760000pt;}
.wsea{word-spacing:1.771147pt;}
.ws61{word-spacing:1.785600pt;}
.ws83{word-spacing:1.813333pt;}
.ws1a{word-spacing:1.866667pt;}
.ws93{word-spacing:1.920000pt;}
.wsb1{word-spacing:1.973333pt;}
.wsef{word-spacing:1.984000pt;}
.wsbd{word-spacing:2.026667pt;}
.ws94{word-spacing:2.080000pt;}
.ws3e{word-spacing:2.133333pt;}
.wsa5{word-spacing:2.186667pt;}
.ws6e{word-spacing:2.240000pt;}
.ws4d{word-spacing:2.281600pt;}
.ws13{word-spacing:2.293333pt;}
.ws7d{word-spacing:2.346667pt;}
.ws5{word-spacing:2.357333pt;}
.wsa4{word-spacing:2.400000pt;}
.ws2e{word-spacing:2.453333pt;}
.ws26{word-spacing:2.506667pt;}
.wse0{word-spacing:2.529600pt;}
.ws2f{word-spacing:2.560000pt;}
.ws95{word-spacing:2.613333pt;}
.ws46{word-spacing:2.666667pt;}
.ws4{word-spacing:2.674667pt;}
.ws16{word-spacing:2.720000pt;}
.ws17{word-spacing:2.773333pt;}
.ws59{word-spacing:2.880000pt;}
.wsd0{word-spacing:2.933333pt;}
.ws39{word-spacing:2.976000pt;}
.ws8e{word-spacing:3.040000pt;}
.ws7b{word-spacing:3.093333pt;}
.wsbe{word-spacing:3.146667pt;}
.ws33{word-spacing:3.253333pt;}
.ws30{word-spacing:3.306667pt;}
.ws31{word-spacing:3.413333pt;}
.ws54{word-spacing:3.466667pt;}
.ws44{word-spacing:3.520000pt;}
.ws45{word-spacing:3.573333pt;}
.wsbf{word-spacing:3.626667pt;}
.wse2{word-spacing:3.720000pt;}
.wsee{word-spacing:3.840000pt;}
.ws38{word-spacing:3.868800pt;}
.ws41{word-spacing:3.893333pt;}
.ws5b{word-spacing:3.946667pt;}
.ws15{word-spacing:4.000000pt;}
.wse1{word-spacing:4.017600pt;}
.ws24{word-spacing:4.053333pt;}
.ws5a{word-spacing:4.213333pt;}
.ws48{word-spacing:4.266667pt;}
.wsa7{word-spacing:4.320000pt;}
.ws2a{word-spacing:4.480000pt;}
.ws79{word-spacing:4.533333pt;}
.ws53{word-spacing:4.586667pt;}
.ws5c{word-spacing:4.640000pt;}
.ws96{word-spacing:4.693333pt;}
.ws2d{word-spacing:4.853333pt;}
.ws29{word-spacing:5.013333pt;}
.wsce{word-spacing:5.280000pt;}
.ws49{word-spacing:5.333333pt;}
.wsc1{word-spacing:5.386667pt;}
.wsd4{word-spacing:5.493333pt;}
.wsec{word-spacing:5.712000pt;}
.wsed{word-spacing:5.938667pt;}
.wsd2{word-spacing:6.240000pt;}
.ws47{word-spacing:6.346667pt;}
.wscd{word-spacing:6.773333pt;}
.wscb{word-spacing:11.680000pt;}
.ws7a{word-spacing:12.426667pt;}
.wsc9{word-spacing:21.546667pt;}
.wsca{word-spacing:21.600000pt;}
.ws64{word-spacing:116.821333pt;}
.wse7{word-spacing:133.920000pt;}
.ws68{word-spacing:137.838400pt;}
.ws69{word-spacing:138.136000pt;}
.ws6a{word-spacing:141.806400pt;}
.wse6{word-spacing:197.755200pt;}
.wse4{word-spacing:212.238400pt;}
.ws67{word-spacing:216.305600pt;}
.ws66{word-spacing:221.960000pt;}
.wse8{word-spacing:887.232000pt;}
.wsc7{word-spacing:887.520000pt;}
.wsf8{word-spacing:887.664000pt;}
.ws51{word-spacing:887.808000pt;}
.ws23{word-spacing:888.192000pt;}
.ws76{word-spacing:888.672000pt;}
.wsb7{word-spacing:888.864000pt;}
.wsa2{word-spacing:889.152000pt;}
.wsd7{word-spacing:889.392000pt;}
.wsdf{word-spacing:1463.808000pt;}
.wseb{word-spacing:1464.096000pt;}
.wsbb{word-spacing:1464.960000pt;}
.wsfc{word-spacing:1465.104000pt;}
.ws6b{word-spacing:1465.680000pt;}
.ws8c{word-spacing:1465.728000pt;}
.wsae{word-spacing:1466.784000pt;}
.wsd1{word-spacing:1467.840000pt;}
.ws3d{word-spacing:1469.568000pt;}
._38{margin-left:-889.291467pt;}
._f{margin-left:-888.314133pt;}
._12{margin-left:-887.288800pt;}
._2d{margin-left:-24.586667pt;}
._2e{margin-left:-14.720000pt;}
._b{margin-left:-13.544533pt;}
._e{margin-left:-12.334667pt;}
._7{margin-left:-11.016000pt;}
._8{margin-left:-9.744000pt;}
._3c{margin-left:-8.778667pt;}
._2f{margin-left:-7.360000pt;}
._9{margin-left:-6.377867pt;}
._c{margin-left:-5.354667pt;}
._6{margin-left:-3.766400pt;}
._0{margin-left:-2.133333pt;}
._1{margin-left:-0.960000pt;}
._4{width:1.025333pt;}
._2{width:2.067200pt;}
._3{width:3.014667pt;}
._5{width:3.936533pt;}
._a{width:4.835467pt;}
._11{width:5.984000pt;}
._3b{width:7.573333pt;}
._3d{width:13.653333pt;}
._3a{width:14.613333pt;}
._34{width:16.640000pt;}
._35{width:18.613333pt;}
._39{width:19.680000pt;}
._3e{width:20.586667pt;}
._31{width:21.493333pt;}
._33{width:23.520000pt;}
._32{width:25.066667pt;}
._30{width:26.560000pt;}
._47{width:34.869333pt;}
._2c{width:44.490667pt;}
._29{width:46.227200pt;}
._10{width:47.763733pt;}
._d{width:49.649067pt;}
._2b{width:52.742400pt;}
._43{width:63.041600pt;}
._48{width:97.382400pt;}
._13{width:128.917333pt;}
._1c{width:136.747200pt;}
._44{width:139.524800pt;}
._23{width:141.608000pt;}
._18{width:148.601600pt;}
._4b{width:150.322048pt;}
._17{width:152.470400pt;}
._4a{width:154.577952pt;}
._27{width:156.438400pt;}
._49{width:157.579200pt;}
._28{width:160.852800pt;}
._26{width:167.300800pt;}
._45{width:178.973067pt;}
._15{width:184.576000pt;}
._42{width:185.653333pt;}
._14{width:186.666667pt;}
._41{width:192.853333pt;}
._16{width:195.114667pt;}
._2a{width:196.650667pt;}
._40{width:199.722667pt;}
._3f{width:201.813333pt;}
._1b{width:204.252800pt;}
._1e{width:209.907200pt;}
._22{width:215.561600pt;}
._1a{width:217.496000pt;}
._46{width:222.257600pt;}
._21{width:223.150400pt;}
._1f{width:226.622933pt;}
._20{width:232.624000pt;}
._1d{width:234.508800pt;}
._25{width:237.931733pt;}
._24{width:240.163200pt;}
._19{width:245.817600pt;}
._37{width:325.574933pt;}
._36{width:722.368000pt;}
.fs4{font-size:31.093333pt;}
.fsb{font-size:31.185600pt;}
.fs9{font-size:32.202667pt;}
.fs5{font-size:36.800000pt;}
.fsa{font-size:38.134400pt;}
.fs8{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:49.600000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y142{bottom:5.061200pt;}
.yb2{bottom:80.503867pt;}
.ydc{bottom:80.504000pt;}
.yf3{bottom:80.507733pt;}
.y51{bottom:80.507867pt;}
.y24{bottom:80.511600pt;}
.y49{bottom:80.511733pt;}
.y6a{bottom:81.171600pt;}
.y18d{bottom:92.478400pt;}
.y173{bottom:92.489733pt;}
.yf2{bottom:95.970533pt;}
.y50{bottom:95.970667pt;}
.y23{bottom:95.974400pt;}
.y48{bottom:95.974533pt;}
.y10d{bottom:95.978400pt;}
.y69{bottom:97.571600pt;}
.y18c{bottom:107.812400pt;}
.y172{bottom:107.823733pt;}
.y131{bottom:110.056133pt;}
.y22{bottom:111.437200pt;}
.y47{bottom:111.437333pt;}
.ydd{bottom:111.441200pt;}
.y4f{bottom:111.448933pt;}
.y68{bottom:113.971600pt;}
.y18b{bottom:123.146400pt;}
.y171{bottom:123.157733pt;}
.y130{bottom:124.452533pt;}
.y21{bottom:126.903867pt;}
.y46{bottom:126.904000pt;}
.y4e{bottom:126.911733pt;}
.y67{bottom:130.371600pt;}
.y98{bottom:130.371733pt;}
.y18a{bottom:138.480400pt;}
.y170{bottom:138.491733pt;}
.y12f{bottom:138.848933pt;}
.y45{bottom:142.374533pt;}
.y53{bottom:146.771600pt;}
.y97{bottom:146.771733pt;}
.y12a{bottom:153.232933pt;}
.y12e{bottom:153.245333pt;}
.y138{bottom:153.282533pt;}
.y189{bottom:153.814400pt;}
.y16f{bottom:153.825733pt;}
.y44{bottom:157.837333pt;}
.y20{bottom:163.171600pt;}
.y96{bottom:163.171733pt;}
.y126{bottom:167.616933pt;}
.y129{bottom:167.629333pt;}
.y12d{bottom:167.641733pt;}
.y134{bottom:167.666533pt;}
.y137{bottom:167.678933pt;}
.y188{bottom:169.148400pt;}
.y16e{bottom:169.159733pt;}
.y43{bottom:173.304000pt;}
.y1f{bottom:179.571600pt;}
.y95{bottom:179.571733pt;}
.y125{bottom:182.013333pt;}
.y128{bottom:182.025733pt;}
.y12c{bottom:182.038133pt;}
.y133{bottom:182.062933pt;}
.y136{bottom:182.075333pt;}
.y187{bottom:184.482400pt;}
.y16d{bottom:184.493733pt;}
.y42{bottom:188.770667pt;}
.y1e{bottom:195.971600pt;}
.y94{bottom:195.971733pt;}
.y127{bottom:196.422133pt;}
.y12b{bottom:196.434533pt;}
.y132{bottom:196.459333pt;}
.y135{bottom:196.471733pt;}
.y186{bottom:199.816400pt;}
.y16c{bottom:199.827733pt;}
.y41{bottom:204.237333pt;}
.y1d{bottom:212.371600pt;}
.y4d{bottom:212.371733pt;}
.y123{bottom:213.273733pt;}
.y185{bottom:215.150400pt;}
.y16b{bottom:215.161733pt;}
.y11f{bottom:227.657733pt;}
.y122{bottom:227.670133pt;}
.y1c{bottom:228.771600pt;}
.y4c{bottom:228.771733pt;}
.y184{bottom:230.484400pt;}
.y16a{bottom:230.495733pt;}
.y11e{bottom:242.054133pt;}
.y121{bottom:242.066533pt;}
.y1b{bottom:245.171600pt;}
.y93{bottom:245.171733pt;}
.y183{bottom:245.818400pt;}
.y169{bottom:245.829733pt;}
.y120{bottom:256.462933pt;}
.y124{bottom:256.475333pt;}
.y182{bottom:261.152400pt;}
.y168{bottom:261.163733pt;}
.y1a{bottom:261.571600pt;}
.y92{bottom:261.571733pt;}
.y11a{bottom:273.302133pt;}
.y11d{bottom:273.314533pt;}
.y181{bottom:276.486400pt;}
.y167{bottom:276.497733pt;}
.y19{bottom:277.971600pt;}
.y91{bottom:277.971733pt;}
.y119{bottom:287.698533pt;}
.y11c{bottom:287.710933pt;}
.y180{bottom:291.820400pt;}
.y166{bottom:291.831733pt;}
.y18{bottom:294.371600pt;}
.y90{bottom:294.371733pt;}
.y11b{bottom:302.107333pt;}
.y17f{bottom:307.154400pt;}
.y165{bottom:307.165733pt;}
.y4b{bottom:310.771600pt;}
.y8f{bottom:310.771733pt;}
.y118{bottom:318.958933pt;}
.y17e{bottom:322.488400pt;}
.y164{bottom:322.499733pt;}
.y17{bottom:327.171600pt;}
.y8e{bottom:327.171733pt;}
.y117{bottom:333.355333pt;}
.y17d{bottom:337.822400pt;}
.y163{bottom:337.833733pt;}
.y52{bottom:343.571600pt;}
.y8d{bottom:343.571733pt;}
.y114{bottom:350.206933pt;}
.y17c{bottom:353.156400pt;}
.y162{bottom:353.167733pt;}
.y40{bottom:359.971600pt;}
.y8c{bottom:359.971733pt;}
.y113{bottom:364.603333pt;}
.y116{bottom:364.615733pt;}
.y17b{bottom:368.490400pt;}
.y161{bottom:368.501733pt;}
.y3f{bottom:376.371600pt;}
.y8b{bottom:376.371733pt;}
.y112{bottom:378.999733pt;}
.y115{bottom:379.012133pt;}
.y16{bottom:382.358267pt;}
.y17a{bottom:383.824400pt;}
.y160{bottom:383.835733pt;}
.y1bd{bottom:390.824933pt;}
.y3e{bottom:392.771600pt;}
.y8a{bottom:392.771733pt;}
.y111{bottom:395.858800pt;}
.y15{bottom:397.692267pt;}
.y179{bottom:399.158400pt;}
.y15f{bottom:399.169733pt;}
.y1bc{bottom:406.158933pt;}
.y4a{bottom:409.171600pt;}
.y89{bottom:409.171733pt;}
.y110{bottom:410.258800pt;}
.yeb{bottom:410.753600pt;}
.y14{bottom:413.026267pt;}
.y178{bottom:414.492400pt;}
.y15e{bottom:414.503733pt;}
.y1bb{bottom:421.492933pt;}
.y3d{bottom:425.571600pt;}
.y88{bottom:425.571733pt;}
.y177{bottom:429.826400pt;}
.y15d{bottom:429.837733pt;}
.ye1{bottom:430.206933pt;}
.ye4{bottom:430.219333pt;}
.ye7{bottom:430.231733pt;}
.yea{bottom:430.244133pt;}
.y3c{bottom:441.971600pt;}
.y13{bottom:443.694267pt;}
.ye0{bottom:444.603333pt;}
.ye3{bottom:444.615733pt;}
.ye6{bottom:444.628133pt;}
.ye9{bottom:444.640533pt;}
.y176{bottom:445.160400pt;}
.y15c{bottom:445.171733pt;}
.y3b{bottom:458.371600pt;}
.y87{bottom:458.371733pt;}
.ydf{bottom:458.999733pt;}
.ye2{bottom:459.012133pt;}
.ye5{bottom:459.024533pt;}
.y12{bottom:459.028267pt;}
.ye8{bottom:459.036933pt;}
.y175{bottom:460.494400pt;}
.y15b{bottom:460.505733pt;}
.y1a4{bottom:467.506267pt;}
.y11{bottom:474.362267pt;}
.y3a{bottom:474.771600pt;}
.y174{bottom:475.828400pt;}
.y15a{bottom:475.839733pt;}
.yde{bottom:475.858800pt;}
.y1ba{bottom:482.828933pt;}
.y1a3{bottom:482.840267pt;}
.y10{bottom:489.696267pt;}
.y39{bottom:491.171600pt;}
.y86{bottom:491.171733pt;}
.ycb{bottom:492.753467pt;}
.y1b9{bottom:498.162933pt;}
.y1a2{bottom:498.174267pt;}
.yf{bottom:505.030267pt;}
.y66{bottom:505.908800pt;}
.y38{bottom:507.571600pt;}
.y85{bottom:507.571733pt;}
.y159{bottom:508.638400pt;}
.yc8{bottom:512.206933pt;}
.y1b8{bottom:513.496933pt;}
.y1a1{bottom:513.508267pt;}
.ye{bottom:520.364267pt;}
.y65{bottom:521.242800pt;}
.y37{bottom:523.971600pt;}
.y84{bottom:523.971733pt;}
.yc7{bottom:526.603333pt;}
.yca{bottom:526.615733pt;}
.y1b7{bottom:528.830933pt;}
.y1a0{bottom:528.842267pt;}
.yd{bottom:535.698267pt;}
.y36{bottom:540.371600pt;}
.y83{bottom:540.371733pt;}
.yc6{bottom:540.999733pt;}
.yc9{bottom:541.012133pt;}
.y64{bottom:541.332400pt;}
.y1b6{bottom:544.164933pt;}
.y19f{bottom:544.176267pt;}
.y10f{bottom:547.568800pt;}
.yc{bottom:551.032267pt;}
.y63{bottom:555.728800pt;}
.y35{bottom:556.771600pt;}
.y82{bottom:556.771733pt;}
.yc5{bottom:557.858667pt;}
.y1b5{bottom:559.498933pt;}
.y19e{bottom:559.510267pt;}
.y10e{bottom:562.902800pt;}
.yb{bottom:566.366267pt;}
.y5b{bottom:570.152000pt;}
.y62{bottom:570.176800pt;}
.y34{bottom:573.171600pt;}
.y81{bottom:573.171733pt;}
.y1b4{bottom:574.832933pt;}
.y19d{bottom:574.844267pt;}
.ya{bottom:581.700267pt;}
.y141{bottom:582.741333pt;}
.y78{bottom:583.252533pt;}
.y57{bottom:584.536000pt;}
.y5a{bottom:584.548400pt;}
.y5e{bottom:584.560800pt;}
.y61{bottom:584.573200pt;}
.y143{bottom:587.565733pt;}
.y33{bottom:589.571600pt;}
.y1b3{bottom:590.166933pt;}
.y19c{bottom:590.178267pt;}
.y9{bottom:597.034267pt;}
.y77{bottom:598.586533pt;}
.y56{bottom:598.932400pt;}
.y59{bottom:598.944800pt;}
.y5d{bottom:598.957200pt;}
.y60{bottom:598.969600pt;}
.y140{bottom:601.508229pt;}
.yf5{bottom:604.585867pt;}
.y1b2{bottom:605.500933pt;}
.y19b{bottom:605.512267pt;}
.y32{bottom:605.971600pt;}
.y80{bottom:605.971733pt;}
.y139{bottom:611.217333pt;}
.y8{bottom:612.368267pt;}
.y14a{bottom:612.637067pt;}
.y55{bottom:613.328800pt;}
.y58{bottom:613.341200pt;}
.y5c{bottom:613.353600pt;}
.y5f{bottom:613.366000pt;}
.yf4{bottom:619.919867pt;}
.y76{bottom:620.586400pt;}
.y1b1{bottom:620.834933pt;}
.y19a{bottom:620.846267pt;}
.y31{bottom:622.371600pt;}
.y7f{bottom:622.371733pt;}
.y149{bottom:625.486400pt;}
.y7{bottom:627.702267pt;}
.y54{bottom:630.187867pt;}
.yb1{bottom:631.556667pt;}
.y1b0{bottom:636.168933pt;}
.y199{bottom:636.180267pt;}
.y75{bottom:637.450400pt;}
.y148{bottom:638.335867pt;}
.y30{bottom:638.771600pt;}
.y13a{bottom:639.104843pt;}
.y10c{bottom:640.832933pt;}
.y6{bottom:643.036267pt;}
.y147{bottom:651.185333pt;}
.y1af{bottom:651.502933pt;}
.y198{bottom:651.514267pt;}
.y74{bottom:654.314400pt;}
.yb0{bottom:654.816400pt;}
.y2f{bottom:655.171600pt;}
.y10b{bottom:655.229333pt;}
.y5{bottom:658.370267pt;}
.yb3{bottom:663.867467pt;}
.y146{bottom:664.034800pt;}
.y1ae{bottom:666.836933pt;}
.y197{bottom:666.848267pt;}
.y13b{bottom:666.992352pt;}
.yaf{bottom:669.212800pt;}
.y10a{bottom:669.625733pt;}
.y73{bottom:671.178400pt;}
.y2e{bottom:671.571600pt;}
.y7e{bottom:671.571733pt;}
.y158{bottom:671.572400pt;}
.y4{bottom:673.704267pt;}
.y145{bottom:676.884133pt;}
.y1ad{bottom:682.170933pt;}
.y196{bottom:682.182267pt;}
.yae{bottom:683.609200pt;}
.y109{bottom:684.022133pt;}
.ybf{bottom:685.073200pt;}
.y2d{bottom:687.971600pt;}
.y7d{bottom:687.971733pt;}
.y72{bottom:688.042400pt;}
.y3{bottom:689.038267pt;}
.y13c{bottom:694.879861pt;}
.y1ac{bottom:697.504933pt;}
.y195{bottom:697.516267pt;}
.yad{bottom:698.005600pt;}
.yfe{bottom:698.381333pt;}
.y108{bottom:698.418533pt;}
.ybe{bottom:699.476800pt;}
.y2c{bottom:704.371600pt;}
.y7c{bottom:704.371733pt;}
.y71{bottom:704.906400pt;}
.ydb{bottom:707.493600pt;}
.y152{bottom:712.386000pt;}
.ya6{bottom:712.389600pt;}
.yac{bottom:712.402000pt;}
.yfd{bottom:712.784933pt;}
.y107{bottom:712.814933pt;}
.y1ab{bottom:712.838933pt;}
.y194{bottom:712.850267pt;}
.ybd{bottom:713.873200pt;}
.yec{bottom:715.253200pt;}
.y2b{bottom:720.771600pt;}
.y7b{bottom:720.771733pt;}
.y70{bottom:721.770400pt;}
.y13d{bottom:722.767371pt;}
.y151{bottom:726.782400pt;}
.ya5{bottom:726.786000pt;}
.yab{bottom:726.798400pt;}
.yda{bottom:726.991467pt;}
.yfc{bottom:727.181333pt;}
.y106{bottom:727.211333pt;}
.y1aa{bottom:728.172933pt;}
.y193{bottom:728.184267pt;}
.ybc{bottom:728.300000pt;}
.yf1{bottom:736.657067pt;}
.y2a{bottom:737.171600pt;}
.y7a{bottom:737.171733pt;}
.y6f{bottom:738.634400pt;}
.ya4{bottom:741.182400pt;}
.y14d{bottom:741.186000pt;}
.y155{bottom:741.191200pt;}
.yaa{bottom:741.194800pt;}
.y150{bottom:741.198400pt;}
.ya0{bottom:741.205733pt;}
.yd9{bottom:741.387867pt;}
.yfb{bottom:741.604667pt;}
.y105{bottom:741.607733pt;}
.yc4{bottom:742.680400pt;}
.ybb{bottom:742.696400pt;}
.y1a9{bottom:743.506933pt;}
.y192{bottom:743.518267pt;}
.y13e{bottom:750.654880pt;}
.y2{bottom:751.304933pt;}
.yf0{bottom:753.521067pt;}
.y29{bottom:753.571600pt;}
.y79{bottom:753.571733pt;}
.y6e{bottom:755.498400pt;}
.y14c{bottom:755.582400pt;}
.ya3{bottom:755.586000pt;}
.y154{bottom:755.587600pt;}
.y9c{bottom:755.589733pt;}
.ya9{bottom:755.591200pt;}
.y14f{bottom:755.594800pt;}
.y157{bottom:755.600000pt;}
.y9f{bottom:755.602133pt;}
.ycf{bottom:755.747067pt;}
.yd2{bottom:755.759467pt;}
.yd5{bottom:755.771867pt;}
.yd8{bottom:755.784267pt;}
.yf7{bottom:755.988667pt;}
.y101{bottom:755.991733pt;}
.yfa{bottom:756.001067pt;}
.y104{bottom:756.004133pt;}
.yc3{bottom:757.076800pt;}
.yb7{bottom:757.080400pt;}
.yba{bottom:757.092800pt;}
.y1a8{bottom:758.840933pt;}
.y191{bottom:758.852267pt;}
.yef{bottom:767.917467pt;}
.y28{bottom:769.971600pt;}
.ya2{bottom:769.982400pt;}
.y153{bottom:769.984000pt;}
.y9b{bottom:769.986133pt;}
.ya8{bottom:769.987600pt;}
.y14e{bottom:769.991200pt;}
.y156{bottom:769.996400pt;}
.y9e{bottom:769.998533pt;}
.yce{bottom:770.143467pt;}
.yd1{bottom:770.155867pt;}
.yd4{bottom:770.168267pt;}
.yd7{bottom:770.180667pt;}
.yf6{bottom:770.385067pt;}
.y100{bottom:770.388133pt;}
.yf9{bottom:770.397467pt;}
.y103{bottom:770.400533pt;}
.yc2{bottom:771.473200pt;}
.yc1{bottom:771.476400pt;}
.yb6{bottom:771.476800pt;}
.yb9{bottom:771.489200pt;}
.y6d{bottom:772.357467pt;}
.y1a7{bottom:774.174933pt;}
.y190{bottom:774.186267pt;}
.y13f{bottom:778.542389pt;}
.y9a{bottom:784.382533pt;}
.ya7{bottom:784.384000pt;}
.y9d{bottom:784.394933pt;}
.ya1{bottom:784.407333pt;}
.ycd{bottom:784.539867pt;}
.yd0{bottom:784.552267pt;}
.yd3{bottom:784.564667pt;}
.yd6{bottom:784.577067pt;}
.yee{bottom:784.781467pt;}
.yff{bottom:784.784533pt;}
.yf8{bottom:784.793867pt;}
.y102{bottom:784.796933pt;}
.yc0{bottom:785.872800pt;}
.yb5{bottom:785.873200pt;}
.yb8{bottom:785.885600pt;}
.y27{bottom:786.371600pt;}
.y6c{bottom:786.757467pt;}
.y14b{bottom:786.841467pt;}
.y1a6{bottom:789.508933pt;}
.y18f{bottom:789.520267pt;}
.y1{bottom:794.446667pt;}
.y6b{bottom:801.157467pt;}
.y99{bottom:801.241467pt;}
.ycc{bottom:801.398800pt;}
.yed{bottom:801.640400pt;}
.yb4{bottom:802.732133pt;}
.y26{bottom:802.771600pt;}
.y144{bottom:804.351600pt;}
.y1a5{bottom:804.842933pt;}
.y18e{bottom:804.854267pt;}
.y25{bottom:849.726533pt;}
.h17{height:22.445105pt;}
.h13{height:23.177115pt;}
.h15{height:23.444422pt;}
.h16{height:27.762886pt;}
.hb{height:38.741333pt;}
.h18{height:40.482667pt;}
.hd{height:40.618667pt;}
.hc{height:41.162667pt;}
.h4{height:42.840000pt;}
.h5{height:44.290667pt;}
.hf{height:44.292800pt;}
.h8{height:44.441600pt;}
.h10{height:45.036800pt;}
.h9{height:45.216000pt;}
.he{height:50.240000pt;}
.h6{height:50.400000pt;}
.h7{height:52.106667pt;}
.ha{height:52.107200pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h12{height:101.878400pt;}
.h11{height:102.027200pt;}
.h14{height:232.890667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:485.540000pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:7.606000pt;}
.x2a{left:62.490667pt;}
.x3{left:64.252000pt;}
.x21{left:68.031467pt;}
.x1{left:71.811067pt;}
.xb{left:74.786800pt;}
.x4{left:83.145333pt;}
.x2{left:90.708667pt;}
.x28{left:92.660981pt;}
.x27{left:97.265963pt;}
.x5{left:102.034533pt;}
.xa{left:109.602000pt;}
.x29{left:132.946517pt;}
.xc{left:143.010800pt;}
.x25{left:154.943067pt;}
.x30{left:162.514533pt;}
.x6{left:164.932400pt;}
.x2d{left:168.536133pt;}
.x1c{left:171.965867pt;}
.x22{left:176.767467pt;}
.x2f{left:184.326533pt;}
.xe{left:193.976133pt;}
.xd{left:197.901467pt;}
.x2c{left:229.134533pt;}
.xf{left:252.749467pt;}
.x23{left:255.110267pt;}
.x10{left:259.789467pt;}
.x7{left:261.317600pt;}
.x31{left:262.674400pt;}
.x1d{left:268.351067pt;}
.x34{left:314.163333pt;}
.x20{left:317.479867pt;}
.x12{left:319.394800pt;}
.x36{left:321.711067pt;}
.x13{left:324.888133pt;}
.x11{left:328.450800pt;}
.x35{left:333.044400pt;}
.x24{left:355.265067pt;}
.x8{left:357.702800pt;}
.x32{left:362.829200pt;}
.x1e{left:364.736267pt;}
.x14{left:381.165467pt;}
.x15{left:399.064133pt;}
.x2e{left:436.201067pt;}
.x16{left:449.133467pt;}
.x18{left:452.429467pt;}
.x9{left:454.088000pt;}
.x26{left:455.407467pt;}
.x17{left:457.186800pt;}
.x1f{left:461.109600pt;}
.x33{left:462.989467pt;}
.x19{left:506.136133pt;}
.x1b{left:511.010800pt;}
.x1a{left:515.768133pt;}
}




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