
    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_951aebab2ce59a3996253594.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_74ef8ccd1b9d09c7d7e29ca5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_cdd892b5f53fc2e01cd5ffdb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.193848;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_d2666b19c0f1f2b610bf6a7a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.133301;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_da25fde2e83be22e55c7ba17.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_1b15344d2c9d8c2aedbc27f3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.133789;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_6557ca9243a178fa75287b08.woff')format("woff");}.ff7{font-family:ff7;line-height:1.082520;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);}
.v7{vertical-align:-16.977600px;}
.v2{vertical-align:-11.982000px;}
.v8{vertical-align:-9.077400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.982000px;}
.v4{vertical-align:13.944600px;}
.v1{vertical-align:16.990800px;}
.v6{vertical-align:36.960000px;}
.v5{vertical-align:45.480000px;}
.lsa{letter-spacing:-7.371000px;}
.ls1f{letter-spacing:-3.381000px;}
.lsb{letter-spacing:-3.243000px;}
.ls22{letter-spacing:-2.484000px;}
.ls20{letter-spacing:-2.139000px;}
.ls21{letter-spacing:-1.932000px;}
.ls53{letter-spacing:-1.575000px;}
.ls16{letter-spacing:-1.449000px;}
.lsc{letter-spacing:-1.242000px;}
.ls17{letter-spacing:-1.134000px;}
.ls26{letter-spacing:-1.104000px;}
.ls48{letter-spacing:-1.035000px;}
.ls25{letter-spacing:-0.960000px;}
.ls13{letter-spacing:-0.900000px;}
.lsf{letter-spacing:-0.855000px;}
.ls1e{letter-spacing:-0.690000px;}
.ls1a{letter-spacing:-0.627000px;}
.ls1b{letter-spacing:-0.600000px;}
.ls36{letter-spacing:-0.570000px;}
.ls23{letter-spacing:-0.171000px;}
.ls10{letter-spacing:-0.081000px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000300px;}
.ls24{letter-spacing:0.648000px;}
.ls14{letter-spacing:0.891000px;}
.ls4c{letter-spacing:1.008000px;}
.ls4f{letter-spacing:1.071000px;}
.ls9{letter-spacing:1.115958px;}
.ls6{letter-spacing:1.260000px;}
.ls11{letter-spacing:1.296000px;}
.ls4e{letter-spacing:1.575000px;}
.lsd{letter-spacing:2.400000px;}
.ls47{letter-spacing:3.104958px;}
.ls1{letter-spacing:4.200000px;}
.ls52{letter-spacing:5.292000px;}
.ls50{letter-spacing:5.475000px;}
.ls7{letter-spacing:5.760000px;}
.ls1d{letter-spacing:5.850000px;}
.ls8{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls15{letter-spacing:6.075000px;}
.ls3{letter-spacing:6.300000px;}
.ls1c{letter-spacing:6.900000px;}
.lse{letter-spacing:7.200000px;}
.ls4d{letter-spacing:7.245000px;}
.ls4a{letter-spacing:7.500000px;}
.ls0{letter-spacing:7.530000px;}
.ls46{letter-spacing:8.160156px;}
.ls49{letter-spacing:8.160756px;}
.ls4b{letter-spacing:8.316000px;}
.ls5{letter-spacing:8.400000px;}
.ls51{letter-spacing:8.820000px;}
.ls2e{letter-spacing:184.980000px;}
.ls37{letter-spacing:185.640000px;}
.ls18{letter-spacing:236.490000px;}
.ls19{letter-spacing:832.380000px;}
.ls39{letter-spacing:1153.740000px;}
.ls43{letter-spacing:1153.920000px;}
.ls29{letter-spacing:1154.040000px;}
.ls45{letter-spacing:1154.460000px;}
.ls31{letter-spacing:1154.640000px;}
.ls35{letter-spacing:1155.000000px;}
.ls42{letter-spacing:1156.080000px;}
.ls34{letter-spacing:1156.320000px;}
.ls3e{letter-spacing:1156.920000px;}
.ls3f{letter-spacing:1156.980000px;}
.ls3c{letter-spacing:1157.100000px;}
.ls3b{letter-spacing:1157.400000px;}
.ls27{letter-spacing:1157.760000px;}
.ls38{letter-spacing:1160.160000px;}
.ls30{letter-spacing:1171.320000px;}
.ls3a{letter-spacing:1171.500000px;}
.ls44{letter-spacing:1171.920000px;}
.ls2f{letter-spacing:1172.160000px;}
.ls2a{letter-spacing:1172.520000px;}
.ls32{letter-spacing:1174.020000px;}
.ls28{letter-spacing:1174.140000px;}
.ls2c{letter-spacing:1174.620000px;}
.ls33{letter-spacing:1175.340000px;}
.ls2b{letter-spacing:1175.640000px;}
.ls2d{letter-spacing:1186.860000px;}
.ls40{letter-spacing:1187.100000px;}
.ls41{letter-spacing:1187.760000px;}
.ls3d{letter-spacing:1188.120000px;}
.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;}
}
.ws0{word-spacing:-28.605000px;}
.wsb2{word-spacing:-28.575000px;}
.ws11{word-spacing:-28.275000px;}
.ws1d{word-spacing:-27.150000px;}
.ws29{word-spacing:-26.925000px;}
.wsbb{word-spacing:-26.550000px;}
.wsb3{word-spacing:-26.019000px;}
.ws12{word-spacing:-24.057000px;}
.wsc1{word-spacing:-22.860000px;}
.ws3{word-spacing:-22.740000px;}
.wsb1{word-spacing:-22.680000px;}
.ws2{word-spacing:-22.620000px;}
.ws21{word-spacing:-19.389000px;}
.wsb9{word-spacing:-19.278000px;}
.wsb4{word-spacing:-18.711000px;}
.wsae{word-spacing:-18.354000px;}
.ws1{word-spacing:-18.102000px;}
.wsb7{word-spacing:-17.703000px;}
.wsd{word-spacing:-17.043000px;}
.ws1c{word-spacing:-16.860000px;}
.ws2a{word-spacing:-16.353000px;}
.ws41{word-spacing:-16.200000px;}
.ws38{word-spacing:-15.939000px;}
.ws1e{word-spacing:-15.594000px;}
.wsb5{word-spacing:-15.561000px;}
.wsa{word-spacing:-15.390000px;}
.wse{word-spacing:-15.174000px;}
.ws2c{word-spacing:-15.111000px;}
.ws2b{word-spacing:-14.904000px;}
.ws4{word-spacing:-14.820000px;}
.ws30{word-spacing:-14.559000px;}
.ws26{word-spacing:-14.220000px;}
.wsc0{word-spacing:-13.986000px;}
.ws18{word-spacing:-13.920000px;}
.ws37{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.800000px;}
.ws16{word-spacing:-13.338000px;}
.ws1f{word-spacing:-12.204000px;}
.wsc{word-spacing:-11.303787px;}
.wsb8{word-spacing:-10.320849px;}
.ws19{word-spacing:-9.829380px;}
.wsbc{word-spacing:-8.820000px;}
.ws7{word-spacing:-8.400000px;}
.wsb6{word-spacing:-7.245000px;}
.wsbd{word-spacing:-6.300000px;}
.ws5{word-spacing:-6.000000px;}
.wsbe{word-spacing:-5.292000px;}
.ws9{word-spacing:-4.200000px;}
.ws13{word-spacing:-2.400000px;}
.ws17{word-spacing:-1.944000px;}
.ws1b{word-spacing:-1.566000px;}
.ws8{word-spacing:-1.260000px;}
.ws34{word-spacing:-1.173000px;}
.wsba{word-spacing:-1.071000px;}
.ws1a{word-spacing:-0.891000px;}
.ws3a{word-spacing:-0.648000px;}
.ws20{word-spacing:-0.432000px;}
.ws6{word-spacing:0.000000px;}
.ws15{word-spacing:0.081000px;}
.ws39{word-spacing:0.171000px;}
.ws68{word-spacing:0.570000px;}
.ws28{word-spacing:0.627000px;}
.ws32{word-spacing:0.690000px;}
.ws14{word-spacing:0.855000px;}
.ws2d{word-spacing:1.863000px;}
.wsb0{word-spacing:2.484000px;}
.ws2e{word-spacing:3.381000px;}
.ws31{word-spacing:3.450000px;}
.wsbf{word-spacing:4.095000px;}
.wsf{word-spacing:5.037000px;}
.ws33{word-spacing:5.589000px;}
.ws3f{word-spacing:6.072000px;}
.ws3b{word-spacing:6.417000px;}
.ws3e{word-spacing:6.831000px;}
.wsaf{word-spacing:7.314000px;}
.ws3c{word-spacing:8.556000px;}
.ws2f{word-spacing:10.044000px;}
.ws3d{word-spacing:11.937000px;}
.ws84{word-spacing:52.440000px;}
.ws88{word-spacing:53.040000px;}
.ws83{word-spacing:53.280000px;}
.ws86{word-spacing:53.460000px;}
.ws9e{word-spacing:53.640000px;}
.ws8a{word-spacing:53.700000px;}
.ws8e{word-spacing:53.940000px;}
.ws71{word-spacing:54.060000px;}
.ws99{word-spacing:54.120000px;}
.ws8c{word-spacing:54.180000px;}
.ws95{word-spacing:54.240000px;}
.ws58{word-spacing:54.360000px;}
.ws56{word-spacing:54.540000px;}
.ws75{word-spacing:54.840000px;}
.ws6f{word-spacing:54.900000px;}
.ws97{word-spacing:54.960000px;}
.ws7d{word-spacing:55.020000px;}
.ws6c{word-spacing:55.080000px;}
.ws79{word-spacing:55.140000px;}
.ws9b{word-spacing:55.200000px;}
.ws66{word-spacing:55.380000px;}
.ws73{word-spacing:55.440000px;}
.ws77{word-spacing:55.500000px;}
.wsab{word-spacing:55.620000px;}
.ws81{word-spacing:55.800000px;}
.ws93{word-spacing:56.640000px;}
.ws7f{word-spacing:56.820000px;}
.wsa5{word-spacing:57.000000px;}
.ws64{word-spacing:57.420000px;}
.ws69{word-spacing:57.480000px;}
.ws5a{word-spacing:57.600000px;}
.ws62{word-spacing:58.080000px;}
.ws5e{word-spacing:58.140000px;}
.ws52{word-spacing:58.320000px;}
.ws60{word-spacing:58.440000px;}
.ws5c{word-spacing:58.620000px;}
.ws10{word-spacing:59.186160px;}
.ws54{word-spacing:60.420000px;}
.ws4c{word-spacing:67.800000px;}
.ws4e{word-spacing:68.100000px;}
.ws50{word-spacing:69.480000px;}
.ws49{word-spacing:70.200000px;}
.ws47{word-spacing:70.320000px;}
.ws45{word-spacing:70.860000px;}
.ws43{word-spacing:73.620000px;}
.ws40{word-spacing:83.580000px;}
.ws27{word-spacing:119.400000px;}
.ws25{word-spacing:119.520000px;}
.ws24{word-spacing:120.060000px;}
.ws23{word-spacing:122.820000px;}
.ws98{word-spacing:161.508000px;}
.ws42{word-spacing:216.240000px;}
.ws22{word-spacing:220.620000px;}
.ws57{word-spacing:232.668000px;}
.wsa6{word-spacing:242.712000px;}
.ws44{word-spacing:251.058000px;}
.ws4d{word-spacing:251.208000px;}
.ws7c{word-spacing:257.394000px;}
.ws46{word-spacing:260.634000px;}
.ws6b{word-spacing:272.154000px;}
.ws92{word-spacing:272.754000px;}
.ws90{word-spacing:273.294000px;}
.ws53{word-spacing:278.220000px;}
.ws5d{word-spacing:287.280000px;}
.wsa8{word-spacing:287.448000px;}
.ws85{word-spacing:302.964000px;}
.ws48{word-spacing:303.732000px;}
.wsa9{word-spacing:313.626000px;}
.ws4b{word-spacing:314.166000px;}
.ws9a{word-spacing:318.534000px;}
.ws67{word-spacing:321.372000px;}
.ws51{word-spacing:330.558000px;}
.wsad{word-spacing:332.856000px;}
.wsa4{word-spacing:342.372000px;}
.ws7a{word-spacing:344.886000px;}
.ws61{word-spacing:345.888000px;}
.ws96{word-spacing:345.894000px;}
.ws8b{word-spacing:350.838000px;}
.ws76{word-spacing:352.182000px;}
.ws82{word-spacing:357.252000px;}
.ws94{word-spacing:358.518000px;}
.ws4a{word-spacing:359.046000px;}
.ws9d{word-spacing:360.756000px;}
.ws63{word-spacing:361.380000px;}
.ws7e{word-spacing:361.740000px;}
.ws6e{word-spacing:362.016000px;}
.wsa1{word-spacing:362.196000px;}
.ws80{word-spacing:366.426000px;}
.ws65{word-spacing:367.398000px;}
.ws78{word-spacing:367.794000px;}
.ws72{word-spacing:373.260000px;}
.ws9f{word-spacing:377.112000px;}
.ws74{word-spacing:378.912000px;}
.ws4f{word-spacing:382.068000px;}
.wsa3{word-spacing:386.472000px;}
.ws8d{word-spacing:387.168000px;}
.ws87{word-spacing:394.920000px;}
.ws59{word-spacing:396.168000px;}
.ws5b{word-spacing:398.538000px;}
.ws89{word-spacing:399.852000px;}
.wsa2{word-spacing:401.340000px;}
.ws70{word-spacing:416.088000px;}
.ws5f{word-spacing:426.600000px;}
.ws36{word-spacing:524.190000px;}
.wsac{word-spacing:536.172000px;}
.ws6a{word-spacing:541.092000px;}
.wsaa{word-spacing:553.896000px;}
.ws6d{word-spacing:642.012000px;}
.ws9c{word-spacing:657.660000px;}
.ws91{word-spacing:748.812000px;}
.ws7b{word-spacing:752.046000px;}
.wsa7{word-spacing:755.460000px;}
.ws8f{word-spacing:759.432000px;}
.ws55{word-spacing:808.854000px;}
.wsa0{word-spacing:810.360000px;}
.ws35{word-spacing:863.340000px;}
._20{margin-left:-16.038000px;}
._d{margin-left:-10.733400px;}
._7{margin-left:-8.814600px;}
._c{margin-left:-7.672200px;}
._17{margin-left:-6.651600px;}
._11{margin-left:-5.642400px;}
._6{margin-left:-4.384800px;}
._b{margin-left:-3.312600px;}
._5{margin-left:-2.293200px;}
._4{margin-left:-1.281000px;}
._1{width:1.056000px;}
._3{width:2.106000px;}
._a{width:3.630000px;}
._9{width:4.842000px;}
._2{width:6.318000px;}
._1c{width:7.396800px;}
._8{width:8.400000px;}
._e{width:10.101600px;}
._f{width:11.370000px;}
._23{width:12.371700px;}
._1a{width:13.544700px;}
._21{width:14.721300px;}
._1e{width:16.215000px;}
._1f{width:17.236800px;}
._41{width:18.267300px;}
._49{width:20.081337px;}
._2b{width:21.256500px;}
._1b{width:24.024600px;}
._31{width:25.357200px;}
._33{width:26.833944px;}
._32{width:27.969714px;}
._34{width:29.256258px;}
._4d{width:32.096400px;}
._4a{width:34.776000px;}
._40{width:36.692400px;}
._4c{width:38.700900px;}
._47{width:40.635000px;}
._18{width:43.445160px;}
._46{width:44.736300px;}
._16{width:47.208300px;}
._15{width:48.797100px;}
._45{width:51.093000px;}
._48{width:57.289500px;}
._4b{width:68.462400px;}
._43{width:69.589800px;}
._44{width:71.324100px;}
._42{width:84.321600px;}
._10{width:85.554000px;}
._37{width:184.980000px;}
._39{width:232.092600px;}
._2c{width:254.940000px;}
._14{width:260.610000px;}
._2d{width:270.141000px;}
._3b{width:274.087200px;}
._30{width:343.464000px;}
._29{width:353.484000px;}
._35{width:362.640600px;}
._3e{width:378.168000px;}
._0{width:448.710000px;}
._19{width:449.730000px;}
._3f{width:450.978000px;}
._2a{width:452.694000px;}
._25{width:484.116000px;}
._2f{width:486.990000px;}
._26{width:500.286000px;}
._28{width:505.956000px;}
._27{width:513.396000px;}
._12{width:578.400000px;}
._38{width:612.612600px;}
._36{width:701.833200px;}
._3c{width:738.840000px;}
._2e{width:858.900000px;}
._22{width:956.005200px;}
._13{width:959.125200px;}
._1d{width:963.175200px;}
._24{width:965.155200px;}
._3d{width:1160.125800px;}
._3a{width:1188.540000px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fsd{font-size:34.980000px;}
.fse{font-size:36.729000px;}
.fs8{font-size:40.227000px;}
.fs2{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs6{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y281{bottom:106.213350px;}
.y20{bottom:106.244700px;}
.y23f{bottom:106.264650px;}
.y133{bottom:106.293450px;}
.y90{bottom:106.296300px;}
.y48{bottom:106.296450px;}
.y6a{bottom:106.329300px;}
.y260{bottom:106.353150px;}
.y156{bottom:106.355100px;}
.yd2{bottom:106.405500px;}
.y2a3{bottom:106.496850px;}
.y1fb{bottom:109.294800px;}
.y1d2{bottom:109.294950px;}
.y199{bottom:115.318800px;}
.y132{bottom:123.546450px;}
.y47{bottom:123.549450px;}
.y1f{bottom:126.044700px;}
.y8f{bottom:126.544800px;}
.y46{bottom:126.544950px;}
.y280{bottom:126.625350px;}
.y23e{bottom:126.834150px;}
.y2a2{bottom:127.192350px;}
.yd1{bottom:127.360500px;}
.y25f{bottom:127.678650px;}
.y1fa{bottom:127.762200px;}
.y69{bottom:128.426550px;}
.y155{bottom:129.107850px;}
.y2c1{bottom:130.412400px;}
.y1be{bottom:136.375050px;}
.y198{bottom:138.043800px;}
.y45{bottom:140.790450px;}
.y131{bottom:143.794950px;}
.y1f9{bottom:145.015200px;}
.y8e{bottom:145.045200px;}
.y1e{bottom:145.844700px;}
.y27f{bottom:147.037350px;}
.y23d{bottom:147.403650px;}
.y2a1{bottom:147.887850px;}
.yd0{bottom:148.315500px;}
.y25e{bottom:149.004150px;}
.y68{bottom:150.523800px;}
.y2c0{bottom:150.662400px;}
.y154{bottom:151.860600px;}
.y21b{bottom:153.302850px;}
.y44{bottom:158.043450px;}
.y1bd{bottom:159.100050px;}
.y197{bottom:160.768800px;}
.y1f8{bottom:162.268200px;}
.y8d{bottom:162.298200px;}
.y1d{bottom:165.644700px;}
.ycf{bottom:169.270500px;}
.y25d{bottom:170.329650px;}
.yb0{bottom:170.538150px;}
.yf2{bottom:170.601450px;}
.y2bf{bottom:170.912400px;}
.y67{bottom:172.621050px;}
.y153{bottom:174.613350px;}
.y21a{bottom:174.744600px;}
.y43{bottom:175.296450px;}
.y27e{bottom:175.938600px;}
.y23c{bottom:176.478150px;}
.y2a0{bottom:177.088350px;}
.y1f7{bottom:179.521200px;}
.y1bc{bottom:181.825050px;}
.y8c{bottom:182.546700px;}
.y196{bottom:183.493800px;}
.y1c{bottom:185.444700px;}
.y130{bottom:187.825500px;}
.yaf{bottom:190.944900px;}
.y2be{bottom:191.162400px;}
.yf1{bottom:191.922450px;}
.y42{bottom:192.549450px;}
.y66{bottom:194.718300px;}
.y41{bottom:195.544950px;}
.y219{bottom:196.186350px;}
.y27d{bottom:196.350600px;}
.y1f6{bottom:196.774200px;}
.y23b{bottom:197.047650px;}
.y152{bottom:197.366100px;}
.y29f{bottom:197.783850px;}
.y25c{bottom:200.160150px;}
.y8b{bottom:201.047250px;}
.y1bb{bottom:204.550050px;}
.y1b{bottom:205.244700px;}
.y176{bottom:205.814100px;}
.y195{bottom:206.218800px;}
.y12f{bottom:208.249500px;}
.y40{bottom:209.790450px;}
.yce{bottom:211.180500px;}
.yae{bottom:211.351650px;}
.yf0{bottom:213.243450px;}
.y1f5{bottom:214.027200px;}
.y27c{bottom:216.762600px;}
.y65{bottom:216.815550px;}
.y23a{bottom:217.617150px;}
.y218{bottom:217.628100px;}
.y8a{bottom:218.300250px;}
.y29e{bottom:218.479350px;}
.y151{bottom:220.118850px;}
.y25b{bottom:221.485650px;}
.y2bd{bottom:224.162400px;}
.y1a{bottom:225.044700px;}
.y175{bottom:226.065600px;}
.y3f{bottom:227.043450px;}
.y1ba{bottom:227.275050px;}
.y12e{bottom:228.673500px;}
.y194{bottom:228.943800px;}
.y1f4{bottom:231.280200px;}
.yad{bottom:231.758400px;}
.ycd{bottom:232.135500px;}
.yef{bottom:234.564450px;}
.y89{bottom:238.548750px;}
.y64{bottom:238.912800px;}
.y217{bottom:239.069850px;}
.y29d{bottom:239.174850px;}
.y10d{bottom:241.858800px;}
.y150{bottom:242.871600px;}
.y3e{bottom:244.296450px;}
.y19{bottom:244.844700px;}
.y27b{bottom:245.663850px;}
.y174{bottom:246.317100px;}
.y239{bottom:246.691650px;}
.y1f3{bottom:248.533200px;}
.y12d{bottom:249.097500px;}
.y1b9{bottom:250.000050px;}
.y25a{bottom:251.316150px;}
.y193{bottom:251.668800px;}
.yac{bottom:252.165150px;}
.ycc{bottom:253.090500px;}
.yee{bottom:255.885450px;}
.y216{bottom:260.511600px;}
.y3d{bottom:264.544950px;}
.y10c{bottom:264.583800px;}
.y18{bottom:264.644700px;}
.y14f{bottom:265.624350px;}
.y2bc{bottom:265.667400px;}
.y1f2{bottom:265.786200px;}
.y27a{bottom:266.075850px;}
.y173{bottom:266.568600px;}
.y238{bottom:267.261150px;}
.y29c{bottom:268.375350px;}
.y12c{bottom:269.521500px;}
.yab{bottom:272.571900px;}
.y1b8{bottom:272.725050px;}
.ycb{bottom:274.045500px;}
.y192{bottom:274.393800px;}
.yed{bottom:277.206450px;}
.y259{bottom:281.146650px;}
.y215{bottom:281.953350px;}
.y63{bottom:282.267900px;}
.y1d1{bottom:282.524550px;}
.y88{bottom:282.595200px;}
.y1f1{bottom:283.039200px;}
.y2bb{bottom:285.167400px;}
.y279{bottom:286.487850px;}
.y172{bottom:286.796100px;}
.y10b{bottom:287.308800px;}
.y237{bottom:287.830650px;}
.y14e{bottom:288.377100px;}
.y29b{bottom:289.070850px;}
.y12b{bottom:289.945500px;}
.yca{bottom:295.000500px;}
.y1b7{bottom:295.450050px;}
.y191{bottom:297.118800px;}
.y17{bottom:297.194700px;}
.yec{bottom:298.572000px;}
.y1f0{bottom:300.292200px;}
.y258{bottom:302.472150px;}
.y1d0{bottom:302.774550px;}
.y87{bottom:303.260700px;}
.y214{bottom:303.395100px;}
.y2ba{bottom:304.667400px;}
.y171{bottom:307.047600px;}
.y62{bottom:308.127150px;}
.y3c{bottom:308.556900px;}
.y10a{bottom:310.033800px;}
.y12a{bottom:310.369500px;}
.y14d{bottom:311.129850px;}
.yaa{bottom:314.220600px;}
.y278{bottom:315.389100px;}
.y236{bottom:316.905150px;}
.y1ef{bottom:317.545200px;}
.y1b6{bottom:318.175050px;}
.y29a{bottom:318.271350px;}
.y190{bottom:319.843800px;}
.yeb{bottom:319.893000px;}
.y1cf{bottom:323.024550px;}
.y257{bottom:323.797650px;}
.y86{bottom:323.926200px;}
.y2b9{bottom:324.167400px;}
.y213{bottom:324.836850px;}
.y170{bottom:327.299100px;}
.y3b{bottom:329.032650px;}
.y129{bottom:330.793500px;}
.y109{bottom:332.758800px;}
.y14c{bottom:333.882600px;}
.y1ee{bottom:334.798200px;}
.y277{bottom:335.801100px;}
.yc9{bottom:336.910500px;}
.ya9{bottom:338.378850px;}
.y299{bottom:338.966850px;}
.y1b5{bottom:340.900050px;}
.yea{bottom:341.214000px;}
.y18f{bottom:342.568800px;}
.y2b8{bottom:343.667400px;}
.y85{bottom:344.591700px;}
.y256{bottom:345.123150px;}
.y212{bottom:346.278600px;}
.y16{bottom:346.754700px;}
.y16f{bottom:347.550600px;}
.y3a{bottom:349.508400px;}
.y128{bottom:351.217500px;}
.y1ed{bottom:352.051200px;}
.y1ec{bottom:355.046700px;}
.y108{bottom:355.483800px;}
.y276{bottom:356.213100px;}
.y14b{bottom:356.635350px;}
.yc8{bottom:357.865500px;}
.y298{bottom:359.662350px;}
.ye9{bottom:362.535000px;}
.ya8{bottom:362.537100px;}
.y2b7{bottom:363.167400px;}
.y1ce{bottom:363.524550px;}
.y1b4{bottom:363.625050px;}
.y84{bottom:365.257200px;}
.y18e{bottom:365.293800px;}
.y211{bottom:367.720350px;}
.y16e{bottom:367.802100px;}
.y15{bottom:368.054700px;}
.y235{bottom:368.089350px;}
.y1eb{bottom:369.283200px;}
.y39{bottom:369.984150px;}
.y127{bottom:371.663550px;}
.y61{bottom:372.367350px;}
.y255{bottom:374.953650px;}
.y107{bottom:378.208800px;}
.yc7{bottom:378.820500px;}
.y14a{bottom:379.388100px;}
.y2b6{bottom:382.667400px;}
.y1cd{bottom:383.774550px;}
.ye8{bottom:383.856000px;}
.y275{bottom:385.114350px;}
.y83{bottom:386.001750px;}
.y1b3{bottom:386.350050px;}
.y1ea{bottom:386.536200px;}
.y18d{bottom:388.018800px;}
.y16d{bottom:388.053600px;}
.y234{bottom:388.651350px;}
.y297{bottom:388.862850px;}
.y210{bottom:389.162100px;}
.y14{bottom:389.302200px;}
.y106{bottom:389.563800px;}
.y38{bottom:390.459900px;}
.y126{bottom:392.087550px;}
.y60{bottom:394.464600px;}
.y254{bottom:396.279150px;}
.yc6{bottom:399.775500px;}
.y149{bottom:402.140850px;}
.y2b5{bottom:402.167400px;}
.y1e9{bottom:403.789200px;}
.y1cc{bottom:404.024550px;}
.ye7{bottom:405.177000px;}
.y274{bottom:405.526350px;}
.y82{bottom:406.667250px;}
.y16c{bottom:408.305100px;}
.y1b2{bottom:409.075050px;}
.y13{bottom:409.102200px;}
.y233{bottom:409.213350px;}
.y296{bottom:409.558350px;}
.y20f{bottom:410.603850px;}
.y18c{bottom:410.743800px;}
.y37{bottom:410.935650px;}
.y125{bottom:412.511550px;}
.y5f{bottom:416.561850px;}
.y253{bottom:417.604650px;}
.y1e8{bottom:421.042200px;}
.y2b4{bottom:421.667400px;}
.y148{bottom:424.893600px;}
.ya7{bottom:424.931700px;}
.ye6{bottom:426.498000px;}
.y81{bottom:427.332750px;}
.y16b{bottom:428.556600px;}
.y12{bottom:428.902200px;}
.y232{bottom:429.775350px;}
.y295{bottom:430.253850px;}
.y105{bottom:430.413900px;}
.y36{bottom:431.411400px;}
.y1b1{bottom:431.800050px;}
.y20e{bottom:432.045600px;}
.y124{bottom:432.935550px;}
.y18b{bottom:433.468800px;}
.y273{bottom:434.427600px;}
.y1e7{bottom:438.295200px;}
.y5e{bottom:438.659100px;}
.y2b3{bottom:441.167400px;}
.yc5{bottom:441.685500px;}
.y1cb{bottom:444.524550px;}
.ya6{bottom:445.338450px;}
.y252{bottom:447.435150px;}
.y147{bottom:447.646350px;}
.ye5{bottom:447.819000px;}
.y80{bottom:447.998250px;}
.y11{bottom:448.702200px;}
.y16a{bottom:448.808100px;}
.y231{bottom:450.337350px;}
.y35{bottom:451.887150px;}
.y123{bottom:453.359550px;}
.y1b0{bottom:454.525050px;}
.y272{bottom:454.839600px;}
.y1e6{bottom:455.548200px;}
.y18a{bottom:456.193800px;}
.y294{bottom:459.454350px;}
.y2b2{bottom:460.667400px;}
.y5d{bottom:460.756350px;}
.yc4{bottom:462.640500px;}
.y1ca{bottom:464.774550px;}
.ya5{bottom:465.745200px;}
.y10{bottom:468.502200px;}
.y7f{bottom:468.663750px;}
.y251{bottom:468.760650px;}
.y169{bottom:469.059600px;}
.y146{bottom:470.399100px;}
.y230{bottom:470.899350px;}
.y104{bottom:471.172350px;}
.y34{bottom:472.362900px;}
.y122{bottom:473.783550px;}
.y20d{bottom:474.746400px;}
.y271{bottom:475.251600px;}
.y1e5{bottom:475.796700px;}
.y1af{bottom:477.250050px;}
.ye4{bottom:477.597750px;}
.y189{bottom:478.918800px;}
.y293{bottom:480.149850px;}
.y2b1{bottom:480.167400px;}
.y5c{bottom:482.853600px;}
.yc3{bottom:483.595500px;}
.y1c9{bottom:485.024550px;}
.ya4{bottom:486.151950px;}
.yf{bottom:488.302200px;}
.y168{bottom:489.311100px;}
.y7e{bottom:489.329250px;}
.y250{bottom:490.086150px;}
.y103{bottom:491.419200px;}
.y22f{bottom:491.461350px;}
.y33{bottom:492.838650px;}
.y145{bottom:493.151850px;}
.y121{bottom:494.207550px;}
.ye3{bottom:498.927750px;}
.y2b0{bottom:499.667400px;}
.y1ae{bottom:499.975050px;}
.y292{bottom:500.845350px;}
.y188{bottom:501.643800px;}
.y270{bottom:504.152850px;}
.yc2{bottom:504.550500px;}
.y5b{bottom:504.950850px;}
.y1c8{bottom:505.274550px;}
.ya3{bottom:506.558700px;}
.ye{bottom:508.102200px;}
.y167{bottom:509.562600px;}
.y7d{bottom:509.994750px;}
.y24f{bottom:511.436250px;}
.y102{bottom:511.670700px;}
.y22e{bottom:512.023350px;}
.y32{bottom:513.314400px;}
.y120{bottom:514.631550px;}
.y144{bottom:515.904600px;}
.y2af{bottom:519.167400px;}
.y1e4{bottom:519.839400px;}
.ye2{bottom:520.257750px;}
.y1ad{bottom:522.700050px;}
.y187{bottom:524.368800px;}
.y26f{bottom:524.564850px;}
.yc1{bottom:525.505500px;}
.y1c7{bottom:525.512550px;}
.ya2{bottom:526.965450px;}
.y5a{bottom:527.048100px;}
.yd{bottom:527.902200px;}
.y166{bottom:529.814100px;}
.y291{bottom:530.045850px;}
.y7c{bottom:530.660250px;}
.y101{bottom:531.922200px;}
.y22d{bottom:532.585350px;}
.y31{bottom:533.790150px;}
.y11f{bottom:535.055550px;}
.y20c{bottom:538.197900px;}
.y143{bottom:538.657350px;}
.y2ae{bottom:538.667400px;}
.y1e3{bottom:541.108650px;}
.y24e{bottom:541.266750px;}
.ye1{bottom:541.587750px;}
.y1ac{bottom:545.425050px;}
.y1c6{bottom:545.764050px;}
.yc0{bottom:546.460500px;}
.y186{bottom:547.093800px;}
.yc{bottom:547.702200px;}
.y59{bottom:549.145350px;}
.y165{bottom:550.065600px;}
.y290{bottom:550.741350px;}
.y7b{bottom:551.325750px;}
.y100{bottom:552.173700px;}
.y22c{bottom:553.147350px;}
.y26e{bottom:553.466100px;}
.y30{bottom:554.265900px;}
.y11e{bottom:555.479550px;}
.ya1{bottom:555.888900px;}
.y2ad{bottom:558.167400px;}
.y20b{bottom:559.639650px;}
.y142{bottom:561.410100px;}
.y1e2{bottom:562.377900px;}
.ye0{bottom:562.917750px;}
.y1c5{bottom:566.015550px;}
.y1ab{bottom:568.150050px;}
.y185{bottom:569.818800px;}
.y164{bottom:570.317100px;}
.y24d{bottom:571.097250px;}
.y58{bottom:571.242600px;}
.y7a{bottom:571.991250px;}
.y22b{bottom:573.709350px;}
.y26d{bottom:573.878100px;}
.y2f{bottom:574.738200px;}
.y11d{bottom:575.903550px;}
.ya0{bottom:576.288900px;}
.y2ac{bottom:577.667400px;}
.y28f{bottom:579.941850px;}
.yb{bottom:580.252200px;}
.y20a{bottom:581.081400px;}
.y1e1{bottom:583.647150px;}
.y141{bottom:584.162850px;}
.ydf{bottom:584.247750px;}
.y1c4{bottom:586.267050px;}
.y184{bottom:587.818800px;}
.ybf{bottom:588.370500px;}
.y181{bottom:590.173800px;}
.y163{bottom:590.568600px;}
.y1aa{bottom:590.875050px;}
.y24c{bottom:592.422750px;}
.y79{bottom:592.656750px;}
.y57{bottom:593.339850px;}
.yff{bottom:593.687400px;}
.y22a{bottom:594.271350px;}
.y26c{bottom:594.290100px;}
.y2e{bottom:595.213950px;}
.y11c{bottom:596.327550px;}
.y9f{bottom:596.688900px;}
.y2ab{bottom:597.167400px;}
.y28e{bottom:600.637350px;}
.y209{bottom:602.523150px;}
.y1e0{bottom:604.916400px;}
.yde{bottom:605.577750px;}
.y1c3{bottom:606.518550px;}
.y140{bottom:606.915600px;}
.y180{bottom:608.173800px;}
.ybe{bottom:609.325500px;}
.y183{bottom:610.543800px;}
.y162{bottom:610.820100px;}
.y78{bottom:613.322250px;}
.y1a9{bottom:613.600050px;}
.y24b{bottom:613.748250px;}
.y26b{bottom:614.702100px;}
.y229{bottom:614.833350px;}
.y56{bottom:615.437100px;}
.y2d{bottom:615.689700px;}
.y2aa{bottom:616.667400px;}
.y11b{bottom:616.751550px;}
.y9e{bottom:617.088900px;}
.yfe{bottom:617.683650px;}
.y182{bottom:619.543800px;}
.y28d{bottom:621.332850px;}
.y208{bottom:623.964900px;}
.y1df{bottom:626.185650px;}
.y1c2{bottom:626.770050px;}
.ydd{bottom:626.907750px;}
.y13f{bottom:629.668350px;}
.ybd{bottom:630.280500px;}
.y77{bottom:633.987750px;}
.y24a{bottom:635.073750px;}
.y228{bottom:635.395350px;}
.y2c{bottom:636.165450px;}
.y2a9{bottom:636.167400px;}
.y1a8{bottom:636.325050px;}
.y11a{bottom:637.175550px;}
.y9d{bottom:637.488900px;}
.y55{bottom:637.534350px;}
.ya{bottom:638.314200px;}
.y26a{bottom:643.603350px;}
.y207{bottom:645.406650px;}
.y1c1{bottom:647.021550px;}
.y1de{bottom:647.454900px;}
.ydc{bottom:648.237750px;}
.y28c{bottom:650.533350px;}
.ybc{bottom:651.235500px;}
.y13e{bottom:652.421100px;}
.y76{bottom:654.653250px;}
.y2a8{bottom:655.667400px;}
.y227{bottom:655.957350px;}
.y2b{bottom:656.641200px;}
.y119{bottom:657.599550px;}
.y17f{bottom:657.601800px;}
.y9c{bottom:657.888900px;}
.y1a7{bottom:659.050050px;}
.y54{bottom:659.631600px;}
.y161{bottom:660.450300px;}
.y269{bottom:664.015350px;}
.y249{bottom:664.904250px;}
.y206{bottom:666.848400px;}
.y1c0{bottom:667.273050px;}
.y1dd{bottom:668.724150px;}
.ydb{bottom:669.567750px;}
.y28b{bottom:671.228850px;}
.ybb{bottom:672.190500px;}
.y13d{bottom:675.173850px;}
.y75{bottom:675.380850px;}
.y226{bottom:676.519350px;}
.y2a{bottom:677.116950px;}
.y118{bottom:678.023550px;}
.y9b{bottom:678.288900px;}
.y160{bottom:678.930300px;}
.yfd{bottom:679.934850px;}
.y53{bottom:681.728850px;}
.y1a6{bottom:681.775050px;}
.y248{bottom:686.229750px;}
.y9{bottom:686.856300px;}
.y1bf{bottom:687.524550px;}
.y2a7{bottom:687.917400px;}
.y205{bottom:688.290150px;}
.y1dc{bottom:689.993400px;}
.yda{bottom:690.897750px;}
.y28a{bottom:691.924350px;}
.y268{bottom:692.916600px;}
.yba{bottom:693.145500px;}
.y74{bottom:696.046350px;}
.y225{bottom:697.081350px;}
.y15f{bottom:697.410300px;}
.y29{bottom:697.592700px;}
.y13c{bottom:697.926600px;}
.y117{bottom:698.461350px;}
.y9a{bottom:698.688900px;}
.y17e{bottom:700.033200px;}
.yfc{bottom:700.186350px;}
.y52{bottom:703.826100px;}
.y1a5{bottom:704.500050px;}
.y247{bottom:707.579850px;}
.y204{bottom:709.731900px;}
.y1db{bottom:711.262650px;}
.yd9{bottom:712.227750px;}
.y289{bottom:712.619850px;}
.y267{bottom:713.328600px;}
.yb9{bottom:714.100500px;}
.y15e{bottom:715.890300px;}
.y73{bottom:716.711850px;}
.y224{bottom:717.643350px;}
.y28{bottom:718.068450px;}
.y8{bottom:718.662300px;}
.y116{bottom:718.885350px;}
.y99{bottom:719.088900px;}
.yfb{bottom:720.437850px;}
.y13b{bottom:720.679350px;}
.y17d{bottom:721.992450px;}
.y51{bottom:725.923350px;}
.y1a4{bottom:727.225050px;}
.y203{bottom:731.167350px;}
.y1da{bottom:732.531900px;}
.y266{bottom:733.740600px;}
.y15d{bottom:734.370300px;}
.yb8{bottom:735.055500px;}
.y72{bottom:737.377350px;}
.y246{bottom:737.410350px;}
.y223{bottom:738.205350px;}
.y115{bottom:739.309350px;}
.y98{bottom:739.488900px;}
.yfa{bottom:740.689350px;}
.y288{bottom:741.820350px;}
.y13a{bottom:743.432100px;}
.y17c{bottom:743.951700px;}
.y2a6{bottom:745.685100px;}
.y50{bottom:748.020600px;}
.y1a3{bottom:749.950050px;}
.y202{bottom:752.609100px;}
.y15c{bottom:752.850300px;}
.y1d9{bottom:753.814350px;}
.yd8{bottom:754.887750px;}
.yb7{bottom:756.010500px;}
.y71{bottom:758.042850px;}
.y245{bottom:758.735850px;}
.y222{bottom:758.767350px;}
.y114{bottom:759.733350px;}
.y27{bottom:759.803700px;}
.y97{bottom:759.897750px;}
.yf9{bottom:760.940850px;}
.y15b{bottom:762.090300px;}
.y287{bottom:762.515850px;}
.y265{bottom:762.641850px;}
.y17b{bottom:765.910950px;}
.y139{bottom:766.184850px;}
.y4f{bottom:770.117850px;}
.y1a2{bottom:772.675050px;}
.y201{bottom:774.050850px;}
.y1d8{bottom:775.083600px;}
.yd7{bottom:776.217750px;}
.yb6{bottom:776.965500px;}
.y70{bottom:778.708350px;}
.y221{bottom:779.329350px;}
.y113{bottom:780.157350px;}
.y7{bottom:780.194700px;}
.y96{bottom:780.297750px;}
.yf8{bottom:781.192350px;}
.y264{bottom:783.053850px;}
.y286{bottom:783.211350px;}
.y17a{bottom:787.870200px;}
.y244{bottom:788.566350px;}
.y138{bottom:788.937600px;}
.y4e{bottom:792.215100px;}
.y1a1{bottom:795.400050px;}
.y200{bottom:795.492600px;}
.y1d7{bottom:796.352850px;}
.yd6{bottom:797.547750px;}
.yb5{bottom:797.920500px;}
.y15a{bottom:798.688500px;}
.y6f{bottom:799.373850px;}
.y220{bottom:799.891350px;}
.y112{bottom:800.581350px;}
.y95{bottom:800.697750px;}
.yf7{bottom:801.443850px;}
.y179{bottom:809.829450px;}
.y243{bottom:809.891850px;}
.y6{bottom:809.999700px;}
.y137{bottom:811.690350px;}
.y263{bottom:811.955100px;}
.y285{bottom:812.411850px;}
.y4d{bottom:814.312350px;}
.y1ff{bottom:816.934350px;}
.y1d6{bottom:817.622100px;}
.y1a0{bottom:818.125050px;}
.yb4{bottom:818.875500px;}
.yd5{bottom:818.877750px;}
.y6e{bottom:820.039350px;}
.y21f{bottom:820.453350px;}
.y111{bottom:821.005350px;}
.y94{bottom:821.097750px;}
.yf6{bottom:821.695350px;}
.y26{bottom:822.296850px;}
.y242{bottom:831.217350px;}
.y5{bottom:831.299700px;}
.y178{bottom:831.788700px;}
.y284{bottom:833.107350px;}
.y136{bottom:834.443100px;}
.y159{bottom:835.196400px;}
.y4c{bottom:836.409600px;}
.y1fe{bottom:838.376100px;}
.y1d5{bottom:838.891350px;}
.yb3{bottom:839.830500px;}
.y6d{bottom:840.704850px;}
.y19f{bottom:840.850050px;}
.y21e{bottom:841.015350px;}
.y110{bottom:841.429350px;}
.y93{bottom:841.497750px;}
.yf5{bottom:841.946850px;}
.y25{bottom:843.521850px;}
.y241{bottom:852.542850px;}
.y2a5{bottom:854.694900px;}
.y135{bottom:857.195850px;}
.y4b{bottom:858.506850px;}
.y19e{bottom:858.850050px;}
.y1fd{bottom:859.817850px;}
.y1d4{bottom:860.160600px;}
.yb2{bottom:860.785500px;}
.y4{bottom:861.104700px;}
.y19b{bottom:861.205050px;}
.y6c{bottom:861.370350px;}
.yd4{bottom:861.537750px;}
.y21d{bottom:861.577350px;}
.y10f{bottom:861.853350px;}
.y92{bottom:861.897750px;}
.yf4{bottom:862.198350px;}
.y283{bottom:862.307850px;}
.y262{bottom:862.874850px;}
.y24{bottom:864.747750px;}
.y2a4{bottom:874.939350px;}
.y177{bottom:875.008950px;}
.y158{bottom:876.709950px;}
.y19a{bottom:879.205050px;}
.y134{bottom:879.948600px;}
.y4a{bottom:880.604100px;}
.y1fc{bottom:881.259600px;}
.y1d3{bottom:881.432100px;}
.y19d{bottom:881.575050px;}
.yb1{bottom:881.742600px;}
.y6b{bottom:882.035850px;}
.y21c{bottom:882.139350px;}
.y10e{bottom:882.277350px;}
.y91{bottom:882.294600px;}
.y240{bottom:882.373350px;}
.y3{bottom:882.404700px;}
.yf3{bottom:882.449850px;}
.yd3{bottom:882.867750px;}
.y282{bottom:883.003350px;}
.y261{bottom:883.286850px;}
.y23{bottom:884.472750px;}
.y19c{bottom:890.575050px;}
.y157{bottom:900.706200px;}
.y49{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:904.197750px;}
.y21{bottom:948.189000px;}
.he{height:24.656801px;}
.hc{height:35.347102px;}
.h10{height:38.590266px;}
.hf{height:42.070312px;}
.hd{height:47.329102px;}
.h11{height:50.572266px;}
.h4{height:52.587891px;}
.h14{height:52.939453px;}
.h15{height:54.041016px;}
.h3{height:55.217285px;}
.h7{height:56.191406px;}
.h1b{height:58.902577px;}
.h1a{height:59.000977px;}
.h18{height:60.467074px;}
.h9{height:60.476074px;}
.hb{height:60.489874px;}
.h12{height:60.494674px;}
.ha{height:64.620117px;}
.h19{height:64.645317px;}
.h2{height:65.734863px;}
.h8{height:70.993652px;}
.h6{height:73.623047px;}
.h17{height:88.939453px;}
.h16{height:89.899453px;}
.h5{height:94.658203px;}
.h13{height:98.419453px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:80.921100px;}
.x12{left:82.400550px;}
.x1{left:83.686650px;}
.x5{left:85.095600px;}
.x15{left:91.722450px;}
.x13{left:93.447450px;}
.x27{left:95.827200px;}
.x1b{left:98.657250px;}
.x1c{left:100.337250px;}
.x25{left:101.432250px;}
.x26{left:102.451800px;}
.x6{left:105.029250px;}
.x4{left:106.365600px;}
.xc{left:109.441200px;}
.xa{left:110.600100px;}
.x28{left:112.404450px;}
.x14{left:114.026700px;}
.x1a{left:115.031850px;}
.xd{left:127.891200px;}
.xb{left:130.186200px;}
.x9{left:131.495100px;}
.x29{left:144.730950px;}
.x16{left:168.258600px;}
.xe{left:179.417250px;}
.x18{left:186.768600px;}
.x10{left:197.927250px;}
.x7{left:212.663850px;}
.x2{left:232.601400px;}
.x3{left:233.748450px;}
.x1f{left:244.157250px;}
.x20{left:245.627250px;}
.x1d{left:304.427250px;}
.x11{left:331.412250px;}
.x21{left:337.157250px;}
.x22{left:343.622250px;}
.x19{left:347.268600px;}
.x23{left:443.762250px;}
.x24{left:445.802250px;}
.xf{left:447.467250px;}
.x17{left:460.968600px;}
.x1e{left:552.962250px;}
@media print{
.v7{vertical-align:-15.091200pt;}
.v2{vertical-align:-10.650667pt;}
.v8{vertical-align:-8.068800pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.650667pt;}
.v4{vertical-align:12.395200pt;}
.v1{vertical-align:15.102933pt;}
.v6{vertical-align:32.853333pt;}
.v5{vertical-align:40.426667pt;}
.lsa{letter-spacing:-6.552000pt;}
.ls1f{letter-spacing:-3.005333pt;}
.lsb{letter-spacing:-2.882667pt;}
.ls22{letter-spacing:-2.208000pt;}
.ls20{letter-spacing:-1.901333pt;}
.ls21{letter-spacing:-1.717333pt;}
.ls53{letter-spacing:-1.400000pt;}
.ls16{letter-spacing:-1.288000pt;}
.lsc{letter-spacing:-1.104000pt;}
.ls17{letter-spacing:-1.008000pt;}
.ls26{letter-spacing:-0.981333pt;}
.ls48{letter-spacing:-0.920000pt;}
.ls25{letter-spacing:-0.853333pt;}
.ls13{letter-spacing:-0.800000pt;}
.lsf{letter-spacing:-0.760000pt;}
.ls1e{letter-spacing:-0.613333pt;}
.ls1a{letter-spacing:-0.557333pt;}
.ls1b{letter-spacing:-0.533333pt;}
.ls36{letter-spacing:-0.506667pt;}
.ls23{letter-spacing:-0.152000pt;}
.ls10{letter-spacing:-0.072000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000267pt;}
.ls24{letter-spacing:0.576000pt;}
.ls14{letter-spacing:0.792000pt;}
.ls4c{letter-spacing:0.896000pt;}
.ls4f{letter-spacing:0.952000pt;}
.ls9{letter-spacing:0.991963pt;}
.ls6{letter-spacing:1.120000pt;}
.ls11{letter-spacing:1.152000pt;}
.ls4e{letter-spacing:1.400000pt;}
.lsd{letter-spacing:2.133333pt;}
.ls47{letter-spacing:2.759963pt;}
.ls1{letter-spacing:3.733333pt;}
.ls52{letter-spacing:4.704000pt;}
.ls50{letter-spacing:4.866667pt;}
.ls7{letter-spacing:5.120000pt;}
.ls1d{letter-spacing:5.200000pt;}
.ls8{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls15{letter-spacing:5.400000pt;}
.ls3{letter-spacing:5.600000pt;}
.ls1c{letter-spacing:6.133333pt;}
.lse{letter-spacing:6.400000pt;}
.ls4d{letter-spacing:6.440000pt;}
.ls4a{letter-spacing:6.666667pt;}
.ls0{letter-spacing:6.693333pt;}
.ls46{letter-spacing:7.253472pt;}
.ls49{letter-spacing:7.254005pt;}
.ls4b{letter-spacing:7.392000pt;}
.ls5{letter-spacing:7.466667pt;}
.ls51{letter-spacing:7.840000pt;}
.ls2e{letter-spacing:164.426667pt;}
.ls37{letter-spacing:165.013333pt;}
.ls18{letter-spacing:210.213333pt;}
.ls19{letter-spacing:739.893333pt;}
.ls39{letter-spacing:1025.546667pt;}
.ls43{letter-spacing:1025.706667pt;}
.ls29{letter-spacing:1025.813333pt;}
.ls45{letter-spacing:1026.186667pt;}
.ls31{letter-spacing:1026.346667pt;}
.ls35{letter-spacing:1026.666667pt;}
.ls42{letter-spacing:1027.626667pt;}
.ls34{letter-spacing:1027.840000pt;}
.ls3e{letter-spacing:1028.373333pt;}
.ls3f{letter-spacing:1028.426667pt;}
.ls3c{letter-spacing:1028.533333pt;}
.ls3b{letter-spacing:1028.800000pt;}
.ls27{letter-spacing:1029.120000pt;}
.ls38{letter-spacing:1031.253333pt;}
.ls30{letter-spacing:1041.173333pt;}
.ls3a{letter-spacing:1041.333333pt;}
.ls44{letter-spacing:1041.706667pt;}
.ls2f{letter-spacing:1041.920000pt;}
.ls2a{letter-spacing:1042.240000pt;}
.ls32{letter-spacing:1043.573333pt;}
.ls28{letter-spacing:1043.680000pt;}
.ls2c{letter-spacing:1044.106667pt;}
.ls33{letter-spacing:1044.746667pt;}
.ls2b{letter-spacing:1045.013333pt;}
.ls2d{letter-spacing:1054.986667pt;}
.ls40{letter-spacing:1055.200000pt;}
.ls41{letter-spacing:1055.786667pt;}
.ls3d{letter-spacing:1056.106667pt;}
.ws0{word-spacing:-25.426667pt;}
.wsb2{word-spacing:-25.400000pt;}
.ws11{word-spacing:-25.133333pt;}
.ws1d{word-spacing:-24.133333pt;}
.ws29{word-spacing:-23.933333pt;}
.wsbb{word-spacing:-23.600000pt;}
.wsb3{word-spacing:-23.128000pt;}
.ws12{word-spacing:-21.384000pt;}
.wsc1{word-spacing:-20.320000pt;}
.ws3{word-spacing:-20.213333pt;}
.wsb1{word-spacing:-20.160000pt;}
.ws2{word-spacing:-20.106667pt;}
.ws21{word-spacing:-17.234667pt;}
.wsb9{word-spacing:-17.136000pt;}
.wsb4{word-spacing:-16.632000pt;}
.wsae{word-spacing:-16.314667pt;}
.ws1{word-spacing:-16.090667pt;}
.wsb7{word-spacing:-15.736000pt;}
.wsd{word-spacing:-15.149333pt;}
.ws1c{word-spacing:-14.986667pt;}
.ws2a{word-spacing:-14.536000pt;}
.ws41{word-spacing:-14.400000pt;}
.ws38{word-spacing:-14.168000pt;}
.ws1e{word-spacing:-13.861333pt;}
.wsb5{word-spacing:-13.832000pt;}
.wsa{word-spacing:-13.680000pt;}
.wse{word-spacing:-13.488000pt;}
.ws2c{word-spacing:-13.432000pt;}
.ws2b{word-spacing:-13.248000pt;}
.ws4{word-spacing:-13.173333pt;}
.ws30{word-spacing:-12.941333pt;}
.ws26{word-spacing:-12.640000pt;}
.wsc0{word-spacing:-12.432000pt;}
.ws18{word-spacing:-12.373333pt;}
.ws37{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.266667pt;}
.ws16{word-spacing:-11.856000pt;}
.ws1f{word-spacing:-10.848000pt;}
.wsc{word-spacing:-10.047811pt;}
.wsb8{word-spacing:-9.174088pt;}
.ws19{word-spacing:-8.737227pt;}
.wsbc{word-spacing:-7.840000pt;}
.ws7{word-spacing:-7.466667pt;}
.wsb6{word-spacing:-6.440000pt;}
.wsbd{word-spacing:-5.600000pt;}
.ws5{word-spacing:-5.333333pt;}
.wsbe{word-spacing:-4.704000pt;}
.ws9{word-spacing:-3.733333pt;}
.ws13{word-spacing:-2.133333pt;}
.ws17{word-spacing:-1.728000pt;}
.ws1b{word-spacing:-1.392000pt;}
.ws8{word-spacing:-1.120000pt;}
.ws34{word-spacing:-1.042667pt;}
.wsba{word-spacing:-0.952000pt;}
.ws1a{word-spacing:-0.792000pt;}
.ws3a{word-spacing:-0.576000pt;}
.ws20{word-spacing:-0.384000pt;}
.ws6{word-spacing:0.000000pt;}
.ws15{word-spacing:0.072000pt;}
.ws39{word-spacing:0.152000pt;}
.ws68{word-spacing:0.506667pt;}
.ws28{word-spacing:0.557333pt;}
.ws32{word-spacing:0.613333pt;}
.ws14{word-spacing:0.760000pt;}
.ws2d{word-spacing:1.656000pt;}
.wsb0{word-spacing:2.208000pt;}
.ws2e{word-spacing:3.005333pt;}
.ws31{word-spacing:3.066667pt;}
.wsbf{word-spacing:3.640000pt;}
.wsf{word-spacing:4.477333pt;}
.ws33{word-spacing:4.968000pt;}
.ws3f{word-spacing:5.397333pt;}
.ws3b{word-spacing:5.704000pt;}
.ws3e{word-spacing:6.072000pt;}
.wsaf{word-spacing:6.501333pt;}
.ws3c{word-spacing:7.605333pt;}
.ws2f{word-spacing:8.928000pt;}
.ws3d{word-spacing:10.610667pt;}
.ws84{word-spacing:46.613333pt;}
.ws88{word-spacing:47.146667pt;}
.ws83{word-spacing:47.360000pt;}
.ws86{word-spacing:47.520000pt;}
.ws9e{word-spacing:47.680000pt;}
.ws8a{word-spacing:47.733333pt;}
.ws8e{word-spacing:47.946667pt;}
.ws71{word-spacing:48.053333pt;}
.ws99{word-spacing:48.106667pt;}
.ws8c{word-spacing:48.160000pt;}
.ws95{word-spacing:48.213333pt;}
.ws58{word-spacing:48.320000pt;}
.ws56{word-spacing:48.480000pt;}
.ws75{word-spacing:48.746667pt;}
.ws6f{word-spacing:48.800000pt;}
.ws97{word-spacing:48.853333pt;}
.ws7d{word-spacing:48.906667pt;}
.ws6c{word-spacing:48.960000pt;}
.ws79{word-spacing:49.013333pt;}
.ws9b{word-spacing:49.066667pt;}
.ws66{word-spacing:49.226667pt;}
.ws73{word-spacing:49.280000pt;}
.ws77{word-spacing:49.333333pt;}
.wsab{word-spacing:49.440000pt;}
.ws81{word-spacing:49.600000pt;}
.ws93{word-spacing:50.346667pt;}
.ws7f{word-spacing:50.506667pt;}
.wsa5{word-spacing:50.666667pt;}
.ws64{word-spacing:51.040000pt;}
.ws69{word-spacing:51.093333pt;}
.ws5a{word-spacing:51.200000pt;}
.ws62{word-spacing:51.626667pt;}
.ws5e{word-spacing:51.680000pt;}
.ws52{word-spacing:51.840000pt;}
.ws60{word-spacing:51.946667pt;}
.ws5c{word-spacing:52.106667pt;}
.ws10{word-spacing:52.609920pt;}
.ws54{word-spacing:53.706667pt;}
.ws4c{word-spacing:60.266667pt;}
.ws4e{word-spacing:60.533333pt;}
.ws50{word-spacing:61.760000pt;}
.ws49{word-spacing:62.400000pt;}
.ws47{word-spacing:62.506667pt;}
.ws45{word-spacing:62.986667pt;}
.ws43{word-spacing:65.440000pt;}
.ws40{word-spacing:74.293333pt;}
.ws27{word-spacing:106.133333pt;}
.ws25{word-spacing:106.240000pt;}
.ws24{word-spacing:106.720000pt;}
.ws23{word-spacing:109.173333pt;}
.ws98{word-spacing:143.562667pt;}
.ws42{word-spacing:192.213333pt;}
.ws22{word-spacing:196.106667pt;}
.ws57{word-spacing:206.816000pt;}
.wsa6{word-spacing:215.744000pt;}
.ws44{word-spacing:223.162667pt;}
.ws4d{word-spacing:223.296000pt;}
.ws7c{word-spacing:228.794667pt;}
.ws46{word-spacing:231.674667pt;}
.ws6b{word-spacing:241.914667pt;}
.ws92{word-spacing:242.448000pt;}
.ws90{word-spacing:242.928000pt;}
.ws53{word-spacing:247.306667pt;}
.ws5d{word-spacing:255.360000pt;}
.wsa8{word-spacing:255.509333pt;}
.ws85{word-spacing:269.301333pt;}
.ws48{word-spacing:269.984000pt;}
.wsa9{word-spacing:278.778667pt;}
.ws4b{word-spacing:279.258667pt;}
.ws9a{word-spacing:283.141333pt;}
.ws67{word-spacing:285.664000pt;}
.ws51{word-spacing:293.829333pt;}
.wsad{word-spacing:295.872000pt;}
.wsa4{word-spacing:304.330667pt;}
.ws7a{word-spacing:306.565333pt;}
.ws61{word-spacing:307.456000pt;}
.ws96{word-spacing:307.461333pt;}
.ws8b{word-spacing:311.856000pt;}
.ws76{word-spacing:313.050667pt;}
.ws82{word-spacing:317.557333pt;}
.ws94{word-spacing:318.682667pt;}
.ws4a{word-spacing:319.152000pt;}
.ws9d{word-spacing:320.672000pt;}
.ws63{word-spacing:321.226667pt;}
.ws7e{word-spacing:321.546667pt;}
.ws6e{word-spacing:321.792000pt;}
.wsa1{word-spacing:321.952000pt;}
.ws80{word-spacing:325.712000pt;}
.ws65{word-spacing:326.576000pt;}
.ws78{word-spacing:326.928000pt;}
.ws72{word-spacing:331.786667pt;}
.ws9f{word-spacing:335.210667pt;}
.ws74{word-spacing:336.810667pt;}
.ws4f{word-spacing:339.616000pt;}
.wsa3{word-spacing:343.530667pt;}
.ws8d{word-spacing:344.149333pt;}
.ws87{word-spacing:351.040000pt;}
.ws59{word-spacing:352.149333pt;}
.ws5b{word-spacing:354.256000pt;}
.ws89{word-spacing:355.424000pt;}
.wsa2{word-spacing:356.746667pt;}
.ws70{word-spacing:369.856000pt;}
.ws5f{word-spacing:379.200000pt;}
.ws36{word-spacing:465.946667pt;}
.wsac{word-spacing:476.597333pt;}
.ws6a{word-spacing:480.970667pt;}
.wsaa{word-spacing:492.352000pt;}
.ws6d{word-spacing:570.677333pt;}
.ws9c{word-spacing:584.586667pt;}
.ws91{word-spacing:665.610667pt;}
.ws7b{word-spacing:668.485333pt;}
.wsa7{word-spacing:671.520000pt;}
.ws8f{word-spacing:675.050667pt;}
.ws55{word-spacing:718.981333pt;}
.wsa0{word-spacing:720.320000pt;}
.ws35{word-spacing:767.413333pt;}
._20{margin-left:-14.256000pt;}
._d{margin-left:-9.540800pt;}
._7{margin-left:-7.835200pt;}
._c{margin-left:-6.819733pt;}
._17{margin-left:-5.912533pt;}
._11{margin-left:-5.015467pt;}
._6{margin-left:-3.897600pt;}
._b{margin-left:-2.944533pt;}
._5{margin-left:-2.038400pt;}
._4{margin-left:-1.138667pt;}
._1{width:0.938667pt;}
._3{width:1.872000pt;}
._a{width:3.226667pt;}
._9{width:4.304000pt;}
._2{width:5.616000pt;}
._1c{width:6.574933pt;}
._8{width:7.466667pt;}
._e{width:8.979200pt;}
._f{width:10.106667pt;}
._23{width:10.997067pt;}
._1a{width:12.039733pt;}
._21{width:13.085600pt;}
._1e{width:14.413333pt;}
._1f{width:15.321600pt;}
._41{width:16.237600pt;}
._49{width:17.850077pt;}
._2b{width:18.894667pt;}
._1b{width:21.355200pt;}
._31{width:22.539733pt;}
._33{width:23.852395pt;}
._32{width:24.861968pt;}
._34{width:26.005563pt;}
._4d{width:28.530133pt;}
._4a{width:30.912000pt;}
._40{width:32.615467pt;}
._4c{width:34.400800pt;}
._47{width:36.120000pt;}
._18{width:38.617920pt;}
._46{width:39.765600pt;}
._16{width:41.962933pt;}
._15{width:43.375200pt;}
._45{width:45.416000pt;}
._48{width:50.924000pt;}
._4b{width:60.855467pt;}
._43{width:61.857600pt;}
._44{width:63.399200pt;}
._42{width:74.952533pt;}
._10{width:76.048000pt;}
._37{width:164.426667pt;}
._39{width:206.304533pt;}
._2c{width:226.613333pt;}
._14{width:231.653333pt;}
._2d{width:240.125333pt;}
._3b{width:243.633067pt;}
._30{width:305.301333pt;}
._29{width:314.208000pt;}
._35{width:322.347200pt;}
._3e{width:336.149333pt;}
._0{width:398.853333pt;}
._19{width:399.760000pt;}
._3f{width:400.869333pt;}
._2a{width:402.394667pt;}
._25{width:430.325333pt;}
._2f{width:432.880000pt;}
._26{width:444.698667pt;}
._28{width:449.738667pt;}
._27{width:456.352000pt;}
._12{width:514.133333pt;}
._38{width:544.544533pt;}
._36{width:623.851733pt;}
._3c{width:656.746667pt;}
._2e{width:763.466667pt;}
._22{width:849.782400pt;}
._13{width:852.555733pt;}
._1d{width:856.155733pt;}
._24{width:857.915733pt;}
._3d{width:1031.222933pt;}
._3a{width:1056.480000pt;}
.fs9{font-size:27.984000pt;}
.fsd{font-size:31.093333pt;}
.fse{font-size:32.648000pt;}
.fs8{font-size:35.757333pt;}
.fs2{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs6{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y281{bottom:94.411867pt;}
.y20{bottom:94.439733pt;}
.y23f{bottom:94.457467pt;}
.y133{bottom:94.483067pt;}
.y90{bottom:94.485600pt;}
.y48{bottom:94.485733pt;}
.y6a{bottom:94.514933pt;}
.y260{bottom:94.536133pt;}
.y156{bottom:94.537867pt;}
.yd2{bottom:94.582667pt;}
.y2a3{bottom:94.663867pt;}
.y1fb{bottom:97.150933pt;}
.y1d2{bottom:97.151067pt;}
.y199{bottom:102.505600pt;}
.y132{bottom:109.819067pt;}
.y47{bottom:109.821733pt;}
.y1f{bottom:112.039733pt;}
.y8f{bottom:112.484267pt;}
.y46{bottom:112.484400pt;}
.y280{bottom:112.555867pt;}
.y23e{bottom:112.741467pt;}
.y2a2{bottom:113.059867pt;}
.yd1{bottom:113.209333pt;}
.y25f{bottom:113.492133pt;}
.y1fa{bottom:113.566400pt;}
.y69{bottom:114.156933pt;}
.y155{bottom:114.762533pt;}
.y2c1{bottom:115.922133pt;}
.y1be{bottom:121.222267pt;}
.y198{bottom:122.705600pt;}
.y45{bottom:125.147067pt;}
.y131{bottom:127.817733pt;}
.y1f9{bottom:128.902400pt;}
.y8e{bottom:128.929067pt;}
.y1e{bottom:129.639733pt;}
.y27f{bottom:130.699867pt;}
.y23d{bottom:131.025467pt;}
.y2a1{bottom:131.455867pt;}
.yd0{bottom:131.836000pt;}
.y25e{bottom:132.448133pt;}
.y68{bottom:133.798933pt;}
.y2c0{bottom:133.922133pt;}
.y154{bottom:134.987200pt;}
.y21b{bottom:136.269200pt;}
.y44{bottom:140.483067pt;}
.y1bd{bottom:141.422267pt;}
.y197{bottom:142.905600pt;}
.y1f8{bottom:144.238400pt;}
.y8d{bottom:144.265067pt;}
.y1d{bottom:147.239733pt;}
.ycf{bottom:150.462667pt;}
.y25d{bottom:151.404133pt;}
.yb0{bottom:151.589467pt;}
.yf2{bottom:151.645733pt;}
.y2bf{bottom:151.922133pt;}
.y67{bottom:153.440933pt;}
.y153{bottom:155.211867pt;}
.y21a{bottom:155.328533pt;}
.y43{bottom:155.819067pt;}
.y27e{bottom:156.389867pt;}
.y23c{bottom:156.869467pt;}
.y2a0{bottom:157.411867pt;}
.y1f7{bottom:159.574400pt;}
.y1bc{bottom:161.622267pt;}
.y8c{bottom:162.263733pt;}
.y196{bottom:163.105600pt;}
.y1c{bottom:164.839733pt;}
.y130{bottom:166.956000pt;}
.yaf{bottom:169.728800pt;}
.y2be{bottom:169.922133pt;}
.yf1{bottom:170.597733pt;}
.y42{bottom:171.155067pt;}
.y66{bottom:173.082933pt;}
.y41{bottom:173.817733pt;}
.y219{bottom:174.387867pt;}
.y27d{bottom:174.533867pt;}
.y1f6{bottom:174.910400pt;}
.y23b{bottom:175.153467pt;}
.y152{bottom:175.436533pt;}
.y29f{bottom:175.807867pt;}
.y25c{bottom:177.920133pt;}
.y8b{bottom:178.708667pt;}
.y1bb{bottom:181.822267pt;}
.y1b{bottom:182.439733pt;}
.y176{bottom:182.945867pt;}
.y195{bottom:183.305600pt;}
.y12f{bottom:185.110667pt;}
.y40{bottom:186.480400pt;}
.yce{bottom:187.716000pt;}
.yae{bottom:187.868133pt;}
.yf0{bottom:189.549733pt;}
.y1f5{bottom:190.246400pt;}
.y27c{bottom:192.677867pt;}
.y65{bottom:192.724933pt;}
.y23a{bottom:193.437467pt;}
.y218{bottom:193.447200pt;}
.y8a{bottom:194.044667pt;}
.y29e{bottom:194.203867pt;}
.y151{bottom:195.661200pt;}
.y25b{bottom:196.876133pt;}
.y2bd{bottom:199.255467pt;}
.y1a{bottom:200.039733pt;}
.y175{bottom:200.947200pt;}
.y3f{bottom:201.816400pt;}
.y1ba{bottom:202.022267pt;}
.y12e{bottom:203.265333pt;}
.y194{bottom:203.505600pt;}
.y1f4{bottom:205.582400pt;}
.yad{bottom:206.007467pt;}
.ycd{bottom:206.342667pt;}
.yef{bottom:208.501733pt;}
.y89{bottom:212.043333pt;}
.y64{bottom:212.366933pt;}
.y217{bottom:212.506533pt;}
.y29d{bottom:212.599867pt;}
.y10d{bottom:214.985600pt;}
.y150{bottom:215.885867pt;}
.y3e{bottom:217.152400pt;}
.y19{bottom:217.639733pt;}
.y27b{bottom:218.367867pt;}
.y174{bottom:218.948533pt;}
.y239{bottom:219.281467pt;}
.y1f3{bottom:220.918400pt;}
.y12d{bottom:221.420000pt;}
.y1b9{bottom:222.222267pt;}
.y25a{bottom:223.392133pt;}
.y193{bottom:223.705600pt;}
.yac{bottom:224.146800pt;}
.ycc{bottom:224.969333pt;}
.yee{bottom:227.453733pt;}
.y216{bottom:231.565867pt;}
.y3d{bottom:235.151067pt;}
.y10c{bottom:235.185600pt;}
.y18{bottom:235.239733pt;}
.y14f{bottom:236.110533pt;}
.y2bc{bottom:236.148800pt;}
.y1f2{bottom:236.254400pt;}
.y27a{bottom:236.511867pt;}
.y173{bottom:236.949867pt;}
.y238{bottom:237.565467pt;}
.y29c{bottom:238.555867pt;}
.y12c{bottom:239.574667pt;}
.yab{bottom:242.286133pt;}
.y1b8{bottom:242.422267pt;}
.ycb{bottom:243.596000pt;}
.y192{bottom:243.905600pt;}
.yed{bottom:246.405733pt;}
.y259{bottom:249.908133pt;}
.y215{bottom:250.625200pt;}
.y63{bottom:250.904800pt;}
.y1d1{bottom:251.132933pt;}
.y88{bottom:251.195733pt;}
.y1f1{bottom:251.590400pt;}
.y2bb{bottom:253.482133pt;}
.y279{bottom:254.655867pt;}
.y172{bottom:254.929867pt;}
.y10b{bottom:255.385600pt;}
.y237{bottom:255.849467pt;}
.y14e{bottom:256.335200pt;}
.y29b{bottom:256.951867pt;}
.y12b{bottom:257.729333pt;}
.yca{bottom:262.222667pt;}
.y1b7{bottom:262.622267pt;}
.y191{bottom:264.105600pt;}
.y17{bottom:264.173067pt;}
.yec{bottom:265.397333pt;}
.y1f0{bottom:266.926400pt;}
.y258{bottom:268.864133pt;}
.y1d0{bottom:269.132933pt;}
.y87{bottom:269.565067pt;}
.y214{bottom:269.684533pt;}
.y2ba{bottom:270.815467pt;}
.y171{bottom:272.931200pt;}
.y62{bottom:273.890800pt;}
.y3c{bottom:274.272800pt;}
.y10a{bottom:275.585600pt;}
.y12a{bottom:275.884000pt;}
.y14d{bottom:276.559867pt;}
.yaa{bottom:279.307200pt;}
.y278{bottom:280.345867pt;}
.y236{bottom:281.693467pt;}
.y1ef{bottom:282.262400pt;}
.y1b6{bottom:282.822267pt;}
.y29a{bottom:282.907867pt;}
.y190{bottom:284.305600pt;}
.yeb{bottom:284.349333pt;}
.y1cf{bottom:287.132933pt;}
.y257{bottom:287.820133pt;}
.y86{bottom:287.934400pt;}
.y2b9{bottom:288.148800pt;}
.y213{bottom:288.743867pt;}
.y170{bottom:290.932533pt;}
.y3b{bottom:292.473467pt;}
.y129{bottom:294.038667pt;}
.y109{bottom:295.785600pt;}
.y14c{bottom:296.784533pt;}
.y1ee{bottom:297.598400pt;}
.y277{bottom:298.489867pt;}
.yc9{bottom:299.476000pt;}
.ya9{bottom:300.781200pt;}
.y299{bottom:301.303867pt;}
.y1b5{bottom:303.022267pt;}
.yea{bottom:303.301333pt;}
.y18f{bottom:304.505600pt;}
.y2b8{bottom:305.482133pt;}
.y85{bottom:306.303733pt;}
.y256{bottom:306.776133pt;}
.y212{bottom:307.803200pt;}
.y16{bottom:308.226400pt;}
.y16f{bottom:308.933867pt;}
.y3a{bottom:310.674133pt;}
.y128{bottom:312.193333pt;}
.y1ed{bottom:312.934400pt;}
.y1ec{bottom:315.597067pt;}
.y108{bottom:315.985600pt;}
.y276{bottom:316.633867pt;}
.y14b{bottom:317.009200pt;}
.yc8{bottom:318.102667pt;}
.y298{bottom:319.699867pt;}
.ye9{bottom:322.253333pt;}
.ya8{bottom:322.255200pt;}
.y2b7{bottom:322.815467pt;}
.y1ce{bottom:323.132933pt;}
.y1b4{bottom:323.222267pt;}
.y84{bottom:324.673067pt;}
.y18e{bottom:324.705600pt;}
.y211{bottom:326.862533pt;}
.y16e{bottom:326.935200pt;}
.y15{bottom:327.159733pt;}
.y235{bottom:327.190533pt;}
.y1eb{bottom:328.251733pt;}
.y39{bottom:328.874800pt;}
.y127{bottom:330.367600pt;}
.y61{bottom:330.993200pt;}
.y255{bottom:333.292133pt;}
.y107{bottom:336.185600pt;}
.yc7{bottom:336.729333pt;}
.y14a{bottom:337.233867pt;}
.y2b6{bottom:340.148800pt;}
.y1cd{bottom:341.132933pt;}
.ye8{bottom:341.205333pt;}
.y275{bottom:342.323867pt;}
.y83{bottom:343.112667pt;}
.y1b3{bottom:343.422267pt;}
.y1ea{bottom:343.587733pt;}
.y18d{bottom:344.905600pt;}
.y16d{bottom:344.936533pt;}
.y234{bottom:345.467867pt;}
.y297{bottom:345.655867pt;}
.y210{bottom:345.921867pt;}
.y14{bottom:346.046400pt;}
.y106{bottom:346.278933pt;}
.y38{bottom:347.075467pt;}
.y126{bottom:348.522267pt;}
.y60{bottom:350.635200pt;}
.y254{bottom:352.248133pt;}
.yc6{bottom:355.356000pt;}
.y149{bottom:357.458533pt;}
.y2b5{bottom:357.482133pt;}
.y1e9{bottom:358.923733pt;}
.y1cc{bottom:359.132933pt;}
.ye7{bottom:360.157333pt;}
.y274{bottom:360.467867pt;}
.y82{bottom:361.482000pt;}
.y16c{bottom:362.937867pt;}
.y1b2{bottom:363.622267pt;}
.y13{bottom:363.646400pt;}
.y233{bottom:363.745200pt;}
.y296{bottom:364.051867pt;}
.y20f{bottom:364.981200pt;}
.y18c{bottom:365.105600pt;}
.y37{bottom:365.276133pt;}
.y125{bottom:366.676933pt;}
.y5f{bottom:370.277200pt;}
.y253{bottom:371.204133pt;}
.y1e8{bottom:374.259733pt;}
.y2b4{bottom:374.815467pt;}
.y148{bottom:377.683200pt;}
.ya7{bottom:377.717067pt;}
.ye6{bottom:379.109333pt;}
.y81{bottom:379.851333pt;}
.y16b{bottom:380.939200pt;}
.y12{bottom:381.246400pt;}
.y232{bottom:382.022533pt;}
.y295{bottom:382.447867pt;}
.y105{bottom:382.590133pt;}
.y36{bottom:383.476800pt;}
.y1b1{bottom:383.822267pt;}
.y20e{bottom:384.040533pt;}
.y124{bottom:384.831600pt;}
.y18b{bottom:385.305600pt;}
.y273{bottom:386.157867pt;}
.y1e7{bottom:389.595733pt;}
.y5e{bottom:389.919200pt;}
.y2b3{bottom:392.148800pt;}
.yc5{bottom:392.609333pt;}
.y1cb{bottom:395.132933pt;}
.ya6{bottom:395.856400pt;}
.y252{bottom:397.720133pt;}
.y147{bottom:397.907867pt;}
.ye5{bottom:398.061333pt;}
.y80{bottom:398.220667pt;}
.y11{bottom:398.846400pt;}
.y16a{bottom:398.940533pt;}
.y231{bottom:400.299867pt;}
.y35{bottom:401.677467pt;}
.y123{bottom:402.986267pt;}
.y1b0{bottom:404.022267pt;}
.y272{bottom:404.301867pt;}
.y1e6{bottom:404.931733pt;}
.y18a{bottom:405.505600pt;}
.y294{bottom:408.403867pt;}
.y2b2{bottom:409.482133pt;}
.y5d{bottom:409.561200pt;}
.yc4{bottom:411.236000pt;}
.y1ca{bottom:413.132933pt;}
.ya5{bottom:413.995733pt;}
.y10{bottom:416.446400pt;}
.y7f{bottom:416.590000pt;}
.y251{bottom:416.676133pt;}
.y169{bottom:416.941867pt;}
.y146{bottom:418.132533pt;}
.y230{bottom:418.577200pt;}
.y104{bottom:418.819867pt;}
.y34{bottom:419.878133pt;}
.y122{bottom:421.140933pt;}
.y20d{bottom:421.996800pt;}
.y271{bottom:422.445867pt;}
.y1e5{bottom:422.930400pt;}
.y1af{bottom:424.222267pt;}
.ye4{bottom:424.531333pt;}
.y189{bottom:425.705600pt;}
.y293{bottom:426.799867pt;}
.y2b1{bottom:426.815467pt;}
.y5c{bottom:429.203200pt;}
.yc3{bottom:429.862667pt;}
.y1c9{bottom:431.132933pt;}
.ya4{bottom:432.135067pt;}
.yf{bottom:434.046400pt;}
.y168{bottom:434.943200pt;}
.y7e{bottom:434.959333pt;}
.y250{bottom:435.632133pt;}
.y103{bottom:436.817067pt;}
.y22f{bottom:436.854533pt;}
.y33{bottom:438.078800pt;}
.y145{bottom:438.357200pt;}
.y121{bottom:439.295600pt;}
.ye3{bottom:443.491333pt;}
.y2b0{bottom:444.148800pt;}
.y1ae{bottom:444.422267pt;}
.y292{bottom:445.195867pt;}
.y188{bottom:445.905600pt;}
.y270{bottom:448.135867pt;}
.yc2{bottom:448.489333pt;}
.y5b{bottom:448.845200pt;}
.y1c8{bottom:449.132933pt;}
.ya3{bottom:450.274400pt;}
.ye{bottom:451.646400pt;}
.y167{bottom:452.944533pt;}
.y7d{bottom:453.328667pt;}
.y24f{bottom:454.610000pt;}
.y102{bottom:454.818400pt;}
.y22e{bottom:455.131867pt;}
.y32{bottom:456.279467pt;}
.y120{bottom:457.450267pt;}
.y144{bottom:458.581867pt;}
.y2af{bottom:461.482133pt;}
.y1e4{bottom:462.079467pt;}
.ye2{bottom:462.451333pt;}
.y1ad{bottom:464.622267pt;}
.y187{bottom:466.105600pt;}
.y26f{bottom:466.279867pt;}
.yc1{bottom:467.116000pt;}
.y1c7{bottom:467.122267pt;}
.ya2{bottom:468.413733pt;}
.y5a{bottom:468.487200pt;}
.yd{bottom:469.246400pt;}
.y166{bottom:470.945867pt;}
.y291{bottom:471.151867pt;}
.y7c{bottom:471.698000pt;}
.y101{bottom:472.819733pt;}
.y22d{bottom:473.409200pt;}
.y31{bottom:474.480133pt;}
.y11f{bottom:475.604933pt;}
.y20c{bottom:478.398133pt;}
.y143{bottom:478.806533pt;}
.y2ae{bottom:478.815467pt;}
.y1e3{bottom:480.985467pt;}
.y24e{bottom:481.126000pt;}
.ye1{bottom:481.411333pt;}
.y1ac{bottom:484.822267pt;}
.y1c6{bottom:485.123600pt;}
.yc0{bottom:485.742667pt;}
.y186{bottom:486.305600pt;}
.yc{bottom:486.846400pt;}
.y59{bottom:488.129200pt;}
.y165{bottom:488.947200pt;}
.y290{bottom:489.547867pt;}
.y7b{bottom:490.067333pt;}
.y100{bottom:490.821067pt;}
.y22c{bottom:491.686533pt;}
.y26e{bottom:491.969867pt;}
.y30{bottom:492.680800pt;}
.y11e{bottom:493.759600pt;}
.ya1{bottom:494.123467pt;}
.y2ad{bottom:496.148800pt;}
.y20b{bottom:497.457467pt;}
.y142{bottom:499.031200pt;}
.y1e2{bottom:499.891467pt;}
.ye0{bottom:500.371333pt;}
.y1c5{bottom:503.124933pt;}
.y1ab{bottom:505.022267pt;}
.y185{bottom:506.505600pt;}
.y164{bottom:506.948533pt;}
.y24d{bottom:507.642000pt;}
.y58{bottom:507.771200pt;}
.y7a{bottom:508.436667pt;}
.y22b{bottom:509.963867pt;}
.y26d{bottom:510.113867pt;}
.y2f{bottom:510.878400pt;}
.y11d{bottom:511.914267pt;}
.ya0{bottom:512.256800pt;}
.y2ac{bottom:513.482133pt;}
.y28f{bottom:515.503867pt;}
.yb{bottom:515.779733pt;}
.y20a{bottom:516.516800pt;}
.y1e1{bottom:518.797467pt;}
.y141{bottom:519.255867pt;}
.ydf{bottom:519.331333pt;}
.y1c4{bottom:521.126267pt;}
.y184{bottom:522.505600pt;}
.ybf{bottom:522.996000pt;}
.y181{bottom:524.598933pt;}
.y163{bottom:524.949867pt;}
.y1aa{bottom:525.222267pt;}
.y24c{bottom:526.598000pt;}
.y79{bottom:526.806000pt;}
.y57{bottom:527.413200pt;}
.yff{bottom:527.722133pt;}
.y22a{bottom:528.241200pt;}
.y26c{bottom:528.257867pt;}
.y2e{bottom:529.079067pt;}
.y11c{bottom:530.068933pt;}
.y9f{bottom:530.390133pt;}
.y2ab{bottom:530.815467pt;}
.y28e{bottom:533.899867pt;}
.y209{bottom:535.576133pt;}
.y1e0{bottom:537.703467pt;}
.yde{bottom:538.291333pt;}
.y1c3{bottom:539.127600pt;}
.y140{bottom:539.480533pt;}
.y180{bottom:540.598933pt;}
.ybe{bottom:541.622667pt;}
.y183{bottom:542.705600pt;}
.y162{bottom:542.951200pt;}
.y78{bottom:545.175333pt;}
.y1a9{bottom:545.422267pt;}
.y24b{bottom:545.554000pt;}
.y26b{bottom:546.401867pt;}
.y229{bottom:546.518533pt;}
.y56{bottom:547.055200pt;}
.y2d{bottom:547.279733pt;}
.y2aa{bottom:548.148800pt;}
.y11b{bottom:548.223600pt;}
.y9e{bottom:548.523467pt;}
.yfe{bottom:549.052133pt;}
.y182{bottom:550.705600pt;}
.y28d{bottom:552.295867pt;}
.y208{bottom:554.635467pt;}
.y1df{bottom:556.609467pt;}
.y1c2{bottom:557.128933pt;}
.ydd{bottom:557.251333pt;}
.y13f{bottom:559.705200pt;}
.ybd{bottom:560.249333pt;}
.y77{bottom:563.544667pt;}
.y24a{bottom:564.510000pt;}
.y228{bottom:564.795867pt;}
.y2c{bottom:565.480400pt;}
.y2a9{bottom:565.482133pt;}
.y1a8{bottom:565.622267pt;}
.y11a{bottom:566.378267pt;}
.y9d{bottom:566.656800pt;}
.y55{bottom:566.697200pt;}
.ya{bottom:567.390400pt;}
.y26a{bottom:572.091867pt;}
.y207{bottom:573.694800pt;}
.y1c1{bottom:575.130267pt;}
.y1de{bottom:575.515467pt;}
.ydc{bottom:576.211333pt;}
.y28c{bottom:578.251867pt;}
.ybc{bottom:578.876000pt;}
.y13e{bottom:579.929867pt;}
.y76{bottom:581.914000pt;}
.y2a8{bottom:582.815467pt;}
.y227{bottom:583.073200pt;}
.y2b{bottom:583.681067pt;}
.y119{bottom:584.532933pt;}
.y17f{bottom:584.534933pt;}
.y9c{bottom:584.790133pt;}
.y1a7{bottom:585.822267pt;}
.y54{bottom:586.339200pt;}
.y161{bottom:587.066933pt;}
.y269{bottom:590.235867pt;}
.y249{bottom:591.026000pt;}
.y206{bottom:592.754133pt;}
.y1c0{bottom:593.131600pt;}
.y1dd{bottom:594.421467pt;}
.ydb{bottom:595.171333pt;}
.y28b{bottom:596.647867pt;}
.ybb{bottom:597.502667pt;}
.y13d{bottom:600.154533pt;}
.y75{bottom:600.338533pt;}
.y226{bottom:601.350533pt;}
.y2a{bottom:601.881733pt;}
.y118{bottom:602.687600pt;}
.y9b{bottom:602.923467pt;}
.y160{bottom:603.493600pt;}
.yfd{bottom:604.386533pt;}
.y53{bottom:605.981200pt;}
.y1a6{bottom:606.022267pt;}
.y248{bottom:609.982000pt;}
.y9{bottom:610.538933pt;}
.y1bf{bottom:611.132933pt;}
.y2a7{bottom:611.482133pt;}
.y205{bottom:611.813467pt;}
.y1dc{bottom:613.327467pt;}
.yda{bottom:614.131333pt;}
.y28a{bottom:615.043867pt;}
.y268{bottom:615.925867pt;}
.yba{bottom:616.129333pt;}
.y74{bottom:618.707867pt;}
.y225{bottom:619.627867pt;}
.y15f{bottom:619.920267pt;}
.y29{bottom:620.082400pt;}
.y13c{bottom:620.379200pt;}
.y117{bottom:620.854533pt;}
.y9a{bottom:621.056800pt;}
.y17e{bottom:622.251733pt;}
.yfc{bottom:622.387867pt;}
.y52{bottom:625.623200pt;}
.y1a5{bottom:626.222267pt;}
.y247{bottom:628.959867pt;}
.y204{bottom:630.872800pt;}
.y1db{bottom:632.233467pt;}
.yd9{bottom:633.091333pt;}
.y289{bottom:633.439867pt;}
.y267{bottom:634.069867pt;}
.yb9{bottom:634.756000pt;}
.y15e{bottom:636.346933pt;}
.y73{bottom:637.077200pt;}
.y224{bottom:637.905200pt;}
.y28{bottom:638.283067pt;}
.y8{bottom:638.810933pt;}
.y116{bottom:639.009200pt;}
.y99{bottom:639.190133pt;}
.yfb{bottom:640.389200pt;}
.y13b{bottom:640.603867pt;}
.y17d{bottom:641.771067pt;}
.y51{bottom:645.265200pt;}
.y1a4{bottom:646.422267pt;}
.y203{bottom:649.926533pt;}
.y1da{bottom:651.139467pt;}
.y266{bottom:652.213867pt;}
.y15d{bottom:652.773600pt;}
.yb8{bottom:653.382667pt;}
.y72{bottom:655.446533pt;}
.y246{bottom:655.475867pt;}
.y223{bottom:656.182533pt;}
.y115{bottom:657.163867pt;}
.y98{bottom:657.323467pt;}
.yfa{bottom:658.390533pt;}
.y288{bottom:659.395867pt;}
.y13a{bottom:660.828533pt;}
.y17c{bottom:661.290400pt;}
.y2a6{bottom:662.831200pt;}
.y50{bottom:664.907200pt;}
.y1a3{bottom:666.622267pt;}
.y202{bottom:668.985867pt;}
.y15c{bottom:669.200267pt;}
.y1d9{bottom:670.057200pt;}
.yd8{bottom:671.011333pt;}
.yb7{bottom:672.009333pt;}
.y71{bottom:673.815867pt;}
.y245{bottom:674.431867pt;}
.y222{bottom:674.459867pt;}
.y114{bottom:675.318533pt;}
.y27{bottom:675.381067pt;}
.y97{bottom:675.464667pt;}
.yf9{bottom:676.391867pt;}
.y15b{bottom:677.413600pt;}
.y287{bottom:677.791867pt;}
.y265{bottom:677.903867pt;}
.y17b{bottom:680.809733pt;}
.y139{bottom:681.053200pt;}
.y4f{bottom:684.549200pt;}
.y1a2{bottom:686.822267pt;}
.y201{bottom:688.045200pt;}
.y1d8{bottom:688.963200pt;}
.yd7{bottom:689.971333pt;}
.yb6{bottom:690.636000pt;}
.y70{bottom:692.185200pt;}
.y221{bottom:692.737200pt;}
.y113{bottom:693.473200pt;}
.y7{bottom:693.506400pt;}
.y96{bottom:693.598000pt;}
.yf8{bottom:694.393200pt;}
.y264{bottom:696.047867pt;}
.y286{bottom:696.187867pt;}
.y17a{bottom:700.329067pt;}
.y244{bottom:700.947867pt;}
.y138{bottom:701.277867pt;}
.y4e{bottom:704.191200pt;}
.y1a1{bottom:707.022267pt;}
.y200{bottom:707.104533pt;}
.y1d7{bottom:707.869200pt;}
.yd6{bottom:708.931333pt;}
.yb5{bottom:709.262667pt;}
.y15a{bottom:709.945333pt;}
.y6f{bottom:710.554533pt;}
.y220{bottom:711.014533pt;}
.y112{bottom:711.627867pt;}
.y95{bottom:711.731333pt;}
.yf7{bottom:712.394533pt;}
.y179{bottom:719.848400pt;}
.y243{bottom:719.903867pt;}
.y6{bottom:719.999733pt;}
.y137{bottom:721.502533pt;}
.y263{bottom:721.737867pt;}
.y285{bottom:722.143867pt;}
.y4d{bottom:723.833200pt;}
.y1ff{bottom:726.163867pt;}
.y1d6{bottom:726.775200pt;}
.y1a0{bottom:727.222267pt;}
.yb4{bottom:727.889333pt;}
.yd5{bottom:727.891333pt;}
.y6e{bottom:728.923867pt;}
.y21f{bottom:729.291867pt;}
.y111{bottom:729.782533pt;}
.y94{bottom:729.864667pt;}
.yf6{bottom:730.395867pt;}
.y26{bottom:730.930533pt;}
.y242{bottom:738.859867pt;}
.y5{bottom:738.933067pt;}
.y178{bottom:739.367733pt;}
.y284{bottom:740.539867pt;}
.y136{bottom:741.727200pt;}
.y159{bottom:742.396800pt;}
.y4c{bottom:743.475200pt;}
.y1fe{bottom:745.223200pt;}
.y1d5{bottom:745.681200pt;}
.yb3{bottom:746.516000pt;}
.y6d{bottom:747.293200pt;}
.y19f{bottom:747.422267pt;}
.y21e{bottom:747.569200pt;}
.y110{bottom:747.937200pt;}
.y93{bottom:747.998000pt;}
.yf5{bottom:748.397200pt;}
.y25{bottom:749.797200pt;}
.y241{bottom:757.815867pt;}
.y2a5{bottom:759.728800pt;}
.y135{bottom:761.951867pt;}
.y4b{bottom:763.117200pt;}
.y19e{bottom:763.422267pt;}
.y1fd{bottom:764.282533pt;}
.y1d4{bottom:764.587200pt;}
.yb2{bottom:765.142667pt;}
.y4{bottom:765.426400pt;}
.y19b{bottom:765.515600pt;}
.y6c{bottom:765.662533pt;}
.yd4{bottom:765.811333pt;}
.y21d{bottom:765.846533pt;}
.y10f{bottom:766.091867pt;}
.y92{bottom:766.131333pt;}
.yf4{bottom:766.398533pt;}
.y283{bottom:766.495867pt;}
.y262{bottom:766.999867pt;}
.y24{bottom:768.664667pt;}
.y2a4{bottom:777.723867pt;}
.y177{bottom:777.785733pt;}
.y158{bottom:779.297733pt;}
.y19a{bottom:781.515600pt;}
.y134{bottom:782.176533pt;}
.y4a{bottom:782.759200pt;}
.y1fc{bottom:783.341867pt;}
.y1d3{bottom:783.495200pt;}
.y19d{bottom:783.622267pt;}
.yb1{bottom:783.771200pt;}
.y6b{bottom:784.031867pt;}
.y21c{bottom:784.123867pt;}
.y10e{bottom:784.246533pt;}
.y91{bottom:784.261867pt;}
.y240{bottom:784.331867pt;}
.y3{bottom:784.359733pt;}
.yf3{bottom:784.399867pt;}
.yd3{bottom:784.771333pt;}
.y282{bottom:784.891867pt;}
.y261{bottom:785.143867pt;}
.y23{bottom:786.198000pt;}
.y19c{bottom:791.622267pt;}
.y157{bottom:800.627733pt;}
.y49{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:803.731333pt;}
.y21{bottom:842.834667pt;}
.he{height:21.917156pt;}
.hc{height:31.419646pt;}
.h10{height:34.302458pt;}
.hf{height:37.395833pt;}
.hd{height:42.070312pt;}
.h11{height:44.953125pt;}
.h4{height:46.744792pt;}
.h14{height:47.057292pt;}
.h15{height:48.036458pt;}
.h3{height:49.082031pt;}
.h7{height:49.947917pt;}
.h1b{height:52.357846pt;}
.h1a{height:52.445312pt;}
.h18{height:53.748510pt;}
.h9{height:53.756510pt;}
.hb{height:53.768777pt;}
.h12{height:53.773044pt;}
.ha{height:57.440104pt;}
.h19{height:57.462504pt;}
.h2{height:58.430990pt;}
.h8{height:63.105469pt;}
.h6{height:65.442708pt;}
.h17{height:79.057292pt;}
.h16{height:79.910625pt;}
.h5{height:84.140625pt;}
.h13{height:87.483958pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:71.929867pt;}
.x12{left:73.244933pt;}
.x1{left:74.388133pt;}
.x5{left:75.640533pt;}
.x15{left:81.531067pt;}
.x13{left:83.064400pt;}
.x27{left:85.179733pt;}
.x1b{left:87.695333pt;}
.x1c{left:89.188667pt;}
.x25{left:90.162000pt;}
.x26{left:91.068267pt;}
.x6{left:93.359333pt;}
.x4{left:94.547200pt;}
.xc{left:97.281067pt;}
.xa{left:98.311200pt;}
.x28{left:99.915067pt;}
.x14{left:101.357067pt;}
.x1a{left:102.250533pt;}
.xd{left:113.681067pt;}
.xb{left:115.721067pt;}
.x9{left:116.884533pt;}
.x29{left:128.649733pt;}
.x16{left:149.563200pt;}
.xe{left:159.482000pt;}
.x18{left:166.016533pt;}
.x10{left:175.935333pt;}
.x7{left:189.034533pt;}
.x2{left:206.756800pt;}
.x3{left:207.776400pt;}
.x1f{left:217.028667pt;}
.x20{left:218.335333pt;}
.x1d{left:270.602000pt;}
.x11{left:294.588667pt;}
.x21{left:299.695333pt;}
.x22{left:305.442000pt;}
.x19{left:308.683200pt;}
.x23{left:394.455333pt;}
.x24{left:396.268667pt;}
.xf{left:397.748667pt;}
.x17{left:409.749867pt;}
.x1e{left:491.522000pt;}
}




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