
    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_7438c17dc67b06d69d8d92c8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_a0e66a3551bc192a0fc2cd33.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_e2ac3e3130458668f3c70aa8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.907715;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_44ce4c0ba02b7a85162ed52a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.944336;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_ae4e7203ebbc20852b27669d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_e560123bfcfea1c92900ae68.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_205a722abb28901c3d3673cf.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899902;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_507c71923da495e98fd405d5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.020020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.499000px;}
.v2{vertical-align:36.000000px;}
.ls17{letter-spacing:-2.553000px;}
.ls5{letter-spacing:-2.052000px;}
.ls11{letter-spacing:-1.296000px;}
.lsf{letter-spacing:-1.215000px;}
.ls6{letter-spacing:-1.092000px;}
.ls19{letter-spacing:-0.972000px;}
.lse{letter-spacing:-0.855000px;}
.ls12{letter-spacing:-0.627000px;}
.ls18{letter-spacing:-0.570000px;}
.ls3{letter-spacing:-0.300000px;}
.ls4{letter-spacing:-0.240000px;}
.lsd{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.171000px;}
.ls13{letter-spacing:-0.069000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:2.400000px;}
.ls8{letter-spacing:3.600000px;}
.ls9{letter-spacing:4.200000px;}
.lsc{letter-spacing:5.760000px;}
.ls7{letter-spacing:5.880000px;}
.ls1{letter-spacing:6.000000px;}
.ls1a{letter-spacing:6.300000px;}
.ls10{letter-spacing:6.825000px;}
.ls1b{letter-spacing:6.867000px;}
.ls16{letter-spacing:7.275000px;}
.lsb{letter-spacing:7.950000px;}
.ls2{letter-spacing:8.400000px;}
.ls15{letter-spacing:8.550000px;}
.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;}
}
.ws7{word-spacing:-108.000000px;}
.ws8{word-spacing:-105.948000px;}
.ws9{word-spacing:-84.000000px;}
.ws84{word-spacing:-83.550000px;}
.wsa{word-spacing:-82.908000px;}
.ws94{word-spacing:-82.275000px;}
.ws29{word-spacing:-81.825000px;}
.ws59{word-spacing:-81.000000px;}
.wsa2{word-spacing:-80.028000px;}
.ws1e{word-spacing:-79.785000px;}
.ws43{word-spacing:-79.704000px;}
.wsb1{word-spacing:-69.867000px;}
.wsb4{word-spacing:-69.300000px;}
.ws1f{word-spacing:-69.000000px;}
.ws50{word-spacing:-68.931000px;}
.ws3{word-spacing:-68.400000px;}
.ws2{word-spacing:-66.000000px;}
.wsb{word-spacing:-65.880000px;}
.ws16{word-spacing:-65.760000px;}
.ws1{word-spacing:-63.000000px;}
.ws4{word-spacing:-60.000000px;}
.ws6{word-spacing:-59.760000px;}
.ws5{word-spacing:-59.700000px;}
.wsca{word-spacing:-58.590000px;}
.wsc3{word-spacing:-58.281300px;}
.wsc8{word-spacing:-57.960000px;}
.ws46{word-spacing:-57.794400px;}
.ws3b{word-spacing:-57.780600px;}
.ws24{word-spacing:-57.753000px;}
.ws3a{word-spacing:-57.718500px;}
.ws75{word-spacing:-57.684000px;}
.ws8b{word-spacing:-57.546000px;}
.wsb2{word-spacing:-57.456000px;}
.ws71{word-spacing:-57.408000px;}
.wsa0{word-spacing:-57.387300px;}
.wsac{word-spacing:-57.339000px;}
.ws2e{word-spacing:-57.125100px;}
.ws97{word-spacing:-57.063000px;}
.ws38{word-spacing:-57.028500px;}
.ws99{word-spacing:-57.000900px;}
.wsaa{word-spacing:-56.925000px;}
.ws51{word-spacing:-56.856000px;}
.ws30{word-spacing:-56.787000px;}
.ws73{word-spacing:-56.718000px;}
.ws2f{word-spacing:-56.649000px;}
.ws48{word-spacing:-56.511000px;}
.ws42{word-spacing:-56.428200px;}
.ws4e{word-spacing:-56.407500px;}
.ws5a{word-spacing:-56.373000px;}
.ws32{word-spacing:-56.304000px;}
.wsa4{word-spacing:-56.235000px;}
.wsa8{word-spacing:-56.166000px;}
.ws70{word-spacing:-56.097000px;}
.ws7d{word-spacing:-56.028000px;}
.ws2c{word-spacing:-55.821000px;}
.ws33{word-spacing:-55.545000px;}
.ws81{word-spacing:-55.476000px;}
.ws40{word-spacing:-55.338000px;}
.ws9e{word-spacing:-55.269000px;}
.ws3f{word-spacing:-55.200000px;}
.ws52{word-spacing:-54.999900px;}
.ws25{word-spacing:-54.993000px;}
.ws37{word-spacing:-54.924000px;}
.ws76{word-spacing:-54.855000px;}
.ws21{word-spacing:-54.786000px;}
.ws34{word-spacing:-54.717000px;}
.wsa9{word-spacing:-54.579000px;}
.ws72{word-spacing:-54.441000px;}
.ws2d{word-spacing:-54.165000px;}
.ws53{word-spacing:-54.096000px;}
.ws4b{word-spacing:-53.544000px;}
.wsa5{word-spacing:-53.261100px;}
.ws39{word-spacing:-53.130000px;}
.wsc9{word-spacing:-52.731000px;}
.ws4a{word-spacing:-52.647000px;}
.ws22{word-spacing:-52.626300px;}
.ws8e{word-spacing:-52.591800px;}
.ws8f{word-spacing:-52.578000px;}
.ws8d{word-spacing:-52.509000px;}
.ws3e{word-spacing:-52.502100px;}
.wsd7{word-spacing:-52.353000px;}
.ws44{word-spacing:-52.095000px;}
.ws82{word-spacing:-52.026000px;}
.ws8a{word-spacing:-51.957000px;}
.ws23{word-spacing:-51.819000px;}
.wsc4{word-spacing:-51.741900px;}
.ws11{word-spacing:-51.600000px;}
.wsaf{word-spacing:-51.267000px;}
.ws57{word-spacing:-50.887500px;}
.ws35{word-spacing:-50.715000px;}
.ws7a{word-spacing:-50.508000px;}
.wse{word-spacing:-50.400000px;}
.wsa3{word-spacing:-50.163000px;}
.wsd6{word-spacing:-49.959000px;}
.ws13{word-spacing:-49.560000px;}
.ws18{word-spacing:-49.488000px;}
.ws12{word-spacing:-49.440000px;}
.ws45{word-spacing:-49.335000px;}
.ws14{word-spacing:-49.260000px;}
.ws36{word-spacing:-49.231500px;}
.ws17{word-spacing:-49.224000px;}
.ws2b{word-spacing:-48.852000px;}
.ws4f{word-spacing:-48.783000px;}
.ws74{word-spacing:-48.003300px;}
.ws5b{word-spacing:-47.906700px;}
.ws41{word-spacing:-47.679000px;}
.wsb7{word-spacing:-47.565000px;}
.wsb3{word-spacing:-46.872000px;}
.wsd8{word-spacing:-46.683000px;}
.wsa7{word-spacing:-46.395600px;}
.ws5c{word-spacing:-46.200000px;}
.wsc{word-spacing:-44.940000px;}
.ws68{word-spacing:-44.850000px;}
.ws49{word-spacing:-44.649900px;}
.wsad{word-spacing:-44.118600px;}
.ws80{word-spacing:-44.022000px;}
.wsae{word-spacing:-42.214200px;}
.ws31{word-spacing:-40.227000px;}
.wsb6{word-spacing:-38.241000px;}
.ws9d{word-spacing:-37.929300px;}
.wsab{word-spacing:-33.106500px;}
.ws1a{word-spacing:-33.042000px;}
.ws58{word-spacing:-32.736300px;}
.ws1d{word-spacing:-32.273100px;}
.ws47{word-spacing:-32.226300px;}
.wsa1{word-spacing:-31.020900px;}
.wsb8{word-spacing:-29.484000px;}
.wsf{word-spacing:-29.025000px;}
.ws20{word-spacing:-17.043000px;}
.ws56{word-spacing:-16.974000px;}
.ws6b{word-spacing:-16.200000px;}
.wsb5{word-spacing:-15.561000px;}
.wsdc{word-spacing:-14.820000px;}
.ws98{word-spacing:-14.490000px;}
.wsc7{word-spacing:-14.238000px;}
.wsc6{word-spacing:-14.212800px;}
.wscd{word-spacing:-6.489000px;}
.ws83{word-spacing:-4.071000px;}
.ws8c{word-spacing:-3.933000px;}
.ws55{word-spacing:-3.519000px;}
.ws9b{word-spacing:-3.381000px;}
.ws6f{word-spacing:-2.622000px;}
.ws69{word-spacing:-2.544000px;}
.ws9a{word-spacing:-2.139000px;}
.ws28{word-spacing:-2.070000px;}
.ws1b{word-spacing:-2.040000px;}
.wsd2{word-spacing:-2.016000px;}
.wsc0{word-spacing:-1.764000px;}
.wsc5{word-spacing:-1.612800px;}
.wsbd{word-spacing:-1.323000px;}
.ws1c{word-spacing:-1.020000px;}
.ws9c{word-spacing:-0.966000px;}
.ws4c{word-spacing:-0.621000px;}
.ws27{word-spacing:-0.300000px;}
.wsd3{word-spacing:-0.126000px;}
.wsd{word-spacing:0.000000px;}
.ws26{word-spacing:0.180000px;}
.wsbf{word-spacing:0.252000px;}
.wsbe{word-spacing:1.260000px;}
.ws77{word-spacing:1.311000px;}
.wsd4{word-spacing:1.953000px;}
.wsce{word-spacing:2.709000px;}
.wsbc{word-spacing:3.339000px;}
.wsde{word-spacing:3.480000px;}
.wsdd{word-spacing:3.540000px;}
.wscc{word-spacing:3.654000px;}
.ws7f{word-spacing:4.071000px;}
.wsc2{word-spacing:4.284000px;}
.wscb{word-spacing:4.347000px;}
.wsc1{word-spacing:4.536000px;}
.wsdb{word-spacing:5.100000px;}
.wsa6{word-spacing:5.313000px;}
.wsbb{word-spacing:5.670000px;}
.wsda{word-spacing:5.760000px;}
.ws66{word-spacing:7.107000px;}
.ws78{word-spacing:7.728000px;}
.ws54{word-spacing:9.591000px;}
.ws3c{word-spacing:9.867000px;}
.wscf{word-spacing:9.891000px;}
.wsb9{word-spacing:10.395000px;}
.ws96{word-spacing:14.160000px;}
.wsba{word-spacing:14.175000px;}
.ws6e{word-spacing:14.520000px;}
.ws93{word-spacing:15.000000px;}
.ws7b{word-spacing:15.060000px;}
.wsd1{word-spacing:15.435000px;}
.ws6d{word-spacing:15.600000px;}
.ws7e{word-spacing:16.215000px;}
.ws91{word-spacing:17.460000px;}
.wsd9{word-spacing:22.491000px;}
.ws89{word-spacing:23.520000px;}
.ws87{word-spacing:25.920000px;}
.ws19{word-spacing:35.166600px;}
.ws6a{word-spacing:36.420000px;}
.ws62{word-spacing:39.540000px;}
.ws64{word-spacing:40.680000px;}
.ws90{word-spacing:42.573000px;}
.wsd0{word-spacing:42.777000px;}
.ws63{word-spacing:42.900000px;}
.ws61{word-spacing:43.200000px;}
.ws5e{word-spacing:44.880000px;}
.ws7c{word-spacing:55.200000px;}
.ws92{word-spacing:57.480000px;}
.ws6c{word-spacing:58.080000px;}
.ws88{word-spacing:66.000000px;}
.ws5f{word-spacing:86.460000px;}
.ws65{word-spacing:87.060000px;}
.ws86{word-spacing:186.240000px;}
.ws15{word-spacing:210.210000px;}
.ws85{word-spacing:373.380000px;}
.wsb0{word-spacing:374.160000px;}
.wsd5{word-spacing:374.340000px;}
.ws9f{word-spacing:374.580000px;}
.ws10{word-spacing:375.360000px;}
.ws2a{word-spacing:375.900000px;}
.ws95{word-spacing:376.020000px;}
.ws67{word-spacing:376.680000px;}
.ws79{word-spacing:376.860000px;}
.ws4d{word-spacing:377.340000px;}
.ws3d{word-spacing:377.760000px;}
.ws5d{word-spacing:400.080000px;}
.ws0{word-spacing:518.400000px;}
.ws60{word-spacing:761.220000px;}
._26{margin-left:-17.527800px;}
._27{margin-left:-12.918600px;}
._21{margin-left:-9.952800px;}
._b{margin-left:-8.731200px;}
._f{margin-left:-6.824400px;}
._6{margin-left:-5.457600px;}
._5{margin-left:-4.182000px;}
._4{margin-left:-2.496000px;}
._2{margin-left:-1.366800px;}
._3{width:1.038000px;}
._0{width:2.400000px;}
._c{width:3.444000px;}
._a{width:4.504800px;}
._7{width:5.724000px;}
._8{width:6.960000px;}
._9{width:8.502000px;}
._d{width:10.260000px;}
._10{width:11.724600px;}
._1e{width:14.385600px;}
._23{width:17.739000px;}
._22{width:18.750000px;}
._12{width:23.337300px;}
._28{width:24.696000px;}
._29{width:26.377800px;}
._24{width:27.541200px;}
._25{width:68.640000px;}
._1b{width:152.460000px;}
._1f{width:200.700000px;}
._1c{width:348.742800px;}
._19{width:518.409600px;}
._16{width:534.912000px;}
._20{width:597.586800px;}
._1d{width:619.906800px;}
._15{width:640.620000px;}
._18{width:714.060000px;}
._1a{width:747.526800px;}
._17{width:798.156000px;}
._14{width:831.322800px;}
._e{width:955.711200px;}
._13{width:958.831200px;}
._1{width:962.881200px;}
._11{width:964.861200px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y1e1{bottom:106.091700px;}
.y93{bottom:106.165350px;}
.y240{bottom:106.181850px;}
.yc5{bottom:106.207050px;}
.y210{bottom:106.245450px;}
.y262{bottom:106.260600px;}
.yb7{bottom:106.268550px;}
.y207{bottom:106.268850px;}
.y141{bottom:106.285650px;}
.ye4{bottom:106.291500px;}
.y42{bottom:106.295250px;}
.y92{bottom:106.295850px;}
.y1c{bottom:106.306800px;}
.y113{bottom:106.306950px;}
.y18e{bottom:106.366800px;}
.y280{bottom:106.388100px;}
.y6a{bottom:106.603650px;}
.y1b9{bottom:113.052150px;}
.y1b7{bottom:113.058750px;}
.y1b6{bottom:122.058750px;}
.y1b{bottom:126.421800px;}
.yc4{bottom:126.579300px;}
.y91{bottom:126.589350px;}
.y20f{bottom:126.617700px;}
.yb6{bottom:126.640800px;}
.y1e0{bottom:126.670950px;}
.y112{bottom:126.696450px;}
.y261{bottom:126.719850px;}
.y140{bottom:126.899400px;}
.y69{bottom:126.941400px;}
.y18d{bottom:127.032300px;}
.y27f{bottom:127.073100px;}
.ye3{bottom:127.215750px;}
.y206{bottom:127.227600px;}
.y23f{bottom:127.649100px;}
.y41{bottom:128.615250px;}
.y1b8{bottom:131.052150px;}
.y1a{bottom:146.536800px;}
.yc3{bottom:146.951550px;}
.y20e{bottom:146.989950px;}
.yb5{bottom:147.013050px;}
.y90{bottom:147.013350px;}
.y1df{bottom:147.250200px;}
.y68{bottom:147.279150px;}
.y13f{bottom:147.513150px;}
.y18c{bottom:147.697800px;}
.y27e{bottom:147.758100px;}
.y205{bottom:148.186350px;}
.y40{bottom:150.858750px;}
.y1b5{bottom:153.783750px;}
.y260{bottom:155.668350px;}
.y23e{bottom:157.621350px;}
.y19{bottom:166.651800px;}
.yc2{bottom:167.323800px;}
.y20d{bottom:167.362200px;}
.yb4{bottom:167.385300px;}
.y8f{bottom:167.437350px;}
.y67{bottom:167.616900px;}
.y1de{bottom:167.829450px;}
.y13e{bottom:168.126900px;}
.y18b{bottom:168.363300px;}
.y27d{bottom:168.443100px;}
.y204{bottom:169.145100px;}
.y3f{bottom:171.678750px;}
.y1b4{bottom:171.783750px;}
.y1b1{bottom:171.790200px;}
.y25f{bottom:176.111850px;}
.y23d{bottom:179.088600px;}
.y1b0{bottom:180.790200px;}
.y111{bottom:182.606400px;}
.y10f{bottom:182.612850px;}
.y18{bottom:186.766800px;}
.yc1{bottom:187.696050px;}
.y20c{bottom:187.734450px;}
.yb3{bottom:187.757550px;}
.y8e{bottom:187.861350px;}
.y66{bottom:187.954650px;}
.y1dd{bottom:188.408700px;}
.y13d{bottom:188.740650px;}
.y18a{bottom:189.028800px;}
.y27c{bottom:189.128100px;}
.y1b3{bottom:189.783750px;}
.y203{bottom:190.103850px;}
.ye2{bottom:191.190600px;}
.y10e{bottom:191.612850px;}
.y3e{bottom:192.498750px;}
.y23c{bottom:200.555850px;}
.y110{bottom:200.606400px;}
.y25e{bottom:205.060350px;}
.y1b2{bottom:207.783750px;}
.yc0{bottom:208.068300px;}
.y20b{bottom:208.106700px;}
.y8d{bottom:208.285350px;}
.y65{bottom:208.292400px;}
.y1dc{bottom:208.987950px;}
.y13c{bottom:209.354400px;}
.y189{bottom:209.694300px;}
.y27b{bottom:209.813100px;}
.y202{bottom:211.062600px;}
.y220{bottom:211.652850px;}
.y3d{bottom:213.318750px;}
.ye1{bottom:213.915600px;}
.y17{bottom:219.646800px;}
.y10b{bottom:223.344300px;}
.y25d{bottom:225.519600px;}
.ybf{bottom:228.440550px;}
.y20a{bottom:228.478950px;}
.y64{bottom:228.630150px;}
.y8c{bottom:228.709350px;}
.yb2{bottom:229.381950px;}
.y1db{bottom:229.567200px;}
.y13b{bottom:229.968150px;}
.y188{bottom:230.359800px;}
.y27a{bottom:230.498100px;}
.y1af{bottom:230.515200px;}
.y23b{bottom:230.528100px;}
.y21f{bottom:231.904350px;}
.y201{bottom:232.021350px;}
.y10d{bottom:232.337850px;}
.y3c{bottom:234.138750px;}
.ye0{bottom:236.640600px;}
.y109{bottom:241.344300px;}
.y25c{bottom:245.978850px;}
.y1ae{bottom:248.515200px;}
.y1ab{bottom:248.521650px;}
.ybe{bottom:248.812800px;}
.y209{bottom:248.851200px;}
.y63{bottom:248.967900px;}
.y8b{bottom:249.133350px;}
.y1da{bottom:250.146450px;}
.y10c{bottom:250.337850px;}
.y13a{bottom:250.581900px;}
.y187{bottom:251.025300px;}
.y279{bottom:251.183100px;}
.y23a{bottom:251.995350px;}
.y21e{bottom:252.155850px;}
.y200{bottom:252.980100px;}
.y3b{bottom:254.958750px;}
.y1aa{bottom:257.521650px;}
.y10a{bottom:259.344300px;}
.ydf{bottom:259.365600px;}
.y1ad{bottom:266.515200px;}
.ybd{bottom:269.185050px;}
.y62{bottom:269.305650px;}
.y8a{bottom:269.557350px;}
.y1d9{bottom:270.725700px;}
.y139{bottom:271.195650px;}
.y186{bottom:271.690800px;}
.y278{bottom:271.868100px;}
.y21d{bottom:272.407350px;}
.y239{bottom:273.462600px;}
.y1ff{bottom:273.938850px;}
.y25b{bottom:274.927350px;}
.y3a{bottom:275.778750px;}
.y16{bottom:278.042850px;}
.y108{bottom:282.069300px;}
.yde{bottom:282.090600px;}
.y29d{bottom:283.692750px;}
.y1ac{bottom:284.515200px;}
.ybc{bottom:289.557300px;}
.y61{bottom:289.643400px;}
.y89{bottom:289.981350px;}
.y208{bottom:290.475750px;}
.y105{bottom:291.075750px;}
.y1d8{bottom:291.304950px;}
.yb1{bottom:291.533850px;}
.y138{bottom:291.809400px;}
.y185{bottom:292.356300px;}
.y277{bottom:292.553100px;}
.y21c{bottom:292.658850px;}
.y1fe{bottom:294.897600px;}
.y15f{bottom:295.156350px;}
.y25a{bottom:295.386600px;}
.y39{bottom:296.598750px;}
.y107{bottom:300.069300px;}
.y104{bottom:300.075750px;}
.y238{bottom:303.434850px;}
.y29c{bottom:303.942750px;}
.ydd{bottom:304.815600px;}
.y15{bottom:305.657850px;}
.y1a9{bottom:307.246650px;}
.ybb{bottom:309.929550px;}
.y60{bottom:309.981150px;}
.y88{bottom:310.405350px;}
.y1d7{bottom:311.884200px;}
.yb0{bottom:311.906100px;}
.y21b{bottom:312.910350px;}
.y184{bottom:313.021800px;}
.y276{bottom:313.238100px;}
.y15e{bottom:315.407850px;}
.y1fd{bottom:315.856350px;}
.y38{bottom:317.418750px;}
.y106{bottom:318.069300px;}
.y29b{bottom:324.192750px;}
.y259{bottom:324.335100px;}
.y237{bottom:324.902100px;}
.ydc{bottom:327.540600px;}
.yba{bottom:330.301800px;}
.y5f{bottom:330.318900px;}
.y87{bottom:330.829350px;}
.yaf{bottom:332.278350px;}
.y1d6{bottom:332.463450px;}
.y21a{bottom:333.161850px;}
.y14{bottom:333.272850px;}
.y183{bottom:333.687300px;}
.y275{bottom:333.923100px;}
.y15d{bottom:335.659350px;}
.y1fc{bottom:336.815100px;}
.y37{bottom:338.238750px;}
.y103{bottom:340.800750px;}
.y101{bottom:340.807350px;}
.y29a{bottom:344.442750px;}
.y1a8{bottom:344.655600px;}
.y258{bottom:344.794350px;}
.y100{bottom:349.807350px;}
.ydb{bottom:350.265600px;}
.y5e{bottom:350.656650px;}
.yb9{bottom:350.674050px;}
.y86{bottom:351.253350px;}
.yae{bottom:352.650600px;}
.y1d5{bottom:353.042700px;}
.y219{bottom:353.413350px;}
.y182{bottom:354.352800px;}
.y274{bottom:354.608100px;}
.y236{bottom:354.874350px;}
.y137{bottom:355.434300px;}
.y15c{bottom:355.910850px;}
.y1fb{bottom:357.773850px;}
.y102{bottom:358.800750px;}
.y36{bottom:359.058750px;}
.y13{bottom:360.887850px;}
.y133{bottom:364.440750px;}
.y299{bottom:364.692750px;}
.y257{bottom:365.253600px;}
.y5d{bottom:370.994400px;}
.y85{bottom:371.677350px;}
.yad{bottom:373.022850px;}
.y136{bottom:373.434300px;}
.y1d4{bottom:373.621950px;}
.y218{bottom:373.664850px;}
.y181{bottom:375.018300px;}
.y273{bottom:375.293100px;}
.y15b{bottom:376.162350px;}
.y235{bottom:376.341600px;}
.y1fa{bottom:378.732600px;}
.y35{bottom:379.878750px;}
.yda{bottom:380.423100px;}
.yfd{bottom:381.538800px;}
.y131{bottom:382.440750px;}
.y1a7{bottom:385.632600px;}
.yff{bottom:390.532350px;}
.y5c{bottom:391.332150px;}
.y135{bottom:391.434300px;}
.y84{bottom:392.101350px;}
.yb8{bottom:392.298450px;}
.yac{bottom:393.395100px;}
.y217{bottom:393.916350px;}
.y1d3{bottom:394.201200px;}
.y256{bottom:394.202100px;}
.y180{bottom:395.683800px;}
.y272{bottom:395.978100px;}
.y15a{bottom:396.413850px;}
.y298{bottom:397.692750px;}
.y234{bottom:397.808850px;}
.yfb{bottom:399.538800px;}
.y1f9{bottom:399.691350px;}
.y132{bottom:400.440750px;}
.yd9{bottom:400.583100px;}
.y34{bottom:400.698750px;}
.y1a6{bottom:406.315350px;}
.yfe{bottom:408.532350px;}
.y134{bottom:409.434300px;}
.y12{bottom:409.707750px;}
.y5b{bottom:411.669900px;}
.y83{bottom:412.525350px;}
.yab{bottom:413.767350px;}
.y216{bottom:414.167850px;}
.y255{bottom:414.661350px;}
.y1d2{bottom:414.780450px;}
.y271{bottom:416.663100px;}
.y159{bottom:416.665350px;}
.yfc{bottom:417.538800px;}
.y297{bottom:417.942750px;}
.y1f8{bottom:420.650100px;}
.y33{bottom:421.518750px;}
.y1a5{bottom:426.998100px;}
.y233{bottom:427.781100px;}
.y5a{bottom:432.007650px;}
.y130{bottom:432.165750px;}
.y82{bottom:432.949350px;}
.yaa{bottom:434.139600px;}
.y215{bottom:434.419350px;}
.y254{bottom:435.120600px;}
.y1d1{bottom:435.359700px;}
.y158{bottom:436.916850px;}
.y270{bottom:437.348100px;}
.y296{bottom:438.192750px;}
.yf9{bottom:440.263800px;}
.y12c{bottom:441.172350px;}
.y1f7{bottom:441.608850px;}
.y11{bottom:441.837750px;}
.yd8{bottom:441.947850px;}
.y32{bottom:442.338750px;}
.y1a4{bottom:447.680850px;}
.y232{bottom:449.248350px;}
.yf8{bottom:449.263800px;}
.y12f{bottom:450.165750px;}
.y17f{bottom:451.866900px;}
.y59{bottom:452.345400px;}
.y81{bottom:453.373350px;}
.ya9{bottom:454.511850px;}
.y214{bottom:454.670850px;}
.y253{bottom:455.579850px;}
.y1d0{bottom:455.938950px;}
.y157{bottom:457.168350px;}
.yfa{bottom:458.263800px;}
.y295{bottom:458.442750px;}
.y12a{bottom:459.172350px;}
.y1f6{bottom:462.567600px;}
.yd7{bottom:462.872100px;}
.y31{bottom:463.158750px;}
.y12e{bottom:468.165750px;}
.y1a3{bottom:468.363600px;}
.y17e{bottom:469.866900px;}
.y17a{bottom:469.873350px;}
.y26f{bottom:470.798100px;}
.y58{bottom:472.683150px;}
.y80{bottom:473.797350px;}
.y10{bottom:473.967750px;}
.ya8{bottom:474.884100px;}
.y213{bottom:474.922350px;}
.y1cf{bottom:476.518200px;}
.y12b{bottom:477.172350px;}
.y156{bottom:477.419850px;}
.y294{bottom:478.692750px;}
.y231{bottom:479.220600px;}
.y1f5{bottom:483.526350px;}
.yd6{bottom:483.796350px;}
.y30{bottom:483.978750px;}
.y252{bottom:484.528350px;}
.y12d{bottom:486.165750px;}
.y17d{bottom:487.866900px;}
.y178{bottom:487.873350px;}
.y1a2{bottom:489.046350px;}
.y57{bottom:493.020900px;}
.y7f{bottom:494.221350px;}
.y212{bottom:495.173850px;}
.ya7{bottom:495.256350px;}
.yf7{bottom:495.392550px;}
.y1ce{bottom:497.097450px;}
.y155{bottom:497.671350px;}
.y230{bottom:500.687850px;}
.y1f4{bottom:504.485100px;}
.yd5{bottom:504.720600px;}
.y2f{bottom:504.798750px;}
.y251{bottom:504.971850px;}
.y17c{bottom:505.866900px;}
.y179{bottom:505.873350px;}
.yf{bottom:506.097750px;}
.y129{bottom:508.897350px;}
.y1a1{bottom:509.729100px;}
.y293{bottom:511.692750px;}
.y56{bottom:513.358650px;}
.y7e{bottom:514.645350px;}
.yf6{bottom:515.042550px;}
.ya6{bottom:515.628600px;}
.y1cd{bottom:517.676700px;}
.y126{bottom:517.903800px;}
.y154{bottom:517.922850px;}
.y22f{bottom:522.155100px;}
.y17b{bottom:523.866900px;}
.y250{bottom:525.431100px;}
.y1f3{bottom:525.443850px;}
.y2e{bottom:525.618750px;}
.yd4{bottom:525.644850px;}
.y128{bottom:526.897350px;}
.y125{bottom:526.903800px;}
.y26e{bottom:529.782900px;}
.y1a0{bottom:530.411850px;}
.y55{bottom:533.696400px;}
.y7d{bottom:535.069350px;}
.ya5{bottom:536.000850px;}
.y211{bottom:536.683650px;}
.y153{bottom:538.174350px;}
.ye{bottom:538.227750px;}
.y1cc{bottom:538.255950px;}
.y127{bottom:544.897350px;}
.y1f2{bottom:546.402600px;}
.yd3{bottom:546.569100px;}
.y177{bottom:546.598350px;}
.y19f{bottom:551.094600px;}
.y22e{bottom:552.127350px;}
.y292{bottom:553.197750px;}
.y54{bottom:554.034150px;}
.y24f{bottom:554.379600px;}
.y7c{bottom:555.493350px;}
.yf5{bottom:556.079850px;}
.ya4{bottom:556.373100px;}
.y26d{bottom:557.964900px;}
.y152{bottom:558.425850px;}
.y1cb{bottom:558.835200px;}
.y2d{bottom:559.188750px;}
.y176{bottom:564.598350px;}
.y1f1{bottom:567.361350px;}
.yd2{bottom:567.493350px;}
.y124{bottom:567.628800px;}
.y122{bottom:567.635250px;}
.yd{bottom:570.357750px;}
.y19e{bottom:571.777350px;}
.y291{bottom:572.697750px;}
.y22d{bottom:573.594600px;}
.y53{bottom:574.371900px;}
.y24e{bottom:574.838850px;}
.y7b{bottom:575.917350px;}
.yf4{bottom:576.469350px;}
.y121{bottom:576.635250px;}
.ya3{bottom:576.745350px;}
.y151{bottom:578.677350px;}
.y1ca{bottom:579.414450px;}
.y175{bottom:582.598350px;}
.y171{bottom:582.604950px;}
.y123{bottom:585.628800px;}
.y26c{bottom:586.146900px;}
.y1f0{bottom:588.320100px;}
.yd1{bottom:588.417600px;}
.y170{bottom:591.604950px;}
.y290{bottom:592.197750px;}
.y19d{bottom:592.460100px;}
.y52{bottom:594.709650px;}
.y7a{bottom:596.341350px;}
.yf3{bottom:596.858850px;}
.ya2{bottom:597.117600px;}
.y150{bottom:598.928850px;}
.y1c9{bottom:599.993700px;}
.y174{bottom:600.598350px;}
.y22c{bottom:603.566850px;}
.y24d{bottom:603.787350px;}
.y120{bottom:608.360250px;}
.y1ef{bottom:609.278850px;}
.yd0{bottom:609.341850px;}
.y2c{bottom:609.768750px;}
.y28f{bottom:611.697750px;}
.y19c{bottom:613.142850px;}
.y26b{bottom:614.328900px;}
.y51{bottom:615.047400px;}
.y79{bottom:616.765350px;}
.yf2{bottom:617.248350px;}
.y11f{bottom:617.360250px;}
.ya1{bottom:617.489850px;}
.y173{bottom:618.598350px;}
.y14f{bottom:619.180350px;}
.y1c8{bottom:620.572950px;}
.y24c{bottom:624.246600px;}
.y22b{bottom:625.034100px;}
.y1ee{bottom:630.237600px;}
.y28e{bottom:631.197750px;}
.y2b{bottom:632.088750px;}
.yc{bottom:632.251200px;}
.y19b{bottom:633.825600px;}
.y50{bottom:635.385150px;}
.y172{bottom:636.598350px;}
.y78{bottom:637.189350px;}
.yf1{bottom:637.637850px;}
.ya0{bottom:637.862100px;}
.y14e{bottom:639.431850px;}
.y1c7{bottom:641.152200px;}
.y24b{bottom:644.705850px;}
.y22a{bottom:646.501350px;}
.y28d{bottom:650.697750px;}
.y1ed{bottom:651.196350px;}
.ycf{bottom:651.518250px;}
.y2a{bottom:654.357750px;}
.y19a{bottom:654.508350px;}
.y4f{bottom:655.722900px;}
.y11e{bottom:656.209200px;}
.y77{bottom:657.613350px;}
.yf0{bottom:658.027350px;}
.y9f{bottom:658.234350px;}
.y16f{bottom:659.329950px;}
.y14d{bottom:659.683350px;}
.y1c6{bottom:661.731450px;}
.yb{bottom:662.371200px;}
.y28c{bottom:670.197750px;}
.y1ec{bottom:672.155100px;}
.y24a{bottom:673.654350px;}
.y29{bottom:675.177750px;}
.y199{bottom:675.191100px;}
.y4e{bottom:676.060650px;}
.y11d{bottom:676.069200px;}
.y229{bottom:676.473600px;}
.y16e{bottom:677.329950px;}
.y76{bottom:678.037350px;}
.yef{bottom:678.416850px;}
.y9e{bottom:678.606600px;}
.y14c{bottom:679.934850px;}
.y1c5{bottom:682.310700px;}
.ya{bottom:683.986200px;}
.y16a{bottom:686.336400px;}
.y28b{bottom:689.697750px;}
.y1eb{bottom:693.113850px;}
.y249{bottom:694.113600px;}
.y16d{bottom:695.329950px;}
.y169{bottom:695.336400px;}
.y198{bottom:695.873850px;}
.y28{bottom:695.997750px;}
.y4d{bottom:696.398400px;}
.y228{bottom:697.940850px;}
.y75{bottom:698.461350px;}
.yee{bottom:698.806350px;}
.y9d{bottom:698.978850px;}
.y14b{bottom:700.186350px;}
.y1c4{bottom:702.889950px;}
.y26a{bottom:706.697850px;}
.y28a{bottom:709.197750px;}
.y16c{bottom:713.329950px;}
.y1ea{bottom:714.072600px;}
.y9{bottom:714.106200px;}
.yce{bottom:714.383100px;}
.y248{bottom:714.572850px;}
.y197{bottom:716.556600px;}
.y4c{bottom:716.736150px;}
.y27{bottom:716.817750px;}
.y11c{bottom:717.177600px;}
.y74{bottom:718.885350px;}
.yed{bottom:719.195850px;}
.y9c{bottom:719.351100px;}
.y14a{bottom:720.437850px;}
.y1c3{bottom:723.469200px;}
.y227{bottom:727.913100px;}
.y269{bottom:728.133600px;}
.y289{bottom:728.697750px;}
.y16b{bottom:731.329950px;}
.y1e9{bottom:735.031350px;}
.ycd{bottom:735.307350px;}
.y8{bottom:735.721200px;}
.y4b{bottom:737.073900px;}
.y196{bottom:737.239350px;}
.y26{bottom:737.637750px;}
.y11b{bottom:737.791350px;}
.y73{bottom:739.309350px;}
.yec{bottom:739.585350px;}
.y9b{bottom:739.723350px;}
.y149{bottom:740.689350px;}
.y247{bottom:743.521350px;}
.y1c2{bottom:744.048450px;}
.y288{bottom:748.197750px;}
.y226{bottom:749.380350px;}
.y268{bottom:749.569350px;}
.y168{bottom:754.061400px;}
.y1e8{bottom:755.990100px;}
.ycc{bottom:756.231600px;}
.y7{bottom:757.339500px;}
.y4a{bottom:757.411650px;}
.y195{bottom:757.922100px;}
.y11a{bottom:758.405100px;}
.y25{bottom:758.457750px;}
.y72{bottom:759.733350px;}
.yeb{bottom:759.974850px;}
.y9a{bottom:760.095600px;}
.y148{bottom:760.940850px;}
.y246{bottom:763.980600px;}
.y1c1{bottom:764.627700px;}
.y287{bottom:767.697750px;}
.y167{bottom:772.061400px;}
.y1e7{bottom:776.948850px;}
.ycb{bottom:777.155850px;}
.y49{bottom:777.749400px;}
.y194{bottom:778.604850px;}
.y119{bottom:779.018850px;}
.y24{bottom:779.277750px;}
.y225{bottom:779.352600px;}
.y267{bottom:779.510100px;}
.y71{bottom:780.157350px;}
.yea{bottom:780.364350px;}
.y99{bottom:780.467850px;}
.y163{bottom:781.067850px;}
.y147{bottom:781.192350px;}
.y245{bottom:784.439850px;}
.y286{bottom:787.197750px;}
.y166{bottom:790.061400px;}
.y162{bottom:790.067850px;}
.y1e6{bottom:797.907600px;}
.yca{bottom:798.080100px;}
.y48{bottom:798.087150px;}
.y193{bottom:799.287600px;}
.y118{bottom:799.632600px;}
.y23{bottom:800.097750px;}
.y70{bottom:800.581350px;}
.ye9{bottom:800.753850px;}
.y224{bottom:800.819850px;}
.y98{bottom:800.840100px;}
.y146{bottom:801.443850px;}
.y285{bottom:806.697750px;}
.y165{bottom:808.061400px;}
.y6{bottom:808.730550px;}
.y266{bottom:809.450850px;}
.y244{bottom:813.388350px;}
.y47{bottom:818.424900px;}
.y1e5{bottom:818.866350px;}
.yc9{bottom:819.004350px;}
.y192{bottom:819.970350px;}
.y117{bottom:820.246350px;}
.y1c0{bottom:820.713300px;}
.y22{bottom:820.917750px;}
.y6f{bottom:821.005350px;}
.ye8{bottom:821.143350px;}
.y97{bottom:821.212350px;}
.y145{bottom:821.695350px;}
.y164{bottom:826.061400px;}
.y284{bottom:826.197750px;}
.y5{bottom:830.345550px;}
.y223{bottom:830.792100px;}
.y265{bottom:830.886600px;}
.y243{bottom:833.831850px;}
.y1bf{bottom:838.713300px;}
.y1bc{bottom:838.719750px;}
.y46{bottom:838.762650px;}
.y1e4{bottom:839.825100px;}
.yc8{bottom:839.928600px;}
.y191{bottom:840.653100px;}
.y116{bottom:840.860100px;}
.y6e{bottom:841.429350px;}
.ye7{bottom:841.532850px;}
.y96{bottom:841.584600px;}
.y21{bottom:841.737750px;}
.y144{bottom:841.946850px;}
.y283{bottom:845.697750px;}
.y1bb{bottom:847.719750px;}
.y161{bottom:848.792850px;}
.y222{bottom:852.259350px;}
.y242{bottom:854.291100px;}
.y1be{bottom:856.713300px;}
.y160{bottom:857.792850px;}
.y45{bottom:859.100400px;}
.y4{bottom:860.465550px;}
.y1e3{bottom:860.783850px;}
.y264{bottom:860.827350px;}
.yc7{bottom:860.852850px;}
.y190{bottom:861.335850px;}
.y115{bottom:861.473850px;}
.y6d{bottom:861.853350px;}
.ye6{bottom:861.922350px;}
.y95{bottom:861.956850px;}
.y143{bottom:862.198350px;}
.y20{bottom:862.557750px;}
.y282{bottom:865.197750px;}
.y221{bottom:873.726600px;}
.y1bd{bottom:874.713300px;}
.y1e2{bottom:881.742600px;}
.yc6{bottom:881.777100px;}
.y18f{bottom:882.018600px;}
.y3{bottom:882.080550px;}
.y114{bottom:882.087600px;}
.y263{bottom:882.263100px;}
.y6c{bottom:882.277350px;}
.ye5{bottom:882.311850px;}
.y94{bottom:882.329100px;}
.y142{bottom:882.449850px;}
.y241{bottom:883.239600px;}
.y1f{bottom:883.377750px;}
.y281{bottom:884.697750px;}
.y1ba{bottom:897.444750px;}
.y44{bottom:900.706200px;}
.y6b{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1e{bottom:904.197750px;}
.y1d{bottom:948.189000px;}
.y43{bottom:966.189000px;}
.he{height:39.990234px;}
.h7{height:40.757812px;}
.h9{height:41.396484px;}
.hd{height:42.685547px;}
.h11{height:47.050781px;}
.h4{height:50.947266px;}
.h2{height:51.745605px;}
.h3{height:53.494629px;}
.hb{height:58.589355px;}
.hc{height:59.111355px;}
.h8{height:63.684082px;}
.ha{height:68.778809px;}
.h6{height:71.326172px;}
.hf{height:78.685547px;}
.h10{height:86.947266px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:83.686650px;}
.x1{left:85.039350px;}
.xc{left:94.021650px;}
.x15{left:96.147600px;}
.xf{left:99.026550px;}
.xa{left:101.221950px;}
.x8{left:104.216550px;}
.x5{left:105.990600px;}
.xb{left:107.011950px;}
.x10{left:129.056550px;}
.xd{left:130.246650px;}
.x17{left:134.682600px;}
.x16{left:178.797600px;}
.x9{left:191.074050px;}
.x7{left:212.663850px;}
.x4{left:228.653400px;}
.x2{left:232.076250px;}
.x3{left:233.451900px;}
.x1c{left:234.575250px;}
.x1a{left:376.796400px;}
.x1b{left:378.431400px;}
.x12{left:391.614150px;}
.xe{left:393.266550px;}
.x11{left:394.338150px;}
.x14{left:401.535300px;}
.x13{left:403.641600px;}
.x18{left:406.702050px;}
.x19{left:408.007050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.554667pt;}
.v2{vertical-align:32.000000pt;}
.ls17{letter-spacing:-2.269333pt;}
.ls5{letter-spacing:-1.824000pt;}
.ls11{letter-spacing:-1.152000pt;}
.lsf{letter-spacing:-1.080000pt;}
.ls6{letter-spacing:-0.970667pt;}
.ls19{letter-spacing:-0.864000pt;}
.lse{letter-spacing:-0.760000pt;}
.ls12{letter-spacing:-0.557333pt;}
.ls18{letter-spacing:-0.506667pt;}
.ls3{letter-spacing:-0.266667pt;}
.ls4{letter-spacing:-0.213333pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.152000pt;}
.ls13{letter-spacing:-0.061333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:2.133333pt;}
.ls8{letter-spacing:3.200000pt;}
.ls9{letter-spacing:3.733333pt;}
.lsc{letter-spacing:5.120000pt;}
.ls7{letter-spacing:5.226667pt;}
.ls1{letter-spacing:5.333333pt;}
.ls1a{letter-spacing:5.600000pt;}
.ls10{letter-spacing:6.066667pt;}
.ls1b{letter-spacing:6.104000pt;}
.ls16{letter-spacing:6.466667pt;}
.lsb{letter-spacing:7.066667pt;}
.ls2{letter-spacing:7.466667pt;}
.ls15{letter-spacing:7.600000pt;}
.ws7{word-spacing:-96.000000pt;}
.ws8{word-spacing:-94.176000pt;}
.ws9{word-spacing:-74.666667pt;}
.ws84{word-spacing:-74.266667pt;}
.wsa{word-spacing:-73.696000pt;}
.ws94{word-spacing:-73.133333pt;}
.ws29{word-spacing:-72.733333pt;}
.ws59{word-spacing:-72.000000pt;}
.wsa2{word-spacing:-71.136000pt;}
.ws1e{word-spacing:-70.920000pt;}
.ws43{word-spacing:-70.848000pt;}
.wsb1{word-spacing:-62.104000pt;}
.wsb4{word-spacing:-61.600000pt;}
.ws1f{word-spacing:-61.333333pt;}
.ws50{word-spacing:-61.272000pt;}
.ws3{word-spacing:-60.800000pt;}
.ws2{word-spacing:-58.666667pt;}
.wsb{word-spacing:-58.560000pt;}
.ws16{word-spacing:-58.453333pt;}
.ws1{word-spacing:-56.000000pt;}
.ws4{word-spacing:-53.333333pt;}
.ws6{word-spacing:-53.120000pt;}
.ws5{word-spacing:-53.066667pt;}
.wsca{word-spacing:-52.080000pt;}
.wsc3{word-spacing:-51.805600pt;}
.wsc8{word-spacing:-51.520000pt;}
.ws46{word-spacing:-51.372800pt;}
.ws3b{word-spacing:-51.360533pt;}
.ws24{word-spacing:-51.336000pt;}
.ws3a{word-spacing:-51.305333pt;}
.ws75{word-spacing:-51.274667pt;}
.ws8b{word-spacing:-51.152000pt;}
.wsb2{word-spacing:-51.072000pt;}
.ws71{word-spacing:-51.029333pt;}
.wsa0{word-spacing:-51.010933pt;}
.wsac{word-spacing:-50.968000pt;}
.ws2e{word-spacing:-50.777867pt;}
.ws97{word-spacing:-50.722667pt;}
.ws38{word-spacing:-50.692000pt;}
.ws99{word-spacing:-50.667467pt;}
.wsaa{word-spacing:-50.600000pt;}
.ws51{word-spacing:-50.538667pt;}
.ws30{word-spacing:-50.477333pt;}
.ws73{word-spacing:-50.416000pt;}
.ws2f{word-spacing:-50.354667pt;}
.ws48{word-spacing:-50.232000pt;}
.ws42{word-spacing:-50.158400pt;}
.ws4e{word-spacing:-50.140000pt;}
.ws5a{word-spacing:-50.109333pt;}
.ws32{word-spacing:-50.048000pt;}
.wsa4{word-spacing:-49.986667pt;}
.wsa8{word-spacing:-49.925333pt;}
.ws70{word-spacing:-49.864000pt;}
.ws7d{word-spacing:-49.802667pt;}
.ws2c{word-spacing:-49.618667pt;}
.ws33{word-spacing:-49.373333pt;}
.ws81{word-spacing:-49.312000pt;}
.ws40{word-spacing:-49.189333pt;}
.ws9e{word-spacing:-49.128000pt;}
.ws3f{word-spacing:-49.066667pt;}
.ws52{word-spacing:-48.888800pt;}
.ws25{word-spacing:-48.882667pt;}
.ws37{word-spacing:-48.821333pt;}
.ws76{word-spacing:-48.760000pt;}
.ws21{word-spacing:-48.698667pt;}
.ws34{word-spacing:-48.637333pt;}
.wsa9{word-spacing:-48.514667pt;}
.ws72{word-spacing:-48.392000pt;}
.ws2d{word-spacing:-48.146667pt;}
.ws53{word-spacing:-48.085333pt;}
.ws4b{word-spacing:-47.594667pt;}
.wsa5{word-spacing:-47.343200pt;}
.ws39{word-spacing:-47.226667pt;}
.wsc9{word-spacing:-46.872000pt;}
.ws4a{word-spacing:-46.797333pt;}
.ws22{word-spacing:-46.778933pt;}
.ws8e{word-spacing:-46.748267pt;}
.ws8f{word-spacing:-46.736000pt;}
.ws8d{word-spacing:-46.674667pt;}
.ws3e{word-spacing:-46.668533pt;}
.wsd7{word-spacing:-46.536000pt;}
.ws44{word-spacing:-46.306667pt;}
.ws82{word-spacing:-46.245333pt;}
.ws8a{word-spacing:-46.184000pt;}
.ws23{word-spacing:-46.061333pt;}
.wsc4{word-spacing:-45.992800pt;}
.ws11{word-spacing:-45.866667pt;}
.wsaf{word-spacing:-45.570667pt;}
.ws57{word-spacing:-45.233333pt;}
.ws35{word-spacing:-45.080000pt;}
.ws7a{word-spacing:-44.896000pt;}
.wse{word-spacing:-44.800000pt;}
.wsa3{word-spacing:-44.589333pt;}
.wsd6{word-spacing:-44.408000pt;}
.ws13{word-spacing:-44.053333pt;}
.ws18{word-spacing:-43.989333pt;}
.ws12{word-spacing:-43.946667pt;}
.ws45{word-spacing:-43.853333pt;}
.ws14{word-spacing:-43.786667pt;}
.ws36{word-spacing:-43.761333pt;}
.ws17{word-spacing:-43.754667pt;}
.ws2b{word-spacing:-43.424000pt;}
.ws4f{word-spacing:-43.362667pt;}
.ws74{word-spacing:-42.669600pt;}
.ws5b{word-spacing:-42.583733pt;}
.ws41{word-spacing:-42.381333pt;}
.wsb7{word-spacing:-42.280000pt;}
.wsb3{word-spacing:-41.664000pt;}
.wsd8{word-spacing:-41.496000pt;}
.wsa7{word-spacing:-41.240533pt;}
.ws5c{word-spacing:-41.066667pt;}
.wsc{word-spacing:-39.946667pt;}
.ws68{word-spacing:-39.866667pt;}
.ws49{word-spacing:-39.688800pt;}
.wsad{word-spacing:-39.216533pt;}
.ws80{word-spacing:-39.130667pt;}
.wsae{word-spacing:-37.523733pt;}
.ws31{word-spacing:-35.757333pt;}
.wsb6{word-spacing:-33.992000pt;}
.ws9d{word-spacing:-33.714933pt;}
.wsab{word-spacing:-29.428000pt;}
.ws1a{word-spacing:-29.370667pt;}
.ws58{word-spacing:-29.098933pt;}
.ws1d{word-spacing:-28.687200pt;}
.ws47{word-spacing:-28.645600pt;}
.wsa1{word-spacing:-27.574133pt;}
.wsb8{word-spacing:-26.208000pt;}
.wsf{word-spacing:-25.800000pt;}
.ws20{word-spacing:-15.149333pt;}
.ws56{word-spacing:-15.088000pt;}
.ws6b{word-spacing:-14.400000pt;}
.wsb5{word-spacing:-13.832000pt;}
.wsdc{word-spacing:-13.173333pt;}
.ws98{word-spacing:-12.880000pt;}
.wsc7{word-spacing:-12.656000pt;}
.wsc6{word-spacing:-12.633600pt;}
.wscd{word-spacing:-5.768000pt;}
.ws83{word-spacing:-3.618667pt;}
.ws8c{word-spacing:-3.496000pt;}
.ws55{word-spacing:-3.128000pt;}
.ws9b{word-spacing:-3.005333pt;}
.ws6f{word-spacing:-2.330667pt;}
.ws69{word-spacing:-2.261333pt;}
.ws9a{word-spacing:-1.901333pt;}
.ws28{word-spacing:-1.840000pt;}
.ws1b{word-spacing:-1.813333pt;}
.wsd2{word-spacing:-1.792000pt;}
.wsc0{word-spacing:-1.568000pt;}
.wsc5{word-spacing:-1.433600pt;}
.wsbd{word-spacing:-1.176000pt;}
.ws1c{word-spacing:-0.906667pt;}
.ws9c{word-spacing:-0.858667pt;}
.ws4c{word-spacing:-0.552000pt;}
.ws27{word-spacing:-0.266667pt;}
.wsd3{word-spacing:-0.112000pt;}
.wsd{word-spacing:0.000000pt;}
.ws26{word-spacing:0.160000pt;}
.wsbf{word-spacing:0.224000pt;}
.wsbe{word-spacing:1.120000pt;}
.ws77{word-spacing:1.165333pt;}
.wsd4{word-spacing:1.736000pt;}
.wsce{word-spacing:2.408000pt;}
.wsbc{word-spacing:2.968000pt;}
.wsde{word-spacing:3.093333pt;}
.wsdd{word-spacing:3.146667pt;}
.wscc{word-spacing:3.248000pt;}
.ws7f{word-spacing:3.618667pt;}
.wsc2{word-spacing:3.808000pt;}
.wscb{word-spacing:3.864000pt;}
.wsc1{word-spacing:4.032000pt;}
.wsdb{word-spacing:4.533333pt;}
.wsa6{word-spacing:4.722667pt;}
.wsbb{word-spacing:5.040000pt;}
.wsda{word-spacing:5.120000pt;}
.ws66{word-spacing:6.317333pt;}
.ws78{word-spacing:6.869333pt;}
.ws54{word-spacing:8.525333pt;}
.ws3c{word-spacing:8.770667pt;}
.wscf{word-spacing:8.792000pt;}
.wsb9{word-spacing:9.240000pt;}
.ws96{word-spacing:12.586667pt;}
.wsba{word-spacing:12.600000pt;}
.ws6e{word-spacing:12.906667pt;}
.ws93{word-spacing:13.333333pt;}
.ws7b{word-spacing:13.386667pt;}
.wsd1{word-spacing:13.720000pt;}
.ws6d{word-spacing:13.866667pt;}
.ws7e{word-spacing:14.413333pt;}
.ws91{word-spacing:15.520000pt;}
.wsd9{word-spacing:19.992000pt;}
.ws89{word-spacing:20.906667pt;}
.ws87{word-spacing:23.040000pt;}
.ws19{word-spacing:31.259200pt;}
.ws6a{word-spacing:32.373333pt;}
.ws62{word-spacing:35.146667pt;}
.ws64{word-spacing:36.160000pt;}
.ws90{word-spacing:37.842667pt;}
.wsd0{word-spacing:38.024000pt;}
.ws63{word-spacing:38.133333pt;}
.ws61{word-spacing:38.400000pt;}
.ws5e{word-spacing:39.893333pt;}
.ws7c{word-spacing:49.066667pt;}
.ws92{word-spacing:51.093333pt;}
.ws6c{word-spacing:51.626667pt;}
.ws88{word-spacing:58.666667pt;}
.ws5f{word-spacing:76.853333pt;}
.ws65{word-spacing:77.386667pt;}
.ws86{word-spacing:165.546667pt;}
.ws15{word-spacing:186.853333pt;}
.ws85{word-spacing:331.893333pt;}
.wsb0{word-spacing:332.586667pt;}
.wsd5{word-spacing:332.746667pt;}
.ws9f{word-spacing:332.960000pt;}
.ws10{word-spacing:333.653333pt;}
.ws2a{word-spacing:334.133333pt;}
.ws95{word-spacing:334.240000pt;}
.ws67{word-spacing:334.826667pt;}
.ws79{word-spacing:334.986667pt;}
.ws4d{word-spacing:335.413333pt;}
.ws3d{word-spacing:335.786667pt;}
.ws5d{word-spacing:355.626667pt;}
.ws0{word-spacing:460.800000pt;}
.ws60{word-spacing:676.640000pt;}
._26{margin-left:-15.580267pt;}
._27{margin-left:-11.483200pt;}
._21{margin-left:-8.846933pt;}
._b{margin-left:-7.761067pt;}
._f{margin-left:-6.066133pt;}
._6{margin-left:-4.851200pt;}
._5{margin-left:-3.717333pt;}
._4{margin-left:-2.218667pt;}
._2{margin-left:-1.214933pt;}
._3{width:0.922667pt;}
._0{width:2.133333pt;}
._c{width:3.061333pt;}
._a{width:4.004267pt;}
._7{width:5.088000pt;}
._8{width:6.186667pt;}
._9{width:7.557333pt;}
._d{width:9.120000pt;}
._10{width:10.421867pt;}
._1e{width:12.787200pt;}
._23{width:15.768000pt;}
._22{width:16.666667pt;}
._12{width:20.744267pt;}
._28{width:21.952000pt;}
._29{width:23.446933pt;}
._24{width:24.481067pt;}
._25{width:61.013333pt;}
._1b{width:135.520000pt;}
._1f{width:178.400000pt;}
._1c{width:309.993600pt;}
._19{width:460.808533pt;}
._16{width:475.477333pt;}
._20{width:531.188267pt;}
._1d{width:551.028267pt;}
._15{width:569.440000pt;}
._18{width:634.720000pt;}
._1a{width:664.468267pt;}
._17{width:709.472000pt;}
._14{width:738.953600pt;}
._e{width:849.521067pt;}
._13{width:852.294400pt;}
._1{width:855.894400pt;}
._11{width:857.654400pt;}
.fsa{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y1e1{bottom:94.303733pt;}
.y93{bottom:94.369200pt;}
.y240{bottom:94.383867pt;}
.yc5{bottom:94.406267pt;}
.y210{bottom:94.440400pt;}
.y262{bottom:94.453867pt;}
.yb7{bottom:94.460933pt;}
.y207{bottom:94.461200pt;}
.y141{bottom:94.476133pt;}
.ye4{bottom:94.481333pt;}
.y42{bottom:94.484667pt;}
.y92{bottom:94.485200pt;}
.y1c{bottom:94.494933pt;}
.y113{bottom:94.495067pt;}
.y18e{bottom:94.548267pt;}
.y280{bottom:94.567200pt;}
.y6a{bottom:94.758800pt;}
.y1b9{bottom:100.490800pt;}
.y1b7{bottom:100.496667pt;}
.y1b6{bottom:108.496667pt;}
.y1b{bottom:112.374933pt;}
.yc4{bottom:112.514933pt;}
.y91{bottom:112.523867pt;}
.y20f{bottom:112.549067pt;}
.yb6{bottom:112.569600pt;}
.y1e0{bottom:112.596400pt;}
.y112{bottom:112.619067pt;}
.y261{bottom:112.639867pt;}
.y140{bottom:112.799467pt;}
.y69{bottom:112.836800pt;}
.y18d{bottom:112.917600pt;}
.y27f{bottom:112.953867pt;}
.ye3{bottom:113.080667pt;}
.y206{bottom:113.091200pt;}
.y23f{bottom:113.465867pt;}
.y41{bottom:114.324667pt;}
.y1b8{bottom:116.490800pt;}
.y1a{bottom:130.254933pt;}
.yc3{bottom:130.623600pt;}
.y20e{bottom:130.657733pt;}
.yb5{bottom:130.678267pt;}
.y90{bottom:130.678533pt;}
.y1df{bottom:130.889067pt;}
.y68{bottom:130.914800pt;}
.y13f{bottom:131.122800pt;}
.y18c{bottom:131.286933pt;}
.y27e{bottom:131.340533pt;}
.y205{bottom:131.721200pt;}
.y40{bottom:134.096667pt;}
.y1b5{bottom:136.696667pt;}
.y260{bottom:138.371867pt;}
.y23e{bottom:140.107867pt;}
.y19{bottom:148.134933pt;}
.yc2{bottom:148.732267pt;}
.y20d{bottom:148.766400pt;}
.yb4{bottom:148.786933pt;}
.y8f{bottom:148.833200pt;}
.y67{bottom:148.992800pt;}
.y1de{bottom:149.181733pt;}
.y13e{bottom:149.446133pt;}
.y18b{bottom:149.656267pt;}
.y27d{bottom:149.727200pt;}
.y204{bottom:150.351200pt;}
.y3f{bottom:152.603333pt;}
.y1b4{bottom:152.696667pt;}
.y1b1{bottom:152.702400pt;}
.y25f{bottom:156.543867pt;}
.y23d{bottom:159.189867pt;}
.y1b0{bottom:160.702400pt;}
.y111{bottom:162.316800pt;}
.y10f{bottom:162.322533pt;}
.y18{bottom:166.014933pt;}
.yc1{bottom:166.840933pt;}
.y20c{bottom:166.875067pt;}
.yb3{bottom:166.895600pt;}
.y8e{bottom:166.987867pt;}
.y66{bottom:167.070800pt;}
.y1dd{bottom:167.474400pt;}
.y13d{bottom:167.769467pt;}
.y18a{bottom:168.025600pt;}
.y27c{bottom:168.113867pt;}
.y1b3{bottom:168.696667pt;}
.y203{bottom:168.981200pt;}
.ye2{bottom:169.947200pt;}
.y10e{bottom:170.322533pt;}
.y3e{bottom:171.110000pt;}
.y23c{bottom:178.271867pt;}
.y110{bottom:178.316800pt;}
.y25e{bottom:182.275867pt;}
.y1b2{bottom:184.696667pt;}
.yc0{bottom:184.949600pt;}
.y20b{bottom:184.983733pt;}
.y8d{bottom:185.142533pt;}
.y65{bottom:185.148800pt;}
.y1dc{bottom:185.767067pt;}
.y13c{bottom:186.092800pt;}
.y189{bottom:186.394933pt;}
.y27b{bottom:186.500533pt;}
.y202{bottom:187.611200pt;}
.y220{bottom:188.135867pt;}
.y3d{bottom:189.616667pt;}
.ye1{bottom:190.147200pt;}
.y17{bottom:195.241600pt;}
.y10b{bottom:198.528267pt;}
.y25d{bottom:200.461867pt;}
.ybf{bottom:203.058267pt;}
.y20a{bottom:203.092400pt;}
.y64{bottom:203.226800pt;}
.y8c{bottom:203.297200pt;}
.yb2{bottom:203.895067pt;}
.y1db{bottom:204.059733pt;}
.y13b{bottom:204.416133pt;}
.y188{bottom:204.764267pt;}
.y27a{bottom:204.887200pt;}
.y1af{bottom:204.902400pt;}
.y23b{bottom:204.913867pt;}
.y21f{bottom:206.137200pt;}
.y201{bottom:206.241200pt;}
.y10d{bottom:206.522533pt;}
.y3c{bottom:208.123333pt;}
.ye0{bottom:210.347200pt;}
.y109{bottom:214.528267pt;}
.y25c{bottom:218.647867pt;}
.y1ae{bottom:220.902400pt;}
.y1ab{bottom:220.908133pt;}
.ybe{bottom:221.166933pt;}
.y209{bottom:221.201067pt;}
.y63{bottom:221.304800pt;}
.y8b{bottom:221.451867pt;}
.y1da{bottom:222.352400pt;}
.y10c{bottom:222.522533pt;}
.y13a{bottom:222.739467pt;}
.y187{bottom:223.133600pt;}
.y279{bottom:223.273867pt;}
.y23a{bottom:223.995867pt;}
.y21e{bottom:224.138533pt;}
.y200{bottom:224.871200pt;}
.y3b{bottom:226.630000pt;}
.y1aa{bottom:228.908133pt;}
.y10a{bottom:230.528267pt;}
.ydf{bottom:230.547200pt;}
.y1ad{bottom:236.902400pt;}
.ybd{bottom:239.275600pt;}
.y62{bottom:239.382800pt;}
.y8a{bottom:239.606533pt;}
.y1d9{bottom:240.645067pt;}
.y139{bottom:241.062800pt;}
.y186{bottom:241.502933pt;}
.y278{bottom:241.660533pt;}
.y21d{bottom:242.139867pt;}
.y239{bottom:243.077867pt;}
.y1ff{bottom:243.501200pt;}
.y25b{bottom:244.379867pt;}
.y3a{bottom:245.136667pt;}
.y16{bottom:247.149200pt;}
.y108{bottom:250.728267pt;}
.yde{bottom:250.747200pt;}
.y29d{bottom:252.171333pt;}
.y1ac{bottom:252.902400pt;}
.ybc{bottom:257.384267pt;}
.y61{bottom:257.460800pt;}
.y89{bottom:257.761200pt;}
.y208{bottom:258.200667pt;}
.y105{bottom:258.734000pt;}
.y1d8{bottom:258.937733pt;}
.yb1{bottom:259.141200pt;}
.y138{bottom:259.386133pt;}
.y185{bottom:259.872267pt;}
.y277{bottom:260.047200pt;}
.y21c{bottom:260.141200pt;}
.y1fe{bottom:262.131200pt;}
.y15f{bottom:262.361200pt;}
.y25a{bottom:262.565867pt;}
.y39{bottom:263.643333pt;}
.y107{bottom:266.728267pt;}
.y104{bottom:266.734000pt;}
.y238{bottom:269.719867pt;}
.y29c{bottom:270.171333pt;}
.ydd{bottom:270.947200pt;}
.y15{bottom:271.695867pt;}
.y1a9{bottom:273.108133pt;}
.ybb{bottom:275.492933pt;}
.y60{bottom:275.538800pt;}
.y88{bottom:275.915867pt;}
.y1d7{bottom:277.230400pt;}
.yb0{bottom:277.249867pt;}
.y21b{bottom:278.142533pt;}
.y184{bottom:278.241600pt;}
.y276{bottom:278.433867pt;}
.y15e{bottom:280.362533pt;}
.y1fd{bottom:280.761200pt;}
.y38{bottom:282.150000pt;}
.y106{bottom:282.728267pt;}
.y29b{bottom:288.171333pt;}
.y259{bottom:288.297867pt;}
.y237{bottom:288.801867pt;}
.ydc{bottom:291.147200pt;}
.yba{bottom:293.601600pt;}
.y5f{bottom:293.616800pt;}
.y87{bottom:294.070533pt;}
.yaf{bottom:295.358533pt;}
.y1d6{bottom:295.523067pt;}
.y21a{bottom:296.143867pt;}
.y14{bottom:296.242533pt;}
.y183{bottom:296.610933pt;}
.y275{bottom:296.820533pt;}
.y15d{bottom:298.363867pt;}
.y1fc{bottom:299.391200pt;}
.y37{bottom:300.656667pt;}
.y103{bottom:302.934000pt;}
.y101{bottom:302.939867pt;}
.y29a{bottom:306.171333pt;}
.y1a8{bottom:306.360533pt;}
.y258{bottom:306.483867pt;}
.y100{bottom:310.939867pt;}
.ydb{bottom:311.347200pt;}
.y5e{bottom:311.694800pt;}
.yb9{bottom:311.710267pt;}
.y86{bottom:312.225200pt;}
.yae{bottom:313.467200pt;}
.y1d5{bottom:313.815733pt;}
.y219{bottom:314.145200pt;}
.y182{bottom:314.980267pt;}
.y274{bottom:315.207200pt;}
.y236{bottom:315.443867pt;}
.y137{bottom:315.941600pt;}
.y15c{bottom:316.365200pt;}
.y1fb{bottom:318.021200pt;}
.y102{bottom:318.934000pt;}
.y36{bottom:319.163333pt;}
.y13{bottom:320.789200pt;}
.y133{bottom:323.947333pt;}
.y299{bottom:324.171333pt;}
.y257{bottom:324.669867pt;}
.y5d{bottom:329.772800pt;}
.y85{bottom:330.379867pt;}
.yad{bottom:331.575867pt;}
.y136{bottom:331.941600pt;}
.y1d4{bottom:332.108400pt;}
.y218{bottom:332.146533pt;}
.y181{bottom:333.349600pt;}
.y273{bottom:333.593867pt;}
.y15b{bottom:334.366533pt;}
.y235{bottom:334.525867pt;}
.y1fa{bottom:336.651200pt;}
.y35{bottom:337.670000pt;}
.yda{bottom:338.153867pt;}
.yfd{bottom:339.145600pt;}
.y131{bottom:339.947333pt;}
.y1a7{bottom:342.784533pt;}
.yff{bottom:347.139867pt;}
.y5c{bottom:347.850800pt;}
.y135{bottom:347.941600pt;}
.y84{bottom:348.534533pt;}
.yb8{bottom:348.709733pt;}
.yac{bottom:349.684533pt;}
.y217{bottom:350.147867pt;}
.y1d3{bottom:350.401067pt;}
.y256{bottom:350.401867pt;}
.y180{bottom:351.718933pt;}
.y272{bottom:351.980533pt;}
.y15a{bottom:352.367867pt;}
.y298{bottom:353.504667pt;}
.y234{bottom:353.607867pt;}
.yfb{bottom:355.145600pt;}
.y1f9{bottom:355.281200pt;}
.y132{bottom:355.947333pt;}
.yd9{bottom:356.073867pt;}
.y34{bottom:356.176667pt;}
.y1a6{bottom:361.169200pt;}
.yfe{bottom:363.139867pt;}
.y134{bottom:363.941600pt;}
.y12{bottom:364.184667pt;}
.y5b{bottom:365.928800pt;}
.y83{bottom:366.689200pt;}
.yab{bottom:367.793200pt;}
.y216{bottom:368.149200pt;}
.y255{bottom:368.587867pt;}
.y1d2{bottom:368.693733pt;}
.y271{bottom:370.367200pt;}
.y159{bottom:370.369200pt;}
.yfc{bottom:371.145600pt;}
.y297{bottom:371.504667pt;}
.y1f8{bottom:373.911200pt;}
.y33{bottom:374.683333pt;}
.y1a5{bottom:379.553867pt;}
.y233{bottom:380.249867pt;}
.y5a{bottom:384.006800pt;}
.y130{bottom:384.147333pt;}
.y82{bottom:384.843867pt;}
.yaa{bottom:385.901867pt;}
.y215{bottom:386.150533pt;}
.y254{bottom:386.773867pt;}
.y1d1{bottom:386.986400pt;}
.y158{bottom:388.370533pt;}
.y270{bottom:388.753867pt;}
.y296{bottom:389.504667pt;}
.yf9{bottom:391.345600pt;}
.y12c{bottom:392.153200pt;}
.y1f7{bottom:392.541200pt;}
.y11{bottom:392.744667pt;}
.yd8{bottom:392.842533pt;}
.y32{bottom:393.190000pt;}
.y1a4{bottom:397.938533pt;}
.y232{bottom:399.331867pt;}
.yf8{bottom:399.345600pt;}
.y12f{bottom:400.147333pt;}
.y17f{bottom:401.659467pt;}
.y59{bottom:402.084800pt;}
.y81{bottom:402.998533pt;}
.ya9{bottom:404.010533pt;}
.y214{bottom:404.151867pt;}
.y253{bottom:404.959867pt;}
.y1d0{bottom:405.279067pt;}
.y157{bottom:406.371867pt;}
.yfa{bottom:407.345600pt;}
.y295{bottom:407.504667pt;}
.y12a{bottom:408.153200pt;}
.y1f6{bottom:411.171200pt;}
.yd7{bottom:411.441867pt;}
.y31{bottom:411.696667pt;}
.y12e{bottom:416.147333pt;}
.y1a3{bottom:416.323200pt;}
.y17e{bottom:417.659467pt;}
.y17a{bottom:417.665200pt;}
.y26f{bottom:418.487200pt;}
.y58{bottom:420.162800pt;}
.y80{bottom:421.153200pt;}
.y10{bottom:421.304667pt;}
.ya8{bottom:422.119200pt;}
.y213{bottom:422.153200pt;}
.y1cf{bottom:423.571733pt;}
.y12b{bottom:424.153200pt;}
.y156{bottom:424.373200pt;}
.y294{bottom:425.504667pt;}
.y231{bottom:425.973867pt;}
.y1f5{bottom:429.801200pt;}
.yd6{bottom:430.041200pt;}
.y30{bottom:430.203333pt;}
.y252{bottom:430.691867pt;}
.y12d{bottom:432.147333pt;}
.y17d{bottom:433.659467pt;}
.y178{bottom:433.665200pt;}
.y1a2{bottom:434.707867pt;}
.y57{bottom:438.240800pt;}
.y7f{bottom:439.307867pt;}
.y212{bottom:440.154533pt;}
.ya7{bottom:440.227867pt;}
.yf7{bottom:440.348933pt;}
.y1ce{bottom:441.864400pt;}
.y155{bottom:442.374533pt;}
.y230{bottom:445.055867pt;}
.y1f4{bottom:448.431200pt;}
.yd5{bottom:448.640533pt;}
.y2f{bottom:448.710000pt;}
.y251{bottom:448.863867pt;}
.y17c{bottom:449.659467pt;}
.y179{bottom:449.665200pt;}
.yf{bottom:449.864667pt;}
.y129{bottom:452.353200pt;}
.y1a1{bottom:453.092533pt;}
.y293{bottom:454.838000pt;}
.y56{bottom:456.318800pt;}
.y7e{bottom:457.462533pt;}
.yf6{bottom:457.815600pt;}
.ya6{bottom:458.336533pt;}
.y1cd{bottom:460.157067pt;}
.y126{bottom:460.358933pt;}
.y154{bottom:460.375867pt;}
.y22f{bottom:464.137867pt;}
.y17b{bottom:465.659467pt;}
.y250{bottom:467.049867pt;}
.y1f3{bottom:467.061200pt;}
.y2e{bottom:467.216667pt;}
.yd4{bottom:467.239867pt;}
.y128{bottom:468.353200pt;}
.y125{bottom:468.358933pt;}
.y26e{bottom:470.918133pt;}
.y1a0{bottom:471.477200pt;}
.y55{bottom:474.396800pt;}
.y7d{bottom:475.617200pt;}
.ya5{bottom:476.445200pt;}
.y211{bottom:477.052133pt;}
.y153{bottom:478.377200pt;}
.ye{bottom:478.424667pt;}
.y1cc{bottom:478.449733pt;}
.y127{bottom:484.353200pt;}
.y1f2{bottom:485.691200pt;}
.yd3{bottom:485.839200pt;}
.y177{bottom:485.865200pt;}
.y19f{bottom:489.861867pt;}
.y22e{bottom:490.779867pt;}
.y292{bottom:491.731333pt;}
.y54{bottom:492.474800pt;}
.y24f{bottom:492.781867pt;}
.y7c{bottom:493.771867pt;}
.yf5{bottom:494.293200pt;}
.ya4{bottom:494.553867pt;}
.y26d{bottom:495.968800pt;}
.y152{bottom:496.378533pt;}
.y1cb{bottom:496.742400pt;}
.y2d{bottom:497.056667pt;}
.y176{bottom:501.865200pt;}
.y1f1{bottom:504.321200pt;}
.yd2{bottom:504.438533pt;}
.y124{bottom:504.558933pt;}
.y122{bottom:504.564667pt;}
.yd{bottom:506.984667pt;}
.y19e{bottom:508.246533pt;}
.y291{bottom:509.064667pt;}
.y22d{bottom:509.861867pt;}
.y53{bottom:510.552800pt;}
.y24e{bottom:510.967867pt;}
.y7b{bottom:511.926533pt;}
.yf4{bottom:512.417200pt;}
.y121{bottom:512.564667pt;}
.ya3{bottom:512.662533pt;}
.y151{bottom:514.379867pt;}
.y1ca{bottom:515.035067pt;}
.y175{bottom:517.865200pt;}
.y171{bottom:517.871067pt;}
.y123{bottom:520.558933pt;}
.y26c{bottom:521.019467pt;}
.y1f0{bottom:522.951200pt;}
.yd1{bottom:523.037867pt;}
.y170{bottom:525.871067pt;}
.y290{bottom:526.398000pt;}
.y19d{bottom:526.631200pt;}
.y52{bottom:528.630800pt;}
.y7a{bottom:530.081200pt;}
.yf3{bottom:530.541200pt;}
.ya2{bottom:530.771200pt;}
.y150{bottom:532.381200pt;}
.y1c9{bottom:533.327733pt;}
.y174{bottom:533.865200pt;}
.y22c{bottom:536.503867pt;}
.y24d{bottom:536.699867pt;}
.y120{bottom:540.764667pt;}
.y1ef{bottom:541.581200pt;}
.yd0{bottom:541.637200pt;}
.y2c{bottom:542.016667pt;}
.y28f{bottom:543.731333pt;}
.y19c{bottom:545.015867pt;}
.y26b{bottom:546.070133pt;}
.y51{bottom:546.708800pt;}
.y79{bottom:548.235867pt;}
.yf2{bottom:548.665200pt;}
.y11f{bottom:548.764667pt;}
.ya1{bottom:548.879867pt;}
.y173{bottom:549.865200pt;}
.y14f{bottom:550.382533pt;}
.y1c8{bottom:551.620400pt;}
.y24c{bottom:554.885867pt;}
.y22b{bottom:555.585867pt;}
.y1ee{bottom:560.211200pt;}
.y28e{bottom:561.064667pt;}
.y2b{bottom:561.856667pt;}
.yc{bottom:562.001067pt;}
.y19b{bottom:563.400533pt;}
.y50{bottom:564.786800pt;}
.y172{bottom:565.865200pt;}
.y78{bottom:566.390533pt;}
.yf1{bottom:566.789200pt;}
.ya0{bottom:566.988533pt;}
.y14e{bottom:568.383867pt;}
.y1c7{bottom:569.913067pt;}
.y24b{bottom:573.071867pt;}
.y22a{bottom:574.667867pt;}
.y28d{bottom:578.398000pt;}
.y1ed{bottom:578.841200pt;}
.ycf{bottom:579.127333pt;}
.y2a{bottom:581.651333pt;}
.y19a{bottom:581.785200pt;}
.y4f{bottom:582.864800pt;}
.y11e{bottom:583.297067pt;}
.y77{bottom:584.545200pt;}
.yf0{bottom:584.913200pt;}
.y9f{bottom:585.097200pt;}
.y16f{bottom:586.071067pt;}
.y14d{bottom:586.385200pt;}
.y1c6{bottom:588.205733pt;}
.yb{bottom:588.774400pt;}
.y28c{bottom:595.731333pt;}
.y1ec{bottom:597.471200pt;}
.y24a{bottom:598.803867pt;}
.y29{bottom:600.158000pt;}
.y199{bottom:600.169867pt;}
.y4e{bottom:600.942800pt;}
.y11d{bottom:600.950400pt;}
.y229{bottom:601.309867pt;}
.y16e{bottom:602.071067pt;}
.y76{bottom:602.699867pt;}
.yef{bottom:603.037200pt;}
.y9e{bottom:603.205867pt;}
.y14c{bottom:604.386533pt;}
.y1c5{bottom:606.498400pt;}
.ya{bottom:607.987733pt;}
.y16a{bottom:610.076800pt;}
.y28b{bottom:613.064667pt;}
.y1eb{bottom:616.101200pt;}
.y249{bottom:616.989867pt;}
.y16d{bottom:618.071067pt;}
.y169{bottom:618.076800pt;}
.y198{bottom:618.554533pt;}
.y28{bottom:618.664667pt;}
.y4d{bottom:619.020800pt;}
.y228{bottom:620.391867pt;}
.y75{bottom:620.854533pt;}
.yee{bottom:621.161200pt;}
.y9d{bottom:621.314533pt;}
.y14b{bottom:622.387867pt;}
.y1c4{bottom:624.791067pt;}
.y26a{bottom:628.175867pt;}
.y28a{bottom:630.398000pt;}
.y16c{bottom:634.071067pt;}
.y1ea{bottom:634.731200pt;}
.y9{bottom:634.761067pt;}
.yce{bottom:635.007200pt;}
.y248{bottom:635.175867pt;}
.y197{bottom:636.939200pt;}
.y4c{bottom:637.098800pt;}
.y27{bottom:637.171333pt;}
.y11c{bottom:637.491200pt;}
.y74{bottom:639.009200pt;}
.yed{bottom:639.285200pt;}
.y9c{bottom:639.423200pt;}
.y14a{bottom:640.389200pt;}
.y1c3{bottom:643.083733pt;}
.y227{bottom:647.033867pt;}
.y269{bottom:647.229867pt;}
.y289{bottom:647.731333pt;}
.y16b{bottom:650.071067pt;}
.y1e9{bottom:653.361200pt;}
.ycd{bottom:653.606533pt;}
.y8{bottom:653.974400pt;}
.y4b{bottom:655.176800pt;}
.y196{bottom:655.323867pt;}
.y26{bottom:655.678000pt;}
.y11b{bottom:655.814533pt;}
.y73{bottom:657.163867pt;}
.yec{bottom:657.409200pt;}
.y9b{bottom:657.531867pt;}
.y149{bottom:658.390533pt;}
.y247{bottom:660.907867pt;}
.y1c2{bottom:661.376400pt;}
.y288{bottom:665.064667pt;}
.y226{bottom:666.115867pt;}
.y268{bottom:666.283867pt;}
.y168{bottom:670.276800pt;}
.y1e8{bottom:671.991200pt;}
.ycc{bottom:672.205867pt;}
.y7{bottom:673.190667pt;}
.y4a{bottom:673.254800pt;}
.y195{bottom:673.708533pt;}
.y11a{bottom:674.137867pt;}
.y25{bottom:674.184667pt;}
.y72{bottom:675.318533pt;}
.yeb{bottom:675.533200pt;}
.y9a{bottom:675.640533pt;}
.y148{bottom:676.391867pt;}
.y246{bottom:679.093867pt;}
.y1c1{bottom:679.669067pt;}
.y287{bottom:682.398000pt;}
.y167{bottom:686.276800pt;}
.y1e7{bottom:690.621200pt;}
.ycb{bottom:690.805200pt;}
.y49{bottom:691.332800pt;}
.y194{bottom:692.093200pt;}
.y119{bottom:692.461200pt;}
.y24{bottom:692.691333pt;}
.y225{bottom:692.757867pt;}
.y267{bottom:692.897867pt;}
.y71{bottom:693.473200pt;}
.yea{bottom:693.657200pt;}
.y99{bottom:693.749200pt;}
.y163{bottom:694.282533pt;}
.y147{bottom:694.393200pt;}
.y245{bottom:697.279867pt;}
.y286{bottom:699.731333pt;}
.y166{bottom:702.276800pt;}
.y162{bottom:702.282533pt;}
.y1e6{bottom:709.251200pt;}
.yca{bottom:709.404533pt;}
.y48{bottom:709.410800pt;}
.y193{bottom:710.477867pt;}
.y118{bottom:710.784533pt;}
.y23{bottom:711.198000pt;}
.y70{bottom:711.627867pt;}
.ye9{bottom:711.781200pt;}
.y224{bottom:711.839867pt;}
.y98{bottom:711.857867pt;}
.y146{bottom:712.394533pt;}
.y285{bottom:717.064667pt;}
.y165{bottom:718.276800pt;}
.y6{bottom:718.871600pt;}
.y266{bottom:719.511867pt;}
.y244{bottom:723.011867pt;}
.y47{bottom:727.488800pt;}
.y1e5{bottom:727.881200pt;}
.yc9{bottom:728.003867pt;}
.y192{bottom:728.862533pt;}
.y117{bottom:729.107867pt;}
.y1c0{bottom:729.522933pt;}
.y22{bottom:729.704667pt;}
.y6f{bottom:729.782533pt;}
.ye8{bottom:729.905200pt;}
.y97{bottom:729.966533pt;}
.y145{bottom:730.395867pt;}
.y164{bottom:734.276800pt;}
.y284{bottom:734.398000pt;}
.y5{bottom:738.084933pt;}
.y223{bottom:738.481867pt;}
.y265{bottom:738.565867pt;}
.y243{bottom:741.183867pt;}
.y1bf{bottom:745.522933pt;}
.y1bc{bottom:745.528667pt;}
.y46{bottom:745.566800pt;}
.y1e4{bottom:746.511200pt;}
.yc8{bottom:746.603200pt;}
.y191{bottom:747.247200pt;}
.y116{bottom:747.431200pt;}
.y6e{bottom:747.937200pt;}
.ye7{bottom:748.029200pt;}
.y96{bottom:748.075200pt;}
.y21{bottom:748.211333pt;}
.y144{bottom:748.397200pt;}
.y283{bottom:751.731333pt;}
.y1bb{bottom:753.528667pt;}
.y161{bottom:754.482533pt;}
.y222{bottom:757.563867pt;}
.y242{bottom:759.369867pt;}
.y1be{bottom:761.522933pt;}
.y160{bottom:762.482533pt;}
.y45{bottom:763.644800pt;}
.y4{bottom:764.858267pt;}
.y1e3{bottom:765.141200pt;}
.y264{bottom:765.179867pt;}
.yc7{bottom:765.202533pt;}
.y190{bottom:765.631867pt;}
.y115{bottom:765.754533pt;}
.y6d{bottom:766.091867pt;}
.ye6{bottom:766.153200pt;}
.y95{bottom:766.183867pt;}
.y143{bottom:766.398533pt;}
.y20{bottom:766.718000pt;}
.y282{bottom:769.064667pt;}
.y221{bottom:776.645867pt;}
.y1bd{bottom:777.522933pt;}
.y1e2{bottom:783.771200pt;}
.yc6{bottom:783.801867pt;}
.y18f{bottom:784.016533pt;}
.y3{bottom:784.071600pt;}
.y114{bottom:784.077867pt;}
.y263{bottom:784.233867pt;}
.y6c{bottom:784.246533pt;}
.ye5{bottom:784.277200pt;}
.y94{bottom:784.292533pt;}
.y142{bottom:784.399867pt;}
.y241{bottom:785.101867pt;}
.y1f{bottom:785.224667pt;}
.y281{bottom:786.398000pt;}
.y1ba{bottom:797.728667pt;}
.y44{bottom:800.627733pt;}
.y6b{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1e{bottom:803.731333pt;}
.y1d{bottom:842.834667pt;}
.y43{bottom:858.834667pt;}
.he{height:35.546875pt;}
.h7{height:36.229167pt;}
.h9{height:36.796875pt;}
.hd{height:37.942708pt;}
.h11{height:41.822917pt;}
.h4{height:45.286458pt;}
.h2{height:45.996094pt;}
.h3{height:47.550781pt;}
.hb{height:52.079427pt;}
.hc{height:52.543427pt;}
.h8{height:56.608073pt;}
.ha{height:61.136719pt;}
.h6{height:63.401042pt;}
.hf{height:69.942708pt;}
.h10{height:77.286458pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:74.388133pt;}
.x1{left:75.590533pt;}
.xc{left:83.574800pt;}
.x15{left:85.464533pt;}
.xf{left:88.023600pt;}
.xa{left:89.975067pt;}
.x8{left:92.636933pt;}
.x5{left:94.213867pt;}
.xb{left:95.121733pt;}
.x10{left:114.716933pt;}
.xd{left:115.774800pt;}
.x17{left:119.717867pt;}
.x16{left:158.931200pt;}
.x9{left:169.843600pt;}
.x7{left:189.034533pt;}
.x4{left:203.247467pt;}
.x2{left:206.290000pt;}
.x3{left:207.512800pt;}
.x1c{left:208.511333pt;}
.x1a{left:334.930133pt;}
.x1b{left:336.383467pt;}
.x12{left:348.101467pt;}
.xe{left:349.570267pt;}
.x11{left:350.522800pt;}
.x14{left:356.920267pt;}
.x13{left:358.792533pt;}
.x18{left:361.512933pt;}
.x19{left:362.672933pt;}
}




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