
    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_fdc0fa1f5e3534ad58bbc7de.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_9b558c4cf786dbf536713bb3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_4f256c7a3a1337e00bec2c94.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_5444a274c6f471cb73306e00.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_0ae1ce74592953b43b5673c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_631abba136269d7a9bd7417e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_bc72eec8bd07a5d80a8ec5b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_b742406ad60b245e7df3fdaf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_0e369492949c3f43a9907e0f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.400000;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_f4b9cfb44f73126a82bd4fc9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f2e8e88fb5fe8f63523e7ca5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.875977;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_08298577df8dafa367288441.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_2feb476e1415ed1ebf393b79.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.400000;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_68a5ce9074d56563e3efe3de.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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_eb1b430726eda5883aa4b74f.woff2')format("woff");}.fff{font-family:fff;line-height:1.029000;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_bf2bde881ae5736fbbd8117d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.918000;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_8986cdd5b78c53fab58a1522.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.250000,0.001690,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.001690,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.001690,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250000,0.001556,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.001556,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.001556,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250000,0.001409,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.001409,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.001409,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250000,0.001181,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.001181,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.001181,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250000,0.001102,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.001102,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.001102,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250000,0.000964,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000964,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000964,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250000,0.000510,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000510,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000510,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v1{vertical-align:-88.190791px;}
.v2{vertical-align:-85.310764px;}
.v4{vertical-align:-36.425206px;}
.v7{vertical-align:-26.440651px;}
.v6{vertical-align:-13.503600px;}
.va{vertical-align:-10.515240px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:20.913391px;}
.v5{vertical-align:27.398989px;}
.v3{vertical-align:36.425161px;}
.v8{vertical-align:71.808919px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:36.000322px;}
.ls4{letter-spacing:42.000316px;}
.ls3{letter-spacing:42.000319px;}
.ls1{letter-spacing:108.000354px;}
.ls8{letter-spacing:108.000408px;}
.ls7{letter-spacing:108.000426px;}
.ls9{letter-spacing:344.330561px;}
.ls5{letter-spacing:465.102321px;}
.ls6{letter-spacing:2166.409627px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws32{word-spacing:-85.320003px;}
.ws2e{word-spacing:-61.560002px;}
.ws2f{word-spacing:-36.972003px;}
.ws1e{word-spacing:-33.480000px;}
.ws30{word-spacing:-30.132001px;}
.ws1a{word-spacing:-30.000000px;}
.ws19{word-spacing:-29.040000px;}
.ws2{word-spacing:-28.440000px;}
.ws1d{word-spacing:-27.240000px;}
.ws1f{word-spacing:-25.110001px;}
.ws22{word-spacing:-23.436000px;}
.ws25{word-spacing:-23.004598px;}
.ws17{word-spacing:-22.599001px;}
.ws16{word-spacing:-22.356001px;}
.ws21{word-spacing:-19.908000px;}
.ws6{word-spacing:-19.080001px;}
.ws31{word-spacing:-18.744001px;}
.ws27{word-spacing:-17.994152px;}
.ws2a{word-spacing:-16.904465px;}
.ws8{word-spacing:-16.740000px;}
.ws24{word-spacing:-16.349176px;}
.ws18{word-spacing:-16.104001px;}
.ws7{word-spacing:-15.840001px;}
.ws2b{word-spacing:-15.566418px;}
.ws29{word-spacing:-15.348908px;}
.ws28{word-spacing:-15.105001px;}
.ws26{word-spacing:-12.045053px;}
.ws3{word-spacing:-12.000001px;}
.ws2c{word-spacing:-11.712001px;}
.ws1b{word-spacing:-10.500000px;}
.ws9{word-spacing:-9.540000px;}
.ws5{word-spacing:-8.370000px;}
.ws1{word-spacing:-0.048000px;}
.ws20{word-spacing:-0.030000px;}
.ws0{word-spacing:0.000000px;}
.ws23{word-spacing:116.852989px;}
.ws4{word-spacing:331.256798px;}
.ws1c{word-spacing:603.478955px;}
.ws14{word-spacing:603.953248px;}
.ws13{word-spacing:855.041541px;}
.ws11{word-spacing:888.726952px;}
.wsd{word-spacing:894.867471px;}
.wsc{word-spacing:895.190961px;}
.wsf{word-spacing:906.050783px;}
.ws10{word-spacing:932.414814px;}
.ws12{word-spacing:1014.678041px;}
.wsb{word-spacing:1047.819866px;}
.wsa{word-spacing:1252.527380px;}
.wse{word-spacing:1416.650934px;}
.ws2d{word-spacing:1795.130246px;}
.ws15{word-spacing:1805.285052px;}
._4b{margin-left:-9.720000px;}
._7{margin-left:-8.580000px;}
._f{margin-left:-7.320000px;}
._3{margin-left:-5.520000px;}
._5{margin-left:-4.020000px;}
._1{margin-left:-2.640000px;}
._0{margin-left:-1.530000px;}
._12{width:1.080000px;}
._6a{width:2.520000px;}
._8{width:209.725421px;}
._c{width:218.093031px;}
._1d{width:236.618012px;}
._1c{width:238.056572px;}
._b{width:246.337056px;}
._4c{width:281.725898px;}
._2b{width:325.451057px;}
._2d{width:327.110872px;}
._15{width:336.065214px;}
._5a{width:360.579337px;}
._3e{width:367.637768px;}
._3f{width:378.718718px;}
._22{width:396.488303px;}
._2c{width:409.749960px;}
._19{width:423.013192px;}
._18{width:427.261564px;}
._53{width:450.663906px;}
._1a{width:455.491672px;}
._49{width:456.858828px;}
._d{width:513.486681px;}
._4a{width:520.292333px;}
._23{width:540.582347px;}
._14{width:547.906397px;}
._26{width:560.889815px;}
._33{width:563.430125px;}
._10{width:591.408859px;}
._20{width:596.411644px;}
._27{width:610.597226px;}
._9{width:615.218293px;}
._2e{width:637.343283px;}
._5f{width:659.809127px;}
._16{width:668.185473px;}
._5c{width:685.450501px;}
._4{width:692.948434px;}
._29{width:694.464797px;}
._63{width:700.508881px;}
._59{width:712.623901px;}
._6{width:743.172587px;}
._5d{width:750.765706px;}
._43{width:761.364423px;}
._52{width:763.178700px;}
._17{width:786.574051px;}
._46{width:800.433196px;}
._1b{width:804.376650px;}
._1e{width:823.576725px;}
._32{width:842.372820px;}
._5e{width:868.238488px;}
._65{width:906.768553px;}
._61{width:912.421572px;}
._2a{width:921.728519px;}
._2f{width:945.477682px;}
._4d{width:948.261178px;}
._31{width:950.273278px;}
._45{width:956.861215px;}
._21{width:968.751388px;}
._2{width:985.378228px;}
._40{width:989.092722px;}
._41{width:995.494392px;}
._3b{width:998.867832px;}
._25{width:1012.759692px;}
._34{width:1014.606852px;}
._42{width:1030.596702px;}
._38{width:1036.548326px;}
._60{width:1045.788685px;}
._36{width:1049.161016px;}
._37{width:1070.393125px;}
._67{width:1090.776234px;}
._5b{width:1101.686934px;}
._24{width:1104.771475px;}
._a{width:1117.229139px;}
._13{width:1131.241885px;}
._48{width:1133.366304px;}
._3a{width:1159.941909px;}
._44{width:1164.722656px;}
._11{width:1184.962509px;}
._30{width:1214.028278px;}
._57{width:1242.215272px;}
._58{width:1243.653877px;}
._35{width:1252.466632px;}
._47{width:1265.100770px;}
._54{width:1271.991321px;}
._56{width:1273.538241px;}
._55{width:1278.657621px;}
._1f{width:1322.590791px;}
._28{width:1374.318575px;}
._3d{width:1396.538315px;}
._69{width:1461.032913px;}
._e{width:1554.992252px;}
._68{width:1660.876514px;}
._51{width:2183.576098px;}
._50{width:2504.413066px;}
._4f{width:2506.763641px;}
._3c{width:2514.948145px;}
._62{width:2608.869112px;}
._66{width:2653.588049px;}
._64{width:2654.624866px;}
._4e{width:2769.600345px;}
._39{width:3600.133233px;}
.fc7{color:rgb(166,77,121);}
.fc6{color:rgb(106,168,79);}
.fcb{color:rgb(232,65,78);}
.fc5{color:rgb(10,186,240);}
.fc8{color:rgb(230,145,56);}
.fc4{color:rgb(130,75,115);}
.fc3{color:transparent;}
.fc2{color:rgb(0,144,162);}
.fc1{color:rgb(69,84,107);}
.fcc{color:rgb(67,67,67);}
.fca{color:rgb(0,0,0);}
.fc9{color:rgb(238,238,238);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:30.000000px;}
.fs18{font-size:30.000003px;}
.fs14{font-size:30.000006px;}
.fsb{font-size:36.000001px;}
.fs11{font-size:42.000000px;}
.fs5{font-size:48.000003px;}
.fs17{font-size:50.823007px;}
.fs2{font-size:54.000002px;}
.fs1a{font-size:57.000003px;}
.fs1b{font-size:57.920406px;}
.fs1d{font-size:58.741202px;}
.fs7{font-size:60.000000px;}
.fs15{font-size:61.695002px;}
.fs1{font-size:66.000004px;}
.fs19{font-size:71.976607px;}
.fsa{font-size:72.000002px;}
.fs1c{font-size:74.469008px;}
.fs10{font-size:81.000003px;}
.fs13{font-size:84.000000px;}
.fs16{font-size:86.809804px;}
.fsf{font-size:90.000003px;}
.fs3{font-size:96.000006px;}
.fsc{font-size:105.000006px;}
.fs6{font-size:108.000003px;}
.fsd{font-size:114.000007px;}
.fs4{font-size:120.000001px;}
.fs9{font-size:138.000001px;}
.fs1e{font-size:156.000011px;}
.fs12{font-size:216.000007px;}
.fse{font-size:252.000008px;}
.fs8{font-size:270.000009px;}
.fs1f{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.y1{bottom:5.001856px;}
.y85{bottom:10.771631px;}
.ycb{bottom:11.661281px;}
.yc6{bottom:18.385935px;}
.ya2{bottom:18.496879px;}
.yaf{bottom:19.036879px;}
.ycd{bottom:20.361660px;}
.yca{bottom:20.661281px;}
.ya8{bottom:21.642506px;}
.yc5{bottom:27.385935px;}
.ycc{bottom:29.361660px;}
.yaa{bottom:35.369869px;}
.y14{bottom:39.824570px;}
.yce{bottom:39.824577px;}
.y29{bottom:40.527094px;}
.y21{bottom:40.527173px;}
.yc{bottom:40.544566px;}
.y9{bottom:40.544577px;}
.y79{bottom:40.544926px;}
.ya5{bottom:40.545466px;}
.yc9{bottom:44.571672px;}
.ya4{bottom:47.360378px;}
.ya9{bottom:48.818379px;}
.yae{bottom:49.545466px;}
.y4{bottom:73.966292px;}
.y139{bottom:76.176886px;}
.y13{bottom:81.944578px;}
.y151{bottom:82.656774px;}
.yb{bottom:87.344567px;}
.ya0{bottom:89.273436px;}
.ya1{bottom:92.084496px;}
.yb2{bottom:92.272428px;}
.y144{bottom:92.376853px;}
.y74{bottom:96.615699px;}
.y3{bottom:96.646293px;}
.y52{bottom:98.252472px;}
.y22{bottom:106.115172px;}
.y67{bottom:107.874801px;}
.y134{bottom:108.576887px;}
.y150{bottom:111.456775px;}
.yde{bottom:112.282882px;}
.y39{bottom:113.587533px;}
.y2f{bottom:114.821455px;}
.y4d{bottom:118.099453px;}
.yfb{bottom:118.484204px;}
.y70{bottom:121.422107px;}
.ye0{bottom:122.806764px;}
.yb1{bottom:123.453694px;}
.y12{bottom:124.064580px;}
.yf9{bottom:124.109204px;}
.y38{bottom:124.387533px;}
.y143{bottom:124.776843px;}
.y42{bottom:124.800597px;}
.y7b{bottom:127.704029px;}
.y117{bottom:131.312280px;}
.y120{bottom:132.941325px;}
.ye{bottom:134.144569px;}
.y37{bottom:135.187529px;}
.y99{bottom:136.436610px;}
.y128{bottom:136.875866px;}
.ydd{bottom:137.032882px;}
.y68{bottom:138.102123px;}
.y28{bottom:139.909373px;}
.y14f{bottom:140.256776px;}
.y133{bottom:140.976866px;}
.y2{bottom:142.261894px;}
.y36{bottom:145.987527px;}
.y8c{bottom:146.103348px;}
.y4f{bottom:147.701305px;}
.y116{bottom:148.187280px;}
.yfa{bottom:148.433583px;}
.y11f{bottom:149.816325px;}
.y48{bottom:151.251974px;}
.y66{bottom:152.514555px;}
.yf8{bottom:154.058583px;}
.y127{bottom:154.875867px;}
.y2d{bottom:155.286409px;}
.y142{bottom:157.176833px;}
.y154{bottom:158.987854px;}
.y27{bottom:161.509373px;}
.ydc{bottom:161.782885px;}
.yee{bottom:164.428942px;}
.ye4{bottom:165.320099px;}
.ye9{bottom:165.996787px;}
.y11{bottom:166.184575px;}
.y35{bottom:167.587525px;}
.y98{bottom:168.026600px;}
.y14e{bottom:169.056777px;}
.y132{bottom:173.376856px;}
.y15{bottom:173.699446px;}
.y10{bottom:176.147142px;}
.y34{bottom:178.387524px;}
.y153{bottom:178.787855px;}
.y80{bottom:180.139786px;}
.y115{bottom:181.937281px;}
.y11e{bottom:183.566315px;}
.yf{bottom:184.584431px;}
.ycf{bottom:188.816348px;}
.y141{bottom:189.576811px;}
.y126{bottom:190.875868px;}
.y6c{bottom:193.714362px;}
.y14d{bottom:197.856800px;}
.y114{bottom:198.812282px;}
.y97{bottom:199.616567px;}
.y8a{bottom:200.437025px;}
.y11d{bottom:200.441316px;}
.y8{bottom:201.174006px;}
.ye1{bottom:205.371428px;}
.y131{bottom:205.776846px;}
.y3b{bottom:206.369884px;}
.y125{bottom:208.875868px;}
.y1d{bottom:214.433148px;}
.y20{bottom:215.305507px;}
.y3a{bottom:217.369882px;}
.y152{bottom:218.387856px;}
.y140{bottom:221.976801px;}
.y26{bottom:222.545082px;}
.y14c{bottom:226.656812px;}
.y1c{bottom:229.058149px;}
.yf4{bottom:229.308468px;}
.y1f{bottom:229.930507px;}
.y96{bottom:231.206568px;}
.y113{bottom:232.562283px;}
.y11c{bottom:234.191317px;}
.y7{bottom:235.734007px;}
.y130{bottom:238.176835px;}
.y51{bottom:238.359406px;}
.ydb{bottom:241.867552px;}
.y124{bottom:244.875872px;}
.y1b{bottom:247.778153px;}
.y1e{bottom:248.650511px;}
.y50{bottom:249.359403px;}
.y112{bottom:249.437284px;}
.y11b{bottom:251.066317px;}
.y44{bottom:252.116844px;}
.y13f{bottom:254.376780px;}
.y25{bottom:255.182976px;}
.y14b{bottom:255.456813px;}
.y7f{bottom:261.656489px;}
.y10d{bottom:261.979114px;}
.y95{bottom:262.796591px;}
.y123{bottom:262.875872px;}
.yf1{bottom:263.426344px;}
.yf2{bottom:264.024889px;}
.yda{bottom:266.617553px;}
.y23{bottom:269.179223px;}
.yb3{bottom:269.775643px;}
.y12f{bottom:270.576814px;}
.y107{bottom:271.384064px;}
.yc3{bottom:273.636979px;}
.y10f{bottom:280.199760px;}
.yd1{bottom:280.418729px;}
.yf5{bottom:281.383122px;}
.y106{bottom:282.384061px;}
.y111{bottom:283.187296px;}
.y6{bottom:283.254000px;}
.y11a{bottom:284.816318px;}
.y7a{bottom:285.082939px;}
.y13e{bottom:286.776814px;}
.y10a{bottom:291.193534px;}
.yd9{bottom:291.367554px;}
.y10c{bottom:291.461787px;}
.y105{bottom:293.384058px;}
.y94{bottom:294.386592px;}
.y122{bottom:298.875874px;}
.y100{bottom:299.258244px;}
.y10e{bottom:301.792741px;}
.y109{bottom:302.193531px;}
.y12e{bottom:302.976826px;}
.y9c{bottom:304.510738px;}
.yc2{bottom:306.261980px;}
.y3d{bottom:308.469684px;}
.y156{bottom:310.743204px;}
.y18{bottom:312.763079px;}
.ya6{bottom:312.845931px;}
.y10b{bottom:313.054768px;}
.y14a{bottom:313.056849px;}
.y108{bottom:313.193530px;}
.y24{bottom:314.480241px;}
.yd8{bottom:316.117557px;}
.y102{bottom:316.285136px;}
.y5{bottom:317.813998px;}
.y13d{bottom:319.176815px;}
.y3c{bottom:319.469681px;}
.y9b{bottom:324.310738px;}
.y87{bottom:325.664069px;}
.y93{bottom:325.976593px;}
.ya7{bottom:326.524941px;}
.y17{bottom:327.388079px;}
.y12d{bottom:335.376827px;}
.yc1{bottom:338.886981px;}
.y149{bottom:341.856861px;}
.y4e{bottom:343.921779px;}
.y9a{bottom:344.110739px;}
.y16{bottom:346.108083px;}
.yb9{bottom:346.798455px;}
.yf3{bottom:348.367492px;}
.y13c{bottom:351.576816px;}
.ya3{bottom:354.404816px;}
.y92{bottom:357.566595px;}
.y84{bottom:357.707298px;}
.y138{bottom:367.776828px;}
.y148{bottom:370.656862px;}
.yc0{bottom:371.511982px;}
.yf6{bottom:375.790605px;}
.yba{bottom:381.775921px;}
.y1a{bottom:384.493225px;}
.y91{bottom:389.156596px;}
.yb8{bottom:390.143108px;}
.y83{bottom:392.807295px;}
.y147{bottom:399.456874px;}
.y12c{bottom:400.176840px;}
.y19{bottom:403.213223px;}
.ybf{bottom:404.136983px;}
.y73{bottom:407.332969px;}
.yd4{bottom:412.206136px;}
.yff{bottom:412.681205px;}
.y12a{bottom:415.551841px;}
.y13b{bottom:416.376830px;}
.y155{bottom:418.743202px;}
.yc8{bottom:418.758834px;}
.y90{bottom:420.746597px;}
.y82{bottom:427.907290px;}
.y146{bottom:428.256875px;}
.y65{bottom:428.842329px;}
.y33{bottom:430.248619px;}
.yb7{bottom:431.543121px;}
.y137{bottom:432.576819px;}
.ye5{bottom:434.502941px;}
.y41{bottom:434.939217px;}
.ybe{bottom:436.761985px;}
.yd3{bottom:436.956137px;}
.y72{bottom:441.532970px;}
.y5e{bottom:445.820660px;}
.y101{bottom:446.884110px;}
.yd7{bottom:447.253874px;}
.yc7{bottom:451.383835px;}
.y8f{bottom:452.336586px;}
.y86{bottom:455.924297px;}
.y55{bottom:458.860041px;}
.y59{bottom:459.729912px;}
.y7e{bottom:461.281300px;}
.yd2{bottom:461.706140px;}
.y69{bottom:466.138577px;}
.y6d{bottom:467.517512px;}
.y12b{bottom:467.856826px;}
.y129{bottom:467.892509px;}
.yc4{bottom:469.386986px;}
.yea{bottom:470.984195px;}
.yd6{bottom:472.003875px;}
.yb6{bottom:472.943111px;}
.y103{bottom:474.240222px;}
.y71{bottom:475.732968px;}
.y58{bottom:477.729913px;}
.y8e{bottom:483.926584px;}
.y13a{bottom:484.056821px;}
.y110{bottom:486.025199px;}
.ye2{bottom:491.995094px;}
.y145{bottom:493.056872px;}
.y57{bottom:495.729913px;}
.y121{bottom:496.740946px;}
.yd5{bottom:496.753878px;}
.yab{bottom:497.081395px;}
.y5d{bottom:498.624798px;}
.y136{bottom:500.256810px;}
.y78{bottom:500.702066px;}
.y54{bottom:501.973226px;}
.y56{bottom:513.729914px;}
.yb5{bottom:514.343108px;}
.y40{bottom:514.980730px;}
.y8d{bottom:515.516578px;}
.y118{bottom:516.781298px;}
.ybd{bottom:517.167138px;}
.y135{bottom:518.096384px;}
.y32{bottom:521.053931px;}
.yec{bottom:521.073836px;}
.ybb{bottom:522.592008px;}
.ye7{bottom:522.603364px;}
.yd0{bottom:523.074750px;}
.y4a{bottom:523.299217px;}
.y2e{bottom:523.365945px;}
.y75{bottom:524.154330px;}
.y77{bottom:525.471462px;}
.ybc{bottom:525.807140px;}
.y60{bottom:526.551968px;}
.yfe{bottom:526.577832px;}
.y81{bottom:527.292138px;}
.y31{bottom:528.704524px;}
.y3f{bottom:529.012226px;}
.y43{bottom:529.498379px;}
.y2c{bottom:533.002260px;}
.y5a{bottom:541.250785px;}
.yb0{bottom:543.680425px;}
.yfc{bottom:544.233345px;}
.yfd{bottom:544.236299px;}
.yef{bottom:544.469288px;}
.y9d{bottom:544.968230px;}
.y89{bottom:545.818699px;}
.y49{bottom:547.579733px;}
.y7d{bottom:547.585925px;}
.y2b{bottom:547.907771px;}
.y6e{bottom:548.062794px;}
.y64{bottom:548.080509px;}
.yf7{bottom:549.387668px;}
.y6a{bottom:549.884645px;}
.yf0{bottom:550.521527px;}
.y5c{bottom:550.611022px;}
.ya{bottom:551.183857px;}
.y7c{bottom:551.597242px;}
.y104{bottom:553.494954px;}
.y4b{bottom:554.024408px;}
.yb4{bottom:555.743104px;}
.y6f{bottom:556.758659px;}
.y45{bottom:557.659249px;}
.y63{bottom:558.639564px;}
.y8b{bottom:559.404329px;}
.y3e{bottom:559.597129px;}
.y119{bottom:559.781369px;}
.y6b{bottom:559.817715px;}
.yed{bottom:561.019489px;}
.y2a{bottom:562.479627px;}
.ye3{bottom:566.103916px;}
.y76{bottom:566.367094px;}
.y9f{bottom:566.678683px;}
.yd{bottom:566.780314px;}
.yeb{bottom:566.839369px;}
.ye6{bottom:568.439763px;}
.ye8{bottom:568.587401px;}
.y30{bottom:568.593305px;}
.y4c{bottom:571.032283px;}
.y61{bottom:571.581496px;}
.y5b{bottom:572.641535px;}
.y53{bottom:572.644486px;}
.y47{bottom:573.273424px;}
.yad{bottom:574.174810px;}
.y9e{bottom:575.678684px;}
.y46{bottom:575.957481px;}
.ydf{bottom:580.971259px;}
.y62{bottom:584.089369px;}
.yac{bottom:584.476562px;}
.y88{bottom:586.074863px;}
.y5f{bottom:588.474212px;}
.h19{height:21.300000px;}
.h1{height:31.500000px;}
.h20{height:31.500003px;}
.h1c{height:31.500007px;}
.h13{height:31.712600px;}
.hc{height:37.800001px;}
.h1a{height:40.944003px;}
.h15{height:44.100000px;}
.h8{height:50.400003px;}
.h1f{height:53.364157px;}
.h3{height:56.700002px;}
.h14{height:58.898989px;}
.h22{height:59.850003px;}
.h24{height:60.816427px;}
.h26{height:61.678262px;}
.h7{height:63.000000px;}
.h1d{height:64.779752px;}
.h27{height:65.084762px;}
.he{height:67.925161px;}
.h2{height:69.300004px;}
.h21{height:75.575437px;}
.hb{height:75.600002px;}
.h12{height:85.050003px;}
.h1b{height:88.200000px;}
.h1e{height:91.150294px;}
.h18{height:92.124003px;}
.h11{height:94.500003px;}
.h25{height:99.105849px;}
.h4{height:100.800006px;}
.hd{height:110.250007px;}
.h6{height:113.400004px;}
.hf{height:119.700007px;}
.h5{height:126.000001px;}
.ha{height:144.900001px;}
.h23{height:147.408921px;}
.h28{height:163.800012px;}
.h16{height:184.248006px;}
.h17{height:214.956007px;}
.h10{height:264.600008px;}
.h9{height:283.500009px;}
.h29{height:378.000012px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1{left:4.962158px;}
.x85{left:11.690973px;}
.x70{left:15.688888px;}
.xb4{left:26.376969px;}
.x107{left:29.360277px;}
.x37{left:30.626071px;}
.x100{left:32.802757px;}
.xb9{left:34.841074px;}
.x81{left:36.411036px;}
.xa6{left:38.420450px;}
.x101{left:39.890295px;}
.xc2{left:41.483269px;}
.x99{left:43.592503px;}
.xff{left:46.370238px;}
.x6e{left:49.040267px;}
.x5c{left:50.442972px;}
.xb5{left:52.198820px;}
.xcf{left:53.980809px;}
.x103{left:55.914730px;}
.x89{left:57.225425px;}
.x32{left:59.025591px;}
.xc8{left:61.653242px;}
.xd3{left:63.032998px;}
.xf6{left:64.136164px;}
.xd6{left:67.376882px;}
.x18{left:68.524314px;}
.x9c{left:69.617261px;}
.x109{left:70.770015px;}
.xa3{left:73.333400px;}
.x3f{left:74.362210px;}
.x105{left:76.245668px;}
.x61{left:78.759903px;}
.x12{left:80.066447px;}
.x28{left:82.524315px;}
.xa{left:84.024066px;}
.x106{left:86.208657px;}
.xbe{left:87.859698px;}
.x1b{left:90.037571px;}
.x102{left:92.067597px;}
.x4c{left:93.350532px;}
.x33{left:94.664931px;}
.xbd{left:96.297686px;}
.xca{left:100.328741px;}
.xad{left:104.956387px;}
.xc3{left:106.175170px;}
.x17{left:107.485300px;}
.x42{left:109.137378px;}
.x104{left:112.925068px;}
.x5b{left:115.077267px;}
.x3a{left:116.171988px;}
.x11{left:117.746395px;}
.xe8{left:119.095447px;}
.xf2{left:120.816300px;}
.x1a{left:122.948729px;}
.x2d{left:124.223658px;}
.xac{left:126.282708px;}
.x95{left:127.342271px;}
.x14{left:128.617128px;}
.xd2{left:131.540640px;}
.xe{left:133.249822px;}
.x5d{left:136.128583px;}
.x45{left:139.157235px;}
.xd{left:141.436384px;}
.x6c{left:143.407395px;}
.x2b{left:147.449582px;}
.xce{left:152.727447px;}
.xea{left:155.188872px;}
.x16{left:157.266680px;}
.x2a{left:161.813453px;}
.x40{left:162.938318px;}
.xab{left:164.917639px;}
.x1f{left:168.621133px;}
.x35{left:170.539262px;}
.xbf{left:171.946830px;}
.x57{left:173.104032px;}
.x6f{left:175.188410px;}
.x1d{left:177.470526px;}
.x29{left:178.931649px;}
.x9{left:180.075400px;}
.x15{left:181.561068px;}
.x54{left:183.180421px;}
.x7e{left:184.415395px;}
.x58{left:186.643447px;}
.xe5{left:189.905487px;}
.x8f{left:191.966807px;}
.x60{left:193.135850px;}
.x63{left:194.781063px;}
.x52{left:197.002337px;}
.x1e{left:198.081934px;}
.xb{left:200.543076px;}
.xf0{left:203.827502px;}
.xfe{left:205.704856px;}
.x59{left:208.250091px;}
.xe3{left:210.904382px;}
.xf8{left:214.353025px;}
.xdb{left:216.482110px;}
.x8d{left:220.500250px;}
.xf{left:222.014995px;}
.xe9{left:225.688649px;}
.x9f{left:227.352940px;}
.x108{left:228.453752px;}
.x41{left:229.646782px;}
.x9d{left:233.050593px;}
.x4a{left:234.714367px;}
.x50{left:236.156509px;}
.x4f{left:238.568268px;}
.x6d{left:244.940752px;}
.x9e{left:251.529702px;}
.x8b{left:253.577344px;}
.xef{left:255.766132px;}
.x5a{left:262.858729px;}
.x55{left:264.657660px;}
.x7f{left:267.131749px;}
.x6b{left:272.529904px;}
.x8{left:273.609094px;}
.xdc{left:276.817977px;}
.x97{left:279.951934px;}
.x98{left:281.780858px;}
.x83{left:285.207714px;}
.x56{left:286.728800px;}
.x9b{left:289.937705px;}
.x84{left:292.801460px;}
.x2f{left:294.553359px;}
.x7c{left:296.445110px;}
.x72{left:300.973618px;}
.x80{left:302.233010px;}
.x91{left:305.614900px;}
.x3d{left:310.729926px;}
.xc7{left:311.918455px;}
.x19{left:313.116778px;}
.x34{left:315.592543px;}
.xa8{left:316.987138px;}
.xb8{left:318.814998px;}
.x53{left:320.740199px;}
.x87{left:324.154063px;}
.x31{left:329.327736px;}
.x65{left:336.329388px;}
.x3b{left:340.911776px;}
.x77{left:347.395023px;}
.xd7{left:348.879269px;}
.x4b{left:354.516739px;}
.xd0{left:356.617019px;}
.x46{left:360.177064px;}
.x51{left:364.833525px;}
.x75{left:366.743185px;}
.x30{left:372.835609px;}
.x21{left:377.276292px;}
.xdf{left:379.266458px;}
.x20{left:382.112963px;}
.xf5{left:385.004724px;}
.x6a{left:386.905082px;}
.xa0{left:389.382267px;}
.x9a{left:391.512916px;}
.x7b{left:393.606649px;}
.x39{left:398.329332px;}
.xfd{left:402.708383px;}
.xcb{left:407.096484px;}
.xfa{left:410.710626px;}
.x5e{left:417.310225px;}
.x2c{left:420.386139px;}
.x79{left:422.680082px;}
.xf7{left:429.271500px;}
.xe7{left:436.632735px;}
.x5f{left:445.316437px;}
.xbc{left:451.287779px;}
.xfb{left:454.393045px;}
.x96{left:463.152649px;}
.xd9{left:466.446356px;}
.xc1{left:469.597459px;}
.x36{left:480.206783px;}
.x94{left:489.412692px;}
.x92{left:492.057709px;}
.xc9{left:493.206485px;}
.xfc{left:496.480984px;}
.x4e{left:502.123145px;}
.x66{left:519.422284px;}
.x67{left:520.891259px;}
.x68{left:529.168393px;}
.x93{left:534.704170px;}
.xb3{left:550.151624px;}
.xd1{left:555.874893px;}
.xde{left:557.467420px;}
.x1c{left:562.136024px;}
.x73{left:564.803759px;}
.xe0{left:567.473733px;}
.xdd{left:571.612073px;}
.xe2{left:573.496162px;}
.xb6{left:590.702382px;}
.x64{left:593.931672px;}
.x82{left:597.098872px;}
.xe4{left:599.557148px;}
.x24{left:603.771199px;}
.x22{left:612.029974px;}
.x49{left:614.303232px;}
.xa2{left:619.899444px;}
.x10{left:623.068487px;}
.x8c{left:624.369710px;}
.x23{left:625.810761px;}
.x76{left:627.421070px;}
.x2e{left:630.785947px;}
.xe1{left:635.451135px;}
.x3{left:637.795303px;}
.xee{left:645.256758px;}
.x10c{left:652.264063px;}
.xc{left:654.970113px;}
.xf4{left:657.882180px;}
.x69{left:660.067199px;}
.x10b{left:664.828149px;}
.x8a{left:669.487724px;}
.xf3{left:673.571823px;}
.xc0{left:707.292551px;}
.x13{left:708.856434px;}
.x6{left:713.268957px;}
.x5{left:716.292000px;}
.xf1{left:717.679260px;}
.xaa{left:721.211198px;}
.x86{left:732.497378px;}
.x10d{left:739.416567px;}
.x7{left:740.778121px;}
.xcc{left:744.959656px;}
.xa5{left:754.331762px;}
.xa9{left:755.338299px;}
.x4{left:760.141471px;}
.x3e{left:762.342002px;}
.x4d{left:769.911550px;}
.x10a{left:771.093981px;}
.x2{left:773.329266px;}
.xaf{left:785.316220px;}
.x38{left:795.389875px;}
.x47{left:797.769577px;}
.x27{left:801.106354px;}
.x62{left:810.560390px;}
.x44{left:821.373197px;}
.x43{left:822.385208px;}
.x25{left:825.378175px;}
.xae{left:832.011023px;}
.xcd{left:833.459652px;}
.x26{left:834.463774px;}
.xb1{left:836.416714px;}
.xed{left:837.449428px;}
.x48{left:839.468378px;}
.xd4{left:846.586608px;}
.x90{left:848.679751px;}
.xd8{left:850.858767px;}
.xda{left:852.077829px;}
.xd5{left:855.206251px;}
.xa1{left:861.938443px;}
.xbb{left:863.913146px;}
.xc5{left:867.590687px;}
.xa7{left:868.840745px;}
.x71{left:878.401153px;}
.x8e{left:879.969961px;}
.xeb{left:881.546632px;}
.xec{left:882.661060px;}
.xa4{left:901.990856px;}
.xb0{left:920.370640px;}
.xf9{left:925.383911px;}
.xe6{left:929.415207px;}
.x74{left:933.001450px;}
.xc6{left:938.025840px;}
.x7a{left:941.475851px;}
.x88{left:943.882338px;}
.xc4{left:948.590689px;}
.x78{left:956.782939px;}
.x3c{left:966.034201px;}
.x7d{left:982.229809px;}
.xb7{left:1052.244652px;}
.xb2{left:1053.275659px;}
.xba{left:1054.520932px;}
@media print{
.v1{vertical-align:-78.391815pt;}
.v2{vertical-align:-75.831790pt;}
.v4{vertical-align:-32.377961pt;}
.v7{vertical-align:-23.502801pt;}
.v6{vertical-align:-12.003200pt;}
.va{vertical-align:-9.346880pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:18.589681pt;}
.v5{vertical-align:24.354657pt;}
.v3{vertical-align:32.377921pt;}
.v8{vertical-align:63.830150pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:32.000286pt;}
.ls4{letter-spacing:37.333614pt;}
.ls3{letter-spacing:37.333617pt;}
.ls1{letter-spacing:96.000315pt;}
.ls8{letter-spacing:96.000363pt;}
.ls7{letter-spacing:96.000379pt;}
.ls9{letter-spacing:306.071610pt;}
.ls5{letter-spacing:413.424285pt;}
.ls6{letter-spacing:1925.697446pt;}
.ws32{word-spacing:-75.840002pt;}
.ws2e{word-spacing:-54.720002pt;}
.ws2f{word-spacing:-32.864002pt;}
.ws1e{word-spacing:-29.760000pt;}
.ws30{word-spacing:-26.784001pt;}
.ws1a{word-spacing:-26.666667pt;}
.ws19{word-spacing:-25.813334pt;}
.ws2{word-spacing:-25.280000pt;}
.ws1d{word-spacing:-24.213334pt;}
.ws1f{word-spacing:-22.320001pt;}
.ws22{word-spacing:-20.832000pt;}
.ws25{word-spacing:-20.448532pt;}
.ws17{word-spacing:-20.088001pt;}
.ws16{word-spacing:-19.872001pt;}
.ws21{word-spacing:-17.696000pt;}
.ws6{word-spacing:-16.960001pt;}
.ws31{word-spacing:-16.661334pt;}
.ws27{word-spacing:-15.994802pt;}
.ws2a{word-spacing:-15.026191pt;}
.ws8{word-spacing:-14.880000pt;}
.ws24{word-spacing:-14.532600pt;}
.ws18{word-spacing:-14.314667pt;}
.ws7{word-spacing:-14.080000pt;}
.ws2b{word-spacing:-13.836816pt;}
.ws29{word-spacing:-13.643473pt;}
.ws28{word-spacing:-13.426667pt;}
.ws26{word-spacing:-10.706713pt;}
.ws3{word-spacing:-10.666667pt;}
.ws2c{word-spacing:-10.410667pt;}
.ws1b{word-spacing:-9.333333pt;}
.ws9{word-spacing:-8.480000pt;}
.ws5{word-spacing:-7.440000pt;}
.ws1{word-spacing:-0.042667pt;}
.ws20{word-spacing:-0.026667pt;}
.ws0{word-spacing:0.000000pt;}
.ws23{word-spacing:103.869323pt;}
.ws4{word-spacing:294.450487pt;}
.ws1c{word-spacing:536.425738pt;}
.ws14{word-spacing:536.847331pt;}
.ws13{word-spacing:760.036926pt;}
.ws11{word-spacing:789.979513pt;}
.wsd{word-spacing:795.437752pt;}
.wsc{word-spacing:795.725299pt;}
.wsf{word-spacing:805.378474pt;}
.ws10{word-spacing:828.813168pt;}
.ws12{word-spacing:901.936037pt;}
.wsb{word-spacing:931.395436pt;}
.wsa{word-spacing:1113.357671pt;}
.wse{word-spacing:1259.245275pt;}
.ws2d{word-spacing:1595.671329pt;}
.ws15{word-spacing:1604.697824pt;}
._4b{margin-left:-8.640000pt;}
._7{margin-left:-7.626667pt;}
._f{margin-left:-6.506667pt;}
._3{margin-left:-4.906667pt;}
._5{margin-left:-3.573333pt;}
._1{margin-left:-2.346667pt;}
._0{margin-left:-1.360000pt;}
._12{width:0.960000pt;}
._6a{width:2.240000pt;}
._8{width:186.422596pt;}
._c{width:193.860472pt;}
._1d{width:210.327121pt;}
._1c{width:211.605841pt;}
._b{width:218.966272pt;}
._4c{width:250.423021pt;}
._2b{width:289.289828pt;}
._2d{width:290.765220pt;}
._15{width:298.724635pt;}
._5a{width:320.514967pt;}
._3e{width:326.789128pt;}
._3f{width:336.638861pt;}
._22{width:352.434047pt;}
._2c{width:364.222187pt;}
._19{width:376.011727pt;}
._18{width:379.788057pt;}
._53{width:400.590138pt;}
._1a{width:404.881486pt;}
._49{width:406.096736pt;}
._d{width:456.432605pt;}
._4a{width:462.482074pt;}
._23{width:480.517642pt;}
._14{width:487.027909pt;}
._26{width:498.568724pt;}
._33{width:500.826777pt;}
._10{width:525.696764pt;}
._20{width:530.143684pt;}
._27{width:542.753090pt;}
._9{width:546.860704pt;}
._2e{width:566.527363pt;}
._5f{width:586.497002pt;}
._16{width:593.942643pt;}
._5c{width:609.289335pt;}
._4{width:615.954163pt;}
._29{width:617.302042pt;}
._63{width:622.674561pt;}
._59{width:633.443468pt;}
._6{width:660.597855pt;}
._5d{width:667.347294pt;}
._43{width:676.768376pt;}
._52{width:678.381067pt;}
._17{width:699.176934pt;}
._46{width:711.496174pt;}
._1b{width:715.001467pt;}
._1e{width:732.068200pt;}
._32{width:748.775840pt;}
._5e{width:771.767545pt;}
._65{width:806.016491pt;}
._61{width:811.041398pt;}
._2a{width:819.314239pt;}
._2f{width:840.424606pt;}
._4d{width:842.898825pt;}
._31{width:844.687358pt;}
._45{width:850.543302pt;}
._21{width:861.112345pt;}
._2{width:875.891759pt;}
._40{width:879.193531pt;}
._41{width:884.883904pt;}
._3b{width:887.882517pt;}
._25{width:900.230837pt;}
._34{width:901.872757pt;}
._42{width:916.085957pt;}
._38{width:921.376290pt;}
._60{width:929.589942pt;}
._36{width:932.587570pt;}
._37{width:951.460556pt;}
._67{width:969.578875pt;}
._5b{width:979.277275pt;}
._24{width:982.019089pt;}
._a{width:993.092568pt;}
._13{width:1005.548342pt;}
._48{width:1007.436715pt;}
._3a{width:1031.059475pt;}
._44{width:1035.309027pt;}
._11{width:1053.300008pt;}
._30{width:1079.136247pt;}
._57{width:1104.191353pt;}
._58{width:1105.470113pt;}
._35{width:1113.303673pt;}
._47{width:1124.534018pt;}
._54{width:1130.658952pt;}
._56{width:1132.033992pt;}
._55{width:1136.584552pt;}
._1f{width:1175.636259pt;}
._28{width:1221.616511pt;}
._3d{width:1241.367391pt;}
._69{width:1298.695923pt;}
._e{width:1382.215335pt;}
._68{width:1476.334679pt;}
._51{width:1940.956532pt;}
._50{width:2226.144947pt;}
._4f{width:2228.234347pt;}
._3c{width:2235.509462pt;}
._62{width:2318.994766pt;}
._66{width:2358.744932pt;}
._64{width:2359.666547pt;}
._4e{width:2461.866973pt;}
._39{width:3200.118429pt;}
.fs0{font-size:26.666667pt;}
.fs18{font-size:26.666670pt;}
.fs14{font-size:26.666672pt;}
.fsb{font-size:32.000001pt;}
.fs11{font-size:37.333333pt;}
.fs5{font-size:42.666669pt;}
.fs17{font-size:45.176006pt;}
.fs2{font-size:48.000002pt;}
.fs1a{font-size:50.666670pt;}
.fs1b{font-size:51.484806pt;}
.fs1d{font-size:52.214402pt;}
.fs7{font-size:53.333334pt;}
.fs15{font-size:54.840002pt;}
.fs1{font-size:58.666670pt;}
.fs19{font-size:63.979206pt;}
.fsa{font-size:64.000002pt;}
.fs1c{font-size:66.194674pt;}
.fs10{font-size:72.000002pt;}
.fs13{font-size:74.666666pt;}
.fs16{font-size:77.164270pt;}
.fsf{font-size:80.000003pt;}
.fs3{font-size:85.333339pt;}
.fsc{font-size:93.333339pt;}
.fs6{font-size:96.000003pt;}
.fsd{font-size:101.333339pt;}
.fs4{font-size:106.666667pt;}
.fs9{font-size:122.666668pt;}
.fs1e{font-size:138.666676pt;}
.fs12{font-size:192.000006pt;}
.fse{font-size:224.000007pt;}
.fs8{font-size:240.000008pt;}
.fs1f{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:4.446095pt;}
.y85{bottom:9.574783pt;}
.ycb{bottom:10.365583pt;}
.yc6{bottom:16.343053pt;}
.ya2{bottom:16.441670pt;}
.yaf{bottom:16.921670pt;}
.ycd{bottom:18.099253pt;}
.yca{bottom:18.365583pt;}
.ya8{bottom:19.237783pt;}
.yc5{bottom:24.343053pt;}
.ycc{bottom:26.099254pt;}
.yaa{bottom:31.439884pt;}
.y14{bottom:35.399618pt;}
.yce{bottom:35.399624pt;}
.y29{bottom:36.024084pt;}
.y21{bottom:36.024154pt;}
.yc{bottom:36.039614pt;}
.y9{bottom:36.039624pt;}
.y79{bottom:36.039934pt;}
.ya5{bottom:36.040414pt;}
.yc9{bottom:39.619264pt;}
.ya4{bottom:42.098114pt;}
.ya9{bottom:43.394115pt;}
.yae{bottom:44.040414pt;}
.y4{bottom:65.747815pt;}
.y139{bottom:67.712788pt;}
.y13{bottom:72.839625pt;}
.y151{bottom:73.472688pt;}
.yb{bottom:77.639615pt;}
.ya0{bottom:79.354166pt;}
.ya1{bottom:81.852886pt;}
.yb2{bottom:82.019936pt;}
.y144{bottom:82.112758pt;}
.y74{bottom:85.880621pt;}
.y3{bottom:85.907816pt;}
.y52{bottom:87.335531pt;}
.y22{bottom:94.324598pt;}
.y67{bottom:95.888712pt;}
.y134{bottom:96.512789pt;}
.y150{bottom:99.072689pt;}
.yde{bottom:99.807006pt;}
.y39{bottom:100.966696pt;}
.y2f{bottom:102.063516pt;}
.y4d{bottom:104.977291pt;}
.yfb{bottom:105.319292pt;}
.y70{bottom:107.930762pt;}
.ye0{bottom:109.161568pt;}
.yb1{bottom:109.736617pt;}
.y12{bottom:110.279626pt;}
.yf9{bottom:110.319292pt;}
.y38{bottom:110.566696pt;}
.y143{bottom:110.912749pt;}
.y42{bottom:110.933864pt;}
.y7b{bottom:113.514692pt;}
.y117{bottom:116.722026pt;}
.y120{bottom:118.170067pt;}
.ye{bottom:119.239617pt;}
.y37{bottom:120.166693pt;}
.y99{bottom:121.276987pt;}
.y128{bottom:121.667437pt;}
.ydd{bottom:121.807007pt;}
.y68{bottom:122.757443pt;}
.y28{bottom:124.363887pt;}
.y14f{bottom:124.672690pt;}
.y133{bottom:125.312770pt;}
.y2{bottom:126.455017pt;}
.y36{bottom:129.766691pt;}
.y8c{bottom:129.869643pt;}
.y4f{bottom:131.290049pt;}
.y116{bottom:131.722027pt;}
.yfa{bottom:131.940963pt;}
.y11f{bottom:133.170067pt;}
.y48{bottom:134.446199pt;}
.y66{bottom:135.568493pt;}
.yf8{bottom:136.940963pt;}
.y127{bottom:137.667437pt;}
.y2d{bottom:138.032363pt;}
.y142{bottom:139.712740pt;}
.y154{bottom:141.322537pt;}
.y27{bottom:143.563887pt;}
.ydc{bottom:143.807009pt;}
.yee{bottom:146.159059pt;}
.ye4{bottom:146.951199pt;}
.ye9{bottom:147.552699pt;}
.y11{bottom:147.719622pt;}
.y35{bottom:148.966688pt;}
.y98{bottom:149.356977pt;}
.y14e{bottom:150.272691pt;}
.y132{bottom:154.112761pt;}
.y15{bottom:154.399508pt;}
.y10{bottom:156.575238pt;}
.y34{bottom:158.566688pt;}
.y153{bottom:158.922538pt;}
.y80{bottom:160.124254pt;}
.y115{bottom:161.722028pt;}
.y11e{bottom:163.170058pt;}
.yf{bottom:164.075050pt;}
.ycf{bottom:167.836753pt;}
.y141{bottom:168.512721pt;}
.y126{bottom:169.667438pt;}
.y6c{bottom:172.190544pt;}
.y14d{bottom:175.872711pt;}
.y114{bottom:176.722028pt;}
.y97{bottom:177.436948pt;}
.y8a{bottom:178.166244pt;}
.y11d{bottom:178.170058pt;}
.y8{bottom:178.821338pt;}
.ye1{bottom:182.552380pt;}
.y131{bottom:182.912752pt;}
.y3b{bottom:183.439897pt;}
.y125{bottom:185.667439pt;}
.y1d{bottom:190.607243pt;}
.y20{bottom:191.382673pt;}
.y3a{bottom:193.217673pt;}
.y152{bottom:194.122539pt;}
.y140{bottom:197.312712pt;}
.y26{bottom:197.817851pt;}
.y14c{bottom:201.472722pt;}
.y1c{bottom:203.607243pt;}
.yf4{bottom:203.829749pt;}
.y1f{bottom:204.382673pt;}
.y96{bottom:205.516949pt;}
.y113{bottom:206.722029pt;}
.y11c{bottom:208.170059pt;}
.y7{bottom:209.541339pt;}
.y130{bottom:211.712742pt;}
.y51{bottom:211.875028pt;}
.ydb{bottom:214.993380pt;}
.y124{bottom:217.667442pt;}
.y1b{bottom:220.247247pt;}
.y1e{bottom:221.022677pt;}
.y50{bottom:221.652803pt;}
.y112{bottom:221.722030pt;}
.y11b{bottom:223.170060pt;}
.y44{bottom:224.103862pt;}
.y13f{bottom:226.112693pt;}
.y25{bottom:226.829312pt;}
.y14b{bottom:227.072723pt;}
.y7f{bottom:232.583546pt;}
.y10d{bottom:232.870323pt;}
.y95{bottom:233.596970pt;}
.y123{bottom:233.667442pt;}
.yf1{bottom:234.156750pt;}
.yf2{bottom:234.688790pt;}
.yda{bottom:236.993380pt;}
.y23{bottom:239.270420pt;}
.yb3{bottom:239.800571pt;}
.y12f{bottom:240.512723pt;}
.y107{bottom:241.230279pt;}
.yc3{bottom:243.232871pt;}
.y10f{bottom:249.066454pt;}
.yd1{bottom:249.261093pt;}
.yf5{bottom:250.118331pt;}
.y106{bottom:251.008054pt;}
.y111{bottom:251.722041pt;}
.y6{bottom:251.781334pt;}
.y11a{bottom:253.170061pt;}
.y7a{bottom:253.407057pt;}
.y13e{bottom:254.912724pt;}
.y10a{bottom:258.838697pt;}
.yd9{bottom:258.993381pt;}
.y10c{bottom:259.077144pt;}
.y105{bottom:260.785829pt;}
.y94{bottom:261.676971pt;}
.y122{bottom:265.667443pt;}
.y100{bottom:266.007328pt;}
.y10e{bottom:268.260214pt;}
.y109{bottom:268.616472pt;}
.y12e{bottom:269.312734pt;}
.y9c{bottom:270.676211pt;}
.yc2{bottom:272.232871pt;}
.y3d{bottom:274.195274pt;}
.y156{bottom:276.216182pt;}
.y18{bottom:278.011626pt;}
.ya6{bottom:278.085272pt;}
.y10b{bottom:278.270905pt;}
.y14a{bottom:278.272755pt;}
.y108{bottom:278.394249pt;}
.y24{bottom:279.537992pt;}
.yd8{bottom:280.993384pt;}
.y102{bottom:281.142343pt;}
.y5{bottom:282.501332pt;}
.y13d{bottom:283.712725pt;}
.y3c{bottom:283.973050pt;}
.y9b{bottom:288.276212pt;}
.y87{bottom:289.479172pt;}
.y93{bottom:289.756972pt;}
.ya7{bottom:290.244392pt;}
.y17{bottom:291.011626pt;}
.y12d{bottom:298.112735pt;}
.yc1{bottom:301.232872pt;}
.y149{bottom:303.872765pt;}
.y4e{bottom:305.708248pt;}
.y9a{bottom:305.876213pt;}
.y16{bottom:307.651630pt;}
.yb9{bottom:308.265293pt;}
.yf3{bottom:309.659993pt;}
.y13c{bottom:312.512726pt;}
.ya3{bottom:315.026503pt;}
.y92{bottom:317.836973pt;}
.y84{bottom:317.962043pt;}
.y138{bottom:326.912736pt;}
.y148{bottom:329.472766pt;}
.yc0{bottom:330.232873pt;}
.yf6{bottom:334.036093pt;}
.yba{bottom:339.356375pt;}
.y1a{bottom:341.771756pt;}
.y91{bottom:345.916974pt;}
.yb8{bottom:346.793874pt;}
.y83{bottom:349.162040pt;}
.y147{bottom:355.072777pt;}
.y12c{bottom:355.712747pt;}
.y19{bottom:358.411754pt;}
.ybf{bottom:359.232874pt;}
.y73{bottom:362.073750pt;}
.yd4{bottom:366.405454pt;}
.yff{bottom:366.827738pt;}
.y12a{bottom:369.379415pt;}
.y13b{bottom:370.112738pt;}
.y155{bottom:372.216180pt;}
.yc8{bottom:372.230075pt;}
.y90{bottom:373.996975pt;}
.y82{bottom:380.362036pt;}
.y146{bottom:380.672778pt;}
.y65{bottom:381.193181pt;}
.y33{bottom:382.443217pt;}
.yb7{bottom:383.593885pt;}
.y137{bottom:384.512728pt;}
.ye5{bottom:386.224837pt;}
.y41{bottom:386.612637pt;}
.ybe{bottom:388.232875pt;}
.yd3{bottom:388.405455pt;}
.y72{bottom:392.473751pt;}
.y5e{bottom:396.285031pt;}
.y101{bottom:397.230320pt;}
.yd7{bottom:397.558999pt;}
.yc7{bottom:401.230076pt;}
.y8f{bottom:402.076966pt;}
.y86{bottom:405.266042pt;}
.y55{bottom:407.875592pt;}
.y59{bottom:408.648811pt;}
.y7e{bottom:410.027822pt;}
.yd2{bottom:410.405458pt;}
.y69{bottom:414.345402pt;}
.y6d{bottom:415.571122pt;}
.y12b{bottom:415.872734pt;}
.y129{bottom:415.904452pt;}
.yc4{bottom:417.232876pt;}
.yea{bottom:418.652618pt;}
.yd6{bottom:419.559000pt;}
.yb6{bottom:420.393876pt;}
.y103{bottom:421.546864pt;}
.y71{bottom:422.873749pt;}
.y58{bottom:424.648811pt;}
.y8e{bottom:430.156963pt;}
.y13a{bottom:430.272729pt;}
.y110{bottom:432.022400pt;}
.ye2{bottom:437.328973pt;}
.y145{bottom:438.272775pt;}
.y57{bottom:440.648812pt;}
.y121{bottom:441.547508pt;}
.yd5{bottom:441.559003pt;}
.yab{bottom:441.850129pt;}
.y5d{bottom:443.222043pt;}
.y136{bottom:444.672720pt;}
.y78{bottom:445.068503pt;}
.y54{bottom:446.198423pt;}
.y56{bottom:456.648812pt;}
.yb5{bottom:457.193873pt;}
.y40{bottom:457.760649pt;}
.y8d{bottom:458.236958pt;}
.y118{bottom:459.361153pt;}
.ybd{bottom:459.704122pt;}
.y135{bottom:460.530119pt;}
.y32{bottom:463.159049pt;}
.yec{bottom:463.176744pt;}
.ybb{bottom:464.526230pt;}
.ye7{bottom:464.536324pt;}
.yd0{bottom:464.955333pt;}
.y4a{bottom:465.154859pt;}
.y2e{bottom:465.214173pt;}
.y75{bottom:465.914960pt;}
.y77{bottom:467.085744pt;}
.ybc{bottom:467.384125pt;}
.y60{bottom:468.046194pt;}
.yfe{bottom:468.069184pt;}
.y81{bottom:468.704123pt;}
.y31{bottom:469.959577pt;}
.y3f{bottom:470.233090pt;}
.y43{bottom:470.665226pt;}
.y2c{bottom:473.779787pt;}
.y5a{bottom:481.111809pt;}
.yb0{bottom:483.271489pt;}
.yfc{bottom:483.762974pt;}
.yfd{bottom:483.765599pt;}
.yef{bottom:483.972700pt;}
.y9d{bottom:484.416204pt;}
.y89{bottom:485.172177pt;}
.y49{bottom:486.737540pt;}
.y7d{bottom:486.743044pt;}
.y2b{bottom:487.029130pt;}
.y6e{bottom:487.166928pt;}
.y64{bottom:487.182674pt;}
.yf7{bottom:488.344594pt;}
.y6a{bottom:488.786351pt;}
.yf0{bottom:489.352469pt;}
.y5c{bottom:489.432019pt;}
.ya{bottom:489.941206pt;}
.y7c{bottom:490.308659pt;}
.y104{bottom:491.995515pt;}
.y4b{bottom:492.466140pt;}
.yb4{bottom:493.993871pt;}
.y6f{bottom:494.896585pt;}
.y45{bottom:495.697110pt;}
.y63{bottom:496.568502pt;}
.y8b{bottom:497.248293pt;}
.y3e{bottom:497.419670pt;}
.y119{bottom:497.583439pt;}
.y6b{bottom:497.615747pt;}
.yed{bottom:498.683990pt;}
.y2a{bottom:499.981891pt;}
.ye3{bottom:503.203481pt;}
.y76{bottom:503.437417pt;}
.y9f{bottom:503.714385pt;}
.yd{bottom:503.804724pt;}
.yeb{bottom:503.857217pt;}
.ye6{bottom:505.279790pt;}
.ye8{bottom:505.411023pt;}
.y30{bottom:505.416271pt;}
.y4c{bottom:507.584252pt;}
.y61{bottom:508.072441pt;}
.y5b{bottom:509.014698pt;}
.y53{bottom:509.017321pt;}
.y47{bottom:509.576377pt;}
.yad{bottom:510.377608pt;}
.y9e{bottom:511.714385pt;}
.y46{bottom:511.962205pt;}
.ydf{bottom:516.418897pt;}
.y62{bottom:519.190550pt;}
.yac{bottom:519.534722pt;}
.y88{bottom:520.955433pt;}
.y5f{bottom:523.088188pt;}
.h19{height:18.933333pt;}
.h1{height:28.000000pt;}
.h20{height:28.000003pt;}
.h1c{height:28.000006pt;}
.h13{height:28.188978pt;}
.hc{height:33.600001pt;}
.h1a{height:36.394669pt;}
.h15{height:39.200000pt;}
.h8{height:44.800003pt;}
.h1f{height:47.434806pt;}
.h3{height:50.400002pt;}
.h14{height:52.354657pt;}
.h22{height:53.200003pt;}
.h24{height:54.059046pt;}
.h26{height:54.825122pt;}
.h7{height:56.000000pt;}
.h1d{height:57.582002pt;}
.h27{height:57.853122pt;}
.he{height:60.377921pt;}
.h2{height:61.600003pt;}
.h21{height:67.178166pt;}
.hb{height:67.200002pt;}
.h12{height:75.600002pt;}
.h1b{height:78.400000pt;}
.h1e{height:81.022484pt;}
.h18{height:81.888003pt;}
.h11{height:84.000003pt;}
.h25{height:88.094088pt;}
.h4{height:89.600006pt;}
.hd{height:98.000006pt;}
.h6{height:100.800003pt;}
.hf{height:106.400006pt;}
.h5{height:112.000001pt;}
.ha{height:128.800001pt;}
.h23{height:131.030152pt;}
.h28{height:145.600010pt;}
.h16{height:163.776005pt;}
.h17{height:191.072006pt;}
.h10{height:235.200008pt;}
.h9{height:252.000008pt;}
.h29{height:336.000011pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1{left:4.410807pt;}
.x85{left:10.391976pt;}
.x70{left:13.945678pt;}
.xb4{left:23.446195pt;}
.x107{left:26.098024pt;}
.x37{left:27.223174pt;}
.x100{left:29.158006pt;}
.xb9{left:30.969844pt;}
.x81{left:32.365365pt;}
.xa6{left:34.151511pt;}
.x101{left:35.458040pt;}
.xc2{left:36.874017pt;}
.x99{left:38.748891pt;}
.xff{left:41.217989pt;}
.x6e{left:43.591348pt;}
.x5c{left:44.838197pt;}
.xb5{left:46.398951pt;}
.xcf{left:47.982942pt;}
.x103{left:49.701983pt;}
.x89{left:50.867045pt;}
.x32{left:52.467192pt;}
.xc8{left:54.802882pt;}
.xd3{left:56.029332pt;}
.xf6{left:57.009924pt;}
.xd6{left:59.890562pt;}
.x18{left:60.910501pt;}
.x9c{left:61.882010pt;}
.x109{left:62.906680pt;}
.xa3{left:65.185244pt;}
.x3f{left:66.099742pt;}
.x105{left:67.773927pt;}
.x61{left:70.008802pt;}
.x12{left:71.170175pt;}
.x28{left:73.354946pt;}
.xa{left:74.688058pt;}
.x106{left:76.629917pt;}
.xbe{left:78.097509pt;}
.x1b{left:80.033397pt;}
.x102{left:81.837864pt;}
.x4c{left:82.978251pt;}
.x33{left:84.146606pt;}
.xbd{left:85.597943pt;}
.xca{left:89.181103pt;}
.xad{left:93.294566pt;}
.xc3{left:94.377929pt;}
.x17{left:95.542489pt;}
.x42{left:97.011003pt;}
.x104{left:100.377838pt;}
.x5b{left:102.290904pt;}
.x3a{left:103.263989pt;}
.x11{left:104.663462pt;}
.xe8{left:105.862619pt;}
.xf2{left:107.392266pt;}
.x1a{left:109.287759pt;}
.x2d{left:110.421030pt;}
.xac{left:112.251296pt;}
.x95{left:113.193130pt;}
.x14{left:114.326336pt;}
.xd2{left:116.925014pt;}
.xe{left:118.444286pt;}
.x5d{left:121.003185pt;}
.x45{left:123.695320pt;}
.xd{left:125.721230pt;}
.x6c{left:127.473240pt;}
.x2b{left:131.066295pt;}
.xce{left:135.757730pt;}
.xea{left:137.945664pt;}
.x16{left:139.792604pt;}
.x2a{left:143.834181pt;}
.x40{left:144.834061pt;}
.xab{left:146.593457pt;}
.x1f{left:149.885452pt;}
.x35{left:151.590455pt;}
.xbf{left:152.841627pt;}
.x57{left:153.870251pt;}
.x6f{left:155.723031pt;}
.x1d{left:157.751579pt;}
.x29{left:159.050355pt;}
.x9{left:160.067022pt;}
.x15{left:161.387616pt;}
.x54{left:162.827041pt;}
.x7e{left:163.924795pt;}
.x58{left:165.905286pt;}
.xe5{left:168.804877pt;}
.x8f{left:170.637161pt;}
.x60{left:171.676311pt;}
.x63{left:173.138723pt;}
.x52{left:175.113189pt;}
.x1e{left:176.072831pt;}
.xb{left:178.260512pt;}
.xf0{left:181.180002pt;}
.xfe{left:182.848761pt;}
.x59{left:185.111192pt;}
.xe3{left:187.470562pt;}
.xf8{left:190.536022pt;}
.xdb{left:192.428542pt;}
.x8d{left:196.000222pt;}
.xf{left:197.346662pt;}
.xe9{left:200.612132pt;}
.x9f{left:202.091502pt;}
.x108{left:203.070001pt;}
.x41{left:204.130473pt;}
.x9d{left:207.156083pt;}
.x4a{left:208.634993pt;}
.x50{left:209.916897pt;}
.x4f{left:212.060683pt;}
.x6d{left:217.725113pt;}
.x9e{left:223.581957pt;}
.x8b{left:225.402083pt;}
.xef{left:227.347673pt;}
.x5a{left:233.652203pt;}
.x55{left:235.251254pt;}
.x7f{left:237.450444pt;}
.x6b{left:242.248804pt;}
.x8{left:243.208084pt;}
.xdc{left:246.060424pt;}
.x97{left:248.846164pt;}
.x98{left:250.471874pt;}
.x83{left:253.517968pt;}
.x56{left:254.870044pt;}
.x9b{left:257.722404pt;}
.x84{left:260.267964pt;}
.x2f{left:261.825208pt;}
.x7c{left:263.506764pt;}
.x72{left:267.532105pt;}
.x80{left:268.651565pt;}
.x91{left:271.657689pt;}
.x3d{left:276.204379pt;}
.xc7{left:277.260849pt;}
.x19{left:278.326025pt;}
.x34{left:280.526705pt;}
.xa8{left:281.766345pt;}
.xb8{left:283.391109pt;}
.x53{left:285.102399pt;}
.x87{left:288.136945pt;}
.x31{left:292.735765pt;}
.x65{left:298.959456pt;}
.x3b{left:303.032690pt;}
.x77{left:308.795576pt;}
.xd7{left:310.114906pt;}
.x4b{left:315.125990pt;}
.xd0{left:316.992906pt;}
.x46{left:320.157390pt;}
.x51{left:324.296466pt;}
.x75{left:325.993942pt;}
.x30{left:331.409431pt;}
.x21{left:335.356704pt;}
.xdf{left:337.125741pt;}
.x20{left:339.655967pt;}
.xf5{left:342.226421pt;}
.x6a{left:343.915628pt;}
.xa0{left:346.117571pt;}
.x9a{left:348.011481pt;}
.x7b{left:349.872577pt;}
.x39{left:354.070517pt;}
.xfd{left:357.963007pt;}
.xcb{left:361.863542pt;}
.xfa{left:365.076112pt;}
.x5e{left:370.942422pt;}
.x2c{left:373.676568pt;}
.x79{left:375.715628pt;}
.xf7{left:381.574666pt;}
.xe7{left:388.117987pt;}
.x5f{left:395.836833pt;}
.xbc{left:401.144693pt;}
.xfb{left:403.904929pt;}
.x96{left:411.691243pt;}
.xd9{left:414.618983pt;}
.xc1{left:417.419963pt;}
.x36{left:426.850474pt;}
.x94{left:435.033504pt;}
.x92{left:437.384630pt;}
.xc9{left:438.405764pt;}
.xfc{left:441.316430pt;}
.x4e{left:446.331684pt;}
.x66{left:461.708697pt;}
.x67{left:463.014453pt;}
.x68{left:470.371905pt;}
.x93{left:475.292595pt;}
.xb3{left:489.023666pt;}
.xd1{left:494.111016pt;}
.xde{left:495.526596pt;}
.x1c{left:499.676466pt;}
.x73{left:502.047786pt;}
.xe0{left:504.421096pt;}
.xdd{left:508.099620pt;}
.xe2{left:509.774366pt;}
.xb6{left:525.068784pt;}
.x64{left:527.939264pt;}
.x82{left:530.754553pt;}
.xe4{left:532.939687pt;}
.x24{left:536.685510pt;}
.x22{left:544.026643pt;}
.x49{left:546.047317pt;}
.xa2{left:551.021728pt;}
.x10{left:553.838655pt;}
.x8c{left:554.995298pt;}
.x23{left:556.276232pt;}
.x76{left:557.707618pt;}
.x2e{left:560.698620pt;}
.xe1{left:564.845453pt;}
.x3{left:566.929158pt;}
.xee{left:573.561563pt;}
.x10c{left:579.790279pt;}
.xc{left:582.195656pt;}
.xf4{left:584.784160pt;}
.x69{left:586.726399pt;}
.x10b{left:590.958355pt;}
.x8a{left:595.100199pt;}
.xf3{left:598.730509pt;}
.xc0{left:628.704490pt;}
.x13{left:630.094608pt;}
.x6{left:634.016850pt;}
.x5{left:636.704000pt;}
.xf1{left:637.937120pt;}
.xaa{left:641.076621pt;}
.x86{left:651.108781pt;}
.x10d{left:657.259171pt;}
.x7{left:658.469441pt;}
.xcc{left:662.186361pt;}
.xa5{left:670.517121pt;}
.xa9{left:671.411821pt;}
.x4{left:675.681308pt;}
.x3e{left:677.637335pt;}
.x4d{left:684.365822pt;}
.x10a{left:685.416872pt;}
.x2{left:687.403792pt;}
.xaf{left:698.058862pt;}
.x38{left:707.013223pt;}
.x47{left:709.128513pt;}
.x27{left:712.094537pt;}
.x62{left:720.498124pt;}
.x44{left:730.109508pt;}
.x43{left:731.009073pt;}
.x25{left:733.669488pt;}
.xae{left:739.565354pt;}
.xcd{left:740.853024pt;}
.x26{left:741.745577pt;}
.xb1{left:743.481524pt;}
.xed{left:744.399491pt;}
.x48{left:746.194114pt;}
.xd4{left:752.521429pt;}
.x90{left:754.382001pt;}
.xd8{left:756.318904pt;}
.xda{left:757.402514pt;}
.xd5{left:760.183334pt;}
.xa1{left:766.167505pt;}
.xbb{left:767.922797pt;}
.xc5{left:771.191722pt;}
.xa7{left:772.302885pt;}
.x71{left:780.801025pt;}
.x8e{left:782.195521pt;}
.xeb{left:783.597006pt;}
.xec{left:784.587609pt;}
.xa4{left:801.769650pt;}
.xb0{left:818.107235pt;}
.xf9{left:822.563476pt;}
.xe6{left:826.146851pt;}
.x74{left:829.334623pt;}
.xc6{left:833.800747pt;}
.x7a{left:836.867423pt;}
.x88{left:839.006523pt;}
.xc4{left:843.191724pt;}
.x78{left:850.473723pt;}
.x3c{left:858.697067pt;}
.x7d{left:873.093164pt;}
.xb7{left:935.328580pt;}
.xb2{left:936.245030pt;}
.xba{left:937.351940pt;}
}




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