
    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_1630b1d9473726959db28494.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_ddbaf1e3414a3c780ad3b978.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_051aebb48c72579136736f3a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d73707ab8c73f4607f612265.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_0b6fff8c66bf1c54528d408a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_608c9b5b8d58f5952febe81d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9cd87fa8f9b6dbeb5a58ab93.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_19d90d1198a034e16eb7507c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_3559ebeeb20e134514ed620a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_b7d2519da496c93c6d872d50.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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_93e563fe6069be6d893f6f91.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_515b370959e77465684d0c7c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.894043;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_23b093aee192ddd0af7a90bc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.897461;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_0810585a57a5bf8883e6c78b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708008;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_fe9ea45768994cca0fbeadbe.woff2')format("woff");}.fff{font-family:fff;line-height:1.435059;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_33bad353c2917f28a72ab49e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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_d8cc57757277c8b715b1922b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_9a8510383a52a75ed7d26dcd.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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_6c87c71c7e2dd37faa30edea.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a4e992a5e474b4374e852284.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_aa388f8db117d7ae194bc1c0.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_96519e8f973e4005d585ad14.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_8c68fbea1600c8636685f5d8.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;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:ff18;src:url('chunks/assets/font_67d3ec732fb1ff6d7f1e4fc9.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;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:ff19;src:url('chunks/assets/font_e9a77d807711769df6db3dd5.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;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:ff1a;src:url('chunks/assets/font_de5ce2321349974084518203.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;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:ff1b;src:url('chunks/assets/font_7a384370b1c40a5c0676f263.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;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:ff1c;src:url('chunks/assets/font_ac6f37cad4f30249d7d2a5e4.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;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:ff1d;src:url('chunks/assets/font_9ef022ab8bfecce8fd378a99.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.311035;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:ff1e;src:url('chunks/assets/font_2cd77a2853ec26a91be7f7d3.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.284668;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:ff1f;src:url('chunks/assets/font_f2b8f924ffc45f3a323f1ad1.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;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;}
.m6{transform:matrix(0.183742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183742,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.244448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244448,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245338,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245564,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246254,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);}
.m1{transform:matrix(0.273855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273855,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.275203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275203,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-54.142548px;}
.v7{vertical-align:-42.480000px;}
.v4{vertical-align:-33.120000px;}
.vd{vertical-align:-30.240000px;}
.vf{vertical-align:-27.360000px;}
.v8{vertical-align:-12.960000px;}
.v1{vertical-align:-9.360000px;}
.v5{vertical-align:-6.981670px;}
.ve{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:3.600000px;}
.va{vertical-align:5.760000px;}
.v2{vertical-align:9.360000px;}
.vc{vertical-align:27.360000px;}
.v3{vertical-align:33.120000px;}
.vb{vertical-align:42.480000px;}
.ls14{letter-spacing:-2.880000px;}
.lsa{letter-spacing:-1.512000px;}
.ls15{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.792000px;}
.ls18{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.626770px;}
.ls27{letter-spacing:-0.567600px;}
.ls7{letter-spacing:-0.504000px;}
.ls3{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.360000px;}
.ls3c{letter-spacing:-0.328200px;}
.ls19{letter-spacing:-0.288000px;}
.ls36{letter-spacing:-0.269400px;}
.ls3b{letter-spacing:-0.259800px;}
.ls13{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.162960px;}
.lsd{letter-spacing:-0.144000px;}
.ls34{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.012960px;}
.ls39{letter-spacing:0.017280px;}
.ls3e{letter-spacing:0.033840px;}
.ls16{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.120000px;}
.lse{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.152400px;}
.ls3f{letter-spacing:0.153600px;}
.ls22{letter-spacing:0.180000px;}
.ls42{letter-spacing:0.181200px;}
.ls35{letter-spacing:0.181440px;}
.ls29{letter-spacing:0.192000px;}
.ls23{letter-spacing:0.216000px;}
.ls38{letter-spacing:0.259920px;}
.ls37{letter-spacing:0.269400px;}
.ls2{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls41{letter-spacing:0.391800px;}
.ls2a{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.540000px;}
.ls1c{letter-spacing:0.576000px;}
.ls17{letter-spacing:0.720000px;}
.ls3a{letter-spacing:0.753840px;}
.ls2e{letter-spacing:0.792000px;}
.ls1a{letter-spacing:0.864000px;}
.ls40{letter-spacing:0.876000px;}
.ls2d{letter-spacing:1.008000px;}
.ls10{letter-spacing:1.080000px;}
.ls31{letter-spacing:1.512000px;}
.ls25{letter-spacing:1.584000px;}
.ls26{letter-spacing:2.880000px;}
.ls46{letter-spacing:6.456000px;}
.ls12{letter-spacing:6.480000px;}
.ls30{letter-spacing:9.360000px;}
.lsb{letter-spacing:10.944000px;}
.ls44{letter-spacing:15.840000px;}
.ls2f{letter-spacing:17.280000px;}
.ls45{letter-spacing:18.144000px;}
.lsf{letter-spacing:18.432000px;}
.ls43{letter-spacing:18.696000px;}
.ls32{letter-spacing:31.680000px;}
.ls1f{letter-spacing:125.408445px;}
.ls20{letter-spacing:313.275855px;}
.ls2b{letter-spacing:384.710879px;}
.ls1b{letter-spacing:464.368806px;}
.ls28{letter-spacing:791.797417px;}
.ls33{letter-spacing:846.156000px;}
.ls2c{letter-spacing:861.075930px;}
.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;}
}
.ws32{word-spacing:-72.000000px;}
.wsb{word-spacing:-39.528000px;}
.ws38{word-spacing:-32.808240px;}
.wsf{word-spacing:-26.483760px;}
.ws1c{word-spacing:-19.584000px;}
.ws2e{word-spacing:-19.008000px;}
.ws14{word-spacing:-18.864000px;}
.ws31{word-spacing:-18.792000px;}
.ws1b{word-spacing:-18.720000px;}
.ws15{word-spacing:-18.576000px;}
.ws2f{word-spacing:-18.504000px;}
.ws23{word-spacing:-18.399041px;}
.ws0{word-spacing:-18.288000px;}
.ws1a{word-spacing:-18.216000px;}
.wsd{word-spacing:-18.144000px;}
.ws10{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws33{word-spacing:-17.928000px;}
.wsc{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.784000px;}
.ws12{word-spacing:-17.712000px;}
.ws1{word-spacing:-17.568000px;}
.ws7{word-spacing:-17.496000px;}
.ws4{word-spacing:-17.208000px;}
.wsa{word-spacing:-16.488000px;}
.ws3f{word-spacing:-15.816000px;}
.ws3e{word-spacing:-15.093600px;}
.ws2{word-spacing:-15.000000px;}
.ws3c{word-spacing:-14.940000px;}
.ws39{word-spacing:-14.680200px;}
.ws8{word-spacing:-12.420000px;}
.ws36{word-spacing:-12.329400px;}
.ws41{word-spacing:-12.241200px;}
.wse{word-spacing:-12.212400px;}
.ws5{word-spacing:-12.060000px;}
.ws35{word-spacing:-11.790600px;}
.ws9{word-spacing:-11.700000px;}
.ws1f{word-spacing:-11.492400px;}
.ws3a{word-spacing:-10.440000px;}
.ws40{word-spacing:-10.111800px;}
.ws3d{word-spacing:-9.732960px;}
.ws34{word-spacing:-9.720000px;}
.ws3b{word-spacing:-9.391800px;}
.ws37{word-spacing:-7.560000px;}
.ws30{word-spacing:-0.072000px;}
.ws13{word-spacing:-0.048240px;}
.ws3{word-spacing:0.000000px;}
.ws1d{word-spacing:0.072000px;}
.ws1e{word-spacing:0.432000px;}
.ws21{word-spacing:2.122255px;}
.ws29{word-spacing:7.518500px;}
.ws2b{word-spacing:29.266582px;}
.ws22{word-spacing:45.550245px;}
.ws2d{word-spacing:48.499873px;}
.ws25{word-spacing:49.179390px;}
.ws20{word-spacing:53.921267px;}
.ws28{word-spacing:55.362517px;}
.ws2a{word-spacing:81.819678px;}
.ws17{word-spacing:99.067873px;}
.ws24{word-spacing:99.150719px;}
.ws27{word-spacing:111.253976px;}
.ws16{word-spacing:125.763049px;}
.ws26{word-spacing:133.520856px;}
.ws2c{word-spacing:198.047280px;}
.ws18{word-spacing:326.095565px;}
.ws19{word-spacing:390.079808px;}
._3f{margin-left:-860.727370px;}
._2b{margin-left:-809.533465px;}
._19{margin-left:-3.439680px;}
._12{margin-left:-2.328000px;}
._0{margin-left:-1.008000px;}
._8{width:1.080000px;}
._3{width:2.244000px;}
._9{width:3.312000px;}
._5{width:4.752000px;}
._4{width:5.832000px;}
._6{width:7.056000px;}
._a{width:8.280000px;}
._16{width:9.288000px;}
._c{width:11.232000px;}
._d{width:12.312000px;}
._b{width:14.256000px;}
._7{width:15.768000px;}
._18{width:16.992000px;}
._53{width:18.120000px;}
._2{width:20.004000px;}
._1{width:21.096000px;}
._15{width:22.104000px;}
._13{width:23.256000px;}
._14{width:24.336000px;}
._17{width:25.392000px;}
._1b{width:26.940000px;}
._10{width:28.008000px;}
._11{width:29.460000px;}
._1d{width:30.672000px;}
._1e{width:32.568000px;}
._1f{width:33.768000px;}
._20{width:34.776000px;}
._21{width:36.288000px;}
._e{width:40.392000px;}
._f{width:41.400000px;}
._22{width:44.184000px;}
._23{width:45.204000px;}
._52{width:46.728000px;}
._51{width:48.672000px;}
._50{width:49.824000px;}
._38{width:51.381463px;}
._55{width:53.719920px;}
._3c{width:56.808913px;}
._3a{width:58.819521px;}
._28{width:61.953281px;}
._2d{width:63.722105px;}
._31{width:65.536645px;}
._2a{width:66.660352px;}
._48{width:69.026767px;}
._3b{width:74.859723px;}
._44{width:83.749031px;}
._33{width:96.617543px;}
._36{width:98.020485px;}
._3d{width:100.204585px;}
._37{width:102.772117px;}
._42{width:110.102132px;}
._1a{width:114.276000px;}
._43{width:115.435623px;}
._2e{width:124.740924px;}
._3e{width:127.212691px;}
._29{width:141.789711px;}
._49{width:143.367467px;}
._24{width:145.391833px;}
._27{width:146.708092px;}
._39{width:174.068115px;}
._4b{width:176.440738px;}
._26{width:193.490203px;}
._45{width:194.961899px;}
._25{width:213.733372px;}
._47{width:214.778073px;}
._46{width:220.386382px;}
._32{width:300.934718px;}
._2f{width:357.712454px;}
._4c{width:412.900867px;}
._30{width:539.649374px;}
._4d{width:565.504897px;}
._35{width:689.976549px;}
._4f{width:761.220000px;}
._41{width:771.989750px;}
._40{width:790.020000px;}
._4e{width:813.164026px;}
._4a{width:826.020000px;}
._54{width:846.360000px;}
._56{width:849.180000px;}
._34{width:910.980000px;}
._2c{width:1181.700000px;}
._1c{width:1690.140000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:21.234413px;}
.fs12{font-size:30.240000px;}
.fs11{font-size:38.880000px;}
.fsb{font-size:39.596933px;}
.fs5{font-size:39.962837px;}
.fs13{font-size:41.760000px;}
.fs9{font-size:44.009898px;}
.fsd{font-size:44.078437px;}
.fs7{font-size:45.388272px;}
.fs1{font-size:48.240000px;}
.fs10{font-size:59.760000px;}
.fs2{font-size:60.000000px;}
.fsc{font-size:66.037470px;}
.fs14{font-size:66.240000px;}
.fs6{font-size:66.737349px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:73.596165px;}
.fse{font-size:73.710780px;}
.fs8{font-size:75.794820px;}
.fs3{font-size:96.000000px;}
.fsf{font-size:96.410976px;}
.y0{bottom:0.000000px;}
.y64{bottom:2.996777px;}
.yfc{bottom:4.302927px;}
.yde{bottom:4.410296px;}
.y104{bottom:4.417164px;}
.yd2{bottom:4.547871px;}
.yfd{bottom:8.605990px;}
.y1c7{bottom:9.000000px;}
.y22b{bottom:9.030000px;}
.y1e2{bottom:9.045000px;}
.yd3{bottom:9.499391px;}
.y1c6{bottom:9.720000px;}
.y60{bottom:13.963339px;}
.ydb{bottom:14.002583px;}
.y101{bottom:14.024390px;}
.y1eb{bottom:15.300000px;}
.y218{bottom:15.330000px;}
.y1fe{bottom:15.345000px;}
.yfb{bottom:15.997017px;}
.y63{bottom:16.531733px;}
.y107{bottom:17.419786px;}
.ydd{bottom:18.780707px;}
.y103{bottom:18.809955px;}
.y1{bottom:19.080000px;}
.y65{bottom:20.879607px;}
.y209{bottom:25.605000px;}
.yda{bottom:27.013138px;}
.y100{bottom:27.055207px;}
.y62{bottom:27.761811px;}
.ydc{bottom:30.356897px;}
.y102{bottom:30.404174px;}
.y66{bottom:32.108323px;}
.y20a{bottom:36.045000px;}
.y61{bottom:39.584595px;}
.y22d{bottom:110.160000px;}
.y226{bottom:110.190000px;}
.y96{bottom:114.300000px;}
.y8b{bottom:116.460000px;}
.y19e{bottom:120.960000px;}
.y118{bottom:123.660000px;}
.y1d7{bottom:130.860000px;}
.y225{bottom:130.890000px;}
.ya6{bottom:131.400000px;}
.ycb{bottom:132.300000px;}
.y146{bottom:132.480000px;}
.yf9{bottom:134.100000px;}
.y160{bottom:135.900000px;}
.y4b{bottom:136.800000px;}
.y162{bottom:140.760000px;}
.y199{bottom:141.300000px;}
.yac{bottom:142.200000px;}
.y3c{bottom:144.900000px;}
.yd0{bottom:146.160000px;}
.y136{bottom:147.600000px;}
.yed{bottom:148.680000px;}
.yce{bottom:150.300000px;}
.y1c1{bottom:151.380000px;}
.y95{bottom:155.700000px;}
.y24{bottom:156.600000px;}
.y8a{bottom:160.560000px;}
.y145{bottom:163.440000px;}
.y117{bottom:165.060000px;}
.y20f{bottom:166.530000px;}
.y73{bottom:171.360000px;}
.ya5{bottom:172.800000px;}
.yca{bottom:173.700000px;}
.y1b1{bottom:175.320000px;}
.yf8{bottom:175.500000px;}
.y15f{bottom:177.300000px;}
.y4a{bottom:178.200000px;}
.y195{bottom:182.700000px;}
.y18e{bottom:183.420000px;}
.yab{bottom:183.600000px;}
.y128{bottom:184.860000px;}
.y3b{bottom:186.300000px;}
.y17f{bottom:187.020000px;}
.y135{bottom:189.000000px;}
.yec{bottom:190.080000px;}
.ycf{bottom:190.260000px;}
.y125{bottom:190.980000px;}
.ycd{bottom:191.700000px;}
.y144{bottom:194.580000px;}
.y20e{bottom:197.310000px;}
.y23{bottom:198.000000px;}
.y89{bottom:203.400000px;}
.y198{bottom:203.760000px;}
.y116{bottom:206.490000px;}
.y1c0{bottom:214.050000px;}
.ya4{bottom:214.230000px;}
.y94{bottom:214.770000px;}
.yc9{bottom:215.130000px;}
.y72{bottom:215.490000px;}
.y23f{bottom:216.750000px;}
.yf7{bottom:216.930000px;}
.y15e{bottom:218.730000px;}
.y49{bottom:219.630000px;}
.yb8{bottom:220.890000px;}
.y18d{bottom:224.850000px;}
.y208{bottom:225.210000px;}
.y143{bottom:225.570000px;}
.yaa{bottom:226.290000px;}
.y3a{bottom:227.730000px;}
.y17e{bottom:228.450000px;}
.y134{bottom:230.430000px;}
.yeb{bottom:231.510000px;}
.y124{bottom:232.410000px;}
.ycc{bottom:233.130000px;}
.y69{bottom:234.570000px;}
.y22{bottom:239.430000px;}
.y88{bottom:244.830000px;}
.y194{bottom:245.190000px;}
.y115{bottom:247.710000px;}
.y1bf{bottom:255.090000px;}
.ya3{bottom:255.630000px;}
.yc8{bottom:256.530000px;}
.y142{bottom:256.710000px;}
.y233{bottom:257.250000px;}
.y71{bottom:258.330000px;}
.yf6{bottom:259.590000px;}
.y15d{bottom:260.130000px;}
.y48{bottom:261.030000px;}
.y20d{bottom:261.750000px;}
.yb7{bottom:264.990000px;}
.y197{bottom:266.250000px;}
.y39{bottom:269.130000px;}
.y133{bottom:271.830000px;}
.yea{bottom:272.910000px;}
.y1b0{bottom:273.270000px;}
.y123{bottom:273.810000px;}
.y93{bottom:274.530000px;}
.y68{bottom:275.970000px;}
.y232{bottom:277.275000px;}
.y21{bottom:280.830000px;}
.y18c{bottom:287.130000px;}
.y87{bottom:287.490000px;}
.y141{bottom:287.670000px;}
.y114{bottom:289.110000px;}
.y17d{bottom:290.730000px;}
.y207{bottom:290.955000px;}
.y22c{bottom:295.995000px;}
.ya2{bottom:297.030000px;}
.yc7{bottom:297.930000px;}
.y7{bottom:300.090000px;}
.y70{bottom:300.990000px;}
.y15c{bottom:301.530000px;}
.y47{bottom:302.430000px;}
.yf5{bottom:303.690000px;}
.y193{bottom:307.650000px;}
.yb6{bottom:307.830000px;}
.y38{bottom:310.530000px;}
.y1be{bottom:311.970000px;}
.y5f{bottom:312.915000px;}
.y132{bottom:313.230000px;}
.y23e{bottom:314.670000px;}
.y1af{bottom:314.850000px;}
.y122{bottom:315.210000px;}
.y92{bottom:315.930000px;}
.y140{bottom:318.810000px;}
.y1ca{bottom:318.855000px;}
.y20c{bottom:320.115000px;}
.y206{bottom:320.655000px;}
.y20{bottom:322.230000px;}
.y231{bottom:326.415000px;}
.y196{bottom:328.530000px;}
.y86{bottom:330.330000px;}
.y113{bottom:330.510000px;}
.ye9{bottom:331.950000px;}
.y17c{bottom:332.130000px;}
.y67{bottom:335.370000px;}
.ya1{bottom:338.430000px;}
.y205{bottom:342.435000px;}
.y15b{bottom:342.930000px;}
.y46{bottom:343.830000px;}
.y1c9{bottom:344.055000px;}
.y4e{bottom:345.090000px;}
.yf4{bottom:346.530000px;}
.yb5{bottom:349.230000px;}
.y20b{bottom:349.275000px;}
.y161{bottom:349.590000px;}
.y13f{bottom:350.490000px;}
.y37{bottom:351.930000px;}
.y24a{bottom:353.370000px;}
.y1bd{bottom:353.550000px;}
.y131{bottom:354.630000px;}
.y23d{bottom:356.250000px;}
.y121{bottom:356.790000px;}
.yc6{bottom:356.970000px;}
.y230{bottom:357.015000px;}
.y91{bottom:357.330000px;}
.y1f{bottom:364.890000px;}
.y204{bottom:368.715000px;}
.y192{bottom:369.930000px;}
.y1ae{bottom:370.650000px;}
.y85{bottom:371.730000px;}
.y112{bottom:371.910000px;}
.ya0{bottom:381.090000px;}
.y13e{bottom:382.890000px;}
.y15a{bottom:384.330000px;}
.y45{bottom:385.230000px;}
.y22f{bottom:387.435000px;}
.y5e{bottom:387.930000px;}
.y4d{bottom:389.190000px;}
.yb4{bottom:390.630000px;}
.y18b{bottom:390.810000px;}
.y19d{bottom:390.990000px;}
.ye8{bottom:391.710000px;}
.y36{bottom:393.330000px;}
.y17b{bottom:394.590000px;}
.y249{bottom:394.950000px;}
.y130{bottom:396.030000px;}
.y90{bottom:398.730000px;}
.y1dd{bottom:402.510000px;}
.yf3{bottom:405.570000px;}
.y21f{bottom:407.550000px;}
.y1e{bottom:407.730000px;}
.y1bc{bottom:409.710000px;}
.y1ad{bottom:410.250000px;}
.ya9{bottom:410.970000px;}
.y203{bottom:411.015000px;}
.y23c{bottom:412.050000px;}
.y6{bottom:412.770000px;}
.y111{bottom:413.310000px;}
.y13d{bottom:413.850000px;}
.y84{bottom:414.390000px;}
.yc5{bottom:416.370000px;}
.y22e{bottom:417.855000px;}
.y9f{bottom:423.930000px;}
.y159{bottom:425.730000px;}
.y44{bottom:426.630000px;}
.y5d{bottom:429.330000px;}
.yb3{bottom:432.030000px;}
.y191{bottom:432.390000px;}
.ye7{bottom:433.110000px;}
.y4c{bottom:433.290000px;}
.y35{bottom:434.730000px;}
.y17a{bottom:435.990000px;}
.y12f{bottom:437.430000px;}
.y21e{bottom:438.330000px;}
.y1e8{bottom:438.555000px;}
.y8f{bottom:440.130000px;}
.y1dc{bottom:444.675000px;}
.y13c{bottom:445.035000px;}
.y224{bottom:448.275000px;}
.y1d{bottom:449.175000px;}
.y248{bottom:451.155000px;}
.y1bb{bottom:452.595000px;}
.y18a{bottom:453.315000px;}
.y202{bottom:453.345000px;}
.y1ac{bottom:454.035000px;}
.y5{bottom:454.395000px;}
.y110{bottom:454.755000px;}
.y83{bottom:458.535000px;}
.y21d{bottom:463.395000px;}
.yf2{bottom:465.375000px;}
.y1d6{bottom:466.095000px;}
.y9e{bottom:466.635000px;}
.y158{bottom:467.175000px;}
.y43{bottom:468.075000px;}
.y5c{bottom:470.775000px;}
.yb2{bottom:473.475000px;}
.ye6{bottom:474.555000px;}
.y13b{bottom:475.995000px;}
.y34{bottom:476.175000px;}
.y1e7{bottom:476.925000px;}
.y22a{bottom:478.725000px;}
.y12e{bottom:478.875000px;}
.y8e{bottom:481.575000px;}
.y1c{bottom:490.575000px;}
.y127{bottom:493.815000px;}
.y247{bottom:493.995000px;}
.y190{bottom:494.715000px;}
.y189{bottom:494.895000px;}
.y1ab{bottom:495.435000px;}
.y201{bottom:495.645000px;}
.y10f{bottom:496.155000px;}
.y1db{bottom:496.695000px;}
.y179{bottom:498.495000px;}
.y82{bottom:501.375000px;}
.y21c{bottom:505.695000px;}
.y1e6{bottom:506.625000px;}
.yf1{bottom:506.775000px;}
.y13a{bottom:507.135000px;}
.y157{bottom:508.575000px;}
.y229{bottom:509.145000px;}
.y1f9{bottom:509.295000px;}
.y9d{bottom:509.475000px;}
.y1ba{bottom:510.195000px;}
.y42{bottom:510.735000px;}
.y5b{bottom:512.175000px;}
.yb1{bottom:514.875000px;}
.ye5{bottom:515.955000px;}
.y33{bottom:517.575000px;}
.y12d{bottom:520.275000px;}
.y8d{bottom:522.975000px;}
.y1da{bottom:527.115000px;}
.y1b{bottom:531.975000px;}
.y18f{bottom:536.295000px;}
.y1e5{bottom:536.325000px;}
.y23b{bottom:536.835000px;}
.y200{bottom:537.945000px;}
.y139{bottom:538.095000px;}
.y228{bottom:539.745000px;}
.y178{bottom:539.895000px;}
.y81{bottom:542.775000px;}
.y21b{bottom:547.995000px;}
.yf0{bottom:548.175000px;}
.y156{bottom:549.975000px;}
.y9c{bottom:550.875000px;}
.y1aa{bottom:551.595000px;}
.y170{bottom:551.775000px;}
.y41{bottom:553.575000px;}
.ya8{bottom:554.835000px;}
.y10e{bottom:555.195000px;}
.yb0{bottom:556.275000px;}
.y188{bottom:557.175000px;}
.ye4{bottom:557.355000px;}
.y1d9{bottom:557.535000px;}
.y32{bottom:558.975000px;}
.yc4{bottom:560.235000px;}
.y12c{bottom:561.675000px;}
.y120{bottom:564.375000px;}
.y1e4{bottom:566.025000px;}
.y1f8{bottom:567.975000px;}
.y138{bottom:569.235000px;}
.y4{bottom:570.135000px;}
.y227{bottom:570.165000px;}
.y6f{bottom:571.215000px;}
.y1a{bottom:573.375000px;}
.y1ff{bottom:580.245000px;}
.y8c{bottom:582.015000px;}
.y80{bottom:585.435000px;}
.y1f7{bottom:586.695000px;}
.y1d8{bottom:587.955000px;}
.yef{bottom:589.575000px;}
.y21a{bottom:590.295000px;}
.y155{bottom:591.375000px;}
.y9b{bottom:592.275000px;}
.y23a{bottom:592.995000px;}
.y1a9{bottom:593.175000px;}
.y40{bottom:594.975000px;}
.y1e3{bottom:595.725000px;}
.yaf{bottom:597.675000px;}
.y187{bottom:598.575000px;}
.ya7{bottom:598.935000px;}
.ye3{bottom:600.015000px;}
.y137{bottom:600.195000px;}
.y31{bottom:600.375000px;}
.y223{bottom:600.585000px;}
.y177{bottom:602.175000px;}
.yc3{bottom:603.075000px;}
.y11f{bottom:605.775000px;}
.y16f{bottom:608.115000px;}
.y3{bottom:611.535000px;}
.y19{bottom:614.775000px;}
.y10d{bottom:614.955000px;}
.y1c8{bottom:618.375000px;}
.y1f6{bottom:622.695000px;}
.y1fd{bottom:623.445000px;}
.y1e1{bottom:626.145000px;}
.y7f{bottom:629.535000px;}
.y6e{bottom:630.975000px;}
.y219{bottom:632.595000px;}
.y154{bottom:632.775000px;}
.y9a{bottom:633.675000px;}
.y239{bottom:634.575000px;}
.y3f{bottom:636.375000px;}
.y126{bottom:637.635000px;}
.yae{bottom:639.075000px;}
.y222{bottom:640.050000px;}
.y30{bottom:641.775000px;}
.ye2{bottom:642.855000px;}
.yc2{bottom:644.475000px;}
.y11e{bottom:647.175000px;}
.y1d5{bottom:648.795000px;}
.y1a8{bottom:649.515000px;}
.y16e{bottom:649.695000px;}
.y18{bottom:656.175000px;}
.y1e0{bottom:656.790000px;}
.y10c{bottom:657.615000px;}
.y1f5{bottom:658.695000px;}
.y186{bottom:661.035000px;}
.y1b9{bottom:664.455000px;}
.y176{bottom:664.635000px;}
.y7e{bottom:672.375000px;}
.y6d{bottom:673.635000px;}
.y153{bottom:674.175000px;}
.y217{bottom:674.895000px;}
.y99{bottom:675.075000px;}
.y5a{bottom:677.805000px;}
.y3e{bottom:679.065000px;}
.y1d4{bottom:679.245000px;}
.yad{bottom:680.505000px;}
.y2f{bottom:683.205000px;}
.ye1{bottom:684.285000px;}
.y221{bottom:685.590000px;}
.yc1{bottom:685.905000px;}
.y11d{bottom:688.605000px;}
.y238{bottom:690.945000px;}
.y1a7{bottom:691.125000px;}
.y1f4{bottom:694.725000px;}
.y17{bottom:697.605000px;}
.y10b{bottom:700.485000px;}
.y185{bottom:702.465000px;}
.y16d{bottom:705.885000px;}
.y1fc{bottom:706.110000px;}
.y1d3{bottom:709.845000px;}
.y7d{bottom:713.805000px;}
.y152{bottom:715.605000px;}
.y6c{bottom:717.765000px;}
.y216{bottom:717.945000px;}
.y59{bottom:719.205000px;}
.y1b8{bottom:720.825000px;}
.y3d{bottom:723.165000px;}
.y19c{bottom:723.345000px;}
.y2e{bottom:724.605000px;}
.ye0{bottom:725.685000px;}
.y1df{bottom:726.810000px;}
.y220{bottom:726.990000px;}
.y175{bottom:727.125000px;}
.yc0{bottom:727.305000px;}
.y11c{bottom:730.005000px;}
.y2{bottom:730.365000px;}
.y1f3{bottom:730.725000px;}
.y237{bottom:732.345000px;}
.y16{bottom:739.005000px;}
.y1d2{bottom:740.265000px;}
.y10a{bottom:743.145000px;}
.y1a6{bottom:747.285000px;}
.y16c{bottom:747.465000px;}
.y1fb{bottom:747.690000px;}
.y7c{bottom:755.205000px;}
.y151{bottom:757.005000px;}
.y215{bottom:760.245000px;}
.y58{bottom:760.605000px;}
.y6b{bottom:761.865000px;}
.y246{bottom:762.225000px;}
.y1b7{bottom:762.405000px;}
.yd9{bottom:762.765000px;}
.y184{bottom:764.745000px;}
.y2d{bottom:766.005000px;}
.y1f2{bottom:766.725000px;}
.y174{bottom:768.345000px;}
.y1de{bottom:768.390000px;}
.ybf{bottom:768.705000px;}
.y1fa{bottom:768.750000px;}
.y1d1{bottom:770.685000px;}
.y11b{bottom:771.405000px;}
.y15{bottom:780.405000px;}
.ydf{bottom:780.765000px;}
.y19b{bottom:785.805000px;}
.y109{bottom:787.245000px;}
.y236{bottom:788.685000px;}
.y1a5{bottom:788.865000px;}
.y7b{bottom:796.605000px;}
.y150{bottom:798.405000px;}
.y1d0{bottom:801.105000px;}
.y57{bottom:802.005000px;}
.y214{bottom:802.545000px;}
.yee{bottom:803.265000px;}
.y1f1{bottom:803.445000px;}
.y16b{bottom:803.625000px;}
.y245{bottom:803.805000px;}
.y98{bottom:804.705000px;}
.y6a{bottom:805.965000px;}
.y2c{bottom:807.405000px;}
.y173{bottom:809.745000px;}
.ybe{bottom:810.105000px;}
.y11a{bottom:812.805000px;}
.y1b6{bottom:818.565000px;}
.y14{bottom:821.805000px;}
.y106{bottom:825.765000px;}
.y183{bottom:827.205000px;}
.y235{bottom:830.265000px;}
.y1cf{bottom:831.525000px;}
.yd8{bottom:835.665000px;}
.y7a{bottom:838.005000px;}
.y1f0{bottom:839.445000px;}
.y14f{bottom:839.805000px;}
.y56{bottom:843.405000px;}
.y108{bottom:843.765000px;}
.y213{bottom:844.845000px;}
.y1a4{bottom:845.025000px;}
.y16a{bottom:845.205000px;}
.y164{bottom:846.465000px;}
.y97{bottom:847.365000px;}
.y2b{bottom:848.805000px;}
.ybd{bottom:851.505000px;}
.y244{bottom:859.965000px;}
.y1b5{bottom:860.145000px;}
.y1ce{bottom:861.945000px;}
.y13{bottom:863.205000px;}
.y182{bottom:868.605000px;}
.y119{bottom:871.845000px;}
.y172{bottom:872.205000px;}
.y1ef{bottom:875.445000px;}
.yd7{bottom:877.065000px;}
.y79{bottom:880.665000px;}
.y14e{bottom:881.205000px;}
.y55{bottom:884.805000px;}
.y234{bottom:886.425000px;}
.y1a3{bottom:886.605000px;}
.y212{bottom:887.145000px;}
.yc{bottom:888.168000px;}
.y19a{bottom:889.665000px;}
.y2a{bottom:890.205000px;}
.y1cd{bottom:892.545000px;}
.ybc{bottom:892.905000px;}
.yff{bottom:894.315000px;}
.y24b{bottom:900.000000px;}
.y169{bottom:901.365000px;}
.y243{bottom:901.545000px;}
.y12{bottom:904.605000px;}
.y12b{bottom:910.545000px;}
.y1ee{bottom:911.490000px;}
.y105{bottom:912.390000px;}
.y171{bottom:913.650000px;}
.y1b4{bottom:916.530000px;}
.yb{bottom:916.968000px;}
.yd6{bottom:918.510000px;}
.y14d{bottom:922.650000px;}
.y1cc{bottom:923.010000px;}
.y78{bottom:924.810000px;}
.y54{bottom:926.250000px;}
.y163{bottom:929.310000px;}
.y211{bottom:929.490000px;}
.y181{bottom:931.110000px;}
.y29{bottom:931.650000px;}
.ybb{bottom:934.350000px;}
.y252{bottom:935.970000px;}
.y1a2{bottom:942.810000px;}
.y168{bottom:942.990000px;}
.y11{bottom:946.050000px;}
.y1ed{bottom:947.490000px;}
.y1cb{bottom:953.430000px;}
.y242{bottom:957.930000px;}
.y1b3{bottom:958.110000px;}
.yd5{bottom:961.170000px;}
.yfa{bottom:962.715000px;}
.y14c{bottom:964.050000px;}
.y53{bottom:967.650000px;}
.y77{bottom:968.910000px;}
.y12a{bottom:970.350000px;}
.yfe{bottom:971.790000px;}
.y210{bottom:972.690000px;}
.y28{bottom:973.050000px;}
.yba{bottom:975.750000px;}
.y1ec{bottom:983.490000px;}
.y1c5{bottom:983.850000px;}
.y1a1{bottom:984.390000px;}
.y10{bottom:987.450000px;}
.y251{bottom:992.670000px;}
.y180{bottom:993.390000px;}
.y167{bottom:999.330000px;}
.yd1{bottom:999.465000px;}
.y241{bottom:999.510000px;}
.yd4{bottom:1008.510000px;}
.y52{bottom:1009.050000px;}
.y14b{bottom:1009.590000px;}
.y76{bottom:1011.750000px;}
.y1b2{bottom:1014.270000px;}
.y27{bottom:1014.450000px;}
.y250{bottom:1014.810000px;}
.y1ea{bottom:1020.390000px;}
.yf{bottom:1028.850000px;}
.yb9{bottom:1034.790000px;}
.y1a0{bottom:1040.730000px;}
.y166{bottom:1040.910000px;}
.y14a{bottom:1045.410000px;}
.y24f{bottom:1049.370000px;}
.y51{bottom:1050.450000px;}
.y75{bottom:1053.150000px;}
.y129{bottom:1054.410000px;}
.y1c4{bottom:1055.310000px;}
.y240{bottom:1055.670000px;}
.y26{bottom:1055.850000px;}
.ye{bottom:1070.250000px;}
.y24e{bottom:1071.510000px;}
.y149{bottom:1076.370000px;}
.y19f{bottom:1082.310000px;}
.y50{bottom:1093.110000px;}
.y74{bottom:1094.550000px;}
.y1e9{bottom:1096.710000px;}
.y1c3{bottom:1096.890000px;}
.y165{bottom:1097.070000px;}
.y25{bottom:1097.250000px;}
.y148{bottom:1107.510000px;}
.y4f{bottom:1137.210000px;}
.y1c2{bottom:1138.290000px;}
.y147{bottom:1138.470000px;}
.yd{bottom:1138.650000px;}
.y24d{bottom:1140.090000px;}
.ya{bottom:1149.513000px;}
.y9{bottom:1167.513000px;}
.y24c{bottom:1170.000000px;}
.y8{bottom:1185.513000px;}
.y253{bottom:1244.880000px;}
.he{height:20.840415px;}
.h1b{height:26.475057px;}
.h14{height:28.425334px;}
.h2c{height:29.700000px;}
.h2d{height:29.736000px;}
.h26{height:30.557654px;}
.h22{height:30.605243px;}
.h2a{height:31.140000px;}
.h3a{height:34.855313px;}
.h2{height:35.460000px;}
.h32{height:36.000000px;}
.h33{height:36.036000px;}
.h37{height:37.437188px;}
.h1c{height:38.862224px;}
.hf{height:39.221339px;}
.h5{height:41.689453px;}
.h36{height:42.300000px;}
.h35{height:42.336000px;}
.h25{height:43.171819px;}
.h18{height:43.193308px;}
.h21{height:43.239053px;}
.h1f{height:43.260576px;}
.h15{height:44.546107px;}
.h12{height:46.338140px;}
.h17{height:47.851192px;}
.h1e{height:47.925714px;}
.hd{height:50.024399px;}
.h13{height:50.800781px;}
.h1a{height:51.100462px;}
.h23{height:51.180044px;}
.h38{height:53.573906px;}
.h4{height:59.343750px;}
.h34{height:62.215312px;}
.h3d{height:62.578125px;}
.h39{height:63.036000px;}
.h27{height:64.160156px;}
.h3{height:64.546875px;}
.h1d{height:64.812166px;}
.h6{height:65.062500px;}
.h11{height:65.466472px;}
.h10{height:65.499059px;}
.h24{height:66.941605px;}
.ha{height:70.664062px;}
.h19{height:72.230611px;}
.h20{height:72.343100px;}
.h3f{height:72.562500px;}
.h29{height:73.906875px;}
.h8{height:74.004654px;}
.h16{height:74.388471px;}
.h2f{height:74.953125px;}
.hc{height:76.107305px;}
.h7{height:76.366406px;}
.h9{height:76.486406px;}
.hb{height:76.546406px;}
.h28{height:85.726406px;}
.h2e{height:151.560000px;}
.h3b{height:151.590000px;}
.h2b{height:364.755000px;}
.h30{height:892.980000px;}
.h31{height:893.250000px;}
.h3c{height:918.000000px;}
.h3e{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:9.000000px;}
.w4{width:18.000000px;}
.w14{width:31.860000px;}
.wd{width:63.036000px;}
.wc{width:68.400000px;}
.w10{width:84.456000px;}
.w34{width:84.636000px;}
.w25{width:86.400000px;}
.wa{width:94.680000px;}
.w31{width:106.020000px;}
.w29{width:107.640000px;}
.w1f{width:107.676000px;}
.w33{width:109.440000px;}
.w2f{width:116.496000px;}
.we{width:119.520000px;}
.wf{width:120.456000px;}
.w2e{width:124.596000px;}
.w35{width:126.900000px;}
.w23{width:131.976000px;}
.w2d{width:137.376000px;}
.w2c{width:139.356000px;}
.w2a{width:150.120000px;}
.w2b{width:150.150000px;}
.w24{width:151.410000px;}
.wb{width:155.370000px;}
.w36{width:158.790000px;}
.w19{width:159.480000px;}
.w16{width:159.510000px;}
.w17{width:160.230000px;}
.w28{width:164.910000px;}
.w1a{width:170.130000px;}
.w1e{width:172.650000px;}
.w18{width:180.030000px;}
.w27{width:180.570000px;}
.w1b{width:181.110000px;}
.w30{width:181.650000px;}
.w1c{width:196.095000px;}
.w20{width:202.140000px;}
.w1d{width:206.850000px;}
.w22{width:215.850000px;}
.w26{width:226.830000px;}
.w21{width:230.070000px;}
.w3{width:238.495658px;}
.w32{width:239.790000px;}
.w5{width:365.552218px;}
.w6{width:408.601899px;}
.w8{width:454.491752px;}
.w7{width:463.512572px;}
.w9{width:470.695023px;}
.w13{width:499.785000px;}
.w15{width:510.375000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w38{width:918.000000px;}
.w37{width:1188.000000px;}
.w11{width:1262.880000px;}
.w12{width:1263.000000px;}
.x0{left:0.000000px;}
.x16{left:2.712943px;}
.xe{left:4.117517px;}
.x2d{left:8.100000px;}
.x3e{left:14.400000px;}
.x37{left:16.020000px;}
.xa{left:17.337540px;}
.x3a{left:19.476000px;}
.x15{left:21.630300px;}
.x3c{left:33.660000px;}
.x40{left:38.745000px;}
.x44{left:59.760000px;}
.x6{left:61.855500px;}
.x8{left:63.750088px;}
.x45{left:64.845000px;}
.x42{left:66.090000px;}
.x5b{left:68.040000px;}
.x43{left:69.345000px;}
.xc{left:70.577043px;}
.x62{left:76.140000px;}
.x5{left:78.546000px;}
.x1d{left:85.439326px;}
.x26{left:90.274780px;}
.x2c{left:93.636000px;}
.x57{left:99.936000px;}
.x10{left:102.072978px;}
.x47{left:106.056000px;}
.x3{left:108.216000px;}
.x35{left:110.340000px;}
.xd{left:118.688120px;}
.x25{left:120.605750px;}
.x7{left:123.156000px;}
.x2a{left:124.416000px;}
.x9{left:128.512130px;}
.x4{left:131.256000px;}
.x56{left:136.116000px;}
.x1b{left:147.658955px;}
.xf{left:150.151219px;}
.xb{left:152.285575px;}
.x39{left:154.440000px;}
.x4a{left:158.250000px;}
.x29{left:162.030000px;}
.x2{left:167.610000px;}
.x19{left:170.412449px;}
.x1f{left:174.813726px;}
.x1a{left:183.872347px;}
.x2e{left:188.310000px;}
.x34{left:194.070000px;}
.x22{left:223.147043px;}
.x24{left:225.698100px;}
.x50{left:237.630000px;}
.x58{left:250.050000px;}
.x3b{left:269.850000px;}
.x4b{left:273.990000px;}
.x48{left:281.595000px;}
.x51{left:324.030000px;}
.x21{left:333.591141px;}
.x2f{left:343.695000px;}
.x2b{left:347.835000px;}
.x18{left:349.554433px;}
.x11{left:361.695000px;}
.x20{left:364.182795px;}
.x5c{left:366.195000px;}
.x4c{left:381.675000px;}
.x28{left:400.215000px;}
.x12{left:404.715000px;}
.x14{left:409.215000px;}
.x46{left:410.835000px;}
.x30{left:412.095000px;}
.x3d{left:430.095000px;}
.x5d{left:472.215000px;}
.x31{left:475.125000px;}
.x17{left:488.805000px;}
.x52{left:496.695000px;}
.x1c{left:531.825000px;}
.x59{left:539.565000px;}
.x23{left:577.725000px;}
.x4d{left:583.815000px;}
.x1e{left:586.725000px;}
.x27{left:593.925000px;}
.x36{left:610.125000px;}
.x38{left:641.985000px;}
.x49{left:647.970000px;}
.x5a{left:676.950000px;}
.x5e{left:712.005000px;}
.x32{left:715.110000px;}
.x53{left:723.525000px;}
.x13{left:767.130000px;}
.x1{left:776.130000px;}
.x3f{left:801.465000px;}
.x63{left:807.120000px;}
.x4e{left:813.885000px;}
.x5f{left:821.445000px;}
.x54{left:904.110000px;}
.x60{left:906.090000px;}
.x41{left:971.610000px;}
.x4f{left:1029.750000px;}
.x61{left:1032.990000px;}
.x55{left:1069.020000px;}
.x33{left:1137.060000px;}
@media print{
.v6{vertical-align:-48.126710pt;}
.v7{vertical-align:-37.760000pt;}
.v4{vertical-align:-29.440000pt;}
.vd{vertical-align:-26.880000pt;}
.vf{vertical-align:-24.320000pt;}
.v8{vertical-align:-11.520000pt;}
.v1{vertical-align:-8.320000pt;}
.v5{vertical-align:-6.205929pt;}
.ve{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:3.200000pt;}
.va{vertical-align:5.120000pt;}
.v2{vertical-align:8.320000pt;}
.vc{vertical-align:24.320000pt;}
.v3{vertical-align:29.440000pt;}
.vb{vertical-align:37.760000pt;}
.ls14{letter-spacing:-2.560000pt;}
.lsa{letter-spacing:-1.344000pt;}
.ls15{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.704000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.557129pt;}
.ls27{letter-spacing:-0.504533pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls3{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls3c{letter-spacing:-0.291733pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls36{letter-spacing:-0.239467pt;}
.ls3b{letter-spacing:-0.230933pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.144853pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls34{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.011520pt;}
.ls39{letter-spacing:0.015360pt;}
.ls3e{letter-spacing:0.030080pt;}
.ls16{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.135467pt;}
.ls3f{letter-spacing:0.136533pt;}
.ls22{letter-spacing:0.160000pt;}
.ls42{letter-spacing:0.161067pt;}
.ls35{letter-spacing:0.161280pt;}
.ls29{letter-spacing:0.170667pt;}
.ls23{letter-spacing:0.192000pt;}
.ls38{letter-spacing:0.231040pt;}
.ls37{letter-spacing:0.239467pt;}
.ls2{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls41{letter-spacing:0.348267pt;}
.ls2a{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.512000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls3a{letter-spacing:0.670080pt;}
.ls2e{letter-spacing:0.704000pt;}
.ls1a{letter-spacing:0.768000pt;}
.ls40{letter-spacing:0.778667pt;}
.ls2d{letter-spacing:0.896000pt;}
.ls10{letter-spacing:0.960000pt;}
.ls31{letter-spacing:1.344000pt;}
.ls25{letter-spacing:1.408000pt;}
.ls26{letter-spacing:2.560000pt;}
.ls46{letter-spacing:5.738667pt;}
.ls12{letter-spacing:5.760000pt;}
.ls30{letter-spacing:8.320000pt;}
.lsb{letter-spacing:9.728000pt;}
.ls44{letter-spacing:14.080000pt;}
.ls2f{letter-spacing:15.360000pt;}
.ls45{letter-spacing:16.128000pt;}
.lsf{letter-spacing:16.384000pt;}
.ls43{letter-spacing:16.618667pt;}
.ls32{letter-spacing:28.160000pt;}
.ls1f{letter-spacing:111.474173pt;}
.ls20{letter-spacing:278.467427pt;}
.ls2b{letter-spacing:341.965226pt;}
.ls1b{letter-spacing:412.772272pt;}
.ls28{letter-spacing:703.819927pt;}
.ls33{letter-spacing:752.138667pt;}
.ls2c{letter-spacing:765.400827pt;}
.ws32{word-spacing:-64.000000pt;}
.wsb{word-spacing:-35.136000pt;}
.ws38{word-spacing:-29.162880pt;}
.wsf{word-spacing:-23.541120pt;}
.ws1c{word-spacing:-17.408000pt;}
.ws2e{word-spacing:-16.896000pt;}
.ws14{word-spacing:-16.768000pt;}
.ws31{word-spacing:-16.704000pt;}
.ws1b{word-spacing:-16.640000pt;}
.ws15{word-spacing:-16.512000pt;}
.ws2f{word-spacing:-16.448000pt;}
.ws23{word-spacing:-16.354703pt;}
.ws0{word-spacing:-16.256000pt;}
.ws1a{word-spacing:-16.192000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws10{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws33{word-spacing:-15.936000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws12{word-spacing:-15.744000pt;}
.ws1{word-spacing:-15.616000pt;}
.ws7{word-spacing:-15.552000pt;}
.ws4{word-spacing:-15.296000pt;}
.wsa{word-spacing:-14.656000pt;}
.ws3f{word-spacing:-14.058667pt;}
.ws3e{word-spacing:-13.416533pt;}
.ws2{word-spacing:-13.333333pt;}
.ws3c{word-spacing:-13.280000pt;}
.ws39{word-spacing:-13.049067pt;}
.ws8{word-spacing:-11.040000pt;}
.ws36{word-spacing:-10.959467pt;}
.ws41{word-spacing:-10.881067pt;}
.wse{word-spacing:-10.855467pt;}
.ws5{word-spacing:-10.720000pt;}
.ws35{word-spacing:-10.480533pt;}
.ws9{word-spacing:-10.400000pt;}
.ws1f{word-spacing:-10.215467pt;}
.ws3a{word-spacing:-9.280000pt;}
.ws40{word-spacing:-8.988267pt;}
.ws3d{word-spacing:-8.651520pt;}
.ws34{word-spacing:-8.640000pt;}
.ws3b{word-spacing:-8.348267pt;}
.ws37{word-spacing:-6.720000pt;}
.ws30{word-spacing:-0.064000pt;}
.ws13{word-spacing:-0.042880pt;}
.ws3{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.064000pt;}
.ws1e{word-spacing:0.384000pt;}
.ws21{word-spacing:1.886449pt;}
.ws29{word-spacing:6.683111pt;}
.ws2b{word-spacing:26.014740pt;}
.ws22{word-spacing:40.489107pt;}
.ws2d{word-spacing:43.110998pt;}
.ws25{word-spacing:43.715014pt;}
.ws20{word-spacing:47.930015pt;}
.ws28{word-spacing:49.211126pt;}
.ws2a{word-spacing:72.728602pt;}
.ws17{word-spacing:88.060332pt;}
.ws24{word-spacing:88.133972pt;}
.ws27{word-spacing:98.892423pt;}
.ws16{word-spacing:111.789377pt;}
.ws26{word-spacing:118.685206pt;}
.ws2c{word-spacing:176.042027pt;}
.ws18{word-spacing:289.862725pt;}
.ws19{word-spacing:346.737607pt;}
._3f{margin-left:-765.090996pt;}
._2b{margin-left:-719.585303pt;}
._19{margin-left:-3.057493pt;}
._12{margin-left:-2.069333pt;}
._0{margin-left:-0.896000pt;}
._8{width:0.960000pt;}
._3{width:1.994667pt;}
._9{width:2.944000pt;}
._5{width:4.224000pt;}
._4{width:5.184000pt;}
._6{width:6.272000pt;}
._a{width:7.360000pt;}
._16{width:8.256000pt;}
._c{width:9.984000pt;}
._d{width:10.944000pt;}
._b{width:12.672000pt;}
._7{width:14.016000pt;}
._18{width:15.104000pt;}
._53{width:16.106667pt;}
._2{width:17.781333pt;}
._1{width:18.752000pt;}
._15{width:19.648000pt;}
._13{width:20.672000pt;}
._14{width:21.632000pt;}
._17{width:22.570667pt;}
._1b{width:23.946667pt;}
._10{width:24.896000pt;}
._11{width:26.186667pt;}
._1d{width:27.264000pt;}
._1e{width:28.949333pt;}
._1f{width:30.016000pt;}
._20{width:30.912000pt;}
._21{width:32.256000pt;}
._e{width:35.904000pt;}
._f{width:36.800000pt;}
._22{width:39.274667pt;}
._23{width:40.181333pt;}
._52{width:41.536000pt;}
._51{width:43.264000pt;}
._50{width:44.288000pt;}
._38{width:45.672411pt;}
._55{width:47.751040pt;}
._3c{width:50.496811pt;}
._3a{width:52.284019pt;}
._28{width:55.069583pt;}
._2d{width:56.641871pt;}
._31{width:58.254795pt;}
._2a{width:59.253647pt;}
._48{width:61.357126pt;}
._3b{width:66.541976pt;}
._44{width:74.443583pt;}
._33{width:85.882260pt;}
._36{width:87.129320pt;}
._3d{width:89.070742pt;}
._37{width:91.352993pt;}
._42{width:97.868562pt;}
._1a{width:101.578667pt;}
._43{width:102.609443pt;}
._2e{width:110.880821pt;}
._3e{width:113.077948pt;}
._29{width:126.035298pt;}
._49{width:127.437749pt;}
._24{width:129.237185pt;}
._27{width:130.407193pt;}
._39{width:154.727214pt;}
._4b{width:156.836212pt;}
._26{width:171.991291pt;}
._45{width:173.299465pt;}
._25{width:189.985219pt;}
._47{width:190.913843pt;}
._46{width:195.899006pt;}
._32{width:267.497527pt;}
._2f{width:317.966626pt;}
._4c{width:367.022993pt;}
._30{width:479.688333pt;}
._4d{width:502.671020pt;}
._35{width:613.312488pt;}
._4f{width:676.640000pt;}
._41{width:686.213111pt;}
._40{width:702.240000pt;}
._4e{width:722.812468pt;}
._4a{width:734.240000pt;}
._54{width:752.320000pt;}
._56{width:754.826667pt;}
._34{width:809.760000pt;}
._2c{width:1050.400000pt;}
._1c{width:1502.346667pt;}
.fs4{font-size:18.875034pt;}
.fs12{font-size:26.880000pt;}
.fs11{font-size:34.560000pt;}
.fsb{font-size:35.197273pt;}
.fs5{font-size:35.522522pt;}
.fs13{font-size:37.120000pt;}
.fs9{font-size:39.119910pt;}
.fsd{font-size:39.180833pt;}
.fs7{font-size:40.345130pt;}
.fs1{font-size:42.880000pt;}
.fs10{font-size:53.120000pt;}
.fs2{font-size:53.333333pt;}
.fsc{font-size:58.699973pt;}
.fs14{font-size:58.880000pt;}
.fs6{font-size:59.322088pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:65.418813pt;}
.fse{font-size:65.520693pt;}
.fs8{font-size:67.373174pt;}
.fs3{font-size:85.333333pt;}
.fsf{font-size:85.698645pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:2.663802pt;}
.yfc{bottom:3.824824pt;}
.yde{bottom:3.920263pt;}
.y104{bottom:3.926368pt;}
.yd2{bottom:4.042552pt;}
.yfd{bottom:7.649769pt;}
.y1c7{bottom:8.000000pt;}
.y22b{bottom:8.026667pt;}
.y1e2{bottom:8.040000pt;}
.yd3{bottom:8.443903pt;}
.y1c6{bottom:8.640000pt;}
.y60{bottom:12.411857pt;}
.ydb{bottom:12.446740pt;}
.y101{bottom:12.466124pt;}
.y1eb{bottom:13.600000pt;}
.y218{bottom:13.626667pt;}
.y1fe{bottom:13.640000pt;}
.yfb{bottom:14.219571pt;}
.y63{bottom:14.694873pt;}
.y107{bottom:15.484255pt;}
.ydd{bottom:16.693962pt;}
.y103{bottom:16.719960pt;}
.y1{bottom:16.960000pt;}
.y65{bottom:18.559651pt;}
.y209{bottom:22.760000pt;}
.yda{bottom:24.011678pt;}
.y100{bottom:24.049073pt;}
.y62{bottom:24.677165pt;}
.ydc{bottom:26.983909pt;}
.y102{bottom:27.025932pt;}
.y66{bottom:28.540731pt;}
.y20a{bottom:32.040000pt;}
.y61{bottom:35.186307pt;}
.y22d{bottom:97.920000pt;}
.y226{bottom:97.946667pt;}
.y96{bottom:101.600000pt;}
.y8b{bottom:103.520000pt;}
.y19e{bottom:107.520000pt;}
.y118{bottom:109.920000pt;}
.y1d7{bottom:116.320000pt;}
.y225{bottom:116.346667pt;}
.ya6{bottom:116.800000pt;}
.ycb{bottom:117.600000pt;}
.y146{bottom:117.760000pt;}
.yf9{bottom:119.200000pt;}
.y160{bottom:120.800000pt;}
.y4b{bottom:121.600000pt;}
.y162{bottom:125.120000pt;}
.y199{bottom:125.600000pt;}
.yac{bottom:126.400000pt;}
.y3c{bottom:128.800000pt;}
.yd0{bottom:129.920000pt;}
.y136{bottom:131.200000pt;}
.yed{bottom:132.160000pt;}
.yce{bottom:133.600000pt;}
.y1c1{bottom:134.560000pt;}
.y95{bottom:138.400000pt;}
.y24{bottom:139.200000pt;}
.y8a{bottom:142.720000pt;}
.y145{bottom:145.280000pt;}
.y117{bottom:146.720000pt;}
.y20f{bottom:148.026667pt;}
.y73{bottom:152.320000pt;}
.ya5{bottom:153.600000pt;}
.yca{bottom:154.400000pt;}
.y1b1{bottom:155.840000pt;}
.yf8{bottom:156.000000pt;}
.y15f{bottom:157.600000pt;}
.y4a{bottom:158.400000pt;}
.y195{bottom:162.400000pt;}
.y18e{bottom:163.040000pt;}
.yab{bottom:163.200000pt;}
.y128{bottom:164.320000pt;}
.y3b{bottom:165.600000pt;}
.y17f{bottom:166.240000pt;}
.y135{bottom:168.000000pt;}
.yec{bottom:168.960000pt;}
.ycf{bottom:169.120000pt;}
.y125{bottom:169.760000pt;}
.ycd{bottom:170.400000pt;}
.y144{bottom:172.960000pt;}
.y20e{bottom:175.386667pt;}
.y23{bottom:176.000000pt;}
.y89{bottom:180.800000pt;}
.y198{bottom:181.120000pt;}
.y116{bottom:183.546667pt;}
.y1c0{bottom:190.266667pt;}
.ya4{bottom:190.426667pt;}
.y94{bottom:190.906667pt;}
.yc9{bottom:191.226667pt;}
.y72{bottom:191.546667pt;}
.y23f{bottom:192.666667pt;}
.yf7{bottom:192.826667pt;}
.y15e{bottom:194.426667pt;}
.y49{bottom:195.226667pt;}
.yb8{bottom:196.346667pt;}
.y18d{bottom:199.866667pt;}
.y208{bottom:200.186667pt;}
.y143{bottom:200.506667pt;}
.yaa{bottom:201.146667pt;}
.y3a{bottom:202.426667pt;}
.y17e{bottom:203.066667pt;}
.y134{bottom:204.826667pt;}
.yeb{bottom:205.786667pt;}
.y124{bottom:206.586667pt;}
.ycc{bottom:207.226667pt;}
.y69{bottom:208.506667pt;}
.y22{bottom:212.826667pt;}
.y88{bottom:217.626667pt;}
.y194{bottom:217.946667pt;}
.y115{bottom:220.186667pt;}
.y1bf{bottom:226.746667pt;}
.ya3{bottom:227.226667pt;}
.yc8{bottom:228.026667pt;}
.y142{bottom:228.186667pt;}
.y233{bottom:228.666667pt;}
.y71{bottom:229.626667pt;}
.yf6{bottom:230.746667pt;}
.y15d{bottom:231.226667pt;}
.y48{bottom:232.026667pt;}
.y20d{bottom:232.666667pt;}
.yb7{bottom:235.546667pt;}
.y197{bottom:236.666667pt;}
.y39{bottom:239.226667pt;}
.y133{bottom:241.626667pt;}
.yea{bottom:242.586667pt;}
.y1b0{bottom:242.906667pt;}
.y123{bottom:243.386667pt;}
.y93{bottom:244.026667pt;}
.y68{bottom:245.306667pt;}
.y232{bottom:246.466667pt;}
.y21{bottom:249.626667pt;}
.y18c{bottom:255.226667pt;}
.y87{bottom:255.546667pt;}
.y141{bottom:255.706667pt;}
.y114{bottom:256.986667pt;}
.y17d{bottom:258.426667pt;}
.y207{bottom:258.626667pt;}
.y22c{bottom:263.106667pt;}
.ya2{bottom:264.026667pt;}
.yc7{bottom:264.826667pt;}
.y7{bottom:266.746667pt;}
.y70{bottom:267.546667pt;}
.y15c{bottom:268.026667pt;}
.y47{bottom:268.826667pt;}
.yf5{bottom:269.946667pt;}
.y193{bottom:273.466667pt;}
.yb6{bottom:273.626667pt;}
.y38{bottom:276.026667pt;}
.y1be{bottom:277.306667pt;}
.y5f{bottom:278.146667pt;}
.y132{bottom:278.426667pt;}
.y23e{bottom:279.706667pt;}
.y1af{bottom:279.866667pt;}
.y122{bottom:280.186667pt;}
.y92{bottom:280.826667pt;}
.y140{bottom:283.386667pt;}
.y1ca{bottom:283.426667pt;}
.y20c{bottom:284.546667pt;}
.y206{bottom:285.026667pt;}
.y20{bottom:286.426667pt;}
.y231{bottom:290.146667pt;}
.y196{bottom:292.026667pt;}
.y86{bottom:293.626667pt;}
.y113{bottom:293.786667pt;}
.ye9{bottom:295.066667pt;}
.y17c{bottom:295.226667pt;}
.y67{bottom:298.106667pt;}
.ya1{bottom:300.826667pt;}
.y205{bottom:304.386667pt;}
.y15b{bottom:304.826667pt;}
.y46{bottom:305.626667pt;}
.y1c9{bottom:305.826667pt;}
.y4e{bottom:306.746667pt;}
.yf4{bottom:308.026667pt;}
.yb5{bottom:310.426667pt;}
.y20b{bottom:310.466667pt;}
.y161{bottom:310.746667pt;}
.y13f{bottom:311.546667pt;}
.y37{bottom:312.826667pt;}
.y24a{bottom:314.106667pt;}
.y1bd{bottom:314.266667pt;}
.y131{bottom:315.226667pt;}
.y23d{bottom:316.666667pt;}
.y121{bottom:317.146667pt;}
.yc6{bottom:317.306667pt;}
.y230{bottom:317.346667pt;}
.y91{bottom:317.626667pt;}
.y1f{bottom:324.346667pt;}
.y204{bottom:327.746667pt;}
.y192{bottom:328.826667pt;}
.y1ae{bottom:329.466667pt;}
.y85{bottom:330.426667pt;}
.y112{bottom:330.586667pt;}
.ya0{bottom:338.746667pt;}
.y13e{bottom:340.346667pt;}
.y15a{bottom:341.626667pt;}
.y45{bottom:342.426667pt;}
.y22f{bottom:344.386667pt;}
.y5e{bottom:344.826667pt;}
.y4d{bottom:345.946667pt;}
.yb4{bottom:347.226667pt;}
.y18b{bottom:347.386667pt;}
.y19d{bottom:347.546667pt;}
.ye8{bottom:348.186667pt;}
.y36{bottom:349.626667pt;}
.y17b{bottom:350.746667pt;}
.y249{bottom:351.066667pt;}
.y130{bottom:352.026667pt;}
.y90{bottom:354.426667pt;}
.y1dd{bottom:357.786667pt;}
.yf3{bottom:360.506667pt;}
.y21f{bottom:362.266667pt;}
.y1e{bottom:362.426667pt;}
.y1bc{bottom:364.186667pt;}
.y1ad{bottom:364.666667pt;}
.ya9{bottom:365.306667pt;}
.y203{bottom:365.346667pt;}
.y23c{bottom:366.266667pt;}
.y6{bottom:366.906667pt;}
.y111{bottom:367.386667pt;}
.y13d{bottom:367.866667pt;}
.y84{bottom:368.346667pt;}
.yc5{bottom:370.106667pt;}
.y22e{bottom:371.426667pt;}
.y9f{bottom:376.826667pt;}
.y159{bottom:378.426667pt;}
.y44{bottom:379.226667pt;}
.y5d{bottom:381.626667pt;}
.yb3{bottom:384.026667pt;}
.y191{bottom:384.346667pt;}
.ye7{bottom:384.986667pt;}
.y4c{bottom:385.146667pt;}
.y35{bottom:386.426667pt;}
.y17a{bottom:387.546667pt;}
.y12f{bottom:388.826667pt;}
.y21e{bottom:389.626667pt;}
.y1e8{bottom:389.826667pt;}
.y8f{bottom:391.226667pt;}
.y1dc{bottom:395.266667pt;}
.y13c{bottom:395.586667pt;}
.y224{bottom:398.466667pt;}
.y1d{bottom:399.266667pt;}
.y248{bottom:401.026667pt;}
.y1bb{bottom:402.306667pt;}
.y18a{bottom:402.946667pt;}
.y202{bottom:402.973333pt;}
.y1ac{bottom:403.586667pt;}
.y5{bottom:403.906667pt;}
.y110{bottom:404.226667pt;}
.y83{bottom:407.586667pt;}
.y21d{bottom:411.906667pt;}
.yf2{bottom:413.666667pt;}
.y1d6{bottom:414.306667pt;}
.y9e{bottom:414.786667pt;}
.y158{bottom:415.266667pt;}
.y43{bottom:416.066667pt;}
.y5c{bottom:418.466667pt;}
.yb2{bottom:420.866667pt;}
.ye6{bottom:421.826667pt;}
.y13b{bottom:423.106667pt;}
.y34{bottom:423.266667pt;}
.y1e7{bottom:423.933333pt;}
.y22a{bottom:425.533333pt;}
.y12e{bottom:425.666667pt;}
.y8e{bottom:428.066667pt;}
.y1c{bottom:436.066667pt;}
.y127{bottom:438.946667pt;}
.y247{bottom:439.106667pt;}
.y190{bottom:439.746667pt;}
.y189{bottom:439.906667pt;}
.y1ab{bottom:440.386667pt;}
.y201{bottom:440.573333pt;}
.y10f{bottom:441.026667pt;}
.y1db{bottom:441.506667pt;}
.y179{bottom:443.106667pt;}
.y82{bottom:445.666667pt;}
.y21c{bottom:449.506667pt;}
.y1e6{bottom:450.333333pt;}
.yf1{bottom:450.466667pt;}
.y13a{bottom:450.786667pt;}
.y157{bottom:452.066667pt;}
.y229{bottom:452.573333pt;}
.y1f9{bottom:452.706667pt;}
.y9d{bottom:452.866667pt;}
.y1ba{bottom:453.506667pt;}
.y42{bottom:453.986667pt;}
.y5b{bottom:455.266667pt;}
.yb1{bottom:457.666667pt;}
.ye5{bottom:458.626667pt;}
.y33{bottom:460.066667pt;}
.y12d{bottom:462.466667pt;}
.y8d{bottom:464.866667pt;}
.y1da{bottom:468.546667pt;}
.y1b{bottom:472.866667pt;}
.y18f{bottom:476.706667pt;}
.y1e5{bottom:476.733333pt;}
.y23b{bottom:477.186667pt;}
.y200{bottom:478.173333pt;}
.y139{bottom:478.306667pt;}
.y228{bottom:479.773333pt;}
.y178{bottom:479.906667pt;}
.y81{bottom:482.466667pt;}
.y21b{bottom:487.106667pt;}
.yf0{bottom:487.266667pt;}
.y156{bottom:488.866667pt;}
.y9c{bottom:489.666667pt;}
.y1aa{bottom:490.306667pt;}
.y170{bottom:490.466667pt;}
.y41{bottom:492.066667pt;}
.ya8{bottom:493.186667pt;}
.y10e{bottom:493.506667pt;}
.yb0{bottom:494.466667pt;}
.y188{bottom:495.266667pt;}
.ye4{bottom:495.426667pt;}
.y1d9{bottom:495.586667pt;}
.y32{bottom:496.866667pt;}
.yc4{bottom:497.986667pt;}
.y12c{bottom:499.266667pt;}
.y120{bottom:501.666667pt;}
.y1e4{bottom:503.133333pt;}
.y1f8{bottom:504.866667pt;}
.y138{bottom:505.986667pt;}
.y4{bottom:506.786667pt;}
.y227{bottom:506.813333pt;}
.y6f{bottom:507.746667pt;}
.y1a{bottom:509.666667pt;}
.y1ff{bottom:515.773333pt;}
.y8c{bottom:517.346667pt;}
.y80{bottom:520.386667pt;}
.y1f7{bottom:521.506667pt;}
.y1d8{bottom:522.626667pt;}
.yef{bottom:524.066667pt;}
.y21a{bottom:524.706667pt;}
.y155{bottom:525.666667pt;}
.y9b{bottom:526.466667pt;}
.y23a{bottom:527.106667pt;}
.y1a9{bottom:527.266667pt;}
.y40{bottom:528.866667pt;}
.y1e3{bottom:529.533333pt;}
.yaf{bottom:531.266667pt;}
.y187{bottom:532.066667pt;}
.ya7{bottom:532.386667pt;}
.ye3{bottom:533.346667pt;}
.y137{bottom:533.506667pt;}
.y31{bottom:533.666667pt;}
.y223{bottom:533.853333pt;}
.y177{bottom:535.266667pt;}
.yc3{bottom:536.066667pt;}
.y11f{bottom:538.466667pt;}
.y16f{bottom:540.546667pt;}
.y3{bottom:543.586667pt;}
.y19{bottom:546.466667pt;}
.y10d{bottom:546.626667pt;}
.y1c8{bottom:549.666667pt;}
.y1f6{bottom:553.506667pt;}
.y1fd{bottom:554.173333pt;}
.y1e1{bottom:556.573333pt;}
.y7f{bottom:559.586667pt;}
.y6e{bottom:560.866667pt;}
.y219{bottom:562.306667pt;}
.y154{bottom:562.466667pt;}
.y9a{bottom:563.266667pt;}
.y239{bottom:564.066667pt;}
.y3f{bottom:565.666667pt;}
.y126{bottom:566.786667pt;}
.yae{bottom:568.066667pt;}
.y222{bottom:568.933333pt;}
.y30{bottom:570.466667pt;}
.ye2{bottom:571.426667pt;}
.yc2{bottom:572.866667pt;}
.y11e{bottom:575.266667pt;}
.y1d5{bottom:576.706667pt;}
.y1a8{bottom:577.346667pt;}
.y16e{bottom:577.506667pt;}
.y18{bottom:583.266667pt;}
.y1e0{bottom:583.813333pt;}
.y10c{bottom:584.546667pt;}
.y1f5{bottom:585.506667pt;}
.y186{bottom:587.586667pt;}
.y1b9{bottom:590.626667pt;}
.y176{bottom:590.786667pt;}
.y7e{bottom:597.666667pt;}
.y6d{bottom:598.786667pt;}
.y153{bottom:599.266667pt;}
.y217{bottom:599.906667pt;}
.y99{bottom:600.066667pt;}
.y5a{bottom:602.493333pt;}
.y3e{bottom:603.613333pt;}
.y1d4{bottom:603.773333pt;}
.yad{bottom:604.893333pt;}
.y2f{bottom:607.293333pt;}
.ye1{bottom:608.253333pt;}
.y221{bottom:609.413333pt;}
.yc1{bottom:609.693333pt;}
.y11d{bottom:612.093333pt;}
.y238{bottom:614.173333pt;}
.y1a7{bottom:614.333333pt;}
.y1f4{bottom:617.533333pt;}
.y17{bottom:620.093333pt;}
.y10b{bottom:622.653333pt;}
.y185{bottom:624.413333pt;}
.y16d{bottom:627.453333pt;}
.y1fc{bottom:627.653333pt;}
.y1d3{bottom:630.973333pt;}
.y7d{bottom:634.493333pt;}
.y152{bottom:636.093333pt;}
.y6c{bottom:638.013333pt;}
.y216{bottom:638.173333pt;}
.y59{bottom:639.293333pt;}
.y1b8{bottom:640.733333pt;}
.y3d{bottom:642.813333pt;}
.y19c{bottom:642.973333pt;}
.y2e{bottom:644.093333pt;}
.ye0{bottom:645.053333pt;}
.y1df{bottom:646.053333pt;}
.y220{bottom:646.213333pt;}
.y175{bottom:646.333333pt;}
.yc0{bottom:646.493333pt;}
.y11c{bottom:648.893333pt;}
.y2{bottom:649.213333pt;}
.y1f3{bottom:649.533333pt;}
.y237{bottom:650.973333pt;}
.y16{bottom:656.893333pt;}
.y1d2{bottom:658.013333pt;}
.y10a{bottom:660.573333pt;}
.y1a6{bottom:664.253333pt;}
.y16c{bottom:664.413333pt;}
.y1fb{bottom:664.613333pt;}
.y7c{bottom:671.293333pt;}
.y151{bottom:672.893333pt;}
.y215{bottom:675.773333pt;}
.y58{bottom:676.093333pt;}
.y6b{bottom:677.213333pt;}
.y246{bottom:677.533333pt;}
.y1b7{bottom:677.693333pt;}
.yd9{bottom:678.013333pt;}
.y184{bottom:679.773333pt;}
.y2d{bottom:680.893333pt;}
.y1f2{bottom:681.533333pt;}
.y174{bottom:682.973333pt;}
.y1de{bottom:683.013333pt;}
.ybf{bottom:683.293333pt;}
.y1fa{bottom:683.333333pt;}
.y1d1{bottom:685.053333pt;}
.y11b{bottom:685.693333pt;}
.y15{bottom:693.693333pt;}
.ydf{bottom:694.013333pt;}
.y19b{bottom:698.493333pt;}
.y109{bottom:699.773333pt;}
.y236{bottom:701.053333pt;}
.y1a5{bottom:701.213333pt;}
.y7b{bottom:708.093333pt;}
.y150{bottom:709.693333pt;}
.y1d0{bottom:712.093333pt;}
.y57{bottom:712.893333pt;}
.y214{bottom:713.373333pt;}
.yee{bottom:714.013333pt;}
.y1f1{bottom:714.173333pt;}
.y16b{bottom:714.333333pt;}
.y245{bottom:714.493333pt;}
.y98{bottom:715.293333pt;}
.y6a{bottom:716.413333pt;}
.y2c{bottom:717.693333pt;}
.y173{bottom:719.773333pt;}
.ybe{bottom:720.093333pt;}
.y11a{bottom:722.493333pt;}
.y1b6{bottom:727.613333pt;}
.y14{bottom:730.493333pt;}
.y106{bottom:734.013333pt;}
.y183{bottom:735.293333pt;}
.y235{bottom:738.013333pt;}
.y1cf{bottom:739.133333pt;}
.yd8{bottom:742.813333pt;}
.y7a{bottom:744.893333pt;}
.y1f0{bottom:746.173333pt;}
.y14f{bottom:746.493333pt;}
.y56{bottom:749.693333pt;}
.y108{bottom:750.013333pt;}
.y213{bottom:750.973333pt;}
.y1a4{bottom:751.133333pt;}
.y16a{bottom:751.293333pt;}
.y164{bottom:752.413333pt;}
.y97{bottom:753.213333pt;}
.y2b{bottom:754.493333pt;}
.ybd{bottom:756.893333pt;}
.y244{bottom:764.413333pt;}
.y1b5{bottom:764.573333pt;}
.y1ce{bottom:766.173333pt;}
.y13{bottom:767.293333pt;}
.y182{bottom:772.093333pt;}
.y119{bottom:774.973333pt;}
.y172{bottom:775.293333pt;}
.y1ef{bottom:778.173333pt;}
.yd7{bottom:779.613333pt;}
.y79{bottom:782.813333pt;}
.y14e{bottom:783.293333pt;}
.y55{bottom:786.493333pt;}
.y234{bottom:787.933333pt;}
.y1a3{bottom:788.093333pt;}
.y212{bottom:788.573333pt;}
.yc{bottom:789.482667pt;}
.y19a{bottom:790.813333pt;}
.y2a{bottom:791.293333pt;}
.y1cd{bottom:793.373333pt;}
.ybc{bottom:793.693333pt;}
.yff{bottom:794.946667pt;}
.y24b{bottom:800.000000pt;}
.y169{bottom:801.213333pt;}
.y243{bottom:801.373333pt;}
.y12{bottom:804.093333pt;}
.y12b{bottom:809.373333pt;}
.y1ee{bottom:810.213333pt;}
.y105{bottom:811.013333pt;}
.y171{bottom:812.133333pt;}
.y1b4{bottom:814.693333pt;}
.yb{bottom:815.082667pt;}
.yd6{bottom:816.453333pt;}
.y14d{bottom:820.133333pt;}
.y1cc{bottom:820.453333pt;}
.y78{bottom:822.053333pt;}
.y54{bottom:823.333333pt;}
.y163{bottom:826.053333pt;}
.y211{bottom:826.213333pt;}
.y181{bottom:827.653333pt;}
.y29{bottom:828.133333pt;}
.ybb{bottom:830.533333pt;}
.y252{bottom:831.973333pt;}
.y1a2{bottom:838.053333pt;}
.y168{bottom:838.213333pt;}
.y11{bottom:840.933333pt;}
.y1ed{bottom:842.213333pt;}
.y1cb{bottom:847.493333pt;}
.y242{bottom:851.493333pt;}
.y1b3{bottom:851.653333pt;}
.yd5{bottom:854.373333pt;}
.yfa{bottom:855.746667pt;}
.y14c{bottom:856.933333pt;}
.y53{bottom:860.133333pt;}
.y77{bottom:861.253333pt;}
.y12a{bottom:862.533333pt;}
.yfe{bottom:863.813333pt;}
.y210{bottom:864.613333pt;}
.y28{bottom:864.933333pt;}
.yba{bottom:867.333333pt;}
.y1ec{bottom:874.213333pt;}
.y1c5{bottom:874.533333pt;}
.y1a1{bottom:875.013333pt;}
.y10{bottom:877.733333pt;}
.y251{bottom:882.373333pt;}
.y180{bottom:883.013333pt;}
.y167{bottom:888.293333pt;}
.yd1{bottom:888.413333pt;}
.y241{bottom:888.453333pt;}
.yd4{bottom:896.453333pt;}
.y52{bottom:896.933333pt;}
.y14b{bottom:897.413333pt;}
.y76{bottom:899.333333pt;}
.y1b2{bottom:901.573333pt;}
.y27{bottom:901.733333pt;}
.y250{bottom:902.053333pt;}
.y1ea{bottom:907.013333pt;}
.yf{bottom:914.533333pt;}
.yb9{bottom:919.813333pt;}
.y1a0{bottom:925.093333pt;}
.y166{bottom:925.253333pt;}
.y14a{bottom:929.253333pt;}
.y24f{bottom:932.773333pt;}
.y51{bottom:933.733333pt;}
.y75{bottom:936.133333pt;}
.y129{bottom:937.253333pt;}
.y1c4{bottom:938.053333pt;}
.y240{bottom:938.373333pt;}
.y26{bottom:938.533333pt;}
.ye{bottom:951.333333pt;}
.y24e{bottom:952.453333pt;}
.y149{bottom:956.773333pt;}
.y19f{bottom:962.053333pt;}
.y50{bottom:971.653333pt;}
.y74{bottom:972.933333pt;}
.y1e9{bottom:974.853333pt;}
.y1c3{bottom:975.013333pt;}
.y165{bottom:975.173333pt;}
.y25{bottom:975.333333pt;}
.y148{bottom:984.453333pt;}
.y4f{bottom:1010.853333pt;}
.y1c2{bottom:1011.813333pt;}
.y147{bottom:1011.973333pt;}
.yd{bottom:1012.133333pt;}
.y24d{bottom:1013.413333pt;}
.ya{bottom:1021.789333pt;}
.y9{bottom:1037.789333pt;}
.y24c{bottom:1040.000000pt;}
.y8{bottom:1053.789333pt;}
.y253{bottom:1106.560000pt;}
.he{height:18.524813pt;}
.h1b{height:23.533384pt;}
.h14{height:25.266963pt;}
.h2c{height:26.400000pt;}
.h2d{height:26.432000pt;}
.h26{height:27.162359pt;}
.h22{height:27.204660pt;}
.h2a{height:27.680000pt;}
.h3a{height:30.982500pt;}
.h2{height:31.520000pt;}
.h32{height:32.000000pt;}
.h33{height:32.032000pt;}
.h37{height:33.277500pt;}
.h1c{height:34.544199pt;}
.hf{height:34.863413pt;}
.h5{height:37.057292pt;}
.h36{height:37.600000pt;}
.h35{height:37.632000pt;}
.h25{height:38.374950pt;}
.h18{height:38.394052pt;}
.h21{height:38.434714pt;}
.h1f{height:38.453845pt;}
.h15{height:39.596539pt;}
.h12{height:41.189458pt;}
.h17{height:42.534393pt;}
.h1e{height:42.600634pt;}
.hd{height:44.466132pt;}
.h13{height:45.156250pt;}
.h1a{height:45.422633pt;}
.h23{height:45.493372pt;}
.h38{height:47.621250pt;}
.h4{height:52.750000pt;}
.h34{height:55.302500pt;}
.h3d{height:55.625000pt;}
.h39{height:56.032000pt;}
.h27{height:57.031250pt;}
.h3{height:57.375000pt;}
.h1d{height:57.610814pt;}
.h6{height:57.833333pt;}
.h11{height:58.192420pt;}
.h10{height:58.221386pt;}
.h24{height:59.503649pt;}
.ha{height:62.812500pt;}
.h19{height:64.204988pt;}
.h20{height:64.304977pt;}
.h3f{height:64.500000pt;}
.h29{height:65.695000pt;}
.h8{height:65.781915pt;}
.h16{height:66.123086pt;}
.h2f{height:66.625000pt;}
.hc{height:67.650937pt;}
.h7{height:67.881250pt;}
.h9{height:67.987917pt;}
.hb{height:68.041250pt;}
.h28{height:76.201250pt;}
.h2e{height:134.720000pt;}
.h3b{height:134.746667pt;}
.h2b{height:324.226667pt;}
.h30{height:793.760000pt;}
.h31{height:794.000000pt;}
.h3c{height:816.000000pt;}
.h3e{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:8.000000pt;}
.w4{width:16.000000pt;}
.w14{width:28.320000pt;}
.wd{width:56.032000pt;}
.wc{width:60.800000pt;}
.w10{width:75.072000pt;}
.w34{width:75.232000pt;}
.w25{width:76.800000pt;}
.wa{width:84.160000pt;}
.w31{width:94.240000pt;}
.w29{width:95.680000pt;}
.w1f{width:95.712000pt;}
.w33{width:97.280000pt;}
.w2f{width:103.552000pt;}
.we{width:106.240000pt;}
.wf{width:107.072000pt;}
.w2e{width:110.752000pt;}
.w35{width:112.800000pt;}
.w23{width:117.312000pt;}
.w2d{width:122.112000pt;}
.w2c{width:123.872000pt;}
.w2a{width:133.440000pt;}
.w2b{width:133.466667pt;}
.w24{width:134.586667pt;}
.wb{width:138.106667pt;}
.w36{width:141.146667pt;}
.w19{width:141.760000pt;}
.w16{width:141.786667pt;}
.w17{width:142.426667pt;}
.w28{width:146.586667pt;}
.w1a{width:151.226667pt;}
.w1e{width:153.466667pt;}
.w18{width:160.026667pt;}
.w27{width:160.506667pt;}
.w1b{width:160.986667pt;}
.w30{width:161.466667pt;}
.w1c{width:174.306667pt;}
.w20{width:179.680000pt;}
.w1d{width:183.866667pt;}
.w22{width:191.866667pt;}
.w26{width:201.626667pt;}
.w21{width:204.506667pt;}
.w3{width:211.996141pt;}
.w32{width:213.146667pt;}
.w5{width:324.935305pt;}
.w6{width:363.201688pt;}
.w8{width:403.992668pt;}
.w7{width:412.011175pt;}
.w9{width:418.395576pt;}
.w13{width:444.253333pt;}
.w15{width:453.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w38{width:816.000000pt;}
.w37{width:1056.000000pt;}
.w11{width:1122.560000pt;}
.w12{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x16{left:2.411505pt;}
.xe{left:3.660015pt;}
.x2d{left:7.200000pt;}
.x3e{left:12.800000pt;}
.x37{left:14.240000pt;}
.xa{left:15.411147pt;}
.x3a{left:17.312000pt;}
.x15{left:19.226933pt;}
.x3c{left:29.920000pt;}
.x40{left:34.440000pt;}
.x44{left:53.120000pt;}
.x6{left:54.982667pt;}
.x8{left:56.666745pt;}
.x45{left:57.640000pt;}
.x42{left:58.746667pt;}
.x5b{left:60.480000pt;}
.x43{left:61.640000pt;}
.xc{left:62.735149pt;}
.x62{left:67.680000pt;}
.x5{left:69.818667pt;}
.x1d{left:75.946068pt;}
.x26{left:80.244249pt;}
.x2c{left:83.232000pt;}
.x57{left:88.832000pt;}
.x10{left:90.731536pt;}
.x47{left:94.272000pt;}
.x3{left:96.192000pt;}
.x35{left:98.080000pt;}
.xd{left:105.500551pt;}
.x25{left:107.205111pt;}
.x7{left:109.472000pt;}
.x2a{left:110.592000pt;}
.x9{left:114.233004pt;}
.x4{left:116.672000pt;}
.x56{left:120.992000pt;}
.x1b{left:131.252405pt;}
.xf{left:133.467750pt;}
.xb{left:135.364956pt;}
.x39{left:137.280000pt;}
.x4a{left:140.666667pt;}
.x29{left:144.026667pt;}
.x2{left:148.986667pt;}
.x19{left:151.477733pt;}
.x1f{left:155.389978pt;}
.x1a{left:163.442086pt;}
.x2e{left:167.386667pt;}
.x34{left:172.506667pt;}
.x22{left:198.352927pt;}
.x24{left:200.620533pt;}
.x50{left:211.226667pt;}
.x58{left:222.266667pt;}
.x3b{left:239.866667pt;}
.x4b{left:243.546667pt;}
.x48{left:250.306667pt;}
.x51{left:288.026667pt;}
.x21{left:296.525459pt;}
.x2f{left:305.506667pt;}
.x2b{left:309.186667pt;}
.x18{left:310.715052pt;}
.x11{left:321.506667pt;}
.x20{left:323.718040pt;}
.x5c{left:325.506667pt;}
.x4c{left:339.266667pt;}
.x28{left:355.746667pt;}
.x12{left:359.746667pt;}
.x14{left:363.746667pt;}
.x46{left:365.186667pt;}
.x30{left:366.306667pt;}
.x3d{left:382.306667pt;}
.x5d{left:419.746667pt;}
.x31{left:422.333333pt;}
.x17{left:434.493333pt;}
.x52{left:441.506667pt;}
.x1c{left:472.733333pt;}
.x59{left:479.613333pt;}
.x23{left:513.533333pt;}
.x4d{left:518.946667pt;}
.x1e{left:521.533333pt;}
.x27{left:527.933333pt;}
.x36{left:542.333333pt;}
.x38{left:570.653333pt;}
.x49{left:575.973333pt;}
.x5a{left:601.733333pt;}
.x5e{left:632.893333pt;}
.x32{left:635.653333pt;}
.x53{left:643.133333pt;}
.x13{left:681.893333pt;}
.x1{left:689.893333pt;}
.x3f{left:712.413333pt;}
.x63{left:717.440000pt;}
.x4e{left:723.453333pt;}
.x5f{left:730.173333pt;}
.x54{left:803.653333pt;}
.x60{left:805.413333pt;}
.x41{left:863.653333pt;}
.x4f{left:915.333333pt;}
.x61{left:918.213333pt;}
.x55{left:950.240000pt;}
.x33{left:1010.720000pt;}
}




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