
    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_dfe32025fede6a66753b5556.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_6a8c86c6ce47e0b98ad2235a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_99b713599de1970a7dedcfeb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_62bf1eb0e2c0c86e5750ac90.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_23a4a0f1693e496c057dfd1d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.482000;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_ead0a1af1840b37ef28b8a95.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.703000;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_49f7a7f283ca34579f446bb6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5f16da778bc4fee96ffd01be.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_eeea77b6aa5f50b86aa9f1eb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.061000;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_549be3f82702ded7c3c83afb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.580000;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_9e158eccd3c4e7adf15550f4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_3568b02a8f525f5eb96e7abd.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ac483baaa8f90fb555f57a5c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.936523;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_6d116df8592cc8a45270c497.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.752000;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_4a0fadb955a7a735aeca7080.woff2')format("woff");}.fff{font-family:fff;line-height:0.947000;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_312d890e8c5683ccb61a1b5c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.729000;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_6b75457ade85c4a30a768de5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.947000;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_ad6904f55b45a4db62226116.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.947000;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_81c8fa48e0c548cb2c7b9aaa.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.752000;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_eb46f85244781ddc45696adb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.752000;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_43b0a5aa92157ac73da6a3ea.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.947000;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_43f755fbb27045a4129df281.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.688000;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_3d1c80e52ed7dbdcab24d3a1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.947000;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_43f755fbb27045a4129df281.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.688000;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;}
.m22{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m30{transform:matrix(0.054110,-0.244074,0.244074,0.054110,0,0);-ms-transform:matrix(0.054110,-0.244074,0.244074,0.054110,0,0);-webkit-transform:matrix(0.054110,-0.244074,0.244074,0.054110,0,0);}
.m38{transform:matrix(0.122307,-0.218039,0.218039,0.122307,0,0);-ms-transform:matrix(0.122307,-0.218039,0.218039,0.122307,0,0);-webkit-transform:matrix(0.122307,-0.218039,0.218039,0.122307,0,0);}
.m31{transform:matrix(0.122726,0.217803,-0.217803,0.122726,0,0);-ms-transform:matrix(0.122726,0.217803,-0.217803,0.122726,0,0);-webkit-transform:matrix(0.122726,0.217803,-0.217803,0.122726,0,0);}
.m36{transform:matrix(0.135354,-0.210189,0.210189,0.135354,0,0);-ms-transform:matrix(0.135354,-0.210189,0.210189,0.135354,0,0);-webkit-transform:matrix(0.135354,-0.210189,0.210189,0.135354,0,0);}
.m26{transform:matrix(0.148249,-0.201301,0.201301,0.148249,0,0);-ms-transform:matrix(0.148249,-0.201301,0.201301,0.148249,0,0);-webkit-transform:matrix(0.148249,-0.201301,0.201301,0.148249,0,0);}
.m2f{transform:matrix(0.148671,-0.200990,0.200990,0.148671,0,0);-ms-transform:matrix(0.148671,-0.200990,0.200990,0.148671,0,0);-webkit-transform:matrix(0.148671,-0.200990,0.200990,0.148671,0,0);}
.m29{transform:matrix(0.150175,0.199869,-0.199869,0.150175,0,0);-ms-transform:matrix(0.150175,0.199869,-0.199869,0.150175,0,0);-webkit-transform:matrix(0.150175,0.199869,-0.199869,0.150175,0,0);}
.m3a{transform:matrix(0.152086,-0.198418,0.198418,0.152086,0,0);-ms-transform:matrix(0.152086,-0.198418,0.198418,0.152086,0,0);-webkit-transform:matrix(0.152086,-0.198418,0.198418,0.152086,0,0);}
.m3b{transform:matrix(0.162461,0.190016,-0.190016,0.162461,0,0);-ms-transform:matrix(0.162461,0.190016,-0.190016,0.162461,0,0);-webkit-transform:matrix(0.162461,0.190016,-0.190016,0.162461,0,0);}
.m35{transform:matrix(0.175165,-0.178374,0.178374,0.175165,0,0);-ms-transform:matrix(0.175165,-0.178374,0.178374,0.175165,0,0);-webkit-transform:matrix(0.175165,-0.178374,0.178374,0.175165,0,0);}
.m23{transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);}
.m37{transform:matrix(0.179380,-0.174135,0.174135,0.179380,0,0);-ms-transform:matrix(0.179380,-0.174135,0.174135,0.179380,0,0);-webkit-transform:matrix(0.179380,-0.174135,0.174135,0.179380,0,0);}
.m2c{transform:matrix(0.186950,0.165982,-0.165982,0.186950,0,0);-ms-transform:matrix(0.186950,0.165982,-0.165982,0.186950,0,0);-webkit-transform:matrix(0.186950,0.165982,-0.165982,0.186950,0,0);}
.m2b{transform:matrix(0.198815,-0.151566,0.151566,0.198815,0,0);-ms-transform:matrix(0.198815,-0.151566,0.151566,0.198815,0,0);-webkit-transform:matrix(0.198815,-0.151566,0.151566,0.198815,0,0);}
.m2a{transform:matrix(0.205982,-0.141674,0.141674,0.205982,0,0);-ms-transform:matrix(0.205982,-0.141674,0.141674,0.205982,0,0);-webkit-transform:matrix(0.205982,-0.141674,0.141674,0.205982,0,0);}
.m34{transform:matrix(0.223264,-0.112486,0.112486,0.223264,0,0);-ms-transform:matrix(0.223264,-0.112486,0.112486,0.223264,0,0);-webkit-transform:matrix(0.223264,-0.112486,0.112486,0.223264,0,0);}
.m2e{transform:matrix(0.225307,0.108336,-0.108336,0.225307,0,0);-ms-transform:matrix(0.225307,0.108336,-0.108336,0.225307,0,0);-webkit-transform:matrix(0.225307,0.108336,-0.108336,0.225307,0,0);}
.m27{transform:matrix(0.234593,0.086406,-0.086406,0.234593,0,0);-ms-transform:matrix(0.234593,0.086406,-0.086406,0.234593,0,0);-webkit-transform:matrix(0.234593,0.086406,-0.086406,0.234593,0,0);}
.m33{transform:matrix(0.242939,-0.058998,0.058998,0.242939,0,0);-ms-transform:matrix(0.242939,-0.058998,0.058998,0.242939,0,0);-webkit-transform:matrix(0.242939,-0.058998,0.058998,0.242939,0,0);}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248343,-0.028734,0.028734,0.248343,0,0);-ms-transform:matrix(0.248343,-0.028734,0.028734,0.248343,0,0);-webkit-transform:matrix(0.248343,-0.028734,0.028734,0.248343,0,0);}
.m5{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249890,0.007417,-0.007417,0.249890,0,0);-ms-transform:matrix(0.249890,0.007417,-0.007417,0.249890,0,0);-webkit-transform:matrix(0.249890,0.007417,-0.007417,0.249890,0,0);}
.m39{transform:matrix(0.249969,0.003927,-0.003927,0.249969,0,0);-ms-transform:matrix(0.249969,0.003927,-0.003927,0.249969,0,0);-webkit-transform:matrix(0.249969,0.003927,-0.003927,0.249969,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);}
.m3e{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd{vertical-align:-28.474333px;}
.ve{vertical-align:-23.636847px;}
.v3{vertical-align:-21.696000px;}
.v2{vertical-align:-17.358000px;}
.v5{vertical-align:-11.148000px;}
.v7{vertical-align:-10.074000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:7.915994px;}
.v6{vertical-align:11.148000px;}
.vc{vertical-align:16.555763px;}
.v8{vertical-align:18.110263px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:24.684000px;}
.v9{vertical-align:32.936569px;}
.va{vertical-align:36.812330px;}
.ls5{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000148px;}
.ls2b{letter-spacing:0.000209px;}
.ls29{letter-spacing:0.000356px;}
.ls28{letter-spacing:0.000504px;}
.ls22{letter-spacing:0.001200px;}
.ls32{letter-spacing:0.002841px;}
.ls34{letter-spacing:0.004800px;}
.ls9{letter-spacing:0.298766px;}
.ls1f{letter-spacing:0.542815px;}
.lsd{letter-spacing:0.548815px;}
.ls1b{letter-spacing:0.642088px;}
.ls1a{letter-spacing:0.648088px;}
.ls13{letter-spacing:0.670741px;}
.ls24{letter-spacing:0.673133px;}
.lsc{letter-spacing:0.717483px;}
.lsf{letter-spacing:0.746725px;}
.ls16{letter-spacing:1.301075px;}
.ls17{letter-spacing:1.341725px;}
.ls12{letter-spacing:1.492766px;}
.ls25{letter-spacing:3.559200px;}
.ls1c{letter-spacing:4.477694px;}
.ls1d{letter-spacing:4.483694px;}
.ls0{letter-spacing:10.461300px;}
.ls36{letter-spacing:11.952441px;}
.ls4{letter-spacing:11.954850px;}
.ls14{letter-spacing:12.345483px;}
.ls33{letter-spacing:12.411624px;}
.ls31{letter-spacing:12.870808px;}
.ls35{letter-spacing:12.956522px;}
.ls11{letter-spacing:13.089483px;}
.ls26{letter-spacing:13.270183px;}
.ls2e{letter-spacing:13.448400px;}
.ls2f{letter-spacing:13.454400px;}
.ls30{letter-spacing:13.678189px;}
.ls6{letter-spacing:14.645022px;}
.ls7{letter-spacing:14.824349px;}
.ls20{letter-spacing:16.077483px;}
.ls2d{letter-spacing:16.617617px;}
.ls23{letter-spacing:17.935771px;}
.lsb{letter-spacing:18.069483px;}
.ls10{letter-spacing:18.075483px;}
.lsa{letter-spacing:18.100766px;}
.ls2c{letter-spacing:18.499200px;}
.ls2a{letter-spacing:18.937037px;}
.ls8{letter-spacing:19.333200px;}
.ls1e{letter-spacing:21.057483px;}
.ls21{letter-spacing:21.063483px;}
.ls1{letter-spacing:57.415200px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls18{letter-spacing:625.349075px;}
.ls15{letter-spacing:712.798741px;}
.ls19{letter-spacing:723.628800px;}
.lse{letter-spacing:849.349200px;}
.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;}
}
.ws4c{word-spacing:-14.943900px;}
.ws8d{word-spacing:-14.454118px;}
.wsc7{word-spacing:-13.449600px;}
.wsa8{word-spacing:-13.213940px;}
.ws25{word-spacing:-11.955150px;}
.wsd{word-spacing:-11.357400px;}
.ws2{word-spacing:-10.460700px;}
.ws8e{word-spacing:-10.123296px;}
.wsa3{word-spacing:-6.317708px;}
.ws80{word-spacing:-6.241674px;}
.ws99{word-spacing:-3.227882px;}
.ws98{word-spacing:-3.168107px;}
.ws42{word-spacing:-2.630126px;}
.ws54{word-spacing:-2.586772px;}
.ws35{word-spacing:-2.450800px;}
.wsb8{word-spacing:-2.391024px;}
.wsa6{word-spacing:-2.331248px;}
.wsa2{word-spacing:-2.211697px;}
.ws63{word-spacing:-2.092146px;}
.wsfd{word-spacing:-1.990541px;}
.ws44{word-spacing:-1.972595px;}
.wsfc{word-spacing:-1.936742px;}
.ws43{word-spacing:-1.912819px;}
.ws30{word-spacing:-1.853044px;}
.ws3d{word-spacing:-1.793268px;}
.ws62{word-spacing:-1.733492px;}
.wsd4{word-spacing:-1.721549px;}
.ws97{word-spacing:-1.673717px;}
.ws96{word-spacing:-1.613941px;}
.ws17{word-spacing:-1.560154px;}
.ws33{word-spacing:-1.554166px;}
.wsc8{word-spacing:-1.506355px;}
.wsa7{word-spacing:-1.494390px;}
.ws4f{word-spacing:-1.434614px;}
.wseb{word-spacing:-1.344960px;}
.ws4a{word-spacing:-1.315063px;}
.ws58{word-spacing:-1.255288px;}
.ws59{word-spacing:-1.195512px;}
.ws3{word-spacing:-1.171598px;}
.ws4e{word-spacing:-1.135736px;}
.ws50{word-spacing:-1.075961px;}
.ws5{word-spacing:-1.046070px;}
.ws4b{word-spacing:-1.016185px;}
.wsc9{word-spacing:-0.968371px;}
.ws32{word-spacing:-0.956410px;}
.ws21{word-spacing:-0.836858px;}
.wsea{word-spacing:-0.806976px;}
.ws22{word-spacing:-0.777083px;}
.wsf7{word-spacing:-0.699379px;}
.wsbb{word-spacing:-0.597756px;}
.wsbc{word-spacing:-0.537980px;}
.ws3e{word-spacing:-0.478205px;}
.wse0{word-spacing:-0.376589px;}
.ws3a{word-spacing:-0.358654px;}
.ws15{word-spacing:-0.322790px;}
.ws1b{word-spacing:-0.298878px;}
.wsa1{word-spacing:-0.268992px;}
.ws1f{word-spacing:-0.239102px;}
.ws13{word-spacing:-0.215194px;}
.ws34{word-spacing:-0.179327px;}
.wsd0{word-spacing:-0.161395px;}
.ws2d{word-spacing:-0.119551px;}
.ws12{word-spacing:-0.107597px;}
.ws2c{word-spacing:-0.059776px;}
.ws84{word-spacing:-0.056333px;}
.ws16{word-spacing:-0.053798px;}
.wsf1{word-spacing:-0.010186px;}
.wsd8{word-spacing:-0.009302px;}
.wsf5{word-spacing:-0.007488px;}
.ws6f{word-spacing:-0.005454px;}
.wse2{word-spacing:-0.004752px;}
.wsd9{word-spacing:-0.003427px;}
.wse4{word-spacing:-0.003302px;}
.ws24{word-spacing:-0.003082px;}
.wsd6{word-spacing:-0.001517px;}
.ws1{word-spacing:0.000000px;}
.ws70{word-spacing:0.000334px;}
.ws18{word-spacing:0.053798px;}
.ws23{word-spacing:0.059776px;}
.ws6d{word-spacing:0.106125px;}
.ws14{word-spacing:0.107597px;}
.ws2e{word-spacing:0.119551px;}
.wscb{word-spacing:0.161395px;}
.ws1d{word-spacing:0.179327px;}
.ws11{word-spacing:0.215194px;}
.ws1c{word-spacing:0.239102px;}
.wse5{word-spacing:0.268992px;}
.ws31{word-spacing:0.298878px;}
.wsca{word-spacing:0.322790px;}
.ws1e{word-spacing:0.358654px;}
.wsc3{word-spacing:0.418429px;}
.wsde{word-spacing:0.430387px;}
.ws7b{word-spacing:0.478205px;}
.ws29{word-spacing:0.597756px;}
.wsc0{word-spacing:0.657532px;}
.wse3{word-spacing:0.699379px;}
.ws7a{word-spacing:0.717307px;}
.ws6e{word-spacing:0.751408px;}
.wscc{word-spacing:0.753178px;}
.ws75{word-spacing:0.777083px;}
.ws56{word-spacing:0.896634px;}
.wse8{word-spacing:0.968371px;}
.ws4{word-spacing:1.004227px;}
.ws46{word-spacing:1.016185px;}
.ws4d{word-spacing:1.135736px;}
.ws5c{word-spacing:1.192723px;}
.ws39{word-spacing:1.195512px;}
.wsb7{word-spacing:1.255288px;}
.wsf4{word-spacing:1.291162px;}
.wsbd{word-spacing:1.315063px;}
.ws20{word-spacing:1.374839px;}
.ws89{word-spacing:1.434614px;}
.wsf8{word-spacing:1.452557px;}
.ws38{word-spacing:1.494390px;}
.ws6c{word-spacing:1.554166px;}
.wsdd{word-spacing:1.667750px;}
.ws51{word-spacing:1.673717px;}
.wsc2{word-spacing:1.733492px;}
.ws27{word-spacing:1.793268px;}
.wse7{word-spacing:1.829146px;}
.ws57{word-spacing:1.853044px;}
.ws48{word-spacing:1.912819px;}
.wscf{word-spacing:1.990541px;}
.wsed{word-spacing:2.205734px;}
.wsce{word-spacing:2.259533px;}
.ws55{word-spacing:2.391024px;}
.wsb4{word-spacing:2.450800px;}
.ws2b{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws3f{word-spacing:2.570351px;}
.ws10{word-spacing:2.582323px;}
.ws5b{word-spacing:2.629232px;}
.ws5a{word-spacing:2.630126px;}
.ws47{word-spacing:2.689902px;}
.ws26{word-spacing:2.749678px;}
.wsec{word-spacing:2.797517px;}
.wsac{word-spacing:2.809453px;}
.ws8c{word-spacing:2.869229px;}
.wse{word-spacing:2.869236px;}
.wsc1{word-spacing:2.929004px;}
.wse6{word-spacing:3.012710px;}
.ws79{word-spacing:3.048556px;}
.ws71{word-spacing:3.157408px;}
.wsb9{word-spacing:3.168107px;}
.wse1{word-spacing:3.221021px;}
.wsd2{word-spacing:3.222518px;}
.ws88{word-spacing:3.227882px;}
.wsdc{word-spacing:3.227904px;}
.wse9{word-spacing:3.281702px;}
.ws3b{word-spacing:3.287658px;}
.ws6a{word-spacing:3.317039px;}
.ws69{word-spacing:3.319060px;}
.wsf{word-spacing:3.335501px;}
.ws6b{word-spacing:3.347434px;}
.ws7c{word-spacing:3.407209px;}
.wsbf{word-spacing:3.466985px;}
.ws76{word-spacing:3.526760px;}
.ws19{word-spacing:3.586536px;}
.wsee{word-spacing:3.604493px;}
.wsbe{word-spacing:3.646312px;}
.wsb6{word-spacing:3.706087px;}
.wscd{word-spacing:3.712090px;}
.ws78{word-spacing:3.765863px;}
.wsfa{word-spacing:3.765888px;}
.wsfb{word-spacing:3.819686px;}
.ws9a{word-spacing:3.825638px;}
.ws67{word-spacing:3.945190px;}
.ws53{word-spacing:3.999463px;}
.ws72{word-spacing:4.001400px;}
.ws2a{word-spacing:4.004965px;}
.ws28{word-spacing:4.124516px;}
.ws66{word-spacing:4.184292px;}
.ws95{word-spacing:4.244068px;}
.ws92{word-spacing:4.303872px;}
.ws93{word-spacing:4.483170px;}
.ws3c{word-spacing:4.542946px;}
.ws1a{word-spacing:4.602721px;}
.ws91{word-spacing:4.626662px;}
.wsf0{word-spacing:4.734259px;}
.wsb{word-spacing:4.770079px;}
.ws5d{word-spacing:4.782048px;}
.wsb5{word-spacing:4.841824px;}
.wsc{word-spacing:4.853765px;}
.ws87{word-spacing:4.901599px;}
.wsc4{word-spacing:4.961375px;}
.wsd3{word-spacing:5.057050px;}
.wsf2{word-spacing:5.110848px;}
.wsc6{word-spacing:5.164646px;}
.ws77{word-spacing:5.200477px;}
.wsd5{word-spacing:5.272243px;}
.wsab{word-spacing:5.433638px;}
.wsc5{word-spacing:5.487437px;}
.wsba{word-spacing:5.618906px;}
.ws68{word-spacing:5.678682px;}
.ws94{word-spacing:5.738458px;}
.wsaa{word-spacing:5.810227px;}
.ws45{word-spacing:5.858009px;}
.wsb3{word-spacing:5.917784px;}
.ws85{word-spacing:5.980708px;}
.wsda{word-spacing:6.133018px;}
.ws41{word-spacing:6.276438px;}
.ws90{word-spacing:6.327056px;}
.ws40{word-spacing:6.336214px;}
.ws8a{word-spacing:6.575316px;}
.ws8b{word-spacing:6.635092px;}
.ws49{word-spacing:6.694867px;}
.ws5e{word-spacing:6.874194px;}
.ws86{word-spacing:7.651277px;}
.ws64{word-spacing:7.711052px;}
.ws9{word-spacing:7.782761px;}
.wsd1{word-spacing:7.908365px;}
.ws36{word-spacing:8.249033px;}
.ws2f{word-spacing:8.308808px;}
.ws74{word-spacing:8.981400px;}
.ws52{word-spacing:8.981863px;}
.wsdb{word-spacing:9.137309px;}
.wsf9{word-spacing:9.139642px;}
.wsdf{word-spacing:9.141485px;}
.wsf6{word-spacing:9.522317px;}
.ws7{word-spacing:12.176255px;}
.wsef{word-spacing:14.525568px;}
.ws8{word-spacing:16.109478px;}
.wsf3{word-spacing:18.937037px;}
.wsd7{word-spacing:19.905408px;}
.ws9b{word-spacing:21.714279px;}
.wsa{word-spacing:26.109907px;}
.ws6{word-spacing:26.840252px;}
.ws65{word-spacing:27.197898px;}
.ws37{word-spacing:28.871615px;}
.ws7f{word-spacing:34.716215px;}
.wsa9{word-spacing:36.439533px;}
.ws8f{word-spacing:50.452583px;}
.ws9e{word-spacing:60.880368px;}
.ws9c{word-spacing:64.270415px;}
.ws9d{word-spacing:64.271491px;}
.wsae{word-spacing:78.032341px;}
.ws7e{word-spacing:88.014367px;}
.ws82{word-spacing:88.059433px;}
.wsb0{word-spacing:91.805228px;}
.wsad{word-spacing:91.888964px;}
.wsa4{word-spacing:94.124826px;}
.ws7d{word-spacing:96.238956px;}
.ws81{word-spacing:96.284022px;}
.wsb1{word-spacing:204.652226px;}
.wsa5{word-spacing:411.254000px;}
.ws73{word-spacing:582.094793px;}
.ws83{word-spacing:589.446627px;}
.ws5f{word-spacing:651.229632px;}
.ws61{word-spacing:674.268000px;}
.ws60{word-spacing:678.128832px;}
.wsa0{word-spacing:681.793275px;}
.ws9f{word-spacing:970.800244px;}
.wsaf{word-spacing:1188.370020px;}
.wsb2{word-spacing:1193.353453px;}
._7{margin-left:-11.943245px;}
._2b{margin-left:-7.986026px;}
._e{margin-left:-6.939994px;}
._c{margin-left:-5.864026px;}
._39{margin-left:-4.859724px;}
._1{margin-left:-3.849538px;}
._2{margin-left:-2.719782px;}
._0{margin-left:-1.087913px;}
._1f{width:1.206133px;}
._5{width:2.301354px;}
._1e{width:3.518628px;}
._33{width:11.459059px;}
._3{width:12.972292px;}
._1d{width:14.465695px;}
._a{width:15.733022px;}
._d{width:16.814963px;}
._16{width:17.932519px;}
._f{width:19.068416px;}
._13{width:20.742133px;}
._34{width:21.878744px;}
._9{width:23.049529px;}
._b{width:24.693466px;}
._4{width:25.946136px;}
._12{width:27.377225px;}
._14{width:29.301996px;}
._6{width:30.587087px;}
._15{width:32.482055px;}
._20{width:34.209612px;}
._25{width:35.835461px;}
._37{width:36.881920px;}
._21{width:38.686765px;}
._36{width:42.299399px;}
._3a{width:44.517610px;}
._26{width:45.520715px;}
._38{width:49.599982px;}
._24{width:51.145221px;}
._8{width:55.112707px;}
._35{width:61.868160px;}
._22{width:65.648057px;}
._2f{width:71.713267px;}
._23{width:80.247912px;}
._27{width:82.238774px;}
._32{width:88.767360px;}
._30{width:96.030144px;}
._2e{width:115.505165px;}
._29{width:122.188044px;}
._2c{width:135.195379px;}
._2a{width:138.512393px;}
._2d{width:149.613350px;}
._31{width:153.433037px;}
._18{width:256.026586px;}
._17{width:368.142451px;}
._19{width:645.610651px;}
._1a{width:711.806630px;}
._1c{width:718.531430px;}
._1b{width:731.981030px;}
._10{width:748.145450px;}
._28{width:2410.328700px;}
._11{width:2434.238700px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(61,100,144);}
.fc3{color:rgb(190,190,190);}
.fc0{color:rgb(0,0,0);}
.fs26{font-size:15.916419px;}
.fsd{font-size:22.533120px;}
.fse{font-size:22.533135px;}
.fs27{font-size:22.716151px;}
.fs25{font-size:22.725570px;}
.fs1d{font-size:24.218449px;}
.fs1f{font-size:24.218455px;}
.fs21{font-size:24.218461px;}
.fs22{font-size:24.218464px;}
.fs23{font-size:24.218469px;}
.fs20{font-size:24.218470px;}
.fs1e{font-size:24.218476px;}
.fsc{font-size:26.288640px;}
.fs10{font-size:29.209664px;}
.fs14{font-size:29.209672px;}
.fs13{font-size:29.209674px;}
.fs15{font-size:29.209682px;}
.fs12{font-size:29.209684px;}
.fs16{font-size:29.209686px;}
.fs17{font-size:29.209688px;}
.fs11{font-size:29.209698px;}
.fs1a{font-size:29.466180px;}
.fs2b{font-size:29.723992px;}
.fs2a{font-size:33.290254px;}
.fs5{font-size:35.865600px;}
.fs1b{font-size:36.014220px;}
.fs19{font-size:36.414734px;}
.fs0{font-size:41.842800px;}
.fs1c{font-size:42.562260px;}
.fs24{font-size:43.108859px;}
.fs8{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fs9{font-size:47.337600px;}
.fs2c{font-size:47.522961px;}
.fs29{font-size:47.532159px;}
.fs6{font-size:47.820600px;}
.fs28{font-size:48.250390px;}
.fs18{font-size:51.993230px;}
.fs7{font-size:53.798400px;}
.fs2e{font-size:55.852448px;}
.fs2d{font-size:55.903392px;}
.fsb{font-size:56.058000px;}
.fsf{font-size:56.332798px;}
.fs2{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fs1{font-size:102.515176px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y15f{bottom:0.134649px;}
.y16b{bottom:0.155011px;}
.y14a{bottom:2.346432px;}
.y129{bottom:2.830012px;}
.y18d{bottom:3.040071px;}
.y17f{bottom:3.042844px;}
.yd7{bottom:6.084316px;}
.y149{bottom:15.650843px;}
.y11f{bottom:16.795641px;}
.yd9{bottom:17.089916px;}
.y1b{bottom:18.594411px;}
.y128{bottom:18.876350px;}
.y15d{bottom:19.379466px;}
.y159{bottom:19.379678px;}
.y18c{bottom:20.277455px;}
.y17e{bottom:20.295950px;}
.yda{bottom:27.691749px;}
.y160{bottom:28.385084px;}
.yea{bottom:28.429659px;}
.yf0{bottom:31.016133px;}
.y4b{bottom:31.890000px;}
.y16c{bottom:37.876573px;}
.y11b{bottom:40.180247px;}
.y169{bottom:40.533963px;}
.y117{bottom:44.337860px;}
.ye8{bottom:48.779953px;}
.ydb{bottom:50.925130px;}
.yeb{bottom:50.934518px;}
.y108{bottom:51.446279px;}
.y158{bottom:54.957366px;}
.y15c{bottom:54.957437px;}
.y10a{bottom:65.676748px;}
.y147{bottom:71.174085px;}
.ye7{bottom:77.500155px;}
.ydc{bottom:78.321647px;}
.yec{bottom:78.349813px;}
.yd6{bottom:91.433106px;}
.ya2{bottom:94.191000px;}
.y1f8{bottom:94.699500px;}
.y15b{bottom:94.897357px;}
.y157{bottom:94.897569px;}
.y143{bottom:96.056534px;}
.y127{bottom:97.981437px;}
.ycf{bottom:98.035500px;}
.ye6{bottom:98.244804px;}
.yd0{bottom:103.459500px;}
.y193{bottom:103.620000px;}
.y4a{bottom:103.621500px;}
.y19{bottom:104.646000px;}
.ydd{bottom:104.732341px;}
.yed{bottom:104.774591px;}
.y146{bottom:105.837428px;}
.y83{bottom:105.847500px;}
.y1a9{bottom:107.193000px;}
.y109{bottom:110.200171px;}
.y1f7{bottom:111.960000px;}
.ya1{bottom:113.020500px;}
.y168{bottom:114.947786px;}
.y165{bottom:115.513500px;}
.y10d{bottom:116.145152px;}
.yce{bottom:116.863500px;}
.y22e{bottom:121.762500px;}
.y49{bottom:122.449500px;}
.y18{bottom:122.535000px;}
.y82{bottom:124.677000px;}
.y10e{bottom:125.463852px;}
.y116{bottom:125.735502px;}
.ye5{bottom:125.777466px;}
.y1a8{bottom:126.022500px;}
.yde{bottom:127.420376px;}
.yee{bottom:127.472014px;}
.y1f6{bottom:129.220500px;}
.ya0{bottom:131.850000px;}
.y164{bottom:134.746500px;}
.y11c{bottom:135.249602px;}
.ycd{bottom:135.693000px;}
.y140{bottom:138.890917px;}
.y22d{bottom:139.023000px;}
.y17{bottom:140.422500px;}
.y48{bottom:141.279000px;}
.yef{bottom:142.418983px;}
.y81{bottom:143.506500px;}
.y1a7{bottom:144.852000px;}
.ye4{bottom:144.925829px;}
.y1f5{bottom:146.481000px;}
.y9f{bottom:150.679500px;}
.y22c{bottom:156.283500px;}
.y161{bottom:157.176000px;}
.y15e{bottom:157.215896px;}
.y14c{bottom:157.961407px;}
.y16{bottom:158.310000px;}
.ycc{bottom:159.006000px;}
.ye3{bottom:159.328296px;}
.y46{bottom:160.108500px;}
.ye9{bottom:163.170578px;}
.y1a6{bottom:163.681500px;}
.y1f4{bottom:163.741500px;}
.y47{bottom:165.534000px;}
.y80{bottom:166.819500px;}
.y9e{bottom:169.509000px;}
.ye2{bottom:170.407081px;}
.y22b{bottom:173.544000px;}
.y15{bottom:176.199000px;}
.ye1{bottom:178.875687px;}
.y45{bottom:178.938000px;}
.ycb{bottom:179.181000px;}
.y126{bottom:179.379079px;}
.y190{bottom:180.130605px;}
.y1f3{bottom:181.002000px;}
.y145{bottom:181.930484px;}
.y1a5{bottom:182.511000px;}
.ye0{bottom:185.156839px;}
.y120{bottom:186.078927px;}
.y144{bottom:186.484227px;}
.y7f{bottom:186.994500px;}
.y9d{bottom:188.338500px;}
.y22a{bottom:190.804500px;}
.y182{bottom:190.972896px;}
.ydf{bottom:192.043485px;}
.y14{bottom:194.086500px;}
.y44{bottom:197.767500px;}
.y15a{bottom:198.050157px;}
.y1f2{bottom:198.262500px;}
.y167{bottom:198.484948px;}
.y13f{bottom:200.772446px;}
.y1a4{bottom:201.340500px;}
.y163{bottom:201.529846px;}
.y142{bottom:202.733469px;}
.y9c{bottom:207.168000px;}
.y229{bottom:208.065000px;}
.yf1{bottom:211.650373px;}
.y13{bottom:211.974000px;}
.yca{bottom:212.805000px;}
.yd5{bottom:213.956943px;}
.y1f1{bottom:215.523000px;}
.y43{bottom:216.597000px;}
.y115{bottom:217.113117px;}
.y113{bottom:218.192415px;}
.y1a3{bottom:220.170000px;}
.y7e{bottom:220.618500px;}
.y228{bottom:225.325500px;}
.y9b{bottom:225.997500px;}
.y181{bottom:226.131314px;}
.y12{bottom:229.863000px;}
.y11d{bottom:230.327143px;}
.y18e{bottom:230.370431px;}
.y17c{bottom:231.838500px;}
.y1f0{bottom:232.782000px;}
.y10f{bottom:233.207813px;}
.y42{bottom:235.426500px;}
.y141{bottom:235.918813px;}
.y1a2{bottom:238.999500px;}
.y7d{bottom:239.446500px;}
.y10b{bottom:241.621824px;}
.y227{bottom:242.586000px;}
.y9a{bottom:244.827000px;}
.y123{bottom:245.898000px;}
.y180{bottom:247.068914px;}
.yc9{bottom:247.326000px;}
.y1ef{bottom:250.042500px;}
.y17b{bottom:250.668000px;}
.y10c{bottom:252.106476px;}
.y18f{bottom:253.380812px;}
.y41{bottom:254.256000px;}
.y112{bottom:254.865980px;}
.y1a1{bottom:257.829000px;}
.y106{bottom:257.872500px;}
.y7c{bottom:258.276000px;}
.y226{bottom:259.846500px;}
.y99{bottom:263.656500px;}
.y122{bottom:265.131000px;}
.y1ee{bottom:267.303000px;}
.y110{bottom:268.919081px;}
.y17a{bottom:269.497500px;}
.y125{bottom:270.756695px;}
.y40{bottom:273.085500px;}
.y1a0{bottom:276.658500px;}
.y105{bottom:276.702000px;}
.y7b{bottom:277.105500px;}
.yc8{bottom:281.845500px;}
.y98{bottom:282.486000px;}
.y1ed{bottom:284.563500px;}
.y1c0{bottom:286.027500px;}
.y11a{bottom:287.560500px;}
.y178{bottom:288.327000px;}
.y14d{bottom:290.557543px;}
.y3f{bottom:291.915000px;}
.y179{bottom:293.752500px;}
.y225{bottom:294.366000px;}
.y19f{bottom:295.488000px;}
.y104{bottom:295.531500px;}
.y7a{bottom:295.935000px;}
.y111{bottom:297.733619px;}
.y11{bottom:300.154500px;}
.yc7{bottom:300.675000px;}
.y1ec{bottom:301.824000px;}
.y97{bottom:305.799000px;}
.y177{bottom:307.156500px;}
.y3e{bottom:310.744500px;}
.y224{bottom:311.626500px;}
.y1bf{bottom:312.568500px;}
.y19e{bottom:314.317500px;}
.y103{bottom:314.361000px;}
.y79{bottom:314.764500px;}
.y10{bottom:318.043500px;}
.y1eb{bottom:319.084500px;}
.yc6{bottom:319.504500px;}
.y11e{bottom:325.396499px;}
.y223{bottom:328.887000px;}
.y3d{bottom:329.574000px;}
.y1be{bottom:330.142500px;}
.y176{bottom:330.469500px;}
.y19d{bottom:333.145500px;}
.y102{bottom:333.190500px;}
.y78{bottom:333.594000px;}
.yf{bottom:335.931000px;}
.y1ea{bottom:336.345000px;}
.yc5{bottom:338.334000px;}
.y96{bottom:339.423000px;}
.y222{bottom:346.147500px;}
.y1bd{bottom:347.716500px;}
.y3c{bottom:348.403500px;}
.y19c{bottom:351.975000px;}
.y101{bottom:352.020000px;}
.y77{bottom:352.423500px;}
.y1e9{bottom:353.605500px;}
.ye{bottom:353.818500px;}
.y13d{bottom:355.642500px;}
.yc4{bottom:357.163500px;}
.y14b{bottom:362.110378px;}
.y221{bottom:363.408000px;}
.y175{bottom:364.093500px;}
.y1bc{bottom:365.290500px;}
.y3b{bottom:367.233000px;}
.y19b{bottom:370.804500px;}
.yff{bottom:370.849500px;}
.y1e8{bottom:370.866000px;}
.y76{bottom:371.253000px;}
.y13c{bottom:374.472000px;}
.y100{bottom:376.275000px;}
.y156{bottom:376.978511px;}
.y162{bottom:380.458412px;}
.yc3{bottom:380.476500px;}
.y220{bottom:380.668500px;}
.yd{bottom:380.673000px;}
.y1bb{bottom:382.864500px;}
.y174{bottom:382.923000px;}
.y3a{bottom:386.062500px;}
.y1e7{bottom:388.125000px;}
.y19a{bottom:389.634000px;}
.yfe{bottom:389.679000px;}
.y75{bottom:390.082500px;}
.y192{bottom:390.546000px;}
.y95{bottom:392.773500px;}
.y13b{bottom:393.301500px;}
.y21f{bottom:397.929000px;}
.yc{bottom:398.562000px;}
.y121{bottom:400.404461px;}
.y1ba{bottom:400.440000px;}
.y173{bottom:401.752500px;}
.y39{bottom:404.892000px;}
.y1e6{bottom:405.385500px;}
.y199{bottom:408.463500px;}
.yfd{bottom:408.508500px;}
.y74{bottom:408.912000px;}
.y139{bottom:412.131000px;}
.yc2{bottom:414.100500px;}
.y21e{bottom:415.188000px;}
.yb{bottom:416.449500px;}
.y13a{bottom:417.555000px;}
.y172{bottom:420.582000px;}
.y191{bottom:420.973500px;}
.y1e5{bottom:422.646000px;}
.y1b9{bottom:426.979500px;}
.y94{bottom:427.293000px;}
.yfc{bottom:427.338000px;}
.y73{bottom:427.741500px;}
.y38{bottom:428.205000px;}
.y137{bottom:430.960500px;}
.y21d{bottom:432.448500px;}
.yc1{bottom:432.930000px;}
.y138{bottom:436.384500px;}
.y171{bottom:439.411500px;}
.y1e4{bottom:439.906500px;}
.y18b{bottom:443.401500px;}
.ya{bottom:444.798000px;}
.y93{bottom:446.122500px;}
.yfb{bottom:446.167500px;}
.y72{bottom:446.571000px;}
.y21c{bottom:449.709000px;}
.y136{bottom:449.790000px;}
.y198{bottom:450.606000px;}
.yc0{bottom:451.759500px;}
.y1b8{bottom:453.520500px;}
.y1e3{bottom:457.167000px;}
.y170{bottom:458.241000px;}
.y92{bottom:464.952000px;}
.yf9{bottom:464.997000px;}
.y71{bottom:465.400500px;}
.y21b{bottom:466.969500px;}
.y135{bottom:468.619500px;}
.yfa{bottom:470.421000px;}
.ybf{bottom:470.589000px;}
.y9{bottom:471.652500px;}
.y1e2{bottom:474.427500px;}
.y16f{bottom:477.070500px;}
.y1b7{bottom:480.061500px;}
.y91{bottom:483.781500px;}
.yf8{bottom:483.826500px;}
.y70{bottom:484.230000px;}
.y134{bottom:487.449000px;}
.ybe{bottom:489.418500px;}
.y8{bottom:489.540000px;}
.y1e1{bottom:491.688000px;}
.y1b6{bottom:497.635500px;}
.y21a{bottom:501.490500px;}
.y90{bottom:502.611000px;}
.yf7{bottom:502.656000px;}
.y6f{bottom:503.059500px;}
.y37{bottom:503.355000px;}
.y133{bottom:506.278500px;}
.y7{bottom:507.429000px;}
.ybd{bottom:508.248000px;}
.y1e0{bottom:508.948500px;}
.y16e{bottom:510.636000px;}
.y1b5{bottom:515.209500px;}
.y219{bottom:518.751000px;}
.y8f{bottom:521.440500px;}
.yf6{bottom:521.485500px;}
.y6d{bottom:521.889000px;}
.y36{bottom:522.811500px;}
.y132{bottom:525.108000px;}
.y6{bottom:525.316500px;}
.y1df{bottom:526.207500px;}
.ybc{bottom:527.077500px;}
.y6e{bottom:527.313000px;}
.y16d{bottom:529.869000px;}
.y218{bottom:536.011500px;}
.y8e{bottom:540.270000px;}
.yf4{bottom:540.315000px;}
.y6b{bottom:540.718500px;}
.y1b4{bottom:541.749000px;}
.y5{bottom:543.204000px;}
.y1de{bottom:543.468000px;}
.y131{bottom:543.937500px;}
.yf5{bottom:545.739000px;}
.ybb{bottom:545.907000px;}
.y6c{bottom:546.142500px;}
.y16a{bottom:552.302556px;}
.y217{bottom:553.272000px;}
.y8d{bottom:559.099500px;}
.y1b3{bottom:559.324500px;}
.y6a{bottom:559.548000px;}
.y35{bottom:560.202000px;}
.y1dd{bottom:560.728500px;}
.y4{bottom:561.093000px;}
.y130{bottom:562.767000px;}
.yf3{bottom:563.628000px;}
.yba{bottom:564.736500px;}
.y197{bottom:564.972000px;}
.y216{bottom:570.531000px;}
.y155{bottom:571.618500px;}
.y1b2{bottom:576.898500px;}
.y8c{bottom:577.929000px;}
.y1dc{bottom:577.989000px;}
.y69{bottom:578.377500px;}
.y3{bottom:578.980500px;}
.y34{bottom:579.658500px;}
.y12f{bottom:581.596500px;}
.yb8{bottom:583.566000px;}
.y215{bottom:587.791500px;}
.yb9{bottom:588.990000px;}
.y154{bottom:590.448000px;}
.yf2{bottom:594.055500px;}
.y1b1{bottom:594.472500px;}
.y1db{bottom:595.249500px;}
.y8a{bottom:596.758500px;}
.y2{bottom:596.868000px;}
.y68{bottom:597.207000px;}
.y33{bottom:599.115000px;}
.y12e{bottom:600.424500px;}
.y8b{bottom:602.182500px;}
.yb7{bottom:602.394000px;}
.y196{bottom:602.631000px;}
.y214{bottom:605.052000px;}
.y166{bottom:607.808093px;}
.y153{bottom:609.277500px;}
.y1b0{bottom:612.046500px;}
.y1da{bottom:612.510000px;}
.y1{bottom:614.757000px;}
.y89{bottom:615.588000px;}
.y67{bottom:616.036500px;}
.yd8{bottom:616.483500px;}
.y32{bottom:618.573000px;}
.yd4{bottom:618.701231px;}
.y12d{bottom:619.254000px;}
.yb6{bottom:621.223500px;}
.y195{bottom:621.460500px;}
.y213{bottom:622.312500px;}
.y152{bottom:628.107000px;}
.y1af{bottom:629.620500px;}
.y1d9{bottom:629.770500px;}
.y88{bottom:634.417500px;}
.y66{bottom:634.866000px;}
.y30{bottom:638.029500px;}
.y12c{bottom:638.083500px;}
.y212{bottom:639.573000px;}
.yb5{bottom:640.053000px;}
.y31{bottom:642.912000px;}
.y151{bottom:646.936500px;}
.y1d8{bottom:647.031000px;}
.y65{bottom:653.695500px;}
.y1ae{bottom:656.161500px;}
.y211{bottom:656.833500px;}
.y2f{bottom:657.487500px;}
.y87{bottom:657.730500px;}
.yb4{bottom:658.882500px;}
.y1d7{bottom:664.291500px;}
.y150{bottom:670.248000px;}
.y12b{bottom:671.650500px;}
.y64{bottom:672.525000px;}
.y210{bottom:674.094000px;}
.y1ad{bottom:674.205000px;}
.y1ac{bottom:674.206500px;}
.y2e{bottom:676.944000px;}
.yb3{bottom:677.712000px;}
.y1d6{bottom:681.550500px;}
.y12a{bottom:690.882000px;}
.y63{bottom:691.354500px;}
.y2d{bottom:696.400500px;}
.yb2{bottom:696.541500px;}
.y1d5{bottom:698.811000px;}
.y14f{bottom:700.675500px;}
.y20f{bottom:708.613500px;}
.y62{bottom:710.184000px;}
.y124{bottom:713.311500px;}
.y2c{bottom:715.858500px;}
.y1d4{bottom:716.071500px;}
.y14e{bottom:719.908500px;}
.y119{bottom:725.283000px;}
.y20e{bottom:725.874000px;}
.y61{bottom:729.013500px;}
.y18a{bottom:730.615500px;}
.y1d3{bottom:733.332000px;}
.y2b{bottom:735.315000px;}
.yb1{bottom:742.003500px;}
.y148{bottom:742.338000px;}
.y20d{bottom:743.134500px;}
.y118{bottom:744.514500px;}
.y60{bottom:747.843000px;}
.y189{bottom:749.445000px;}
.y1d2{bottom:750.592500px;}
.y194{bottom:753.267000px;}
.y2a{bottom:754.771500px;}
.yb0{bottom:758.442000px;}
.y20c{bottom:760.395000px;}
.y5f{bottom:766.671000px;}
.y114{bottom:766.944000px;}
.y1d1{bottom:767.853000px;}
.y187{bottom:768.274500px;}
.y107{bottom:771.237661px;}
.y188{bottom:773.700000px;}
.y29{bottom:774.229500px;}
.yaf{bottom:774.880500px;}
.y20b{bottom:777.655500px;}
.y1d0{bottom:785.113500px;}
.y5e{bottom:785.500500px;}
.y185{bottom:787.104000px;}
.y13e{bottom:790.375248px;}
.yae{bottom:791.319000px;}
.y186{bottom:792.529500px;}
.y28{bottom:793.686000px;}
.y20a{bottom:794.916000px;}
.y1cf{bottom:802.374000px;}
.y5d{bottom:804.330000px;}
.yad{bottom:807.757500px;}
.y184{bottom:810.417000px;}
.y209{bottom:812.176500px;}
.y1ce{bottom:819.633000px;}
.y5c{bottom:823.159500px;}
.y208{bottom:829.437000px;}
.yac{bottom:831.697500px;}
.y27{bottom:832.095000px;}
.y1cd{bottom:836.893500px;}
.y183{bottom:840.844500px;}
.y5b{bottom:841.989000px;}
.y207{bottom:846.697500px;}
.yab{bottom:848.136000px;}
.y26{bottom:852.574500px;}
.y1cc{bottom:854.154000px;}
.y5a{bottom:860.818500px;}
.y17d{bottom:863.274000px;}
.y206{bottom:863.956500px;}
.y25{bottom:864.373500px;}
.y1cb{bottom:875.898000px;}
.y59{bottom:879.648000px;}
.yaa{bottom:879.754500px;}
.y205{bottom:881.217000px;}
.y24{bottom:884.853000px;}
.y58{bottom:898.477500px;}
.y23{bottom:900.993000px;}
.y86{bottom:903.903000px;}
.y1ca{bottom:911.581500px;}
.y22{bottom:912.792000px;}
.y204{bottom:915.738000px;}
.ya9{bottom:916.858500px;}
.y57{bottom:917.307000px;}
.y1c9{bottom:929.155500px;}
.y203{bottom:932.998500px;}
.y21{bottom:933.271500px;}
.ya8{bottom:935.688000px;}
.y56{bottom:936.136500px;}
.y85{bottom:941.562000px;}
.y1c8{bottom:946.729500px;}
.y202{bottom:950.259000px;}
.ya7{bottom:954.517500px;}
.y55{bottom:954.966000px;}
.y1ab{bottom:960.391500px;}
.y1c7{bottom:964.303500px;}
.y201{bottom:967.519500px;}
.ya6{bottom:973.347000px;}
.y54{bottom:973.795500px;}
.y20{bottom:977.770500px;}
.y1aa{bottom:979.219500px;}
.y1c6{bottom:981.877500px;}
.y200{bottom:984.780000px;}
.ya5{bottom:992.176500px;}
.y53{bottom:992.625000px;}
.y1f{bottom:996.600000px;}
.y1c5{bottom:999.451500px;}
.y1fe{bottom:1002.039000px;}
.y1ff{bottom:1002.040500px;}
.ya4{bottom:1011.006000px;}
.y52{bottom:1011.454500px;}
.y1c4{bottom:1017.025500px;}
.y1fd{bottom:1019.299500px;}
.y51{bottom:1030.284000px;}
.ya3{bottom:1034.319000px;}
.y1c3{bottom:1034.599500px;}
.yd3{bottom:1035.708000px;}
.y1e{bottom:1036.519500px;}
.y1fc{bottom:1036.560000px;}
.y50{bottom:1049.113500px;}
.y1c2{bottom:1052.173500px;}
.y1fb{bottom:1053.820500px;}
.y84{bottom:1054.537500px;}
.y1d{bottom:1064.764500px;}
.y4f{bottom:1067.943000px;}
.y1fa{bottom:1071.081000px;}
.yd2{bottom:1073.367000px;}
.y1c1{bottom:1083.544500px;}
.y4e{bottom:1086.772500px;}
.y1f9{bottom:1088.341500px;}
.y1c{bottom:1093.008000px;}
.y4d{bottom:1105.602000px;}
.yd1{bottom:1111.026000px;}
.y1a{bottom:1136.494500px;}
.y4c{bottom:1168.366500px;}
.h18{height:16.404728px;}
.h1a{height:16.404738px;}
.h41{height:16.560074px;}
.h40{height:16.718549px;}
.h31{height:17.655249px;}
.h33{height:17.655253px;}
.h35{height:17.655258px;}
.h36{height:17.655260px;}
.h37{height:17.655264px;}
.h34{height:17.655265px;}
.h32{height:17.655269px;}
.h17{height:19.138849px;}
.h3e{height:19.519063px;}
.h1f{height:21.293845px;}
.h23{height:21.293851px;}
.h22{height:21.293852px;}
.h24{height:21.293858px;}
.h21{height:21.293860px;}
.h25{height:21.293861px;}
.h26{height:21.293863px;}
.h20{height:21.293870px;}
.hd{height:21.407698px;}
.h2a{height:21.480845px;}
.h47{height:21.668790px;}
.h10{height:23.242762px;}
.h9{height:26.110157px;}
.h2b{height:26.254366px;}
.h2{height:30.461558px;}
.h15{height:30.582721px;}
.h3{height:30.670772px;}
.h2c{height:31.027888px;}
.h39{height:31.426358px;}
.h3f{height:32.613761px;}
.h48{height:34.644239px;}
.ha{height:34.813397px;}
.h11{height:35.052500px;}
.h43{height:35.174535px;}
.h2f{height:37.903065px;}
.hb{height:38.896243px;}
.hc{height:39.165235px;}
.h1c{height:39.434227px;}
.h4d{height:40.716435px;}
.h4a{height:40.753573px;}
.h45{height:40.824357px;}
.h14{height:42.043500px;}
.h1b{height:42.799724px;}
.he{height:43.217759px;}
.hf{height:43.516637px;}
.h6{height:43.815515px;}
.h2e{height:44.656603px;}
.h28{height:44.656604px;}
.h1d{height:44.938762px;}
.h4b{height:44.944762px;}
.h13{height:46.714950px;}
.h46{height:46.722036px;}
.h4{height:50.931027px;}
.h8{height:54.547601px;}
.h3c{height:57.098546px;}
.h12{height:57.756749px;}
.h3a{height:64.362927px;}
.h3b{height:68.238688px;}
.h5{height:69.505289px;}
.h7{height:77.792486px;}
.h3d{height:154.624354px;}
.h16{height:229.838763px;}
.h19{height:239.525285px;}
.h49{height:257.270760px;}
.h4c{height:263.573352px;}
.h30{height:315.566601px;}
.h44{height:323.409069px;}
.h1e{height:345.015166px;}
.h27{height:353.599404px;}
.h38{height:378.211617px;}
.h42{height:390.802260px;}
.h2d{height:407.231622px;}
.h29{height:412.526520px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wc{width:131.214519px;}
.wb{width:154.625063px;}
.w3{width:210.312018px;}
.w2{width:211.537947px;}
.w5{width:229.838763px;}
.wf{width:284.068929px;}
.w9{width:286.060316px;}
.wa{width:294.657930px;}
.we{width:323.409069px;}
.wd{width:324.131820px;}
.w6{width:345.015166px;}
.w7{width:353.599404px;}
.w11{width:383.070398px;}
.w10{width:383.070840px;}
.w4{width:412.515787px;}
.w8{width:412.526520px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x68{left:-1.352309px;}
.x0{left:0.000000px;}
.xaf{left:2.882901px;}
.xa9{left:4.335104px;}
.xaa{left:7.315308px;}
.x7d{left:12.860854px;}
.x92{left:15.170499px;}
.x7c{left:19.406819px;}
.xa7{left:20.685054px;}
.x95{left:24.174093px;}
.x91{left:27.457651px;}
.x70{left:34.433139px;}
.x8b{left:39.376353px;}
.x6f{left:44.856585px;}
.xab{left:46.272264px;}
.x93{left:48.092571px;}
.x3{left:52.230000px;}
.x1{left:53.574000px;}
.xb7{left:55.472339px;}
.x2{left:57.111683px;}
.x81{left:64.568307px;}
.x6e{left:68.253474px;}
.x71{left:70.566079px;}
.x7b{left:72.522498px;}
.x8c{left:77.216763px;}
.x6d{left:81.726401px;}
.xa8{left:83.765599px;}
.x6c{left:84.791845px;}
.xdc{left:85.848000px;}
.x72{left:88.634728px;}
.x69{left:91.432543px;}
.xa4{left:94.168712px;}
.x67{left:98.666143px;}
.x80{left:100.611910px;}
.xa5{left:103.132906px;}
.x73{left:106.703384px;}
.x8d{left:109.263027px;}
.xb8{left:112.527299px;}
.x74{left:124.767476px;}
.xbd{left:126.221478px;}
.x96{left:128.421007px;}
.x7f{left:137.495810px;}
.x82{left:138.606505px;}
.x7e{left:140.565947px;}
.x75{left:142.836318px;}
.x7a{left:146.767782px;}
.xad{left:149.237605px;}
.xac{left:152.737407px;}
.x8e{left:159.461323px;}
.x76{left:160.904973px;}
.x90{left:163.243741px;}
.x8f{left:167.072140px;}
.x77{left:178.973629px;}
.x88{left:184.398438px;}
.x78{left:186.439741px;}
.x79{left:193.664327px;}
.x94{left:211.472226px;}
.x89{left:213.163482px;}
.x6b{left:214.371323px;}
.xa6{left:218.785471px;}
.x6a{left:220.917288px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x87{left:253.884661px;}
.x62{left:261.019500px;}
.xcc{left:262.068000px;}
.xae{left:264.315330px;}
.x63{left:267.825000px;}
.x5{left:269.914500px;}
.x99{left:272.422500px;}
.x37{left:275.544000px;}
.xbe{left:277.460634px;}
.xd7{left:279.327000px;}
.xd{left:281.479500px;}
.xcd{left:288.234000px;}
.xb9{left:290.549069px;}
.xa0{left:294.319500px;}
.x8a{left:298.863871px;}
.x38{left:302.344500px;}
.x56{left:307.099500px;}
.xd9{left:308.905500px;}
.x7{left:309.957000px;}
.x97{left:311.472000px;}
.x9a{left:313.167000px;}
.xc6{left:314.208000px;}
.xc{left:319.921500px;}
.x9b{left:322.854000px;}
.x35{left:325.936500px;}
.x39{left:328.297500px;}
.x85{left:331.516500px;}
.x57{left:336.742500px;}
.x3a{left:338.862000px;}
.x36{left:340.879500px;}
.xbb{left:342.814500px;}
.x58{left:344.448000px;}
.x22{left:348.748500px;}
.x23{left:356.220000px;}
.x24{left:359.881500px;}
.xd8{left:362.080500px;}
.x98{left:363.976500px;}
.x45{left:371.959500px;}
.x9c{left:373.801500px;}
.x25{left:374.826000px;}
.x16{left:376.144500px;}
.x26{left:378.486000px;}
.x17{left:383.616000px;}
.xbc{left:388.363500px;}
.x18{left:391.029000px;}
.x27{left:393.430500px;}
.x28{left:397.092000px;}
.x19{left:398.500500px;}
.x9d{left:408.081000px;}
.x8{left:410.106000px;}
.x29{left:412.035000px;}
.x48{left:413.220000px;}
.x5d{left:416.469000px;}
.x9e{left:417.768000px;}
.x9{left:419.796000px;}
.x2f{left:423.304500px;}
.x49{left:427.716000px;}
.x86{left:431.212500px;}
.x84{left:437.065500px;}
.x4b{left:445.233000px;}
.xca{left:447.031500px;}
.x30{left:448.200000px;}
.xa{left:450.829500px;}
.xcb{left:453.838500px;}
.x59{left:454.986000px;}
.x5e{left:456.388500px;}
.x1a{left:458.817000px;}
.xb{left:460.519500px;}
.x5a{left:461.791500px;}
.xc8{left:465.289500px;}
.x1b{left:473.761500px;}
.x10{left:477.036000px;}
.x4a{left:478.792500px;}
.x5f{left:482.710500px;}
.x11{left:484.507500px;}
.x43{left:487.444500px;}
.xc9{left:490.639500px;}
.x2a{left:495.949500px;}
.x44{left:502.387500px;}
.xd2{left:506.595000px;}
.x54{left:508.701000px;}
.x2b{left:510.892500px;}
.x5c{left:518.098500px;}
.xd3{left:521.539500px;}
.x55{left:523.645500px;}
.xd4{left:525.349500px;}
.xc2{left:532.617000px;}
.xc7{left:533.790000px;}
.x64{left:536.112000px;}
.x12{left:537.132000px;}
.xd5{left:540.294000px;}
.xce{left:541.606500px;}
.x13{left:547.404000px;}
.x65{left:554.577000px;}
.xcf{left:556.549500px;}
.x66{left:561.384000px;}
.x9f{left:563.281500px;}
.xc3{left:570.118500px;}
.x52{left:575.176500px;}
.xdb{left:576.234000px;}
.x4c{left:585.915000px;}
.x53{left:590.119500px;}
.x4d{left:600.858000px;}
.x4e{left:604.519500px;}
.xe{left:606.868500px;}
.x33{left:609.850500px;}
.xf{left:614.341500px;}
.x1e{left:615.837000px;}
.x4f{left:619.464000px;}
.xb0{left:623.046000px;}
.x34{left:624.795000px;}
.x1f{left:630.781500px;}
.xb1{left:632.998500px;}
.x40{left:637.096500px;}
.x1c{left:639.981000px;}
.x1d{left:647.452500px;}
.x3b{left:653.218500px;}
.x83{left:658.101000px;}
.xe1{left:664.866000px;}
.x3c{left:668.161500px;}
.xb2{left:675.186000px;}
.xd6{left:678.357000px;}
.xb3{left:685.138500px;}
.xd0{left:687.544500px;}
.xe2{left:691.765500px;}
.x41{left:693.324000px;}
.xc4{left:697.146000px;}
.xd1{left:702.487500px;}
.x42{left:705.442500px;}
.x2c{left:708.426000px;}
.xc5{left:712.090500px;}
.xbf{left:713.413500px;}
.x2d{left:715.231500px;}
.x3d{left:717.742500px;}
.xb4{left:720.004500px;}
.xe3{left:726.243000px;}
.xa1{left:728.028000px;}
.x14{left:729.363000px;}
.xc0{left:732.168000px;}
.x5b{left:733.558500px;}
.x15{left:736.834500px;}
.xdd{left:738.004500px;}
.xa2{left:739.620000px;}
.xc1{left:747.112500px;}
.x2e{left:751.972500px;}
.xe4{left:753.141000px;}
.x3e{left:762.529500px;}
.xb5{left:763.722000px;}
.xde{left:764.904000px;}
.x20{left:771.393000px;}
.x3f{left:772.521000px;}
.xb6{left:773.674500px;}
.xa3{left:784.507500px;}
.x60{left:790.720500px;}
.x61{left:797.526000px;}
.x31{left:801.130500px;}
.xda{left:803.838000px;}
.x46{left:804.942000px;}
.x32{left:807.936000px;}
.xdf{left:810.265500px;}
.x47{left:811.749000px;}
.xba{left:812.802000px;}
.x50{left:817.698000px;}
.x21{left:822.393000px;}
.x51{left:832.642500px;}
.xe0{left:837.165000px;}
@media print{
.vd{vertical-align:-25.310519pt;}
.ve{vertical-align:-21.010530pt;}
.v3{vertical-align:-19.285333pt;}
.v2{vertical-align:-15.429333pt;}
.v5{vertical-align:-9.909333pt;}
.v7{vertical-align:-8.954667pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:7.036439pt;}
.v6{vertical-align:9.909333pt;}
.vc{vertical-align:14.716233pt;}
.v8{vertical-align:16.098011pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:21.941333pt;}
.v9{vertical-align:29.276950pt;}
.va{vertical-align:32.722071pt;}
.ls5{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000131pt;}
.ls2b{letter-spacing:0.000186pt;}
.ls29{letter-spacing:0.000316pt;}
.ls28{letter-spacing:0.000448pt;}
.ls22{letter-spacing:0.001067pt;}
.ls32{letter-spacing:0.002525pt;}
.ls34{letter-spacing:0.004267pt;}
.ls9{letter-spacing:0.265570pt;}
.ls1f{letter-spacing:0.482502pt;}
.lsd{letter-spacing:0.487835pt;}
.ls1b{letter-spacing:0.570745pt;}
.ls1a{letter-spacing:0.576078pt;}
.ls13{letter-spacing:0.596214pt;}
.ls24{letter-spacing:0.598340pt;}
.lsc{letter-spacing:0.637762pt;}
.lsf{letter-spacing:0.663756pt;}
.ls16{letter-spacing:1.156511pt;}
.ls17{letter-spacing:1.192644pt;}
.ls12{letter-spacing:1.326903pt;}
.ls25{letter-spacing:3.163733pt;}
.ls1c{letter-spacing:3.980173pt;}
.ls1d{letter-spacing:3.985506pt;}
.ls0{letter-spacing:9.298933pt;}
.ls36{letter-spacing:10.624392pt;}
.ls4{letter-spacing:10.626533pt;}
.ls14{letter-spacing:10.973762pt;}
.ls33{letter-spacing:11.032555pt;}
.ls31{letter-spacing:11.440718pt;}
.ls35{letter-spacing:11.516909pt;}
.ls11{letter-spacing:11.635096pt;}
.ls26{letter-spacing:11.795718pt;}
.ls2e{letter-spacing:11.954133pt;}
.ls2f{letter-spacing:11.959467pt;}
.ls30{letter-spacing:12.158390pt;}
.ls6{letter-spacing:13.017797pt;}
.ls7{letter-spacing:13.177199pt;}
.ls20{letter-spacing:14.291096pt;}
.ls2d{letter-spacing:14.771215pt;}
.ls23{letter-spacing:15.942908pt;}
.lsb{letter-spacing:16.061762pt;}
.ls10{letter-spacing:16.067096pt;}
.lsa{letter-spacing:16.089570pt;}
.ls2c{letter-spacing:16.443733pt;}
.ls2a{letter-spacing:16.832922pt;}
.ls8{letter-spacing:17.185067pt;}
.ls1e{letter-spacing:18.717762pt;}
.ls21{letter-spacing:18.723096pt;}
.ls1{letter-spacing:51.035733pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls18{letter-spacing:555.865844pt;}
.ls15{letter-spacing:633.598881pt;}
.ls19{letter-spacing:643.225600pt;}
.lse{letter-spacing:754.977067pt;}
.ws4c{word-spacing:-13.283467pt;}
.ws8d{word-spacing:-12.848105pt;}
.wsc7{word-spacing:-11.955200pt;}
.wsa8{word-spacing:-11.745725pt;}
.ws25{word-spacing:-10.626800pt;}
.wsd{word-spacing:-10.095467pt;}
.ws2{word-spacing:-9.298400pt;}
.ws8e{word-spacing:-8.998485pt;}
.wsa3{word-spacing:-5.615741pt;}
.ws80{word-spacing:-5.548155pt;}
.ws99{word-spacing:-2.869229pt;}
.ws98{word-spacing:-2.816095pt;}
.ws42{word-spacing:-2.337890pt;}
.ws54{word-spacing:-2.299353pt;}
.ws35{word-spacing:-2.178489pt;}
.wsb8{word-spacing:-2.125355pt;}
.wsa6{word-spacing:-2.072221pt;}
.wsa2{word-spacing:-1.965953pt;}
.ws63{word-spacing:-1.859685pt;}
.wsfd{word-spacing:-1.769370pt;}
.ws44{word-spacing:-1.753418pt;}
.wsfc{word-spacing:-1.721549pt;}
.ws43{word-spacing:-1.700284pt;}
.ws30{word-spacing:-1.647150pt;}
.ws3d{word-spacing:-1.594016pt;}
.ws62{word-spacing:-1.540882pt;}
.wsd4{word-spacing:-1.530266pt;}
.ws97{word-spacing:-1.487748pt;}
.ws96{word-spacing:-1.434614pt;}
.ws17{word-spacing:-1.386803pt;}
.ws33{word-spacing:-1.381481pt;}
.wsc8{word-spacing:-1.338982pt;}
.wsa7{word-spacing:-1.328347pt;}
.ws4f{word-spacing:-1.275213pt;}
.wseb{word-spacing:-1.195520pt;}
.ws4a{word-spacing:-1.168945pt;}
.ws58{word-spacing:-1.115811pt;}
.ws59{word-spacing:-1.062677pt;}
.ws3{word-spacing:-1.041421pt;}
.ws4e{word-spacing:-1.009543pt;}
.ws50{word-spacing:-0.956410pt;}
.ws5{word-spacing:-0.929840pt;}
.ws4b{word-spacing:-0.903276pt;}
.wsc9{word-spacing:-0.860774pt;}
.ws32{word-spacing:-0.850142pt;}
.ws21{word-spacing:-0.743874pt;}
.wsea{word-spacing:-0.717312pt;}
.ws22{word-spacing:-0.690740pt;}
.wsf7{word-spacing:-0.621670pt;}
.wsbb{word-spacing:-0.531339pt;}
.wsbc{word-spacing:-0.478205pt;}
.ws3e{word-spacing:-0.425071pt;}
.wse0{word-spacing:-0.334746pt;}
.ws3a{word-spacing:-0.318803pt;}
.ws15{word-spacing:-0.286925pt;}
.ws1b{word-spacing:-0.265669pt;}
.wsa1{word-spacing:-0.239104pt;}
.ws1f{word-spacing:-0.212535pt;}
.ws13{word-spacing:-0.191283pt;}
.ws34{word-spacing:-0.159402pt;}
.wsd0{word-spacing:-0.143462pt;}
.ws2d{word-spacing:-0.106268pt;}
.ws12{word-spacing:-0.095642pt;}
.ws2c{word-spacing:-0.053134pt;}
.ws84{word-spacing:-0.050074pt;}
.ws16{word-spacing:-0.047821pt;}
.wsf1{word-spacing:-0.009054pt;}
.wsd8{word-spacing:-0.008269pt;}
.wsf5{word-spacing:-0.006656pt;}
.ws6f{word-spacing:-0.004848pt;}
.wse2{word-spacing:-0.004224pt;}
.wsd9{word-spacing:-0.003046pt;}
.wse4{word-spacing:-0.002935pt;}
.ws24{word-spacing:-0.002739pt;}
.wsd6{word-spacing:-0.001348pt;}
.ws1{word-spacing:0.000000pt;}
.ws70{word-spacing:0.000297pt;}
.ws18{word-spacing:0.047821pt;}
.ws23{word-spacing:0.053134pt;}
.ws6d{word-spacing:0.094334pt;}
.ws14{word-spacing:0.095642pt;}
.ws2e{word-spacing:0.106268pt;}
.wscb{word-spacing:0.143462pt;}
.ws1d{word-spacing:0.159402pt;}
.ws11{word-spacing:0.191283pt;}
.ws1c{word-spacing:0.212535pt;}
.wse5{word-spacing:0.239104pt;}
.ws31{word-spacing:0.265669pt;}
.wsca{word-spacing:0.286925pt;}
.ws1e{word-spacing:0.318803pt;}
.wsc3{word-spacing:0.371937pt;}
.wsde{word-spacing:0.382566pt;}
.ws7b{word-spacing:0.425071pt;}
.ws29{word-spacing:0.531339pt;}
.wsc0{word-spacing:0.584473pt;}
.wse3{word-spacing:0.621670pt;}
.ws7a{word-spacing:0.637606pt;}
.ws6e{word-spacing:0.667918pt;}
.wscc{word-spacing:0.669491pt;}
.ws75{word-spacing:0.690740pt;}
.ws56{word-spacing:0.797008pt;}
.wse8{word-spacing:0.860774pt;}
.ws4{word-spacing:0.892646pt;}
.ws46{word-spacing:0.903276pt;}
.ws4d{word-spacing:1.009543pt;}
.ws5c{word-spacing:1.060198pt;}
.ws39{word-spacing:1.062677pt;}
.wsb7{word-spacing:1.115811pt;}
.wsf4{word-spacing:1.147699pt;}
.wsbd{word-spacing:1.168945pt;}
.ws20{word-spacing:1.222079pt;}
.ws89{word-spacing:1.275213pt;}
.wsf8{word-spacing:1.291162pt;}
.ws38{word-spacing:1.328347pt;}
.ws6c{word-spacing:1.381481pt;}
.wsdd{word-spacing:1.482445pt;}
.ws51{word-spacing:1.487748pt;}
.wsc2{word-spacing:1.540882pt;}
.ws27{word-spacing:1.594016pt;}
.wse7{word-spacing:1.625907pt;}
.ws57{word-spacing:1.647150pt;}
.ws48{word-spacing:1.700284pt;}
.wscf{word-spacing:1.769370pt;}
.wsed{word-spacing:1.960653pt;}
.wsce{word-spacing:2.008474pt;}
.ws55{word-spacing:2.125355pt;}
.wsb4{word-spacing:2.178489pt;}
.ws2b{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws3f{word-spacing:2.284756pt;}
.ws10{word-spacing:2.295398pt;}
.ws5b{word-spacing:2.337096pt;}
.ws5a{word-spacing:2.337890pt;}
.ws47{word-spacing:2.391024pt;}
.ws26{word-spacing:2.444158pt;}
.wsec{word-spacing:2.486682pt;}
.wsac{word-spacing:2.497292pt;}
.ws8c{word-spacing:2.550426pt;}
.wse{word-spacing:2.550432pt;}
.wsc1{word-spacing:2.603559pt;}
.wse6{word-spacing:2.677965pt;}
.ws79{word-spacing:2.709827pt;}
.ws71{word-spacing:2.806585pt;}
.wsb9{word-spacing:2.816095pt;}
.wse1{word-spacing:2.863130pt;}
.wsd2{word-spacing:2.864461pt;}
.ws88{word-spacing:2.869229pt;}
.wsdc{word-spacing:2.869248pt;}
.wse9{word-spacing:2.917069pt;}
.ws3b{word-spacing:2.922363pt;}
.ws6a{word-spacing:2.948480pt;}
.ws69{word-spacing:2.950276pt;}
.wsf{word-spacing:2.964890pt;}
.ws6b{word-spacing:2.975497pt;}
.ws7c{word-spacing:3.028630pt;}
.wsbf{word-spacing:3.081764pt;}
.ws76{word-spacing:3.134898pt;}
.ws19{word-spacing:3.188032pt;}
.wsee{word-spacing:3.203994pt;}
.wsbe{word-spacing:3.241166pt;}
.wsb6{word-spacing:3.294300pt;}
.wscd{word-spacing:3.299635pt;}
.ws78{word-spacing:3.347434pt;}
.wsfa{word-spacing:3.347456pt;}
.wsfb{word-spacing:3.395277pt;}
.ws9a{word-spacing:3.400567pt;}
.ws67{word-spacing:3.506835pt;}
.ws53{word-spacing:3.555078pt;}
.ws72{word-spacing:3.556800pt;}
.ws2a{word-spacing:3.559969pt;}
.ws28{word-spacing:3.666237pt;}
.ws66{word-spacing:3.719371pt;}
.ws95{word-spacing:3.772505pt;}
.ws92{word-spacing:3.825664pt;}
.ws93{word-spacing:3.985040pt;}
.ws3c{word-spacing:4.038174pt;}
.ws1a{word-spacing:4.091308pt;}
.ws91{word-spacing:4.112589pt;}
.wsf0{word-spacing:4.208230pt;}
.wsb{word-spacing:4.240070pt;}
.ws5d{word-spacing:4.250709pt;}
.wsb5{word-spacing:4.303843pt;}
.wsc{word-spacing:4.314458pt;}
.ws87{word-spacing:4.356977pt;}
.wsc4{word-spacing:4.410111pt;}
.wsd3{word-spacing:4.495155pt;}
.wsf2{word-spacing:4.542976pt;}
.wsc6{word-spacing:4.590797pt;}
.ws77{word-spacing:4.622646pt;}
.wsd5{word-spacing:4.686438pt;}
.wsab{word-spacing:4.829901pt;}
.wsc5{word-spacing:4.877722pt;}
.wsba{word-spacing:4.994583pt;}
.ws68{word-spacing:5.047717pt;}
.ws94{word-spacing:5.100851pt;}
.wsaa{word-spacing:5.164646pt;}
.ws45{word-spacing:5.207119pt;}
.wsb3{word-spacing:5.260253pt;}
.ws85{word-spacing:5.316185pt;}
.wsda{word-spacing:5.451571pt;}
.ws41{word-spacing:5.579056pt;}
.ws90{word-spacing:5.624050pt;}
.ws40{word-spacing:5.632190pt;}
.ws8a{word-spacing:5.844725pt;}
.ws8b{word-spacing:5.897859pt;}
.ws49{word-spacing:5.950993pt;}
.ws5e{word-spacing:6.110395pt;}
.ws86{word-spacing:6.801135pt;}
.ws64{word-spacing:6.854269pt;}
.ws9{word-spacing:6.918010pt;}
.wsd1{word-spacing:7.029658pt;}
.ws36{word-spacing:7.332474pt;}
.ws2f{word-spacing:7.385607pt;}
.ws74{word-spacing:7.983467pt;}
.ws52{word-spacing:7.983878pt;}
.wsdb{word-spacing:8.122052pt;}
.wsf9{word-spacing:8.124126pt;}
.wsdf{word-spacing:8.125764pt;}
.wsf6{word-spacing:8.464282pt;}
.ws7{word-spacing:10.823338pt;}
.wsef{word-spacing:12.911616pt;}
.ws8{word-spacing:14.319536pt;}
.wsf3{word-spacing:16.832922pt;}
.wsd7{word-spacing:17.693696pt;}
.ws9b{word-spacing:19.301581pt;}
.wsa{word-spacing:23.208806pt;}
.ws6{word-spacing:23.858002pt;}
.ws65{word-spacing:24.175909pt;}
.ws37{word-spacing:25.663658pt;}
.ws7f{word-spacing:30.858857pt;}
.wsa9{word-spacing:32.390696pt;}
.ws8f{word-spacing:44.846740pt;}
.ws9e{word-spacing:54.115883pt;}
.ws9c{word-spacing:57.129257pt;}
.ws9d{word-spacing:57.130214pt;}
.wsae{word-spacing:69.362081pt;}
.ws7e{word-spacing:78.234993pt;}
.ws82{word-spacing:78.275052pt;}
.wsb0{word-spacing:81.604647pt;}
.wsad{word-spacing:81.679080pt;}
.wsa4{word-spacing:83.666512pt;}
.ws7d{word-spacing:85.545738pt;}
.ws81{word-spacing:85.585797pt;}
.wsb1{word-spacing:181.913090pt;}
.wsa5{word-spacing:365.559111pt;}
.ws73{word-spacing:517.417594pt;}
.ws83{word-spacing:523.952557pt;}
.ws5f{word-spacing:578.870784pt;}
.ws61{word-spacing:599.349333pt;}
.ws60{word-spacing:602.781184pt;}
.wsa0{word-spacing:606.038466pt;}
.ws9f{word-spacing:862.933551pt;}
.wsaf{word-spacing:1056.328906pt;}
.wsb2{word-spacing:1060.758625pt;}
._7{margin-left:-10.616218pt;}
._2b{margin-left:-7.098690pt;}
._e{margin-left:-6.168883pt;}
._c{margin-left:-5.212467pt;}
._39{margin-left:-4.319755pt;}
._1{margin-left:-3.421811pt;}
._2{margin-left:-2.417584pt;}
._0{margin-left:-0.967034pt;}
._1f{width:1.072118pt;}
._5{width:2.045648pt;}
._1e{width:3.127669pt;}
._33{width:10.185830pt;}
._3{width:11.530926pt;}
._1d{width:12.858396pt;}
._a{width:13.984909pt;}
._d{width:14.946634pt;}
._16{width:15.940017pt;}
._f{width:16.949703pt;}
._13{width:18.437452pt;}
._34{width:19.447773pt;}
._9{width:20.488470pt;}
._b{width:21.949747pt;}
._4{width:23.063232pt;}
._12{width:24.335311pt;}
._14{width:26.046219pt;}
._6{width:27.188522pt;}
._15{width:28.872938pt;}
._20{width:30.408544pt;}
._25{width:31.853743pt;}
._37{width:32.783929pt;}
._21{width:34.388236pt;}
._36{width:37.599466pt;}
._3a{width:39.571209pt;}
._26{width:40.462858pt;}
._38{width:44.088873pt;}
._24{width:45.462418pt;}
._8{width:48.989073pt;}
._35{width:54.993920pt;}
._22{width:58.353828pt;}
._2f{width:63.745126pt;}
._23{width:71.331477pt;}
._27{width:73.101132pt;}
._32{width:78.904320pt;}
._30{width:85.360128pt;}
._2e{width:102.671258pt;}
._29{width:108.611595pt;}
._2c{width:120.173670pt;}
._2a{width:123.122127pt;}
._2d{width:132.989645pt;}
._31{width:136.384922pt;}
._18{width:227.579187pt;}
._17{width:327.237734pt;}
._19{width:573.876134pt;}
._1a{width:632.717005pt;}
._1c{width:638.694605pt;}
._1b{width:650.649805pt;}
._10{width:665.018178pt;}
._28{width:2142.514400pt;}
._11{width:2163.767733pt;}
.fs26{font-size:14.147928pt;}
.fsd{font-size:20.029440pt;}
.fse{font-size:20.029453pt;}
.fs27{font-size:20.192134pt;}
.fs25{font-size:20.200507pt;}
.fs1d{font-size:21.527510pt;}
.fs1f{font-size:21.527515pt;}
.fs21{font-size:21.527521pt;}
.fs22{font-size:21.527524pt;}
.fs23{font-size:21.527528pt;}
.fs20{font-size:21.527529pt;}
.fs1e{font-size:21.527534pt;}
.fsc{font-size:23.367680pt;}
.fs10{font-size:25.964146pt;}
.fs14{font-size:25.964153pt;}
.fs13{font-size:25.964154pt;}
.fs15{font-size:25.964161pt;}
.fs12{font-size:25.964164pt;}
.fs16{font-size:25.964166pt;}
.fs17{font-size:25.964167pt;}
.fs11{font-size:25.964176pt;}
.fs1a{font-size:26.192160pt;}
.fs2b{font-size:26.421326pt;}
.fs2a{font-size:29.591337pt;}
.fs5{font-size:31.880533pt;}
.fs1b{font-size:32.012640pt;}
.fs19{font-size:32.368653pt;}
.fs0{font-size:37.193600pt;}
.fs1c{font-size:37.833120pt;}
.fs24{font-size:38.318986pt;}
.fs8{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fs9{font-size:42.077867pt;}
.fs2c{font-size:42.242632pt;}
.fs29{font-size:42.250808pt;}
.fs6{font-size:42.507200pt;}
.fs28{font-size:42.889236pt;}
.fs18{font-size:46.216205pt;}
.fs7{font-size:47.820800pt;}
.fs2e{font-size:49.646621pt;}
.fs2d{font-size:49.691904pt;}
.fsb{font-size:49.829333pt;}
.fsf{font-size:50.073598pt;}
.fs2{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fs1{font-size:91.124601pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y15f{bottom:0.119688pt;}
.y16b{bottom:0.137787pt;}
.y14a{bottom:2.085718pt;}
.y129{bottom:2.515566pt;}
.y18d{bottom:2.702285pt;}
.y17f{bottom:2.704750pt;}
.yd7{bottom:5.408281pt;}
.y149{bottom:13.911861pt;}
.y11f{bottom:14.929458pt;}
.yd9{bottom:15.191037pt;}
.y1b{bottom:16.528366pt;}
.y128{bottom:16.778978pt;}
.y15d{bottom:17.226192pt;}
.y159{bottom:17.226381pt;}
.y18c{bottom:18.024404pt;}
.y17e{bottom:18.040844pt;}
.yda{bottom:24.614888pt;}
.y160{bottom:25.231186pt;}
.yea{bottom:25.270808pt;}
.yf0{bottom:27.569896pt;}
.y4b{bottom:28.346667pt;}
.y16c{bottom:33.668065pt;}
.y11b{bottom:35.715775pt;}
.y169{bottom:36.030190pt;}
.y117{bottom:39.411431pt;}
.ye8{bottom:43.359958pt;}
.ydb{bottom:45.266782pt;}
.yeb{bottom:45.275127pt;}
.y108{bottom:45.730026pt;}
.y158{bottom:48.850992pt;}
.y15c{bottom:48.851055pt;}
.y10a{bottom:58.379332pt;}
.y147{bottom:63.265853pt;}
.ye7{bottom:68.889026pt;}
.ydc{bottom:69.619242pt;}
.yec{bottom:69.644279pt;}
.yd6{bottom:81.273872pt;}
.ya2{bottom:83.725333pt;}
.y1f8{bottom:84.177333pt;}
.y15b{bottom:84.353206pt;}
.y157{bottom:84.353395pt;}
.y143{bottom:85.383586pt;}
.y127{bottom:87.094611pt;}
.ycf{bottom:87.142667pt;}
.ye6{bottom:87.328715pt;}
.yd0{bottom:91.964000pt;}
.y193{bottom:92.106667pt;}
.y4a{bottom:92.108000pt;}
.y19{bottom:93.018667pt;}
.ydd{bottom:93.095414pt;}
.yed{bottom:93.132969pt;}
.y146{bottom:94.077714pt;}
.y83{bottom:94.086667pt;}
.y1a9{bottom:95.282667pt;}
.y109{bottom:97.955708pt;}
.y1f7{bottom:99.520000pt;}
.ya1{bottom:100.462667pt;}
.y168{bottom:102.175809pt;}
.y165{bottom:102.678667pt;}
.y10d{bottom:103.240135pt;}
.yce{bottom:103.878667pt;}
.y22e{bottom:108.233333pt;}
.y49{bottom:108.844000pt;}
.y18{bottom:108.920000pt;}
.y82{bottom:110.824000pt;}
.y10e{bottom:111.523424pt;}
.y116{bottom:111.764890pt;}
.ye5{bottom:111.802192pt;}
.y1a8{bottom:112.020000pt;}
.yde{bottom:113.262556pt;}
.yee{bottom:113.308457pt;}
.y1f6{bottom:114.862667pt;}
.ya0{bottom:117.200000pt;}
.y164{bottom:119.774667pt;}
.y11c{bottom:120.221869pt;}
.ycd{bottom:120.616000pt;}
.y140{bottom:123.458593pt;}
.y22d{bottom:123.576000pt;}
.y17{bottom:124.820000pt;}
.y48{bottom:125.581333pt;}
.yef{bottom:126.594652pt;}
.y81{bottom:127.561333pt;}
.y1a7{bottom:128.757333pt;}
.ye4{bottom:128.822960pt;}
.y1f5{bottom:130.205333pt;}
.y9f{bottom:133.937333pt;}
.y22c{bottom:138.918667pt;}
.y161{bottom:139.712000pt;}
.y15e{bottom:139.747463pt;}
.y14c{bottom:140.410140pt;}
.y16{bottom:140.720000pt;}
.ycc{bottom:141.338667pt;}
.ye3{bottom:141.625152pt;}
.y46{bottom:142.318667pt;}
.ye9{bottom:145.040514pt;}
.y1a6{bottom:145.494667pt;}
.y1f4{bottom:145.548000pt;}
.y47{bottom:147.141333pt;}
.y80{bottom:148.284000pt;}
.y9e{bottom:150.674667pt;}
.ye2{bottom:151.472961pt;}
.y22b{bottom:154.261333pt;}
.y15{bottom:156.621333pt;}
.ye1{bottom:159.000611pt;}
.y45{bottom:159.056000pt;}
.ycb{bottom:159.272000pt;}
.y126{bottom:159.448070pt;}
.y190{bottom:160.116093pt;}
.y1f3{bottom:160.890667pt;}
.y145{bottom:161.715986pt;}
.y1a5{bottom:162.232000pt;}
.ye0{bottom:164.583857pt;}
.y120{bottom:165.403490pt;}
.y144{bottom:165.763758pt;}
.y7f{bottom:166.217333pt;}
.y9d{bottom:167.412000pt;}
.y22a{bottom:169.604000pt;}
.y182{bottom:169.753686pt;}
.ydf{bottom:170.705320pt;}
.y14{bottom:172.521333pt;}
.y44{bottom:175.793333pt;}
.y15a{bottom:176.044584pt;}
.y1f2{bottom:176.233333pt;}
.y167{bottom:176.431065pt;}
.y13f{bottom:178.464397pt;}
.y1a4{bottom:178.969333pt;}
.y163{bottom:179.137641pt;}
.y142{bottom:180.207528pt;}
.y9c{bottom:184.149333pt;}
.y229{bottom:184.946667pt;}
.yf1{bottom:188.133665pt;}
.y13{bottom:188.421333pt;}
.yca{bottom:189.160000pt;}
.yd5{bottom:190.183950pt;}
.y1f1{bottom:191.576000pt;}
.y43{bottom:192.530667pt;}
.y115{bottom:192.989438pt;}
.y113{bottom:193.948813pt;}
.y1a3{bottom:195.706667pt;}
.y7e{bottom:196.105333pt;}
.y228{bottom:200.289333pt;}
.y9b{bottom:200.886667pt;}
.y181{bottom:201.005613pt;}
.y12{bottom:204.322667pt;}
.y11d{bottom:204.735238pt;}
.y18e{bottom:204.773717pt;}
.y17c{bottom:206.078667pt;}
.y1f0{bottom:206.917333pt;}
.y10f{bottom:207.295834pt;}
.y42{bottom:209.268000pt;}
.y141{bottom:209.705612pt;}
.y1a2{bottom:212.444000pt;}
.y7d{bottom:212.841333pt;}
.y10b{bottom:214.774955pt;}
.y227{bottom:215.632000pt;}
.y9a{bottom:217.624000pt;}
.y123{bottom:218.576000pt;}
.y180{bottom:219.616813pt;}
.yc9{bottom:219.845333pt;}
.y1ef{bottom:222.260000pt;}
.y17b{bottom:222.816000pt;}
.y10c{bottom:224.094646pt;}
.y18f{bottom:225.227388pt;}
.y41{bottom:226.005333pt;}
.y112{bottom:226.547537pt;}
.y1a1{bottom:229.181333pt;}
.y106{bottom:229.220000pt;}
.y7c{bottom:229.578667pt;}
.y226{bottom:230.974667pt;}
.y99{bottom:234.361333pt;}
.y122{bottom:235.672000pt;}
.y1ee{bottom:237.602667pt;}
.y110{bottom:239.039183pt;}
.y17a{bottom:239.553333pt;}
.y125{bottom:240.672617pt;}
.y40{bottom:242.742667pt;}
.y1a0{bottom:245.918667pt;}
.y105{bottom:245.957333pt;}
.y7b{bottom:246.316000pt;}
.yc8{bottom:250.529333pt;}
.y98{bottom:251.098667pt;}
.y1ed{bottom:252.945333pt;}
.y1c0{bottom:254.246667pt;}
.y11a{bottom:255.609333pt;}
.y178{bottom:256.290667pt;}
.y14d{bottom:258.273371pt;}
.y3f{bottom:259.480000pt;}
.y179{bottom:261.113333pt;}
.y225{bottom:261.658667pt;}
.y19f{bottom:262.656000pt;}
.y104{bottom:262.694667pt;}
.y7a{bottom:263.053333pt;}
.y111{bottom:264.652106pt;}
.y11{bottom:266.804000pt;}
.yc7{bottom:267.266667pt;}
.y1ec{bottom:268.288000pt;}
.y97{bottom:271.821333pt;}
.y177{bottom:273.028000pt;}
.y3e{bottom:276.217333pt;}
.y224{bottom:277.001333pt;}
.y1bf{bottom:277.838667pt;}
.y19e{bottom:279.393333pt;}
.y103{bottom:279.432000pt;}
.y79{bottom:279.790667pt;}
.y10{bottom:282.705333pt;}
.y1eb{bottom:283.630667pt;}
.yc6{bottom:284.004000pt;}
.y11e{bottom:289.241332pt;}
.y223{bottom:292.344000pt;}
.y3d{bottom:292.954667pt;}
.y1be{bottom:293.460000pt;}
.y176{bottom:293.750667pt;}
.y19d{bottom:296.129333pt;}
.y102{bottom:296.169333pt;}
.y78{bottom:296.528000pt;}
.yf{bottom:298.605333pt;}
.y1ea{bottom:298.973333pt;}
.yc5{bottom:300.741333pt;}
.y96{bottom:301.709333pt;}
.y222{bottom:307.686667pt;}
.y1bd{bottom:309.081333pt;}
.y3c{bottom:309.692000pt;}
.y19c{bottom:312.866667pt;}
.y101{bottom:312.906667pt;}
.y77{bottom:313.265333pt;}
.y1e9{bottom:314.316000pt;}
.ye{bottom:314.505333pt;}
.y13d{bottom:316.126667pt;}
.yc4{bottom:317.478667pt;}
.y14b{bottom:321.875891pt;}
.y221{bottom:323.029333pt;}
.y175{bottom:323.638667pt;}
.y1bc{bottom:324.702667pt;}
.y3b{bottom:326.429333pt;}
.y19b{bottom:329.604000pt;}
.yff{bottom:329.644000pt;}
.y1e8{bottom:329.658667pt;}
.y76{bottom:330.002667pt;}
.y13c{bottom:332.864000pt;}
.y100{bottom:334.466667pt;}
.y156{bottom:335.092010pt;}
.y162{bottom:338.185255pt;}
.yc3{bottom:338.201333pt;}
.y220{bottom:338.372000pt;}
.yd{bottom:338.376000pt;}
.y1bb{bottom:340.324000pt;}
.y174{bottom:340.376000pt;}
.y3a{bottom:343.166667pt;}
.y1e7{bottom:345.000000pt;}
.y19a{bottom:346.341333pt;}
.yfe{bottom:346.381333pt;}
.y75{bottom:346.740000pt;}
.y192{bottom:347.152000pt;}
.y95{bottom:349.132000pt;}
.y13b{bottom:349.601333pt;}
.y21f{bottom:353.714667pt;}
.yc{bottom:354.277333pt;}
.y121{bottom:355.915076pt;}
.y1ba{bottom:355.946667pt;}
.y173{bottom:357.113333pt;}
.y39{bottom:359.904000pt;}
.y1e6{bottom:360.342667pt;}
.y199{bottom:363.078667pt;}
.yfd{bottom:363.118667pt;}
.y74{bottom:363.477333pt;}
.y139{bottom:366.338667pt;}
.yc2{bottom:368.089333pt;}
.y21e{bottom:369.056000pt;}
.yb{bottom:370.177333pt;}
.y13a{bottom:371.160000pt;}
.y172{bottom:373.850667pt;}
.y191{bottom:374.198667pt;}
.y1e5{bottom:375.685333pt;}
.y1b9{bottom:379.537333pt;}
.y94{bottom:379.816000pt;}
.yfc{bottom:379.856000pt;}
.y73{bottom:380.214667pt;}
.y38{bottom:380.626667pt;}
.y137{bottom:383.076000pt;}
.y21d{bottom:384.398667pt;}
.yc1{bottom:384.826667pt;}
.y138{bottom:387.897333pt;}
.y171{bottom:390.588000pt;}
.y1e4{bottom:391.028000pt;}
.y18b{bottom:394.134667pt;}
.ya{bottom:395.376000pt;}
.y93{bottom:396.553333pt;}
.yfb{bottom:396.593333pt;}
.y72{bottom:396.952000pt;}
.y21c{bottom:399.741333pt;}
.y136{bottom:399.813333pt;}
.y198{bottom:400.538667pt;}
.yc0{bottom:401.564000pt;}
.y1b8{bottom:403.129333pt;}
.y1e3{bottom:406.370667pt;}
.y170{bottom:407.325333pt;}
.y92{bottom:413.290667pt;}
.yf9{bottom:413.330667pt;}
.y71{bottom:413.689333pt;}
.y21b{bottom:415.084000pt;}
.y135{bottom:416.550667pt;}
.yfa{bottom:418.152000pt;}
.ybf{bottom:418.301333pt;}
.y9{bottom:419.246667pt;}
.y1e2{bottom:421.713333pt;}
.y16f{bottom:424.062667pt;}
.y1b7{bottom:426.721333pt;}
.y91{bottom:430.028000pt;}
.yf8{bottom:430.068000pt;}
.y70{bottom:430.426667pt;}
.y134{bottom:433.288000pt;}
.ybe{bottom:435.038667pt;}
.y8{bottom:435.146667pt;}
.y1e1{bottom:437.056000pt;}
.y1b6{bottom:442.342667pt;}
.y21a{bottom:445.769333pt;}
.y90{bottom:446.765333pt;}
.yf7{bottom:446.805333pt;}
.y6f{bottom:447.164000pt;}
.y37{bottom:447.426667pt;}
.y133{bottom:450.025333pt;}
.y7{bottom:451.048000pt;}
.ybd{bottom:451.776000pt;}
.y1e0{bottom:452.398667pt;}
.y16e{bottom:453.898667pt;}
.y1b5{bottom:457.964000pt;}
.y219{bottom:461.112000pt;}
.y8f{bottom:463.502667pt;}
.yf6{bottom:463.542667pt;}
.y6d{bottom:463.901333pt;}
.y36{bottom:464.721333pt;}
.y132{bottom:466.762667pt;}
.y6{bottom:466.948000pt;}
.y1df{bottom:467.740000pt;}
.ybc{bottom:468.513333pt;}
.y6e{bottom:468.722667pt;}
.y16d{bottom:470.994667pt;}
.y218{bottom:476.454667pt;}
.y8e{bottom:480.240000pt;}
.yf4{bottom:480.280000pt;}
.y6b{bottom:480.638667pt;}
.y1b4{bottom:481.554667pt;}
.y5{bottom:482.848000pt;}
.y1de{bottom:483.082667pt;}
.y131{bottom:483.500000pt;}
.yf5{bottom:485.101333pt;}
.ybb{bottom:485.250667pt;}
.y6c{bottom:485.460000pt;}
.y16a{bottom:490.935606pt;}
.y217{bottom:491.797333pt;}
.y8d{bottom:496.977333pt;}
.y1b3{bottom:497.177333pt;}
.y6a{bottom:497.376000pt;}
.y35{bottom:497.957333pt;}
.y1dd{bottom:498.425333pt;}
.y4{bottom:498.749333pt;}
.y130{bottom:500.237333pt;}
.yf3{bottom:501.002667pt;}
.yba{bottom:501.988000pt;}
.y197{bottom:502.197333pt;}
.y216{bottom:507.138667pt;}
.y155{bottom:508.105333pt;}
.y1b2{bottom:512.798667pt;}
.y8c{bottom:513.714667pt;}
.y1dc{bottom:513.768000pt;}
.y69{bottom:514.113333pt;}
.y3{bottom:514.649333pt;}
.y34{bottom:515.252000pt;}
.y12f{bottom:516.974667pt;}
.yb8{bottom:518.725333pt;}
.y215{bottom:522.481333pt;}
.yb9{bottom:523.546667pt;}
.y154{bottom:524.842667pt;}
.yf2{bottom:528.049333pt;}
.y1b1{bottom:528.420000pt;}
.y1db{bottom:529.110667pt;}
.y8a{bottom:530.452000pt;}
.y2{bottom:530.549333pt;}
.y68{bottom:530.850667pt;}
.y33{bottom:532.546667pt;}
.y12e{bottom:533.710667pt;}
.y8b{bottom:535.273333pt;}
.yb7{bottom:535.461333pt;}
.y196{bottom:535.672000pt;}
.y214{bottom:537.824000pt;}
.y166{bottom:540.273860pt;}
.y153{bottom:541.580000pt;}
.y1b0{bottom:544.041333pt;}
.y1da{bottom:544.453333pt;}
.y1{bottom:546.450667pt;}
.y89{bottom:547.189333pt;}
.y67{bottom:547.588000pt;}
.yd8{bottom:547.985333pt;}
.y32{bottom:549.842667pt;}
.yd4{bottom:549.956650pt;}
.y12d{bottom:550.448000pt;}
.yb6{bottom:552.198667pt;}
.y195{bottom:552.409333pt;}
.y213{bottom:553.166667pt;}
.y152{bottom:558.317333pt;}
.y1af{bottom:559.662667pt;}
.y1d9{bottom:559.796000pt;}
.y88{bottom:563.926667pt;}
.y66{bottom:564.325333pt;}
.y30{bottom:567.137333pt;}
.y12c{bottom:567.185333pt;}
.y212{bottom:568.509333pt;}
.yb5{bottom:568.936000pt;}
.y31{bottom:571.477333pt;}
.y151{bottom:575.054667pt;}
.y1d8{bottom:575.138667pt;}
.y65{bottom:581.062667pt;}
.y1ae{bottom:583.254667pt;}
.y211{bottom:583.852000pt;}
.y2f{bottom:584.433333pt;}
.y87{bottom:584.649333pt;}
.yb4{bottom:585.673333pt;}
.y1d7{bottom:590.481333pt;}
.y150{bottom:595.776000pt;}
.y12b{bottom:597.022667pt;}
.y64{bottom:597.800000pt;}
.y210{bottom:599.194667pt;}
.y1ad{bottom:599.293333pt;}
.y1ac{bottom:599.294667pt;}
.y2e{bottom:601.728000pt;}
.yb3{bottom:602.410667pt;}
.y1d6{bottom:605.822667pt;}
.y12a{bottom:614.117333pt;}
.y63{bottom:614.537333pt;}
.y2d{bottom:619.022667pt;}
.yb2{bottom:619.148000pt;}
.y1d5{bottom:621.165333pt;}
.y14f{bottom:622.822667pt;}
.y20f{bottom:629.878667pt;}
.y62{bottom:631.274667pt;}
.y124{bottom:634.054667pt;}
.y2c{bottom:636.318667pt;}
.y1d4{bottom:636.508000pt;}
.y14e{bottom:639.918667pt;}
.y119{bottom:644.696000pt;}
.y20e{bottom:645.221333pt;}
.y61{bottom:648.012000pt;}
.y18a{bottom:649.436000pt;}
.y1d3{bottom:651.850667pt;}
.y2b{bottom:653.613333pt;}
.yb1{bottom:659.558667pt;}
.y148{bottom:659.856000pt;}
.y20d{bottom:660.564000pt;}
.y118{bottom:661.790667pt;}
.y60{bottom:664.749333pt;}
.y189{bottom:666.173333pt;}
.y1d2{bottom:667.193333pt;}
.y194{bottom:669.570667pt;}
.y2a{bottom:670.908000pt;}
.yb0{bottom:674.170667pt;}
.y20c{bottom:675.906667pt;}
.y5f{bottom:681.485333pt;}
.y114{bottom:681.728000pt;}
.y1d1{bottom:682.536000pt;}
.y187{bottom:682.910667pt;}
.y107{bottom:685.544587pt;}
.y188{bottom:687.733333pt;}
.y29{bottom:688.204000pt;}
.yaf{bottom:688.782667pt;}
.y20b{bottom:691.249333pt;}
.y1d0{bottom:697.878667pt;}
.y5e{bottom:698.222667pt;}
.y185{bottom:699.648000pt;}
.y13e{bottom:702.555776pt;}
.yae{bottom:703.394667pt;}
.y186{bottom:704.470667pt;}
.y28{bottom:705.498667pt;}
.y20a{bottom:706.592000pt;}
.y1cf{bottom:713.221333pt;}
.y5d{bottom:714.960000pt;}
.yad{bottom:718.006667pt;}
.y184{bottom:720.370667pt;}
.y209{bottom:721.934667pt;}
.y1ce{bottom:728.562667pt;}
.y5c{bottom:731.697333pt;}
.y208{bottom:737.277333pt;}
.yac{bottom:739.286667pt;}
.y27{bottom:739.640000pt;}
.y1cd{bottom:743.905333pt;}
.y183{bottom:747.417333pt;}
.y5b{bottom:748.434667pt;}
.y207{bottom:752.620000pt;}
.yab{bottom:753.898667pt;}
.y26{bottom:757.844000pt;}
.y1cc{bottom:759.248000pt;}
.y5a{bottom:765.172000pt;}
.y17d{bottom:767.354667pt;}
.y206{bottom:767.961333pt;}
.y25{bottom:768.332000pt;}
.y1cb{bottom:778.576000pt;}
.y59{bottom:781.909333pt;}
.yaa{bottom:782.004000pt;}
.y205{bottom:783.304000pt;}
.y24{bottom:786.536000pt;}
.y58{bottom:798.646667pt;}
.y23{bottom:800.882667pt;}
.y86{bottom:803.469333pt;}
.y1ca{bottom:810.294667pt;}
.y22{bottom:811.370667pt;}
.y204{bottom:813.989333pt;}
.ya9{bottom:814.985333pt;}
.y57{bottom:815.384000pt;}
.y1c9{bottom:825.916000pt;}
.y203{bottom:829.332000pt;}
.y21{bottom:829.574667pt;}
.ya8{bottom:831.722667pt;}
.y56{bottom:832.121333pt;}
.y85{bottom:836.944000pt;}
.y1c8{bottom:841.537333pt;}
.y202{bottom:844.674667pt;}
.ya7{bottom:848.460000pt;}
.y55{bottom:848.858667pt;}
.y1ab{bottom:853.681333pt;}
.y1c7{bottom:857.158667pt;}
.y201{bottom:860.017333pt;}
.ya6{bottom:865.197333pt;}
.y54{bottom:865.596000pt;}
.y20{bottom:869.129333pt;}
.y1aa{bottom:870.417333pt;}
.y1c6{bottom:872.780000pt;}
.y200{bottom:875.360000pt;}
.ya5{bottom:881.934667pt;}
.y53{bottom:882.333333pt;}
.y1f{bottom:885.866667pt;}
.y1c5{bottom:888.401333pt;}
.y1fe{bottom:890.701333pt;}
.y1ff{bottom:890.702667pt;}
.ya4{bottom:898.672000pt;}
.y52{bottom:899.070667pt;}
.y1c4{bottom:904.022667pt;}
.y1fd{bottom:906.044000pt;}
.y51{bottom:915.808000pt;}
.ya3{bottom:919.394667pt;}
.y1c3{bottom:919.644000pt;}
.yd3{bottom:920.629333pt;}
.y1e{bottom:921.350667pt;}
.y1fc{bottom:921.386667pt;}
.y50{bottom:932.545333pt;}
.y1c2{bottom:935.265333pt;}
.y1fb{bottom:936.729333pt;}
.y84{bottom:937.366667pt;}
.y1d{bottom:946.457333pt;}
.y4f{bottom:949.282667pt;}
.y1fa{bottom:952.072000pt;}
.yd2{bottom:954.104000pt;}
.y1c1{bottom:963.150667pt;}
.y4e{bottom:966.020000pt;}
.y1f9{bottom:967.414667pt;}
.y1c{bottom:971.562667pt;}
.y4d{bottom:982.757333pt;}
.yd1{bottom:987.578667pt;}
.y1a{bottom:1010.217333pt;}
.y4c{bottom:1038.548000pt;}
.h18{height:14.581980pt;}
.h1a{height:14.581990pt;}
.h41{height:14.720066pt;}
.h40{height:14.860933pt;}
.h31{height:15.693555pt;}
.h33{height:15.693559pt;}
.h35{height:15.693563pt;}
.h36{height:15.693565pt;}
.h37{height:15.693568pt;}
.h34{height:15.693569pt;}
.h32{height:15.693572pt;}
.h17{height:17.012310pt;}
.h3e{height:17.350278pt;}
.h1f{height:18.927862pt;}
.h23{height:18.927867pt;}
.h22{height:18.927869pt;}
.h24{height:18.927874pt;}
.h21{height:18.927875pt;}
.h25{height:18.927877pt;}
.h26{height:18.927878pt;}
.h20{height:18.927884pt;}
.hd{height:19.029065pt;}
.h2a{height:19.094085pt;}
.h47{height:19.261147pt;}
.h10{height:20.660233pt;}
.h9{height:23.209028pt;}
.h2b{height:23.337215pt;}
.h2{height:27.076941pt;}
.h15{height:27.184641pt;}
.h3{height:27.262909pt;}
.h2c{height:27.580344pt;}
.h39{height:27.934541pt;}
.h3f{height:28.990010pt;}
.h48{height:30.794879pt;}
.ha{height:30.945242pt;}
.h11{height:31.157778pt;}
.h43{height:31.266253pt;}
.h2f{height:33.691613pt;}
.hb{height:34.574438pt;}
.hc{height:34.813542pt;}
.h1c{height:35.052646pt;}
.h4d{height:36.192387pt;}
.h4a{height:36.225398pt;}
.h45{height:36.288318pt;}
.h14{height:37.372000pt;}
.h1b{height:38.044199pt;}
.he{height:38.415786pt;}
.hf{height:38.681455pt;}
.h6{height:38.947124pt;}
.h2e{height:39.694758pt;}
.h28{height:39.694759pt;}
.h1d{height:39.945566pt;}
.h4b{height:39.950899pt;}
.h13{height:41.524400pt;}
.h46{height:41.530699pt;}
.h4{height:45.272024pt;}
.h8{height:48.486756pt;}
.h3c{height:50.754263pt;}
.h12{height:51.339332pt;}
.h3a{height:57.211491pt;}
.h3b{height:60.656612pt;}
.h5{height:61.782479pt;}
.h7{height:69.148877pt;}
.h3d{height:137.443870pt;}
.h16{height:204.301123pt;}
.h19{height:212.911364pt;}
.h49{height:228.685120pt;}
.h4c{height:234.287424pt;}
.h30{height:280.503645pt;}
.h44{height:287.474728pt;}
.h1e{height:306.680147pt;}
.h27{height:314.310581pt;}
.h38{height:336.188104pt;}
.h42{height:347.379787pt;}
.h2d{height:361.983664pt;}
.h29{height:366.690240pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wc{width:116.635128pt;}
.wb{width:137.444501pt;}
.w3{width:186.944016pt;}
.w2{width:188.033730pt;}
.w5{width:204.301123pt;}
.wf{width:252.505714pt;}
.w9{width:254.275837pt;}
.wa{width:261.918160pt;}
.we{width:287.474728pt;}
.wd{width:288.117173pt;}
.w6{width:306.680147pt;}
.w7{width:314.310581pt;}
.w11{width:340.507020pt;}
.w10{width:340.507413pt;}
.w4{width:366.680699pt;}
.w8{width:366.690240pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x68{left:-1.202052pt;}
.x0{left:0.000000pt;}
.xaf{left:2.562579pt;}
.xa9{left:3.853426pt;}
.xaa{left:6.502496pt;}
.x7d{left:11.431870pt;}
.x92{left:13.484888pt;}
.x7c{left:17.250505pt;}
.xa7{left:18.386715pt;}
.x95{left:21.488083pt;}
.x91{left:24.406801pt;}
.x70{left:30.607235pt;}
.x8b{left:35.001202pt;}
.x6f{left:39.872520pt;}
.xab{left:41.130902pt;}
.x93{left:42.748952pt;}
.x3{left:46.426667pt;}
.x1{left:47.621333pt;}
.xb7{left:49.308746pt;}
.x2{left:50.765941pt;}
.x81{left:57.394051pt;}
.x6e{left:60.669755pt;}
.x71{left:62.725403pt;}
.x7b{left:64.464443pt;}
.x8c{left:68.637122pt;}
.x6d{left:72.645690pt;}
.xa8{left:74.458310pt;}
.x6c{left:75.370529pt;}
.xdc{left:76.309333pt;}
.x72{left:78.786425pt;}
.x69{left:81.273371pt;}
.xa4{left:83.705522pt;}
.x67{left:87.703239pt;}
.x80{left:89.432809pt;}
.xa5{left:91.673694pt;}
.x73{left:94.847452pt;}
.x8d{left:97.122691pt;}
.xb8{left:100.024266pt;}
.x74{left:110.904423pt;}
.xbd{left:112.196869pt;}
.x96{left:114.152006pt;}
.x7f{left:122.218497pt;}
.x82{left:123.205782pt;}
.x7e{left:124.947509pt;}
.x75{left:126.965616pt;}
.x7a{left:130.460250pt;}
.xad{left:132.655649pt;}
.xac{left:135.766584pt;}
.x8e{left:141.743398pt;}
.x76{left:143.026643pt;}
.x90{left:145.105548pt;}
.x8f{left:148.508569pt;}
.x77{left:159.087670pt;}
.x88{left:163.909723pt;}
.x78{left:165.724215pt;}
.x79{left:172.146069pt;}
.x94{left:187.975312pt;}
.x89{left:189.478650pt;}
.x6b{left:190.552287pt;}
.xa6{left:194.475974pt;}
.x6a{left:196.370922pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x87{left:225.675254pt;}
.x62{left:232.017333pt;}
.xcc{left:232.949333pt;}
.xae{left:234.946960pt;}
.x63{left:238.066667pt;}
.x5{left:239.924000pt;}
.x99{left:242.153333pt;}
.x37{left:244.928000pt;}
.xbe{left:246.631675pt;}
.xd7{left:248.290667pt;}
.xd{left:250.204000pt;}
.xcd{left:256.208000pt;}
.xb9{left:258.265839pt;}
.xa0{left:261.617333pt;}
.x8a{left:265.656775pt;}
.x38{left:268.750667pt;}
.x56{left:272.977333pt;}
.xd9{left:274.582667pt;}
.x7{left:275.517333pt;}
.x97{left:276.864000pt;}
.x9a{left:278.370667pt;}
.xc6{left:279.296000pt;}
.xc{left:284.374667pt;}
.x9b{left:286.981333pt;}
.x35{left:289.721333pt;}
.x39{left:291.820000pt;}
.x85{left:294.681333pt;}
.x57{left:299.326667pt;}
.x3a{left:301.210667pt;}
.x36{left:303.004000pt;}
.xbb{left:304.724000pt;}
.x58{left:306.176000pt;}
.x22{left:309.998667pt;}
.x23{left:316.640000pt;}
.x24{left:319.894667pt;}
.xd8{left:321.849333pt;}
.x98{left:323.534667pt;}
.x45{left:330.630667pt;}
.x9c{left:332.268000pt;}
.x25{left:333.178667pt;}
.x16{left:334.350667pt;}
.x26{left:336.432000pt;}
.x17{left:340.992000pt;}
.xbc{left:345.212000pt;}
.x18{left:347.581333pt;}
.x27{left:349.716000pt;}
.x28{left:352.970667pt;}
.x19{left:354.222667pt;}
.x9d{left:362.738667pt;}
.x8{left:364.538667pt;}
.x29{left:366.253333pt;}
.x48{left:367.306667pt;}
.x5d{left:370.194667pt;}
.x9e{left:371.349333pt;}
.x9{left:373.152000pt;}
.x2f{left:376.270667pt;}
.x49{left:380.192000pt;}
.x86{left:383.300000pt;}
.x84{left:388.502667pt;}
.x4b{left:395.762667pt;}
.xca{left:397.361333pt;}
.x30{left:398.400000pt;}
.xa{left:400.737333pt;}
.xcb{left:403.412000pt;}
.x59{left:404.432000pt;}
.x5e{left:405.678667pt;}
.x1a{left:407.837333pt;}
.xb{left:409.350667pt;}
.x5a{left:410.481333pt;}
.xc8{left:413.590667pt;}
.x1b{left:421.121333pt;}
.x10{left:424.032000pt;}
.x4a{left:425.593333pt;}
.x5f{left:429.076000pt;}
.x11{left:430.673333pt;}
.x43{left:433.284000pt;}
.xc9{left:436.124000pt;}
.x2a{left:440.844000pt;}
.x44{left:446.566667pt;}
.xd2{left:450.306667pt;}
.x54{left:452.178667pt;}
.x2b{left:454.126667pt;}
.x5c{left:460.532000pt;}
.xd3{left:463.590667pt;}
.x55{left:465.462667pt;}
.xd4{left:466.977333pt;}
.xc2{left:473.437333pt;}
.xc7{left:474.480000pt;}
.x64{left:476.544000pt;}
.x12{left:477.450667pt;}
.xd5{left:480.261333pt;}
.xce{left:481.428000pt;}
.x13{left:486.581333pt;}
.x65{left:492.957333pt;}
.xcf{left:494.710667pt;}
.x66{left:499.008000pt;}
.x9f{left:500.694667pt;}
.xc3{left:506.772000pt;}
.x52{left:511.268000pt;}
.xdb{left:512.208000pt;}
.x4c{left:520.813333pt;}
.x53{left:524.550667pt;}
.x4d{left:534.096000pt;}
.x4e{left:537.350667pt;}
.xe{left:539.438667pt;}
.x33{left:542.089333pt;}
.xf{left:546.081333pt;}
.x1e{left:547.410667pt;}
.x4f{left:550.634667pt;}
.xb0{left:553.818667pt;}
.x34{left:555.373333pt;}
.x1f{left:560.694667pt;}
.xb1{left:562.665333pt;}
.x40{left:566.308000pt;}
.x1c{left:568.872000pt;}
.x1d{left:575.513333pt;}
.x3b{left:580.638667pt;}
.x83{left:584.978667pt;}
.xe1{left:590.992000pt;}
.x3c{left:593.921333pt;}
.xb2{left:600.165333pt;}
.xd6{left:602.984000pt;}
.xb3{left:609.012000pt;}
.xd0{left:611.150667pt;}
.xe2{left:614.902667pt;}
.x41{left:616.288000pt;}
.xc4{left:619.685333pt;}
.xd1{left:624.433333pt;}
.x42{left:627.060000pt;}
.x2c{left:629.712000pt;}
.xc5{left:632.969333pt;}
.xbf{left:634.145333pt;}
.x2d{left:635.761333pt;}
.x3d{left:637.993333pt;}
.xb4{left:640.004000pt;}
.xe3{left:645.549333pt;}
.xa1{left:647.136000pt;}
.x14{left:648.322667pt;}
.xc0{left:650.816000pt;}
.x5b{left:652.052000pt;}
.x15{left:654.964000pt;}
.xdd{left:656.004000pt;}
.xa2{left:657.440000pt;}
.xc1{left:664.100000pt;}
.x2e{left:668.420000pt;}
.xe4{left:669.458667pt;}
.x3e{left:677.804000pt;}
.xb5{left:678.864000pt;}
.xde{left:679.914667pt;}
.x20{left:685.682667pt;}
.x3f{left:686.685333pt;}
.xb6{left:687.710667pt;}
.xa3{left:697.340000pt;}
.x60{left:702.862667pt;}
.x61{left:708.912000pt;}
.x31{left:712.116000pt;}
.xda{left:714.522667pt;}
.x46{left:715.504000pt;}
.x32{left:718.165333pt;}
.xdf{left:720.236000pt;}
.x47{left:721.554667pt;}
.xba{left:722.490667pt;}
.x50{left:726.842667pt;}
.x21{left:731.016000pt;}
.x51{left:740.126667pt;}
.xe0{left:744.146667pt;}
}




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