
    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_5ebced98fe95b675511edb00.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_a7f1735c746c0ab8e0e27914.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_ea5de68073013f8e6b59d7b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_155a8c2a1703a39aa6afdd12.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_39222719d9c726cf390bd401.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_c5b4fb59dea6b68391e0c5d4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.894000;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_07f00eb4745e328c255b042b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_ab4e6363b63dc64d43415957.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_b0ef91c8fbb4e0e900b1ae64.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_b9d0e2557e5793b84f721d1e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_bd1002caa90955c1c7e0be63.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.704000;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_f8744f8504462d78c5121132.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.903000;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_ca09fad65a46749217885a2a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.888000;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_ff0ce21bfa7739eadb1429fb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.684000;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_046a42f5b9cba7e9f8c862e6.woff2')format("woff");}.fff{font-family:fff;line-height:0.901000;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_4447adb48dd8c7d1c8231ef9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.704000;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_6056c6202a7ad21f3288a27f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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_aad1561068f22427fb89edfd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.725000;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_f3d97b6221b0147cb3043e98.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.694000;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_96a320cd4defba0503980b7a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.888000;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_254932279a55ead5137d4084.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.520000;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_962ff222bd6d64f83ddbfa1f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.999000;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_ab05df6a7cedf3536bb1fee8.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.911000;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_d90097417507d049c26f259d.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.705000;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_4663e36f8b4302d4e16a66e3.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.687000;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;}
.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);}
.m14{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m21{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m10{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m7{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m1d{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-60.504000px;}
.v4{vertical-align:-57.390000px;}
.v9{vertical-align:-49.842000px;}
.v3{vertical-align:-48.420000px;}
.v6{vertical-align:-10.662000px;}
.v1{vertical-align:-8.964000px;}
.v8{vertical-align:-6.768000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.616000px;}
.vd{vertical-align:8.994000px;}
.ve{vertical-align:10.392000px;}
.vb{vertical-align:17.274000px;}
.vc{vertical-align:19.386000px;}
.v5{vertical-align:23.754000px;}
.v2{vertical-align:48.420000px;}
.vf{vertical-align:49.836000px;}
.ls1a{letter-spacing:0.000000px;}
.ls73{letter-spacing:0.000120px;}
.ls4{letter-spacing:0.000300px;}
.ls2{letter-spacing:0.000767px;}
.lsa{letter-spacing:0.000843px;}
.ls1f{letter-spacing:0.001050px;}
.ls7e{letter-spacing:0.001593px;}
.ls38{letter-spacing:0.001599px;}
.ls77{letter-spacing:0.002147px;}
.ls28{letter-spacing:0.002155px;}
.ls44{letter-spacing:0.002706px;}
.ls3e{letter-spacing:0.003537px;}
.ls56{letter-spacing:0.005059px;}
.lsb{letter-spacing:0.006065px;}
.ls32{letter-spacing:0.006156px;}
.lse{letter-spacing:0.006843px;}
.ls13{letter-spacing:0.007097px;}
.ls86{letter-spacing:0.008062px;}
.ls5d{letter-spacing:0.008486px;}
.lsd{letter-spacing:0.013097px;}
.ls87{letter-spacing:0.013764px;}
.ls53{letter-spacing:0.014062px;}
.ls57{letter-spacing:0.015949px;}
.ls63{letter-spacing:0.016209px;}
.ls4f{letter-spacing:0.016592px;}
.ls66{letter-spacing:0.016662px;}
.ls51{letter-spacing:0.017798px;}
.ls60{letter-spacing:0.018394px;}
.ls11{letter-spacing:0.020370px;}
.ls6f{letter-spacing:0.021510px;}
.ls67{letter-spacing:0.025898px;}
.ls64{letter-spacing:0.026995px;}
.ls4d{letter-spacing:0.027611px;}
.ls7b{letter-spacing:0.028598px;}
.ls58{letter-spacing:0.028627px;}
.ls61{letter-spacing:0.029180px;}
.ls36{letter-spacing:0.030193px;}
.ls47{letter-spacing:0.030346px;}
.ls4c{letter-spacing:0.031394px;}
.ls8a{letter-spacing:0.032583px;}
.ls6{letter-spacing:2.984177px;}
.ls40{letter-spacing:2.984915px;}
.ls6b{letter-spacing:2.985368px;}
.ls30{letter-spacing:2.985537px;}
.lsf{letter-spacing:2.990177px;}
.ls71{letter-spacing:2.990915px;}
.ls2d{letter-spacing:2.991537px;}
.ls26{letter-spacing:4.259644px;}
.ls68{letter-spacing:5.975950px;}
.ls62{letter-spacing:5.981950px;}
.ls9a{letter-spacing:7.134551px;}
.ls7{letter-spacing:8.308808px;}
.ls95{letter-spacing:9.032735px;}
.ls2e{letter-spacing:9.098189px;}
.ls27{letter-spacing:10.865464px;}
.ls22{letter-spacing:10.930918px;}
.ls10{letter-spacing:13.270183px;}
.ls4a{letter-spacing:14.530921px;}
.ls7c{letter-spacing:15.795895px;}
.lsc{letter-spacing:16.268177px;}
.ls12{letter-spacing:16.274177px;}
.ls1{letter-spacing:16.617617px;}
.ls8e{letter-spacing:17.083651px;}
.ls52{letter-spacing:17.535537px;}
.ls2b{letter-spacing:18.130924px;}
.ls33{letter-spacing:18.196379px;}
.ls37{letter-spacing:18.392743px;}
.ls7f{letter-spacing:18.399053px;}
.ls15{letter-spacing:18.470660px;}
.ls0{letter-spacing:19.941274px;}
.ls18{letter-spacing:19.963653px;}
.ls5{letter-spacing:20.024826px;}
.ls19{letter-spacing:20.029108px;}
.ls80{letter-spacing:20.749108px;}
.ls65{letter-spacing:21.168103px;}
.ls70{letter-spacing:21.170915px;}
.ls29{letter-spacing:21.171537px;}
.ls5b{letter-spacing:21.174103px;}
.ls6c{letter-spacing:21.600018px;}
.ls3a{letter-spacing:21.606103px;}
.ls74{letter-spacing:21.730927px;}
.ls1e{letter-spacing:21.796382px;}
.ls1d{letter-spacing:21.861836px;}
.ls3d{letter-spacing:21.927291px;}
.ls3f{letter-spacing:22.110103px;}
.ls3b{letter-spacing:22.123655px;}
.ls39{letter-spacing:22.320019px;}
.ls6d{letter-spacing:22.581837px;}
.ls3{letter-spacing:22.694177px;}
.ls21{letter-spacing:22.974565px;}
.ls76{letter-spacing:23.040019px;}
.ls78{letter-spacing:23.170928px;}
.ls5a{letter-spacing:23.236383px;}
.ls2c{letter-spacing:23.301838px;}
.ls5c{letter-spacing:23.367292px;}
.ls17{letter-spacing:23.432747px;}
.ls69{letter-spacing:23.563656px;}
.ls49{letter-spacing:23.629111px;}
.ls83{letter-spacing:23.694565px;}
.ls7d{letter-spacing:23.890929px;}
.ls92{letter-spacing:24.414566px;}
.ls90{letter-spacing:24.480020px;}
.ls3c{letter-spacing:24.610930px;}
.ls23{letter-spacing:24.676384px;}
.ls81{letter-spacing:24.807537px;}
.ls41{letter-spacing:25.396385px;}
.ls8d{letter-spacing:26.116385px;}
.ls59{letter-spacing:26.403537px;}
.ls5e{letter-spacing:26.406103px;}
.ls98{letter-spacing:26.408915px;}
.ls48{letter-spacing:26.409537px;}
.ls34{letter-spacing:27.229114px;}
.ls50{letter-spacing:27.294568px;}
.ls91{letter-spacing:27.426103px;}
.ls25{letter-spacing:27.677644px;}
.ls24{letter-spacing:27.687296px;}
.ls5f{letter-spacing:28.538206px;}
.ls16{letter-spacing:28.669115px;}
.ls45{letter-spacing:28.764777px;}
.ls94{letter-spacing:28.770777px;}
.ls1c{letter-spacing:29.061842px;}
.ls20{letter-spacing:29.323661px;}
.ls75{letter-spacing:29.454570px;}
.ls6e{letter-spacing:29.520025px;}
.ls97{letter-spacing:29.847298px;}
.ls31{letter-spacing:29.912752px;}
.ls72{letter-spacing:30.109116px;}
.ls82{letter-spacing:30.240025px;}
.ls9b{letter-spacing:30.370934px;}
.ls43{letter-spacing:30.436389px;}
.ls8b{letter-spacing:30.894571px;}
.ls88{letter-spacing:30.960026px;}
.ls99{letter-spacing:32.465482px;}
.ls6a{letter-spacing:32.530936px;}
.ls1b{letter-spacing:32.727300px;}
.ls14{letter-spacing:33.210843px;}
.ls8f{letter-spacing:33.512755px;}
.ls42{letter-spacing:33.774574px;}
.ls93{letter-spacing:35.083666px;}
.ls4e{letter-spacing:36.327303px;}
.ls89{letter-spacing:36.366843px;}
.ls4b{letter-spacing:36.392758px;}
.ls8{letter-spacing:36.522892px;}
.ls9{letter-spacing:36.531303px;}
.ls54{letter-spacing:37.962843px;}
.ls84{letter-spacing:37.963668px;}
.ls96{letter-spacing:39.992761px;}
.ls35{letter-spacing:41.563671px;}
.ls2a{letter-spacing:41.629126px;}
.ls85{letter-spacing:41.631099px;}
.ls2f{letter-spacing:65.454600px;}
.ls8c{letter-spacing:74.552789px;}
.ls7a{letter-spacing:83.585524px;}
.ls79{letter-spacing:83.650979px;}
.ls46{letter-spacing:146.964815px;}
.ls55{letter-spacing:724.451513px;}
.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;}
}
.ws40{word-spacing:-54.523682px;}
.ws4f{word-spacing:-50.989133px;}
.ws8d{word-spacing:-50.923679px;}
.ws5a{word-spacing:-47.323676px;}
.ws86{word-spacing:-47.258221px;}
.ws13{word-spacing:-46.505417px;}
.ws57{word-spacing:-42.637126px;}
.wse{word-spacing:-40.049652px;}
.ws16{word-spacing:-38.937826px;}
.ws3f{word-spacing:-33.453846px;}
.ws26{word-spacing:-32.727300px;}
.ws5b{word-spacing:-31.771663px;}
.ws87{word-spacing:-31.706208px;}
.wsa{word-spacing:-30.551309px;}
.ws8{word-spacing:-29.887800px;}
.ws89{word-spacing:-29.127297px;}
.ws88{word-spacing:-29.061842px;}
.wsf{word-spacing:-28.955301px;}
.wsaa{word-spacing:-27.646998px;}
.ws8e{word-spacing:-27.490932px;}
.ws15{word-spacing:-26.540366px;}
.ws8c{word-spacing:-24.506202px;}
.ws32{word-spacing:-24.440748px;}
.ws71{word-spacing:-24.048020px;}
.ws78{word-spacing:-23.524383px;}
.ws97{word-spacing:-22.477110px;}
.ws51{word-spacing:-21.298927px;}
.ws56{word-spacing:-18.183288px;}
.ws7d{word-spacing:-17.633469px;}
.ws14{word-spacing:-16.605662px;}
.wsb0{word-spacing:-16.363650px;}
.ws22{word-spacing:-16.139475px;}
.wsad{word-spacing:-16.101832px;}
.ws9d{word-spacing:-15.447286px;}
.ws43{word-spacing:-14.792740px;}
.ws65{word-spacing:-14.400012px;}
.ws66{word-spacing:-14.334557px;}
.wsce{word-spacing:-14.138194px;}
.wsa4{word-spacing:-14.111859px;}
.wsaf{word-spacing:-14.072739px;}
.ws47{word-spacing:-13.941830px;}
.ws44{word-spacing:-13.490193px;}
.ws49{word-spacing:-13.449600px;}
.ws36{word-spacing:-13.352738px;}
.ws4a{word-spacing:-13.025465px;}
.ws9e{word-spacing:-12.960011px;}
.ws9b{word-spacing:-12.829102px;}
.ws31{word-spacing:-12.698192px;}
.ws33{word-spacing:-12.632738px;}
.ws67{word-spacing:-12.567283px;}
.ws60{word-spacing:-12.501829px;}
.wsd1{word-spacing:-12.436374px;}
.ws69{word-spacing:-12.305465px;}
.wsb1{word-spacing:-12.240010px;}
.ws96{word-spacing:-12.109101px;}
.ws28{word-spacing:-12.069828px;}
.ws45{word-spacing:-12.050192px;}
.wsc7{word-spacing:-11.912737px;}
.ws7e{word-spacing:-11.847283px;}
.wsa0{word-spacing:-11.788373px;}
.ws6c{word-spacing:-11.742555px;}
.wsae{word-spacing:-11.722919px;}
.ws1b{word-spacing:-11.417140px;}
.wsd0{word-spacing:-11.395646px;}
.ws4c{word-spacing:-11.389100px;}
.ws1c{word-spacing:-11.357364px;}
.ws4b{word-spacing:-11.323646px;}
.ws70{word-spacing:-11.258191px;}
.ws6f{word-spacing:-11.192737px;}
.ws42{word-spacing:-11.127282px;}
.ws3e{word-spacing:-11.061827px;}
.ws35{word-spacing:-10.996373px;}
.ws2e{word-spacing:-10.930918px;}
.wscd{word-spacing:-10.872009px;}
.ws3b{word-spacing:-10.865464px;}
.ws77{word-spacing:-10.800009px;}
.ws3d{word-spacing:-10.734554px;}
.ws24{word-spacing:-10.669100px;}
.ws68{word-spacing:-10.603645px;}
.ws4d{word-spacing:-10.544736px;}
.ws2d{word-spacing:-10.538191px;}
.ws59{word-spacing:-10.479281px;}
.ws3a{word-spacing:-10.472736px;}
.ws9f{word-spacing:-10.413827px;}
.ws6a{word-spacing:-10.407281px;}
.ws80{word-spacing:-10.348372px;}
.wsc8{word-spacing:-10.341827px;}
.ws9{word-spacing:-10.341179px;}
.ws72{word-spacing:-10.282918px;}
.ws2{word-spacing:-10.281403px;}
.ws12{word-spacing:-10.221628px;}
.ws37{word-spacing:-10.217463px;}
.ws3{word-spacing:-10.161852px;}
.ws9c{word-spacing:-10.152008px;}
.ws98{word-spacing:-10.145463px;}
.ws5{word-spacing:-10.102076px;}
.ws55{word-spacing:-10.086554px;}
.ws95{word-spacing:-10.080008px;}
.ws54{word-spacing:-10.021099px;}
.ws6{word-spacing:-9.982525px;}
.ws94{word-spacing:-9.955645px;}
.ws6b{word-spacing:-9.909826px;}
.ws10{word-spacing:-9.862974px;}
.wsc9{word-spacing:-9.824735px;}
.wsac{word-spacing:-9.818190px;}
.wsb2{word-spacing:-9.759281px;}
.ws73{word-spacing:-9.693826px;}
.ws38{word-spacing:-9.687281px;}
.ws85{word-spacing:-9.628372px;}
.ws6d{word-spacing:-9.562917px;}
.wsb6{word-spacing:-9.556372px;}
.ws4{word-spacing:-9.324994px;}
.wsa9{word-spacing:-9.247945px;}
.wsa8{word-spacing:-9.194147px;}
.ws58{word-spacing:-9.032735px;}
.ws17{word-spacing:-8.906564px;}
.ws52{word-spacing:-8.777462px;}
.wsbb{word-spacing:-8.770916px;}
.ws7f{word-spacing:-8.705462px;}
.wsb3{word-spacing:-8.683382px;}
.wsc{word-spacing:-8.547911px;}
.wsba{word-spacing:-8.509098px;}
.ws74{word-spacing:-8.116370px;}
.ws75{word-spacing:-8.050916px;}
.wscf{word-spacing:-7.985461px;}
.wsb{word-spacing:-7.896357px;}
.ws63{word-spacing:-7.664734px;}
.wsbe{word-spacing:-7.658188px;}
.wsca{word-spacing:-7.533824px;}
.ws2b{word-spacing:-7.527279px;}
.wsa5{word-spacing:-7.402915px;}
.ws41{word-spacing:-7.337461px;}
.ws7c{word-spacing:-7.330915px;}
.ws7a{word-spacing:-7.272006px;}
.ws1d{word-spacing:-7.232848px;}
.wsbd{word-spacing:-7.075642px;}
.ws2c{word-spacing:-7.069097px;}
.ws11{word-spacing:-7.059498px;}
.wsb7{word-spacing:-6.944733px;}
.ws19{word-spacing:-6.939947px;}
.wsab{word-spacing:-6.748369px;}
.wsbf{word-spacing:-6.617460px;}
.ws1f{word-spacing:-6.515540px;}
.wscb{word-spacing:-6.421096px;}
.ws25{word-spacing:-6.355642px;}
.ws9a{word-spacing:-6.290187px;}
.wsbc{word-spacing:-6.224732px;}
.wsd{word-spacing:-6.162864px;}
.ws23{word-spacing:-6.152732px;}
.wsb5{word-spacing:-6.021823px;}
.ws2a{word-spacing:-5.825459px;}
.wsb4{word-spacing:-5.563641px;}
.ws1a{word-spacing:-5.559131px;}
.ws20{word-spacing:-5.499355px;}
.wsa2{word-spacing:-5.367277px;}
.ws46{word-spacing:-5.170913px;}
.ws8a{word-spacing:-5.112004px;}
.ws48{word-spacing:-5.105459px;}
.wscc{word-spacing:-4.915640px;}
.wsb9{word-spacing:-4.647277px;}
.wsc6{word-spacing:-4.189094px;}
.ws29{word-spacing:-4.058185px;}
.ws27{word-spacing:-3.992731px;}
.ws50{word-spacing:-3.933821px;}
.ws21{word-spacing:-3.885414px;}
.ws81{word-spacing:-3.665458px;}
.ws90{word-spacing:-3.344730px;}
.wsc5{word-spacing:-3.338185px;}
.ws92{word-spacing:-3.279275px;}
.ws82{word-spacing:-3.207275px;}
.ws83{word-spacing:-3.017457px;}
.ws6e{word-spacing:-3.010912px;}
.wsb8{word-spacing:-1.047274px;}
.wsc0{word-spacing:-0.785455px;}
.wsc3{word-spacing:-0.726546px;}
.wsc2{word-spacing:-0.720001px;}
.ws4e{word-spacing:-0.314182px;}
.ws18{word-spacing:-0.286923px;}
.ws99{word-spacing:-0.248727px;}
.ws64{word-spacing:-0.065455px;}
.ws5d{word-spacing:-0.052364px;}
.ws7{word-spacing:-0.047820px;}
.ws34{word-spacing:0.000000px;}
.wsa7{word-spacing:0.000571px;}
.ws2f{word-spacing:0.013091px;}
.ws79{word-spacing:0.078546px;}
.wsa1{word-spacing:0.209455px;}
.wsa6{word-spacing:0.340364px;}
.ws3c{word-spacing:0.471273px;}
.ws76{word-spacing:2.290911px;}
.ws39{word-spacing:2.369457px;}
.ws53{word-spacing:2.762184px;}
.ws1e{word-spacing:4.853779px;}
.wsa3{word-spacing:7.057669px;}
.ws7b{word-spacing:7.854552px;}
.ws30{word-spacing:10.691971px;}
.wsc1{word-spacing:13.889466px;}
.wsc4{word-spacing:18.144015px;}
.ws1{word-spacing:23.312640px;}
.ws8f{word-spacing:26.836386px;}
.ws8b{word-spacing:27.032750px;}
.ws93{word-spacing:27.163659px;}
.ws84{word-spacing:27.556387px;}
.ws0{word-spacing:31.091012px;}
.ws5c{word-spacing:32.727300px;}
.ws91{word-spacing:34.821847px;}
.ws62{word-spacing:37.832759px;}
.ws61{word-spacing:66.907692px;}
.ws5e{word-spacing:99.137537px;}
.ws5f{word-spacing:99.202992px;}
._16{margin-left:-21.798013px;}
._1b{margin-left:-10.865464px;}
._13{margin-left:-9.032735px;}
._d{margin-left:-7.663206px;}
._4{margin-left:-5.284111px;}
._17{margin-left:-4.259985px;}
._8{margin-left:-3.259435px;}
._1{margin-left:-1.936742px;}
._2{width:1.374839px;}
._0{width:2.685602px;}
._b{width:4.961375px;}
._c{width:6.754643px;}
._20{width:8.062287px;}
._1f{width:10.140545px;}
._1c{width:11.925620px;}
._24{width:17.374015px;}
._7{width:19.128192px;}
._23{width:20.722213px;}
._6{width:21.746389px;}
._14{width:23.040019px;}
._9{width:24.602654px;}
._3{width:26.803392px;}
._11{width:28.145478px;}
._5{width:29.170493px;}
._a{width:30.460663px;}
._1e{width:32.457623px;}
._15{width:33.928810px;}
._1a{width:35.514952px;}
._26{width:36.594134px;}
._28{width:38.544901px;}
._f{width:39.703462px;}
._12{width:41.677717px;}
._21{width:43.021391px;}
._10{width:44.626742px;}
._18{width:47.858434px;}
._25{width:58.623703px;}
._22{width:62.116415px;}
._27{width:65.454012px;}
._19{width:80.697600px;}
._e{width:96.836850px;}
._1d{width:145.100029px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2c{bottom:63.168000px;}
.y2b{bottom:108.000000px;}
.y77{bottom:123.477000px;}
.y2a{bottom:128.323500px;}
.y78{bottom:132.642000px;}
.ye8{bottom:139.125000px;}
.yc2{bottom:139.557000px;}
.y76{bottom:148.647000px;}
.y52{bottom:158.299500px;}
.y29{bottom:160.876500px;}
.y75{bottom:168.972000px;}
.ye7{bottom:170.251500px;}
.y14f{bottom:170.709000px;}
.yc1{bottom:171.114000px;}
.y51{bottom:188.275500px;}
.y74{bottom:189.295500px;}
.y14e{bottom:191.032500px;}
.yc0{bottom:191.437500px;}
.y28{bottom:191.599500px;}
.y10a{bottom:199.533000px;}
.ye6{bottom:201.376500px;}
.y50{bottom:208.600500px;}
.y9a{bottom:209.619000px;}
.y14d{bottom:211.356000px;}
.ybf{bottom:211.762500px;}
.y27{bottom:211.923000px;}
.y12b{bottom:224.250000px;}
.y73{bottom:227.176500px;}
.y109{bottom:230.094000px;}
.y14c{bottom:231.679500px;}
.ybe{bottom:232.086000px;}
.y26{bottom:232.248000px;}
.ye5{bottom:232.503000px;}
.y4f{bottom:236.718000px;}
.y99{bottom:243.408000px;}
.y72{bottom:247.500000px;}
.y14b{bottom:252.003000px;}
.ybc{bottom:252.409500px;}
.y25{bottom:252.571500px;}
.ye4{bottom:252.826500px;}
.y4e{bottom:257.041500px;}
.ybd{bottom:258.348000px;}
.y12a{bottom:259.204500px;}
.y108{bottom:260.986500px;}
.y98{bottom:263.731500px;}
.y71{bottom:267.825000px;}
.y14a{bottom:272.328000px;}
.ybb{bottom:272.733000px;}
.y23{bottom:272.895000px;}
.y4d{bottom:277.366500px;}
.y24{bottom:278.833500px;}
.y129{bottom:279.529500px;}
.ye3{bottom:283.717500px;}
.y70{bottom:288.148500px;}
.y22{bottom:293.218500px;}
.y97{bottom:296.016000px;}
.yba{bottom:303.625500px;}
.y107{bottom:303.831000px;}
.y149{bottom:306.100500px;}
.y4c{bottom:308.257500px;}
.y6f{bottom:308.472000px;}
.y128{bottom:311.796000px;}
.y21{bottom:313.542000px;}
.y96{bottom:316.339500px;}
.y106{bottom:324.154500px;}
.y148{bottom:326.424000px;}
.ye2{bottom:326.650500px;}
.y20{bottom:333.867000px;}
.y6e{bottom:342.120000px;}
.yb9{bottom:346.626000px;}
.y127{bottom:346.750500px;}
.y95{bottom:348.624000px;}
.y4b{bottom:351.010500px;}
.y105{bottom:352.761000px;}
.y1f{bottom:354.190500px;}
.y147{bottom:360.198000px;}
.y6d{bottom:362.443500px;}
.ye1{bottom:363.178500px;}
.yb8{bottom:366.949500px;}
.y104{bottom:373.084500px;}
.y94{bottom:380.908500px;}
.y126{bottom:381.706500px;}
.y4a{bottom:382.521000px;}
.y6c{bottom:382.768500px;}
.yb7{bottom:387.273000px;}
.y1e{bottom:390.718500px;}
.y146{bottom:393.972000px;}
.y6b{bottom:403.092000px;}
.y103{bottom:404.791500px;}
.y93{bottom:405.721500px;}
.ye0{bottom:413.851500px;}
.y49{bottom:414.033000px;}
.y125{bottom:416.661000px;}
.yb6{bottom:418.831500px;}
.y102{bottom:425.115000px;}
.y145{bottom:427.744500px;}
.ydf{bottom:434.175000px;}
.y92{bottom:438.004500px;}
.y6a{bottom:440.973000px;}
.y124{bottom:441.468000px;}
.y1d{bottom:441.700500px;}
.y48{bottom:445.543500px;}
.y144{bottom:448.068000px;}
.yb5{bottom:450.388500px;}
.yde{bottom:454.498500px;}
.y101{bottom:456.820500px;}
.y91{bottom:458.329500px;}
.y1c{bottom:459.633000px;}
.y47{bottom:473.662500px;}
.y123{bottom:476.422500px;}
.y100{bottom:477.145500px;}
.y69{bottom:477.360000px;}
.y1b{bottom:477.567000px;}
.yb4{bottom:479.824500px;}
.y143{bottom:481.842000px;}
.ydd{bottom:483.574500px;}
.y90{bottom:490.612500px;}
.y46{bottom:493.986000px;}
.y1a{bottom:495.499500px;}
.y122{bottom:496.746000px;}
.yb3{bottom:500.148000px;}
.y142{bottom:502.165500px;}
.ydc{bottom:503.899500px;}
.yff{bottom:505.750500px;}
.y19{bottom:513.432000px;}
.y68{bottom:513.747000px;}
.y45{bottom:514.309500px;}
.y121{bottom:517.071000px;}
.yb2{bottom:520.471500px;}
.y141{bottom:522.489000px;}
.yfe{bottom:526.075500px;}
.y18{bottom:531.364500px;}
.y67{bottom:534.070500px;}
.y44{bottom:534.634500px;}
.y8f{bottom:535.368000px;}
.ydb{bottom:535.794000px;}
.y120{bottom:537.394500px;}
.yb1{bottom:540.795000px;}
.y140{bottom:542.814000px;}
.yfd{bottom:546.399000px;}
.y17{bottom:547.056000px;}
.y16{bottom:549.297000px;}
.y66{bottom:554.395500px;}
.y8e{bottom:555.202500px;}
.yda{bottom:556.117500px;}
.yb0{bottom:561.118500px;}
.y43{bottom:565.525500px;}
.yfc{bottom:566.722500px;}
.y15{bottom:567.229500px;}
.y11f{bottom:569.661000px;}
.y65{bottom:574.719000px;}
.y13f{bottom:576.586500px;}
.y14{bottom:585.163500px;}
.yfb{bottom:587.046000px;}
.yd9{bottom:588.012000px;}
.y11e{bottom:589.986000px;}
.yaf{bottom:590.554500px;}
.y8d{bottom:593.478000px;}
.y64{bottom:595.042500px;}
.y13e{bottom:596.910000px;}
.y13{bottom:603.096000px;}
.yfa{bottom:607.369500px;}
.y42{bottom:608.278500px;}
.y11d{bottom:610.309500px;}
.yae{bottom:610.879500px;}
.yd8{bottom:617.088000px;}
.y13d{bottom:617.235000px;}
.y8c{bottom:618.285000px;}
.y63{bottom:625.935000px;}
.y41{bottom:628.602000px;}
.y11c{bottom:630.633000px;}
.yad{bottom:631.203000px;}
.yd7{bottom:637.411500px;}
.yf9{bottom:638.262000px;}
.y8b{bottom:643.092000px;}
.y12{bottom:645.027000px;}
.y13c{bottom:651.007500px;}
.yac{bottom:651.526500px;}
.yd6{bottom:657.735000px;}
.y11b{bottom:661.525500px;}
.y11{bottom:662.748000px;}
.y40{bottom:665.130000px;}
.y62{bottom:669.694500px;}
.y13b{bottom:671.331000px;}
.y8a{bottom:675.387000px;}
.yab{bottom:680.962500px;}
.yf8{bottom:681.106500px;}
.yd5{bottom:688.861500px;}
.y61{bottom:690.018000px;}
.y139{bottom:691.654500px;}
.y10{bottom:692.574000px;}
.y13a{bottom:697.593000px;}
.yaa{bottom:701.286000px;}
.yf7{bottom:701.430000px;}
.y11a{bottom:705.060000px;}
.y89{bottom:707.682000px;}
.y88{bottom:708.292500px;}
.y60{bottom:710.341500px;}
.y138{bottom:711.979500px;}
.y3f{bottom:715.621500px;}
.yd4{bottom:719.986500px;}
.yf{bottom:722.400000px;}
.y15b{bottom:723.487500px;}
.y119{bottom:725.383500px;}
.y5f{bottom:730.665000px;}
.ya9{bottom:733.324500px;}
.y3e{bottom:735.945000px;}
.yf6{bottom:737.958000px;}
.y87{bottom:739.977000px;}
.ye{bottom:740.334000px;}
.y118{bottom:745.707000px;}
.y137{bottom:745.752000px;}
.yd3{bottom:748.507500px;}
.y5e{bottom:750.990000px;}
.ya8{bottom:753.648000px;}
.y15a{bottom:757.260000px;}
.yd{bottom:758.266500px;}
.y86{bottom:760.300500px;}
.y3d{bottom:764.064000px;}
.y117{bottom:766.030500px;}
.y136{bottom:766.075500px;}
.yd2{bottom:773.143500px;}
.yc{bottom:776.199000px;}
.ya7{bottom:785.686500px;}
.y5d{bottom:787.377000px;}
.yf5{bottom:788.541000px;}
.y159{bottom:791.034000px;}
.y85{bottom:794.089500px;}
.yb{bottom:794.131500px;}
.y3c{bottom:795.574500px;}
.y116{bottom:800.986500px;}
.y135{bottom:802.603500px;}
.yd1{bottom:804.036000px;}
.yf4{bottom:808.866000px;}
.ya{bottom:812.064000px;}
.y84{bottom:814.413000px;}
.ya6{bottom:815.122500px;}
.y3b{bottom:815.899500px;}
.y5c{bottom:823.764000px;}
.y158{bottom:824.806500px;}
.yf3{bottom:829.189500px;}
.y9{bottom:829.996500px;}
.ya5{bottom:835.446000px;}
.y115{bottom:835.941000px;}
.y83{bottom:845.305500px;}
.yd0{bottom:846.969000px;}
.y3a{bottom:847.410000px;}
.y8{bottom:847.930500px;}
.y134{bottom:854.161500px;}
.y114{bottom:856.264500px;}
.y157{bottom:858.580500px;}
.y5b{bottom:860.151000px;}
.yf2{bottom:860.895000px;}
.y7{bottom:865.863000px;}
.ya4{bottom:866.338500px;}
.ycf{bottom:867.292500px;}
.y39{bottom:867.733500px;}
.y133{bottom:874.486500px;}
.yf1{bottom:881.220000px;}
.y6{bottom:883.795500px;}
.y113{bottom:887.157000px;}
.yce{bottom:887.616000px;}
.y82{bottom:888.421500px;}
.y156{bottom:892.354500px;}
.y132{bottom:894.810000px;}
.y5a{bottom:896.538000px;}
.y38{bottom:899.245500px;}
.y5{bottom:907.407000px;}
.ycd{bottom:907.939500px;}
.y81{bottom:908.746500px;}
.ya3{bottom:909.339000px;}
.yf0{bottom:909.826500px;}
.y131{bottom:915.133500px;}
.y155{bottom:926.127000px;}
.y80{bottom:926.404500px;}
.y37{bottom:927.364500px;}
.ycc{bottom:928.263000px;}
.y7f{bottom:929.070000px;}
.ya2{bottom:929.662500px;}
.y59{bottom:929.998500px;}
.y112{bottom:930.691500px;}
.y130{bottom:935.457000px;}
.ycb{bottom:943.740000px;}
.y154{bottom:946.450500px;}
.y36{bottom:947.688000px;}
.yca{bottom:948.588000px;}
.ya1{bottom:949.986000px;}
.y111{bottom:951.015000px;}
.yef{bottom:952.846500px;}
.y58{bottom:960.891000px;}
.y4{bottom:964.158000px;}
.y7e{bottom:965.598000px;}
.y35{bottom:968.011500px;}
.y12f{bottom:969.231000px;}
.yee{bottom:970.948500px;}
.y110{bottom:971.338500px;}
.yc9{bottom:977.664000px;}
.ya0{bottom:979.422000px;}
.y153{bottom:980.224500px;}
.y34{bottom:988.335000px;}
.y12e{bottom:989.554500px;}
.yed{bottom:991.272000px;}
.y10f{bottom:991.663500px;}
.yc8{bottom:997.987500px;}
.y9f{bottom:999.747000px;}
.y3{bottom:1000.845000px;}
.y57{bottom:1004.650500px;}
.y33{bottom:1008.658500px;}
.y10e{bottom:1011.987000px;}
.y152{bottom:1013.997000px;}
.y7d{bottom:1016.454000px;}
.yc7{bottom:1018.311000px;}
.yec{bottom:1022.164500px;}
.y12d{bottom:1023.328500px;}
.y56{bottom:1024.974000px;}
.y32{bottom:1028.983500px;}
.y9e{bottom:1031.784000px;}
.y10d{bottom:1032.310500px;}
.y7c{bottom:1036.777500px;}
.yc6{bottom:1038.634500px;}
.y12c{bottom:1043.652000px;}
.y55{bottom:1045.297500px;}
.y2{bottom:1046.313000px;}
.y151{bottom:1047.771000px;}
.y31{bottom:1049.307000px;}
.y9d{bottom:1052.109000px;}
.y10c{bottom:1052.634000px;}
.y7b{bottom:1057.101000px;}
.yeb{bottom:1065.009000px;}
.y54{bottom:1065.622500px;}
.y150{bottom:1068.094500px;}
.y30{bottom:1069.630500px;}
.yc5{bottom:1070.529000px;}
.y1{bottom:1072.792500px;}
.y7a{bottom:1077.424500px;}
.y9c{bottom:1081.545000px;}
.y10b{bottom:1084.902000px;}
.yea{bottom:1085.332500px;}
.y2f{bottom:1089.954000px;}
.yc4{bottom:1092.901500px;}
.y79{bottom:1097.748000px;}
.y9b{bottom:1101.868500px;}
.y53{bottom:1102.009500px;}
.y2e{bottom:1118.073000px;}
.y2d{bottom:1138.396500px;}
.ye9{bottom:1139.007000px;}
.yc3{bottom:1142.715000px;}
.h9{height:29.038903px;}
.hc{height:33.187496px;}
.h5{height:41.842920px;}
.h8{height:44.473046px;}
.h6{height:44.831700px;}
.h16{height:44.967310px;}
.h11{height:45.425492px;}
.hb{height:49.090950px;}
.he{height:50.211840px;}
.h4{height:51.216077px;}
.h3{height:53.798400px;}
.h10{height:56.935496px;}
.hf{height:56.941496px;}
.hd{height:57.419702px;}
.ha{height:60.254040px;}
.h12{height:66.364950px;}
.h13{height:68.476950px;}
.h2{height:73.027727px;}
.h7{height:92.893046px;}
.h14{height:94.309046px;}
.h15{height:94.315046px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:106.086000px;}
.x20{left:108.000000px;}
.xce{left:111.252000px;}
.x103{left:116.182500px;}
.xc9{left:124.660500px;}
.xfd{left:126.271500px;}
.x26{left:127.999500px;}
.x59{left:130.507500px;}
.x25{left:133.404000px;}
.x3e{left:138.423000px;}
.x104{left:141.636000px;}
.x5a{left:142.990500px;}
.xfe{left:145.401000px;}
.x1f{left:147.160500px;}
.x7{left:148.909500px;}
.xae{left:150.118500px;}
.x48{left:153.870000px;}
.x100{left:156.846000px;}
.xd6{left:158.683500px;}
.x8e{left:163.999500px;}
.x2c{left:166.465500px;}
.xb4{left:167.896500px;}
.x6b{left:169.306500px;}
.x6{left:171.325500px;}
.x98{left:172.614000px;}
.xbb{left:174.006000px;}
.x2d{left:178.248000px;}
.xe2{left:181.539000px;}
.x99{left:184.041000px;}
.xc4{left:185.611500px;}
.x6c{left:186.928500px;}
.x64{left:190.732500px;}
.x6d{left:193.419000px;}
.xf2{left:195.786000px;}
.x9e{left:197.868000px;}
.xe3{left:199.956000px;}
.x86{left:203.443500px;}
.x6e{left:206.197500px;}
.xef{left:208.200000px;}
.x49{left:209.404500px;}
.x52{left:213.780000px;}
.xbd{left:218.418000px;}
.xd2{left:219.744000px;}
.xc5{left:221.388000px;}
.x73{left:222.826500px;}
.x9f{left:224.890500px;}
.x4a{left:227.827500px;}
.x74{left:229.318500px;}
.x23{left:230.991000px;}
.x53{left:232.234500px;}
.xfc{left:233.721000px;}
.xbe{left:235.203000px;}
.x54{left:238.470000px;}
.xf{left:240.826500px;}
.x75{left:242.097000px;}
.xbc{left:243.822000px;}
.x24{left:245.091000px;}
.xbf{left:248.269500px;}
.x15{left:251.892000px;}
.xe5{left:254.187000px;}
.x10{left:257.476500px;}
.xa0{left:260.539500px;}
.xd3{left:271.266000px;}
.x7d{left:276.360000px;}
.x2{left:281.163000px;}
.x101{left:282.211500px;}
.xe6{left:284.355000px;}
.x7e{left:287.928000px;}
.x76{left:292.233000px;}
.x102{left:293.779500px;}
.x9{left:295.312500px;}
.xa2{left:299.439000px;}
.xc1{left:300.504000px;}
.x1b{left:308.200500px;}
.x77{left:312.003000px;}
.x45{left:314.743500px;}
.xe4{left:316.074000px;}
.x1{left:317.353500px;}
.x78{left:318.493500px;}
.xa{left:321.651000px;}
.x2f{left:322.735500px;}
.x8a{left:323.907000px;}
.x50{left:326.988000px;}
.xaa{left:328.063500px;}
.x27{left:330.091500px;}
.x79{left:331.272000px;}
.x7f{left:334.068000px;}
.x14{left:335.769000px;}
.x1c{left:337.860000px;}
.xec{left:339.900000px;}
.x30{left:341.188500px;}
.xaf{left:342.423000px;}
.x80{left:343.630500px;}
.xcf{left:345.811500px;}
.x31{left:347.425500px;}
.xb0{left:348.658500px;}
.x81{left:349.810500px;}
.x2a{left:352.203000px;}
.xcb{left:354.432000px;}
.x51{left:356.868000px;}
.x28{left:358.932000px;}
.x32{left:360.204000px;}
.xb1{left:361.437000px;}
.xf3{left:363.178500px;}
.x2b{left:364.467000px;}
.xcc{left:366.019500px;}
.x82{left:369.081000px;}
.x5e{left:370.570500px;}
.x13{left:371.796000px;}
.xed{left:373.950000px;}
.x3{left:375.274500px;}
.xab{left:380.464500px;}
.x71{left:382.195500px;}
.x7a{left:384.567000px;}
.x55{left:386.209500px;}
.x4{left:388.269000px;}
.x4b{left:391.411500px;}
.x72{left:394.902000px;}
.x56{left:397.734000px;}
.x4c{left:399.693000px;}
.xd0{left:402.570000px;}
.x7b{left:403.836000px;}
.x87{left:405.328500px;}
.xb2{left:407.296500px;}
.x6f{left:409.134000px;}
.x43{left:410.490000px;}
.x88{left:411.807000px;}
.x5{left:413.812500px;}
.x70{left:415.624500px;}
.xa1{left:416.713500px;}
.x4d{left:418.116000px;}
.x9c{left:420.168000px;}
.xee{left:422.295000px;}
.xf6{left:425.758500px;}
.x44{left:427.624500px;}
.xb9{left:428.920500px;}
.xd7{left:433.693500px;}
.xa7{left:434.985000px;}
.x60{left:435.988500px;}
.xd1{left:438.156000px;}
.x29{left:442.366500px;}
.x11{left:446.596500px;}
.x61{left:448.767000px;}
.x12{left:453.010500px;}
.x46{left:454.048500px;}
.x9d{left:464.233500px;}
.x47{left:466.921500px;}
.x8f{left:484.381500px;}
.x7c{left:487.623000px;}
.xc0{left:495.556500px;}
.x83{left:500.721000px;}
.x8b{left:504.876000px;}
.x84{left:508.323000px;}
.x57{left:512.844000px;}
.xd4{left:522.949500px;}
.x58{left:525.622500px;}
.x21{left:529.311000px;}
.xcd{left:532.197000px;}
.x35{left:534.748500px;}
.xd5{left:537.063000px;}
.xe9{left:540.163500px;}
.xa6{left:542.356500px;}
.xe7{left:546.375000px;}
.x36{left:547.617000px;}
.x3f{left:549.858000px;}
.xc6{left:551.403000px;}
.x5b{left:554.836500px;}
.xda{left:555.973500px;}
.xc7{left:557.584500px;}
.x96{left:561.106500px;}
.x40{left:563.172000px;}
.x22{left:564.361500px;}
.x37{left:567.951000px;}
.x5c{left:572.191500px;}
.x5d{left:578.433000px;}
.xa3{left:582.192000px;}
.xf7{left:584.449500px;}
.x38{left:585.729000px;}
.x8c{left:587.040000px;}
.x16{left:589.056000px;}
.xb{left:590.941500px;}
.xc8{left:594.223500px;}
.x5f{left:595.666500px;}
.xd8{left:598.183500px;}
.x8d{left:601.152000px;}
.x17{left:602.301000px;}
.xc2{left:605.502000px;}
.xc{left:608.152500px;}
.xac{left:610.329000px;}
.xd{left:613.917000px;}
.xf4{left:615.540000px;}
.xd9{left:617.379000px;}
.x18{left:619.899000px;}
.x39{left:622.698000px;}
.xca{left:623.809500px;}
.xe{left:625.587000px;}
.xf5{left:626.826000px;}
.xc3{left:628.597500px;}
.xb3{left:629.779500px;}
.x19{left:631.755000px;}
.x85{left:634.405500px;}
.x65{left:636.487500px;}
.xf0{left:639.252000px;}
.x33{left:640.512000px;}
.x66{left:642.768000px;}
.xdc{left:644.008500px;}
.xad{left:645.246000px;}
.x3a{left:646.333500px;}
.xa4{left:647.632500px;}
.x90{left:649.501500px;}
.x8{left:650.880000px;}
.x62{left:652.830000px;}
.xa5{left:654.655500px;}
.x1a{left:656.041500px;}
.xf1{left:657.585000px;}
.x34{left:658.743000px;}
.x91{left:662.280000px;}
.xea{left:668.916000px;}
.x63{left:671.056500px;}
.x1d{left:672.417000px;}
.xdd{left:673.798500px;}
.x3b{left:679.144500px;}
.xe0{left:680.532000px;}
.x4e{left:681.871500px;}
.x1e{left:684.298500px;}
.x3c{left:687.481500px;}
.xf8{left:689.607000px;}
.xba{left:690.829500px;}
.x3d{left:695.664000px;}
.xe1{left:698.961000px;}
.x4f{left:700.296000px;}
.x9a{left:704.028000px;}
.x92{left:706.206000px;}
.xf9{left:707.853000px;}
.x97{left:716.040000px;}
.x9b{left:717.261000px;}
.xeb{left:718.494000px;}
.xff{left:721.603500px;}
.x93{left:723.826500px;}
.x89{left:726.055500px;}
.x94{left:730.171500px;}
.xfa{left:736.765500px;}
.xb5{left:738.982500px;}
.x95{left:742.950000px;}
.x67{left:744.826500px;}
.x41{left:746.299500px;}
.xde{left:751.906500px;}
.xa8{left:754.401000px;}
.xb6{left:757.252500px;}
.x42{left:758.658000px;}
.xfb{left:760.452000px;}
.x68{left:761.487000px;}
.xb7{left:763.489500px;}
.xe8{left:766.005000px;}
.x69{left:767.769000px;}
.xdf{left:770.320500px;}
.xa9{left:773.028000px;}
.xb8{left:776.268000px;}
.x6a{left:780.547500px;}
.xdb{left:783.525000px;}
@media print{
.va{vertical-align:-53.781333pt;}
.v4{vertical-align:-51.013333pt;}
.v9{vertical-align:-44.304000pt;}
.v3{vertical-align:-43.040000pt;}
.v6{vertical-align:-9.477333pt;}
.v1{vertical-align:-7.968000pt;}
.v8{vertical-align:-6.016000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.325333pt;}
.vd{vertical-align:7.994667pt;}
.ve{vertical-align:9.237333pt;}
.vb{vertical-align:15.354667pt;}
.vc{vertical-align:17.232000pt;}
.v5{vertical-align:21.114667pt;}
.v2{vertical-align:43.040000pt;}
.vf{vertical-align:44.298667pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls73{letter-spacing:0.000107pt;}
.ls4{letter-spacing:0.000267pt;}
.ls2{letter-spacing:0.000681pt;}
.lsa{letter-spacing:0.000749pt;}
.ls1f{letter-spacing:0.000933pt;}
.ls7e{letter-spacing:0.001416pt;}
.ls38{letter-spacing:0.001421pt;}
.ls77{letter-spacing:0.001908pt;}
.ls28{letter-spacing:0.001916pt;}
.ls44{letter-spacing:0.002405pt;}
.ls3e{letter-spacing:0.003144pt;}
.ls56{letter-spacing:0.004497pt;}
.lsb{letter-spacing:0.005391pt;}
.ls32{letter-spacing:0.005472pt;}
.lse{letter-spacing:0.006082pt;}
.ls13{letter-spacing:0.006308pt;}
.ls86{letter-spacing:0.007166pt;}
.ls5d{letter-spacing:0.007543pt;}
.lsd{letter-spacing:0.011641pt;}
.ls87{letter-spacing:0.012235pt;}
.ls53{letter-spacing:0.012500pt;}
.ls57{letter-spacing:0.014177pt;}
.ls63{letter-spacing:0.014408pt;}
.ls4f{letter-spacing:0.014748pt;}
.ls66{letter-spacing:0.014810pt;}
.ls51{letter-spacing:0.015821pt;}
.ls60{letter-spacing:0.016351pt;}
.ls11{letter-spacing:0.018106pt;}
.ls6f{letter-spacing:0.019120pt;}
.ls67{letter-spacing:0.023021pt;}
.ls64{letter-spacing:0.023996pt;}
.ls4d{letter-spacing:0.024543pt;}
.ls7b{letter-spacing:0.025421pt;}
.ls58{letter-spacing:0.025446pt;}
.ls61{letter-spacing:0.025938pt;}
.ls36{letter-spacing:0.026838pt;}
.ls47{letter-spacing:0.026974pt;}
.ls4c{letter-spacing:0.027906pt;}
.ls8a{letter-spacing:0.028963pt;}
.ls6{letter-spacing:2.652602pt;}
.ls40{letter-spacing:2.653258pt;}
.ls6b{letter-spacing:2.653660pt;}
.ls30{letter-spacing:2.653811pt;}
.lsf{letter-spacing:2.657935pt;}
.ls71{letter-spacing:2.658591pt;}
.ls2d{letter-spacing:2.659144pt;}
.ls26{letter-spacing:3.786350pt;}
.ls68{letter-spacing:5.311956pt;}
.ls62{letter-spacing:5.317289pt;}
.ls9a{letter-spacing:6.341823pt;}
.ls7{letter-spacing:7.385607pt;}
.ls95{letter-spacing:8.029098pt;}
.ls2e{letter-spacing:8.087279pt;}
.ls27{letter-spacing:9.658190pt;}
.ls22{letter-spacing:9.716372pt;}
.ls10{letter-spacing:11.795718pt;}
.ls4a{letter-spacing:12.916374pt;}
.ls7c{letter-spacing:14.040796pt;}
.lsc{letter-spacing:14.460602pt;}
.ls12{letter-spacing:14.465935pt;}
.ls1{letter-spacing:14.771215pt;}
.ls8e{letter-spacing:15.185467pt;}
.ls52{letter-spacing:15.587144pt;}
.ls2b{letter-spacing:16.116377pt;}
.ls33{letter-spacing:16.174559pt;}
.ls37{letter-spacing:16.349105pt;}
.ls7f{letter-spacing:16.354714pt;}
.ls15{letter-spacing:16.418365pt;}
.ls0{letter-spacing:17.725577pt;}
.ls18{letter-spacing:17.745469pt;}
.ls5{letter-spacing:17.799845pt;}
.ls19{letter-spacing:17.803651pt;}
.ls80{letter-spacing:18.443652pt;}
.ls65{letter-spacing:18.816092pt;}
.ls70{letter-spacing:18.818591pt;}
.ls29{letter-spacing:18.819144pt;}
.ls5b{letter-spacing:18.821425pt;}
.ls6c{letter-spacing:19.200016pt;}
.ls3a{letter-spacing:19.205425pt;}
.ls74{letter-spacing:19.316380pt;}
.ls1e{letter-spacing:19.374562pt;}
.ls1d{letter-spacing:19.432743pt;}
.ls3d{letter-spacing:19.490925pt;}
.ls3f{letter-spacing:19.653425pt;}
.ls3b{letter-spacing:19.665471pt;}
.ls39{letter-spacing:19.840017pt;}
.ls6d{letter-spacing:20.072744pt;}
.ls3{letter-spacing:20.172602pt;}
.ls21{letter-spacing:20.421835pt;}
.ls76{letter-spacing:20.480017pt;}
.ls78{letter-spacing:20.596381pt;}
.ls5a{letter-spacing:20.654563pt;}
.ls2c{letter-spacing:20.712745pt;}
.ls5c{letter-spacing:20.770926pt;}
.ls17{letter-spacing:20.829108pt;}
.ls69{letter-spacing:20.945472pt;}
.ls49{letter-spacing:21.003654pt;}
.ls83{letter-spacing:21.061836pt;}
.ls7d{letter-spacing:21.236381pt;}
.ls92{letter-spacing:21.701836pt;}
.ls90{letter-spacing:21.760018pt;}
.ls3c{letter-spacing:21.876382pt;}
.ls23{letter-spacing:21.934564pt;}
.ls81{letter-spacing:22.051144pt;}
.ls41{letter-spacing:22.574564pt;}
.ls8d{letter-spacing:23.214565pt;}
.ls59{letter-spacing:23.469811pt;}
.ls5e{letter-spacing:23.472092pt;}
.ls98{letter-spacing:23.474591pt;}
.ls48{letter-spacing:23.475144pt;}
.ls34{letter-spacing:24.203657pt;}
.ls50{letter-spacing:24.261838pt;}
.ls91{letter-spacing:24.378758pt;}
.ls25{letter-spacing:24.602350pt;}
.ls24{letter-spacing:24.610930pt;}
.ls5f{letter-spacing:25.367294pt;}
.ls16{letter-spacing:25.483658pt;}
.ls45{letter-spacing:25.568691pt;}
.ls94{letter-spacing:25.574024pt;}
.ls1c{letter-spacing:25.832749pt;}
.ls20{letter-spacing:26.065476pt;}
.ls75{letter-spacing:26.181840pt;}
.ls6e{letter-spacing:26.240022pt;}
.ls97{letter-spacing:26.530931pt;}
.ls31{letter-spacing:26.589113pt;}
.ls72{letter-spacing:26.763659pt;}
.ls82{letter-spacing:26.880022pt;}
.ls9b{letter-spacing:26.996386pt;}
.ls43{letter-spacing:27.054568pt;}
.ls8b{letter-spacing:27.461841pt;}
.ls88{letter-spacing:27.520023pt;}
.ls99{letter-spacing:28.858206pt;}
.ls6a{letter-spacing:28.916388pt;}
.ls1b{letter-spacing:29.090933pt;}
.ls14{letter-spacing:29.520749pt;}
.ls8f{letter-spacing:29.789116pt;}
.ls42{letter-spacing:30.021843pt;}
.ls93{letter-spacing:31.185481pt;}
.ls4e{letter-spacing:32.290936pt;}
.ls89{letter-spacing:32.326082pt;}
.ls4b{letter-spacing:32.349118pt;}
.ls8{letter-spacing:32.464793pt;}
.ls9{letter-spacing:32.472269pt;}
.ls54{letter-spacing:33.744749pt;}
.ls84{letter-spacing:33.745483pt;}
.ls96{letter-spacing:35.549121pt;}
.ls35{letter-spacing:36.945485pt;}
.ls2a{letter-spacing:37.003667pt;}
.ls85{letter-spacing:37.005421pt;}
.ls2f{letter-spacing:58.181867pt;}
.ls8c{letter-spacing:66.269146pt;}
.ls7a{letter-spacing:74.298244pt;}
.ls79{letter-spacing:74.356426pt;}
.ls46{letter-spacing:130.635391pt;}
.ls55{letter-spacing:643.956900pt;}
.ws40{word-spacing:-48.465495pt;}
.ws4f{word-spacing:-45.323674pt;}
.ws8d{word-spacing:-45.265492pt;}
.ws5a{word-spacing:-42.065490pt;}
.ws86{word-spacing:-42.007308pt;}
.ws13{word-spacing:-41.338148pt;}
.ws57{word-spacing:-37.899668pt;}
.wse{word-spacing:-35.599691pt;}
.ws16{word-spacing:-34.611401pt;}
.ws3f{word-spacing:-29.736752pt;}
.ws26{word-spacing:-29.090933pt;}
.ws5b{word-spacing:-28.241478pt;}
.ws87{word-spacing:-28.183296pt;}
.wsa{word-spacing:-27.156719pt;}
.ws8{word-spacing:-26.566933pt;}
.ws89{word-spacing:-25.890931pt;}
.ws88{word-spacing:-25.832749pt;}
.wsf{word-spacing:-25.738045pt;}
.wsaa{word-spacing:-24.575109pt;}
.ws8e{word-spacing:-24.436384pt;}
.ws15{word-spacing:-23.591437pt;}
.ws8c{word-spacing:-21.783291pt;}
.ws32{word-spacing:-21.725109pt;}
.ws71{word-spacing:-21.376018pt;}
.ws78{word-spacing:-20.910563pt;}
.ws97{word-spacing:-19.979653pt;}
.ws51{word-spacing:-18.932379pt;}
.ws56{word-spacing:-16.162923pt;}
.ws7d{word-spacing:-15.674195pt;}
.ws14{word-spacing:-14.760588pt;}
.wsb0{word-spacing:-14.545467pt;}
.ws22{word-spacing:-14.346200pt;}
.wsad{word-spacing:-14.312739pt;}
.ws9d{word-spacing:-13.730921pt;}
.ws43{word-spacing:-13.149102pt;}
.ws65{word-spacing:-12.800011pt;}
.ws66{word-spacing:-12.741829pt;}
.wsce{word-spacing:-12.567283pt;}
.wsa4{word-spacing:-12.543875pt;}
.wsaf{word-spacing:-12.509101pt;}
.ws47{word-spacing:-12.392738pt;}
.ws44{word-spacing:-11.991283pt;}
.ws49{word-spacing:-11.955200pt;}
.ws36{word-spacing:-11.869101pt;}
.ws4a{word-spacing:-11.578191pt;}
.ws9e{word-spacing:-11.520010pt;}
.ws9b{word-spacing:-11.403646pt;}
.ws31{word-spacing:-11.287282pt;}
.ws33{word-spacing:-11.229100pt;}
.ws67{word-spacing:-11.170918pt;}
.ws60{word-spacing:-11.112737pt;}
.wsd1{word-spacing:-11.054555pt;}
.ws69{word-spacing:-10.938191pt;}
.wsb1{word-spacing:-10.880009pt;}
.ws96{word-spacing:-10.763645pt;}
.ws28{word-spacing:-10.728736pt;}
.ws45{word-spacing:-10.711282pt;}
.wsc7{word-spacing:-10.589100pt;}
.ws7e{word-spacing:-10.530918pt;}
.wsa0{word-spacing:-10.478554pt;}
.ws6c{word-spacing:-10.437827pt;}
.wsae{word-spacing:-10.420372pt;}
.ws1b{word-spacing:-10.148569pt;}
.wsd0{word-spacing:-10.129463pt;}
.ws4c{word-spacing:-10.123645pt;}
.ws1c{word-spacing:-10.095435pt;}
.ws4b{word-spacing:-10.065463pt;}
.ws70{word-spacing:-10.007281pt;}
.ws6f{word-spacing:-9.949099pt;}
.ws42{word-spacing:-9.890917pt;}
.ws3e{word-spacing:-9.832735pt;}
.ws35{word-spacing:-9.774554pt;}
.ws2e{word-spacing:-9.716372pt;}
.wscd{word-spacing:-9.664008pt;}
.ws3b{word-spacing:-9.658190pt;}
.ws77{word-spacing:-9.600008pt;}
.ws3d{word-spacing:-9.541826pt;}
.ws24{word-spacing:-9.483644pt;}
.ws68{word-spacing:-9.425462pt;}
.ws4d{word-spacing:-9.373099pt;}
.ws2d{word-spacing:-9.367281pt;}
.ws59{word-spacing:-9.314917pt;}
.ws3a{word-spacing:-9.309099pt;}
.ws9f{word-spacing:-9.256735pt;}
.ws6a{word-spacing:-9.250917pt;}
.ws80{word-spacing:-9.198553pt;}
.wsc8{word-spacing:-9.192735pt;}
.ws9{word-spacing:-9.192159pt;}
.ws72{word-spacing:-9.140371pt;}
.ws2{word-spacing:-9.139025pt;}
.ws12{word-spacing:-9.085891pt;}
.ws37{word-spacing:-9.082189pt;}
.ws3{word-spacing:-9.032757pt;}
.ws9c{word-spacing:-9.024008pt;}
.ws98{word-spacing:-9.018189pt;}
.ws5{word-spacing:-8.979623pt;}
.ws55{word-spacing:-8.965826pt;}
.ws95{word-spacing:-8.960007pt;}
.ws54{word-spacing:-8.907644pt;}
.ws6{word-spacing:-8.873356pt;}
.ws94{word-spacing:-8.849462pt;}
.ws6b{word-spacing:-8.808735pt;}
.ws10{word-spacing:-8.767088pt;}
.wsc9{word-spacing:-8.733098pt;}
.wsac{word-spacing:-8.727280pt;}
.wsb2{word-spacing:-8.674916pt;}
.ws73{word-spacing:-8.616734pt;}
.ws38{word-spacing:-8.610916pt;}
.ws85{word-spacing:-8.558553pt;}
.ws6d{word-spacing:-8.500371pt;}
.wsb6{word-spacing:-8.494553pt;}
.ws4{word-spacing:-8.288883pt;}
.wsa9{word-spacing:-8.220396pt;}
.wsa8{word-spacing:-8.172575pt;}
.ws58{word-spacing:-8.029098pt;}
.ws17{word-spacing:-7.916946pt;}
.ws52{word-spacing:-7.802188pt;}
.wsbb{word-spacing:-7.796370pt;}
.ws7f{word-spacing:-7.738188pt;}
.wsb3{word-spacing:-7.718562pt;}
.wsc{word-spacing:-7.598143pt;}
.wsba{word-spacing:-7.563643pt;}
.ws74{word-spacing:-7.214551pt;}
.ws75{word-spacing:-7.156370pt;}
.wscf{word-spacing:-7.098188pt;}
.wsb{word-spacing:-7.018984pt;}
.ws63{word-spacing:-6.813097pt;}
.wsbe{word-spacing:-6.807278pt;}
.wsca{word-spacing:-6.696733pt;}
.ws2b{word-spacing:-6.690915pt;}
.wsa5{word-spacing:-6.580369pt;}
.ws41{word-spacing:-6.522187pt;}
.ws7c{word-spacing:-6.516369pt;}
.ws7a{word-spacing:-6.464005pt;}
.ws1d{word-spacing:-6.429198pt;}
.wsbd{word-spacing:-6.289460pt;}
.ws2c{word-spacing:-6.283642pt;}
.ws11{word-spacing:-6.275110pt;}
.wsb7{word-spacing:-6.173096pt;}
.ws19{word-spacing:-6.168842pt;}
.wsab{word-spacing:-5.998550pt;}
.wsbf{word-spacing:-5.882187pt;}
.ws1f{word-spacing:-5.791591pt;}
.wscb{word-spacing:-5.707641pt;}
.ws25{word-spacing:-5.649459pt;}
.ws9a{word-spacing:-5.591277pt;}
.wsbc{word-spacing:-5.533096pt;}
.wsd{word-spacing:-5.478102pt;}
.ws23{word-spacing:-5.469095pt;}
.wsb5{word-spacing:-5.352732pt;}
.ws2a{word-spacing:-5.178186pt;}
.wsb4{word-spacing:-4.945459pt;}
.ws1a{word-spacing:-4.941450pt;}
.ws20{word-spacing:-4.888316pt;}
.wsa2{word-spacing:-4.770913pt;}
.ws46{word-spacing:-4.596367pt;}
.ws8a{word-spacing:-4.544004pt;}
.ws48{word-spacing:-4.538186pt;}
.wscc{word-spacing:-4.369458pt;}
.wsb9{word-spacing:-4.130913pt;}
.wsc6{word-spacing:-3.723639pt;}
.ws29{word-spacing:-3.607276pt;}
.ws27{word-spacing:-3.549094pt;}
.ws50{word-spacing:-3.496730pt;}
.ws21{word-spacing:-3.453701pt;}
.ws81{word-spacing:-3.258185pt;}
.ws90{word-spacing:-2.973093pt;}
.wsc5{word-spacing:-2.967275pt;}
.ws92{word-spacing:-2.914912pt;}
.ws82{word-spacing:-2.850911pt;}
.ws83{word-spacing:-2.682184pt;}
.ws6e{word-spacing:-2.676366pt;}
.wsb8{word-spacing:-0.930910pt;}
.wsc0{word-spacing:-0.698182pt;}
.wsc3{word-spacing:-0.645819pt;}
.wsc2{word-spacing:-0.640001pt;}
.ws4e{word-spacing:-0.279273pt;}
.ws18{word-spacing:-0.255043pt;}
.ws99{word-spacing:-0.221091pt;}
.ws64{word-spacing:-0.058182pt;}
.ws5d{word-spacing:-0.046545pt;}
.ws7{word-spacing:-0.042507pt;}
.ws34{word-spacing:0.000000pt;}
.wsa7{word-spacing:0.000508pt;}
.ws2f{word-spacing:0.011636pt;}
.ws79{word-spacing:0.069818pt;}
.wsa1{word-spacing:0.186182pt;}
.wsa6{word-spacing:0.302546pt;}
.ws3c{word-spacing:0.418909pt;}
.ws76{word-spacing:2.036365pt;}
.ws39{word-spacing:2.106184pt;}
.ws53{word-spacing:2.455275pt;}
.ws1e{word-spacing:4.314470pt;}
.wsa3{word-spacing:6.273483pt;}
.ws7b{word-spacing:6.981824pt;}
.ws30{word-spacing:9.503975pt;}
.wsc1{word-spacing:12.346192pt;}
.wsc4{word-spacing:16.128013pt;}
.ws1{word-spacing:20.722347pt;}
.ws8f{word-spacing:23.854565pt;}
.ws8b{word-spacing:24.029111pt;}
.ws93{word-spacing:24.145475pt;}
.ws84{word-spacing:24.494566pt;}
.ws0{word-spacing:27.636455pt;}
.ws5c{word-spacing:29.090933pt;}
.ws91{word-spacing:30.952753pt;}
.ws62{word-spacing:33.629119pt;}
.ws61{word-spacing:59.473504pt;}
.ws5e{word-spacing:88.122255pt;}
.ws5f{word-spacing:88.180437pt;}
._16{margin-left:-19.376012pt;}
._1b{margin-left:-9.658190pt;}
._13{margin-left:-8.029098pt;}
._d{margin-left:-6.811739pt;}
._4{margin-left:-4.696988pt;}
._17{margin-left:-3.786653pt;}
._8{margin-left:-2.897276pt;}
._1{margin-left:-1.721549pt;}
._2{width:1.222079pt;}
._0{width:2.387202pt;}
._b{width:4.410111pt;}
._c{width:6.004127pt;}
._20{width:7.166477pt;}
._1f{width:9.013818pt;}
._1c{width:10.600551pt;}
._24{width:15.443569pt;}
._7{width:17.002837pt;}
._23{width:18.419745pt;}
._6{width:19.330124pt;}
._14{width:20.480017pt;}
._9{width:21.869026pt;}
._3{width:23.825237pt;}
._11{width:25.018203pt;}
._5{width:25.929327pt;}
._a{width:27.076145pt;}
._1e{width:28.851220pt;}
._15{width:30.158942pt;}
._1a{width:31.568846pt;}
._26{width:32.528119pt;}
._28{width:34.262134pt;}
._f{width:35.291966pt;}
._12{width:37.046859pt;}
._21{width:38.241236pt;}
._10{width:39.668215pt;}
._18{width:42.540830pt;}
._25{width:52.109958pt;}
._22{width:55.214591pt;}
._27{width:58.181344pt;}
._19{width:71.731200pt;}
._e{width:86.077200pt;}
._1d{width:128.977804pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:56.149333pt;}
.y2b{bottom:96.000000pt;}
.y77{bottom:109.757333pt;}
.y2a{bottom:114.065333pt;}
.y78{bottom:117.904000pt;}
.ye8{bottom:123.666667pt;}
.yc2{bottom:124.050667pt;}
.y76{bottom:132.130667pt;}
.y52{bottom:140.710667pt;}
.y29{bottom:143.001333pt;}
.y75{bottom:150.197333pt;}
.ye7{bottom:151.334667pt;}
.y14f{bottom:151.741333pt;}
.yc1{bottom:152.101333pt;}
.y51{bottom:167.356000pt;}
.y74{bottom:168.262667pt;}
.y14e{bottom:169.806667pt;}
.yc0{bottom:170.166667pt;}
.y28{bottom:170.310667pt;}
.y10a{bottom:177.362667pt;}
.ye6{bottom:179.001333pt;}
.y50{bottom:185.422667pt;}
.y9a{bottom:186.328000pt;}
.y14d{bottom:187.872000pt;}
.ybf{bottom:188.233333pt;}
.y27{bottom:188.376000pt;}
.y12b{bottom:199.333333pt;}
.y73{bottom:201.934667pt;}
.y109{bottom:204.528000pt;}
.y14c{bottom:205.937333pt;}
.ybe{bottom:206.298667pt;}
.y26{bottom:206.442667pt;}
.ye5{bottom:206.669333pt;}
.y4f{bottom:210.416000pt;}
.y99{bottom:216.362667pt;}
.y72{bottom:220.000000pt;}
.y14b{bottom:224.002667pt;}
.ybc{bottom:224.364000pt;}
.y25{bottom:224.508000pt;}
.ye4{bottom:224.734667pt;}
.y4e{bottom:228.481333pt;}
.ybd{bottom:229.642667pt;}
.y12a{bottom:230.404000pt;}
.y108{bottom:231.988000pt;}
.y98{bottom:234.428000pt;}
.y71{bottom:238.066667pt;}
.y14a{bottom:242.069333pt;}
.ybb{bottom:242.429333pt;}
.y23{bottom:242.573333pt;}
.y4d{bottom:246.548000pt;}
.y24{bottom:247.852000pt;}
.y129{bottom:248.470667pt;}
.ye3{bottom:252.193333pt;}
.y70{bottom:256.132000pt;}
.y22{bottom:260.638667pt;}
.y97{bottom:263.125333pt;}
.yba{bottom:269.889333pt;}
.y107{bottom:270.072000pt;}
.y149{bottom:272.089333pt;}
.y4c{bottom:274.006667pt;}
.y6f{bottom:274.197333pt;}
.y128{bottom:277.152000pt;}
.y21{bottom:278.704000pt;}
.y96{bottom:281.190667pt;}
.y106{bottom:288.137333pt;}
.y148{bottom:290.154667pt;}
.ye2{bottom:290.356000pt;}
.y20{bottom:296.770667pt;}
.y6e{bottom:304.106667pt;}
.yb9{bottom:308.112000pt;}
.y127{bottom:308.222667pt;}
.y95{bottom:309.888000pt;}
.y4b{bottom:312.009333pt;}
.y105{bottom:313.565333pt;}
.y1f{bottom:314.836000pt;}
.y147{bottom:320.176000pt;}
.y6d{bottom:322.172000pt;}
.ye1{bottom:322.825333pt;}
.yb8{bottom:326.177333pt;}
.y104{bottom:331.630667pt;}
.y94{bottom:338.585333pt;}
.y126{bottom:339.294667pt;}
.y4a{bottom:340.018667pt;}
.y6c{bottom:340.238667pt;}
.yb7{bottom:344.242667pt;}
.y1e{bottom:347.305333pt;}
.y146{bottom:350.197333pt;}
.y6b{bottom:358.304000pt;}
.y103{bottom:359.814667pt;}
.y93{bottom:360.641333pt;}
.ye0{bottom:367.868000pt;}
.y49{bottom:368.029333pt;}
.y125{bottom:370.365333pt;}
.yb6{bottom:372.294667pt;}
.y102{bottom:377.880000pt;}
.y145{bottom:380.217333pt;}
.ydf{bottom:385.933333pt;}
.y92{bottom:389.337333pt;}
.y6a{bottom:391.976000pt;}
.y124{bottom:392.416000pt;}
.y1d{bottom:392.622667pt;}
.y48{bottom:396.038667pt;}
.y144{bottom:398.282667pt;}
.yb5{bottom:400.345333pt;}
.yde{bottom:403.998667pt;}
.y101{bottom:406.062667pt;}
.y91{bottom:407.404000pt;}
.y1c{bottom:408.562667pt;}
.y47{bottom:421.033333pt;}
.y123{bottom:423.486667pt;}
.y100{bottom:424.129333pt;}
.y69{bottom:424.320000pt;}
.y1b{bottom:424.504000pt;}
.yb4{bottom:426.510667pt;}
.y143{bottom:428.304000pt;}
.ydd{bottom:429.844000pt;}
.y90{bottom:436.100000pt;}
.y46{bottom:439.098667pt;}
.y1a{bottom:440.444000pt;}
.y122{bottom:441.552000pt;}
.yb3{bottom:444.576000pt;}
.y142{bottom:446.369333pt;}
.ydc{bottom:447.910667pt;}
.yff{bottom:449.556000pt;}
.y19{bottom:456.384000pt;}
.y68{bottom:456.664000pt;}
.y45{bottom:457.164000pt;}
.y121{bottom:459.618667pt;}
.yb2{bottom:462.641333pt;}
.y141{bottom:464.434667pt;}
.yfe{bottom:467.622667pt;}
.y18{bottom:472.324000pt;}
.y67{bottom:474.729333pt;}
.y44{bottom:475.230667pt;}
.y8f{bottom:475.882667pt;}
.ydb{bottom:476.261333pt;}
.y120{bottom:477.684000pt;}
.yb1{bottom:480.706667pt;}
.y140{bottom:482.501333pt;}
.yfd{bottom:485.688000pt;}
.y17{bottom:486.272000pt;}
.y16{bottom:488.264000pt;}
.y66{bottom:492.796000pt;}
.y8e{bottom:493.513333pt;}
.yda{bottom:494.326667pt;}
.yb0{bottom:498.772000pt;}
.y43{bottom:502.689333pt;}
.yfc{bottom:503.753333pt;}
.y15{bottom:504.204000pt;}
.y11f{bottom:506.365333pt;}
.y65{bottom:510.861333pt;}
.y13f{bottom:512.521333pt;}
.y14{bottom:520.145333pt;}
.yfb{bottom:521.818667pt;}
.yd9{bottom:522.677333pt;}
.y11e{bottom:524.432000pt;}
.yaf{bottom:524.937333pt;}
.y8d{bottom:527.536000pt;}
.y64{bottom:528.926667pt;}
.y13e{bottom:530.586667pt;}
.y13{bottom:536.085333pt;}
.yfa{bottom:539.884000pt;}
.y42{bottom:540.692000pt;}
.y11d{bottom:542.497333pt;}
.yae{bottom:543.004000pt;}
.yd8{bottom:548.522667pt;}
.y13d{bottom:548.653333pt;}
.y8c{bottom:549.586667pt;}
.y63{bottom:556.386667pt;}
.y41{bottom:558.757333pt;}
.y11c{bottom:560.562667pt;}
.yad{bottom:561.069333pt;}
.yd7{bottom:566.588000pt;}
.yf9{bottom:567.344000pt;}
.y8b{bottom:571.637333pt;}
.y12{bottom:573.357333pt;}
.y13c{bottom:578.673333pt;}
.yac{bottom:579.134667pt;}
.yd6{bottom:584.653333pt;}
.y11b{bottom:588.022667pt;}
.y11{bottom:589.109333pt;}
.y40{bottom:591.226667pt;}
.y62{bottom:595.284000pt;}
.y13b{bottom:596.738667pt;}
.y8a{bottom:600.344000pt;}
.yab{bottom:605.300000pt;}
.yf8{bottom:605.428000pt;}
.yd5{bottom:612.321333pt;}
.y61{bottom:613.349333pt;}
.y139{bottom:614.804000pt;}
.y10{bottom:615.621333pt;}
.y13a{bottom:620.082667pt;}
.yaa{bottom:623.365333pt;}
.yf7{bottom:623.493333pt;}
.y11a{bottom:626.720000pt;}
.y89{bottom:629.050667pt;}
.y88{bottom:629.593333pt;}
.y60{bottom:631.414667pt;}
.y138{bottom:632.870667pt;}
.y3f{bottom:636.108000pt;}
.yd4{bottom:639.988000pt;}
.yf{bottom:642.133333pt;}
.y15b{bottom:643.100000pt;}
.y119{bottom:644.785333pt;}
.y5f{bottom:649.480000pt;}
.ya9{bottom:651.844000pt;}
.y3e{bottom:654.173333pt;}
.yf6{bottom:655.962667pt;}
.y87{bottom:657.757333pt;}
.ye{bottom:658.074667pt;}
.y118{bottom:662.850667pt;}
.y137{bottom:662.890667pt;}
.yd3{bottom:665.340000pt;}
.y5e{bottom:667.546667pt;}
.ya8{bottom:669.909333pt;}
.y15a{bottom:673.120000pt;}
.yd{bottom:674.014667pt;}
.y86{bottom:675.822667pt;}
.y3d{bottom:679.168000pt;}
.y117{bottom:680.916000pt;}
.y136{bottom:680.956000pt;}
.yd2{bottom:687.238667pt;}
.yc{bottom:689.954667pt;}
.ya7{bottom:698.388000pt;}
.y5d{bottom:699.890667pt;}
.yf5{bottom:700.925333pt;}
.y159{bottom:703.141333pt;}
.y85{bottom:705.857333pt;}
.yb{bottom:705.894667pt;}
.y3c{bottom:707.177333pt;}
.y116{bottom:711.988000pt;}
.y135{bottom:713.425333pt;}
.yd1{bottom:714.698667pt;}
.yf4{bottom:718.992000pt;}
.ya{bottom:721.834667pt;}
.y84{bottom:723.922667pt;}
.ya6{bottom:724.553333pt;}
.y3b{bottom:725.244000pt;}
.y5c{bottom:732.234667pt;}
.y158{bottom:733.161333pt;}
.yf3{bottom:737.057333pt;}
.y9{bottom:737.774667pt;}
.ya5{bottom:742.618667pt;}
.y115{bottom:743.058667pt;}
.y83{bottom:751.382667pt;}
.yd0{bottom:752.861333pt;}
.y3a{bottom:753.253333pt;}
.y8{bottom:753.716000pt;}
.y134{bottom:759.254667pt;}
.y114{bottom:761.124000pt;}
.y157{bottom:763.182667pt;}
.y5b{bottom:764.578667pt;}
.yf2{bottom:765.240000pt;}
.y7{bottom:769.656000pt;}
.ya4{bottom:770.078667pt;}
.ycf{bottom:770.926667pt;}
.y39{bottom:771.318667pt;}
.y133{bottom:777.321333pt;}
.yf1{bottom:783.306667pt;}
.y6{bottom:785.596000pt;}
.y113{bottom:788.584000pt;}
.yce{bottom:788.992000pt;}
.y82{bottom:789.708000pt;}
.y156{bottom:793.204000pt;}
.y132{bottom:795.386667pt;}
.y5a{bottom:796.922667pt;}
.y38{bottom:799.329333pt;}
.y5{bottom:806.584000pt;}
.ycd{bottom:807.057333pt;}
.y81{bottom:807.774667pt;}
.ya3{bottom:808.301333pt;}
.yf0{bottom:808.734667pt;}
.y131{bottom:813.452000pt;}
.y155{bottom:823.224000pt;}
.y80{bottom:823.470667pt;}
.y37{bottom:824.324000pt;}
.ycc{bottom:825.122667pt;}
.y7f{bottom:825.840000pt;}
.ya2{bottom:826.366667pt;}
.y59{bottom:826.665333pt;}
.y112{bottom:827.281333pt;}
.y130{bottom:831.517333pt;}
.ycb{bottom:838.880000pt;}
.y154{bottom:841.289333pt;}
.y36{bottom:842.389333pt;}
.yca{bottom:843.189333pt;}
.ya1{bottom:844.432000pt;}
.y111{bottom:845.346667pt;}
.yef{bottom:846.974667pt;}
.y58{bottom:854.125333pt;}
.y4{bottom:857.029333pt;}
.y7e{bottom:858.309333pt;}
.y35{bottom:860.454667pt;}
.y12f{bottom:861.538667pt;}
.yee{bottom:863.065333pt;}
.y110{bottom:863.412000pt;}
.yc9{bottom:869.034667pt;}
.ya0{bottom:870.597333pt;}
.y153{bottom:871.310667pt;}
.y34{bottom:878.520000pt;}
.y12e{bottom:879.604000pt;}
.yed{bottom:881.130667pt;}
.y10f{bottom:881.478667pt;}
.yc8{bottom:887.100000pt;}
.y9f{bottom:888.664000pt;}
.y3{bottom:889.640000pt;}
.y57{bottom:893.022667pt;}
.y33{bottom:896.585333pt;}
.y10e{bottom:899.544000pt;}
.y152{bottom:901.330667pt;}
.y7d{bottom:903.514667pt;}
.yc7{bottom:905.165333pt;}
.yec{bottom:908.590667pt;}
.y12d{bottom:909.625333pt;}
.y56{bottom:911.088000pt;}
.y32{bottom:914.652000pt;}
.y9e{bottom:917.141333pt;}
.y10d{bottom:917.609333pt;}
.y7c{bottom:921.580000pt;}
.yc6{bottom:923.230667pt;}
.y12c{bottom:927.690667pt;}
.y55{bottom:929.153333pt;}
.y2{bottom:930.056000pt;}
.y151{bottom:931.352000pt;}
.y31{bottom:932.717333pt;}
.y9d{bottom:935.208000pt;}
.y10c{bottom:935.674667pt;}
.y7b{bottom:939.645333pt;}
.yeb{bottom:946.674667pt;}
.y54{bottom:947.220000pt;}
.y150{bottom:949.417333pt;}
.y30{bottom:950.782667pt;}
.yc5{bottom:951.581333pt;}
.y1{bottom:953.593333pt;}
.y7a{bottom:957.710667pt;}
.y9c{bottom:961.373333pt;}
.y10b{bottom:964.357333pt;}
.yea{bottom:964.740000pt;}
.y2f{bottom:968.848000pt;}
.yc4{bottom:971.468000pt;}
.y79{bottom:975.776000pt;}
.y9b{bottom:979.438667pt;}
.y53{bottom:979.564000pt;}
.y2e{bottom:993.842667pt;}
.y2d{bottom:1011.908000pt;}
.ye9{bottom:1012.450667pt;}
.yc3{bottom:1015.746667pt;}
.h9{height:25.812358pt;}
.hc{height:29.499997pt;}
.h5{height:37.193707pt;}
.h8{height:39.531597pt;}
.h6{height:39.850400pt;}
.h16{height:39.970942pt;}
.h11{height:40.378215pt;}
.hb{height:43.636400pt;}
.he{height:44.632747pt;}
.h4{height:45.525402pt;}
.h3{height:47.820800pt;}
.h10{height:50.609330pt;}
.hf{height:50.614663pt;}
.hd{height:51.039735pt;}
.ha{height:53.559147pt;}
.h12{height:58.991067pt;}
.h13{height:60.868400pt;}
.h2{height:64.913535pt;}
.h7{height:82.571597pt;}
.h14{height:83.830263pt;}
.h15{height:83.835597pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:94.298667pt;}
.x20{left:96.000000pt;}
.xce{left:98.890667pt;}
.x103{left:103.273333pt;}
.xc9{left:110.809333pt;}
.xfd{left:112.241333pt;}
.x26{left:113.777333pt;}
.x59{left:116.006667pt;}
.x25{left:118.581333pt;}
.x3e{left:123.042667pt;}
.x104{left:125.898667pt;}
.x5a{left:127.102667pt;}
.xfe{left:129.245333pt;}
.x1f{left:130.809333pt;}
.x7{left:132.364000pt;}
.xae{left:133.438667pt;}
.x48{left:136.773333pt;}
.x100{left:139.418667pt;}
.xd6{left:141.052000pt;}
.x8e{left:145.777333pt;}
.x2c{left:147.969333pt;}
.xb4{left:149.241333pt;}
.x6b{left:150.494667pt;}
.x6{left:152.289333pt;}
.x98{left:153.434667pt;}
.xbb{left:154.672000pt;}
.x2d{left:158.442667pt;}
.xe2{left:161.368000pt;}
.x99{left:163.592000pt;}
.xc4{left:164.988000pt;}
.x6c{left:166.158667pt;}
.x64{left:169.540000pt;}
.x6d{left:171.928000pt;}
.xf2{left:174.032000pt;}
.x9e{left:175.882667pt;}
.xe3{left:177.738667pt;}
.x86{left:180.838667pt;}
.x6e{left:183.286667pt;}
.xef{left:185.066667pt;}
.x49{left:186.137333pt;}
.x52{left:190.026667pt;}
.xbd{left:194.149333pt;}
.xd2{left:195.328000pt;}
.xc5{left:196.789333pt;}
.x73{left:198.068000pt;}
.x9f{left:199.902667pt;}
.x4a{left:202.513333pt;}
.x74{left:203.838667pt;}
.x23{left:205.325333pt;}
.x53{left:206.430667pt;}
.xfc{left:207.752000pt;}
.xbe{left:209.069333pt;}
.x54{left:211.973333pt;}
.xf{left:214.068000pt;}
.x75{left:215.197333pt;}
.xbc{left:216.730667pt;}
.x24{left:217.858667pt;}
.xbf{left:220.684000pt;}
.x15{left:223.904000pt;}
.xe5{left:225.944000pt;}
.x10{left:228.868000pt;}
.xa0{left:231.590667pt;}
.xd3{left:241.125333pt;}
.x7d{left:245.653333pt;}
.x2{left:249.922667pt;}
.x101{left:250.854667pt;}
.xe6{left:252.760000pt;}
.x7e{left:255.936000pt;}
.x76{left:259.762667pt;}
.x102{left:261.137333pt;}
.x9{left:262.500000pt;}
.xa2{left:266.168000pt;}
.xc1{left:267.114667pt;}
.x1b{left:273.956000pt;}
.x77{left:277.336000pt;}
.x45{left:279.772000pt;}
.xe4{left:280.954667pt;}
.x1{left:282.092000pt;}
.x78{left:283.105333pt;}
.xa{left:285.912000pt;}
.x2f{left:286.876000pt;}
.x8a{left:287.917333pt;}
.x50{left:290.656000pt;}
.xaa{left:291.612000pt;}
.x27{left:293.414667pt;}
.x79{left:294.464000pt;}
.x7f{left:296.949333pt;}
.x14{left:298.461333pt;}
.x1c{left:300.320000pt;}
.xec{left:302.133333pt;}
.x30{left:303.278667pt;}
.xaf{left:304.376000pt;}
.x80{left:305.449333pt;}
.xcf{left:307.388000pt;}
.x31{left:308.822667pt;}
.xb0{left:309.918667pt;}
.x81{left:310.942667pt;}
.x2a{left:313.069333pt;}
.xcb{left:315.050667pt;}
.x51{left:317.216000pt;}
.x28{left:319.050667pt;}
.x32{left:320.181333pt;}
.xb1{left:321.277333pt;}
.xf3{left:322.825333pt;}
.x2b{left:323.970667pt;}
.xcc{left:325.350667pt;}
.x82{left:328.072000pt;}
.x5e{left:329.396000pt;}
.x13{left:330.485333pt;}
.xed{left:332.400000pt;}
.x3{left:333.577333pt;}
.xab{left:338.190667pt;}
.x71{left:339.729333pt;}
.x7a{left:341.837333pt;}
.x55{left:343.297333pt;}
.x4{left:345.128000pt;}
.x4b{left:347.921333pt;}
.x72{left:351.024000pt;}
.x56{left:353.541333pt;}
.x4c{left:355.282667pt;}
.xd0{left:357.840000pt;}
.x7b{left:358.965333pt;}
.x87{left:360.292000pt;}
.xb2{left:362.041333pt;}
.x6f{left:363.674667pt;}
.x43{left:364.880000pt;}
.x88{left:366.050667pt;}
.x5{left:367.833333pt;}
.x70{left:369.444000pt;}
.xa1{left:370.412000pt;}
.x4d{left:371.658667pt;}
.x9c{left:373.482667pt;}
.xee{left:375.373333pt;}
.xf6{left:378.452000pt;}
.x44{left:380.110667pt;}
.xb9{left:381.262667pt;}
.xd7{left:385.505333pt;}
.xa7{left:386.653333pt;}
.x60{left:387.545333pt;}
.xd1{left:389.472000pt;}
.x29{left:393.214667pt;}
.x11{left:396.974667pt;}
.x61{left:398.904000pt;}
.x12{left:402.676000pt;}
.x46{left:403.598667pt;}
.x9d{left:412.652000pt;}
.x47{left:415.041333pt;}
.x8f{left:430.561333pt;}
.x7c{left:433.442667pt;}
.xc0{left:440.494667pt;}
.x83{left:445.085333pt;}
.x8b{left:448.778667pt;}
.x84{left:451.842667pt;}
.x57{left:455.861333pt;}
.xd4{left:464.844000pt;}
.x58{left:467.220000pt;}
.x21{left:470.498667pt;}
.xcd{left:473.064000pt;}
.x35{left:475.332000pt;}
.xd5{left:477.389333pt;}
.xe9{left:480.145333pt;}
.xa6{left:482.094667pt;}
.xe7{left:485.666667pt;}
.x36{left:486.770667pt;}
.x3f{left:488.762667pt;}
.xc6{left:490.136000pt;}
.x5b{left:493.188000pt;}
.xda{left:494.198667pt;}
.xc7{left:495.630667pt;}
.x96{left:498.761333pt;}
.x40{left:500.597333pt;}
.x22{left:501.654667pt;}
.x37{left:504.845333pt;}
.x5c{left:508.614667pt;}
.x5d{left:514.162667pt;}
.xa3{left:517.504000pt;}
.xf7{left:519.510667pt;}
.x38{left:520.648000pt;}
.x8c{left:521.813333pt;}
.x16{left:523.605333pt;}
.xb{left:525.281333pt;}
.xc8{left:528.198667pt;}
.x5f{left:529.481333pt;}
.xd8{left:531.718667pt;}
.x8d{left:534.357333pt;}
.x17{left:535.378667pt;}
.xc2{left:538.224000pt;}
.xc{left:540.580000pt;}
.xac{left:542.514667pt;}
.xd{left:545.704000pt;}
.xf4{left:547.146667pt;}
.xd9{left:548.781333pt;}
.x18{left:551.021333pt;}
.x39{left:553.509333pt;}
.xca{left:554.497333pt;}
.xe{left:556.077333pt;}
.xf5{left:557.178667pt;}
.xc3{left:558.753333pt;}
.xb3{left:559.804000pt;}
.x19{left:561.560000pt;}
.x85{left:563.916000pt;}
.x65{left:565.766667pt;}
.xf0{left:568.224000pt;}
.x33{left:569.344000pt;}
.x66{left:571.349333pt;}
.xdc{left:572.452000pt;}
.xad{left:573.552000pt;}
.x3a{left:574.518667pt;}
.xa4{left:575.673333pt;}
.x90{left:577.334667pt;}
.x8{left:578.560000pt;}
.x62{left:580.293333pt;}
.xa5{left:581.916000pt;}
.x1a{left:583.148000pt;}
.xf1{left:584.520000pt;}
.x34{left:585.549333pt;}
.x91{left:588.693333pt;}
.xea{left:594.592000pt;}
.x63{left:596.494667pt;}
.x1d{left:597.704000pt;}
.xdd{left:598.932000pt;}
.x3b{left:603.684000pt;}
.xe0{left:604.917333pt;}
.x4e{left:606.108000pt;}
.x1e{left:608.265333pt;}
.x3c{left:611.094667pt;}
.xf8{left:612.984000pt;}
.xba{left:614.070667pt;}
.x3d{left:618.368000pt;}
.xe1{left:621.298667pt;}
.x4f{left:622.485333pt;}
.x9a{left:625.802667pt;}
.x92{left:627.738667pt;}
.xf9{left:629.202667pt;}
.x97{left:636.480000pt;}
.x9b{left:637.565333pt;}
.xeb{left:638.661333pt;}
.xff{left:641.425333pt;}
.x93{left:643.401333pt;}
.x89{left:645.382667pt;}
.x94{left:649.041333pt;}
.xfa{left:654.902667pt;}
.xb5{left:656.873333pt;}
.x95{left:660.400000pt;}
.x67{left:662.068000pt;}
.x41{left:663.377333pt;}
.xde{left:668.361333pt;}
.xa8{left:670.578667pt;}
.xb6{left:673.113333pt;}
.x42{left:674.362667pt;}
.xfb{left:675.957333pt;}
.x68{left:676.877333pt;}
.xb7{left:678.657333pt;}
.xe8{left:680.893333pt;}
.x69{left:682.461333pt;}
.xdf{left:684.729333pt;}
.xa9{left:687.136000pt;}
.xb8{left:690.016000pt;}
.x6a{left:693.820000pt;}
.xdb{left:696.466667pt;}
}




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