
    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_3024782b803f694e6e39938e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_4e26f3751080f1a5a2fb16be.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.998000;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_ed43bd476cdcdcd023a31423.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.869000;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_dabcc4ce3f48d8a2794658c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.903320;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_cdc1b0c3615acb0c48973462.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_badd1db5f4791689080601c0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2773cb77307589384341ac77.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682129;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_76a326dfa2f1bdbf2a55a3a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_2cf34bf4592a0ce186813b7b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.857910;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_9d6bc018def7cfce7229c983.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.780762;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_dc6d2e19206a60decaa2fadc.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_044b56b016a4d87aca698a5c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.890137;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_c19848ea4121729a64860a5f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.881836;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_775817ba5eca26363d366e37.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.681152;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_4244f38a502c2e53a5a9be4d.woff2')format("woff");}.fff{font-family:fff;line-height:0.959961;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_156949c3c424609b537c0e2f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.697754;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_3e4b31d4a8663214541e6a79.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.857910;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_5af7d8a249b24c2e79e76d68.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.780762;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_35f58d811239677e89216802.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.857910;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_605fe0c3295f92af9ba04a80.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.780762;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_387b9e8ab998ed6157596a1d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.857910;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_4f9f5fb1b3525b756faf10d7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.780762;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_1e4172e8e4a470ef0d95a8a7.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.740723;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_40d4e4c4e6a26d3bcb7526bc.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.857910;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_971e5522a1c0535d61b61a96.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.780762;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_826aeb7a8ed8ddfce3272d40.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.864746;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_94a78a2bd672d2c6ed353655.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.881836;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_c6f79bb2e31f80be5296e571.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.681152;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_b60a2c38725ec03f3d75ad4d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.959961;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_ab6a85d28dbcb3e17ab4f746.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.685059;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_b1f006035d55342238666bf8.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.881836;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:ff20;src:url('chunks/assets/font_9f34ac1dcb21d11486d37552.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.698730;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:ff21;src:url('chunks/assets/font_8b162e4ec1c7adce01d833f5.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.881836;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:ff22;src:url('chunks/assets/font_4000af24b07013fc29c09f4e.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.750000;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:ff23;src:url('chunks/assets/font_2e9f5b0279cbfd2f03d76384.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.675781;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:ff24;src:url('chunks/assets/font_dfe02455dc280e63092311a1.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.780762;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:ff25;src:url('chunks/assets/font_4837602ac215d2e91fb85c1f.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.675781;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:ff26;src:url('chunks/assets/font_3d400c88f5ee9bc5b9528c13.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.780762;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;}
.mb{transform:matrix(0.000000,-0.250150,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250150,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250150,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.250459,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250459,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250459,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249701,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250408,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);}
.vd{vertical-align:-33.120000px;}
.v6{vertical-align:-23.986167px;}
.v8{vertical-align:-20.736000px;}
.v3{vertical-align:-17.533800px;}
.v2{vertical-align:-15.001728px;}
.v1{vertical-align:-8.639400px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:13.824000px;}
.v4{vertical-align:17.533800px;}
.v7{vertical-align:20.736000px;}
.vc{vertical-align:33.120000px;}
.v5{vertical-align:42.192000px;}
.va{vertical-align:55.998600px;}
.vb{vertical-align:74.180400px;}
.ls3d{letter-spacing:-0.608112px;}
.ls24{letter-spacing:-0.504000px;}
.ls3f{letter-spacing:-0.478224px;}
.ls40{letter-spacing:-0.442800px;}
.ls41{letter-spacing:-0.213840px;}
.ls3e{letter-spacing:-0.076752px;}
.ls12{letter-spacing:-0.036000px;}
.ls14{letter-spacing:-0.028800px;}
.ls4f{letter-spacing:-0.025585px;}
.ls74{letter-spacing:-0.023040px;}
.ls90{letter-spacing:-0.019214px;}
.ls4e{letter-spacing:-0.017270px;}
.ls36{letter-spacing:-0.016002px;}
.ls6a{letter-spacing:-0.015980px;}
.ls4d{letter-spacing:-0.015351px;}
.ls11{letter-spacing:-0.014400px;}
.ls73{letter-spacing:-0.012960px;}
.ls5a{letter-spacing:-0.011808px;}
.ls8f{letter-spacing:-0.010808px;}
.ls35{letter-spacing:-0.010801px;}
.ls69{letter-spacing:-0.010786px;}
.ls34{letter-spacing:-0.009601px;}
.ls68{letter-spacing:-0.009588px;}
.ls13{letter-spacing:-0.007200px;}
.ls75{letter-spacing:-0.005760px;}
.ls91{letter-spacing:-0.004804px;}
.ls3b{letter-spacing:-0.003601px;}
.ls5{letter-spacing:0.000000px;}
.ls60{letter-spacing:0.002097px;}
.ls26{letter-spacing:0.002100px;}
.ls1d{letter-spacing:0.002400px;}
.ls4b{letter-spacing:0.003358px;}
.ls9a{letter-spacing:0.003600px;}
.ls2a{letter-spacing:0.005340px;}
.ls66{letter-spacing:0.005400px;}
.ls84{letter-spacing:0.006005px;}
.lse{letter-spacing:0.007200px;}
.ls92{letter-spacing:0.009607px;}
.ls2c{letter-spacing:0.010800px;}
.ls98{letter-spacing:0.011400px;}
.ls61{letter-spacing:0.013483px;}
.ls27{letter-spacing:0.013502px;}
.ls7a{letter-spacing:0.013920px;}
.lsc{letter-spacing:0.014400px;}
.ls7c{letter-spacing:0.014520px;}
.ls88{letter-spacing:0.015552px;}
.ls1c{letter-spacing:0.016200px;}
.ls4c{letter-spacing:0.021588px;}
.ls1e{letter-spacing:0.021600px;}
.ls23{letter-spacing:0.028800px;}
.ls1a{letter-spacing:0.034200px;}
.lsf{letter-spacing:0.036000px;}
.ls51{letter-spacing:0.043200px;}
.ls49{letter-spacing:0.072000px;}
.ls5e{letter-spacing:0.076752px;}
.ls10{letter-spacing:0.091872px;}
.ls2f{letter-spacing:0.092054px;}
.ls1b{letter-spacing:0.098880px;}
.ls18{letter-spacing:0.099120px;}
.ls47{letter-spacing:0.099180px;}
.ls19{letter-spacing:0.099480px;}
.ls6b{letter-spacing:0.099792px;}
.ls2b{letter-spacing:0.133320px;}
.ls29{letter-spacing:0.133560px;}
.ls28{letter-spacing:0.133920px;}
.ls39{letter-spacing:0.183024px;}
.lsa{letter-spacing:0.187200px;}
.ls38{letter-spacing:0.192096px;}
.ls45{letter-spacing:0.199584px;}
.ls22{letter-spacing:0.200448px;}
.ls93{letter-spacing:0.212544px;}
.ls4{letter-spacing:0.215280px;}
.ls3c{letter-spacing:0.216000px;}
.ls42{letter-spacing:0.223344px;}
.ls5d{letter-spacing:0.224352px;}
.ls6e{letter-spacing:0.229560px;}
.ls87{letter-spacing:0.230256px;}
.ls6f{letter-spacing:0.235560px;}
.ls15{letter-spacing:0.237480px;}
.ls37{letter-spacing:0.250560px;}
.ls46{letter-spacing:0.251280px;}
.ls25{letter-spacing:0.251400px;}
.ls44{letter-spacing:0.256608px;}
.ls6d{letter-spacing:0.256800px;}
.ls50{letter-spacing:0.258120px;}
.ls96{letter-spacing:0.259776px;}
.ls9b{letter-spacing:0.267264px;}
.ls21{letter-spacing:0.275616px;}
.ls17{letter-spacing:0.276000px;}
.ls16{letter-spacing:0.276120px;}
.ls97{letter-spacing:0.277680px;}
.ls78{letter-spacing:0.279120px;}
.lsd{letter-spacing:0.283968px;}
.ls2{letter-spacing:0.284520px;}
.ls5f{letter-spacing:0.285960px;}
.ls8e{letter-spacing:0.295200px;}
.ls5c{letter-spacing:0.301104px;}
.ls43{letter-spacing:0.323136px;}
.ls0{letter-spacing:0.324000px;}
.ls59{letter-spacing:0.325728px;}
.ls95{letter-spacing:0.383760px;}
.ls72{letter-spacing:0.387360px;}
.ls33{letter-spacing:0.389664px;}
.ls3{letter-spacing:0.421800px;}
.ls76{letter-spacing:0.432000px;}
.ls82{letter-spacing:0.466416px;}
.ls7b{letter-spacing:0.468840px;}
.ls81{letter-spacing:0.478224px;}
.ls89{letter-spacing:0.484128px;}
.ls7d{letter-spacing:0.493320px;}
.ls54{letter-spacing:0.493344px;}
.ls4a{letter-spacing:0.503940px;}
.ls79{letter-spacing:0.515760px;}
.ls32{letter-spacing:0.519840px;}
.ls80{letter-spacing:0.523920px;}
.ls7e{letter-spacing:0.524520px;}
.ls83{letter-spacing:0.531360px;}
.ls3a{letter-spacing:0.566784px;}
.ls9{letter-spacing:0.567216px;}
.ls48{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.589248px;}
.ls8b{letter-spacing:0.590400px;}
.ls31{letter-spacing:0.599813px;}
.ls8a{letter-spacing:0.602208px;}
.ls8d{letter-spacing:0.643536px;}
.ls8{letter-spacing:0.645840px;}
.ls85{letter-spacing:0.653760px;}
.ls7f{letter-spacing:0.660360px;}
.ls94{letter-spacing:0.684864px;}
.ls56{letter-spacing:0.709344px;}
.ls7{letter-spacing:0.722304px;}
.ls1{letter-spacing:0.741312px;}
.ls8c{letter-spacing:0.820656px;}
.ls86{letter-spacing:0.838368px;}
.ls20{letter-spacing:0.864000px;}
.ls1f{letter-spacing:0.864060px;}
.ls53{letter-spacing:0.925344px;}
.ls77{letter-spacing:0.936000px;}
.ls5b{letter-spacing:1.428768px;}
.ls57{letter-spacing:2.253312px;}
.ls30{letter-spacing:3.156872px;}
.ls99{letter-spacing:3.594600px;}
.ls6c{letter-spacing:7.293600px;}
.ls2e{letter-spacing:7.522137px;}
.lsb{letter-spacing:10.499400px;}
.ls64{letter-spacing:14.347345px;}
.ls67{letter-spacing:15.616800px;}
.ls55{letter-spacing:15.984000px;}
.ls63{letter-spacing:17.256377px;}
.ls52{letter-spacing:18.738432px;}
.ls65{letter-spacing:18.953312px;}
.ls2d{letter-spacing:20.508345px;}
.ls62{letter-spacing:21.030361px;}
.ls70{letter-spacing:110.226000px;}
.ls71{letter-spacing:196.127400px;}
.ls58{letter-spacing:330.115392px;}
.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;}
}
.ws63{word-spacing:-87.616800px;}
.ws1f{word-spacing:-72.000000px;}
.ws0{word-spacing:-25.147584px;}
.ws1{word-spacing:-18.504000px;}
.ws2{word-spacing:-15.000336px;}
.ws62{word-spacing:-7.365600px;}
.ws4e{word-spacing:-1.487808px;}
.ws6d{word-spacing:-1.008000px;}
.ws73{word-spacing:-0.897408px;}
.ws7b{word-spacing:-0.879696px;}
.ws85{word-spacing:-0.743904px;}
.ws7c{word-spacing:-0.702576px;}
.ws78{word-spacing:-0.661248px;}
.ws79{word-spacing:-0.649440px;}
.ws6c{word-spacing:-0.648000px;}
.ws2e{word-spacing:-0.625824px;}
.ws7e{word-spacing:-0.590400px;}
.ws76{word-spacing:-0.543168px;}
.ws77{word-spacing:-0.537264px;}
.ws7a{word-spacing:-0.525456px;}
.ws6b{word-spacing:-0.504000px;}
.ws86{word-spacing:-0.442800px;}
.ws3b{word-spacing:-0.437184px;}
.ws48{word-spacing:-0.409248px;}
.ws4c{word-spacing:-0.396000px;}
.ws38{word-spacing:-0.370656px;}
.wsa{word-spacing:-0.367488px;}
.ws50{word-spacing:-0.360144px;}
.ws16{word-spacing:-0.359136px;}
.ws7d{word-spacing:-0.354240px;}
.ws88{word-spacing:-0.350784px;}
.ws22{word-spacing:-0.334080px;}
.ws87{word-spacing:-0.318816px;}
.ws3a{word-spacing:-0.304128px;}
.ws74{word-spacing:-0.289296px;}
.ws31{word-spacing:-0.288000px;}
.ws17{word-spacing:-0.283968px;}
.ws51{word-spacing:-0.283392px;}
.ws23{word-spacing:-0.275616px;}
.ws84{word-spacing:-0.271584px;}
.ws37{word-spacing:-0.270864px;}
.ws3c{word-spacing:-0.247104px;}
.ws2d{word-spacing:-0.242064px;}
.ws5{word-spacing:-0.175392px;}
.ws5a{word-spacing:-0.147312px;}
.ws52{word-spacing:-0.135792px;}
.ws4b{word-spacing:-0.115200px;}
.wsc{word-spacing:-0.108000px;}
.ws25{word-spacing:-0.100800px;}
.ws19{word-spacing:-0.093600px;}
.ws5c{word-spacing:-0.093089px;}
.ws9{word-spacing:-0.086400px;}
.ws18{word-spacing:-0.083520px;}
.ws53{word-spacing:-0.082944px;}
.ws45{word-spacing:-0.079200px;}
.ws6{word-spacing:-0.072000px;}
.ws2a{word-spacing:-0.070136px;}
.wsd{word-spacing:-0.064800px;}
.ws4f{word-spacing:-0.059040px;}
.ws7{word-spacing:-0.057600px;}
.ws75{word-spacing:-0.054432px;}
.ws54{word-spacing:-0.047952px;}
.ws39{word-spacing:-0.047520px;}
.ws4d{word-spacing:-0.047232px;}
.wse{word-spacing:-0.043200px;}
.ws2c{word-spacing:-0.040548px;}
.ws81{word-spacing:-0.036027px;}
.ws8{word-spacing:-0.036000px;}
.ws69{word-spacing:-0.035978px;}
.ws80{word-spacing:-0.029968px;}
.ws4{word-spacing:0.000000px;}
.ws33{word-spacing:0.017712px;}
.ws36{word-spacing:0.166320px;}
.ws35{word-spacing:0.383760px;}
.ws34{word-spacing:0.419184px;}
.ws1e{word-spacing:0.432000px;}
.ws32{word-spacing:0.549072px;}
.wsb{word-spacing:11.368800px;}
.ws4a{word-spacing:11.772000px;}
.ws8e{word-spacing:11.793600px;}
.ws49{word-spacing:11.822400px;}
.ws8d{word-spacing:11.850300px;}
.ws66{word-spacing:12.012420px;}
.ws71{word-spacing:12.456000px;}
.ws6f{word-spacing:12.469200px;}
.ws6e{word-spacing:12.474600px;}
.ws72{word-spacing:12.477600px;}
.ws70{word-spacing:12.484800px;}
.ws5b{word-spacing:14.452070px;}
.ws1b{word-spacing:15.336000px;}
.ws1c{word-spacing:16.776000px;}
.ws8c{word-spacing:19.476000px;}
.ws8b{word-spacing:19.536360px;}
.ws28{word-spacing:20.361600px;}
.ws26{word-spacing:20.397600px;}
.ws27{word-spacing:20.455200px;}
.ws29{word-spacing:20.482200px;}
.ws64{word-spacing:22.564800px;}
.ws5e{word-spacing:23.781600px;}
.ws11{word-spacing:25.416000px;}
.ws12{word-spacing:26.856000px;}
.ws90{word-spacing:31.104000px;}
.ws8f{word-spacing:31.161360px;}
.ws89{word-spacing:33.245340px;}
.ws8a{word-spacing:33.249600px;}
.ws15{word-spacing:34.056000px;}
.ws60{word-spacing:45.865200px;}
.ws10{word-spacing:47.016000px;}
.ws13{word-spacing:52.776000px;}
.ws2f{word-spacing:53.891847px;}
.ws2b{word-spacing:55.271929px;}
.ws30{word-spacing:55.479907px;}
.ws1d{word-spacing:57.096000px;}
.ws14{word-spacing:58.536000px;}
.ws24{word-spacing:62.704980px;}
.ws83{word-spacing:76.016436px;}
.ws82{word-spacing:76.044657px;}
.ws65{word-spacing:83.898000px;}
.ws44{word-spacing:96.314400px;}
.ws42{word-spacing:96.343200px;}
.ws43{word-spacing:96.377400px;}
.ws59{word-spacing:107.922294px;}
.ws57{word-spacing:107.922385px;}
.ws3f{word-spacing:108.071853px;}
.ws55{word-spacing:108.072033px;}
.ws41{word-spacing:108.072093px;}
.ws21{word-spacing:108.072213px;}
.ws3e{word-spacing:108.072362px;}
.ws7f{word-spacing:115.163253px;}
.ws6a{word-spacing:119.801125px;}
.ws68{word-spacing:121.669595px;}
.ws56{word-spacing:121.857978px;}
.ws58{word-spacing:121.858579px;}
.ws20{word-spacing:122.026746px;}
.ws40{word-spacing:122.027346px;}
.ws3d{word-spacing:122.027948px;}
.ws61{word-spacing:135.829800px;}
.ws5d{word-spacing:159.418824px;}
.ws47{word-spacing:172.795776px;}
.ws67{word-spacing:179.778060px;}
.ws5f{word-spacing:196.055400px;}
.ws46{word-spacing:216.992106px;}
.wsf{word-spacing:847.655820px;}
.ws3{word-spacing:847.656000px;}
.ws1a{word-spacing:847.656060px;}
._4{margin-left:-10.656000px;}
._19{margin-left:-7.558800px;}
._b{margin-left:-6.480180px;}
._3{margin-left:-5.472000px;}
._1{margin-left:-4.032000px;}
._2{margin-left:-2.736000px;}
._0{margin-left:-1.008000px;}
._5{width:1.002240px;}
._c{width:2.398860px;}
._11{width:3.945600px;}
._10{width:5.414220px;}
._9{width:6.578760px;}
._6{width:8.193600px;}
._8{width:9.324000px;}
._7{width:10.519200px;}
._d{width:16.493820px;}
._a{width:28.584000px;}
._13{width:49.341215px;}
._12{width:58.468612px;}
._1d{width:101.510962px;}
._16{width:118.222800px;}
._1c{width:128.898819px;}
._f{width:135.757455px;}
._1b{width:138.143700px;}
._e{width:149.441204px;}
._1a{width:154.562075px;}
._18{width:170.277600px;}
._15{width:195.177481px;}
._17{width:196.230000px;}
._14{width:238.940363px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(101,131,155);}
.fc5{color:rgb(185,24,34);}
.fc4{color:rgb(173,173,161);}
.fc3{color:transparent;}
.fc2{color:rgb(73,96,110);}
.fc1{color:rgb(31,73,125);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:18.006306px;}
.fs11{font-size:25.208828px;}
.fs25{font-size:29.967570px;}
.fs26{font-size:30.022644px;}
.fs20{font-size:35.978376px;}
.fs21{font-size:36.000000px;}
.fs23{font-size:38.880000px;}
.fs1e{font-size:39.949270px;}
.fsb{font-size:40.004598px;}
.fsd{font-size:40.547652px;}
.fs7{font-size:47.520000px;}
.fs1b{font-size:47.939136px;}
.fs19{font-size:47.952000px;}
.fs8{font-size:48.005530px;}
.fs27{font-size:48.036230px;}
.fs1c{font-size:53.931528px;}
.fs9{font-size:54.006221px;}
.fs24{font-size:54.040759px;}
.fs4{font-size:56.160000px;}
.fs22{font-size:57.600000px;}
.fsf{font-size:59.040000px;}
.fs1d{font-size:59.923920px;}
.fsa{font-size:60.006912px;}
.fs16{font-size:63.963096px;}
.fs6{font-size:64.800000px;}
.fsc{font-size:70.136479px;}
.fs0{font-size:72.000000px;}
.fs13{font-size:76.755734px;}
.fs18{font-size:82.944000px;}
.fs5{font-size:83.520000px;}
.fs14{font-size:86.350201px;}
.fs1f{font-size:93.089019px;}
.fs3{font-size:95.040000px;}
.fs15{font-size:95.944668px;}
.fse{font-size:105.204718px;}
.fs2{font-size:119.520000px;}
.fs1a{font-size:124.416000px;}
.fs1{font-size:144.000000px;}
.fs12{font-size:288.000000px;}
.fs17{font-size:396.000000px;}
.y1a7{bottom:-15.120000px;}
.y0{bottom:0.000000px;}
.y69{bottom:1.440000px;}
.y95{bottom:1.800000px;}
.y108{bottom:2.160000px;}
.y106{bottom:2.520000px;}
.yb7{bottom:3.516000px;}
.y1ac{bottom:3.960000px;}
.y135{bottom:4.212000px;}
.y1a9{bottom:4.320000px;}
.y83{bottom:4.680000px;}
.y149{bottom:4.727100px;}
.y30{bottom:5.040000px;}
.y9c{bottom:5.400000px;}
.y111{bottom:5.760000px;}
.y122{bottom:6.120000px;}
.ycb{bottom:6.752098px;}
.y124{bottom:7.200000px;}
.yd5{bottom:8.640000px;}
.y143{bottom:11.106366px;}
.ya9{bottom:11.121718px;}
.y1df{bottom:11.429192px;}
.ycf{bottom:11.880000px;}
.y97{bottom:12.240000px;}
.y19d{bottom:13.704600px;}
.y11b{bottom:17.782616px;}
.y12a{bottom:18.000000px;}
.yca{bottom:18.867928px;}
.yb9{bottom:19.314900px;}
.y2e{bottom:19.620030px;}
.y12f{bottom:20.736000px;}
.yb6{bottom:22.237200px;}
.y138{bottom:22.237350px;}
.y10b{bottom:22.320000px;}
.y148{bottom:23.272200px;}
.y68{bottom:23.400000px;}
.y61{bottom:23.760000px;}
.ybf{bottom:24.425878px;}
.y11d{bottom:26.640000px;}
.y1de{bottom:26.742489px;}
.y11f{bottom:27.000000px;}
.y132{bottom:27.648000px;}
.y121{bottom:28.080000px;}
.y9b{bottom:28.800000px;}
.y110{bottom:29.160000px;}
.y19c{bottom:32.066850px;}
.y140{bottom:32.582868px;}
.ya6{bottom:32.627945px;}
.y1dc{bottom:35.073760px;}
.y128{bottom:36.000000px;}
.y1e2{bottom:40.680000px;}
.y2d{bottom:41.220030px;}
.yb8{bottom:41.369550px;}
.y19a{bottom:42.056850px;}
.y1d5{bottom:44.460015px;}
.y131{bottom:44.604000px;}
.y60{bottom:45.360000px;}
.y93{bottom:45.720000px;}
.y134{bottom:46.332000px;}
.yb5{bottom:46.757550px;}
.y137{bottom:46.757700px;}
.yc0{bottom:46.921979px;}
.y19f{bottom:48.600000px;}
.ybb{bottom:49.680000px;}
.y130{bottom:49.788000px;}
.y13b{bottom:49.828416px;}
.ya1{bottom:49.897468px;}
.y1d7{bottom:51.753760px;}
.y118{bottom:52.168800px;}
.y169{bottom:52.200000px;}
.y142{bottom:52.240020px;}
.ya8{bottom:52.312422px;}
.y10e{bottom:52.560000px;}
.y1e1{bottom:58.680000px;}
.y1{bottom:61.500000px;}
.y195{bottom:62.057850px;}
.y2c{bottom:63.180030px;}
.y1d4{bottom:66.420015px;}
.y5f{bottom:67.320000px;}
.y92{bottom:67.680000px;}
.yc1{bottom:69.418228px;}
.y104{bottom:71.100030px;}
.y133{bottom:72.414000px;}
.y2f{bottom:73.920030px;}
.y193{bottom:74.700030px;}
.y113{bottom:79.780766px;}
.y11a{bottom:83.641983px;}
.y2b{bottom:85.140030px;}
.y1d3{bottom:88.380015px;}
.y63{bottom:89.280000px;}
.y91{bottom:90.000000px;}
.yc2{bottom:91.914328px;}
.y103{bottom:93.060000px;}
.y1d8{bottom:93.981910px;}
.y13c{bottom:94.632066px;}
.ya2{bottom:94.763218px;}
.y8f{bottom:95.580000px;}
.y192{bottom:96.660000px;}
.y2a{bottom:107.100000px;}
.y1d2{bottom:110.340000px;}
.y5d{bottom:111.240000px;}
.y6a{bottom:111.600000px;}
.y196{bottom:112.693350px;}
.yc3{bottom:114.410428px;}
.y102{bottom:115.380000px;}
.y8e{bottom:117.540000px;}
.y191{bottom:118.620000px;}
.y1dd{bottom:128.537533px;}
.y1ea{bottom:128.700000px;}
.y29{bottom:129.060000px;}
.y1d1{bottom:132.300000px;}
.y1d9{bottom:136.210060px;}
.yc4{bottom:136.906528px;}
.y101{bottom:137.340000px;}
.y145{bottom:139.435716px;}
.y13d{bottom:139.435866px;}
.y8d{bottom:139.500000px;}
.ya3{bottom:139.628968px;}
.y190{bottom:140.580000px;}
.yd4{bottom:144.180000px;}
.ybe{bottom:149.160045px;}
.y1e9{bottom:150.660000px;}
.y28{bottom:151.020000px;}
.y114{bottom:151.516316px;}
.y19b{bottom:154.128720px;}
.y1d0{bottom:154.260000px;}
.yd6{bottom:155.670150px;}
.yd9{bottom:156.030150px;}
.yd7{bottom:156.390150px;}
.yd3{bottom:158.940000px;}
.y100{bottom:159.300000px;}
.yc5{bottom:159.402778px;}
.y167{bottom:161.100000px;}
.y8c{bottom:161.460000px;}
.y18f{bottom:163.260000px;}
.y197{bottom:163.328850px;}
.ya0{bottom:163.590150px;}
.y5b{bottom:169.020000px;}
.yb3{bottom:172.620000px;}
.y27{bottom:172.980000px;}
.yd2{bottom:174.420000px;}
.y1cf{bottom:176.580000px;}
.y1da{bottom:178.438210px;}
.yff{bottom:181.260000px;}
.yc6{bottom:181.898878px;}
.yd0{bottom:182.280000px;}
.y8b{bottom:183.420000px;}
.y13e{bottom:184.239516px;}
.ya4{bottom:184.494718px;}
.y18e{bottom:185.940000px;}
.y5a{bottom:190.980000px;}
.yd1{bottom:192.420000px;}
.yb2{bottom:194.580000px;}
.y26{bottom:195.300000px;}
.y1ce{bottom:198.540000px;}
.yfe{bottom:203.220000px;}
.yc7{bottom:204.394978px;}
.y8a{bottom:205.380000px;}
.y166{bottom:206.100000px;}
.y18d{bottom:207.900000px;}
.y59{bottom:212.940000px;}
.y198{bottom:213.964500px;}
.yb1{bottom:216.540000px;}
.y25{bottom:217.260000px;}
.y1cd{bottom:220.500000px;}
.y1db{bottom:220.666360px;}
.y115{bottom:223.252016px;}
.yfd{bottom:225.180000px;}
.yc8{bottom:226.891078px;}
.y89{bottom:227.340000px;}
.y165{bottom:228.780000px;}
.y13f{bottom:229.043166px;}
.yd8{bottom:229.360318px;}
.ya5{bottom:229.360468px;}
.y18c{bottom:230.580000px;}
.y58{bottom:234.900000px;}
.yb0{bottom:238.500000px;}
.y24{bottom:239.220000px;}
.y141{bottom:242.188620px;}
.y1cc{bottom:242.460000px;}
.ya7{bottom:242.524122px;}
.yfc{bottom:247.140000px;}
.y88{bottom:249.300000px;}
.yc9{bottom:249.387328px;}
.y164{bottom:251.460000px;}
.y18b{bottom:253.260000px;}
.y57{bottom:256.860000px;}
.yaf{bottom:260.460000px;}
.y23{bottom:261.180000px;}
.y1cb{bottom:264.420000px;}
.y199{bottom:264.600000px;}
.yfb{bottom:269.100000px;}
.y163{bottom:273.420000px;}
.y18a{bottom:275.220000px;}
.y56{bottom:278.820000px;}
.y10f{bottom:280.980000px;}
.yae{bottom:282.420000px;}
.y22{bottom:283.140000px;}
.y1ca{bottom:286.380000px;}
.yfa{bottom:291.060000px;}
.y116{bottom:294.987416px;}
.y162{bottom:295.380000px;}
.y189{bottom:297.180000px;}
.ycd{bottom:299.700000px;}
.y55{bottom:300.780000px;}
.yad{bottom:304.380000px;}
.y21{bottom:305.100000px;}
.y1c9{bottom:308.340000px;}
.yf9{bottom:313.020000px;}
.y10d{bottom:313.320000px;}
.y161{bottom:317.340000px;}
.y188{bottom:319.140000px;}
.ycc{bottom:321.660000px;}
.y54{bottom:322.740000px;}
.yac{bottom:326.340000px;}
.y20{bottom:327.060000px;}
.y87{bottom:328.080000px;}
.y1c8{bottom:330.300000px;}
.yce{bottom:330.600000px;}
.yf8{bottom:334.980000px;}
.y160{bottom:339.300000px;}
.y187{bottom:341.100000px;}
.y53{bottom:344.700000px;}
.yab{bottom:348.300000px;}
.y1f{bottom:349.020000px;}
.y86{bottom:352.200000px;}
.y1c7{bottom:352.260000px;}
.yf7{bottom:356.940000px;}
.y15f{bottom:361.260000px;}
.y186{bottom:363.060000px;}
.y52{bottom:366.660000px;}
.y117{bottom:366.722966px;}
.yaa{bottom:370.260000px;}
.y1e{bottom:370.980000px;}
.y1c6{bottom:374.220000px;}
.y85{bottom:376.680000px;}
.yf6{bottom:378.900000px;}
.y15e{bottom:383.580000px;}
.y185{bottom:385.020000px;}
.y119{bottom:387.770283px;}
.y51{bottom:388.620000px;}
.y81{bottom:392.220000px;}
.y1d{bottom:392.940000px;}
.y1c5{bottom:396.180000px;}
.y84{bottom:400.800000px;}
.yf5{bottom:400.860000px;}
.y15d{bottom:405.540000px;}
.y184{bottom:406.980000px;}
.y6c{bottom:410.220000px;}
.y50{bottom:410.580000px;}
.y80{bottom:414.180000px;}
.y1c{bottom:414.900000px;}
.y1c4{bottom:419.220000px;}
.yf4{bottom:422.820000px;}
.y82{bottom:424.920000px;}
.y15c{bottom:427.500000px;}
.y183{bottom:429.660000px;}
.y4f{bottom:432.540000px;}
.y7f{bottom:436.500000px;}
.y1b{bottom:436.860000px;}
.y109{bottom:439.680000px;}
.y1c3{bottom:443.700000px;}
.yf3{bottom:444.780000px;}
.y65{bottom:447.960000px;}
.y15b{bottom:449.460000px;}
.y182{bottom:453.060000px;}
.y67{bottom:453.780000px;}
.y4e{bottom:454.500000px;}
.y7e{bottom:458.460000px;}
.y1a{bottom:458.820000px;}
.y105{bottom:459.840000px;}
.y1c2{bottom:465.660000px;}
.yf2{bottom:466.740000px;}
.y15a{bottom:472.500000px;}
.y66{bottom:475.740000px;}
.y6b{bottom:476.100000px;}
.y4d{bottom:476.460000px;}
.y107{bottom:480.360000px;}
.y7d{bottom:480.420000px;}
.y19{bottom:480.780000px;}
.y1c1{bottom:487.620000px;}
.yf1{bottom:488.700000px;}
.y159{bottom:496.980000px;}
.y181{bottom:497.700000px;}
.y4c{bottom:498.420000px;}
.y9f{bottom:502.320000px;}
.y7c{bottom:502.380000px;}
.y18{bottom:502.740000px;}
.y10c{bottom:503.040000px;}
.y194{bottom:508.620000px;}
.y1c0{bottom:509.580000px;}
.yf0{bottom:510.660000px;}
.y10a{bottom:516.360000px;}
.y158{bottom:518.940000px;}
.y180{bottom:519.660000px;}
.y4b{bottom:520.380000px;}
.y1e3{bottom:522.540000px;}
.y7b{bottom:524.340000px;}
.y17{bottom:524.700000px;}
.y9d{bottom:529.320000px;}
.y1bf{bottom:531.540000px;}
.yef{bottom:532.620000px;}
.ybd{bottom:535.860000px;}
.y157{bottom:540.900000px;}
.y17f{bottom:541.620000px;}
.y4a{bottom:542.700000px;}
.y7a{bottom:546.300000px;}
.y16{bottom:546.660000px;}
.ybc{bottom:553.500000px;}
.yee{bottom:554.580000px;}
.y9e{bottom:556.320000px;}
.y1e0{bottom:561.720000px;}
.y156{bottom:562.860000px;}
.y17e{bottom:563.580000px;}
.y49{bottom:564.660000px;}
.y136{bottom:566.040000px;}
.y79{bottom:568.260000px;}
.y15{bottom:568.620000px;}
.y144{bottom:576.149100px;}
.y139{bottom:576.150150px;}
.y1be{bottom:576.180000px;}
.yed{bottom:576.540000px;}
.y1a6{bottom:578.280000px;}
.y13a{bottom:578.309100px;}
.y1a5{bottom:580.440000px;}
.yba{bottom:583.680000px;}
.y155{bottom:584.820000px;}
.y17d{bottom:585.540000px;}
.y48{bottom:586.620000px;}
.y78{bottom:590.220000px;}
.y14{bottom:590.580000px;}
.yec{bottom:598.500000px;}
.y1bd{bottom:598.860000px;}
.y1a4{bottom:603.480000px;}
.y154{bottom:606.780000px;}
.y17c{bottom:607.500000px;}
.y47{bottom:608.580000px;}
.y77{bottom:612.180000px;}
.y13{bottom:612.540000px;}
.y62{bottom:613.260000px;}
.yeb{bottom:620.460000px;}
.y1a3{bottom:626.880000px;}
.y153{bottom:628.740000px;}
.y17b{bottom:629.460000px;}
.y46{bottom:630.540000px;}
.y76{bottom:634.140000px;}
.y12{bottom:634.500000px;}
.yea{bottom:642.420000px;}
.y1a2{bottom:650.280000px;}
.y152{bottom:650.700000px;}
.y5c{bottom:651.000000px;}
.y17a{bottom:651.420000px;}
.y45{bottom:652.500000px;}
.y75{bottom:656.100000px;}
.y64{bottom:656.820000px;}
.y11{bottom:658.980000px;}
.y1ba{bottom:659.700000px;}
.y1a0{bottom:661.860000px;}
.ye9{bottom:664.380000px;}
.y151{bottom:672.660000px;}
.y1a1{bottom:673.320000px;}
.y179{bottom:673.380000px;}
.y44{bottom:674.460000px;}
.y74{bottom:678.060000px;}
.y1bc{bottom:678.360000px;}
.y5e{bottom:678.780000px;}
.y12e{bottom:680.520000px;}
.y112{bottom:680.999250px;}
.y1b9{bottom:681.660000px;}
.ye8{bottom:686.340000px;}
.y10{bottom:691.740000px;}
.y150{bottom:694.620000px;}
.y178{bottom:695.340000px;}
.y43{bottom:696.420000px;}
.y19e{bottom:696.720000px;}
.y1bb{bottom:697.440000px;}
.y73{bottom:700.020000px;}
.y1b8{bottom:704.340000px;}
.y16c{bottom:707.580000px;}
.ye7{bottom:708.300000px;}
.y16a{bottom:709.380000px;}
.yf{bottom:715.500000px;}
.y14f{bottom:716.580000px;}
.y177{bottom:717.300000px;}
.y42{bottom:718.380000px;}
.y72{bottom:721.980000px;}
.ye6{bottom:730.620000px;}
.y14e{bottom:738.540000px;}
.y176{bottom:739.620000px;}
.y16b{bottom:739.920000px;}
.y41{bottom:740.340000px;}
.y168{bottom:742.080000px;}
.y71{bottom:743.940000px;}
.ye{bottom:750.420000px;}
.ye5{bottom:752.580000px;}
.y9a{bottom:760.440000px;}
.y14d{bottom:760.500000px;}
.y175{bottom:761.580000px;}
.y40{bottom:762.300000px;}
.y70{bottom:765.900000px;}
.y129{bottom:766.620000px;}
.y12d{bottom:774.180000px;}
.ye4{bottom:774.540000px;}
.y14c{bottom:782.460000px;}
.y174{bottom:783.540000px;}
.y1b7{bottom:783.840000px;}
.y3f{bottom:784.260000px;}
.y126{bottom:784.620000px;}
.yd{bottom:785.700000px;}
.y6f{bottom:787.860000px;}
.y12c{bottom:792.540000px;}
.ye3{bottom:796.500000px;}
.y1d6{bottom:798.990600px;}
.y1b6{bottom:802.920000px;}
.y125{bottom:802.980000px;}
.y14b{bottom:804.420000px;}
.y173{bottom:805.500000px;}
.y3e{bottom:806.220000px;}
.y6e{bottom:809.820000px;}
.y127{bottom:810.120000px;}
.y12b{bottom:810.900000px;}
.ye2{bottom:818.460000px;}
.y1b5{bottom:821.280000px;}
.yc{bottom:822.420000px;}
.y3d{bottom:829.260000px;}
.y6d{bottom:831.780000px;}
.y1e8{bottom:832.860000px;}
.y1b4{bottom:839.640000px;}
.y14a{bottom:840.060000px;}
.ye1{bottom:840.420000px;}
.y99{bottom:853.320000px;}
.y3c{bottom:853.740000px;}
.y1e7{bottom:857.340000px;}
.y1b3{bottom:858.000000px;}
.ye0{bottom:862.380000px;}
.yb{bottom:864.540000px;}
.y3b{bottom:875.700000px;}
.y1b2{bottom:876.000000px;}
.y1e6{bottom:879.300000px;}
.y96{bottom:880.320000px;}
.y147{bottom:883.560000px;}
.y172{bottom:884.280000px;}
.y146{bottom:886.500000px;}
.y1b1{bottom:894.360000px;}
.y3a{bottom:897.660000px;}
.y1e5{bottom:901.260000px;}
.ya{bottom:906.660000px;}
.y171{bottom:906.960000px;}
.y98{bottom:907.320000px;}
.y1b0{bottom:912.720000px;}
.y39{bottom:919.620000px;}
.y94{bottom:922.860000px;}
.y1e4{bottom:923.220000px;}
.y11e{bottom:925.680000px;}
.y11c{bottom:926.760000px;}
.y170{bottom:929.640000px;}
.y1af{bottom:931.080000px;}
.ydf{bottom:941.160000px;}
.y38{bottom:941.580000px;}
.y9{bottom:945.540000px;}
.y1ae{bottom:949.440000px;}
.y16f{bottom:952.320000px;}
.y90{bottom:960.600000px;}
.y37{bottom:963.540000px;}
.yde{bottom:965.280000px;}
.y8{bottom:967.500000px;}
.y1ad{bottom:967.800000px;}
.y123{bottom:970.320000px;}
.yb4{bottom:970.680000px;}
.y120{bottom:973.200000px;}
.y16e{bottom:975.000000px;}
.y36{bottom:985.500000px;}
.y1ab{bottom:986.160000px;}
.ydd{bottom:989.400000px;}
.y7{bottom:989.460000px;}
.y16d{bottom:997.680000px;}
.y1aa{bottom:1004.160000px;}
.y35{bottom:1007.460000px;}
.y6{bottom:1011.420000px;}
.ydc{bottom:1013.880000px;}
.y1a8{bottom:1023.240000px;}
.y34{bottom:1029.420000px;}
.y5{bottom:1033.380000px;}
.ydb{bottom:1038.000000px;}
.y33{bottom:1051.740000px;}
.y4{bottom:1055.340000px;}
.yda{bottom:1062.120000px;}
.y32{bottom:1073.700000px;}
.y3{bottom:1077.300000px;}
.y31{bottom:1096.740000px;}
.y2{bottom:1099.260000px;}
.h21{height:12.247453px;}
.h22{height:17.146435px;}
.h57{height:18.000000px;}
.h58{height:18.359895px;}
.h59{height:18.359940px;}
.h56{height:18.359985px;}
.h27{height:19.439985px;}
.h26{height:19.800015px;}
.h5c{height:19.973502px;}
.h5d{height:20.010210px;}
.hd{height:21.959925px;}
.hf{height:21.960000px;}
.he{height:21.960015px;}
.h54{height:22.320000px;}
.h53{height:22.680000px;}
.h4f{height:23.979728px;}
.h50{height:23.994141px;}
.h6{height:24.480000px;}
.h1c{height:27.638927px;}
.h1b{height:28.589262px;}
.h11{height:29.519985px;}
.h5e{height:32.016335px;}
.h42{height:32.607039px;}
.h15{height:32.652199px;}
.h3b{height:33.809906px;}
.h3c{height:35.683031px;}
.h5b{height:36.018377px;}
.h43{height:36.682919px;}
.h16{height:36.733723px;}
.h51{height:38.390625px;}
.h25{height:39.190078px;}
.h2a{height:39.350391px;}
.h44{height:39.939527px;}
.h17{height:39.994841px;}
.h35{height:42.867422px;}
.h4e{height:43.189453px;}
.h4a{height:43.920045px;}
.h33{height:45.359985px;}
.h34{height:46.079955px;}
.h12{height:46.440030px;}
.h1a{height:47.807873px;}
.hb{height:47.988281px;}
.h1f{height:48.690703px;}
.h2d{height:52.207392px;}
.ha{height:52.277344px;}
.h13{height:52.875000px;}
.h3f{height:55.728000px;}
.h39{height:56.538000px;}
.h38{height:58.482000px;}
.h2e{height:58.733316px;}
.h2{height:59.378906px;}
.h7{height:59.716800px;}
.h45{height:60.120030px;}
.h8{height:60.641719px;}
.h2f{height:63.947496px;}
.h52{height:65.880015px;}
.h5{height:66.024000px;}
.h4b{height:67.623047px;}
.h48{height:69.840045px;}
.h2b{height:70.200000px;}
.h49{height:70.200030px;}
.h4c{height:72.310078px;}
.h1e{height:72.720015px;}
.h18{height:74.519985px;}
.h3e{height:77.274000px;}
.h23{height:77.760015px;}
.h1d{height:78.287105px;}
.h36{height:81.719970px;}
.h3a{height:82.458000px;}
.h37{height:86.400000px;}
.h40{height:89.999273px;}
.h19{height:89.999873px;}
.h3d{height:92.583000px;}
.h28{height:101.519985px;}
.h10{height:107.280030px;}
.h24{height:109.440000px;}
.h4{height:109.599840px;}
.h30{height:120.600030px;}
.h32{height:120.960015px;}
.h46{height:121.633631px;}
.h9{height:128.519985px;}
.hc{height:128.879970px;}
.h3{height:132.048000px;}
.h47{height:139.815431px;}
.h55{height:185.040000px;}
.h29{height:209.671875px;}
.h5a{height:237.929400px;}
.h20{height:257.039955px;}
.h41{height:259.170900px;}
.h14{height:259.529850px;}
.h4d{height:285.300000px;}
.h31{height:326.583984px;}
.h2c{height:414.960750px;}
.h1{height:1174.500000px;}
.h0{height:1263.000000px;}
.w2{width:8.280030px;}
.w6{width:10.440033px;}
.w1a{width:11.160003px;}
.w40{width:11.519989px;}
.w71{width:12.239959px;}
.w47{width:12.600036px;}
.w86{width:30.599985px;}
.w23{width:30.960000px;}
.w2a{width:31.680000px;}
.w7d{width:32.040000px;}
.w84{width:32.759970px;}
.w82{width:32.760000px;}
.w81{width:33.840000px;}
.w7c{width:34.200000px;}
.w7f{width:34.559985px;}
.w85{width:34.920000px;}
.w5f{width:37.439985px;}
.w83{width:37.800000px;}
.w68{width:37.800015px;}
.w80{width:38.520015px;}
.w7e{width:39.599985px;}
.w73{width:40.320000px;}
.w72{width:40.680000px;}
.w49{width:41.039985px;}
.w25{width:41.760000px;}
.w2c{width:42.479970px;}
.w3e{width:50.039985px;}
.w3c{width:50.040000px;}
.w3d{width:50.040030px;}
.w5c{width:51.119985px;}
.w66{width:51.479985px;}
.w60{width:51.480015px;}
.w69{width:51.840000px;}
.w26{width:52.200000px;}
.w79{width:52.919985px;}
.w2d{width:52.920000px;}
.w4d{width:57.240000px;}
.w52{width:57.959925px;}
.w78{width:59.399970px;}
.w75{width:59.399985px;}
.w76{width:59.400015px;}
.w7b{width:59.759955px;}
.w74{width:59.759970px;}
.w77{width:59.760000px;}
.w7a{width:60.119955px;}
.w61{width:60.119985px;}
.w62{width:60.480015px;}
.w4b{width:60.840000px;}
.w50{width:61.559970px;}
.w28{width:62.999955px;}
.w27{width:63.000000px;}
.w24{width:63.359970px;}
.w2e{width:63.720000px;}
.w53{width:63.720015px;}
.w2b{width:64.079985px;}
.w2f{width:64.080000px;}
.w22{width:64.800000px;}
.w5d{width:65.160000px;}
.w19{width:65.519985px;}
.w29{width:65.520000px;}
.w17{width:65.520015px;}
.w34{width:70.920000px;}
.w4c{width:71.280000px;}
.w51{width:71.999970px;}
.w8{width:72.720000px;}
.wc{width:72.720015px;}
.wf{width:73.439985px;}
.w6d{width:73.800000px;}
.w6f{width:74.160000px;}
.w39{width:77.399985px;}
.w38{width:77.400000px;}
.w3b{width:77.400015px;}
.w3a{width:77.760015px;}
.w43{width:79.559970px;}
.w41{width:79.559985px;}
.w42{width:79.560015px;}
.w32{width:81.000000px;}
.w37{width:81.000045px;}
.wd{width:83.160000px;}
.wa{width:83.519985px;}
.w48{width:83.520000px;}
.w13{width:83.879925px;}
.w31{width:83.879985px;}
.w36{width:83.880015px;}
.w64{width:84.239955px;}
.w11{width:84.239985px;}
.w4e{width:84.240000px;}
.w63{width:84.599985px;}
.w54{width:84.959925px;}
.w55{width:84.959970px;}
.w6a{width:84.960015px;}
.w5e{width:87.479985px;}
.w67{width:87.839970px;}
.wb{width:87.840000px;}
.w35{width:88.199985px;}
.w12{width:88.559970px;}
.w30{width:90.720000px;}
.w18{width:94.319985px;}
.w16{width:94.320000px;}
.w15{width:94.680000px;}
.w33{width:94.680015px;}
.w7{width:95.400000px;}
.we{width:96.120000px;}
.w59{width:103.319985px;}
.w5a{width:103.320000px;}
.w57{width:103.679985px;}
.w58{width:103.680000px;}
.w1c{width:108.000000px;}
.w4a{width:108.719970px;}
.w4f{width:109.439970px;}
.w9{width:119.159985px;}
.w1f{width:119.520015px;}
.w10{width:119.880000px;}
.w5b{width:122.040000px;}
.w65{width:122.759970px;}
.w1d{width:137.519985px;}
.w6c{width:138.600000px;}
.w6e{width:139.320000px;}
.w45{width:148.680000px;}
.w46{width:189.000000px;}
.w88{width:191.880000px;}
.w44{width:198.360000px;}
.w20{width:218.160000px;}
.w56{width:237.240000px;}
.w70{width:243.000000px;}
.w87{width:248.730600px;}
.w21{width:248.730750px;}
.w1b{width:249.089700px;}
.w1e{width:250.559850px;}
.w14{width:284.760000px;}
.w5{width:288.000000px;}
.w4{width:288.360000px;}
.w6b{width:298.620600px;}
.w3f{width:396.780000px;}
.w3{width:838.499850px;}
.w1{width:838.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1d{left:1.080000px;}
.x3b{left:2.100780px;}
.x45{left:3.148950px;}
.x44{left:5.428800px;}
.xa6{left:6.922350px;}
.x3a{left:8.184975px;}
.xf{left:10.800000px;}
.xa5{left:11.899845px;}
.x12{left:13.320000px;}
.x46{left:14.629200px;}
.x96{left:15.840000px;}
.x4a{left:16.920000px;}
.x5c{left:18.130500px;}
.x55{left:19.826700px;}
.x5b{left:20.842500px;}
.x18{left:22.320000px;}
.x59{left:24.167100px;}
.x57{left:25.228650px;}
.x1{left:27.000000px;}
.x29{left:28.615350px;}
.x25{left:30.066300px;}
.x5a{left:31.492350px;}
.x28{left:32.816850px;}
.x27{left:33.932100px;}
.x21{left:35.636700px;}
.x23{left:37.526700px;}
.x67{left:39.240000px;}
.x79{left:40.758487px;}
.x2a{left:41.940000px;}
.x1f{left:45.259650px;}
.x3d{left:49.574160px;}
.x6f{left:55.440000px;}
.xd{left:56.520000px;}
.x2{left:57.960000px;}
.x41{left:61.830000px;}
.x4f{left:63.720000px;}
.x33{left:65.520000px;}
.x51{left:66.960000px;}
.x78{left:70.928248px;}
.x71{left:73.080000px;}
.x14{left:74.519955px;}
.x85{left:76.036903px;}
.x40{left:79.065000px;}
.x88{left:81.000015px;}
.x65{left:82.440000px;}
.x1c{left:85.320135px;}
.xc{left:89.640045px;}
.x15{left:93.960045px;}
.x7d{left:97.560015px;}
.x5d{left:98.640000px;}
.x47{left:100.351950px;}
.x6c{left:101.880000px;}
.x87{left:104.400000px;}
.x31{left:106.560135px;}
.x3e{left:111.960000px;}
.x2b{left:118.440135px;}
.x7b{left:120.466251px;}
.x7a{left:121.477231px;}
.x9a{left:124.920000px;}
.x72{left:136.800000px;}
.x73{left:138.600000px;}
.x94{left:139.614900px;}
.x5{left:142.124400px;}
.x32{left:151.200150px;}
.x62{left:152.640000px;}
.x9b{left:157.680000px;}
.x6{left:159.044400px;}
.xe{left:161.280000px;}
.x7e{left:169.560000px;}
.x16{left:172.080000px;}
.x5e{left:179.640000px;}
.x1e{left:181.440150px;}
.x52{left:182.520000px;}
.x10{left:192.240000px;}
.x9c{left:198.000000px;}
.x6e{left:207.000000px;}
.x7f{left:211.320000px;}
.x5f{left:219.960000px;}
.x7{left:223.018950px;}
.x2c{left:227.520015px;}
.x34{left:232.200150px;}
.x9d{left:233.640000px;}
.x3c{left:236.345071px;}
.x95{left:239.400000px;}
.x53{left:246.600000px;}
.x4{left:255.469650px;}
.x8c{left:263.520000px;}
.x9e{left:272.880000px;}
.x93{left:274.100181px;}
.x35{left:281.880150px;}
.x97{left:284.040000px;}
.x54{left:289.080000px;}
.x86{left:295.199850px;}
.x9f{left:307.440000px;}
.x8{left:309.025050px;}
.x4e{left:312.480000px;}
.x91{left:314.459850px;}
.x80{left:320.760000px;}
.x50{left:326.880000px;}
.x4b{left:328.680000px;}
.x4c{left:330.120000px;}
.xa0{left:340.920000px;}
.x56{left:342.000000px;}
.x49{left:343.080000px;}
.x48{left:348.840000px;}
.x89{left:352.440000px;}
.x66{left:358.920000px;}
.x4d{left:362.160000px;}
.x1b{left:365.385285px;}
.xb{left:368.745420px;}
.x20{left:374.760150px;}
.x6b{left:377.675263px;}
.xa1{left:379.440000px;}
.x63{left:381.960000px;}
.x98{left:403.920000px;}
.x58{left:405.720000px;}
.xa2{left:412.920000px;}
.x8d{left:416.880000px;}
.x3{left:419.160000px;}
.x60{left:422.280000px;}
.xa8{left:425.160000px;}
.x17{left:440.280000px;}
.xa7{left:441.360000px;}
.x11{left:442.440000px;}
.xa3{left:448.560000px;}
.x19{left:453.240000px;}
.x81{left:454.320000px;}
.x22{left:459.000150px;}
.x13{left:462.600000px;}
.x99{left:463.680000px;}
.x6a{left:468.720000px;}
.x36{left:470.880150px;}
.x92{left:476.640000px;}
.xa4{left:487.440000px;}
.x8e{left:506.520000px;}
.x82{left:512.280000px;}
.x70{left:523.440000px;}
.x37{left:524.880150px;}
.x77{left:528.480000px;}
.x2d{left:543.960150px;}
.x24{left:547.560150px;}
.x42{left:563.040000px;}
.x8f{left:567.000000px;}
.x83{left:576.000000px;}
.x43{left:584.640000px;}
.x8b{left:591.480000px;}
.x38{left:592.560150px;}
.x2e{left:597.960150px;}
.x8a{left:607.680000px;}
.x69{left:612.720000px;}
.x61{left:617.760000px;}
.x1a{left:619.920000px;}
.x26{left:621.000150px;}
.x90{left:627.840000px;}
.x68{left:628.920000px;}
.x64{left:638.640000px;}
.x39{left:646.560150px;}
.x84{left:660.960000px;}
.x2f{left:665.640150px;}
.x76{left:667.800000px;}
.x74{left:678.960000px;}
.x75{left:687.960000px;}
.x7c{left:689.400000px;}
.x3f{left:705.960000px;}
.x6d{left:712.440000px;}
.x30{left:719.640150px;}
.x9{left:780.360150px;}
.xa{left:786.960000px;}
@media print{
.vd{vertical-align:-29.440000pt;}
.v6{vertical-align:-21.321037pt;}
.v8{vertical-align:-18.432000pt;}
.v3{vertical-align:-15.585600pt;}
.v2{vertical-align:-13.334869pt;}
.v1{vertical-align:-7.679467pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:12.288000pt;}
.v4{vertical-align:15.585600pt;}
.v7{vertical-align:18.432000pt;}
.vc{vertical-align:29.440000pt;}
.v5{vertical-align:37.504000pt;}
.va{vertical-align:49.776533pt;}
.vb{vertical-align:65.938133pt;}
.ls3d{letter-spacing:-0.540544pt;}
.ls24{letter-spacing:-0.448000pt;}
.ls3f{letter-spacing:-0.425088pt;}
.ls40{letter-spacing:-0.393600pt;}
.ls41{letter-spacing:-0.190080pt;}
.ls3e{letter-spacing:-0.068224pt;}
.ls12{letter-spacing:-0.032000pt;}
.ls14{letter-spacing:-0.025600pt;}
.ls4f{letter-spacing:-0.022742pt;}
.ls74{letter-spacing:-0.020480pt;}
.ls90{letter-spacing:-0.017080pt;}
.ls4e{letter-spacing:-0.015351pt;}
.ls36{letter-spacing:-0.014224pt;}
.ls6a{letter-spacing:-0.014204pt;}
.ls4d{letter-spacing:-0.013645pt;}
.ls11{letter-spacing:-0.012800pt;}
.ls73{letter-spacing:-0.011520pt;}
.ls5a{letter-spacing:-0.010496pt;}
.ls8f{letter-spacing:-0.009607pt;}
.ls35{letter-spacing:-0.009601pt;}
.ls69{letter-spacing:-0.009588pt;}
.ls34{letter-spacing:-0.008534pt;}
.ls68{letter-spacing:-0.008523pt;}
.ls13{letter-spacing:-0.006400pt;}
.ls75{letter-spacing:-0.005120pt;}
.ls91{letter-spacing:-0.004270pt;}
.ls3b{letter-spacing:-0.003201pt;}
.ls5{letter-spacing:0.000000pt;}
.ls60{letter-spacing:0.001864pt;}
.ls26{letter-spacing:0.001867pt;}
.ls1d{letter-spacing:0.002133pt;}
.ls4b{letter-spacing:0.002985pt;}
.ls9a{letter-spacing:0.003200pt;}
.ls2a{letter-spacing:0.004747pt;}
.ls66{letter-spacing:0.004800pt;}
.ls84{letter-spacing:0.005337pt;}
.lse{letter-spacing:0.006400pt;}
.ls92{letter-spacing:0.008540pt;}
.ls2c{letter-spacing:0.009600pt;}
.ls98{letter-spacing:0.010133pt;}
.ls61{letter-spacing:0.011985pt;}
.ls27{letter-spacing:0.012001pt;}
.ls7a{letter-spacing:0.012373pt;}
.lsc{letter-spacing:0.012800pt;}
.ls7c{letter-spacing:0.012907pt;}
.ls88{letter-spacing:0.013824pt;}
.ls1c{letter-spacing:0.014400pt;}
.ls4c{letter-spacing:0.019189pt;}
.ls1e{letter-spacing:0.019200pt;}
.ls23{letter-spacing:0.025600pt;}
.ls1a{letter-spacing:0.030400pt;}
.lsf{letter-spacing:0.032000pt;}
.ls51{letter-spacing:0.038400pt;}
.ls49{letter-spacing:0.064000pt;}
.ls5e{letter-spacing:0.068224pt;}
.ls10{letter-spacing:0.081664pt;}
.ls2f{letter-spacing:0.081826pt;}
.ls1b{letter-spacing:0.087893pt;}
.ls18{letter-spacing:0.088107pt;}
.ls47{letter-spacing:0.088160pt;}
.ls19{letter-spacing:0.088427pt;}
.ls6b{letter-spacing:0.088704pt;}
.ls2b{letter-spacing:0.118507pt;}
.ls29{letter-spacing:0.118720pt;}
.ls28{letter-spacing:0.119040pt;}
.ls39{letter-spacing:0.162688pt;}
.lsa{letter-spacing:0.166400pt;}
.ls38{letter-spacing:0.170752pt;}
.ls45{letter-spacing:0.177408pt;}
.ls22{letter-spacing:0.178176pt;}
.ls93{letter-spacing:0.188928pt;}
.ls4{letter-spacing:0.191360pt;}
.ls3c{letter-spacing:0.192000pt;}
.ls42{letter-spacing:0.198528pt;}
.ls5d{letter-spacing:0.199424pt;}
.ls6e{letter-spacing:0.204053pt;}
.ls87{letter-spacing:0.204672pt;}
.ls6f{letter-spacing:0.209387pt;}
.ls15{letter-spacing:0.211093pt;}
.ls37{letter-spacing:0.222720pt;}
.ls46{letter-spacing:0.223360pt;}
.ls25{letter-spacing:0.223467pt;}
.ls44{letter-spacing:0.228096pt;}
.ls6d{letter-spacing:0.228267pt;}
.ls50{letter-spacing:0.229440pt;}
.ls96{letter-spacing:0.230912pt;}
.ls9b{letter-spacing:0.237568pt;}
.ls21{letter-spacing:0.244992pt;}
.ls17{letter-spacing:0.245333pt;}
.ls16{letter-spacing:0.245440pt;}
.ls97{letter-spacing:0.246827pt;}
.ls78{letter-spacing:0.248107pt;}
.lsd{letter-spacing:0.252416pt;}
.ls2{letter-spacing:0.252907pt;}
.ls5f{letter-spacing:0.254187pt;}
.ls8e{letter-spacing:0.262400pt;}
.ls5c{letter-spacing:0.267648pt;}
.ls43{letter-spacing:0.287232pt;}
.ls0{letter-spacing:0.288000pt;}
.ls59{letter-spacing:0.289536pt;}
.ls95{letter-spacing:0.341120pt;}
.ls72{letter-spacing:0.344320pt;}
.ls33{letter-spacing:0.346368pt;}
.ls3{letter-spacing:0.374933pt;}
.ls76{letter-spacing:0.384000pt;}
.ls82{letter-spacing:0.414592pt;}
.ls7b{letter-spacing:0.416747pt;}
.ls81{letter-spacing:0.425088pt;}
.ls89{letter-spacing:0.430336pt;}
.ls7d{letter-spacing:0.438507pt;}
.ls54{letter-spacing:0.438528pt;}
.ls4a{letter-spacing:0.447947pt;}
.ls79{letter-spacing:0.458453pt;}
.ls32{letter-spacing:0.462080pt;}
.ls80{letter-spacing:0.465707pt;}
.ls7e{letter-spacing:0.466240pt;}
.ls83{letter-spacing:0.472320pt;}
.ls3a{letter-spacing:0.503808pt;}
.ls9{letter-spacing:0.504192pt;}
.ls48{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.523776pt;}
.ls8b{letter-spacing:0.524800pt;}
.ls31{letter-spacing:0.533167pt;}
.ls8a{letter-spacing:0.535296pt;}
.ls8d{letter-spacing:0.572032pt;}
.ls8{letter-spacing:0.574080pt;}
.ls85{letter-spacing:0.581120pt;}
.ls7f{letter-spacing:0.586987pt;}
.ls94{letter-spacing:0.608768pt;}
.ls56{letter-spacing:0.630528pt;}
.ls7{letter-spacing:0.642048pt;}
.ls1{letter-spacing:0.658944pt;}
.ls8c{letter-spacing:0.729472pt;}
.ls86{letter-spacing:0.745216pt;}
.ls20{letter-spacing:0.768000pt;}
.ls1f{letter-spacing:0.768053pt;}
.ls53{letter-spacing:0.822528pt;}
.ls77{letter-spacing:0.832000pt;}
.ls5b{letter-spacing:1.270016pt;}
.ls57{letter-spacing:2.002944pt;}
.ls30{letter-spacing:2.806109pt;}
.ls99{letter-spacing:3.195200pt;}
.ls6c{letter-spacing:6.483200pt;}
.ls2e{letter-spacing:6.686344pt;}
.lsb{letter-spacing:9.332800pt;}
.ls64{letter-spacing:12.753196pt;}
.ls67{letter-spacing:13.881600pt;}
.ls55{letter-spacing:14.208000pt;}
.ls63{letter-spacing:15.339002pt;}
.ls52{letter-spacing:16.656384pt;}
.ls65{letter-spacing:16.847389pt;}
.ls2d{letter-spacing:18.229640pt;}
.ls62{letter-spacing:18.693654pt;}
.ls70{letter-spacing:97.978667pt;}
.ls71{letter-spacing:174.335467pt;}
.ls58{letter-spacing:293.435904pt;}
.ws63{word-spacing:-77.881600pt;}
.ws1f{word-spacing:-64.000000pt;}
.ws0{word-spacing:-22.353408pt;}
.ws1{word-spacing:-16.448000pt;}
.ws2{word-spacing:-13.333632pt;}
.ws62{word-spacing:-6.547200pt;}
.ws4e{word-spacing:-1.322496pt;}
.ws6d{word-spacing:-0.896000pt;}
.ws73{word-spacing:-0.797696pt;}
.ws7b{word-spacing:-0.781952pt;}
.ws85{word-spacing:-0.661248pt;}
.ws7c{word-spacing:-0.624512pt;}
.ws78{word-spacing:-0.587776pt;}
.ws79{word-spacing:-0.577280pt;}
.ws6c{word-spacing:-0.576000pt;}
.ws2e{word-spacing:-0.556288pt;}
.ws7e{word-spacing:-0.524800pt;}
.ws76{word-spacing:-0.482816pt;}
.ws77{word-spacing:-0.477568pt;}
.ws7a{word-spacing:-0.467072pt;}
.ws6b{word-spacing:-0.448000pt;}
.ws86{word-spacing:-0.393600pt;}
.ws3b{word-spacing:-0.388608pt;}
.ws48{word-spacing:-0.363776pt;}
.ws4c{word-spacing:-0.352000pt;}
.ws38{word-spacing:-0.329472pt;}
.wsa{word-spacing:-0.326656pt;}
.ws50{word-spacing:-0.320128pt;}
.ws16{word-spacing:-0.319232pt;}
.ws7d{word-spacing:-0.314880pt;}
.ws88{word-spacing:-0.311808pt;}
.ws22{word-spacing:-0.296960pt;}
.ws87{word-spacing:-0.283392pt;}
.ws3a{word-spacing:-0.270336pt;}
.ws74{word-spacing:-0.257152pt;}
.ws31{word-spacing:-0.256000pt;}
.ws17{word-spacing:-0.252416pt;}
.ws51{word-spacing:-0.251904pt;}
.ws23{word-spacing:-0.244992pt;}
.ws84{word-spacing:-0.241408pt;}
.ws37{word-spacing:-0.240768pt;}
.ws3c{word-spacing:-0.219648pt;}
.ws2d{word-spacing:-0.215168pt;}
.ws5{word-spacing:-0.155904pt;}
.ws5a{word-spacing:-0.130944pt;}
.ws52{word-spacing:-0.120704pt;}
.ws4b{word-spacing:-0.102400pt;}
.wsc{word-spacing:-0.096000pt;}
.ws25{word-spacing:-0.089600pt;}
.ws19{word-spacing:-0.083200pt;}
.ws5c{word-spacing:-0.082746pt;}
.ws9{word-spacing:-0.076800pt;}
.ws18{word-spacing:-0.074240pt;}
.ws53{word-spacing:-0.073728pt;}
.ws45{word-spacing:-0.070400pt;}
.ws6{word-spacing:-0.064000pt;}
.ws2a{word-spacing:-0.062344pt;}
.wsd{word-spacing:-0.057600pt;}
.ws4f{word-spacing:-0.052480pt;}
.ws7{word-spacing:-0.051200pt;}
.ws75{word-spacing:-0.048384pt;}
.ws54{word-spacing:-0.042624pt;}
.ws39{word-spacing:-0.042240pt;}
.ws4d{word-spacing:-0.041984pt;}
.wse{word-spacing:-0.038400pt;}
.ws2c{word-spacing:-0.036042pt;}
.ws81{word-spacing:-0.032024pt;}
.ws8{word-spacing:-0.032000pt;}
.ws69{word-spacing:-0.031981pt;}
.ws80{word-spacing:-0.026638pt;}
.ws4{word-spacing:0.000000pt;}
.ws33{word-spacing:0.015744pt;}
.ws36{word-spacing:0.147840pt;}
.ws35{word-spacing:0.341120pt;}
.ws34{word-spacing:0.372608pt;}
.ws1e{word-spacing:0.384000pt;}
.ws32{word-spacing:0.488064pt;}
.wsb{word-spacing:10.105600pt;}
.ws4a{word-spacing:10.464000pt;}
.ws8e{word-spacing:10.483200pt;}
.ws49{word-spacing:10.508800pt;}
.ws8d{word-spacing:10.533600pt;}
.ws66{word-spacing:10.677707pt;}
.ws71{word-spacing:11.072000pt;}
.ws6f{word-spacing:11.083733pt;}
.ws6e{word-spacing:11.088533pt;}
.ws72{word-spacing:11.091200pt;}
.ws70{word-spacing:11.097600pt;}
.ws5b{word-spacing:12.846285pt;}
.ws1b{word-spacing:13.632000pt;}
.ws1c{word-spacing:14.912000pt;}
.ws8c{word-spacing:17.312000pt;}
.ws8b{word-spacing:17.365653pt;}
.ws28{word-spacing:18.099200pt;}
.ws26{word-spacing:18.131200pt;}
.ws27{word-spacing:18.182400pt;}
.ws29{word-spacing:18.206400pt;}
.ws64{word-spacing:20.057600pt;}
.ws5e{word-spacing:21.139200pt;}
.ws11{word-spacing:22.592000pt;}
.ws12{word-spacing:23.872000pt;}
.ws90{word-spacing:27.648000pt;}
.ws8f{word-spacing:27.698987pt;}
.ws89{word-spacing:29.551413pt;}
.ws8a{word-spacing:29.555200pt;}
.ws15{word-spacing:30.272000pt;}
.ws60{word-spacing:40.769067pt;}
.ws10{word-spacing:41.792000pt;}
.ws13{word-spacing:46.912000pt;}
.ws2f{word-spacing:47.903864pt;}
.ws2b{word-spacing:49.130603pt;}
.ws30{word-spacing:49.315473pt;}
.ws1d{word-spacing:50.752000pt;}
.ws14{word-spacing:52.032000pt;}
.ws24{word-spacing:55.737760pt;}
.ws83{word-spacing:67.570165pt;}
.ws82{word-spacing:67.595251pt;}
.ws65{word-spacing:74.576000pt;}
.ws44{word-spacing:85.612800pt;}
.ws42{word-spacing:85.638400pt;}
.ws43{word-spacing:85.668800pt;}
.ws59{word-spacing:95.930928pt;}
.ws57{word-spacing:95.931009pt;}
.ws3f{word-spacing:96.063869pt;}
.ws55{word-spacing:96.064029pt;}
.ws41{word-spacing:96.064083pt;}
.ws21{word-spacing:96.064189pt;}
.ws3e{word-spacing:96.064322pt;}
.ws7f{word-spacing:102.367336pt;}
.ws6a{word-spacing:106.489889pt;}
.ws68{word-spacing:108.150751pt;}
.ws56{word-spacing:108.318203pt;}
.ws58{word-spacing:108.318737pt;}
.ws20{word-spacing:108.468219pt;}
.ws40{word-spacing:108.468752pt;}
.ws3d{word-spacing:108.469288pt;}
.ws61{word-spacing:120.737600pt;}
.ws5d{word-spacing:141.705621pt;}
.ws47{word-spacing:153.596246pt;}
.ws67{word-spacing:159.802720pt;}
.ws5f{word-spacing:174.271467pt;}
.ws46{word-spacing:192.881872pt;}
.wsf{word-spacing:753.471840pt;}
.ws3{word-spacing:753.472000pt;}
.ws1a{word-spacing:753.472053pt;}
._4{margin-left:-9.472000pt;}
._19{margin-left:-6.718933pt;}
._b{margin-left:-5.760160pt;}
._3{margin-left:-4.864000pt;}
._1{margin-left:-3.584000pt;}
._2{margin-left:-2.432000pt;}
._0{margin-left:-0.896000pt;}
._5{width:0.890880pt;}
._c{width:2.132320pt;}
._11{width:3.507200pt;}
._10{width:4.812640pt;}
._9{width:5.847787pt;}
._6{width:7.283200pt;}
._8{width:8.288000pt;}
._7{width:9.350400pt;}
._d{width:14.661173pt;}
._a{width:25.408000pt;}
._13{width:43.858858pt;}
._12{width:51.972100pt;}
._1d{width:90.231966pt;}
._16{width:105.086933pt;}
._1c{width:114.576728pt;}
._f{width:120.673294pt;}
._1b{width:122.794400pt;}
._e{width:132.836625pt;}
._1a{width:137.388511pt;}
._18{width:151.357867pt;}
._15{width:173.491094pt;}
._17{width:174.426667pt;}
._14{width:212.391434pt;}
.fs10{font-size:16.005605pt;}
.fs11{font-size:22.407847pt;}
.fs25{font-size:26.637840pt;}
.fs26{font-size:26.686795pt;}
.fs20{font-size:31.980779pt;}
.fs21{font-size:32.000000pt;}
.fs23{font-size:34.560000pt;}
.fs1e{font-size:35.510462pt;}
.fsb{font-size:35.559643pt;}
.fsd{font-size:36.042357pt;}
.fs7{font-size:42.240000pt;}
.fs1b{font-size:42.612565pt;}
.fs19{font-size:42.624000pt;}
.fs8{font-size:42.671582pt;}
.fs27{font-size:42.698871pt;}
.fs1c{font-size:47.939136pt;}
.fs9{font-size:48.005530pt;}
.fs24{font-size:48.036230pt;}
.fs4{font-size:49.920000pt;}
.fs22{font-size:51.200000pt;}
.fsf{font-size:52.480000pt;}
.fs1d{font-size:53.265707pt;}
.fsa{font-size:53.339477pt;}
.fs16{font-size:56.856085pt;}
.fs6{font-size:57.600000pt;}
.fsc{font-size:62.343537pt;}
.fs0{font-size:64.000000pt;}
.fs13{font-size:68.227319pt;}
.fs18{font-size:73.728000pt;}
.fs5{font-size:74.240000pt;}
.fs14{font-size:76.755734pt;}
.fs1f{font-size:82.745795pt;}
.fs3{font-size:84.480000pt;}
.fs15{font-size:85.284149pt;}
.fse{font-size:93.515305pt;}
.fs2{font-size:106.240000pt;}
.fs1a{font-size:110.592000pt;}
.fs1{font-size:128.000000pt;}
.fs12{font-size:256.000000pt;}
.fs17{font-size:352.000000pt;}
.y1a7{bottom:-13.440000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:1.280000pt;}
.y95{bottom:1.600000pt;}
.y108{bottom:1.920000pt;}
.y106{bottom:2.240000pt;}
.yb7{bottom:3.125333pt;}
.y1ac{bottom:3.520000pt;}
.y135{bottom:3.744000pt;}
.y1a9{bottom:3.840000pt;}
.y83{bottom:4.160000pt;}
.y149{bottom:4.201867pt;}
.y30{bottom:4.480000pt;}
.y9c{bottom:4.800000pt;}
.y111{bottom:5.120000pt;}
.y122{bottom:5.440000pt;}
.ycb{bottom:6.001865pt;}
.y124{bottom:6.400000pt;}
.yd5{bottom:7.680000pt;}
.y143{bottom:9.872325pt;}
.ya9{bottom:9.885971pt;}
.y1df{bottom:10.159282pt;}
.ycf{bottom:10.560000pt;}
.y97{bottom:10.880000pt;}
.y19d{bottom:12.181867pt;}
.y11b{bottom:15.806770pt;}
.y12a{bottom:16.000000pt;}
.yca{bottom:16.771492pt;}
.yb9{bottom:17.168800pt;}
.y2e{bottom:17.440027pt;}
.y12f{bottom:18.432000pt;}
.yb6{bottom:19.766400pt;}
.y138{bottom:19.766533pt;}
.y10b{bottom:19.840000pt;}
.y148{bottom:20.686400pt;}
.y68{bottom:20.800000pt;}
.y61{bottom:21.120000pt;}
.ybf{bottom:21.711892pt;}
.y11d{bottom:23.680000pt;}
.y1de{bottom:23.771101pt;}
.y11f{bottom:24.000000pt;}
.y132{bottom:24.576000pt;}
.y121{bottom:24.960000pt;}
.y9b{bottom:25.600000pt;}
.y110{bottom:25.920000pt;}
.y19c{bottom:28.503867pt;}
.y140{bottom:28.962549pt;}
.ya6{bottom:29.002618pt;}
.y1dc{bottom:31.176676pt;}
.y128{bottom:32.000000pt;}
.y1e2{bottom:36.160000pt;}
.y2d{bottom:36.640027pt;}
.yb8{bottom:36.772933pt;}
.y19a{bottom:37.383867pt;}
.y1d5{bottom:39.520013pt;}
.y131{bottom:39.648000pt;}
.y60{bottom:40.320000pt;}
.y93{bottom:40.640000pt;}
.y134{bottom:41.184000pt;}
.yb5{bottom:41.562267pt;}
.y137{bottom:41.562400pt;}
.yc0{bottom:41.708425pt;}
.y19f{bottom:43.200000pt;}
.ybb{bottom:44.160000pt;}
.y130{bottom:44.256000pt;}
.y13b{bottom:44.291925pt;}
.ya1{bottom:44.353305pt;}
.y1d7{bottom:46.003342pt;}
.y118{bottom:46.372266pt;}
.y169{bottom:46.400000pt;}
.y142{bottom:46.435573pt;}
.ya8{bottom:46.499931pt;}
.y10e{bottom:46.720000pt;}
.y1e1{bottom:52.160000pt;}
.y1{bottom:54.666667pt;}
.y195{bottom:55.162533pt;}
.y2c{bottom:56.160027pt;}
.y1d4{bottom:59.040013pt;}
.y5f{bottom:59.840000pt;}
.y92{bottom:60.160000pt;}
.yc1{bottom:61.705092pt;}
.y104{bottom:63.200027pt;}
.y133{bottom:64.368000pt;}
.y2f{bottom:65.706693pt;}
.y193{bottom:66.400027pt;}
.y113{bottom:70.916237pt;}
.y11a{bottom:74.348429pt;}
.y2b{bottom:75.680027pt;}
.y1d3{bottom:78.560013pt;}
.y63{bottom:79.360000pt;}
.y91{bottom:80.000000pt;}
.yc2{bottom:81.701625pt;}
.y103{bottom:82.720000pt;}
.y1d8{bottom:83.539476pt;}
.y13c{bottom:84.117392pt;}
.ya2{bottom:84.233971pt;}
.y8f{bottom:84.960000pt;}
.y192{bottom:85.920000pt;}
.y2a{bottom:95.200000pt;}
.y1d2{bottom:98.080000pt;}
.y5d{bottom:98.880000pt;}
.y6a{bottom:99.200000pt;}
.y196{bottom:100.171867pt;}
.yc3{bottom:101.698159pt;}
.y102{bottom:102.560000pt;}
.y8e{bottom:104.480000pt;}
.y191{bottom:105.440000pt;}
.y1dd{bottom:114.255585pt;}
.y1ea{bottom:114.400000pt;}
.y29{bottom:114.720000pt;}
.y1d1{bottom:117.600000pt;}
.y1d9{bottom:121.075609pt;}
.yc4{bottom:121.694692pt;}
.y101{bottom:122.080000pt;}
.y145{bottom:123.942859pt;}
.y13d{bottom:123.942992pt;}
.y8d{bottom:124.000000pt;}
.ya3{bottom:124.114638pt;}
.y190{bottom:124.960000pt;}
.yd4{bottom:128.160000pt;}
.ybe{bottom:132.586707pt;}
.y1e9{bottom:133.920000pt;}
.y28{bottom:134.240000pt;}
.y114{bottom:134.681170pt;}
.y19b{bottom:137.003307pt;}
.y1d0{bottom:137.120000pt;}
.yd6{bottom:138.373467pt;}
.yd9{bottom:138.693467pt;}
.yd7{bottom:139.013467pt;}
.yd3{bottom:141.280000pt;}
.y100{bottom:141.600000pt;}
.yc5{bottom:141.691359pt;}
.y167{bottom:143.200000pt;}
.y8c{bottom:143.520000pt;}
.y18f{bottom:145.120000pt;}
.y197{bottom:145.181200pt;}
.ya0{bottom:145.413467pt;}
.y5b{bottom:150.240000pt;}
.yb3{bottom:153.440000pt;}
.y27{bottom:153.760000pt;}
.yd2{bottom:155.040000pt;}
.y1cf{bottom:156.960000pt;}
.y1da{bottom:158.611742pt;}
.yff{bottom:161.120000pt;}
.yc6{bottom:161.687892pt;}
.yd0{bottom:162.026667pt;}
.y8b{bottom:163.040000pt;}
.y13e{bottom:163.768459pt;}
.ya4{bottom:163.995305pt;}
.y18e{bottom:165.280000pt;}
.y5a{bottom:169.760000pt;}
.yd1{bottom:171.040000pt;}
.yb2{bottom:172.960000pt;}
.y26{bottom:173.600000pt;}
.y1ce{bottom:176.480000pt;}
.yfe{bottom:180.640000pt;}
.yc7{bottom:181.684425pt;}
.y8a{bottom:182.560000pt;}
.y166{bottom:183.200000pt;}
.y18d{bottom:184.800000pt;}
.y59{bottom:189.280000pt;}
.y198{bottom:190.190667pt;}
.yb1{bottom:192.480000pt;}
.y25{bottom:193.120000pt;}
.y1cd{bottom:196.000000pt;}
.y1db{bottom:196.147876pt;}
.y115{bottom:198.446237pt;}
.yfd{bottom:200.160000pt;}
.yc8{bottom:201.680959pt;}
.y89{bottom:202.080000pt;}
.y165{bottom:203.360000pt;}
.y13f{bottom:203.593925pt;}
.yd8{bottom:203.875838pt;}
.ya5{bottom:203.875971pt;}
.y18c{bottom:204.960000pt;}
.y58{bottom:208.800000pt;}
.yb0{bottom:212.000000pt;}
.y24{bottom:212.640000pt;}
.y141{bottom:215.278773pt;}
.y1cc{bottom:215.520000pt;}
.ya7{bottom:215.576997pt;}
.yfc{bottom:219.680000pt;}
.y88{bottom:221.600000pt;}
.yc9{bottom:221.677625pt;}
.y164{bottom:223.520000pt;}
.y18b{bottom:225.120000pt;}
.y57{bottom:228.320000pt;}
.yaf{bottom:231.520000pt;}
.y23{bottom:232.160000pt;}
.y1cb{bottom:235.040000pt;}
.y199{bottom:235.200000pt;}
.yfb{bottom:239.200000pt;}
.y163{bottom:243.040000pt;}
.y18a{bottom:244.640000pt;}
.y56{bottom:247.840000pt;}
.y10f{bottom:249.760000pt;}
.yae{bottom:251.040000pt;}
.y22{bottom:251.680000pt;}
.y1ca{bottom:254.560000pt;}
.yfa{bottom:258.720000pt;}
.y116{bottom:262.211037pt;}
.y162{bottom:262.560000pt;}
.y189{bottom:264.160000pt;}
.ycd{bottom:266.400000pt;}
.y55{bottom:267.360000pt;}
.yad{bottom:270.560000pt;}
.y21{bottom:271.200000pt;}
.y1c9{bottom:274.080000pt;}
.yf9{bottom:278.240000pt;}
.y10d{bottom:278.506667pt;}
.y161{bottom:282.080000pt;}
.y188{bottom:283.680000pt;}
.ycc{bottom:285.920000pt;}
.y54{bottom:286.880000pt;}
.yac{bottom:290.080000pt;}
.y20{bottom:290.720000pt;}
.y87{bottom:291.626667pt;}
.y1c8{bottom:293.600000pt;}
.yce{bottom:293.866667pt;}
.yf8{bottom:297.760000pt;}
.y160{bottom:301.600000pt;}
.y187{bottom:303.200000pt;}
.y53{bottom:306.400000pt;}
.yab{bottom:309.600000pt;}
.y1f{bottom:310.240000pt;}
.y86{bottom:313.066667pt;}
.y1c7{bottom:313.120000pt;}
.yf7{bottom:317.280000pt;}
.y15f{bottom:321.120000pt;}
.y186{bottom:322.720000pt;}
.y52{bottom:325.920000pt;}
.y117{bottom:325.975970pt;}
.yaa{bottom:329.120000pt;}
.y1e{bottom:329.760000pt;}
.y1c6{bottom:332.640000pt;}
.y85{bottom:334.826667pt;}
.yf6{bottom:336.800000pt;}
.y15e{bottom:340.960000pt;}
.y185{bottom:342.240000pt;}
.y119{bottom:344.684696pt;}
.y51{bottom:345.440000pt;}
.y81{bottom:348.640000pt;}
.y1d{bottom:349.280000pt;}
.y1c5{bottom:352.160000pt;}
.y84{bottom:356.266667pt;}
.yf5{bottom:356.320000pt;}
.y15d{bottom:360.480000pt;}
.y184{bottom:361.760000pt;}
.y6c{bottom:364.640000pt;}
.y50{bottom:364.960000pt;}
.y80{bottom:368.160000pt;}
.y1c{bottom:368.800000pt;}
.y1c4{bottom:372.640000pt;}
.yf4{bottom:375.840000pt;}
.y82{bottom:377.706667pt;}
.y15c{bottom:380.000000pt;}
.y183{bottom:381.920000pt;}
.y4f{bottom:384.480000pt;}
.y7f{bottom:388.000000pt;}
.y1b{bottom:388.320000pt;}
.y109{bottom:390.826667pt;}
.y1c3{bottom:394.400000pt;}
.yf3{bottom:395.360000pt;}
.y65{bottom:398.186667pt;}
.y15b{bottom:399.520000pt;}
.y182{bottom:402.720000pt;}
.y67{bottom:403.360000pt;}
.y4e{bottom:404.000000pt;}
.y7e{bottom:407.520000pt;}
.y1a{bottom:407.840000pt;}
.y105{bottom:408.746667pt;}
.y1c2{bottom:413.920000pt;}
.yf2{bottom:414.880000pt;}
.y15a{bottom:420.000000pt;}
.y66{bottom:422.880000pt;}
.y6b{bottom:423.200000pt;}
.y4d{bottom:423.520000pt;}
.y107{bottom:426.986667pt;}
.y7d{bottom:427.040000pt;}
.y19{bottom:427.360000pt;}
.y1c1{bottom:433.440000pt;}
.yf1{bottom:434.400000pt;}
.y159{bottom:441.760000pt;}
.y181{bottom:442.400000pt;}
.y4c{bottom:443.040000pt;}
.y9f{bottom:446.506667pt;}
.y7c{bottom:446.560000pt;}
.y18{bottom:446.880000pt;}
.y10c{bottom:447.146667pt;}
.y194{bottom:452.106667pt;}
.y1c0{bottom:452.960000pt;}
.yf0{bottom:453.920000pt;}
.y10a{bottom:458.986667pt;}
.y158{bottom:461.280000pt;}
.y180{bottom:461.920000pt;}
.y4b{bottom:462.560000pt;}
.y1e3{bottom:464.480000pt;}
.y7b{bottom:466.080000pt;}
.y17{bottom:466.400000pt;}
.y9d{bottom:470.506667pt;}
.y1bf{bottom:472.480000pt;}
.yef{bottom:473.440000pt;}
.ybd{bottom:476.320000pt;}
.y157{bottom:480.800000pt;}
.y17f{bottom:481.440000pt;}
.y4a{bottom:482.400000pt;}
.y7a{bottom:485.600000pt;}
.y16{bottom:485.920000pt;}
.ybc{bottom:492.000000pt;}
.yee{bottom:492.960000pt;}
.y9e{bottom:494.506667pt;}
.y1e0{bottom:499.306667pt;}
.y156{bottom:500.320000pt;}
.y17e{bottom:500.960000pt;}
.y49{bottom:501.920000pt;}
.y136{bottom:503.146667pt;}
.y79{bottom:505.120000pt;}
.y15{bottom:505.440000pt;}
.y144{bottom:512.132533pt;}
.y139{bottom:512.133467pt;}
.y1be{bottom:512.160000pt;}
.yed{bottom:512.480000pt;}
.y1a6{bottom:514.026667pt;}
.y13a{bottom:514.052533pt;}
.y1a5{bottom:515.946667pt;}
.yba{bottom:518.826667pt;}
.y155{bottom:519.840000pt;}
.y17d{bottom:520.480000pt;}
.y48{bottom:521.440000pt;}
.y78{bottom:524.640000pt;}
.y14{bottom:524.960000pt;}
.yec{bottom:532.000000pt;}
.y1bd{bottom:532.320000pt;}
.y1a4{bottom:536.426667pt;}
.y154{bottom:539.360000pt;}
.y17c{bottom:540.000000pt;}
.y47{bottom:540.960000pt;}
.y77{bottom:544.160000pt;}
.y13{bottom:544.480000pt;}
.y62{bottom:545.120000pt;}
.yeb{bottom:551.520000pt;}
.y1a3{bottom:557.226667pt;}
.y153{bottom:558.880000pt;}
.y17b{bottom:559.520000pt;}
.y46{bottom:560.480000pt;}
.y76{bottom:563.680000pt;}
.y12{bottom:564.000000pt;}
.yea{bottom:571.040000pt;}
.y1a2{bottom:578.026667pt;}
.y152{bottom:578.400000pt;}
.y5c{bottom:578.666667pt;}
.y17a{bottom:579.040000pt;}
.y45{bottom:580.000000pt;}
.y75{bottom:583.200000pt;}
.y64{bottom:583.840000pt;}
.y11{bottom:585.760000pt;}
.y1ba{bottom:586.400000pt;}
.y1a0{bottom:588.320000pt;}
.ye9{bottom:590.560000pt;}
.y151{bottom:597.920000pt;}
.y1a1{bottom:598.506667pt;}
.y179{bottom:598.560000pt;}
.y44{bottom:599.520000pt;}
.y74{bottom:602.720000pt;}
.y1bc{bottom:602.986667pt;}
.y5e{bottom:603.360000pt;}
.y12e{bottom:604.906667pt;}
.y112{bottom:605.332667pt;}
.y1b9{bottom:605.920000pt;}
.ye8{bottom:610.080000pt;}
.y10{bottom:614.880000pt;}
.y150{bottom:617.440000pt;}
.y178{bottom:618.080000pt;}
.y43{bottom:619.040000pt;}
.y19e{bottom:619.306667pt;}
.y1bb{bottom:619.946667pt;}
.y73{bottom:622.240000pt;}
.y1b8{bottom:626.080000pt;}
.y16c{bottom:628.960000pt;}
.ye7{bottom:629.600000pt;}
.y16a{bottom:630.560000pt;}
.yf{bottom:636.000000pt;}
.y14f{bottom:636.960000pt;}
.y177{bottom:637.600000pt;}
.y42{bottom:638.560000pt;}
.y72{bottom:641.760000pt;}
.ye6{bottom:649.440000pt;}
.y14e{bottom:656.480000pt;}
.y176{bottom:657.440000pt;}
.y16b{bottom:657.706667pt;}
.y41{bottom:658.080000pt;}
.y168{bottom:659.626667pt;}
.y71{bottom:661.280000pt;}
.ye{bottom:667.040000pt;}
.ye5{bottom:668.960000pt;}
.y9a{bottom:675.946667pt;}
.y14d{bottom:676.000000pt;}
.y175{bottom:676.960000pt;}
.y40{bottom:677.600000pt;}
.y70{bottom:680.800000pt;}
.y129{bottom:681.440000pt;}
.y12d{bottom:688.160000pt;}
.ye4{bottom:688.480000pt;}
.y14c{bottom:695.520000pt;}
.y174{bottom:696.480000pt;}
.y1b7{bottom:696.746667pt;}
.y3f{bottom:697.120000pt;}
.y126{bottom:697.440000pt;}
.yd{bottom:698.400000pt;}
.y6f{bottom:700.320000pt;}
.y12c{bottom:704.480000pt;}
.ye3{bottom:708.000000pt;}
.y1d6{bottom:710.213867pt;}
.y1b6{bottom:713.706667pt;}
.y125{bottom:713.760000pt;}
.y14b{bottom:715.040000pt;}
.y173{bottom:716.000000pt;}
.y3e{bottom:716.640000pt;}
.y6e{bottom:719.840000pt;}
.y127{bottom:720.106667pt;}
.y12b{bottom:720.800000pt;}
.ye2{bottom:727.520000pt;}
.y1b5{bottom:730.026667pt;}
.yc{bottom:731.040000pt;}
.y3d{bottom:737.120000pt;}
.y6d{bottom:739.360000pt;}
.y1e8{bottom:740.320000pt;}
.y1b4{bottom:746.346667pt;}
.y14a{bottom:746.720000pt;}
.ye1{bottom:747.040000pt;}
.y99{bottom:758.506667pt;}
.y3c{bottom:758.880000pt;}
.y1e7{bottom:762.080000pt;}
.y1b3{bottom:762.666667pt;}
.ye0{bottom:766.560000pt;}
.yb{bottom:768.480000pt;}
.y3b{bottom:778.400000pt;}
.y1b2{bottom:778.666667pt;}
.y1e6{bottom:781.600000pt;}
.y96{bottom:782.506667pt;}
.y147{bottom:785.386667pt;}
.y172{bottom:786.026667pt;}
.y146{bottom:788.000000pt;}
.y1b1{bottom:794.986667pt;}
.y3a{bottom:797.920000pt;}
.y1e5{bottom:801.120000pt;}
.ya{bottom:805.920000pt;}
.y171{bottom:806.186667pt;}
.y98{bottom:806.506667pt;}
.y1b0{bottom:811.306667pt;}
.y39{bottom:817.440000pt;}
.y94{bottom:820.320000pt;}
.y1e4{bottom:820.640000pt;}
.y11e{bottom:822.826667pt;}
.y11c{bottom:823.786667pt;}
.y170{bottom:826.346667pt;}
.y1af{bottom:827.626667pt;}
.ydf{bottom:836.586667pt;}
.y38{bottom:836.960000pt;}
.y9{bottom:840.480000pt;}
.y1ae{bottom:843.946667pt;}
.y16f{bottom:846.506667pt;}
.y90{bottom:853.866667pt;}
.y37{bottom:856.480000pt;}
.yde{bottom:858.026667pt;}
.y8{bottom:860.000000pt;}
.y1ad{bottom:860.266667pt;}
.y123{bottom:862.506667pt;}
.yb4{bottom:862.826667pt;}
.y120{bottom:865.066667pt;}
.y16e{bottom:866.666667pt;}
.y36{bottom:876.000000pt;}
.y1ab{bottom:876.586667pt;}
.ydd{bottom:879.466667pt;}
.y7{bottom:879.520000pt;}
.y16d{bottom:886.826667pt;}
.y1aa{bottom:892.586667pt;}
.y35{bottom:895.520000pt;}
.y6{bottom:899.040000pt;}
.ydc{bottom:901.226667pt;}
.y1a8{bottom:909.546667pt;}
.y34{bottom:915.040000pt;}
.y5{bottom:918.560000pt;}
.ydb{bottom:922.666667pt;}
.y33{bottom:934.880000pt;}
.y4{bottom:938.080000pt;}
.yda{bottom:944.106667pt;}
.y32{bottom:954.400000pt;}
.y3{bottom:957.600000pt;}
.y31{bottom:974.880000pt;}
.y2{bottom:977.120000pt;}
.h21{height:10.886625pt;}
.h22{height:15.241275pt;}
.h57{height:16.000000pt;}
.h58{height:16.319907pt;}
.h59{height:16.319947pt;}
.h56{height:16.319987pt;}
.h27{height:17.279987pt;}
.h26{height:17.600013pt;}
.h5c{height:17.754224pt;}
.h5d{height:17.786853pt;}
.hd{height:19.519933pt;}
.hf{height:19.520000pt;}
.he{height:19.520013pt;}
.h54{height:19.840000pt;}
.h53{height:20.160000pt;}
.h4f{height:21.315314pt;}
.h50{height:21.328125pt;}
.h6{height:21.760000pt;}
.h1c{height:24.567935pt;}
.h1b{height:25.412678pt;}
.h11{height:26.239987pt;}
.h5e{height:28.458965pt;}
.h42{height:28.984035pt;}
.h15{height:29.024177pt;}
.h3b{height:30.053250pt;}
.h3c{height:31.718250pt;}
.h5b{height:32.016335pt;}
.h43{height:32.607039pt;}
.h16{height:32.652199pt;}
.h51{height:34.125000pt;}
.h25{height:34.835625pt;}
.h2a{height:34.978125pt;}
.h44{height:35.501802pt;}
.h17{height:35.550970pt;}
.h35{height:38.104375pt;}
.h4e{height:38.390625pt;}
.h4a{height:39.040040pt;}
.h33{height:40.319987pt;}
.h34{height:40.959960pt;}
.h12{height:41.280027pt;}
.h1a{height:42.495887pt;}
.hb{height:42.656250pt;}
.h1f{height:43.280625pt;}
.h2d{height:46.406570pt;}
.ha{height:46.468750pt;}
.h13{height:47.000000pt;}
.h3f{height:49.536000pt;}
.h39{height:50.256000pt;}
.h38{height:51.984000pt;}
.h2e{height:52.207392pt;}
.h2{height:52.781250pt;}
.h7{height:53.081600pt;}
.h45{height:53.440027pt;}
.h8{height:53.903750pt;}
.h2f{height:56.842219pt;}
.h52{height:58.560013pt;}
.h5{height:58.688000pt;}
.h4b{height:60.109375pt;}
.h48{height:62.080040pt;}
.h2b{height:62.400000pt;}
.h49{height:62.400027pt;}
.h4c{height:64.275625pt;}
.h1e{height:64.640013pt;}
.h18{height:66.239987pt;}
.h3e{height:68.688000pt;}
.h23{height:69.120013pt;}
.h1d{height:69.588537pt;}
.h36{height:72.639973pt;}
.h3a{height:73.296000pt;}
.h37{height:76.800000pt;}
.h40{height:79.999354pt;}
.h19{height:79.999887pt;}
.h3d{height:82.296000pt;}
.h28{height:90.239987pt;}
.h10{height:95.360027pt;}
.h24{height:97.280000pt;}
.h4{height:97.422080pt;}
.h30{height:107.200027pt;}
.h32{height:107.520013pt;}
.h46{height:108.118783pt;}
.h9{height:114.239987pt;}
.hc{height:114.559973pt;}
.h3{height:117.376000pt;}
.h47{height:124.280383pt;}
.h55{height:164.480000pt;}
.h29{height:186.375000pt;}
.h5a{height:211.492800pt;}
.h20{height:228.479960pt;}
.h41{height:230.374133pt;}
.h14{height:230.693200pt;}
.h4d{height:253.600000pt;}
.h31{height:290.296875pt;}
.h2c{height:368.854000pt;}
.h1{height:1044.000000pt;}
.h0{height:1122.666667pt;}
.w2{width:7.360027pt;}
.w6{width:9.280029pt;}
.w1a{width:9.920003pt;}
.w40{width:10.239991pt;}
.w71{width:10.879964pt;}
.w47{width:11.200032pt;}
.w86{width:27.199987pt;}
.w23{width:27.520000pt;}
.w2a{width:28.160000pt;}
.w7d{width:28.480000pt;}
.w84{width:29.119973pt;}
.w82{width:29.120000pt;}
.w81{width:30.080000pt;}
.w7c{width:30.400000pt;}
.w7f{width:30.719987pt;}
.w85{width:31.040000pt;}
.w5f{width:33.279987pt;}
.w83{width:33.600000pt;}
.w68{width:33.600013pt;}
.w80{width:34.240013pt;}
.w7e{width:35.199987pt;}
.w73{width:35.840000pt;}
.w72{width:36.160000pt;}
.w49{width:36.479987pt;}
.w25{width:37.120000pt;}
.w2c{width:37.759973pt;}
.w3e{width:44.479987pt;}
.w3c{width:44.480000pt;}
.w3d{width:44.480027pt;}
.w5c{width:45.439987pt;}
.w66{width:45.759987pt;}
.w60{width:45.760013pt;}
.w69{width:46.080000pt;}
.w26{width:46.400000pt;}
.w79{width:47.039987pt;}
.w2d{width:47.040000pt;}
.w4d{width:50.880000pt;}
.w52{width:51.519933pt;}
.w78{width:52.799973pt;}
.w75{width:52.799987pt;}
.w76{width:52.800013pt;}
.w7b{width:53.119960pt;}
.w74{width:53.119973pt;}
.w77{width:53.120000pt;}
.w7a{width:53.439960pt;}
.w61{width:53.439987pt;}
.w62{width:53.760013pt;}
.w4b{width:54.080000pt;}
.w50{width:54.719973pt;}
.w28{width:55.999960pt;}
.w27{width:56.000000pt;}
.w24{width:56.319973pt;}
.w2e{width:56.640000pt;}
.w53{width:56.640013pt;}
.w2b{width:56.959987pt;}
.w2f{width:56.960000pt;}
.w22{width:57.600000pt;}
.w5d{width:57.920000pt;}
.w19{width:58.239987pt;}
.w29{width:58.240000pt;}
.w17{width:58.240013pt;}
.w34{width:63.040000pt;}
.w4c{width:63.360000pt;}
.w51{width:63.999973pt;}
.w8{width:64.640000pt;}
.wc{width:64.640013pt;}
.wf{width:65.279987pt;}
.w6d{width:65.600000pt;}
.w6f{width:65.920000pt;}
.w39{width:68.799987pt;}
.w38{width:68.800000pt;}
.w3b{width:68.800013pt;}
.w3a{width:69.120013pt;}
.w43{width:70.719973pt;}
.w41{width:70.719987pt;}
.w42{width:70.720013pt;}
.w32{width:72.000000pt;}
.w37{width:72.000040pt;}
.wd{width:73.920000pt;}
.wa{width:74.239987pt;}
.w48{width:74.240000pt;}
.w13{width:74.559933pt;}
.w31{width:74.559987pt;}
.w36{width:74.560013pt;}
.w64{width:74.879960pt;}
.w11{width:74.879987pt;}
.w4e{width:74.880000pt;}
.w63{width:75.199987pt;}
.w54{width:75.519933pt;}
.w55{width:75.519973pt;}
.w6a{width:75.520013pt;}
.w5e{width:77.759987pt;}
.w67{width:78.079973pt;}
.wb{width:78.080000pt;}
.w35{width:78.399987pt;}
.w12{width:78.719973pt;}
.w30{width:80.640000pt;}
.w18{width:83.839987pt;}
.w16{width:83.840000pt;}
.w15{width:84.160000pt;}
.w33{width:84.160013pt;}
.w7{width:84.800000pt;}
.we{width:85.440000pt;}
.w59{width:91.839987pt;}
.w5a{width:91.840000pt;}
.w57{width:92.159987pt;}
.w58{width:92.160000pt;}
.w1c{width:96.000000pt;}
.w4a{width:96.639973pt;}
.w4f{width:97.279973pt;}
.w9{width:105.919987pt;}
.w1f{width:106.240013pt;}
.w10{width:106.560000pt;}
.w5b{width:108.480000pt;}
.w65{width:109.119973pt;}
.w1d{width:122.239987pt;}
.w6c{width:123.200000pt;}
.w6e{width:123.840000pt;}
.w45{width:132.160000pt;}
.w46{width:168.000000pt;}
.w88{width:170.560000pt;}
.w44{width:176.320000pt;}
.w20{width:193.920000pt;}
.w56{width:210.880000pt;}
.w70{width:216.000000pt;}
.w87{width:221.093867pt;}
.w21{width:221.094000pt;}
.w1b{width:221.413067pt;}
.w1e{width:222.719867pt;}
.w14{width:253.120000pt;}
.w5{width:256.000000pt;}
.w4{width:256.320000pt;}
.w6b{width:265.440533pt;}
.w3f{width:352.693333pt;}
.w3{width:745.333200pt;}
.w1{width:745.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1d{left:0.960000pt;}
.x3b{left:1.867360pt;}
.x45{left:2.799067pt;}
.x44{left:4.825600pt;}
.xa6{left:6.153200pt;}
.x3a{left:7.275533pt;}
.xf{left:9.600000pt;}
.xa5{left:10.577640pt;}
.x12{left:11.840000pt;}
.x46{left:13.003733pt;}
.x96{left:14.080000pt;}
.x4a{left:15.040000pt;}
.x5c{left:16.116000pt;}
.x55{left:17.623733pt;}
.x5b{left:18.526667pt;}
.x18{left:19.840000pt;}
.x59{left:21.481867pt;}
.x57{left:22.425467pt;}
.x1{left:24.000000pt;}
.x29{left:25.435867pt;}
.x25{left:26.725600pt;}
.x5a{left:27.993200pt;}
.x28{left:29.170533pt;}
.x27{left:30.161867pt;}
.x21{left:31.677067pt;}
.x23{left:33.357067pt;}
.x67{left:34.880000pt;}
.x79{left:36.229767pt;}
.x2a{left:37.280000pt;}
.x1f{left:40.230800pt;}
.x3d{left:44.065920pt;}
.x6f{left:49.280000pt;}
.xd{left:50.240000pt;}
.x2{left:51.520000pt;}
.x41{left:54.960000pt;}
.x4f{left:56.640000pt;}
.x33{left:58.240000pt;}
.x51{left:59.520000pt;}
.x78{left:63.047332pt;}
.x71{left:64.960000pt;}
.x14{left:66.239960pt;}
.x85{left:67.588358pt;}
.x40{left:70.280000pt;}
.x88{left:72.000013pt;}
.x65{left:73.280000pt;}
.x1c{left:75.840120pt;}
.xc{left:79.680040pt;}
.x15{left:83.520040pt;}
.x7d{left:86.720013pt;}
.x5d{left:87.680000pt;}
.x47{left:89.201733pt;}
.x6c{left:90.560000pt;}
.x87{left:92.800000pt;}
.x31{left:94.720120pt;}
.x3e{left:99.520000pt;}
.x2b{left:105.280120pt;}
.x7b{left:107.081112pt;}
.x7a{left:107.979761pt;}
.x9a{left:111.040000pt;}
.x72{left:121.600000pt;}
.x73{left:123.200000pt;}
.x94{left:124.102133pt;}
.x5{left:126.332800pt;}
.x32{left:134.400133pt;}
.x62{left:135.680000pt;}
.x9b{left:140.160000pt;}
.x6{left:141.372800pt;}
.xe{left:143.360000pt;}
.x7e{left:150.720000pt;}
.x16{left:152.960000pt;}
.x5e{left:159.680000pt;}
.x1e{left:161.280133pt;}
.x52{left:162.240000pt;}
.x10{left:170.880000pt;}
.x9c{left:176.000000pt;}
.x6e{left:184.000000pt;}
.x7f{left:187.840000pt;}
.x5f{left:195.520000pt;}
.x7{left:198.239067pt;}
.x2c{left:202.240013pt;}
.x34{left:206.400133pt;}
.x9d{left:207.680000pt;}
.x3c{left:210.084508pt;}
.x95{left:212.800000pt;}
.x53{left:219.200000pt;}
.x4{left:227.084133pt;}
.x8c{left:234.240000pt;}
.x9e{left:242.560000pt;}
.x93{left:243.644605pt;}
.x35{left:250.560133pt;}
.x97{left:252.480000pt;}
.x54{left:256.960000pt;}
.x86{left:262.399867pt;}
.x9f{left:273.280000pt;}
.x8{left:274.688933pt;}
.x4e{left:277.760000pt;}
.x91{left:279.519867pt;}
.x80{left:285.120000pt;}
.x50{left:290.560000pt;}
.x4b{left:292.160000pt;}
.x4c{left:293.440000pt;}
.xa0{left:303.040000pt;}
.x56{left:304.000000pt;}
.x49{left:304.960000pt;}
.x48{left:310.080000pt;}
.x89{left:313.280000pt;}
.x66{left:319.040000pt;}
.x4d{left:321.920000pt;}
.x1b{left:324.786920pt;}
.xb{left:327.773707pt;}
.x20{left:333.120133pt;}
.x6b{left:335.711345pt;}
.xa1{left:337.280000pt;}
.x63{left:339.520000pt;}
.x98{left:359.040000pt;}
.x58{left:360.640000pt;}
.xa2{left:367.040000pt;}
.x8d{left:370.560000pt;}
.x3{left:372.586667pt;}
.x60{left:375.360000pt;}
.xa8{left:377.920000pt;}
.x17{left:391.360000pt;}
.xa7{left:392.320000pt;}
.x11{left:393.280000pt;}
.xa3{left:398.720000pt;}
.x19{left:402.880000pt;}
.x81{left:403.840000pt;}
.x22{left:408.000133pt;}
.x13{left:411.200000pt;}
.x99{left:412.160000pt;}
.x6a{left:416.640000pt;}
.x36{left:418.560133pt;}
.x92{left:423.680000pt;}
.xa4{left:433.280000pt;}
.x8e{left:450.240000pt;}
.x82{left:455.360000pt;}
.x70{left:465.280000pt;}
.x37{left:466.560133pt;}
.x77{left:469.760000pt;}
.x2d{left:483.520133pt;}
.x24{left:486.720133pt;}
.x42{left:500.480000pt;}
.x8f{left:504.000000pt;}
.x83{left:512.000000pt;}
.x43{left:519.680000pt;}
.x8b{left:525.760000pt;}
.x38{left:526.720133pt;}
.x2e{left:531.520133pt;}
.x8a{left:540.160000pt;}
.x69{left:544.640000pt;}
.x61{left:549.120000pt;}
.x1a{left:551.040000pt;}
.x26{left:552.000133pt;}
.x90{left:558.080000pt;}
.x68{left:559.040000pt;}
.x64{left:567.680000pt;}
.x39{left:574.720133pt;}
.x84{left:587.520000pt;}
.x2f{left:591.680133pt;}
.x76{left:593.600000pt;}
.x74{left:603.520000pt;}
.x75{left:611.520000pt;}
.x7c{left:612.800000pt;}
.x3f{left:627.520000pt;}
.x6d{left:633.280000pt;}
.x30{left:639.680133pt;}
.x9{left:693.653467pt;}
.xa{left:699.520000pt;}
}




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