
    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_c5ead4b00af0630317fb2066.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_655bcea357741adba98ed109.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.842285;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_3d8e126f9cef7e4061d66f50.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_fa4f98a3171a9ff64c37da8b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_8300e4d7a162b7b9671997de.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900391;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_72f89561943c71aab15f06e4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_3d949843e3eb0e9c6fcfa8e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_f495ff786edeba8d313de232.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_72f89561943c71aab15f06e4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3d949843e3eb0e9c6fcfa8e8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_99b4810a874b2e7fae6504c1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.842285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_73495cecd40f316e1ead0e06.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_256cf90f90d73ae0c4b83c32.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f495ff786edeba8d313de232.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b010c5cad8d510e83c2a5e1e.woff2')format("woff");}.fff{font-family:fff;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3d949843e3eb0e9c6fcfa8e8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_69d12397119c53c00d8490d0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_cc3b6bf9efe008796a29d16f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_1b57f3187419fdfae5fb2028.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.900391;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;}
.m9{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-19.956000px;}
.v9{vertical-align:-8.320200px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:15.973800px;}
.v2{vertical-align:19.957200px;}
.v3{vertical-align:24.000000px;}
.v7{vertical-align:25.152000px;}
.v6{vertical-align:28.800000px;}
.v5{vertical-align:39.960000px;}
.v1{vertical-align:59.466600px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.022200px;}
.ls7{letter-spacing:0.574800px;}
.ls3{letter-spacing:9.718800px;}
.ls1{letter-spacing:9.747600px;}
.ls8{letter-spacing:38.280000px;}
.ls2{letter-spacing:156.537000px;}
.ls5{letter-spacing:238.015800px;}
.ls6{letter-spacing:347.984400px;}
.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;}
}
.wsbf{word-spacing:-60.000000px;}
.wsb2{word-spacing:-19.728720px;}
.ws30{word-spacing:-15.000000px;}
.wsfb{word-spacing:-12.000000px;}
.ws0{word-spacing:-9.000000px;}
.ws31{word-spacing:-8.745000px;}
.wsfe{word-spacing:-6.996000px;}
.wsac{word-spacing:-4.020000px;}
.ws134{word-spacing:-3.540000px;}
.ws12b{word-spacing:-3.480000px;}
.ws13f{word-spacing:-3.240000px;}
.ws9d{word-spacing:-2.940000px;}
.ws96{word-spacing:-2.880000px;}
.ws98{word-spacing:-2.760000px;}
.ws97{word-spacing:-2.700000px;}
.wsb0{word-spacing:-2.640000px;}
.wsd5{word-spacing:-2.520000px;}
.ws145{word-spacing:-2.460000px;}
.wsb9{word-spacing:-2.400000px;}
.wsf2{word-spacing:-2.340000px;}
.wsc4{word-spacing:-2.280000px;}
.ws41{word-spacing:-2.220000px;}
.wsf9{word-spacing:-2.160000px;}
.ws161{word-spacing:-2.112000px;}
.ws5{word-spacing:-2.052000px;}
.wsb3{word-spacing:-1.980000px;}
.wsaa{word-spacing:-1.920000px;}
.ws7{word-spacing:-1.872000px;}
.ws7c{word-spacing:-1.860000px;}
.ws50{word-spacing:-1.800000px;}
.ws81{word-spacing:-1.740000px;}
.wsa3{word-spacing:-1.680000px;}
.wsee{word-spacing:-1.620000px;}
.wsce{word-spacing:-1.560000px;}
.ws140{word-spacing:-1.440000px;}
.wsa2{word-spacing:-1.380000px;}
.wsb4{word-spacing:-1.332000px;}
.ws68{word-spacing:-1.320000px;}
.ws52{word-spacing:-1.260000px;}
.ws13{word-spacing:-1.224000px;}
.ws7a{word-spacing:-1.200000px;}
.ws9e{word-spacing:-1.140000px;}
.ws6a{word-spacing:-1.080000px;}
.ws156{word-spacing:-1.020000px;}
.wsf4{word-spacing:-0.960000px;}
.ws2d{word-spacing:-0.936000px;}
.ws12f{word-spacing:-0.900000px;}
.wsa0{word-spacing:-0.840000px;}
.ws13b{word-spacing:-0.780000px;}
.ws158{word-spacing:-0.720000px;}
.ws3c{word-spacing:-0.600000px;}
.ws29{word-spacing:-0.540000px;}
.ws16{word-spacing:-0.504000px;}
.ws42{word-spacing:-0.480000px;}
.wsc3{word-spacing:-0.420000px;}
.ws128{word-spacing:-0.360000px;}
.ws13e{word-spacing:-0.324000px;}
.ws12e{word-spacing:-0.300000px;}
.ws32{word-spacing:-0.252000px;}
.wsb7{word-spacing:-0.240000px;}
.ws6e{word-spacing:-0.216000px;}
.wsc{word-spacing:-0.180000px;}
.ws4{word-spacing:-0.120000px;}
.ws3{word-spacing:-0.072000px;}
.ws2c{word-spacing:-0.036000px;}
.ws2{word-spacing:0.000000px;}
.wsef{word-spacing:0.060000px;}
.ws6b{word-spacing:0.120000px;}
.ws16a{word-spacing:0.144000px;}
.ws12a{word-spacing:0.180000px;}
.ws148{word-spacing:0.240000px;}
.ws14{word-spacing:0.252000px;}
.ws3a{word-spacing:0.300000px;}
.wsf8{word-spacing:0.360000px;}
.ws25{word-spacing:0.396000px;}
.ws90{word-spacing:0.420000px;}
.ws56{word-spacing:0.540000px;}
.ws43{word-spacing:0.600000px;}
.ws14d{word-spacing:0.660000px;}
.ws142{word-spacing:0.720000px;}
.wsb8{word-spacing:0.780000px;}
.wsa{word-spacing:0.792000px;}
.wse0{word-spacing:0.840000px;}
.ws4a{word-spacing:0.900000px;}
.wsb1{word-spacing:0.912000px;}
.wsd2{word-spacing:0.960000px;}
.wsb5{word-spacing:1.020000px;}
.ws88{word-spacing:1.080000px;}
.ws71{word-spacing:1.140000px;}
.ws27{word-spacing:1.152000px;}
.ws159{word-spacing:1.200000px;}
.ws2b{word-spacing:1.224000px;}
.ws58{word-spacing:1.260000px;}
.ws15c{word-spacing:1.296000px;}
.ws12d{word-spacing:1.320000px;}
.wsd4{word-spacing:1.380000px;}
.ws15d{word-spacing:1.392000px;}
.ws59{word-spacing:1.440000px;}
.ws51{word-spacing:1.500000px;}
.wsa1{word-spacing:1.560000px;}
.wsfa{word-spacing:1.680000px;}
.ws72{word-spacing:1.740000px;}
.ws1a{word-spacing:1.800000px;}
.ws9{word-spacing:1.836000px;}
.wsd0{word-spacing:1.860000px;}
.ws1e{word-spacing:1.872000px;}
.wse8{word-spacing:1.920000px;}
.ws24{word-spacing:1.944000px;}
.ws85{word-spacing:1.980000px;}
.ws8{word-spacing:2.016000px;}
.wsc1{word-spacing:2.028840px;}
.wsdd{word-spacing:2.040000px;}
.ws168{word-spacing:2.064000px;}
.wsad{word-spacing:2.100000px;}
.ws1d{word-spacing:2.160000px;}
.ws12c{word-spacing:2.220000px;}
.ws34{word-spacing:2.280000px;}
.wsd{word-spacing:2.304000px;}
.ws167{word-spacing:2.352000px;}
.wse5{word-spacing:2.400000px;}
.ws169{word-spacing:2.448000px;}
.ws67{word-spacing:2.460000px;}
.ws14a{word-spacing:2.520000px;}
.ws49{word-spacing:2.580000px;}
.ws2a{word-spacing:2.592000px;}
.ws15e{word-spacing:2.640000px;}
.ws17{word-spacing:2.664000px;}
.ws10{word-spacing:2.700000px;}
.ws69{word-spacing:2.820000px;}
.wse1{word-spacing:2.880000px;}
.ws6{word-spacing:2.916000px;}
.wsc0{word-spacing:2.940000px;}
.ws20{word-spacing:2.952000px;}
.ws91{word-spacing:3.000000px;}
.ws92{word-spacing:3.060000px;}
.ws45{word-spacing:3.120000px;}
.ws7d{word-spacing:3.180000px;}
.ws87{word-spacing:3.240000px;}
.ws99{word-spacing:3.360000px;}
.ws6d{word-spacing:3.420000px;}
.ws160{word-spacing:3.456000px;}
.ws70{word-spacing:3.480000px;}
.ws12{word-spacing:3.528000px;}
.ws7b{word-spacing:3.540000px;}
.wsd6{word-spacing:3.600000px;}
.ws5b{word-spacing:3.660000px;}
.ws65{word-spacing:3.720000px;}
.ws15b{word-spacing:3.744000px;}
.ws155{word-spacing:3.780000px;}
.ws7f{word-spacing:3.840000px;}
.ws53{word-spacing:3.900000px;}
.ws15{word-spacing:3.924000px;}
.wsa7{word-spacing:3.960000px;}
.ws7e{word-spacing:4.020000px;}
.ws23{word-spacing:4.068000px;}
.ws6c{word-spacing:4.080000px;}
.wsb{word-spacing:4.104000px;}
.ws64{word-spacing:4.140000px;}
.ws22{word-spacing:4.176000px;}
.ws147{word-spacing:4.200000px;}
.ws48{word-spacing:4.260000px;}
.wse{word-spacing:4.284000px;}
.ws6f{word-spacing:4.320000px;}
.wsf{word-spacing:4.356000px;}
.ws74{word-spacing:4.380000px;}
.ws163{word-spacing:4.416000px;}
.ws39{word-spacing:4.440000px;}
.wsd9{word-spacing:4.500000px;}
.ws62{word-spacing:4.560000px;}
.ws26{word-spacing:4.572000px;}
.ws77{word-spacing:4.620000px;}
.ws19{word-spacing:4.680000px;}
.ws37{word-spacing:4.740000px;}
.wsbb{word-spacing:4.800000px;}
.wscc{word-spacing:4.860000px;}
.wsc2{word-spacing:4.920000px;}
.ws18{word-spacing:4.932000px;}
.ws16c{word-spacing:4.944000px;}
.ws11{word-spacing:4.968000px;}
.ws57{word-spacing:4.980000px;}
.ws14e{word-spacing:5.040000px;}
.ws165{word-spacing:5.088000px;}
.ws4c{word-spacing:5.100000px;}
.ws28{word-spacing:5.148000px;}
.ws151{word-spacing:5.160000px;}
.ws86{word-spacing:5.220000px;}
.ws35{word-spacing:5.280000px;}
.ws1f{word-spacing:5.328000px;}
.ws60{word-spacing:5.340000px;}
.ws94{word-spacing:5.400000px;}
.ws132{word-spacing:5.460000px;}
.wsde{word-spacing:5.520000px;}
.wsa6{word-spacing:5.580000px;}
.wsf0{word-spacing:5.640000px;}
.ws3e{word-spacing:5.700000px;}
.ws5e{word-spacing:5.760000px;}
.wsca{word-spacing:5.820000px;}
.wsae{word-spacing:5.940000px;}
.ws16b{word-spacing:5.952000px;}
.wsed{word-spacing:6.000000px;}
.ws2e{word-spacing:6.048000px;}
.ws95{word-spacing:6.060000px;}
.ws13d{word-spacing:6.120000px;}
.ws76{word-spacing:6.180000px;}
.ws63{word-spacing:6.240000px;}
.ws46{word-spacing:6.300000px;}
.wsba{word-spacing:6.360000px;}
.ws9b{word-spacing:6.420000px;}
.ws137{word-spacing:6.480000px;}
.ws138{word-spacing:6.540000px;}
.wsa8{word-spacing:6.600000px;}
.wse7{word-spacing:6.720000px;}
.ws89{word-spacing:6.780000px;}
.wse3{word-spacing:6.840000px;}
.ws133{word-spacing:6.900000px;}
.ws36{word-spacing:6.960000px;}
.ws131{word-spacing:7.020000px;}
.wsd3{word-spacing:7.080000px;}
.wsc9{word-spacing:7.140000px;}
.ws4b{word-spacing:7.200000px;}
.wscf{word-spacing:7.260000px;}
.ws15a{word-spacing:7.296000px;}
.ws44{word-spacing:7.440000px;}
.ws1c{word-spacing:7.452000px;}
.ws8a{word-spacing:7.500000px;}
.ws164{word-spacing:7.536000px;}
.wsf6{word-spacing:7.560000px;}
.ws139{word-spacing:7.620000px;}
.wsd1{word-spacing:7.680000px;}
.ws144{word-spacing:7.800000px;}
.ws8c{word-spacing:7.920000px;}
.wsaf{word-spacing:7.980000px;}
.wse2{word-spacing:8.040000px;}
.ws79{word-spacing:8.100000px;}
.ws40{word-spacing:8.160000px;}
.ws80{word-spacing:8.220000px;}
.wsbe{word-spacing:8.280000px;}
.ws1b{word-spacing:8.316000px;}
.ws4f{word-spacing:8.340000px;}
.wsdb{word-spacing:8.400000px;}
.ws162{word-spacing:8.448000px;}
.ws4d{word-spacing:8.520000px;}
.wsc6{word-spacing:8.580000px;}
.ws47{word-spacing:8.700000px;}
.wsdc{word-spacing:8.760000px;}
.ws14b{word-spacing:8.820000px;}
.wsbc{word-spacing:8.940000px;}
.ws38{word-spacing:9.000000px;}
.ws15f{word-spacing:9.024000px;}
.wsda{word-spacing:9.060000px;}
.ws21{word-spacing:9.072000px;}
.wsf5{word-spacing:9.120000px;}
.wsbd{word-spacing:9.240000px;}
.ws5d{word-spacing:9.300000px;}
.ws3f{word-spacing:9.420000px;}
.ws5c{word-spacing:9.540000px;}
.wsd8{word-spacing:9.600000px;}
.ws149{word-spacing:9.660000px;}
.ws136{word-spacing:9.780000px;}
.wsdf{word-spacing:9.840000px;}
.wsa9{word-spacing:9.960000px;}
.ws3d{word-spacing:10.020000px;}
.ws84{word-spacing:10.260000px;}
.wscb{word-spacing:10.380000px;}
.ws157{word-spacing:10.440000px;}
.ws5a{word-spacing:10.560000px;}
.wsf1{word-spacing:10.620000px;}
.ws13c{word-spacing:10.680000px;}
.ws61{word-spacing:10.740000px;}
.ws5f{word-spacing:10.800000px;}
.ws33{word-spacing:10.980000px;}
.wse4{word-spacing:11.100000px;}
.ws9a{word-spacing:11.220000px;}
.wscd{word-spacing:11.400000px;}
.wsab{word-spacing:11.460000px;}
.wse9{word-spacing:11.520000px;}
.ws135{word-spacing:11.820000px;}
.ws73{word-spacing:11.880000px;}
.ws66{word-spacing:12.000000px;}
.ws75{word-spacing:12.060000px;}
.ws4e{word-spacing:12.300000px;}
.ws2f{word-spacing:12.312000px;}
.wsec{word-spacing:12.360000px;}
.ws9c{word-spacing:12.420000px;}
.wsf3{word-spacing:12.660000px;}
.wsea{word-spacing:12.720000px;}
.ws130{word-spacing:12.780000px;}
.ws141{word-spacing:12.960000px;}
.wsc8{word-spacing:13.080000px;}
.wsd7{word-spacing:13.140000px;}
.wsc7{word-spacing:13.200000px;}
.ws166{word-spacing:13.392000px;}
.ws153{word-spacing:13.500000px;}
.wsf7{word-spacing:13.680000px;}
.ws150{word-spacing:14.400000px;}
.ws129{word-spacing:14.700000px;}
.wsfc{word-spacing:14.940000px;}
.ws8e{word-spacing:15.240000px;}
.ws3b{word-spacing:15.780000px;}
.ws14f{word-spacing:16.140000px;}
.ws83{word-spacing:16.560000px;}
.wsb6{word-spacing:16.740000px;}
.wseb{word-spacing:16.800000px;}
.ws13a{word-spacing:18.000000px;}
.wse6{word-spacing:18.060000px;}
.ws9f{word-spacing:18.840000px;}
.ws78{word-spacing:18.960000px;}
.ws152{word-spacing:19.080000px;}
.ws8b{word-spacing:19.140000px;}
.ws143{word-spacing:19.200000px;}
.ws8d{word-spacing:19.260000px;}
.ws54{word-spacing:19.320000px;}
.ws14c{word-spacing:19.800000px;}
.ws154{word-spacing:20.400000px;}
.wsc5{word-spacing:20.580000px;}
.ws146{word-spacing:21.120000px;}
.ws93{word-spacing:21.180000px;}
.ws55{word-spacing:22.620000px;}
.ws82{word-spacing:27.360000px;}
.ws8f{word-spacing:54.960000px;}
.wsa5{word-spacing:181.824000px;}
.ws102{word-spacing:181.868400px;}
.ws124{word-spacing:186.384000px;}
.ws11a{word-spacing:190.368000px;}
.ws116{word-spacing:193.389600px;}
.ws10c{word-spacing:193.392000px;}
.ws122{word-spacing:200.400000px;}
.ws107{word-spacing:201.217200px;}
.ws117{word-spacing:206.996400px;}
.ws10d{word-spacing:207.860400px;}
.ws10b{word-spacing:211.177800px;}
.ws10e{word-spacing:211.728000px;}
.wsa4{word-spacing:213.840000px;}
.ws101{word-spacing:214.366200px;}
.ws114{word-spacing:214.366800px;}
.ws118{word-spacing:216.451200px;}
.ws103{word-spacing:218.982600px;}
.ws106{word-spacing:223.845000px;}
.ws121{word-spacing:229.440000px;}
.ws100{word-spacing:232.697400px;}
.ws10a{word-spacing:233.376000px;}
.wsff{word-spacing:234.209400px;}
.ws11c{word-spacing:235.365600px;}
.ws115{word-spacing:237.043800px;}
.ws11f{word-spacing:237.456000px;}
.ws113{word-spacing:239.328000px;}
.ws120{word-spacing:242.350800px;}
.ws11e{word-spacing:243.381600px;}
.ws11d{word-spacing:243.984000px;}
.ws105{word-spacing:247.344000px;}
.ws109{word-spacing:250.672800px;}
.wsfd{word-spacing:252.912000px;}
.ws112{word-spacing:253.680000px;}
.ws127{word-spacing:254.352000px;}
.ws108{word-spacing:256.216800px;}
.ws11b{word-spacing:261.043800px;}
.ws104{word-spacing:274.672800px;}
.ws126{word-spacing:275.328000px;}
.ws119{word-spacing:288.358200px;}
.ws110{word-spacing:310.848000px;}
.ws125{word-spacing:340.987800px;}
.ws123{word-spacing:345.456000px;}
.ws10f{word-spacing:348.358200px;}
.ws111{word-spacing:351.193200px;}
.ws1{word-spacing:1424.956800px;}
._7{margin-left:-17.042400px;}
._1b{margin-left:-15.864000px;}
._62{margin-left:-7.740000px;}
._4{margin-left:-5.940000px;}
._0{margin-left:-4.608000px;}
._3{margin-left:-3.300000px;}
._2{margin-left:-2.224800px;}
._8{margin-left:-1.058400px;}
._1{width:2.006400px;}
._6{width:3.096000px;}
._5{width:4.104000px;}
._9{width:6.048000px;}
._a{width:7.056000px;}
._c{width:8.160000px;}
._10{width:9.240000px;}
._b{width:10.260000px;}
._e{width:11.400000px;}
._f{width:13.428000px;}
._63{width:15.024000px;}
._d{width:16.860000px;}
._1a{width:19.020000px;}
._61{width:21.240000px;}
._1c{width:73.056000px;}
._22{width:108.288000px;}
._49{width:118.848000px;}
._23{width:131.616000px;}
._5f{width:150.624000px;}
._60{width:164.016000px;}
._46{width:165.696000px;}
._45{width:167.232000px;}
._5e{width:171.360000px;}
._47{width:173.136000px;}
._44{width:174.192000px;}
._14{width:191.184000px;}
._15{width:193.824000px;}
._16{width:196.512000px;}
._17{width:199.152000px;}
._21{width:202.176000px;}
._48{width:204.304800px;}
._4f{width:206.928000px;}
._20{width:207.984000px;}
._28{width:212.308200px;}
._1d{width:221.568000px;}
._12{width:223.200000px;}
._13{width:225.840000px;}
._19{width:228.480000px;}
._33{width:233.664000px;}
._53{width:240.048000px;}
._2c{width:241.680000px;}
._4e{width:246.036000px;}
._52{width:247.344000px;}
._37{width:254.928000px;}
._1e{width:256.512000px;}
._55{width:257.520000px;}
._18{width:260.496000px;}
._2a{width:266.160000px;}
._2b{width:267.216000px;}
._4b{width:269.376000px;}
._26{width:271.152000px;}
._54{width:279.998400px;}
._40{width:281.664000px;}
._32{width:283.180800px;}
._24{width:284.592000px;}
._41{width:287.328000px;}
._3e{width:290.160000px;}
._4a{width:291.667200px;}
._25{width:297.072000px;}
._3f{width:307.200000px;}
._5b{width:310.032000px;}
._31{width:311.664000px;}
._2e{width:314.832000px;}
._39{width:322.848000px;}
._2d{width:347.328000px;}
._34{width:348.912000px;}
._38{width:355.357800px;}
._35{width:358.157400px;}
._56{width:372.720000px;}
._36{width:375.216000px;}
._57{width:378.053400px;}
._1f{width:379.488000px;}
._5d{width:411.120000px;}
._43{width:434.256000px;}
._30{width:612.192000px;}
._50{width:636.048000px;}
._51{width:638.016000px;}
._59{width:650.676000px;}
._3b{width:662.868000px;}
._58{width:674.676000px;}
._2f{width:676.176000px;}
._3c{width:678.852000px;}
._3a{width:686.868000px;}
._4c{width:690.720000px;}
._27{width:706.848000px;}
._11{width:858.372000px;}
._4d{width:860.724000px;}
._29{width:894.852000px;}
._5a{width:984.613200px;}
._3d{width:1018.751400px;}
._42{width:1577.088000px;}
._5c{width:2628.192000px;}
.fc4{color:rgb(210,32,39);}
.fc3{color:rgb(114,19,32);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(122,7,30);}
.fs8{font-size:27.984000px;}
.fs7{font-size:34.980000px;}
.fs0{font-size:36.000000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:58.800000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:60.600000px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yac{bottom:2.762850px;}
.y5d{bottom:2.763150px;}
.y5e{bottom:45.777450px;}
.yad{bottom:47.903550px;}
.y220{bottom:66.966000px;}
.y1e4{bottom:71.292300px;}
.y8d{bottom:85.245300px;}
.y169{bottom:85.251300px;}
.y178{bottom:85.257150px;}
.y265{bottom:85.278000px;}
.y1a{bottom:85.970850px;}
.y1e2{bottom:86.830050px;}
.y10c{bottom:88.221750px;}
.y15{bottom:88.933950px;}
.yd9{bottom:89.007000px;}
.y1a6{bottom:92.745300px;}
.y2c8{bottom:92.763000px;}
.y1b8{bottom:93.194100px;}
.y295{bottom:94.242450px;}
.y19{bottom:96.770850px;}
.y14{bottom:97.933950px;}
.y101{bottom:98.013000px;}
.y1e1{bottom:99.406050px;}
.y1c7{bottom:100.682250px;}
.y8c{bottom:101.745300px;}
.y168{bottom:101.751300px;}
.y177{bottom:101.757150px;}
.y264{bottom:101.778000px;}
.y10b{bottom:104.721750px;}
.yd8{bottom:105.507000px;}
.y1e0{bottom:105.694050px;}
.y13{bottom:106.933950px;}
.y18{bottom:107.570850px;}
.y1a5{bottom:109.245300px;}
.y2c7{bottom:109.263000px;}
.y1b7{bottom:109.694100px;}
.y294{bottom:110.742450px;}
.y100{bottom:114.513000px;}
.y12{bottom:115.933950px;}
.y17{bottom:116.570850px;}
.y1c6{bottom:117.182250px;}
.y8b{bottom:118.245300px;}
.y167{bottom:118.251300px;}
.y263{bottom:118.278000px;}
.y115{bottom:121.221750px;}
.yd7{bottom:122.007000px;}
.y1df{bottom:124.558050px;}
.y11{bottom:124.933950px;}
.y16{bottom:125.570850px;}
.y1a4{bottom:125.745300px;}
.y2c6{bottom:125.763000px;}
.y1b6{bottom:126.194100px;}
.y293{bottom:127.242450px;}
.y176{bottom:131.007150px;}
.yff{bottom:131.013000px;}
.y1de{bottom:131.566050px;}
.y1c5{bottom:133.682250px;}
.y10{bottom:133.933950px;}
.y10a{bottom:133.977600px;}
.y8a{bottom:134.745300px;}
.y262{bottom:134.778000px;}
.y114{bottom:137.721750px;}
.yd6{bottom:138.507000px;}
.y1a3{bottom:142.245300px;}
.y2c5{bottom:142.263000px;}
.y1b5{bottom:142.694100px;}
.y292{bottom:143.742450px;}
.y237{bottom:143.763000px;}
.y166{bottom:147.501300px;}
.y175{bottom:147.507150px;}
.yfe{bottom:147.513000px;}
.y1c4{bottom:150.182250px;}
.y1c3{bottom:150.194100px;}
.y109{bottom:150.477600px;}
.y1dd{bottom:151.150050px;}
.y89{bottom:151.245300px;}
.y261{bottom:151.278000px;}
.y113{bottom:154.221750px;}
.yd5{bottom:155.007000px;}
.y1a2{bottom:158.745300px;}
.y2c4{bottom:158.763000px;}
.y1b4{bottom:159.194100px;}
.y291{bottom:160.242450px;}
.y236{bottom:160.263000px;}
.y148{bottom:160.611450px;}
.y165{bottom:164.001300px;}
.y174{bottom:164.007150px;}
.yfd{bottom:164.013000px;}
.y13a{bottom:164.355450px;}
.y5b{bottom:164.559000px;}
.y1dc{bottom:165.550050px;}
.y1c2{bottom:166.694100px;}
.y108{bottom:166.977600px;}
.y88{bottom:167.745300px;}
.y260{bottom:167.778000px;}
.y112{bottom:170.721750px;}
.yd4{bottom:171.507000px;}
.y5a{bottom:175.062000px;}
.y1a1{bottom:175.245300px;}
.y1b3{bottom:175.694100px;}
.y290{bottom:176.742450px;}
.y235{bottom:176.763000px;}
.y147{bottom:177.111450px;}
.y1db{bottom:178.122300px;}
.y201{bottom:179.462700px;}
.y164{bottom:180.501300px;}
.y173{bottom:180.507150px;}
.yfc{bottom:180.513000px;}
.y139{bottom:180.855450px;}
.y1c1{bottom:183.194100px;}
.y107{bottom:183.477600px;}
.y87{bottom:184.245300px;}
.y160{bottom:184.251300px;}
.y21f{bottom:184.270950px;}
.y25f{bottom:184.278000px;}
.y59{bottom:185.565000px;}
.y111{bottom:187.221750px;}
.y2c3{bottom:188.013000px;}
.y1da{bottom:191.622300px;}
.y1b2{bottom:192.194100px;}
.y28f{bottom:193.242450px;}
.y234{bottom:193.263000px;}
.y146{bottom:193.611450px;}
.y200{bottom:196.466700px;}
.y21e{bottom:196.846950px;}
.y163{bottom:197.001300px;}
.y172{bottom:197.007150px;}
.yfb{bottom:197.013000px;}
.y138{bottom:197.361450px;}
.y1c0{bottom:199.694100px;}
.y106{bottom:199.977600px;}
.yaa{bottom:200.745300px;}
.y86{bottom:200.751300px;}
.yd3{bottom:200.757000px;}
.y25e{bottom:200.778000px;}
.y1a0{bottom:204.495300px;}
.y58{bottom:204.816000px;}
.y1b1{bottom:208.694100px;}
.y21d{bottom:209.422950px;}
.y28e{bottom:209.742450px;}
.y233{bottom:209.763000px;}
.y145{bottom:210.111450px;}
.y1ff{bottom:213.470700px;}
.y15f{bottom:213.501300px;}
.y171{bottom:213.507150px;}
.yfa{bottom:213.513000px;}
.y137{bottom:213.861450px;}
.y2f2{bottom:214.209150px;}
.y57{bottom:215.319000px;}
.y1bf{bottom:216.194100px;}
.y110{bottom:216.471750px;}
.y105{bottom:216.477600px;}
.y85{bottom:217.251300px;}
.yd2{bottom:217.257000px;}
.ya9{bottom:217.257150px;}
.y2c2{bottom:217.263000px;}
.y25d{bottom:217.278000px;}
.y19f{bottom:220.995300px;}
.y21c{bottom:224.191800px;}
.y1b0{bottom:225.194100px;}
.y56{bottom:225.822000px;}
.y1d9{bottom:226.103550px;}
.y1d3{bottom:226.109400px;}
.y28d{bottom:226.242450px;}
.y232{bottom:226.263000px;}
.y144{bottom:226.611450px;}
.y2f1{bottom:227.709150px;}
.y38{bottom:228.199950px;}
.y15e{bottom:230.001300px;}
.y170{bottom:230.007150px;}
.yf9{bottom:230.013000px;}
.y136{bottom:230.361450px;}
.y1fe{bottom:230.474700px;}
.y1be{bottom:232.694100px;}
.y10f{bottom:232.971750px;}
.y104{bottom:232.977600px;}
.y84{bottom:233.751300px;}
.yd1{bottom:233.757000px;}
.ya8{bottom:233.757150px;}
.y2c1{bottom:233.763000px;}
.y25c{bottom:233.778000px;}
.y55{bottom:236.325000px;}
.y19e{bottom:237.495300px;}
.y37{bottom:238.702950px;}
.y21a{bottom:238.987800px;}
.y2f0{bottom:241.209150px;}
.y1af{bottom:241.694100px;}
.y1d8{bottom:242.603550px;}
.y1d2{bottom:242.609400px;}
.y28c{bottom:242.742450px;}
.y231{bottom:242.763000px;}
.y143{bottom:243.105450px;}
.y219{bottom:246.187800px;}
.y15d{bottom:246.501300px;}
.y16f{bottom:246.507150px;}
.yf8{bottom:246.513000px;}
.y54{bottom:246.828000px;}
.y1fc{bottom:247.335600px;}
.y36{bottom:249.205950px;}
.y10e{bottom:249.471750px;}
.y103{bottom:249.477600px;}
.y83{bottom:250.251300px;}
.yd0{bottom:250.257000px;}
.ya7{bottom:250.257150px;}
.y2c0{bottom:250.263000px;}
.y25b{bottom:250.278000px;}
.y21b{bottom:253.387800px;}
.y19d{bottom:253.995300px;}
.y1fb{bottom:254.535600px;}
.y2ef{bottom:254.709150px;}
.y1ae{bottom:258.194100px;}
.y1d1{bottom:259.109400px;}
.y28b{bottom:259.242450px;}
.y230{bottom:259.263000px;}
.y142{bottom:259.605450px;}
.y134{bottom:259.611450px;}
.y1fd{bottom:261.735600px;}
.y1bd{bottom:261.944100px;}
.y15c{bottom:263.001300px;}
.y16e{bottom:263.007150px;}
.yf7{bottom:263.013000px;}
.y217{bottom:265.963800px;}
.y10d{bottom:265.971750px;}
.y102{bottom:265.977600px;}
.y53{bottom:266.079000px;}
.y82{bottom:266.751300px;}
.ycf{bottom:266.757000px;}
.y2bf{bottom:266.763000px;}
.y25a{bottom:266.778000px;}
.y2ee{bottom:268.209150px;}
.y35{bottom:268.456950px;}
.y19c{bottom:270.495300px;}
.y1d7{bottom:271.853550px;}
.y216{bottom:273.163800px;}
.y1ad{bottom:274.694100px;}
.y1d0{bottom:275.609400px;}
.y28a{bottom:275.742450px;}
.y22f{bottom:275.763000px;}
.y141{bottom:276.105450px;}
.y133{bottom:276.111450px;}
.y1f9{bottom:276.387600px;}
.y52{bottom:276.582000px;}
.y1bc{bottom:278.444100px;}
.y34{bottom:278.959950px;}
.y15b{bottom:279.501300px;}
.ya6{bottom:279.507150px;}
.yf6{bottom:279.513000px;}
.y218{bottom:280.363800px;}
.y81{bottom:283.251300px;}
.yce{bottom:283.257000px;}
.y2be{bottom:283.263000px;}
.y259{bottom:283.278000px;}
.y1f8{bottom:283.587600px;}
.y19b{bottom:286.995300px;}
.y51{bottom:287.085000px;}
.y1d6{bottom:288.353550px;}
.y33{bottom:289.462950px;}
.y1fa{bottom:290.787600px;}
.y1ac{bottom:291.194100px;}
.y1cf{bottom:292.109400px;}
.y289{bottom:292.242450px;}
.y22e{bottom:292.263000px;}
.y140{bottom:292.605450px;}
.y132{bottom:292.611450px;}
.y214{bottom:292.939800px;}
.y12b{bottom:294.033450px;}
.y2ed{bottom:294.465150px;}
.y15a{bottom:296.001300px;}
.ya5{bottom:296.007150px;}
.yf5{bottom:296.013000px;}
.y50{bottom:297.588000px;}
.y80{bottom:299.751300px;}
.ycd{bottom:299.757000px;}
.y2bd{bottom:299.763000px;}
.y32{bottom:299.965950px;}
.y213{bottom:300.139800px;}
.y1f6{bottom:303.363600px;}
.y19a{bottom:303.495300px;}
.y1d5{bottom:304.853550px;}
.y12a{bottom:306.033450px;}
.y215{bottom:307.339800px;}
.y1ab{bottom:307.694100px;}
.y2ec{bottom:307.965150px;}
.y4f{bottom:308.091000px;}
.y1ce{bottom:308.609400px;}
.y288{bottom:308.742450px;}
.y22d{bottom:308.763000px;}
.y13f{bottom:309.105450px;}
.y131{bottom:309.111450px;}
.y31{bottom:310.468950px;}
.y1f5{bottom:310.563600px;}
.y159{bottom:312.501300px;}
.ya4{bottom:312.507150px;}
.yf4{bottom:312.513000px;}
.y258{bottom:312.528000px;}
.y7f{bottom:316.251300px;}
.ycc{bottom:316.257000px;}
.y2bc{bottom:316.263000px;}
.y1f7{bottom:317.763600px;}
.y4e{bottom:318.594000px;}
.y129{bottom:319.545450px;}
.y211{bottom:319.915800px;}
.y199{bottom:319.995300px;}
.y30{bottom:320.971950px;}
.y1d4{bottom:321.359400px;}
.y2eb{bottom:321.465150px;}
.y1aa{bottom:324.194100px;}
.y287{bottom:325.242450px;}
.y22c{bottom:325.263000px;}
.y13e{bottom:325.605450px;}
.y130{bottom:325.611450px;}
.y210{bottom:327.115800px;}
.y158{bottom:329.001300px;}
.ya3{bottom:329.007150px;}
.yf3{bottom:329.013000px;}
.y257{bottom:329.028000px;}
.y4d{bottom:329.097000px;}
.y1f3{bottom:330.339600px;}
.y7e{bottom:332.751300px;}
.ycb{bottom:332.757000px;}
.y2bb{bottom:332.763000px;}
.y128{bottom:333.993450px;}
.y212{bottom:334.315800px;}
.y2ea{bottom:334.965150px;}
.y198{bottom:336.495300px;}
.y1f2{bottom:337.539600px;}
.y1ca{bottom:337.859400px;}
.y4c{bottom:339.600000px;}
.y2f{bottom:340.222950px;}
.y1a9{bottom:340.694100px;}
.y286{bottom:341.742450px;}
.y13d{bottom:342.105450px;}
.y12f{bottom:342.111450px;}
.y1f4{bottom:344.739600px;}
.y157{bottom:345.501300px;}
.ya2{bottom:345.507150px;}
.yf2{bottom:345.513000px;}
.y256{bottom:345.528000px;}
.y127{bottom:348.441450px;}
.y2e9{bottom:348.465150px;}
.y20f{bottom:349.111800px;}
.yda{bottom:349.245300px;}
.y7d{bottom:349.251300px;}
.yca{bottom:349.257000px;}
.y2ba{bottom:349.263000px;}
.y4b{bottom:350.103000px;}
.y2e{bottom:350.725950px;}
.y197{bottom:352.995300px;}
.y1c9{bottom:354.359400px;}
.y22b{bottom:354.513000px;}
.y1a8{bottom:357.194100px;}
.y285{bottom:358.242450px;}
.y13c{bottom:358.605450px;}
.y12e{bottom:358.611450px;}
.y1f1{bottom:359.535600px;}
.y4a{bottom:360.606000px;}
.y2d{bottom:361.228950px;}
.y156{bottom:362.001300px;}
.ya1{bottom:362.007150px;}
.yf1{bottom:362.013000px;}
.y255{bottom:362.028000px;}
.y126{bottom:362.889450px;}
.y7c{bottom:365.751300px;}
.y2b9{bottom:365.763000px;}
.y20e{bottom:366.119700px;}
.y196{bottom:369.495300px;}
.y1c8{bottom:370.859400px;}
.y22a{bottom:371.013000px;}
.y49{bottom:371.109000px;}
.y2c{bottom:371.731950px;}
.y1a7{bottom:373.694100px;}
.y2e8{bottom:374.721150px;}
.y284{bottom:374.742450px;}
.y13b{bottom:375.105450px;}
.y12d{bottom:375.111450px;}
.y125{bottom:376.362000px;}
.y1f0{bottom:376.543350px;}
.y155{bottom:378.501300px;}
.yc9{bottom:378.507000px;}
.ya0{bottom:378.507150px;}
.y254{bottom:378.528000px;}
.y2b{bottom:382.234950px;}
.y7b{bottom:382.251300px;}
.y2b8{bottom:382.263000px;}
.y20d{bottom:383.127600px;}
.y195{bottom:385.995300px;}
.y229{bottom:387.513000px;}
.y2e7{bottom:388.221150px;}
.y124{bottom:388.938000px;}
.y48{bottom:390.360000px;}
.y283{bottom:391.242450px;}
.yf0{bottom:391.263000px;}
.y2a{bottom:392.737950px;}
.y1ef{bottom:393.551250px;}
.y154{bottom:395.001300px;}
.yc8{bottom:395.007000px;}
.y9f{bottom:395.007150px;}
.y253{bottom:395.028000px;}
.y2b7{bottom:398.763000px;}
.y20c{bottom:400.135500px;}
.y47{bottom:400.863000px;}
.y123{bottom:401.514000px;}
.y2e6{bottom:401.721150px;}
.y194{bottom:402.495300px;}
.y29{bottom:403.240950px;}
.y228{bottom:404.013000px;}
.y282{bottom:407.742450px;}
.yef{bottom:407.763000px;}
.y1ee{bottom:410.559150px;}
.y46{bottom:411.366000px;}
.y7a{bottom:411.501300px;}
.yc7{bottom:411.507000px;}
.y9e{bottom:411.507150px;}
.y2a6{bottom:411.513000px;}
.y252{bottom:411.528000px;}
.y28{bottom:413.743950px;}
.y122{bottom:414.090000px;}
.y2e5{bottom:415.221150px;}
.y2b6{bottom:415.263000px;}
.y20b{bottom:417.143250px;}
.y193{bottom:418.995300px;}
.y227{bottom:420.513000px;}
.y45{bottom:421.869000px;}
.y281{bottom:424.242450px;}
.y16d{bottom:424.257150px;}
.yee{bottom:424.263000px;}
.y121{bottom:426.666000px;}
.y1ed{bottom:427.567050px;}
.y79{bottom:428.001300px;}
.yc6{bottom:428.007000px;}
.y9d{bottom:428.007150px;}
.y2a5{bottom:428.013000px;}
.y251{bottom:428.028000px;}
.y2b5{bottom:431.763000px;}
.y44{bottom:432.372000px;}
.y27{bottom:432.994950px;}
.y20a{bottom:434.147250px;}
.y192{bottom:435.495300px;}
.y226{bottom:437.013000px;}
.y120{bottom:439.242000px;}
.y280{bottom:440.742450px;}
.y16c{bottom:440.757150px;}
.yed{bottom:440.763000px;}
.y2e4{bottom:441.477150px;}
.y26{bottom:443.497950px;}
.y78{bottom:444.501300px;}
.yc5{bottom:444.507000px;}
.y9c{bottom:444.507150px;}
.y2a4{bottom:444.513000px;}
.y250{bottom:444.528000px;}
.y1ec{bottom:444.574950px;}
.y2b4{bottom:448.263000px;}
.y209{bottom:451.155150px;}
.y43{bottom:451.623000px;}
.y11f{bottom:451.818000px;}
.y191{bottom:451.995300px;}
.y225{bottom:453.513000px;}
.y25{bottom:454.000950px;}
.y2e3{bottom:454.977150px;}
.y27f{bottom:457.242450px;}
.y16b{bottom:457.257150px;}
.yec{bottom:457.263000px;}
.y77{bottom:461.001300px;}
.yc4{bottom:461.007000px;}
.y9b{bottom:461.007150px;}
.y2a3{bottom:461.013000px;}
.y24f{bottom:461.028000px;}
.y1eb{bottom:461.578950px;}
.y42{bottom:462.126000px;}
.y11e{bottom:464.394000px;}
.y24{bottom:464.503950px;}
.y2b3{bottom:464.763000px;}
.y208{bottom:468.166950px;}
.y2e2{bottom:468.477150px;}
.y190{bottom:468.495300px;}
.y224{bottom:470.013000px;}
.y41{bottom:472.629000px;}
.y27e{bottom:473.742450px;}
.y16a{bottom:473.757150px;}
.yeb{bottom:473.763000px;}
.y23{bottom:475.006950px;}
.y11d{bottom:476.970000px;}
.y76{bottom:477.501300px;}
.yc3{bottom:477.507000px;}
.y9a{bottom:477.507150px;}
.y2a2{bottom:477.513000px;}
.y24e{bottom:477.528000px;}
.y1ea{bottom:478.589400px;}
.y2b2{bottom:481.263000px;}
.y2e1{bottom:481.977150px;}
.y40{bottom:483.132000px;}
.y18f{bottom:484.995300px;}
.y207{bottom:485.170950px;}
.y22{bottom:485.509950px;}
.y223{bottom:486.513000px;}
.y11c{bottom:489.546000px;}
.y27d{bottom:490.242450px;}
.y153{bottom:490.257150px;}
.y3f{bottom:493.635000px;}
.y75{bottom:494.001300px;}
.yc2{bottom:494.007000px;}
.y99{bottom:494.007150px;}
.y2a1{bottom:494.013000px;}
.y24d{bottom:494.028000px;}
.y2e0{bottom:495.477150px;}
.y1e9{bottom:495.593400px;}
.y2b1{bottom:497.763000px;}
.y206{bottom:500.866950px;}
.y18e{bottom:501.495300px;}
.y11b{bottom:502.122000px;}
.yea{bottom:503.013000px;}
.y3e{bottom:504.138000px;}
.y21{bottom:504.760950px;}
.y27c{bottom:506.742450px;}
.y152{bottom:506.757150px;}
.yc1{bottom:510.507000px;}
.y74{bottom:510.507150px;}
.y2a0{bottom:510.513000px;}
.y24c{bottom:510.528000px;}
.y1e8{bottom:511.289400px;}
.y2b0{bottom:514.263000px;}
.y20{bottom:515.263950px;}
.y205{bottom:518.350950px;}
.y11a{bottom:518.704950px;}
.ye9{bottom:519.513000px;}
.y2df{bottom:521.733150px;}
.y27b{bottom:523.242450px;}
.y151{bottom:523.257150px;}
.y3d{bottom:523.401900px;}
.y1f{bottom:525.766950px;}
.y1e7{bottom:526.397400px;}
.yc0{bottom:527.007000px;}
.y73{bottom:527.007150px;}
.y29f{bottom:527.013000px;}
.y24b{bottom:527.028000px;}
.y18d{bottom:530.745300px;}
.y2af{bottom:530.763000px;}
.y204{bottom:534.933750px;}
.y2de{bottom:535.233150px;}
.y119{bottom:535.287600px;}
.ye8{bottom:536.013000px;}
.y1e{bottom:536.269950px;}
.y3c{bottom:538.395900px;}
.y27a{bottom:539.742450px;}
.y150{bottom:539.757150px;}
.y1e6{bottom:540.603000px;}
.ybf{bottom:543.507000px;}
.y72{bottom:543.507150px;}
.y29e{bottom:543.513000px;}
.y24a{bottom:543.528000px;}
.y1d{bottom:546.772950px;}
.y2ae{bottom:547.263000px;}
.y203{bottom:548.433750px;}
.y2dd{bottom:548.733150px;}
.y118{bottom:548.787600px;}
.ye7{bottom:552.513000px;}
.y3b{bottom:553.389900px;}
.y1e5{bottom:554.103000px;}
.y279{bottom:556.242450px;}
.y14f{bottom:556.257150px;}
.y1c{bottom:557.275950px;}
.ybe{bottom:560.007000px;}
.y71{bottom:560.007150px;}
.y29d{bottom:560.013000px;}
.y249{bottom:560.028000px;}
.y2dc{bottom:562.233150px;}
.y18c{bottom:563.745300px;}
.y3a{bottom:568.389900px;}
.ye6{bottom:569.013000px;}
.y278{bottom:572.742450px;}
.y14e{bottom:572.757150px;}
.y18b{bottom:575.253510px;}
.y2db{bottom:575.733150px;}
.y70{bottom:576.507150px;}
.y29c{bottom:576.513000px;}
.y248{bottom:576.528000px;}
.y18a{bottom:580.257150px;}
.y39{bottom:583.389900px;}
.y1b{bottom:585.116850px;}
.ye5{bottom:585.513000px;}
.y277{bottom:589.248450px;}
.ybd{bottom:589.257000px;}
.y14d{bottom:589.257150px;}
.y6f{bottom:593.007150px;}
.y29b{bottom:593.013000px;}
.y247{bottom:593.028000px;}
.y189{bottom:596.757150px;}
.y2da{bottom:601.989150px;}
.ye4{bottom:602.013000px;}
.y276{bottom:605.748450px;}
.y98{bottom:605.757150px;}
.y162{bottom:605.763000px;}
.y2ad{bottom:609.513000px;}
.y188{bottom:613.257150px;}
.y2d9{bottom:615.489150px;}
.ye3{bottom:618.513000px;}
.y275{bottom:622.248450px;}
.ybc{bottom:622.257000px;}
.y6e{bottom:622.257150px;}
.y161{bottom:622.263000px;}
.y246{bottom:622.278000px;}
.y2ac{bottom:626.013000px;}
.yf{bottom:627.648450px;}
.y2d8{bottom:628.989150px;}
.ye2{bottom:635.013000px;}
.y274{bottom:638.748450px;}
.ybb{bottom:638.757000px;}
.y6d{bottom:638.757150px;}
.y29a{bottom:638.763000px;}
.y2d7{bottom:642.489150px;}
.y187{bottom:642.507150px;}
.y2ab{bottom:642.513000px;}
.y202{bottom:645.305400px;}
.ye{bottom:648.162150px;}
.ye1{bottom:651.513000px;}
.y245{bottom:651.528000px;}
.y273{bottom:655.248450px;}
.yba{bottom:655.257000px;}
.y6c{bottom:655.257150px;}
.y299{bottom:655.263000px;}
.y186{bottom:659.007150px;}
.y2aa{bottom:659.013000px;}
.y1e3{bottom:663.726300px;}
.y14c{bottom:666.765360px;}
.ye0{bottom:668.013000px;}
.y244{bottom:668.028000px;}
.y2d6{bottom:668.745150px;}
.y272{bottom:671.748450px;}
.yb9{bottom:671.757000px;}
.y6b{bottom:671.757150px;}
.y14b{bottom:671.763000px;}
.yd{bottom:673.164150px;}
.y185{bottom:675.507150px;}
.y2a9{bottom:675.513000px;}
.y2d5{bottom:682.245150px;}
.ydf{bottom:684.513000px;}
.y243{bottom:684.528000px;}
.y271{bottom:688.248450px;}
.yb8{bottom:688.257000px;}
.y6a{bottom:688.257150px;}
.y14a{bottom:688.263000px;}
.yc{bottom:689.661150px;}
.y184{bottom:692.007150px;}
.y2a8{bottom:692.013000px;}
.y2d4{bottom:695.745150px;}
.yde{bottom:701.013000px;}
.y242{bottom:701.028000px;}
.y270{bottom:704.748450px;}
.y69{bottom:704.757150px;}
.yb7{bottom:704.763000px;}
.y183{bottom:708.507150px;}
.y2a7{bottom:708.513000px;}
.y2d3{bottom:709.245150px;}
.yb{bottom:714.663150px;}
.ydd{bottom:717.513000px;}
.y241{bottom:717.528000px;}
.y26f{bottom:721.248450px;}
.y68{bottom:721.257150px;}
.y97{bottom:721.260300px;}
.yb6{bottom:721.263000px;}
.y2d2{bottom:722.745150px;}
.ya{bottom:731.160150px;}
.y182{bottom:732.765360px;}
.ydc{bottom:734.013000px;}
.y240{bottom:734.028000px;}
.y26e{bottom:737.748450px;}
.y67{bottom:737.757150px;}
.y96{bottom:737.760300px;}
.yb5{bottom:737.763000px;}
.y181{bottom:737.772150px;}
.y2d1{bottom:749.001150px;}
.ydb{bottom:750.513000px;}
.y23f{bottom:750.528000px;}
.y26d{bottom:754.248450px;}
.y66{bottom:754.257150px;}
.y95{bottom:754.260300px;}
.y298{bottom:754.263000px;}
.y9{bottom:756.164100px;}
.y2d0{bottom:762.501150px;}
.yb4{bottom:767.013000px;}
.y180{bottom:767.022150px;}
.y23e{bottom:767.028000px;}
.y26c{bottom:770.748450px;}
.y65{bottom:770.757150px;}
.y94{bottom:770.760300px;}
.y297{bottom:770.763000px;}
.y8{bottom:772.664100px;}
.y2cf{bottom:776.001150px;}
.yb3{bottom:783.513000px;}
.y17f{bottom:783.522150px;}
.y23d{bottom:783.528000px;}
.y26b{bottom:787.248450px;}
.y64{bottom:787.257150px;}
.y93{bottom:787.260300px;}
.y296{bottom:787.263000px;}
.y149{bottom:795.021360px;}
.y7{bottom:797.668050px;}
.yb2{bottom:800.013000px;}
.y17e{bottom:800.022150px;}
.y23c{bottom:800.028000px;}
.y2ce{bottom:802.257150px;}
.y26a{bottom:803.748450px;}
.y63{bottom:803.763000px;}
.y6{bottom:814.168050px;}
.y2cd{bottom:815.757150px;}
.y92{bottom:816.510300px;}
.yb1{bottom:816.513000px;}
.y17d{bottom:816.522150px;}
.y23b{bottom:816.528000px;}
.y269{bottom:820.248450px;}
.y62{bottom:820.263000px;}
.y2cc{bottom:829.257150px;}
.y5{bottom:830.668050px;}
.y91{bottom:833.010300px;}
.yb0{bottom:833.013000px;}
.y17c{bottom:833.022150px;}
.y23a{bottom:833.028000px;}
.y61{bottom:836.763000px;}
.y2cb{bottom:842.757150px;}
.y268{bottom:849.498450px;}
.y90{bottom:849.510300px;}
.yaf{bottom:849.513000px;}
.y17b{bottom:849.522150px;}
.y239{bottom:849.528000px;}
.y60{bottom:853.263000px;}
.y135{bottom:855.754650px;}
.y2ca{bottom:856.257150px;}
.y1bb{bottom:856.463400px;}
.y1cd{bottom:857.526300px;}
.y267{bottom:865.998450px;}
.y8f{bottom:866.010300px;}
.yae{bottom:866.013000px;}
.y17a{bottom:866.022150px;}
.y238{bottom:866.028000px;}
.y117{bottom:869.254650px;}
.y1ba{bottom:869.963400px;}
.y1cc{bottom:871.026300px;}
.y4{bottom:874.803000px;}
.y2{bottom:877.936350px;}
.y266{bottom:882.498450px;}
.y8e{bottom:882.510300px;}
.y5f{bottom:882.513000px;}
.y179{bottom:882.522150px;}
.y2c9{bottom:882.543000px;}
.y116{bottom:882.754650px;}
.y1b9{bottom:883.463400px;}
.y3{bottom:883.803000px;}
.y1cb{bottom:884.526300px;}
.y1{bottom:926.335200px;}
.y5c{bottom:929.545500px;}
.yab{bottom:929.550000px;}
.y221{bottom:932.304450px;}
.y222{bottom:932.308650px;}
.y12c{bottom:932.312850px;}
.h10{height:11.826000px;}
.he{height:11.970000px;}
.ha{height:25.013672px;}
.h4{height:31.587891px;}
.h9{height:31.974609px;}
.h1d{height:33.351562px;}
.hd{height:40.252734px;}
.h20{height:40.491520px;}
.h11{height:41.074219px;}
.h23{height:41.660156px;}
.hf{height:41.689453px;}
.h8{height:42.117188px;}
.h7{height:47.381836px;}
.h6{height:47.961914px;}
.h18{height:50.612900px;}
.h1a{height:50.625500px;}
.hc{height:52.225195px;}
.h16{height:52.622484px;}
.h15{height:52.623084px;}
.h2{height:52.646484px;}
.h17{height:52.657284px;}
.h12{height:52.670484px;}
.h22{height:52.706484px;}
.h5{height:53.291016px;}
.hb{height:53.823926px;}
.h21{height:54.932381px;}
.h19{height:61.656613px;}
.h1c{height:67.269188px;}
.h1b{height:70.917188px;}
.h13{height:72.613044px;}
.h14{height:72.613644px;}
.h3{height:91.054491px;}
.h1e{height:722.835000px;}
.h1f{height:723.000000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w2{width:85.742700px;}
.w3{width:555.757050px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.w4{width:977.953500px;}
.w5{width:978.000000px;}
.x0{left:0.000000px;}
.x39{left:78.843450px;}
.x1{left:80.787450px;}
.x7{left:82.383750px;}
.x1d{left:85.039350px;}
.x1b{left:87.307500px;}
.x19{left:88.522950px;}
.x30{left:90.545250px;}
.x2{left:91.760550px;}
.xb{left:95.669250px;}
.x56{left:96.912750px;}
.x21{left:99.919350px;}
.x2d{left:106.330350px;}
.x53{left:110.156400px;}
.x17{left:121.450350px;}
.x6{left:123.992850px;}
.x2c{left:127.219950px;}
.x6c{left:129.681750px;}
.x14{left:136.969650px;}
.x6f{left:142.741950px;}
.x5{left:146.132850px;}
.x24{left:147.479490px;}
.x33{left:157.435200px;}
.x13{left:159.769050px;}
.x1a{left:173.646450px;}
.x6a{left:174.700800px;}
.xa{left:179.346750px;}
.x18{left:194.398500px;}
.x3c{left:215.458350px;}
.x3a{left:223.911450px;}
.x25{left:228.232290px;}
.x20{left:258.363750px;}
.x27{left:266.573550px;}
.x2e{left:286.855350px;}
.x35{left:288.771450px;}
.x31{left:294.408750px;}
.x34{left:313.431450px;}
.x32{left:334.180200px;}
.x16{left:336.856350px;}
.x1f{left:337.919250px;}
.x15{left:352.942050px;}
.x47{left:355.114500px;}
.x1e{left:357.169350px;}
.x57{left:359.408100px;}
.x3d{left:361.138500px;}
.x8{left:366.488100px;}
.x12{left:369.917250px;}
.x37{left:371.595450px;}
.x23{left:374.183100px;}
.x54{left:375.552750px;}
.x55{left:378.360750px;}
.xd{left:379.782600px;}
.xf{left:381.026850px;}
.x11{left:384.803250px;}
.x22{left:389.063100px;}
.xe{left:394.521450px;}
.x36{left:396.927450px;}
.x10{left:417.967950px;}
.x28{left:442.246650px;}
.x49{left:445.654500px;}
.x51{left:449.386500px;}
.x3e{left:451.678500px;}
.x2b{left:456.621150px;}
.x69{left:459.128100px;}
.xc{left:464.869200px;}
.x6d{left:465.972450px;}
.x3b{left:467.651850px;}
.x52{left:470.309400px;}
.x2a{left:472.978650px;}
.x9{left:485.631150px;}
.x68{left:488.792100px;}
.x48{left:490.318500px;}
.x58{left:494.900100px;}
.x29{left:496.883850px;}
.x38{left:501.375450px;}
.x4{left:526.625250px;}
.x3{left:528.137250px;}
.x65{left:537.668100px;}
.x40{left:543.910500px;}
.x5a{left:545.180100px;}
.x4c{left:588.082500px;}
.x59{left:589.400100px;}
.x3f{left:594.130500px;}
.x60{left:595.364100px;}
.x2f{left:611.170050px;}
.x6e{left:613.472700px;}
.x1c{left:619.088250px;}
.x6b{left:622.323150px;}
.x5b{left:623.324100px;}
.x62{left:626.288100px;}
.x26{left:629.957850px;}
.x42{left:634.882500px;}
.x66{left:641.252100px;}
.x4d{left:680.494500px;}
.x41{left:683.542500px;}
.x61{left:686.948100px;}
.x4a{left:689.518500px;}
.x5d{left:720.308100px;}
.x63{left:723.272100px;}
.x4f{left:727.666500px;}
.x44{left:731.710500px;}
.x5c{left:771.968100px;}
.x4e{left:779.326500px;}
.x43{left:782.374500px;}
.x5f{left:810.656100px;}
.x4b{left:812.398500px;}
.x67{left:816.584100px;}
.x46{left:821.422500px;}
.x64{left:825.620100px;}
.x50{left:861.034500px;}
.x5e{left:865.316100px;}
.x45{left:867.082500px;}
@media print{
.v4{vertical-align:-17.738667pt;}
.v9{vertical-align:-7.395733pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:14.198933pt;}
.v2{vertical-align:17.739733pt;}
.v3{vertical-align:21.333333pt;}
.v7{vertical-align:22.357333pt;}
.v6{vertical-align:25.600000pt;}
.v5{vertical-align:35.520000pt;}
.v1{vertical-align:52.859200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.019733pt;}
.ls7{letter-spacing:0.510933pt;}
.ls3{letter-spacing:8.638933pt;}
.ls1{letter-spacing:8.664533pt;}
.ls8{letter-spacing:34.026667pt;}
.ls2{letter-spacing:139.144000pt;}
.ls5{letter-spacing:211.569600pt;}
.ls6{letter-spacing:309.319467pt;}
.wsbf{word-spacing:-53.333333pt;}
.wsb2{word-spacing:-17.536640pt;}
.ws30{word-spacing:-13.333333pt;}
.wsfb{word-spacing:-10.666667pt;}
.ws0{word-spacing:-8.000000pt;}
.ws31{word-spacing:-7.773333pt;}
.wsfe{word-spacing:-6.218667pt;}
.wsac{word-spacing:-3.573333pt;}
.ws134{word-spacing:-3.146667pt;}
.ws12b{word-spacing:-3.093333pt;}
.ws13f{word-spacing:-2.880000pt;}
.ws9d{word-spacing:-2.613333pt;}
.ws96{word-spacing:-2.560000pt;}
.ws98{word-spacing:-2.453333pt;}
.ws97{word-spacing:-2.400000pt;}
.wsb0{word-spacing:-2.346667pt;}
.wsd5{word-spacing:-2.240000pt;}
.ws145{word-spacing:-2.186667pt;}
.wsb9{word-spacing:-2.133333pt;}
.wsf2{word-spacing:-2.080000pt;}
.wsc4{word-spacing:-2.026667pt;}
.ws41{word-spacing:-1.973333pt;}
.wsf9{word-spacing:-1.920000pt;}
.ws161{word-spacing:-1.877333pt;}
.ws5{word-spacing:-1.824000pt;}
.wsb3{word-spacing:-1.760000pt;}
.wsaa{word-spacing:-1.706667pt;}
.ws7{word-spacing:-1.664000pt;}
.ws7c{word-spacing:-1.653333pt;}
.ws50{word-spacing:-1.600000pt;}
.ws81{word-spacing:-1.546667pt;}
.wsa3{word-spacing:-1.493333pt;}
.wsee{word-spacing:-1.440000pt;}
.wsce{word-spacing:-1.386667pt;}
.ws140{word-spacing:-1.280000pt;}
.wsa2{word-spacing:-1.226667pt;}
.wsb4{word-spacing:-1.184000pt;}
.ws68{word-spacing:-1.173333pt;}
.ws52{word-spacing:-1.120000pt;}
.ws13{word-spacing:-1.088000pt;}
.ws7a{word-spacing:-1.066667pt;}
.ws9e{word-spacing:-1.013333pt;}
.ws6a{word-spacing:-0.960000pt;}
.ws156{word-spacing:-0.906667pt;}
.wsf4{word-spacing:-0.853333pt;}
.ws2d{word-spacing:-0.832000pt;}
.ws12f{word-spacing:-0.800000pt;}
.wsa0{word-spacing:-0.746667pt;}
.ws13b{word-spacing:-0.693333pt;}
.ws158{word-spacing:-0.640000pt;}
.ws3c{word-spacing:-0.533333pt;}
.ws29{word-spacing:-0.480000pt;}
.ws16{word-spacing:-0.448000pt;}
.ws42{word-spacing:-0.426667pt;}
.wsc3{word-spacing:-0.373333pt;}
.ws128{word-spacing:-0.320000pt;}
.ws13e{word-spacing:-0.288000pt;}
.ws12e{word-spacing:-0.266667pt;}
.ws32{word-spacing:-0.224000pt;}
.wsb7{word-spacing:-0.213333pt;}
.ws6e{word-spacing:-0.192000pt;}
.wsc{word-spacing:-0.160000pt;}
.ws4{word-spacing:-0.106667pt;}
.ws3{word-spacing:-0.064000pt;}
.ws2c{word-spacing:-0.032000pt;}
.ws2{word-spacing:0.000000pt;}
.wsef{word-spacing:0.053333pt;}
.ws6b{word-spacing:0.106667pt;}
.ws16a{word-spacing:0.128000pt;}
.ws12a{word-spacing:0.160000pt;}
.ws148{word-spacing:0.213333pt;}
.ws14{word-spacing:0.224000pt;}
.ws3a{word-spacing:0.266667pt;}
.wsf8{word-spacing:0.320000pt;}
.ws25{word-spacing:0.352000pt;}
.ws90{word-spacing:0.373333pt;}
.ws56{word-spacing:0.480000pt;}
.ws43{word-spacing:0.533333pt;}
.ws14d{word-spacing:0.586667pt;}
.ws142{word-spacing:0.640000pt;}
.wsb8{word-spacing:0.693333pt;}
.wsa{word-spacing:0.704000pt;}
.wse0{word-spacing:0.746667pt;}
.ws4a{word-spacing:0.800000pt;}
.wsb1{word-spacing:0.810667pt;}
.wsd2{word-spacing:0.853333pt;}
.wsb5{word-spacing:0.906667pt;}
.ws88{word-spacing:0.960000pt;}
.ws71{word-spacing:1.013333pt;}
.ws27{word-spacing:1.024000pt;}
.ws159{word-spacing:1.066667pt;}
.ws2b{word-spacing:1.088000pt;}
.ws58{word-spacing:1.120000pt;}
.ws15c{word-spacing:1.152000pt;}
.ws12d{word-spacing:1.173333pt;}
.wsd4{word-spacing:1.226667pt;}
.ws15d{word-spacing:1.237333pt;}
.ws59{word-spacing:1.280000pt;}
.ws51{word-spacing:1.333333pt;}
.wsa1{word-spacing:1.386667pt;}
.wsfa{word-spacing:1.493333pt;}
.ws72{word-spacing:1.546667pt;}
.ws1a{word-spacing:1.600000pt;}
.ws9{word-spacing:1.632000pt;}
.wsd0{word-spacing:1.653333pt;}
.ws1e{word-spacing:1.664000pt;}
.wse8{word-spacing:1.706667pt;}
.ws24{word-spacing:1.728000pt;}
.ws85{word-spacing:1.760000pt;}
.ws8{word-spacing:1.792000pt;}
.wsc1{word-spacing:1.803413pt;}
.wsdd{word-spacing:1.813333pt;}
.ws168{word-spacing:1.834667pt;}
.wsad{word-spacing:1.866667pt;}
.ws1d{word-spacing:1.920000pt;}
.ws12c{word-spacing:1.973333pt;}
.ws34{word-spacing:2.026667pt;}
.wsd{word-spacing:2.048000pt;}
.ws167{word-spacing:2.090667pt;}
.wse5{word-spacing:2.133333pt;}
.ws169{word-spacing:2.176000pt;}
.ws67{word-spacing:2.186667pt;}
.ws14a{word-spacing:2.240000pt;}
.ws49{word-spacing:2.293333pt;}
.ws2a{word-spacing:2.304000pt;}
.ws15e{word-spacing:2.346667pt;}
.ws17{word-spacing:2.368000pt;}
.ws10{word-spacing:2.400000pt;}
.ws69{word-spacing:2.506667pt;}
.wse1{word-spacing:2.560000pt;}
.ws6{word-spacing:2.592000pt;}
.wsc0{word-spacing:2.613333pt;}
.ws20{word-spacing:2.624000pt;}
.ws91{word-spacing:2.666667pt;}
.ws92{word-spacing:2.720000pt;}
.ws45{word-spacing:2.773333pt;}
.ws7d{word-spacing:2.826667pt;}
.ws87{word-spacing:2.880000pt;}
.ws99{word-spacing:2.986667pt;}
.ws6d{word-spacing:3.040000pt;}
.ws160{word-spacing:3.072000pt;}
.ws70{word-spacing:3.093333pt;}
.ws12{word-spacing:3.136000pt;}
.ws7b{word-spacing:3.146667pt;}
.wsd6{word-spacing:3.200000pt;}
.ws5b{word-spacing:3.253333pt;}
.ws65{word-spacing:3.306667pt;}
.ws15b{word-spacing:3.328000pt;}
.ws155{word-spacing:3.360000pt;}
.ws7f{word-spacing:3.413333pt;}
.ws53{word-spacing:3.466667pt;}
.ws15{word-spacing:3.488000pt;}
.wsa7{word-spacing:3.520000pt;}
.ws7e{word-spacing:3.573333pt;}
.ws23{word-spacing:3.616000pt;}
.ws6c{word-spacing:3.626667pt;}
.wsb{word-spacing:3.648000pt;}
.ws64{word-spacing:3.680000pt;}
.ws22{word-spacing:3.712000pt;}
.ws147{word-spacing:3.733333pt;}
.ws48{word-spacing:3.786667pt;}
.wse{word-spacing:3.808000pt;}
.ws6f{word-spacing:3.840000pt;}
.wsf{word-spacing:3.872000pt;}
.ws74{word-spacing:3.893333pt;}
.ws163{word-spacing:3.925333pt;}
.ws39{word-spacing:3.946667pt;}
.wsd9{word-spacing:4.000000pt;}
.ws62{word-spacing:4.053333pt;}
.ws26{word-spacing:4.064000pt;}
.ws77{word-spacing:4.106667pt;}
.ws19{word-spacing:4.160000pt;}
.ws37{word-spacing:4.213333pt;}
.wsbb{word-spacing:4.266667pt;}
.wscc{word-spacing:4.320000pt;}
.wsc2{word-spacing:4.373333pt;}
.ws18{word-spacing:4.384000pt;}
.ws16c{word-spacing:4.394667pt;}
.ws11{word-spacing:4.416000pt;}
.ws57{word-spacing:4.426667pt;}
.ws14e{word-spacing:4.480000pt;}
.ws165{word-spacing:4.522667pt;}
.ws4c{word-spacing:4.533333pt;}
.ws28{word-spacing:4.576000pt;}
.ws151{word-spacing:4.586667pt;}
.ws86{word-spacing:4.640000pt;}
.ws35{word-spacing:4.693333pt;}
.ws1f{word-spacing:4.736000pt;}
.ws60{word-spacing:4.746667pt;}
.ws94{word-spacing:4.800000pt;}
.ws132{word-spacing:4.853333pt;}
.wsde{word-spacing:4.906667pt;}
.wsa6{word-spacing:4.960000pt;}
.wsf0{word-spacing:5.013333pt;}
.ws3e{word-spacing:5.066667pt;}
.ws5e{word-spacing:5.120000pt;}
.wsca{word-spacing:5.173333pt;}
.wsae{word-spacing:5.280000pt;}
.ws16b{word-spacing:5.290667pt;}
.wsed{word-spacing:5.333333pt;}
.ws2e{word-spacing:5.376000pt;}
.ws95{word-spacing:5.386667pt;}
.ws13d{word-spacing:5.440000pt;}
.ws76{word-spacing:5.493333pt;}
.ws63{word-spacing:5.546667pt;}
.ws46{word-spacing:5.600000pt;}
.wsba{word-spacing:5.653333pt;}
.ws9b{word-spacing:5.706667pt;}
.ws137{word-spacing:5.760000pt;}
.ws138{word-spacing:5.813333pt;}
.wsa8{word-spacing:5.866667pt;}
.wse7{word-spacing:5.973333pt;}
.ws89{word-spacing:6.026667pt;}
.wse3{word-spacing:6.080000pt;}
.ws133{word-spacing:6.133333pt;}
.ws36{word-spacing:6.186667pt;}
.ws131{word-spacing:6.240000pt;}
.wsd3{word-spacing:6.293333pt;}
.wsc9{word-spacing:6.346667pt;}
.ws4b{word-spacing:6.400000pt;}
.wscf{word-spacing:6.453333pt;}
.ws15a{word-spacing:6.485333pt;}
.ws44{word-spacing:6.613333pt;}
.ws1c{word-spacing:6.624000pt;}
.ws8a{word-spacing:6.666667pt;}
.ws164{word-spacing:6.698667pt;}
.wsf6{word-spacing:6.720000pt;}
.ws139{word-spacing:6.773333pt;}
.wsd1{word-spacing:6.826667pt;}
.ws144{word-spacing:6.933333pt;}
.ws8c{word-spacing:7.040000pt;}
.wsaf{word-spacing:7.093333pt;}
.wse2{word-spacing:7.146667pt;}
.ws79{word-spacing:7.200000pt;}
.ws40{word-spacing:7.253333pt;}
.ws80{word-spacing:7.306667pt;}
.wsbe{word-spacing:7.360000pt;}
.ws1b{word-spacing:7.392000pt;}
.ws4f{word-spacing:7.413333pt;}
.wsdb{word-spacing:7.466667pt;}
.ws162{word-spacing:7.509333pt;}
.ws4d{word-spacing:7.573333pt;}
.wsc6{word-spacing:7.626667pt;}
.ws47{word-spacing:7.733333pt;}
.wsdc{word-spacing:7.786667pt;}
.ws14b{word-spacing:7.840000pt;}
.wsbc{word-spacing:7.946667pt;}
.ws38{word-spacing:8.000000pt;}
.ws15f{word-spacing:8.021333pt;}
.wsda{word-spacing:8.053333pt;}
.ws21{word-spacing:8.064000pt;}
.wsf5{word-spacing:8.106667pt;}
.wsbd{word-spacing:8.213333pt;}
.ws5d{word-spacing:8.266667pt;}
.ws3f{word-spacing:8.373333pt;}
.ws5c{word-spacing:8.480000pt;}
.wsd8{word-spacing:8.533333pt;}
.ws149{word-spacing:8.586667pt;}
.ws136{word-spacing:8.693333pt;}
.wsdf{word-spacing:8.746667pt;}
.wsa9{word-spacing:8.853333pt;}
.ws3d{word-spacing:8.906667pt;}
.ws84{word-spacing:9.120000pt;}
.wscb{word-spacing:9.226667pt;}
.ws157{word-spacing:9.280000pt;}
.ws5a{word-spacing:9.386667pt;}
.wsf1{word-spacing:9.440000pt;}
.ws13c{word-spacing:9.493333pt;}
.ws61{word-spacing:9.546667pt;}
.ws5f{word-spacing:9.600000pt;}
.ws33{word-spacing:9.760000pt;}
.wse4{word-spacing:9.866667pt;}
.ws9a{word-spacing:9.973333pt;}
.wscd{word-spacing:10.133333pt;}
.wsab{word-spacing:10.186667pt;}
.wse9{word-spacing:10.240000pt;}
.ws135{word-spacing:10.506667pt;}
.ws73{word-spacing:10.560000pt;}
.ws66{word-spacing:10.666667pt;}
.ws75{word-spacing:10.720000pt;}
.ws4e{word-spacing:10.933333pt;}
.ws2f{word-spacing:10.944000pt;}
.wsec{word-spacing:10.986667pt;}
.ws9c{word-spacing:11.040000pt;}
.wsf3{word-spacing:11.253333pt;}
.wsea{word-spacing:11.306667pt;}
.ws130{word-spacing:11.360000pt;}
.ws141{word-spacing:11.520000pt;}
.wsc8{word-spacing:11.626667pt;}
.wsd7{word-spacing:11.680000pt;}
.wsc7{word-spacing:11.733333pt;}
.ws166{word-spacing:11.904000pt;}
.ws153{word-spacing:12.000000pt;}
.wsf7{word-spacing:12.160000pt;}
.ws150{word-spacing:12.800000pt;}
.ws129{word-spacing:13.066667pt;}
.wsfc{word-spacing:13.280000pt;}
.ws8e{word-spacing:13.546667pt;}
.ws3b{word-spacing:14.026667pt;}
.ws14f{word-spacing:14.346667pt;}
.ws83{word-spacing:14.720000pt;}
.wsb6{word-spacing:14.880000pt;}
.wseb{word-spacing:14.933333pt;}
.ws13a{word-spacing:16.000000pt;}
.wse6{word-spacing:16.053333pt;}
.ws9f{word-spacing:16.746667pt;}
.ws78{word-spacing:16.853333pt;}
.ws152{word-spacing:16.960000pt;}
.ws8b{word-spacing:17.013333pt;}
.ws143{word-spacing:17.066667pt;}
.ws8d{word-spacing:17.120000pt;}
.ws54{word-spacing:17.173333pt;}
.ws14c{word-spacing:17.600000pt;}
.ws154{word-spacing:18.133333pt;}
.wsc5{word-spacing:18.293333pt;}
.ws146{word-spacing:18.773333pt;}
.ws93{word-spacing:18.826667pt;}
.ws55{word-spacing:20.106667pt;}
.ws82{word-spacing:24.320000pt;}
.ws8f{word-spacing:48.853333pt;}
.wsa5{word-spacing:161.621333pt;}
.ws102{word-spacing:161.660800pt;}
.ws124{word-spacing:165.674667pt;}
.ws11a{word-spacing:169.216000pt;}
.ws116{word-spacing:171.901867pt;}
.ws10c{word-spacing:171.904000pt;}
.ws122{word-spacing:178.133333pt;}
.ws107{word-spacing:178.859733pt;}
.ws117{word-spacing:183.996800pt;}
.ws10d{word-spacing:184.764800pt;}
.ws10b{word-spacing:187.713600pt;}
.ws10e{word-spacing:188.202667pt;}
.wsa4{word-spacing:190.080000pt;}
.ws101{word-spacing:190.547733pt;}
.ws114{word-spacing:190.548267pt;}
.ws118{word-spacing:192.401067pt;}
.ws103{word-spacing:194.651200pt;}
.ws106{word-spacing:198.973333pt;}
.ws121{word-spacing:203.946667pt;}
.ws100{word-spacing:206.842133pt;}
.ws10a{word-spacing:207.445333pt;}
.wsff{word-spacing:208.186133pt;}
.ws11c{word-spacing:209.213867pt;}
.ws115{word-spacing:210.705600pt;}
.ws11f{word-spacing:211.072000pt;}
.ws113{word-spacing:212.736000pt;}
.ws120{word-spacing:215.422933pt;}
.ws11e{word-spacing:216.339200pt;}
.ws11d{word-spacing:216.874667pt;}
.ws105{word-spacing:219.861333pt;}
.ws109{word-spacing:222.820267pt;}
.wsfd{word-spacing:224.810667pt;}
.ws112{word-spacing:225.493333pt;}
.ws127{word-spacing:226.090667pt;}
.ws108{word-spacing:227.748267pt;}
.ws11b{word-spacing:232.038933pt;}
.ws104{word-spacing:244.153600pt;}
.ws126{word-spacing:244.736000pt;}
.ws119{word-spacing:256.318400pt;}
.ws110{word-spacing:276.309333pt;}
.ws125{word-spacing:303.100267pt;}
.ws123{word-spacing:307.072000pt;}
.ws10f{word-spacing:309.651733pt;}
.ws111{word-spacing:312.171733pt;}
.ws1{word-spacing:1266.628267pt;}
._7{margin-left:-15.148800pt;}
._1b{margin-left:-14.101333pt;}
._62{margin-left:-6.880000pt;}
._4{margin-left:-5.280000pt;}
._0{margin-left:-4.096000pt;}
._3{margin-left:-2.933333pt;}
._2{margin-left:-1.977600pt;}
._8{margin-left:-0.940800pt;}
._1{width:1.783467pt;}
._6{width:2.752000pt;}
._5{width:3.648000pt;}
._9{width:5.376000pt;}
._a{width:6.272000pt;}
._c{width:7.253333pt;}
._10{width:8.213333pt;}
._b{width:9.120000pt;}
._e{width:10.133333pt;}
._f{width:11.936000pt;}
._63{width:13.354667pt;}
._d{width:14.986667pt;}
._1a{width:16.906667pt;}
._61{width:18.880000pt;}
._1c{width:64.938667pt;}
._22{width:96.256000pt;}
._49{width:105.642667pt;}
._23{width:116.992000pt;}
._5f{width:133.888000pt;}
._60{width:145.792000pt;}
._46{width:147.285333pt;}
._45{width:148.650667pt;}
._5e{width:152.320000pt;}
._47{width:153.898667pt;}
._44{width:154.837333pt;}
._14{width:169.941333pt;}
._15{width:172.288000pt;}
._16{width:174.677333pt;}
._17{width:177.024000pt;}
._21{width:179.712000pt;}
._48{width:181.604267pt;}
._4f{width:183.936000pt;}
._20{width:184.874667pt;}
._28{width:188.718400pt;}
._1d{width:196.949333pt;}
._12{width:198.400000pt;}
._13{width:200.746667pt;}
._19{width:203.093333pt;}
._33{width:207.701333pt;}
._53{width:213.376000pt;}
._2c{width:214.826667pt;}
._4e{width:218.698667pt;}
._52{width:219.861333pt;}
._37{width:226.602667pt;}
._1e{width:228.010667pt;}
._55{width:228.906667pt;}
._18{width:231.552000pt;}
._2a{width:236.586667pt;}
._2b{width:237.525333pt;}
._4b{width:239.445333pt;}
._26{width:241.024000pt;}
._54{width:248.887467pt;}
._40{width:250.368000pt;}
._32{width:251.716267pt;}
._24{width:252.970667pt;}
._41{width:255.402667pt;}
._3e{width:257.920000pt;}
._4a{width:259.259733pt;}
._25{width:264.064000pt;}
._3f{width:273.066667pt;}
._5b{width:275.584000pt;}
._31{width:277.034667pt;}
._2e{width:279.850667pt;}
._39{width:286.976000pt;}
._2d{width:308.736000pt;}
._34{width:310.144000pt;}
._38{width:315.873600pt;}
._35{width:318.362133pt;}
._56{width:331.306667pt;}
._36{width:333.525333pt;}
._57{width:336.047467pt;}
._1f{width:337.322667pt;}
._5d{width:365.440000pt;}
._43{width:386.005333pt;}
._30{width:544.170667pt;}
._50{width:565.376000pt;}
._51{width:567.125333pt;}
._59{width:578.378667pt;}
._3b{width:589.216000pt;}
._58{width:599.712000pt;}
._2f{width:601.045333pt;}
._3c{width:603.424000pt;}
._3a{width:610.549333pt;}
._4c{width:613.973333pt;}
._27{width:628.309333pt;}
._11{width:762.997333pt;}
._4d{width:765.088000pt;}
._29{width:795.424000pt;}
._5a{width:875.211733pt;}
._3d{width:905.556800pt;}
._42{width:1401.856000pt;}
._5c{width:2336.170667pt;}
.fs8{font-size:24.874667pt;}
.fs7{font-size:31.093333pt;}
.fs0{font-size:32.000000pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:52.266667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:53.866667pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:2.455867pt;}
.y5d{bottom:2.456133pt;}
.y5e{bottom:40.691067pt;}
.yad{bottom:42.580933pt;}
.y220{bottom:59.525333pt;}
.y1e4{bottom:63.370933pt;}
.y8d{bottom:75.773600pt;}
.y169{bottom:75.778933pt;}
.y178{bottom:75.784133pt;}
.y265{bottom:75.802667pt;}
.y1a{bottom:76.418533pt;}
.y1e2{bottom:77.182267pt;}
.y10c{bottom:78.419333pt;}
.y15{bottom:79.052400pt;}
.yd9{bottom:79.117333pt;}
.y1a6{bottom:82.440267pt;}
.y2c8{bottom:82.456000pt;}
.y1b8{bottom:82.839200pt;}
.y295{bottom:83.771067pt;}
.y19{bottom:86.018533pt;}
.y14{bottom:87.052400pt;}
.y101{bottom:87.122667pt;}
.y1e1{bottom:88.360933pt;}
.y1c7{bottom:89.495333pt;}
.y8c{bottom:90.440267pt;}
.y168{bottom:90.445600pt;}
.y177{bottom:90.450800pt;}
.y264{bottom:90.469333pt;}
.y10b{bottom:93.086000pt;}
.yd8{bottom:93.784000pt;}
.y1e0{bottom:93.950267pt;}
.y13{bottom:95.052400pt;}
.y18{bottom:95.618533pt;}
.y1a5{bottom:97.106933pt;}
.y2c7{bottom:97.122667pt;}
.y1b7{bottom:97.505867pt;}
.y294{bottom:98.437733pt;}
.y100{bottom:101.789333pt;}
.y12{bottom:103.052400pt;}
.y17{bottom:103.618533pt;}
.y1c6{bottom:104.162000pt;}
.y8b{bottom:105.106933pt;}
.y167{bottom:105.112267pt;}
.y263{bottom:105.136000pt;}
.y115{bottom:107.752667pt;}
.yd7{bottom:108.450667pt;}
.y1df{bottom:110.718267pt;}
.y11{bottom:111.052400pt;}
.y16{bottom:111.618533pt;}
.y1a4{bottom:111.773600pt;}
.y2c6{bottom:111.789333pt;}
.y1b6{bottom:112.172533pt;}
.y293{bottom:113.104400pt;}
.y176{bottom:116.450800pt;}
.yff{bottom:116.456000pt;}
.y1de{bottom:116.947600pt;}
.y1c5{bottom:118.828667pt;}
.y10{bottom:119.052400pt;}
.y10a{bottom:119.091200pt;}
.y8a{bottom:119.773600pt;}
.y262{bottom:119.802667pt;}
.y114{bottom:122.419333pt;}
.yd6{bottom:123.117333pt;}
.y1a3{bottom:126.440267pt;}
.y2c5{bottom:126.456000pt;}
.y1b5{bottom:126.839200pt;}
.y292{bottom:127.771067pt;}
.y237{bottom:127.789333pt;}
.y166{bottom:131.112267pt;}
.y175{bottom:131.117467pt;}
.yfe{bottom:131.122667pt;}
.y1c4{bottom:133.495333pt;}
.y1c3{bottom:133.505867pt;}
.y109{bottom:133.757867pt;}
.y1dd{bottom:134.355600pt;}
.y89{bottom:134.440267pt;}
.y261{bottom:134.469333pt;}
.y113{bottom:137.086000pt;}
.yd5{bottom:137.784000pt;}
.y1a2{bottom:141.106933pt;}
.y2c4{bottom:141.122667pt;}
.y1b4{bottom:141.505867pt;}
.y291{bottom:142.437733pt;}
.y236{bottom:142.456000pt;}
.y148{bottom:142.765733pt;}
.y165{bottom:145.778933pt;}
.y174{bottom:145.784133pt;}
.yfd{bottom:145.789333pt;}
.y13a{bottom:146.093733pt;}
.y5b{bottom:146.274667pt;}
.y1dc{bottom:147.155600pt;}
.y1c2{bottom:148.172533pt;}
.y108{bottom:148.424533pt;}
.y88{bottom:149.106933pt;}
.y260{bottom:149.136000pt;}
.y112{bottom:151.752667pt;}
.yd4{bottom:152.450667pt;}
.y5a{bottom:155.610667pt;}
.y1a1{bottom:155.773600pt;}
.y1b3{bottom:156.172533pt;}
.y290{bottom:157.104400pt;}
.y235{bottom:157.122667pt;}
.y147{bottom:157.432400pt;}
.y1db{bottom:158.330933pt;}
.y201{bottom:159.522400pt;}
.y164{bottom:160.445600pt;}
.y173{bottom:160.450800pt;}
.yfc{bottom:160.456000pt;}
.y139{bottom:160.760400pt;}
.y1c1{bottom:162.839200pt;}
.y107{bottom:163.091200pt;}
.y87{bottom:163.773600pt;}
.y160{bottom:163.778933pt;}
.y21f{bottom:163.796400pt;}
.y25f{bottom:163.802667pt;}
.y59{bottom:164.946667pt;}
.y111{bottom:166.419333pt;}
.y2c3{bottom:167.122667pt;}
.y1da{bottom:170.330933pt;}
.y1b2{bottom:170.839200pt;}
.y28f{bottom:171.771067pt;}
.y234{bottom:171.789333pt;}
.y146{bottom:172.099067pt;}
.y200{bottom:174.637067pt;}
.y21e{bottom:174.975067pt;}
.y163{bottom:175.112267pt;}
.y172{bottom:175.117467pt;}
.yfb{bottom:175.122667pt;}
.y138{bottom:175.432400pt;}
.y1c0{bottom:177.505867pt;}
.y106{bottom:177.757867pt;}
.yaa{bottom:178.440267pt;}
.y86{bottom:178.445600pt;}
.yd3{bottom:178.450667pt;}
.y25e{bottom:178.469333pt;}
.y1a0{bottom:181.773600pt;}
.y58{bottom:182.058667pt;}
.y1b1{bottom:185.505867pt;}
.y21d{bottom:186.153733pt;}
.y28e{bottom:186.437733pt;}
.y233{bottom:186.456000pt;}
.y145{bottom:186.765733pt;}
.y1ff{bottom:189.751733pt;}
.y15f{bottom:189.778933pt;}
.y171{bottom:189.784133pt;}
.yfa{bottom:189.789333pt;}
.y137{bottom:190.099067pt;}
.y2f2{bottom:190.408133pt;}
.y57{bottom:191.394667pt;}
.y1bf{bottom:192.172533pt;}
.y110{bottom:192.419333pt;}
.y105{bottom:192.424533pt;}
.y85{bottom:193.112267pt;}
.yd2{bottom:193.117333pt;}
.ya9{bottom:193.117467pt;}
.y2c2{bottom:193.122667pt;}
.y25d{bottom:193.136000pt;}
.y19f{bottom:196.440267pt;}
.y21c{bottom:199.281600pt;}
.y1b0{bottom:200.172533pt;}
.y56{bottom:200.730667pt;}
.y1d9{bottom:200.980933pt;}
.y1d3{bottom:200.986133pt;}
.y28d{bottom:201.104400pt;}
.y232{bottom:201.122667pt;}
.y144{bottom:201.432400pt;}
.y2f1{bottom:202.408133pt;}
.y38{bottom:202.844400pt;}
.y15e{bottom:204.445600pt;}
.y170{bottom:204.450800pt;}
.yf9{bottom:204.456000pt;}
.y136{bottom:204.765733pt;}
.y1fe{bottom:204.866400pt;}
.y1be{bottom:206.839200pt;}
.y10f{bottom:207.086000pt;}
.y104{bottom:207.091200pt;}
.y84{bottom:207.778933pt;}
.yd1{bottom:207.784000pt;}
.ya8{bottom:207.784133pt;}
.y2c1{bottom:207.789333pt;}
.y25c{bottom:207.802667pt;}
.y55{bottom:210.066667pt;}
.y19e{bottom:211.106933pt;}
.y37{bottom:212.180400pt;}
.y21a{bottom:212.433600pt;}
.y2f0{bottom:214.408133pt;}
.y1af{bottom:214.839200pt;}
.y1d8{bottom:215.647600pt;}
.y1d2{bottom:215.652800pt;}
.y28c{bottom:215.771067pt;}
.y231{bottom:215.789333pt;}
.y143{bottom:216.093733pt;}
.y219{bottom:218.833600pt;}
.y15d{bottom:219.112267pt;}
.y16f{bottom:219.117467pt;}
.yf8{bottom:219.122667pt;}
.y54{bottom:219.402667pt;}
.y1fc{bottom:219.853867pt;}
.y36{bottom:221.516400pt;}
.y10e{bottom:221.752667pt;}
.y103{bottom:221.757867pt;}
.y83{bottom:222.445600pt;}
.yd0{bottom:222.450667pt;}
.ya7{bottom:222.450800pt;}
.y2c0{bottom:222.456000pt;}
.y25b{bottom:222.469333pt;}
.y21b{bottom:225.233600pt;}
.y19d{bottom:225.773600pt;}
.y1fb{bottom:226.253867pt;}
.y2ef{bottom:226.408133pt;}
.y1ae{bottom:229.505867pt;}
.y1d1{bottom:230.319467pt;}
.y28b{bottom:230.437733pt;}
.y230{bottom:230.456000pt;}
.y142{bottom:230.760400pt;}
.y134{bottom:230.765733pt;}
.y1fd{bottom:232.653867pt;}
.y1bd{bottom:232.839200pt;}
.y15c{bottom:233.778933pt;}
.y16e{bottom:233.784133pt;}
.yf7{bottom:233.789333pt;}
.y217{bottom:236.412267pt;}
.y10d{bottom:236.419333pt;}
.y102{bottom:236.424533pt;}
.y53{bottom:236.514667pt;}
.y82{bottom:237.112267pt;}
.ycf{bottom:237.117333pt;}
.y2bf{bottom:237.122667pt;}
.y25a{bottom:237.136000pt;}
.y2ee{bottom:238.408133pt;}
.y35{bottom:238.628400pt;}
.y19c{bottom:240.440267pt;}
.y1d7{bottom:241.647600pt;}
.y216{bottom:242.812267pt;}
.y1ad{bottom:244.172533pt;}
.y1d0{bottom:244.986133pt;}
.y28a{bottom:245.104400pt;}
.y22f{bottom:245.122667pt;}
.y141{bottom:245.427067pt;}
.y133{bottom:245.432400pt;}
.y1f9{bottom:245.677867pt;}
.y52{bottom:245.850667pt;}
.y1bc{bottom:247.505867pt;}
.y34{bottom:247.964400pt;}
.y15b{bottom:248.445600pt;}
.ya6{bottom:248.450800pt;}
.yf6{bottom:248.456000pt;}
.y218{bottom:249.212267pt;}
.y81{bottom:251.778933pt;}
.yce{bottom:251.784000pt;}
.y2be{bottom:251.789333pt;}
.y259{bottom:251.802667pt;}
.y1f8{bottom:252.077867pt;}
.y19b{bottom:255.106933pt;}
.y51{bottom:255.186667pt;}
.y1d6{bottom:256.314267pt;}
.y33{bottom:257.300400pt;}
.y1fa{bottom:258.477867pt;}
.y1ac{bottom:258.839200pt;}
.y1cf{bottom:259.652800pt;}
.y289{bottom:259.771067pt;}
.y22e{bottom:259.789333pt;}
.y140{bottom:260.093733pt;}
.y132{bottom:260.099067pt;}
.y214{bottom:260.390933pt;}
.y12b{bottom:261.363067pt;}
.y2ed{bottom:261.746800pt;}
.y15a{bottom:263.112267pt;}
.ya5{bottom:263.117467pt;}
.yf5{bottom:263.122667pt;}
.y50{bottom:264.522667pt;}
.y80{bottom:266.445600pt;}
.ycd{bottom:266.450667pt;}
.y2bd{bottom:266.456000pt;}
.y32{bottom:266.636400pt;}
.y213{bottom:266.790933pt;}
.y1f6{bottom:269.656533pt;}
.y19a{bottom:269.773600pt;}
.y1d5{bottom:270.980933pt;}
.y12a{bottom:272.029733pt;}
.y215{bottom:273.190933pt;}
.y1ab{bottom:273.505867pt;}
.y2ec{bottom:273.746800pt;}
.y4f{bottom:273.858667pt;}
.y1ce{bottom:274.319467pt;}
.y288{bottom:274.437733pt;}
.y22d{bottom:274.456000pt;}
.y13f{bottom:274.760400pt;}
.y131{bottom:274.765733pt;}
.y31{bottom:275.972400pt;}
.y1f5{bottom:276.056533pt;}
.y159{bottom:277.778933pt;}
.ya4{bottom:277.784133pt;}
.yf4{bottom:277.789333pt;}
.y258{bottom:277.802667pt;}
.y7f{bottom:281.112267pt;}
.ycc{bottom:281.117333pt;}
.y2bc{bottom:281.122667pt;}
.y1f7{bottom:282.456533pt;}
.y4e{bottom:283.194667pt;}
.y129{bottom:284.040400pt;}
.y211{bottom:284.369600pt;}
.y199{bottom:284.440267pt;}
.y30{bottom:285.308400pt;}
.y1d4{bottom:285.652800pt;}
.y2eb{bottom:285.746800pt;}
.y1aa{bottom:288.172533pt;}
.y287{bottom:289.104400pt;}
.y22c{bottom:289.122667pt;}
.y13e{bottom:289.427067pt;}
.y130{bottom:289.432400pt;}
.y210{bottom:290.769600pt;}
.y158{bottom:292.445600pt;}
.ya3{bottom:292.450800pt;}
.yf3{bottom:292.456000pt;}
.y257{bottom:292.469333pt;}
.y4d{bottom:292.530667pt;}
.y1f3{bottom:293.635200pt;}
.y7e{bottom:295.778933pt;}
.ycb{bottom:295.784000pt;}
.y2bb{bottom:295.789333pt;}
.y128{bottom:296.883067pt;}
.y212{bottom:297.169600pt;}
.y2ea{bottom:297.746800pt;}
.y198{bottom:299.106933pt;}
.y1f2{bottom:300.035200pt;}
.y1ca{bottom:300.319467pt;}
.y4c{bottom:301.866667pt;}
.y2f{bottom:302.420400pt;}
.y1a9{bottom:302.839200pt;}
.y286{bottom:303.771067pt;}
.y13d{bottom:304.093733pt;}
.y12f{bottom:304.099067pt;}
.y1f4{bottom:306.435200pt;}
.y157{bottom:307.112267pt;}
.ya2{bottom:307.117467pt;}
.yf2{bottom:307.122667pt;}
.y256{bottom:307.136000pt;}
.y127{bottom:309.725733pt;}
.y2e9{bottom:309.746800pt;}
.y20f{bottom:310.321600pt;}
.yda{bottom:310.440267pt;}
.y7d{bottom:310.445600pt;}
.yca{bottom:310.450667pt;}
.y2ba{bottom:310.456000pt;}
.y4b{bottom:311.202667pt;}
.y2e{bottom:311.756400pt;}
.y197{bottom:313.773600pt;}
.y1c9{bottom:314.986133pt;}
.y22b{bottom:315.122667pt;}
.y1a8{bottom:317.505867pt;}
.y285{bottom:318.437733pt;}
.y13c{bottom:318.760400pt;}
.y12e{bottom:318.765733pt;}
.y1f1{bottom:319.587200pt;}
.y4a{bottom:320.538667pt;}
.y2d{bottom:321.092400pt;}
.y156{bottom:321.778933pt;}
.ya1{bottom:321.784133pt;}
.yf1{bottom:321.789333pt;}
.y255{bottom:321.802667pt;}
.y126{bottom:322.568400pt;}
.y7c{bottom:325.112267pt;}
.y2b9{bottom:325.122667pt;}
.y20e{bottom:325.439733pt;}
.y196{bottom:328.440267pt;}
.y1c8{bottom:329.652800pt;}
.y22a{bottom:329.789333pt;}
.y49{bottom:329.874667pt;}
.y2c{bottom:330.428400pt;}
.y1a7{bottom:332.172533pt;}
.y2e8{bottom:333.085467pt;}
.y284{bottom:333.104400pt;}
.y13b{bottom:333.427067pt;}
.y12d{bottom:333.432400pt;}
.y125{bottom:334.544000pt;}
.y1f0{bottom:334.705200pt;}
.y155{bottom:336.445600pt;}
.yc9{bottom:336.450667pt;}
.ya0{bottom:336.450800pt;}
.y254{bottom:336.469333pt;}
.y2b{bottom:339.764400pt;}
.y7b{bottom:339.778933pt;}
.y2b8{bottom:339.789333pt;}
.y20d{bottom:340.557867pt;}
.y195{bottom:343.106933pt;}
.y229{bottom:344.456000pt;}
.y2e7{bottom:345.085467pt;}
.y124{bottom:345.722667pt;}
.y48{bottom:346.986667pt;}
.y283{bottom:347.771067pt;}
.yf0{bottom:347.789333pt;}
.y2a{bottom:349.100400pt;}
.y1ef{bottom:349.823333pt;}
.y154{bottom:351.112267pt;}
.yc8{bottom:351.117333pt;}
.y9f{bottom:351.117467pt;}
.y253{bottom:351.136000pt;}
.y2b7{bottom:354.456000pt;}
.y20c{bottom:355.676000pt;}
.y47{bottom:356.322667pt;}
.y123{bottom:356.901333pt;}
.y2e6{bottom:357.085467pt;}
.y194{bottom:357.773600pt;}
.y29{bottom:358.436400pt;}
.y228{bottom:359.122667pt;}
.y282{bottom:362.437733pt;}
.yef{bottom:362.456000pt;}
.y1ee{bottom:364.941467pt;}
.y46{bottom:365.658667pt;}
.y7a{bottom:365.778933pt;}
.yc7{bottom:365.784000pt;}
.y9e{bottom:365.784133pt;}
.y2a6{bottom:365.789333pt;}
.y252{bottom:365.802667pt;}
.y28{bottom:367.772400pt;}
.y122{bottom:368.080000pt;}
.y2e5{bottom:369.085467pt;}
.y2b6{bottom:369.122667pt;}
.y20b{bottom:370.794000pt;}
.y193{bottom:372.440267pt;}
.y227{bottom:373.789333pt;}
.y45{bottom:374.994667pt;}
.y281{bottom:377.104400pt;}
.y16d{bottom:377.117467pt;}
.yee{bottom:377.122667pt;}
.y121{bottom:379.258667pt;}
.y1ed{bottom:380.059600pt;}
.y79{bottom:380.445600pt;}
.yc6{bottom:380.450667pt;}
.y9d{bottom:380.450800pt;}
.y2a5{bottom:380.456000pt;}
.y251{bottom:380.469333pt;}
.y2b5{bottom:383.789333pt;}
.y44{bottom:384.330667pt;}
.y27{bottom:384.884400pt;}
.y20a{bottom:385.908667pt;}
.y192{bottom:387.106933pt;}
.y226{bottom:388.456000pt;}
.y120{bottom:390.437333pt;}
.y280{bottom:391.771067pt;}
.y16c{bottom:391.784133pt;}
.yed{bottom:391.789333pt;}
.y2e4{bottom:392.424133pt;}
.y26{bottom:394.220400pt;}
.y78{bottom:395.112267pt;}
.yc5{bottom:395.117333pt;}
.y9c{bottom:395.117467pt;}
.y2a4{bottom:395.122667pt;}
.y250{bottom:395.136000pt;}
.y1ec{bottom:395.177733pt;}
.y2b4{bottom:398.456000pt;}
.y209{bottom:401.026800pt;}
.y43{bottom:401.442667pt;}
.y11f{bottom:401.616000pt;}
.y191{bottom:401.773600pt;}
.y225{bottom:403.122667pt;}
.y25{bottom:403.556400pt;}
.y2e3{bottom:404.424133pt;}
.y27f{bottom:406.437733pt;}
.y16b{bottom:406.450800pt;}
.yec{bottom:406.456000pt;}
.y77{bottom:409.778933pt;}
.yc4{bottom:409.784000pt;}
.y9b{bottom:409.784133pt;}
.y2a3{bottom:409.789333pt;}
.y24f{bottom:409.802667pt;}
.y1eb{bottom:410.292400pt;}
.y42{bottom:410.778667pt;}
.y11e{bottom:412.794667pt;}
.y24{bottom:412.892400pt;}
.y2b3{bottom:413.122667pt;}
.y208{bottom:416.148400pt;}
.y2e2{bottom:416.424133pt;}
.y190{bottom:416.440267pt;}
.y224{bottom:417.789333pt;}
.y41{bottom:420.114667pt;}
.y27e{bottom:421.104400pt;}
.y16a{bottom:421.117467pt;}
.yeb{bottom:421.122667pt;}
.y23{bottom:422.228400pt;}
.y11d{bottom:423.973333pt;}
.y76{bottom:424.445600pt;}
.yc3{bottom:424.450667pt;}
.y9a{bottom:424.450800pt;}
.y2a2{bottom:424.456000pt;}
.y24e{bottom:424.469333pt;}
.y1ea{bottom:425.412800pt;}
.y2b2{bottom:427.789333pt;}
.y2e1{bottom:428.424133pt;}
.y40{bottom:429.450667pt;}
.y18f{bottom:431.106933pt;}
.y207{bottom:431.263067pt;}
.y22{bottom:431.564400pt;}
.y223{bottom:432.456000pt;}
.y11c{bottom:435.152000pt;}
.y27d{bottom:435.771067pt;}
.y153{bottom:435.784133pt;}
.y3f{bottom:438.786667pt;}
.y75{bottom:439.112267pt;}
.yc2{bottom:439.117333pt;}
.y99{bottom:439.117467pt;}
.y2a1{bottom:439.122667pt;}
.y24d{bottom:439.136000pt;}
.y2e0{bottom:440.424133pt;}
.y1e9{bottom:440.527467pt;}
.y2b1{bottom:442.456000pt;}
.y206{bottom:445.215067pt;}
.y18e{bottom:445.773600pt;}
.y11b{bottom:446.330667pt;}
.yea{bottom:447.122667pt;}
.y3e{bottom:448.122667pt;}
.y21{bottom:448.676400pt;}
.y27c{bottom:450.437733pt;}
.y152{bottom:450.450800pt;}
.yc1{bottom:453.784000pt;}
.y74{bottom:453.784133pt;}
.y2a0{bottom:453.789333pt;}
.y24c{bottom:453.802667pt;}
.y1e8{bottom:454.479467pt;}
.y2b0{bottom:457.122667pt;}
.y20{bottom:458.012400pt;}
.y205{bottom:460.756400pt;}
.y11a{bottom:461.071067pt;}
.ye9{bottom:461.789333pt;}
.y2df{bottom:463.762800pt;}
.y27b{bottom:465.104400pt;}
.y151{bottom:465.117467pt;}
.y3d{bottom:465.246133pt;}
.y1f{bottom:467.348400pt;}
.y1e7{bottom:467.908800pt;}
.yc0{bottom:468.450667pt;}
.y73{bottom:468.450800pt;}
.y29f{bottom:468.456000pt;}
.y24b{bottom:468.469333pt;}
.y18d{bottom:471.773600pt;}
.y2af{bottom:471.789333pt;}
.y204{bottom:475.496667pt;}
.y2de{bottom:475.762800pt;}
.y119{bottom:475.811200pt;}
.ye8{bottom:476.456000pt;}
.y1e{bottom:476.684400pt;}
.y3c{bottom:478.574133pt;}
.y27a{bottom:479.771067pt;}
.y150{bottom:479.784133pt;}
.y1e6{bottom:480.536000pt;}
.ybf{bottom:483.117333pt;}
.y72{bottom:483.117467pt;}
.y29e{bottom:483.122667pt;}
.y24a{bottom:483.136000pt;}
.y1d{bottom:486.020400pt;}
.y2ae{bottom:486.456000pt;}
.y203{bottom:487.496667pt;}
.y2dd{bottom:487.762800pt;}
.y118{bottom:487.811200pt;}
.ye7{bottom:491.122667pt;}
.y3b{bottom:491.902133pt;}
.y1e5{bottom:492.536000pt;}
.y279{bottom:494.437733pt;}
.y14f{bottom:494.450800pt;}
.y1c{bottom:495.356400pt;}
.ybe{bottom:497.784000pt;}
.y71{bottom:497.784133pt;}
.y29d{bottom:497.789333pt;}
.y249{bottom:497.802667pt;}
.y2dc{bottom:499.762800pt;}
.y18c{bottom:501.106933pt;}
.y3a{bottom:505.235467pt;}
.ye6{bottom:505.789333pt;}
.y278{bottom:509.104400pt;}
.y14e{bottom:509.117467pt;}
.y18b{bottom:511.336453pt;}
.y2db{bottom:511.762800pt;}
.y70{bottom:512.450800pt;}
.y29c{bottom:512.456000pt;}
.y248{bottom:512.469333pt;}
.y18a{bottom:515.784133pt;}
.y39{bottom:518.568800pt;}
.y1b{bottom:520.103867pt;}
.ye5{bottom:520.456000pt;}
.y277{bottom:523.776400pt;}
.ybd{bottom:523.784000pt;}
.y14d{bottom:523.784133pt;}
.y6f{bottom:527.117467pt;}
.y29b{bottom:527.122667pt;}
.y247{bottom:527.136000pt;}
.y189{bottom:530.450800pt;}
.y2da{bottom:535.101467pt;}
.ye4{bottom:535.122667pt;}
.y276{bottom:538.443067pt;}
.y98{bottom:538.450800pt;}
.y162{bottom:538.456000pt;}
.y2ad{bottom:541.789333pt;}
.y188{bottom:545.117467pt;}
.y2d9{bottom:547.101467pt;}
.ye3{bottom:549.789333pt;}
.y275{bottom:553.109733pt;}
.ybc{bottom:553.117333pt;}
.y6e{bottom:553.117467pt;}
.y161{bottom:553.122667pt;}
.y246{bottom:553.136000pt;}
.y2ac{bottom:556.456000pt;}
.yf{bottom:557.909733pt;}
.y2d8{bottom:559.101467pt;}
.ye2{bottom:564.456000pt;}
.y274{bottom:567.776400pt;}
.ybb{bottom:567.784000pt;}
.y6d{bottom:567.784133pt;}
.y29a{bottom:567.789333pt;}
.y2d7{bottom:571.101467pt;}
.y187{bottom:571.117467pt;}
.y2ab{bottom:571.122667pt;}
.y202{bottom:573.604800pt;}
.ye{bottom:576.144133pt;}
.ye1{bottom:579.122667pt;}
.y245{bottom:579.136000pt;}
.y273{bottom:582.443067pt;}
.yba{bottom:582.450667pt;}
.y6c{bottom:582.450800pt;}
.y299{bottom:582.456000pt;}
.y186{bottom:585.784133pt;}
.y2aa{bottom:585.789333pt;}
.y1e3{bottom:589.978933pt;}
.y14c{bottom:592.680320pt;}
.ye0{bottom:593.789333pt;}
.y244{bottom:593.802667pt;}
.y2d6{bottom:594.440133pt;}
.y272{bottom:597.109733pt;}
.yb9{bottom:597.117333pt;}
.y6b{bottom:597.117467pt;}
.y14b{bottom:597.122667pt;}
.yd{bottom:598.368133pt;}
.y185{bottom:600.450800pt;}
.y2a9{bottom:600.456000pt;}
.y2d5{bottom:606.440133pt;}
.ydf{bottom:608.456000pt;}
.y243{bottom:608.469333pt;}
.y271{bottom:611.776400pt;}
.yb8{bottom:611.784000pt;}
.y6a{bottom:611.784133pt;}
.y14a{bottom:611.789333pt;}
.yc{bottom:613.032133pt;}
.y184{bottom:615.117467pt;}
.y2a8{bottom:615.122667pt;}
.y2d4{bottom:618.440133pt;}
.yde{bottom:623.122667pt;}
.y242{bottom:623.136000pt;}
.y270{bottom:626.443067pt;}
.y69{bottom:626.450800pt;}
.yb7{bottom:626.456000pt;}
.y183{bottom:629.784133pt;}
.y2a7{bottom:629.789333pt;}
.y2d3{bottom:630.440133pt;}
.yb{bottom:635.256133pt;}
.ydd{bottom:637.789333pt;}
.y241{bottom:637.802667pt;}
.y26f{bottom:641.109733pt;}
.y68{bottom:641.117467pt;}
.y97{bottom:641.120267pt;}
.yb6{bottom:641.122667pt;}
.y2d2{bottom:642.440133pt;}
.ya{bottom:649.920133pt;}
.y182{bottom:651.346987pt;}
.ydc{bottom:652.456000pt;}
.y240{bottom:652.469333pt;}
.y26e{bottom:655.776400pt;}
.y67{bottom:655.784133pt;}
.y96{bottom:655.786933pt;}
.yb5{bottom:655.789333pt;}
.y181{bottom:655.797467pt;}
.y2d1{bottom:665.778800pt;}
.ydb{bottom:667.122667pt;}
.y23f{bottom:667.136000pt;}
.y26d{bottom:670.443067pt;}
.y66{bottom:670.450800pt;}
.y95{bottom:670.453600pt;}
.y298{bottom:670.456000pt;}
.y9{bottom:672.145867pt;}
.y2d0{bottom:677.778800pt;}
.yb4{bottom:681.789333pt;}
.y180{bottom:681.797467pt;}
.y23e{bottom:681.802667pt;}
.y26c{bottom:685.109733pt;}
.y65{bottom:685.117467pt;}
.y94{bottom:685.120267pt;}
.y297{bottom:685.122667pt;}
.y8{bottom:686.812533pt;}
.y2cf{bottom:689.778800pt;}
.yb3{bottom:696.456000pt;}
.y17f{bottom:696.464133pt;}
.y23d{bottom:696.469333pt;}
.y26b{bottom:699.776400pt;}
.y64{bottom:699.784133pt;}
.y93{bottom:699.786933pt;}
.y296{bottom:699.789333pt;}
.y149{bottom:706.685653pt;}
.y7{bottom:709.038267pt;}
.yb2{bottom:711.122667pt;}
.y17e{bottom:711.130800pt;}
.y23c{bottom:711.136000pt;}
.y2ce{bottom:713.117467pt;}
.y26a{bottom:714.443067pt;}
.y63{bottom:714.456000pt;}
.y6{bottom:723.704933pt;}
.y2cd{bottom:725.117467pt;}
.y92{bottom:725.786933pt;}
.yb1{bottom:725.789333pt;}
.y17d{bottom:725.797467pt;}
.y23b{bottom:725.802667pt;}
.y269{bottom:729.109733pt;}
.y62{bottom:729.122667pt;}
.y2cc{bottom:737.117467pt;}
.y5{bottom:738.371600pt;}
.y91{bottom:740.453600pt;}
.yb0{bottom:740.456000pt;}
.y17c{bottom:740.464133pt;}
.y23a{bottom:740.469333pt;}
.y61{bottom:743.789333pt;}
.y2cb{bottom:749.117467pt;}
.y268{bottom:755.109733pt;}
.y90{bottom:755.120267pt;}
.yaf{bottom:755.122667pt;}
.y17b{bottom:755.130800pt;}
.y239{bottom:755.136000pt;}
.y60{bottom:758.456000pt;}
.y135{bottom:760.670800pt;}
.y2ca{bottom:761.117467pt;}
.y1bb{bottom:761.300800pt;}
.y1cd{bottom:762.245600pt;}
.y267{bottom:769.776400pt;}
.y8f{bottom:769.786933pt;}
.yae{bottom:769.789333pt;}
.y17a{bottom:769.797467pt;}
.y238{bottom:769.802667pt;}
.y117{bottom:772.670800pt;}
.y1ba{bottom:773.300800pt;}
.y1cc{bottom:774.245600pt;}
.y4{bottom:777.602667pt;}
.y2{bottom:780.387867pt;}
.y266{bottom:784.443067pt;}
.y8e{bottom:784.453600pt;}
.y5f{bottom:784.456000pt;}
.y179{bottom:784.464133pt;}
.y2c9{bottom:784.482667pt;}
.y116{bottom:784.670800pt;}
.y1b9{bottom:785.300800pt;}
.y3{bottom:785.602667pt;}
.y1cb{bottom:786.245600pt;}
.y1{bottom:823.409067pt;}
.y5c{bottom:826.262667pt;}
.yab{bottom:826.266667pt;}
.y221{bottom:828.715067pt;}
.y222{bottom:828.718800pt;}
.y12c{bottom:828.722533pt;}
.h10{height:10.512000pt;}
.he{height:10.640000pt;}
.ha{height:22.234375pt;}
.h4{height:28.078125pt;}
.h9{height:28.421875pt;}
.h1d{height:29.645833pt;}
.hd{height:35.780208pt;}
.h20{height:35.992463pt;}
.h11{height:36.510417pt;}
.h23{height:37.031250pt;}
.hf{height:37.057292pt;}
.h8{height:37.437500pt;}
.h7{height:42.117188pt;}
.h6{height:42.632812pt;}
.h18{height:44.989245pt;}
.h1a{height:45.000445pt;}
.hc{height:46.422396pt;}
.h16{height:46.775542pt;}
.h15{height:46.776075pt;}
.h2{height:46.796875pt;}
.h17{height:46.806475pt;}
.h12{height:46.818208pt;}
.h22{height:46.850208pt;}
.h5{height:47.369792pt;}
.hb{height:47.843490pt;}
.h21{height:48.828783pt;}
.h19{height:54.805878pt;}
.h1c{height:59.794833pt;}
.h1b{height:63.037500pt;}
.h13{height:64.544928pt;}
.h14{height:64.545462pt;}
.h3{height:80.937325pt;}
.h1e{height:642.520000pt;}
.h1f{height:642.666667pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w2{width:76.215733pt;}
.w3{width:494.006267pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.w4{width:869.292000pt;}
.w5{width:869.333333pt;}
.x0{left:0.000000pt;}
.x39{left:70.083067pt;}
.x1{left:71.811067pt;}
.x7{left:73.230000pt;}
.x1d{left:75.590533pt;}
.x1b{left:77.606667pt;}
.x19{left:78.687067pt;}
.x30{left:80.484667pt;}
.x2{left:81.564933pt;}
.xb{left:85.039333pt;}
.x56{left:86.144667pt;}
.x21{left:88.817200pt;}
.x2d{left:94.515867pt;}
.x53{left:97.916800pt;}
.x17{left:107.955867pt;}
.x6{left:110.215867pt;}
.x2c{left:113.084400pt;}
.x6c{left:115.272667pt;}
.x14{left:121.750800pt;}
.x6f{left:126.881733pt;}
.x5{left:129.895867pt;}
.x24{left:131.092880pt;}
.x33{left:139.942400pt;}
.x13{left:142.016933pt;}
.x1a{left:154.352400pt;}
.x6a{left:155.289600pt;}
.xa{left:159.419333pt;}
.x18{left:172.798667pt;}
.x3c{left:191.518533pt;}
.x3a{left:199.032400pt;}
.x25{left:202.873147pt;}
.x20{left:229.656667pt;}
.x27{left:236.954267pt;}
.x2e{left:254.982533pt;}
.x35{left:256.685733pt;}
.x31{left:261.696667pt;}
.x34{left:278.605733pt;}
.x32{left:297.049067pt;}
.x16{left:299.427867pt;}
.x1f{left:300.372667pt;}
.x15{left:313.726267pt;}
.x47{left:315.657333pt;}
.x1e{left:317.483867pt;}
.x57{left:319.473867pt;}
.x3d{left:321.012000pt;}
.x8{left:325.767200pt;}
.x12{left:328.815333pt;}
.x37{left:330.307067pt;}
.x23{left:332.607200pt;}
.x54{left:333.824667pt;}
.x55{left:336.320667pt;}
.xd{left:337.584533pt;}
.xf{left:338.690533pt;}
.x11{left:342.047333pt;}
.x22{left:345.833867pt;}
.xe{left:350.685733pt;}
.x36{left:352.824400pt;}
.x10{left:371.527067pt;}
.x28{left:393.108133pt;}
.x49{left:396.137333pt;}
.x51{left:399.454667pt;}
.x3e{left:401.492000pt;}
.x2b{left:405.885467pt;}
.x69{left:408.113867pt;}
.xc{left:413.217067pt;}
.x6d{left:414.197733pt;}
.x3b{left:415.690533pt;}
.x52{left:418.052800pt;}
.x2a{left:420.425467pt;}
.x9{left:431.672133pt;}
.x68{left:434.481867pt;}
.x48{left:435.838667pt;}
.x58{left:439.911200pt;}
.x29{left:441.674533pt;}
.x38{left:445.667067pt;}
.x4{left:468.111333pt;}
.x3{left:469.455333pt;}
.x65{left:477.927200pt;}
.x40{left:483.476000pt;}
.x5a{left:484.604533pt;}
.x4c{left:522.740000pt;}
.x59{left:523.911200pt;}
.x3f{left:528.116000pt;}
.x60{left:529.212533pt;}
.x2f{left:543.262267pt;}
.x6e{left:545.309067pt;}
.x1c{left:550.300667pt;}
.x6b{left:553.176133pt;}
.x5b{left:554.065867pt;}
.x62{left:556.700533pt;}
.x26{left:559.962533pt;}
.x42{left:564.340000pt;}
.x66{left:570.001867pt;}
.x4d{left:604.884000pt;}
.x41{left:607.593333pt;}
.x61{left:610.620533pt;}
.x4a{left:612.905333pt;}
.x5d{left:640.273867pt;}
.x63{left:642.908533pt;}
.x4f{left:646.814667pt;}
.x44{left:650.409333pt;}
.x5c{left:686.193867pt;}
.x4e{left:692.734667pt;}
.x43{left:695.444000pt;}
.x5f{left:720.583200pt;}
.x4b{left:722.132000pt;}
.x67{left:725.852533pt;}
.x46{left:730.153333pt;}
.x64{left:733.884533pt;}
.x50{left:765.364000pt;}
.x5e{left:769.169867pt;}
.x45{left:770.740000pt;}
}




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