
    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_1572fcd1fb30e5ab0d08e56f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5c9ef541c58880bf1a973822.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_de04ea1d9fe3a4ba589af704.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7d8743006d2edda36eab39b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913086;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_79f757e38f50ed619d2d4f12.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113281;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_8c54e3002f55c88330905206.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_12ef910818e471530aea55d5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_371af47c8c28198eca444827.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_06bd4ed1d2f927d52cda1175.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.870605;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_af02fcc679b468bb72ae1492.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_838c7d8cf5fd9646e4dc53a8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.718750;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_f7dcb5e9ca848f38acffa206.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6bc870952337f26e11887632.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.895996;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_438794632859d3a2786ff73d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.809082;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_22335f27ff21cd6bca507d13.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_85f910aab09d65fe5023fd64.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.682617;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_495f435451487e1cc82b6aa8.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.926758;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_f43aece90aff885dc868b771.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5f703c5acb7c126d9c19e81e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.113281;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_aa1d5cad8bcde85111cad26c.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_63a53a54ff0eb5422ecb80d7.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_432f20aca45aa81f01c6ad1e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_c416d5041d416fe634204cb7.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_d072fe910903250cd5a9eb58.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.974609;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_d95178723bc8b93abcea942f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_88164e71f93166f80007aea7.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.809082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_03a4b759fbe89f290719dcb6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_5ad602b28b27b325980f70e3.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.104492;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;}
.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);}
.v3{vertical-align:-50.400000px;}
.v4{vertical-align:-47.520000px;}
.v2{vertical-align:-28.800000px;}
.v1{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.ls37{letter-spacing:-0.968544px;}
.ls36{letter-spacing:-0.930240px;}
.ls1c{letter-spacing:-0.913824px;}
.ls3c{letter-spacing:-0.900000px;}
.ls19{letter-spacing:-0.787968px;}
.ls1b{letter-spacing:-0.782496px;}
.ls1a{letter-spacing:-0.705888px;}
.ls1d{letter-spacing:-0.634752px;}
.ls25{letter-spacing:-0.530784px;}
.ls1f{letter-spacing:-0.421344px;}
.ls24{letter-spacing:-0.404928px;}
.ls34{letter-spacing:-0.399168px;}
.ls18{letter-spacing:-0.383040px;}
.ls11{letter-spacing:-0.381024px;}
.ls22{letter-spacing:-0.366624px;}
.ls33{letter-spacing:-0.338688px;}
.ls20{letter-spacing:-0.333792px;}
.ls9{letter-spacing:-0.320544px;}
.ls3{letter-spacing:-0.318384px;}
.ls21{letter-spacing:-0.306432px;}
.lsf{letter-spacing:-0.302400px;}
.ls23{letter-spacing:-0.273600px;}
.ls2a{letter-spacing:-0.272160px;}
.lsc{letter-spacing:-0.260064px;}
.lsa{letter-spacing:-0.241920px;}
.ls17{letter-spacing:-0.229824px;}
.ls12{letter-spacing:-0.217728px;}
.ls13{letter-spacing:-0.181440px;}
.ls27{letter-spacing:-0.175104px;}
.lsb{letter-spacing:-0.157248px;}
.ls10{letter-spacing:-0.145152px;}
.ls2d{letter-spacing:-0.120960px;}
.ls4{letter-spacing:-0.014400px;}
.ls26{letter-spacing:-0.005472px;}
.ls2{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.000576px;}
.ls38{letter-spacing:0.001440px;}
.ls2b{letter-spacing:0.006912px;}
.ls2e{letter-spacing:0.007056px;}
.ls3b{letter-spacing:0.007200px;}
.ls29{letter-spacing:0.010080px;}
.lsd{letter-spacing:0.010944px;}
.ls0{letter-spacing:0.014400px;}
.ls35{letter-spacing:0.060192px;}
.ls28{letter-spacing:0.109440px;}
.ls16{letter-spacing:0.125280px;}
.ls14{letter-spacing:0.125568px;}
.ls32{letter-spacing:0.149760px;}
.ls15{letter-spacing:0.261360px;}
.ls31{letter-spacing:2.484000px;}
.ls2f{letter-spacing:3.081600px;}
.ls6{letter-spacing:4.438080px;}
.ls8{letter-spacing:14.415264px;}
.ls5{letter-spacing:15.843456px;}
.lse{letter-spacing:24.189120px;}
.ls7{letter-spacing:30.607200px;}
.ls2c{letter-spacing:44.777088px;}
.ls1e{letter-spacing:93.930360px;}
.ls30{letter-spacing:98.016480px;}
.ls3a{letter-spacing:117.223776px;}
.ls1{letter-spacing:847.728000px;}
.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;}
}
.ws0{word-spacing:-20.030400px;}
.ws26{word-spacing:-20.023200px;}
.ws2{word-spacing:-20.016000px;}
.ws3{word-spacing:-20.001600px;}
.ws6{word-spacing:-16.813440px;}
.ws21{word-spacing:-16.668288px;}
.ws22{word-spacing:-16.571520px;}
.ws4{word-spacing:-16.553376px;}
.ws7{word-spacing:-16.511040px;}
.ws5{word-spacing:-16.492896px;}
.ws1f{word-spacing:-16.474752px;}
.ws20{word-spacing:-16.432416px;}
.ws23{word-spacing:-16.414272px;}
.ws8{word-spacing:-13.487040px;}
.ws16{word-spacing:-12.366720px;}
.ws1a{word-spacing:-12.361248px;}
.ws1b{word-spacing:-12.191616px;}
.ws15{word-spacing:-11.983680px;}
.ws19{word-spacing:-11.835936px;}
.wsd{word-spacing:-11.731968px;}
.wsf{word-spacing:-11.584224px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:0.328320px;}
.ws1e{word-spacing:11.676960px;}
.ws10{word-spacing:68.649720px;}
.ws11{word-spacing:73.532064px;}
.wse{word-spacing:73.532664px;}
.wsc{word-spacing:167.681520px;}
.ws1d{word-spacing:183.884520px;}
.ws25{word-spacing:215.104512px;}
.ws24{word-spacing:243.585384px;}
.ws17{word-spacing:273.295920px;}
.ws18{word-spacing:273.296520px;}
.ws12{word-spacing:356.858520px;}
.ws13{word-spacing:370.537920px;}
.ws14{word-spacing:383.452440px;}
.ws1c{word-spacing:785.152440px;}
.ws9{word-spacing:823.079160px;}
.wsa{word-spacing:836.759160px;}
._20{margin-left:-5.959008px;}
._2{margin-left:-4.773600px;}
._14{margin-left:-3.724128px;}
._1c{margin-left:-2.582640px;}
._a{margin-left:-1.157904px;}
._1{width:1.157760px;}
._9{width:2.989440px;}
._6{width:4.579200px;}
._5{width:6.163200px;}
._15{width:7.459200px;}
._19{width:8.466192px;}
._13{width:9.843120px;}
._1d{width:11.099376px;}
._18{width:12.247200px;}
._1a{width:14.005296px;}
._c{width:15.753600px;}
._7{width:17.121600px;}
._17{width:19.027584px;}
._1e{width:21.247200px;}
._4{width:23.104800px;}
._d{width:24.141600px;}
._10{width:25.927200px;}
._f{width:27.734400px;}
._16{width:29.476800px;}
._12{width:30.535200px;}
._3{width:31.752000px;}
._8{width:33.192000px;}
._1f{width:34.237440px;}
._1b{width:36.115200px;}
._2e{width:37.310976px;}
._23{width:38.397600px;}
._29{width:40.183200px;}
._2d{width:41.536800px;}
._e{width:42.827184px;}
._32{width:44.777088px;}
._21{width:46.368000px;}
._36{width:49.697280px;}
._41{width:53.445600px;}
._43{width:61.704000px;}
._31{width:68.180544px;}
._3a{width:69.186096px;}
._42{width:70.948800px;}
._39{width:91.442496px;}
._35{width:93.312000px;}
._30{width:97.280880px;}
._2f{width:98.485680px;}
._22{width:107.784288px;}
._3f{width:117.180000px;}
._44{width:118.844064px;}
._46{width:121.716000px;}
._24{width:128.445816px;}
._38{width:132.191424px;}
._2c{width:159.351360px;}
._33{width:160.626240px;}
._34{width:179.746560px;}
._2b{width:184.584864px;}
._11{width:192.383424px;}
._37{width:227.952528px;}
._2a{width:237.943344px;}
._40{width:311.256000px;}
._3c{width:345.621600px;}
._27{width:433.384152px;}
._3e{width:485.402400px;}
._3d{width:532.944000px;}
._26{width:547.065672px;}
._28{width:576.569256px;}
._25{width:642.136464px;}
._45{width:733.371264px;}
._b{width:843.984000px;}
._0{width:912.858336px;}
._3b{width:2011.176000px;}
.fc8{color:rgb(20,20,19);}
.fc3{color:transparent;}
.fc9{color:rgb(146,208,80);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(47,84,150);}
.fc7{color:rgb(64,64,64);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(68,84,106);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:47.520000px;}
.fs5{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y1de{bottom:3.420000px;}
.yda{bottom:3.780000px;}
.y197{bottom:4.140000px;}
.y21b{bottom:11.880000px;}
.y1dc{bottom:12.060000px;}
.y1e4{bottom:12.780000px;}
.y15a{bottom:12.959985px;}
.y156{bottom:12.960000px;}
.ye8{bottom:14.580000px;}
.ye0{bottom:15.120000px;}
.ydc{bottom:15.300000px;}
.y10a{bottom:16.559985px;}
.ya5{bottom:16.740000px;}
.yc3{bottom:16.919985px;}
.y17d{bottom:17.999985px;}
.y13c{bottom:18.000000px;}
.y1dd{bottom:20.700000px;}
.y1ef{bottom:21.060000px;}
.y211{bottom:29.880000px;}
.y1e3{bottom:30.060000px;}
.ydf{bottom:36.360000px;}
.ya4{bottom:36.540000px;}
.y1eb{bottom:37.980000px;}
.y1ee{bottom:38.340000px;}
.y1e0{bottom:38.700000px;}
.y108{bottom:46.079985px;}
.y1e2{bottom:47.340000px;}
.y17c{bottom:47.519985px;}
.y136{bottom:47.520000px;}
.y1e8{bottom:47.700000px;}
.y1f2{bottom:55.260000px;}
.y2{bottom:57.240000px;}
.yde{bottom:57.960000px;}
.ya3{bottom:59.220000px;}
.y157{bottom:61.919985px;}
.y1e1{bottom:64.620000px;}
.y1f8{bottom:65.340000px;}
.y173{bottom:65.519985px;}
.y212{bottom:66.240000px;}
.y154{bottom:68.040000px;}
.y1f3{bottom:72.180000px;}
.y128{bottom:75.240000px;}
.y1{bottom:78.120000px;}
.ydd{bottom:78.840000px;}
.ya2{bottom:81.900000px;}
.y1f7{bottom:82.620000px;}
.y137{bottom:82.800000px;}
.y64{bottom:88.020015px;}
.y12f{bottom:88.200000px;}
.ye1{bottom:89.280000px;}
.y174{bottom:91.799990px;}
.y159{bottom:93.240000px;}
.y107{bottom:98.639985px;}
.y1f6{bottom:99.900000px;}
.y213{bottom:102.600000px;}
.y16c{bottom:103.680000px;}
.y171{bottom:105.120000px;}
.y3b{bottom:106.739985px;}
.ya1{bottom:108.180000px;}
.y63{bottom:108.540015px;}
.y80{bottom:108.720000px;}
.y9d{bottom:109.440000px;}
.y129{bottom:109.800000px;}
.y106{bottom:111.240000px;}
.y7a{bottom:111.960000px;}
.y153{bottom:113.400000px;}
.y9c{bottom:114.840000px;}
.y127{bottom:116.640000px;}
.y1f5{bottom:117.180000px;}
.y175{bottom:117.719985px;}
.y138{bottom:117.720000px;}
.y109{bottom:121.319985px;}
.yc0{bottom:121.320000px;}
.y16b{bottom:122.400000px;}
.y130{bottom:122.760000px;}
.y99{bottom:124.920000px;}
.y18a{bottom:125.280000px;}
.y7f{bottom:126.000000px;}
.y18c{bottom:127.440000px;}
.yb2{bottom:127.800000px;}
.y9b{bottom:128.520000px;}
.ya0{bottom:129.060000px;}
.y62{bottom:129.420015px;}
.y170{bottom:130.320000px;}
.y105{bottom:131.760000px;}
.y79{bottom:132.840000px;}
.yb1{bottom:133.200000px;}
.y152{bottom:134.280000px;}
.y126{bottom:137.160000px;}
.y1fd{bottom:137.880000px;}
.y214{bottom:138.600000px;}
.yc1{bottom:141.120000px;}
.ybf{bottom:141.840000px;}
.y1d8{bottom:142.200000px;}
.y16a{bottom:143.280000px;}
.y176{bottom:143.999985px;}
.y7e{bottom:144.000000px;}
.yc2{bottom:144.360000px;}
.y12a{bottom:144.720000px;}
.ye2{bottom:145.440000px;}
.y98{bottom:145.800000px;}
.y9f{bottom:145.980000px;}
.yb0{bottom:146.880000px;}
.y7d{bottom:149.400000px;}
.y61{bottom:149.940015px;}
.y18d{bottom:151.920000px;}
.y139{bottom:152.280000px;}
.y1f4{bottom:152.460000px;}
.y104{bottom:152.640000px;}
.y78{bottom:153.360000px;}
.y151{bottom:154.800000px;}
.y16f{bottom:155.880000px;}
.y131{bottom:157.680000px;}
.y125{bottom:158.040000px;}
.y1b6{bottom:161.640000px;}
.y20c{bottom:162.360000px;}
.ybe{bottom:162.720000px;}
.y7c{bottom:163.080000px;}
.y169{bottom:163.800000px;}
.y97{bottom:166.320000px;}
.y189{bottom:166.680000px;}
.y196{bottom:167.220000px;}
.y177{bottom:170.279985px;}
.y60{bottom:170.820015px;}
.y158{bottom:171.360000px;}
.y103{bottom:173.160000px;}
.y77{bottom:174.240000px;}
.y215{bottom:174.960000px;}
.y150{bottom:175.680000px;}
.y124{bottom:178.560000px;}
.y12b{bottom:179.280000px;}
.y16e{bottom:181.080000px;}
.y1b5{bottom:182.160000px;}
.ybd{bottom:183.240000px;}
.y1d7{bottom:183.600000px;}
.y168{bottom:183.960000px;}
.y20f{bottom:184.320000px;}
.y96{bottom:187.200000px;}
.y1fc{bottom:187.740000px;}
.y195{bottom:188.820000px;}
.y5f{bottom:191.340015px;}
.y132{bottom:192.240000px;}
.y155{bottom:192.600000px;}
.ydb{bottom:192.780000px;}
.y102{bottom:194.040000px;}
.y76{bottom:194.760000px;}
.y192{bottom:195.120000px;}
.y178{bottom:196.199985px;}
.y14f{bottom:196.200000px;}
.y167{bottom:198.000000px;}
.y172{bottom:198.360000px;}
.y123{bottom:199.440000px;}
.y22{bottom:200.520000px;}
.ye3{bottom:201.600000px;}
.y20d{bottom:202.320000px;}
.y1b4{bottom:203.040000px;}
.y16d{bottom:203.760000px;}
.ybc{bottom:204.120000px;}
.yaf{bottom:205.200000px;}
.y18b{bottom:206.640000px;}
.y95{bottom:207.720000px;}
.y188{bottom:208.080000px;}
.y216{bottom:211.320000px;}
.y5e{bottom:212.220015px;}
.y12c{bottom:214.200000px;}
.y101{bottom:214.560000px;}
.y75{bottom:215.280000px;}
.y14e{bottom:217.080000px;}
.y21{bottom:217.440000px;}
.y122{bottom:219.960000px;}
.y13a{bottom:221.760000px;}
.y179{bottom:222.479985px;}
.y1f9{bottom:223.020000px;}
.y1b3{bottom:223.560000px;}
.y20e{bottom:224.280000px;}
.ybb{bottom:224.640000px;}
.y1d6{bottom:225.000000px;}
.yad{bottom:226.080000px;}
.y133{bottom:227.160000px;}
.y94{bottom:228.600000px;}
.yae{bottom:232.200000px;}
.y5d{bottom:232.740015px;}
.y100{bottom:235.440000px;}
.y194{bottom:235.800000px;}
.y74{bottom:236.160000px;}
.yd9{bottom:236.700000px;}
.y14d{bottom:237.600000px;}
.y121{bottom:240.840000px;}
.yba{bottom:245.520000px;}
.yac{bottom:246.600000px;}
.y217{bottom:247.680000px;}
.y12d{bottom:248.760000px;}
.y93{bottom:249.120000px;}
.y187{bottom:249.480000px;}
.y5c{bottom:253.620015px;}
.y20b{bottom:254.880000px;}
.y1b2{bottom:255.600000px;}
.yff{bottom:255.960000px;}
.y73{bottom:256.680000px;}
.ye4{bottom:257.760000px;}
.y1fb{bottom:258.300000px;}
.y14c{bottom:258.480000px;}
.y120{bottom:261.360000px;}
.y134{bottom:261.720000px;}
.yd7{bottom:262.080000px;}
.yb9{bottom:266.040000px;}
.y1d5{bottom:266.400000px;}
.yab{bottom:267.480000px;}
.yd8{bottom:268.200000px;}
.y92{bottom:270.000000px;}
.y5b{bottom:274.140015px;}
.y17a{bottom:274.680000px;}
.y20a{bottom:275.400000px;}
.yfe{bottom:276.120000px;}
.y72{bottom:277.560000px;}
.y14b{bottom:279.000000px;}
.y11f{bottom:282.240000px;}
.yd6{bottom:282.600000px;}
.y12e{bottom:283.680000px;}
.y218{bottom:284.040000px;}
.yb8{bottom:286.920000px;}
.yaa{bottom:288.000000px;}
.y91{bottom:290.520000px;}
.y186{bottom:290.880000px;}
.y13b{bottom:291.240000px;}
.y210{bottom:293.040000px;}
.yfd{bottom:294.120000px;}
.y5a{bottom:295.020015px;}
.y209{bottom:296.280000px;}
.y135{bottom:296.640000px;}
.y1b1{bottom:297.000000px;}
.y1d9{bottom:297.720000px;}
.y71{bottom:298.080000px;}
.y191{bottom:298.440000px;}
.y14a{bottom:299.880000px;}
.y17b{bottom:300.960000px;}
.y11e{bottom:302.760000px;}
.yd5{bottom:303.480000px;}
.yb7{bottom:307.440000px;}
.y1d4{bottom:307.800000px;}
.ya9{bottom:308.880000px;}
.y1fa{bottom:310.860000px;}
.yfc{bottom:311.040000px;}
.y90{bottom:311.400000px;}
.ye5{bottom:313.920000px;}
.y59{bottom:315.540015px;}
.y20{bottom:315.720000px;}
.y208{bottom:316.800000px;}
.y1b0{bottom:317.520000px;}
.y70{bottom:318.960000px;}
.y149{bottom:320.040000px;}
.y219{bottom:320.400000px;}
.y11d{bottom:323.640000px;}
.yd4{bottom:324.000000px;}
.yb6{bottom:328.320000px;}
.ya8{bottom:329.400000px;}
.y8f{bottom:331.920000px;}
.y185{bottom:332.280000px;}
.y1f{bottom:336.240000px;}
.y58{bottom:336.420015px;}
.y148{bottom:337.680000px;}
.y1af{bottom:338.400000px;}
.y6f{bottom:339.480000px;}
.y11c{bottom:344.160000px;}
.yd3{bottom:344.880000px;}
.y1f1{bottom:346.140000px;}
.yb5{bottom:348.840000px;}
.y1d3{bottom:349.200000px;}
.ya7{bottom:349.560000px;}
.y8e{bottom:352.800000px;}
.y147{bottom:354.600000px;}
.y21a{bottom:356.400000px;}
.y57{bottom:356.940015px;}
.y1e{bottom:357.120000px;}
.y207{bottom:358.200000px;}
.y1ae{bottom:358.920000px;}
.y6e{bottom:360.360000px;}
.y11b{bottom:365.040000px;}
.yd2{bottom:365.400000px;}
.ya6{bottom:366.840000px;}
.yb4{bottom:369.000000px;}
.y1d2{bottom:369.720000px;}
.ye6{bottom:370.080000px;}
.y8d{bottom:373.320000px;}
.y184{bottom:373.680000px;}
.y1d{bottom:377.640000px;}
.y56{bottom:377.820015px;}
.y206{bottom:379.080000px;}
.y1ad{bottom:379.800000px;}
.y6d{bottom:380.880000px;}
.y9e{bottom:381.420000px;}
.yb3{bottom:383.040000px;}
.y11a{bottom:385.560000px;}
.yd1{bottom:386.280000px;}
.y1d1{bottom:390.600000px;}
.y8c{bottom:394.200000px;}
.y55{bottom:398.340015px;}
.y1c{bottom:398.520000px;}
.y205{bottom:399.600000px;}
.y1ac{bottom:400.320000px;}
.y6c{bottom:401.760000px;}
.y119{bottom:406.440000px;}
.yd0{bottom:406.800000px;}
.y1d0{bottom:411.120000px;}
.y8b{bottom:414.720000px;}
.y183{bottom:415.080000px;}
.y1b{bottom:419.040000px;}
.y54{bottom:419.220015px;}
.y204{bottom:420.480000px;}
.y1ab{bottom:421.920000px;}
.y6b{bottom:422.280000px;}
.y118{bottom:426.960000px;}
.ycf{bottom:427.680000px;}
.y1cf{bottom:432.000000px;}
.y1ec{bottom:432.900000px;}
.y8a{bottom:435.600000px;}
.y53{bottom:439.740015px;}
.y1a{bottom:439.920000px;}
.y203{bottom:441.000000px;}
.y6a{bottom:443.160000px;}
.y117{bottom:447.840000px;}
.yce{bottom:448.200000px;}
.y1ce{bottom:452.520000px;}
.y89{bottom:456.120000px;}
.y182{bottom:456.480000px;}
.y19{bottom:460.440000px;}
.y52{bottom:460.620015px;}
.y202{bottom:461.880000px;}
.y69{bottom:463.680000px;}
.y1f0{bottom:468.180000px;}
.y116{bottom:468.360000px;}
.ycd{bottom:469.080000px;}
.y1cd{bottom:473.400000px;}
.y88{bottom:477.000000px;}
.y51{bottom:481.140015px;}
.y18{bottom:481.320000px;}
.y201{bottom:482.400000px;}
.y68{bottom:484.560000px;}
.y1ed{bottom:486.180000px;}
.y115{bottom:489.240000px;}
.ycc{bottom:489.600000px;}
.y1cc{bottom:493.920000px;}
.y87{bottom:497.520000px;}
.y181{bottom:497.880000px;}
.y17{bottom:501.840000px;}
.y50{bottom:502.020015px;}
.y200{bottom:503.280000px;}
.y67{bottom:505.080000px;}
.y190{bottom:505.440000px;}
.y114{bottom:509.760000px;}
.ycb{bottom:510.480000px;}
.y1cb{bottom:514.800000px;}
.y180{bottom:518.040000px;}
.y86{bottom:518.400000px;}
.y4f{bottom:522.540015px;}
.y16{bottom:522.720000px;}
.y1ff{bottom:523.440000px;}
.y166{bottom:524.520000px;}
.y66{bottom:525.960000px;}
.y113{bottom:530.640000px;}
.yca{bottom:531.000000px;}
.y17f{bottom:534.960000px;}
.y1ca{bottom:535.320000px;}
.y1fe{bottom:537.480000px;}
.y1e7{bottom:538.740000px;}
.y85{bottom:538.920000px;}
.y15{bottom:543.240000px;}
.y4e{bottom:543.420015px;}
.y165{bottom:545.040000px;}
.y65{bottom:546.480000px;}
.y17e{bottom:549.000000px;}
.y112{bottom:551.160000px;}
.yc9{bottom:551.880000px;}
.y1c9{bottom:556.200000px;}
.y84{bottom:559.800000px;}
.y4d{bottom:563.940015px;}
.y14{bottom:564.120000px;}
.y164{bottom:565.920000px;}
.y3a{bottom:567.360000px;}
.y111{bottom:572.040000px;}
.yc8{bottom:572.400000px;}
.y7b{bottom:573.480000px;}
.y1c8{bottom:576.720000px;}
.y83{bottom:579.960000px;}
.y13{bottom:584.640000px;}
.y4c{bottom:584.820015px;}
.y163{bottom:586.440000px;}
.y39{bottom:587.880000px;}
.y1e9{bottom:591.300000px;}
.y110{bottom:592.560000px;}
.yc7{bottom:593.280000px;}
.y82{bottom:594.000000px;}
.y1c7{bottom:597.600000px;}
.y146{bottom:598.680000px;}
.y4b{bottom:605.340015px;}
.y12{bottom:605.520000px;}
.y162{bottom:607.320000px;}
.y38{bottom:608.760000px;}
.y18f{bottom:609.120000px;}
.y1ea{bottom:609.660000px;}
.y10f{bottom:613.440000px;}
.yc6{bottom:613.800000px;}
.y1c6{bottom:618.120000px;}
.y145{bottom:619.200000px;}
.y4a{bottom:626.220015px;}
.y11{bottom:627.480000px;}
.y161{bottom:627.840000px;}
.y37{bottom:629.280000px;}
.yfb{bottom:629.640000px;}
.yc5{bottom:633.960000px;}
.y9a{bottom:635.400000px;}
.y1c5{bottom:639.000000px;}
.y144{bottom:639.720000px;}
.y1df{bottom:644.940000px;}
.y49{bottom:646.740015px;}
.yc4{bottom:648.000000px;}
.y160{bottom:648.720000px;}
.y36{bottom:650.160000px;}
.yfa{bottom:650.520000px;}
.y10{bottom:653.760000px;}
.y10e{bottom:654.840000px;}
.y81{bottom:656.280000px;}
.y1c4{bottom:659.520000px;}
.y143{bottom:660.600000px;}
.y1e6{bottom:662.940000px;}
.y48{bottom:667.620015px;}
.y15f{bottom:669.240000px;}
.y35{bottom:670.680000px;}
.yf9{bottom:671.040000px;}
.yf{bottom:674.280000px;}
.y10d{bottom:675.000000px;}
.y1aa{bottom:675.360000px;}
.y1c3{bottom:680.400000px;}
.y142{bottom:681.120000px;}
.y47{bottom:688.140015px;}
.y15e{bottom:690.120000px;}
.y34{bottom:691.560000px;}
.yf8{bottom:691.920000px;}
.y10c{bottom:692.640000px;}
.ye{bottom:695.160000px;}
.y1a9{bottom:696.240000px;}
.y1e5{bottom:698.220000px;}
.y1c2{bottom:700.920000px;}
.y141{bottom:702.000000px;}
.y46{bottom:709.020015px;}
.y10b{bottom:709.560000px;}
.y15d{bottom:710.280000px;}
.y33{bottom:712.080000px;}
.yf7{bottom:712.440000px;}
.yd{bottom:715.680000px;}
.y1a8{bottom:716.760000px;}
.y1c1{bottom:721.800000px;}
.y140{bottom:722.520000px;}
.y15c{bottom:727.920000px;}
.y45{bottom:729.540015px;}
.y32{bottom:732.960000px;}
.yf6{bottom:733.320000px;}
.y1db{bottom:733.500000px;}
.yc{bottom:736.560000px;}
.y1a7{bottom:737.640000px;}
.y1c0{bottom:742.320000px;}
.y13f{bottom:742.680000px;}
.y15b{bottom:744.840000px;}
.y44{bottom:750.420015px;}
.y31{bottom:753.480000px;}
.yf5{bottom:753.840000px;}
.yb{bottom:757.080000px;}
.y1a6{bottom:758.160000px;}
.y13e{bottom:759.960000px;}
.y1bf{bottom:763.200000px;}
.y43{bottom:770.940015px;}
.y1da{bottom:772.920000px;}
.y13d{bottom:774.000000px;}
.y30{bottom:774.360000px;}
.yf4{bottom:774.720000px;}
.ya{bottom:777.960000px;}
.y1a5{bottom:779.040000px;}
.y1be{bottom:783.720000px;}
.y42{bottom:791.820015px;}
.y2f{bottom:794.880000px;}
.yf3{bottom:795.240000px;}
.y9{bottom:798.480000px;}
.y1a4{bottom:799.560000px;}
.y1bd{bottom:804.600000px;}
.y41{bottom:812.340015px;}
.y2e{bottom:815.760000px;}
.yf2{bottom:816.120000px;}
.y8{bottom:819.360000px;}
.y1a3{bottom:820.440000px;}
.y1bc{bottom:825.120000px;}
.y40{bottom:833.220015px;}
.y2d{bottom:836.280000px;}
.yf1{bottom:836.640000px;}
.y7{bottom:839.880000px;}
.y1a2{bottom:840.960000px;}
.y1bb{bottom:846.000000px;}
.y3f{bottom:853.740015px;}
.y2c{bottom:857.160000px;}
.yf0{bottom:857.520000px;}
.y6{bottom:860.760000px;}
.y1a1{bottom:861.840000px;}
.y1ba{bottom:866.520000px;}
.y3e{bottom:874.620015px;}
.y2b{bottom:877.680000px;}
.yef{bottom:878.040000px;}
.y5{bottom:881.280000px;}
.y1a0{bottom:882.360000px;}
.y1b9{bottom:887.400000px;}
.y3d{bottom:895.140015px;}
.y2a{bottom:898.560000px;}
.yee{bottom:898.920000px;}
.y4{bottom:902.160000px;}
.y19f{bottom:903.240000px;}
.y1b8{bottom:907.920000px;}
.y3c{bottom:916.020015px;}
.y3{bottom:919.080000px;}
.yed{bottom:919.440000px;}
.y19e{bottom:923.760000px;}
.y1b7{bottom:928.800000px;}
.y29{bottom:939.960000px;}
.yec{bottom:940.320000px;}
.y19d{bottom:944.640000px;}
.y28{bottom:960.480000px;}
.yeb{bottom:960.840000px;}
.y19c{bottom:965.160000px;}
.yea{bottom:981.000000px;}
.y27{bottom:981.360000px;}
.y19b{bottom:986.040000px;}
.ye9{bottom:995.580000px;}
.y26{bottom:1001.880000px;}
.y19a{bottom:1006.200000px;}
.y193{bottom:1008.000000px;}
.y25{bottom:1022.760000px;}
.y199{bottom:1023.480000px;}
.ye7{bottom:1038.060000px;}
.y24{bottom:1043.280000px;}
.y18e{bottom:1049.400000px;}
.y198{bottom:1059.300000px;}
.y23{bottom:1064.160000px;}
.h24{height:17.280000px;}
.h27{height:17.640000px;}
.h10{height:20.520000px;}
.h1d{height:20.880000px;}
.h9{height:25.913672px;}
.hb{height:34.155000px;}
.h20{height:34.560000px;}
.h8{height:34.595859px;}
.h16{height:36.471094px;}
.hf{height:39.276563px;}
.h14{height:41.760000px;}
.hc{height:41.904844px;}
.h13{height:42.120000px;}
.h11{height:43.200000px;}
.h2e{height:44.031094px;}
.ha{height:44.060625px;}
.h30{height:45.127969px;}
.h2{height:47.988281px;}
.h28{height:51.840000px;}
.h1f{height:52.417969px;}
.h2a{height:52.560000px;}
.h26{height:52.920000px;}
.h23{height:54.219375px;}
.h21{height:54.603281px;}
.h3{height:64.304297px;}
.h31{height:64.371094px;}
.h1{height:64.546875px;}
.h5{height:65.003906px;}
.h4{height:69.062344px;}
.h2b{height:86.040000px;}
.h22{height:87.840000px;}
.h29{height:105.120000px;}
.h25{height:105.480000px;}
.h2d{height:122.400000px;}
.h2c{height:192.960000px;}
.h19{height:239.400000px;}
.he{height:262.440000px;}
.h18{height:264.600000px;}
.h1c{height:282.600000px;}
.h1a{height:293.760000px;}
.h15{height:313.920000px;}
.h1b{height:321.480000px;}
.h17{height:329.040000px;}
.h2f{height:376.920000px;}
.h12{height:390.600000px;}
.hd{height:512.280000px;}
.h1e{height:918.000000px;}
.h6{height:932.760015px;}
.h7{height:1166.220000px;}
.h0{height:1188.000000px;}
.w2{width:36.720000px;}
.w13{width:97.919970px;}
.w7{width:117.720000px;}
.w8{width:138.240000px;}
.w9{width:142.200000px;}
.w14{width:145.080000px;}
.w10{width:243.720000px;}
.w6{width:274.680000px;}
.w11{width:417.240000px;}
.w15{width:498.960000px;}
.w5{width:566.280000px;}
.wc{width:581.760000px;}
.w4{width:609.840000px;}
.w16{width:648.360000px;}
.wd{width:650.160000px;}
.we{width:651.240000px;}
.wb{width:655.200000px;}
.wf{width:660.600000px;}
.w1{width:662.760000px;}
.wa{width:663.120000px;}
.w3{width:896.220000px;}
.w0{width:918.000000px;}
.w12{width:1188.000000px;}
.x0{left:0.000000px;}
.xe{left:8.100072px;}
.x44{left:10.185120px;}
.x57{left:14.392500px;}
.x14{left:18.204120px;}
.x55{left:19.560000px;}
.x16{left:21.780000px;}
.x56{left:26.692500px;}
.x15{left:28.214640px;}
.x36{left:29.719800px;}
.x77{left:32.377458px;}
.x12{left:33.600096px;}
.x11{left:35.100072px;}
.x34{left:37.031760px;}
.xf{left:38.100096px;}
.x3c{left:41.327400px;}
.x38{left:43.211160px;}
.x39{left:45.311040px;}
.x5d{left:52.595250px;}
.x60{left:56.036250px;}
.x82{left:58.530000px;}
.x10{left:62.100072px;}
.x7c{left:71.167650px;}
.x43{left:87.081750px;}
.x79{left:98.198670px;}
.x54{left:103.200000px;}
.x1a{left:106.380000px;}
.x76{left:107.820030px;}
.x2{left:128.160072px;}
.x3a{left:129.240000px;}
.x1b{left:133.200216px;}
.x3e{left:146.666700px;}
.x3d{left:153.506700px;}
.x5{left:155.514168px;}
.x68{left:159.541050px;}
.x2e{left:161.762700px;}
.x5b{left:164.313750px;}
.x48{left:168.840000px;}
.x7d{left:171.565350px;}
.x2b{left:177.120000px;}
.x46{left:181.259928px;}
.x72{left:187.185204px;}
.x64{left:203.908500px;}
.x65{left:206.788050px;}
.x70{left:209.160072px;}
.x6a{left:213.171000px;}
.x73{left:214.185204px;}
.x75{left:218.415702px;}
.x2d{left:222.788550px;}
.x25{left:225.024408px;}
.x23{left:227.953620px;}
.x26{left:229.659120px;}
.x71{left:236.160072px;}
.x6b{left:237.420000px;}
.x1f{left:238.460940px;}
.x5e{left:241.788750px;}
.x66{left:244.708200px;}
.x41{left:253.560750px;}
.x3b{left:255.879600px;}
.x6{left:257.999040px;}
.x6c{left:265.590612px;}
.x5c{left:267.126300px;}
.x7e{left:271.963050px;}
.x8{left:277.522488px;}
.x53{left:284.443650px;}
.x45{left:292.059600px;}
.x9{left:302.506848px;}
.xa{left:313.475616px;}
.x63{left:317.555100px;}
.x2c{left:320.713800px;}
.x3f{left:324.519048px;}
.x2f{left:329.014656px;}
.x29{left:332.512704px;}
.x21{left:336.780000px;}
.x3{left:340.559856px;}
.x49{left:343.011750px;}
.x19{left:344.160072px;}
.x61{left:348.521976px;}
.x5a{left:349.532748px;}
.x7{left:350.574264px;}
.x78{left:352.260000px;}
.x30{left:360.289080px;}
.x22{left:365.087196px;}
.x4b{left:366.191700px;}
.x69{left:367.196400px;}
.x7f{left:372.360900px;}
.x6f{left:373.500000px;}
.xb{left:382.535640px;}
.x1c{left:387.900000px;}
.x17{left:389.340000px;}
.x4c{left:391.570350px;}
.x58{left:397.050840px;}
.x51{left:403.075350px;}
.x33{left:404.460000px;}
.x1d{left:416.116440px;}
.x18{left:417.475800px;}
.xd{left:429.082560px;}
.x6d{left:435.780000px;}
.x50{left:439.282350px;}
.x4e{left:444.019800px;}
.x4d{left:452.140800px;}
.x27{left:455.580000px;}
.x4{left:459.585000px;}
.x6e{left:463.920480px;}
.x80{left:472.758450px;}
.x4a{left:476.842950px;}
.x28{left:483.804360px;}
.x4f{left:502.560000px;}
.x52{left:506.620500px;}
.x24{left:508.860360px;}
.x35{left:522.900000px;}
.x42{left:526.213200px;}
.x31{left:530.460000px;}
.x5f{left:550.713750px;}
.x32{left:558.880560px;}
.x67{left:570.224850px;}
.x81{left:573.156300px;}
.xc{left:593.325000px;}
.x7a{left:596.700000px;}
.x37{left:661.860000px;}
.x2a{left:743.085000px;}
.x47{left:751.185000px;}
.x1e{left:770.988600px;}
.x7b{left:776.160000px;}
.x59{left:779.040000px;}
.x1{left:780.999120px;}
.x40{left:782.640000px;}
.x62{left:789.480000px;}
.x13{left:791.100000px;}
.x20{left:808.560360px;}
.x74{left:1062.348150px;}
@media print{
.v3{vertical-align:-44.800000pt;}
.v4{vertical-align:-42.240000pt;}
.v2{vertical-align:-25.600000pt;}
.v1{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.ls37{letter-spacing:-0.860928pt;}
.ls36{letter-spacing:-0.826880pt;}
.ls1c{letter-spacing:-0.812288pt;}
.ls3c{letter-spacing:-0.800000pt;}
.ls19{letter-spacing:-0.700416pt;}
.ls1b{letter-spacing:-0.695552pt;}
.ls1a{letter-spacing:-0.627456pt;}
.ls1d{letter-spacing:-0.564224pt;}
.ls25{letter-spacing:-0.471808pt;}
.ls1f{letter-spacing:-0.374528pt;}
.ls24{letter-spacing:-0.359936pt;}
.ls34{letter-spacing:-0.354816pt;}
.ls18{letter-spacing:-0.340480pt;}
.ls11{letter-spacing:-0.338688pt;}
.ls22{letter-spacing:-0.325888pt;}
.ls33{letter-spacing:-0.301056pt;}
.ls20{letter-spacing:-0.296704pt;}
.ls9{letter-spacing:-0.284928pt;}
.ls3{letter-spacing:-0.283008pt;}
.ls21{letter-spacing:-0.272384pt;}
.lsf{letter-spacing:-0.268800pt;}
.ls23{letter-spacing:-0.243200pt;}
.ls2a{letter-spacing:-0.241920pt;}
.lsc{letter-spacing:-0.231168pt;}
.lsa{letter-spacing:-0.215040pt;}
.ls17{letter-spacing:-0.204288pt;}
.ls12{letter-spacing:-0.193536pt;}
.ls13{letter-spacing:-0.161280pt;}
.ls27{letter-spacing:-0.155648pt;}
.lsb{letter-spacing:-0.139776pt;}
.ls10{letter-spacing:-0.129024pt;}
.ls2d{letter-spacing:-0.107520pt;}
.ls4{letter-spacing:-0.012800pt;}
.ls26{letter-spacing:-0.004864pt;}
.ls2{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.000512pt;}
.ls38{letter-spacing:0.001280pt;}
.ls2b{letter-spacing:0.006144pt;}
.ls2e{letter-spacing:0.006272pt;}
.ls3b{letter-spacing:0.006400pt;}
.ls29{letter-spacing:0.008960pt;}
.lsd{letter-spacing:0.009728pt;}
.ls0{letter-spacing:0.012800pt;}
.ls35{letter-spacing:0.053504pt;}
.ls28{letter-spacing:0.097280pt;}
.ls16{letter-spacing:0.111360pt;}
.ls14{letter-spacing:0.111616pt;}
.ls32{letter-spacing:0.133120pt;}
.ls15{letter-spacing:0.232320pt;}
.ls31{letter-spacing:2.208000pt;}
.ls2f{letter-spacing:2.739200pt;}
.ls6{letter-spacing:3.944960pt;}
.ls8{letter-spacing:12.813568pt;}
.ls5{letter-spacing:14.083072pt;}
.lse{letter-spacing:21.501440pt;}
.ls7{letter-spacing:27.206400pt;}
.ls2c{letter-spacing:39.801856pt;}
.ls1e{letter-spacing:83.493653pt;}
.ls30{letter-spacing:87.125760pt;}
.ls3a{letter-spacing:104.198912pt;}
.ls1{letter-spacing:753.536000pt;}
.ws0{word-spacing:-17.804800pt;}
.ws26{word-spacing:-17.798400pt;}
.ws2{word-spacing:-17.792000pt;}
.ws3{word-spacing:-17.779200pt;}
.ws6{word-spacing:-14.945280pt;}
.ws21{word-spacing:-14.816256pt;}
.ws22{word-spacing:-14.730240pt;}
.ws4{word-spacing:-14.714112pt;}
.ws7{word-spacing:-14.676480pt;}
.ws5{word-spacing:-14.660352pt;}
.ws1f{word-spacing:-14.644224pt;}
.ws20{word-spacing:-14.606592pt;}
.ws23{word-spacing:-14.590464pt;}
.ws8{word-spacing:-11.988480pt;}
.ws16{word-spacing:-10.992640pt;}
.ws1a{word-spacing:-10.987776pt;}
.ws1b{word-spacing:-10.836992pt;}
.ws15{word-spacing:-10.652160pt;}
.ws19{word-spacing:-10.520832pt;}
.wsd{word-spacing:-10.428416pt;}
.wsf{word-spacing:-10.297088pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:0.291840pt;}
.ws1e{word-spacing:10.379520pt;}
.ws10{word-spacing:61.021973pt;}
.ws11{word-spacing:65.361835pt;}
.wse{word-spacing:65.362368pt;}
.wsc{word-spacing:149.050240pt;}
.ws1d{word-spacing:163.452907pt;}
.ws25{word-spacing:191.204011pt;}
.ws24{word-spacing:216.520341pt;}
.ws17{word-spacing:242.929707pt;}
.ws18{word-spacing:242.930240pt;}
.ws12{word-spacing:317.207573pt;}
.ws13{word-spacing:329.367040pt;}
.ws14{word-spacing:340.846613pt;}
.ws1c{word-spacing:697.913280pt;}
.ws9{word-spacing:731.625920pt;}
.wsa{word-spacing:743.785920pt;}
._20{margin-left:-5.296896pt;}
._2{margin-left:-4.243200pt;}
._14{margin-left:-3.310336pt;}
._1c{margin-left:-2.295680pt;}
._a{margin-left:-1.029248pt;}
._1{width:1.029120pt;}
._9{width:2.657280pt;}
._6{width:4.070400pt;}
._5{width:5.478400pt;}
._15{width:6.630400pt;}
._19{width:7.525504pt;}
._13{width:8.749440pt;}
._1d{width:9.866112pt;}
._18{width:10.886400pt;}
._1a{width:12.449152pt;}
._c{width:14.003200pt;}
._7{width:15.219200pt;}
._17{width:16.913408pt;}
._1e{width:18.886400pt;}
._4{width:20.537600pt;}
._d{width:21.459200pt;}
._10{width:23.046400pt;}
._f{width:24.652800pt;}
._16{width:26.201600pt;}
._12{width:27.142400pt;}
._3{width:28.224000pt;}
._8{width:29.504000pt;}
._1f{width:30.433280pt;}
._1b{width:32.102400pt;}
._2e{width:33.165312pt;}
._23{width:34.131200pt;}
._29{width:35.718400pt;}
._2d{width:36.921600pt;}
._e{width:38.068608pt;}
._32{width:39.801856pt;}
._21{width:41.216000pt;}
._36{width:44.175360pt;}
._41{width:47.507200pt;}
._43{width:54.848000pt;}
._31{width:60.604928pt;}
._3a{width:61.498752pt;}
._42{width:63.065600pt;}
._39{width:81.282219pt;}
._35{width:82.944000pt;}
._30{width:86.471893pt;}
._2f{width:87.542827pt;}
._22{width:95.808256pt;}
._3f{width:104.160000pt;}
._44{width:105.639168pt;}
._46{width:108.192000pt;}
._24{width:114.174059pt;}
._38{width:117.503488pt;}
._2c{width:141.645653pt;}
._33{width:142.778880pt;}
._34{width:159.774720pt;}
._2b{width:164.075435pt;}
._11{width:171.007488pt;}
._37{width:202.624469pt;}
._2a{width:211.505195pt;}
._40{width:276.672000pt;}
._3c{width:307.219200pt;}
._27{width:385.230357pt;}
._3e{width:431.468800pt;}
._3d{width:473.728000pt;}
._26{width:486.280597pt;}
._28{width:512.506005pt;}
._25{width:570.787968pt;}
._45{width:651.885568pt;}
._b{width:750.208000pt;}
._0{width:811.429632pt;}
._3b{width:1787.712000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.240000pt;}
.fs5{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y1de{bottom:3.040000pt;}
.yda{bottom:3.360000pt;}
.y197{bottom:3.680000pt;}
.y21b{bottom:10.560000pt;}
.y1dc{bottom:10.720000pt;}
.y1e4{bottom:11.360000pt;}
.y15a{bottom:11.519987pt;}
.y156{bottom:11.520000pt;}
.ye8{bottom:12.960000pt;}
.ye0{bottom:13.440000pt;}
.ydc{bottom:13.600000pt;}
.y10a{bottom:14.719987pt;}
.ya5{bottom:14.880000pt;}
.yc3{bottom:15.039987pt;}
.y17d{bottom:15.999987pt;}
.y13c{bottom:16.000000pt;}
.y1dd{bottom:18.400000pt;}
.y1ef{bottom:18.720000pt;}
.y211{bottom:26.560000pt;}
.y1e3{bottom:26.720000pt;}
.ydf{bottom:32.320000pt;}
.ya4{bottom:32.480000pt;}
.y1eb{bottom:33.760000pt;}
.y1ee{bottom:34.080000pt;}
.y1e0{bottom:34.400000pt;}
.y108{bottom:40.959987pt;}
.y1e2{bottom:42.080000pt;}
.y17c{bottom:42.239987pt;}
.y136{bottom:42.240000pt;}
.y1e8{bottom:42.400000pt;}
.y1f2{bottom:49.120000pt;}
.y2{bottom:50.880000pt;}
.yde{bottom:51.520000pt;}
.ya3{bottom:52.640000pt;}
.y157{bottom:55.039987pt;}
.y1e1{bottom:57.440000pt;}
.y1f8{bottom:58.080000pt;}
.y173{bottom:58.239987pt;}
.y212{bottom:58.880000pt;}
.y154{bottom:60.480000pt;}
.y1f3{bottom:64.160000pt;}
.y128{bottom:66.880000pt;}
.y1{bottom:69.440000pt;}
.ydd{bottom:70.080000pt;}
.ya2{bottom:72.800000pt;}
.y1f7{bottom:73.440000pt;}
.y137{bottom:73.600000pt;}
.y64{bottom:78.240013pt;}
.y12f{bottom:78.400000pt;}
.ye1{bottom:79.360000pt;}
.y174{bottom:81.599991pt;}
.y159{bottom:82.880000pt;}
.y107{bottom:87.679987pt;}
.y1f6{bottom:88.800000pt;}
.y213{bottom:91.200000pt;}
.y16c{bottom:92.160000pt;}
.y171{bottom:93.440000pt;}
.y3b{bottom:94.879987pt;}
.ya1{bottom:96.160000pt;}
.y63{bottom:96.480013pt;}
.y80{bottom:96.640000pt;}
.y9d{bottom:97.280000pt;}
.y129{bottom:97.600000pt;}
.y106{bottom:98.880000pt;}
.y7a{bottom:99.520000pt;}
.y153{bottom:100.800000pt;}
.y9c{bottom:102.080000pt;}
.y127{bottom:103.680000pt;}
.y1f5{bottom:104.160000pt;}
.y175{bottom:104.639987pt;}
.y138{bottom:104.640000pt;}
.y109{bottom:107.839987pt;}
.yc0{bottom:107.840000pt;}
.y16b{bottom:108.800000pt;}
.y130{bottom:109.120000pt;}
.y99{bottom:111.040000pt;}
.y18a{bottom:111.360000pt;}
.y7f{bottom:112.000000pt;}
.y18c{bottom:113.280000pt;}
.yb2{bottom:113.600000pt;}
.y9b{bottom:114.240000pt;}
.ya0{bottom:114.720000pt;}
.y62{bottom:115.040013pt;}
.y170{bottom:115.840000pt;}
.y105{bottom:117.120000pt;}
.y79{bottom:118.080000pt;}
.yb1{bottom:118.400000pt;}
.y152{bottom:119.360000pt;}
.y126{bottom:121.920000pt;}
.y1fd{bottom:122.560000pt;}
.y214{bottom:123.200000pt;}
.yc1{bottom:125.440000pt;}
.ybf{bottom:126.080000pt;}
.y1d8{bottom:126.400000pt;}
.y16a{bottom:127.360000pt;}
.y176{bottom:127.999987pt;}
.y7e{bottom:128.000000pt;}
.yc2{bottom:128.320000pt;}
.y12a{bottom:128.640000pt;}
.ye2{bottom:129.280000pt;}
.y98{bottom:129.600000pt;}
.y9f{bottom:129.760000pt;}
.yb0{bottom:130.560000pt;}
.y7d{bottom:132.800000pt;}
.y61{bottom:133.280013pt;}
.y18d{bottom:135.040000pt;}
.y139{bottom:135.360000pt;}
.y1f4{bottom:135.520000pt;}
.y104{bottom:135.680000pt;}
.y78{bottom:136.320000pt;}
.y151{bottom:137.600000pt;}
.y16f{bottom:138.560000pt;}
.y131{bottom:140.160000pt;}
.y125{bottom:140.480000pt;}
.y1b6{bottom:143.680000pt;}
.y20c{bottom:144.320000pt;}
.ybe{bottom:144.640000pt;}
.y7c{bottom:144.960000pt;}
.y169{bottom:145.600000pt;}
.y97{bottom:147.840000pt;}
.y189{bottom:148.160000pt;}
.y196{bottom:148.640000pt;}
.y177{bottom:151.359987pt;}
.y60{bottom:151.840013pt;}
.y158{bottom:152.320000pt;}
.y103{bottom:153.920000pt;}
.y77{bottom:154.880000pt;}
.y215{bottom:155.520000pt;}
.y150{bottom:156.160000pt;}
.y124{bottom:158.720000pt;}
.y12b{bottom:159.360000pt;}
.y16e{bottom:160.960000pt;}
.y1b5{bottom:161.920000pt;}
.ybd{bottom:162.880000pt;}
.y1d7{bottom:163.200000pt;}
.y168{bottom:163.520000pt;}
.y20f{bottom:163.840000pt;}
.y96{bottom:166.400000pt;}
.y1fc{bottom:166.880000pt;}
.y195{bottom:167.840000pt;}
.y5f{bottom:170.080013pt;}
.y132{bottom:170.880000pt;}
.y155{bottom:171.200000pt;}
.ydb{bottom:171.360000pt;}
.y102{bottom:172.480000pt;}
.y76{bottom:173.120000pt;}
.y192{bottom:173.440000pt;}
.y178{bottom:174.399987pt;}
.y14f{bottom:174.400000pt;}
.y167{bottom:176.000000pt;}
.y172{bottom:176.320000pt;}
.y123{bottom:177.280000pt;}
.y22{bottom:178.240000pt;}
.ye3{bottom:179.200000pt;}
.y20d{bottom:179.840000pt;}
.y1b4{bottom:180.480000pt;}
.y16d{bottom:181.120000pt;}
.ybc{bottom:181.440000pt;}
.yaf{bottom:182.400000pt;}
.y18b{bottom:183.680000pt;}
.y95{bottom:184.640000pt;}
.y188{bottom:184.960000pt;}
.y216{bottom:187.840000pt;}
.y5e{bottom:188.640013pt;}
.y12c{bottom:190.400000pt;}
.y101{bottom:190.720000pt;}
.y75{bottom:191.360000pt;}
.y14e{bottom:192.960000pt;}
.y21{bottom:193.280000pt;}
.y122{bottom:195.520000pt;}
.y13a{bottom:197.120000pt;}
.y179{bottom:197.759987pt;}
.y1f9{bottom:198.240000pt;}
.y1b3{bottom:198.720000pt;}
.y20e{bottom:199.360000pt;}
.ybb{bottom:199.680000pt;}
.y1d6{bottom:200.000000pt;}
.yad{bottom:200.960000pt;}
.y133{bottom:201.920000pt;}
.y94{bottom:203.200000pt;}
.yae{bottom:206.400000pt;}
.y5d{bottom:206.880013pt;}
.y100{bottom:209.280000pt;}
.y194{bottom:209.600000pt;}
.y74{bottom:209.920000pt;}
.yd9{bottom:210.400000pt;}
.y14d{bottom:211.200000pt;}
.y121{bottom:214.080000pt;}
.yba{bottom:218.240000pt;}
.yac{bottom:219.200000pt;}
.y217{bottom:220.160000pt;}
.y12d{bottom:221.120000pt;}
.y93{bottom:221.440000pt;}
.y187{bottom:221.760000pt;}
.y5c{bottom:225.440013pt;}
.y20b{bottom:226.560000pt;}
.y1b2{bottom:227.200000pt;}
.yff{bottom:227.520000pt;}
.y73{bottom:228.160000pt;}
.ye4{bottom:229.120000pt;}
.y1fb{bottom:229.600000pt;}
.y14c{bottom:229.760000pt;}
.y120{bottom:232.320000pt;}
.y134{bottom:232.640000pt;}
.yd7{bottom:232.960000pt;}
.yb9{bottom:236.480000pt;}
.y1d5{bottom:236.800000pt;}
.yab{bottom:237.760000pt;}
.yd8{bottom:238.400000pt;}
.y92{bottom:240.000000pt;}
.y5b{bottom:243.680013pt;}
.y17a{bottom:244.160000pt;}
.y20a{bottom:244.800000pt;}
.yfe{bottom:245.440000pt;}
.y72{bottom:246.720000pt;}
.y14b{bottom:248.000000pt;}
.y11f{bottom:250.880000pt;}
.yd6{bottom:251.200000pt;}
.y12e{bottom:252.160000pt;}
.y218{bottom:252.480000pt;}
.yb8{bottom:255.040000pt;}
.yaa{bottom:256.000000pt;}
.y91{bottom:258.240000pt;}
.y186{bottom:258.560000pt;}
.y13b{bottom:258.880000pt;}
.y210{bottom:260.480000pt;}
.yfd{bottom:261.440000pt;}
.y5a{bottom:262.240013pt;}
.y209{bottom:263.360000pt;}
.y135{bottom:263.680000pt;}
.y1b1{bottom:264.000000pt;}
.y1d9{bottom:264.640000pt;}
.y71{bottom:264.960000pt;}
.y191{bottom:265.280000pt;}
.y14a{bottom:266.560000pt;}
.y17b{bottom:267.520000pt;}
.y11e{bottom:269.120000pt;}
.yd5{bottom:269.760000pt;}
.yb7{bottom:273.280000pt;}
.y1d4{bottom:273.600000pt;}
.ya9{bottom:274.560000pt;}
.y1fa{bottom:276.320000pt;}
.yfc{bottom:276.480000pt;}
.y90{bottom:276.800000pt;}
.ye5{bottom:279.040000pt;}
.y59{bottom:280.480013pt;}
.y20{bottom:280.640000pt;}
.y208{bottom:281.600000pt;}
.y1b0{bottom:282.240000pt;}
.y70{bottom:283.520000pt;}
.y149{bottom:284.480000pt;}
.y219{bottom:284.800000pt;}
.y11d{bottom:287.680000pt;}
.yd4{bottom:288.000000pt;}
.yb6{bottom:291.840000pt;}
.ya8{bottom:292.800000pt;}
.y8f{bottom:295.040000pt;}
.y185{bottom:295.360000pt;}
.y1f{bottom:298.880000pt;}
.y58{bottom:299.040013pt;}
.y148{bottom:300.160000pt;}
.y1af{bottom:300.800000pt;}
.y6f{bottom:301.760000pt;}
.y11c{bottom:305.920000pt;}
.yd3{bottom:306.560000pt;}
.y1f1{bottom:307.680000pt;}
.yb5{bottom:310.080000pt;}
.y1d3{bottom:310.400000pt;}
.ya7{bottom:310.720000pt;}
.y8e{bottom:313.600000pt;}
.y147{bottom:315.200000pt;}
.y21a{bottom:316.800000pt;}
.y57{bottom:317.280013pt;}
.y1e{bottom:317.440000pt;}
.y207{bottom:318.400000pt;}
.y1ae{bottom:319.040000pt;}
.y6e{bottom:320.320000pt;}
.y11b{bottom:324.480000pt;}
.yd2{bottom:324.800000pt;}
.ya6{bottom:326.080000pt;}
.yb4{bottom:328.000000pt;}
.y1d2{bottom:328.640000pt;}
.ye6{bottom:328.960000pt;}
.y8d{bottom:331.840000pt;}
.y184{bottom:332.160000pt;}
.y1d{bottom:335.680000pt;}
.y56{bottom:335.840013pt;}
.y206{bottom:336.960000pt;}
.y1ad{bottom:337.600000pt;}
.y6d{bottom:338.560000pt;}
.y9e{bottom:339.040000pt;}
.yb3{bottom:340.480000pt;}
.y11a{bottom:342.720000pt;}
.yd1{bottom:343.360000pt;}
.y1d1{bottom:347.200000pt;}
.y8c{bottom:350.400000pt;}
.y55{bottom:354.080013pt;}
.y1c{bottom:354.240000pt;}
.y205{bottom:355.200000pt;}
.y1ac{bottom:355.840000pt;}
.y6c{bottom:357.120000pt;}
.y119{bottom:361.280000pt;}
.yd0{bottom:361.600000pt;}
.y1d0{bottom:365.440000pt;}
.y8b{bottom:368.640000pt;}
.y183{bottom:368.960000pt;}
.y1b{bottom:372.480000pt;}
.y54{bottom:372.640013pt;}
.y204{bottom:373.760000pt;}
.y1ab{bottom:375.040000pt;}
.y6b{bottom:375.360000pt;}
.y118{bottom:379.520000pt;}
.ycf{bottom:380.160000pt;}
.y1cf{bottom:384.000000pt;}
.y1ec{bottom:384.800000pt;}
.y8a{bottom:387.200000pt;}
.y53{bottom:390.880013pt;}
.y1a{bottom:391.040000pt;}
.y203{bottom:392.000000pt;}
.y6a{bottom:393.920000pt;}
.y117{bottom:398.080000pt;}
.yce{bottom:398.400000pt;}
.y1ce{bottom:402.240000pt;}
.y89{bottom:405.440000pt;}
.y182{bottom:405.760000pt;}
.y19{bottom:409.280000pt;}
.y52{bottom:409.440013pt;}
.y202{bottom:410.560000pt;}
.y69{bottom:412.160000pt;}
.y1f0{bottom:416.160000pt;}
.y116{bottom:416.320000pt;}
.ycd{bottom:416.960000pt;}
.y1cd{bottom:420.800000pt;}
.y88{bottom:424.000000pt;}
.y51{bottom:427.680013pt;}
.y18{bottom:427.840000pt;}
.y201{bottom:428.800000pt;}
.y68{bottom:430.720000pt;}
.y1ed{bottom:432.160000pt;}
.y115{bottom:434.880000pt;}
.ycc{bottom:435.200000pt;}
.y1cc{bottom:439.040000pt;}
.y87{bottom:442.240000pt;}
.y181{bottom:442.560000pt;}
.y17{bottom:446.080000pt;}
.y50{bottom:446.240013pt;}
.y200{bottom:447.360000pt;}
.y67{bottom:448.960000pt;}
.y190{bottom:449.280000pt;}
.y114{bottom:453.120000pt;}
.ycb{bottom:453.760000pt;}
.y1cb{bottom:457.600000pt;}
.y180{bottom:460.480000pt;}
.y86{bottom:460.800000pt;}
.y4f{bottom:464.480013pt;}
.y16{bottom:464.640000pt;}
.y1ff{bottom:465.280000pt;}
.y166{bottom:466.240000pt;}
.y66{bottom:467.520000pt;}
.y113{bottom:471.680000pt;}
.yca{bottom:472.000000pt;}
.y17f{bottom:475.520000pt;}
.y1ca{bottom:475.840000pt;}
.y1fe{bottom:477.760000pt;}
.y1e7{bottom:478.880000pt;}
.y85{bottom:479.040000pt;}
.y15{bottom:482.880000pt;}
.y4e{bottom:483.040013pt;}
.y165{bottom:484.480000pt;}
.y65{bottom:485.760000pt;}
.y17e{bottom:488.000000pt;}
.y112{bottom:489.920000pt;}
.yc9{bottom:490.560000pt;}
.y1c9{bottom:494.400000pt;}
.y84{bottom:497.600000pt;}
.y4d{bottom:501.280013pt;}
.y14{bottom:501.440000pt;}
.y164{bottom:503.040000pt;}
.y3a{bottom:504.320000pt;}
.y111{bottom:508.480000pt;}
.yc8{bottom:508.800000pt;}
.y7b{bottom:509.760000pt;}
.y1c8{bottom:512.640000pt;}
.y83{bottom:515.520000pt;}
.y13{bottom:519.680000pt;}
.y4c{bottom:519.840013pt;}
.y163{bottom:521.280000pt;}
.y39{bottom:522.560000pt;}
.y1e9{bottom:525.600000pt;}
.y110{bottom:526.720000pt;}
.yc7{bottom:527.360000pt;}
.y82{bottom:528.000000pt;}
.y1c7{bottom:531.200000pt;}
.y146{bottom:532.160000pt;}
.y4b{bottom:538.080013pt;}
.y12{bottom:538.240000pt;}
.y162{bottom:539.840000pt;}
.y38{bottom:541.120000pt;}
.y18f{bottom:541.440000pt;}
.y1ea{bottom:541.920000pt;}
.y10f{bottom:545.280000pt;}
.yc6{bottom:545.600000pt;}
.y1c6{bottom:549.440000pt;}
.y145{bottom:550.400000pt;}
.y4a{bottom:556.640013pt;}
.y11{bottom:557.760000pt;}
.y161{bottom:558.080000pt;}
.y37{bottom:559.360000pt;}
.yfb{bottom:559.680000pt;}
.yc5{bottom:563.520000pt;}
.y9a{bottom:564.800000pt;}
.y1c5{bottom:568.000000pt;}
.y144{bottom:568.640000pt;}
.y1df{bottom:573.280000pt;}
.y49{bottom:574.880013pt;}
.yc4{bottom:576.000000pt;}
.y160{bottom:576.640000pt;}
.y36{bottom:577.920000pt;}
.yfa{bottom:578.240000pt;}
.y10{bottom:581.120000pt;}
.y10e{bottom:582.080000pt;}
.y81{bottom:583.360000pt;}
.y1c4{bottom:586.240000pt;}
.y143{bottom:587.200000pt;}
.y1e6{bottom:589.280000pt;}
.y48{bottom:593.440013pt;}
.y15f{bottom:594.880000pt;}
.y35{bottom:596.160000pt;}
.yf9{bottom:596.480000pt;}
.yf{bottom:599.360000pt;}
.y10d{bottom:600.000000pt;}
.y1aa{bottom:600.320000pt;}
.y1c3{bottom:604.800000pt;}
.y142{bottom:605.440000pt;}
.y47{bottom:611.680013pt;}
.y15e{bottom:613.440000pt;}
.y34{bottom:614.720000pt;}
.yf8{bottom:615.040000pt;}
.y10c{bottom:615.680000pt;}
.ye{bottom:617.920000pt;}
.y1a9{bottom:618.880000pt;}
.y1e5{bottom:620.640000pt;}
.y1c2{bottom:623.040000pt;}
.y141{bottom:624.000000pt;}
.y46{bottom:630.240013pt;}
.y10b{bottom:630.720000pt;}
.y15d{bottom:631.360000pt;}
.y33{bottom:632.960000pt;}
.yf7{bottom:633.280000pt;}
.yd{bottom:636.160000pt;}
.y1a8{bottom:637.120000pt;}
.y1c1{bottom:641.600000pt;}
.y140{bottom:642.240000pt;}
.y15c{bottom:647.040000pt;}
.y45{bottom:648.480013pt;}
.y32{bottom:651.520000pt;}
.yf6{bottom:651.840000pt;}
.y1db{bottom:652.000000pt;}
.yc{bottom:654.720000pt;}
.y1a7{bottom:655.680000pt;}
.y1c0{bottom:659.840000pt;}
.y13f{bottom:660.160000pt;}
.y15b{bottom:662.080000pt;}
.y44{bottom:667.040013pt;}
.y31{bottom:669.760000pt;}
.yf5{bottom:670.080000pt;}
.yb{bottom:672.960000pt;}
.y1a6{bottom:673.920000pt;}
.y13e{bottom:675.520000pt;}
.y1bf{bottom:678.400000pt;}
.y43{bottom:685.280013pt;}
.y1da{bottom:687.040000pt;}
.y13d{bottom:688.000000pt;}
.y30{bottom:688.320000pt;}
.yf4{bottom:688.640000pt;}
.ya{bottom:691.520000pt;}
.y1a5{bottom:692.480000pt;}
.y1be{bottom:696.640000pt;}
.y42{bottom:703.840013pt;}
.y2f{bottom:706.560000pt;}
.yf3{bottom:706.880000pt;}
.y9{bottom:709.760000pt;}
.y1a4{bottom:710.720000pt;}
.y1bd{bottom:715.200000pt;}
.y41{bottom:722.080013pt;}
.y2e{bottom:725.120000pt;}
.yf2{bottom:725.440000pt;}
.y8{bottom:728.320000pt;}
.y1a3{bottom:729.280000pt;}
.y1bc{bottom:733.440000pt;}
.y40{bottom:740.640013pt;}
.y2d{bottom:743.360000pt;}
.yf1{bottom:743.680000pt;}
.y7{bottom:746.560000pt;}
.y1a2{bottom:747.520000pt;}
.y1bb{bottom:752.000000pt;}
.y3f{bottom:758.880013pt;}
.y2c{bottom:761.920000pt;}
.yf0{bottom:762.240000pt;}
.y6{bottom:765.120000pt;}
.y1a1{bottom:766.080000pt;}
.y1ba{bottom:770.240000pt;}
.y3e{bottom:777.440013pt;}
.y2b{bottom:780.160000pt;}
.yef{bottom:780.480000pt;}
.y5{bottom:783.360000pt;}
.y1a0{bottom:784.320000pt;}
.y1b9{bottom:788.800000pt;}
.y3d{bottom:795.680013pt;}
.y2a{bottom:798.720000pt;}
.yee{bottom:799.040000pt;}
.y4{bottom:801.920000pt;}
.y19f{bottom:802.880000pt;}
.y1b8{bottom:807.040000pt;}
.y3c{bottom:814.240013pt;}
.y3{bottom:816.960000pt;}
.yed{bottom:817.280000pt;}
.y19e{bottom:821.120000pt;}
.y1b7{bottom:825.600000pt;}
.y29{bottom:835.520000pt;}
.yec{bottom:835.840000pt;}
.y19d{bottom:839.680000pt;}
.y28{bottom:853.760000pt;}
.yeb{bottom:854.080000pt;}
.y19c{bottom:857.920000pt;}
.yea{bottom:872.000000pt;}
.y27{bottom:872.320000pt;}
.y19b{bottom:876.480000pt;}
.ye9{bottom:884.960000pt;}
.y26{bottom:890.560000pt;}
.y19a{bottom:894.400000pt;}
.y193{bottom:896.000000pt;}
.y25{bottom:909.120000pt;}
.y199{bottom:909.760000pt;}
.ye7{bottom:922.720000pt;}
.y24{bottom:927.360000pt;}
.y18e{bottom:932.800000pt;}
.y198{bottom:941.600000pt;}
.y23{bottom:945.920000pt;}
.h24{height:15.360000pt;}
.h27{height:15.680000pt;}
.h10{height:18.240000pt;}
.h1d{height:18.560000pt;}
.h9{height:23.034375pt;}
.hb{height:30.360000pt;}
.h20{height:30.720000pt;}
.h8{height:30.751875pt;}
.h16{height:32.418750pt;}
.hf{height:34.912500pt;}
.h14{height:37.120000pt;}
.hc{height:37.248750pt;}
.h13{height:37.440000pt;}
.h11{height:38.400000pt;}
.h2e{height:39.138750pt;}
.ha{height:39.165000pt;}
.h30{height:40.113750pt;}
.h2{height:42.656250pt;}
.h28{height:46.080000pt;}
.h1f{height:46.593750pt;}
.h2a{height:46.720000pt;}
.h26{height:47.040000pt;}
.h23{height:48.195000pt;}
.h21{height:48.536250pt;}
.h3{height:57.159375pt;}
.h31{height:57.218750pt;}
.h1{height:57.375000pt;}
.h5{height:57.781250pt;}
.h4{height:61.388750pt;}
.h2b{height:76.480000pt;}
.h22{height:78.080000pt;}
.h29{height:93.440000pt;}
.h25{height:93.760000pt;}
.h2d{height:108.800000pt;}
.h2c{height:171.520000pt;}
.h19{height:212.800000pt;}
.he{height:233.280000pt;}
.h18{height:235.200000pt;}
.h1c{height:251.200000pt;}
.h1a{height:261.120000pt;}
.h15{height:279.040000pt;}
.h1b{height:285.760000pt;}
.h17{height:292.480000pt;}
.h2f{height:335.040000pt;}
.h12{height:347.200000pt;}
.hd{height:455.360000pt;}
.h1e{height:816.000000pt;}
.h6{height:829.120013pt;}
.h7{height:1036.640000pt;}
.h0{height:1056.000000pt;}
.w2{width:32.640000pt;}
.w13{width:87.039973pt;}
.w7{width:104.640000pt;}
.w8{width:122.880000pt;}
.w9{width:126.400000pt;}
.w14{width:128.960000pt;}
.w10{width:216.640000pt;}
.w6{width:244.160000pt;}
.w11{width:370.880000pt;}
.w15{width:443.520000pt;}
.w5{width:503.360000pt;}
.wc{width:517.120000pt;}
.w4{width:542.080000pt;}
.w16{width:576.320000pt;}
.wd{width:577.920000pt;}
.we{width:578.880000pt;}
.wb{width:582.400000pt;}
.wf{width:587.200000pt;}
.w1{width:589.120000pt;}
.wa{width:589.440000pt;}
.w3{width:796.640000pt;}
.w0{width:816.000000pt;}
.w12{width:1056.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200064pt;}
.x44{left:9.053440pt;}
.x57{left:12.793333pt;}
.x14{left:16.181440pt;}
.x55{left:17.386667pt;}
.x16{left:19.360000pt;}
.x56{left:23.726667pt;}
.x15{left:25.079680pt;}
.x36{left:26.417600pt;}
.x77{left:28.779963pt;}
.x12{left:29.866752pt;}
.x11{left:31.200064pt;}
.x34{left:32.917120pt;}
.xf{left:33.866752pt;}
.x3c{left:36.735467pt;}
.x38{left:38.409920pt;}
.x39{left:40.276480pt;}
.x5d{left:46.751333pt;}
.x60{left:49.810000pt;}
.x82{left:52.026667pt;}
.x10{left:55.200064pt;}
.x7c{left:63.260133pt;}
.x43{left:77.406000pt;}
.x79{left:87.287707pt;}
.x54{left:91.733333pt;}
.x1a{left:94.560000pt;}
.x76{left:95.840027pt;}
.x2{left:113.920064pt;}
.x3a{left:114.880000pt;}
.x1b{left:118.400192pt;}
.x3e{left:130.370400pt;}
.x3d{left:136.450400pt;}
.x5{left:138.234816pt;}
.x68{left:141.814267pt;}
.x2e{left:143.789067pt;}
.x5b{left:146.056667pt;}
.x48{left:150.080000pt;}
.x7d{left:152.502533pt;}
.x2b{left:157.440000pt;}
.x46{left:161.119936pt;}
.x72{left:166.386848pt;}
.x64{left:181.252000pt;}
.x65{left:183.811600pt;}
.x70{left:185.920064pt;}
.x6a{left:189.485333pt;}
.x73{left:190.386848pt;}
.x75{left:194.147291pt;}
.x2d{left:198.034267pt;}
.x25{left:200.021696pt;}
.x23{left:202.625440pt;}
.x26{left:204.141440pt;}
.x71{left:209.920064pt;}
.x6b{left:211.040000pt;}
.x1f{left:211.965280pt;}
.x5e{left:214.923333pt;}
.x66{left:217.518400pt;}
.x41{left:225.387333pt;}
.x3b{left:227.448533pt;}
.x6{left:229.332480pt;}
.x6c{left:236.080544pt;}
.x5c{left:237.445600pt;}
.x7e{left:241.744933pt;}
.x8{left:246.686656pt;}
.x53{left:252.838800pt;}
.x45{left:259.608533pt;}
.x9{left:268.894976pt;}
.xa{left:278.644992pt;}
.x63{left:282.271200pt;}
.x2c{left:285.078933pt;}
.x3f{left:288.461376pt;}
.x2f{left:292.457472pt;}
.x29{left:295.566848pt;}
.x21{left:299.360000pt;}
.x3{left:302.719872pt;}
.x49{left:304.899333pt;}
.x19{left:305.920064pt;}
.x61{left:309.797312pt;}
.x5a{left:310.695776pt;}
.x7{left:311.621568pt;}
.x78{left:313.120000pt;}
.x30{left:320.256960pt;}
.x22{left:324.521952pt;}
.x4b{left:325.503733pt;}
.x69{left:326.396800pt;}
.x7f{left:330.987467pt;}
.x6f{left:332.000000pt;}
.xb{left:340.031680pt;}
.x1c{left:344.800000pt;}
.x17{left:346.080000pt;}
.x4c{left:348.062533pt;}
.x58{left:352.934080pt;}
.x51{left:358.289200pt;}
.x33{left:359.520000pt;}
.x1d{left:369.881280pt;}
.x18{left:371.089600pt;}
.xd{left:381.406720pt;}
.x6d{left:387.360000pt;}
.x50{left:390.473200pt;}
.x4e{left:394.684267pt;}
.x4d{left:401.902933pt;}
.x27{left:404.960000pt;}
.x4{left:408.520000pt;}
.x6e{left:412.373760pt;}
.x80{left:420.229733pt;}
.x4a{left:423.860400pt;}
.x28{left:430.048320pt;}
.x4f{left:446.720000pt;}
.x52{left:450.329333pt;}
.x24{left:452.320320pt;}
.x35{left:464.800000pt;}
.x42{left:467.745067pt;}
.x31{left:471.520000pt;}
.x5f{left:489.523333pt;}
.x32{left:496.782720pt;}
.x67{left:506.866533pt;}
.x81{left:509.472267pt;}
.xc{left:527.400000pt;}
.x7a{left:530.400000pt;}
.x37{left:588.320000pt;}
.x2a{left:660.520000pt;}
.x47{left:667.720000pt;}
.x1e{left:685.323200pt;}
.x7b{left:689.920000pt;}
.x59{left:692.480000pt;}
.x1{left:694.221440pt;}
.x40{left:695.680000pt;}
.x62{left:701.760000pt;}
.x13{left:703.200000pt;}
.x20{left:718.720320pt;}
.x74{left:944.309467pt;}
}




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