
    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_6ab5cdc52fe927862ac8dfd3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c1755bc0cf85388797f7430f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936523;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_09afaa7e3ffb2d051ea2dba6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_398f64650f0d8a32522bdc7b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.074707;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_1af65b86cbdf0d92ce4b5ccd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943848;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_4b2e77c960e55860e612c2a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.950000;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_74dd4d6e2fabaa1b0b6bffbd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.988000;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_efe65d0e3961ddd23addfc87.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.950000;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_12ede4f60a14dd3fb3f52de1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.735000;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff17;src:url('chunks/assets/font_4b8bbdfe34bc2c3c05752f90.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.967773;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_6369da55a258c68a84bea3b7.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.967773;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_e8f631f4fa357ec63ab81fc4.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.950000;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_87deacb7fa9cd1bbcdce2b63.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.941000;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_12ede4f60a14dd3fb3f52de1.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.735000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000000,-0.249958,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249958,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249958,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249999,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249999,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249999,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250058,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250058,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250058,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250160,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250160,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250160,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250237,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250237,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250237,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.250260,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250260,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250260,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-53.064000px;}
.vb{vertical-align:-42.021830px;}
.v7{vertical-align:-26.506107px;}
.va{vertical-align:-25.198775px;}
.v5{vertical-align:-9.186000px;}
.v4{vertical-align:-7.482000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:7.129214px;}
.v6{vertical-align:9.186000px;}
.v8{vertical-align:44.176845px;}
.v2{vertical-align:53.070000px;}
.vc{vertical-align:70.036384px;}
.v1{vertical-align:97.968000px;}
.ls15{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000350px;}
.lsc{letter-spacing:0.000442px;}
.lsb{letter-spacing:0.000884px;}
.lsa{letter-spacing:0.001199px;}
.ls13{letter-spacing:0.001401px;}
.ls3{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.025020px;}
.ls7{letter-spacing:0.056214px;}
.ls0{letter-spacing:0.094512px;}
.lse{letter-spacing:0.162000px;}
.ls11{letter-spacing:0.168000px;}
.ls12{letter-spacing:0.176802px;}
.ls1{letter-spacing:0.179940px;}
.lsf{letter-spacing:0.182802px;}
.ls2{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.250632px;}
.ls8{letter-spacing:0.282000px;}
.ls10{letter-spacing:0.288108px;}
.ls5{letter-spacing:0.372792px;}
.ls4{letter-spacing:0.378792px;}
.lsd{letter-spacing:0.396000px;}
.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:-73.118028px;}
.ws3{word-spacing:-59.832000px;}
.ws1{word-spacing:-46.216896px;}
.ws9{word-spacing:-36.559014px;}
.ws7{word-spacing:-33.261606px;}
.ws22{word-spacing:-31.152183px;}
.ws5{word-spacing:-29.916000px;}
.ws4{word-spacing:-26.570394px;}
.ws2{word-spacing:-25.111158px;}
.wsd{word-spacing:-24.567987px;}
.ws10{word-spacing:-24.558189px;}
.ws20{word-spacing:-23.350865px;}
.wsf{word-spacing:-22.093514px;}
.wsa{word-spacing:-21.295206px;}
.wse{word-spacing:-19.654390px;}
.wsc{word-spacing:-19.649861px;}
.ws12{word-spacing:-19.646551px;}
.ws8{word-spacing:-19.269228px;}
.ws21{word-spacing:-18.680692px;}
.wsb{word-spacing:-17.670738px;}
.ws6{word-spacing:-17.289786px;}
.ws1f{word-spacing:-0.108000px;}
.ws13{word-spacing:0.000000px;}
.ws15{word-spacing:17.110792px;}
.ws1b{word-spacing:17.116014px;}
.ws1c{word-spacing:17.117244px;}
.ws18{word-spacing:28.518835px;}
.ws19{word-spacing:58.726708px;}
.ws1e{word-spacing:67.914810px;}
.ws17{word-spacing:75.353641px;}
.ws11{word-spacing:131.309331px;}
.ws1d{word-spacing:132.608112px;}
.ws16{word-spacing:148.823077px;}
.ws1a{word-spacing:175.873531px;}
.ws14{word-spacing:203.269962px;}
._23{margin-left:-502.389935px;}
._24{margin-left:-479.639115px;}
._19{margin-left:-5.490800px;}
._1a{margin-left:-2.766831px;}
._4{margin-left:-1.151784px;}
._3{width:1.233960px;}
._1{width:2.322000px;}
._7{width:3.449754px;}
._2{width:4.863672px;}
._a{width:7.884000px;}
._5{width:10.551420px;}
._9{width:11.988000px;}
._6{width:13.141314px;}
._8{width:14.904000px;}
._1d{width:28.518835px;}
._b{width:50.222976px;}
._c{width:51.479150px;}
._15{width:60.851850px;}
._20{width:69.839499px;}
._14{width:85.419837px;}
._d{width:91.542897px;}
._22{width:94.217770px;}
._1e{width:101.654850px;}
._e{width:106.326614px;}
._13{width:109.987825px;}
._11{width:118.584727px;}
._12{width:119.847844px;}
._f{width:146.271687px;}
._21{width:172.553664px;}
._1c{width:188.756443px;}
._1f{width:215.825359px;}
._1b{width:223.236645px;}
._16{width:235.710661px;}
._10{width:275.764928px;}
._27{width:354.332504px;}
._18{width:378.506561px;}
._26{width:381.618350px;}
._17{width:445.932420px;}
._25{width:941.471784px;}
._0{width:6258.643500px;}
.fc6{color:transparent;}
.fc5{color:rgb(153,204,255);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(42,96,153);}
.fc1{color:rgb(255,255,0);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:6.273802px;}
.fs1b{font-size:6.275717px;}
.fs1a{font-size:6.583268px;}
.fs17{font-size:7.528563px;}
.fs1c{font-size:7.530860px;}
.fs18{font-size:8.783323px;}
.fs1d{font-size:8.786004px;}
.fs19{font-size:9.404669px;}
.fsd{font-size:62.418000px;}
.fs21{font-size:67.196514px;}
.fs20{font-size:67.196733px;}
.fse{font-size:69.564000px;}
.fs15{font-size:70.671048px;}
.fs12{font-size:70.682953px;}
.fs13{font-size:70.699245px;}
.fsf{font-size:76.878000px;}
.fs23{font-size:83.340000px;}
.fs1e{font-size:83.995642px;}
.fs1f{font-size:83.995916px;}
.fs0{font-size:84.018000px;}
.fs14{font-size:88.338810px;}
.fs11{font-size:88.353691px;}
.fs10{font-size:88.374056px;}
.fsa{font-size:89.970000px;}
.fs6{font-size:90.654000px;}
.fs9{font-size:95.922000px;}
.fs24{font-size:98.153048px;}
.fsb{font-size:108.000000px;}
.fs26{font-size:112.058214px;}
.fsc{font-size:120.078000px;}
.fs8{font-size:131.982000px;}
.fs25{font-size:140.072767px;}
.fs27{font-size:140.218640px;}
.fs22{font-size:144.054000px;}
.fs7{font-size:155.964000px;}
.fs4{font-size:166.848000px;}
.fs5{font-size:216.000000px;}
.fs2{font-size:263.964000px;}
.fs3{font-size:287.946000px;}
.fs1{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.yf9{bottom:6.307493px;}
.yfe{bottom:6.307524px;}
.y18d{bottom:6.309417px;}
.y192{bottom:6.309449px;}
.yf5{bottom:6.699637px;}
.y18a{bottom:6.701650px;}
.y1b2{bottom:10.844557px;}
.y69{bottom:10.932054px;}
.y1d1{bottom:14.249860px;}
.y58{bottom:15.039497px;}
.y68{bottom:15.348994px;}
.yf1{bottom:37.965757px;}
.y185{bottom:37.977343px;}
.y1b0{bottom:40.243062px;}
.y66{bottom:46.267609px;}
.y56{bottom:48.179799px;}
.y1cf{bottom:54.562754px;}
.yfa{bottom:61.023706px;}
.y18e{bottom:61.042329px;}
.y1a7{bottom:61.241973px;}
.yf6{bottom:62.554827px;}
.y18b{bottom:62.573917px;}
.y186{bottom:75.335587px;}
.y53{bottom:88.579368px;}
.y62{bottom:93.591972px;}
.yf2{bottom:95.465311px;}
.yf7{bottom:100.828158px;}
.y187{bottom:100.858928px;}
.y67{bottom:115.176929px;}
.yfd{bottom:115.967940px;}
.y191{bottom:116.003331px;}
.y57{bottom:117.274423px;}
.y1c8{bottom:118.537508px;}
.yfb{bottom:122.260721px;}
.y18f{bottom:122.298032px;}
.y188{bottom:126.380385px;}
.yfc{bottom:128.214716px;}
.y190{bottom:128.253844px;}
.yf4{bottom:129.055248px;}
.y189{bottom:132.337296px;}
.y1d0{bottom:132.554465px;}
.yf8{bottom:139.099449px;}
.y18c{bottom:139.141899px;}
.yf3{bottom:141.522705px;}
.y63{bottom:144.071292px;}
.y1a8{bottom:150.037216px;}
.y1c5{bottom:157.237500px;}
.y1c9{bottom:157.798727px;}
.y10{bottom:160.000500px;}
.yed{bottom:162.063290px;}
.y181{bottom:162.112748px;}
.y54{bottom:162.119049px;}
.yea{bottom:163.594098px;}
.y17e{bottom:163.644023px;}
.y17b{bottom:168.101351px;}
.y17d{bottom:169.317271px;}
.ye9{bottom:173.420441px;}
.yf{bottom:186.661500px;}
.ye7{bottom:190.786325px;}
.y64{bottom:194.392706px;}
.y1ca{bottom:197.235045px;}
.yeb{bottom:201.867429px;}
.y17f{bottom:201.929033px;}
.ye{bottom:213.321000px;}
.y17c{bottom:215.508116px;}
.yf0{bottom:217.007980px;}
.y184{bottom:217.074205px;}
.y1c1{bottom:217.572000px;}
.yee{bottom:223.298737px;}
.y182{bottom:223.366882px;}
.yef{bottom:229.254144px;}
.y183{bottom:229.324106px;}
.y55{bottom:235.501077px;}
.y1cb{bottom:236.496264px;}
.ye8{bottom:237.428908px;}
.y1a9{bottom:238.832609px;}
.yd{bottom:239.980500px;}
.yec{bottom:240.139191px;}
.y180{bottom:240.212475px;}
.y65{bottom:244.872026px;}
.y1c0{bottom:247.804500px;}
.ye3{bottom:263.102875px;}
.y177{bottom:263.183167px;}
.ye0{bottom:264.633683px;}
.y174{bottom:264.714442px;}
.yc{bottom:266.640000px;}
.y171{bottom:268.594404px;}
.y1cc{bottom:275.932756px;}
.y1bf{bottom:278.035500px;}
.ydd{bottom:284.374201px;}
.ye1{bottom:302.905445px;}
.y175{bottom:302.997884px;}
.y172{bottom:303.372858px;}
.y1cd{bottom:315.193976px;}
.y1c6{bottom:317.833500px;}
.ye6{bottom:318.045729px;}
.y17a{bottom:318.142789px;}
.yb{bottom:321.916500px;}
.ye4{bottom:324.338322px;}
.y178{bottom:324.437302px;}
.y1aa{bottom:327.628002px;}
.ye5{bottom:330.293728px;}
.y179{bottom:330.394526px;}
.yde{bottom:332.334283px;}
.y173{bottom:338.151312px;}
.ydf{bottom:338.289689px;}
.y1be{bottom:338.499000px;}
.ye2{bottom:341.178775px;}
.y176{bottom:341.282894px;}
.y52{bottom:342.338998px;}
.y51{bottom:346.757701px;}
.y61{bottom:353.875808px;}
.y1ce{bottom:354.630468px;}
.y60{bottom:356.084278px;}
.yd9{bottom:364.142460px;}
.y16d{bottom:364.253587px;}
.yd6{bottom:365.673268px;}
.y16a{bottom:365.784862px;}
.y1bd{bottom:369.325500px;}
.y4f{bottom:377.688620px;}
.yd5{bottom:377.930709px;}
.yd3{bottom:377.935414px;}
.y1b1{bottom:385.486000px;}
.y5e{bottom:387.002862px;}
.y167{bottom:394.880654px;}
.y41{bottom:395.134500px;}
.yd7{bottom:403.945029px;}
.y16b{bottom:404.068303px;}
.y1c7{bottom:416.308500px;}
.y1ab{bottom:416.423395px;}
.y4c{bottom:418.088189px;}
.ydc{bottom:419.085314px;}
.y170{bottom:419.213208px;}
.y40{bottom:425.367000px;}
.yda{bottom:425.377906px;}
.y16e{bottom:425.507721px;}
.ydb{bottom:431.333313px;}
.y16f{bottom:431.464945px;}
.y5a{bottom:434.327224px;}
.yd4{bottom:437.531830px;}
.y169{bottom:437.590045px;}
.y168{bottom:440.820470px;}
.yd8{bottom:442.216791px;}
.y16c{bottom:442.351745px;}
.y50{bottom:446.625118px;}
.y5f{bottom:455.911866px;}
.ycf{bottom:465.180476px;}
.y163{bottom:465.322437px;}
.y2{bottom:466.653000px;}
.ycc{bottom:466.711284px;}
.y160{bottom:466.853712px;}
.ycb{bottom:470.574377px;}
.y15f{bottom:471.279662px;}
.y15c{bottom:483.699305px;}
.y5b{bottom:484.806544px;}
.yc9{bottom:485.305265px;}
.y3f{bottom:485.829000px;}
.y4d{bottom:491.470217px;}
.ycd{bottom:504.984614px;}
.y161{bottom:505.138723px;}
.y1ac{bottom:505.368780px;}
.y19{bottom:510.745500px;}
.y15d{bottom:514.326372px;}
.y3e{bottom:516.061500px;}
.yd2{bottom:520.125165px;}
.y166{bottom:520.283894px;}
.yd0{bottom:526.415923px;}
.y164{bottom:526.576571px;}
.yd1{bottom:532.371329px;}
.y165{bottom:532.533796px;}
.y5c{bottom:535.128116px;}
.y18{bottom:535.747500px;}
.yca{bottom:537.021785px;}
.yce{bottom:543.256376px;}
.y162{bottom:543.422164px;}
.y15e{bottom:544.953439px;}
.y3d{bottom:546.292500px;}
.y17{bottom:560.749500px;}
.y4e{bottom:564.852245px;}
.yc5{bottom:566.220061px;}
.y158{bottom:566.392857px;}
.yc2{bottom:567.750868px;}
.y155{bottom:567.924132px;}
.y154{bottom:573.926855px;}
.y151{bottom:578.282202px;}
.y5d{bottom:585.607436px;}
.y16{bottom:585.750000px;}
.ybf{bottom:585.926073px;}
.y1ad{bottom:594.164173px;}
.yc3{bottom:606.022630px;}
.y156{bottom:606.207573px;}
.y3c{bottom:606.756000px;}
.y152{bottom:606.930850px;}
.yb9{bottom:609.181490px;}
.y14b{bottom:609.367397px;}
.y15{bottom:610.752000px;}
.yc8{bottom:621.164750px;}
.y15b{bottom:621.354314px;}
.ybc{bottom:623.027771px;}
.y14e{bottom:623.217904px;}
.yc6{bottom:627.455507px;}
.y159{bottom:627.646991px;}
.yc0{bottom:629.083559px;}
.yaf{bottom:632.242418px;}
.y142{bottom:632.435363px;}
.yc7{bottom:633.410914px;}
.y15a{bottom:633.604215px;}
.y153{bottom:635.579497px;}
.y14{bottom:635.754000px;}
.yc1{bottom:639.355342px;}
.yc4{bottom:644.295961px;}
.y157{bottom:644.492584px;}
.yb0{bottom:650.760487px;}
.y3b{bottom:667.218000px;}
.yba{bottom:667.259645px;}
.y14c{bottom:667.463276px;}
.yb6{bottom:668.790453px;}
.y148{bottom:668.994551px;}
.yad{bottom:679.929589px;}
.y1ae{bottom:682.959566px;}
.y4b{bottom:685.419707px;}
.yb5{bottom:685.884996px;}
.y4a{bottom:687.629058px;}
.yb1{bottom:692.334308px;}
.y143{bottom:692.545591px;}
.y140{bottom:702.174266px;}
.yb2{bottom:706.257365px;}
.y144{bottom:706.472897px;}
.yb7{bottom:707.062215px;}
.y149{bottom:707.277993px;}
.y48{bottom:718.559978px;}
.yae{bottom:719.063999px;}
.ybe{bottom:722.201872px;}
.y150{bottom:722.422270px;}
.y13{bottom:728.064000px;}
.ybb{bottom:728.495092px;}
.y14d{bottom:728.717410px;}
.ybd{bottom:734.450499px;}
.y14f{bottom:734.674634px;}
.yb3{bottom:736.419453px;}
.y145{bottom:736.644190px;}
.y147{bottom:742.840911px;}
.yb8{bottom:745.335545px;}
.y14a{bottom:745.563003px;}
.y43{bottom:749.451000px;}
.y141{bottom:753.219378px;}
.y45{bottom:758.959546px;}
.yb4{bottom:761.340093px;}
.y146{bottom:761.572435px;}
.ya9{bottom:768.297662px;}
.y13c{bottom:768.532127px;}
.ya6{bottom:769.828469px;}
.y13a{bottom:770.063402px;}
.y1af{bottom:771.754959px;}
.y136{bottom:779.635439px;}
.ya5{bottom:784.512303px;}
.y49{bottom:787.496476px;}
.ya3{bottom:791.573468px;}
.ya7{bottom:808.101800px;}
.y137{bottom:808.348412px;}
.yac{bottom:823.242084px;}
.y13f{bottom:823.493317px;}
.ya4{bottom:824.114111px;}
.yaa{bottom:829.534677px;}
.y13d{bottom:829.787830px;}
.y46{bottom:832.341575px;}
.yab{bottom:835.490083px;}
.y13e{bottom:835.745054px;}
.y138{bottom:837.061386px;}
.y139{bottom:843.018610px;}
.ya8{bottom:846.373562px;}
.y13b{bottom:846.631854px;}
.y98{bottom:866.851252px;}
.y9f{bottom:869.337246px;}
.y132{bottom:869.602546px;}
.y9c{bottom:870.868054px;}
.y12f{bottom:871.133821px;}
.y12e{bottom:874.028495px;}
.y12c{bottom:874.962008px;}
.y47{bottom:905.723603px;}
.y9d{bottom:909.141384px;}
.y130{bottom:909.418832px;}
.y99{bottom:910.927850px;}
.y12d{bottom:920.903393px;}
.ya2{bottom:924.281936px;}
.y135{bottom:924.564003px;}
.ya0{bottom:930.572693px;}
.y133{bottom:930.856680px;}
.ya1{bottom:936.528100px;}
.y134{bottom:936.813904px;}
.y9b{bottom:943.330470px;}
.y9e{bottom:947.413146px;}
.y131{bottom:947.702273px;}
.y9a{bottom:955.006016px;}
.y94{bottom:970.376831px;}
.y128{bottom:970.672966px;}
.y91{bottom:971.907639px;}
.y125{bottom:972.204240px;}
.y124{bottom:976.630190px;}
.y8d{bottom:980.910545px;}
.y121{bottom:989.048264px;}
.y8e{bottom:1009.920606px;}
.y92{bottom:1010.179401px;}
.y126{bottom:1010.487682px;}
.y1a5{bottom:1010.947500px;}
.y122{bottom:1019.676900px;}
.y97{bottom:1025.320297px;}
.y12b{bottom:1025.633199px;}
.y1ba{bottom:1027.275000px;}
.y95{bottom:1031.612278px;}
.y129{bottom:1031.927100px;}
.y96{bottom:1037.567684px;}
.y12a{bottom:1037.884324px;}
.y8f{bottom:1038.932236px;}
.y1a4{bottom:1041.178500px;}
.y90{bottom:1044.887643px;}
.y93{bottom:1048.452731px;}
.y127{bottom:1048.772693px;}
.y123{bottom:1050.303967px;}
.y1b9{bottom:1057.506000px;}
.y1a3{bottom:1071.411000px;}
.y89{bottom:1071.416416px;}
.y11d{bottom:1071.743385px;}
.y86{bottom:1072.947223px;}
.y11a{bottom:1073.274660px;}
.y117{bottom:1077.207965px;}
.y119{bottom:1079.589600px;}
.y1b8{bottom:1087.738500px;}
.y83{bottom:1091.492583px;}
.y87{bottom:1111.218985px;}
.y11b{bottom:1111.558101px;}
.y118{bottom:1121.892638px;}
.y8c{bottom:1126.359270px;}
.y120{bottom:1126.703006px;}
.y84{bottom:1127.358342px;}
.y8a{bottom:1132.651862px;}
.y11e{bottom:1132.997519px;}
.y85{bottom:1133.313748px;}
.y8b{bottom:1138.607269px;}
.y11f{bottom:1138.954743px;}
.y1a6{bottom:1143.820500px;}
.y88{bottom:1149.490747px;}
.y11c{bottom:1149.841543px;}
.yff{bottom:1150.624500px;}
.y10d{bottom:1166.687136px;}
.y79{bottom:1170.506416px;}
.y7f{bottom:1172.454432px;}
.y113{bottom:1172.812236px;}
.y7c{bottom:1173.985240px;}
.y111{bottom:1174.343510px;}
.y7d{bottom:1212.258570px;}
.y10e{bottom:1212.628521px;}
.y82{bottom:1227.399121px;}
.y116{bottom:1227.773693px;}
.y7a{bottom:1231.473658px;}
.y80{bottom:1233.691447px;}
.y114{bottom:1234.067938px;}
.y7b{bottom:1237.429065px;}
.y81{bottom:1239.645285px;}
.y115{bottom:1240.023594px;}
.y110{bottom:1246.150262px;}
.y7e{bottom:1250.530332px;}
.y112{bottom:1250.911962px;}
.y10f{bottom:1258.568337px;}
.y74{bottom:1273.494017px;}
.y108{bottom:1273.882655px;}
.y70{bottom:1275.024824px;}
.y105{bottom:1275.413930px;}
.y6b{bottom:1277.263003px;}
.y100{bottom:1280.676118px;}
.y6e{bottom:1283.218410px;}
.y6c{bottom:1308.239902px;}
.y71{bottom:1313.296586px;}
.y106{bottom:1313.697371px;}
.y101{bottom:1313.716199px;}
.y77{bottom:1328.438094px;}
.y10b{bottom:1328.843500px;}
.y75{bottom:1334.729463px;}
.y109{bottom:1335.136789px;}
.y6d{bottom:1339.216800px;}
.y76{bottom:1340.684870px;}
.y10a{bottom:1341.094013px;}
.y102{bottom:1346.754710px;}
.y103{bottom:1349.407769px;}
.y72{bottom:1351.569917px;}
.y107{bottom:1351.982382px;}
.y78{bottom:1374.589752px;}
.y6f{bottom:1374.589909px;}
.y73{bottom:1374.590065px;}
.y10c{bottom:1375.009242px;}
.y104{bottom:1375.009556px;}
.y1a2{bottom:1535.683500px;}
.y1a1{bottom:1565.914500px;}
.y1a0{bottom:1596.145500px;}
.y19f{bottom:1626.378000px;}
.y19e{bottom:1656.609000px;}
.y19d{bottom:1687.435500px;}
.y59{bottom:1745.899500px;}
.y1bc{bottom:2006.673000px;}
.y1bb{bottom:2199.798000px;}
.y3a{bottom:2331.949500px;}
.y39{bottom:2362.180500px;}
.y38{bottom:2422.644000px;}
.y12{bottom:2432.167500px;}
.y37{bottom:2454.150000px;}
.y11{bottom:2492.631000px;}
.y36{bottom:2520.013500px;}
.y35{bottom:2550.244500px;}
.y42{bottom:2620.189500px;}
.y34{bottom:2701.402500px;}
.y33{bottom:2731.633500px;}
.y1b7{bottom:2736.312000px;}
.y32{bottom:2763.141000px;}
.y1b6{bottom:2766.543000px;}
.y1b5{bottom:2796.774000px;}
.y31{bottom:2798.772000px;}
.y1b4{bottom:2827.006500px;}
.y1b3{bottom:2857.237500px;}
.y30{bottom:2859.789000px;}
.y6a{bottom:2911.662000px;}
.y19c{bottom:2951.716500px;}
.y19b{bottom:2983.053000px;}
.y2f{bottom:2983.393500px;}
.y2e{bottom:3013.624500px;}
.y19a{bottom:3014.389500px;}
.y199{bottom:3045.132000px;}
.y2d{bottom:3075.363000px;}
.y198{bottom:3105.594000px;}
.y2c{bottom:3112.270500px;}
.y197{bottom:3136.422000px;}
.y2b{bottom:3149.178000px;}
.y196{bottom:3167.163000px;}
.y2a{bottom:3186.084000px;}
.y195{bottom:3197.394000px;}
.y29{bottom:3221.716500px;}
.y44{bottom:3242.592000px;}
.y28{bottom:3283.455000px;}
.y27{bottom:3349.870500px;}
.y26{bottom:3382.780500px;}
.y25{bottom:3413.011500px;}
.y24{bottom:3443.244000px;}
.y23{bottom:3654.864000px;}
.y22{bottom:3745.558500px;}
.y21{bottom:3775.789500px;}
.y20{bottom:3896.716500px;}
.y1f{bottom:3926.947500px;}
.y1e{bottom:3957.178500px;}
.y1d{bottom:3987.411000px;}
.y1c{bottom:4017.642000px;}
.y1b{bottom:4048.426500px;}
.y1a{bottom:4111.567500px;}
.y194{bottom:4217.994000px;}
.ya{bottom:4253.371500px;}
.y193{bottom:4278.457500px;}
.y1c4{bottom:4412.523000px;}
.y9{bottom:4413.925500px;}
.y1c3{bottom:4442.754000px;}
.y8{bottom:4457.508000px;}
.y1c2{bottom:4472.985000px;}
.y7{bottom:4491.055500px;}
.y6{bottom:4559.895000px;}
.y5{bottom:4689.750000px;}
.y4{bottom:4763.565000px;}
.y3{bottom:4846.180500px;}
.h19{height:5.960112px;}
.h1f{height:5.961931px;}
.h1d{height:6.254105px;}
.h1a{height:7.152135px;}
.h20{height:7.154317px;}
.h1b{height:8.344157px;}
.h21{height:8.346703px;}
.h1c{height:8.934435px;}
.h22{height:13.091145px;}
.h3{height:55.998325px;}
.h25{height:61.484810px;}
.h26{height:61.485011px;}
.h16{height:64.664009px;}
.h12{height:64.689809px;}
.h8{height:66.751090px;}
.h29{height:71.553572px;}
.hc{height:78.020859px;}
.h10{height:78.257812px;}
.h23{height:82.054688px;}
.hb{height:83.182359px;}
.hf{height:87.009645px;}
.hd{height:93.656250px;}
.ha{height:95.635395px;}
.h17{height:95.900612px;}
.h13{height:95.916767px;}
.h14{height:95.938875px;}
.h2b{height:102.219389px;}
.h27{height:104.382879px;}
.he{height:114.453141px;}
.h2a{height:151.726821px;}
.h9{height:156.515625px;}
.h7{height:159.046875px;}
.h5{height:191.270789px;}
.h6{height:249.703172px;}
.h4{height:313.031250px;}
.h28{height:387.353993px;}
.h15{height:630.991500px;}
.h24{height:809.957977px;}
.h11{height:962.645963px;}
.h18{height:1395.920993px;}
.h1e{height:1396.346993px;}
.h2{height:5055.547500px;}
.h0{height:5055.590551px;}
.h1{height:5055.750000px;}
.w3{width:861.448485px;}
.w5{width:863.957994px;}
.w6{width:891.212981px;}
.w4{width:979.653000px;}
.w2{width:3575.862000px;}
.w0{width:3575.905512px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x49{left:14.729138px;}
.x36{left:16.289216px;}
.x48{left:23.729704px;}
.x35{left:25.289781px;}
.x32{left:27.209901px;}
.x4d{left:29.214506px;}
.x14{left:31.349625px;}
.x25{left:37.177910px;}
.x33{left:40.337251px;}
.x1a{left:44.602679px;}
.x26{left:50.305260px;}
.x12{left:53.050396px;}
.x19{left:57.092735px;}
.x18{left:59.190662px;}
.x31{left:65.269342px;}
.x13{left:66.303450px;}
.x57{left:67.869300px;}
.x22{left:80.516087px;}
.x4c{left:84.917576px;}
.x1e{left:89.180744px;}
.x60{left:101.486397px;}
.x34{left:130.637433px;}
.x3b{left:138.120101px;}
.x3a{left:141.985420px;}
.x27{left:155.741629px;}
.x40{left:163.056580px;}
.x28{left:171.134423px;}
.xa{left:180.708000px;}
.x24{left:191.338500px;}
.x59{left:201.969000px;}
.x1{left:216.850500px;}
.x1b{left:235.068150px;}
.x15{left:240.587100px;}
.x37{left:382.806071px;}
.x29{left:393.974116px;}
.x4a{left:398.710934px;}
.x2a{left:407.101466px;}
.x41{left:409.878978px;}
.x61{left:417.646215px;}
.x42{left:423.006328px;}
.x3c{left:438.022449px;}
.x3d{left:447.892649px;}
.x16{left:453.948641px;}
.x1f{left:457.170396px;}
.x4f{left:458.827144px;}
.x4e{left:460.231575px;}
.x1c{left:467.365780px;}
.x2b{left:497.572812px;}
.x43{left:508.508875px;}
.x2c{left:565.655091px;}
.x20{left:584.833590px;}
.x1d{left:588.492379px;}
.x23{left:619.799563px;}
.x17{left:623.489907px;}
.x38{left:752.729314px;}
.x4b{left:758.695009px;}
.x2d{left:763.897358px;}
.x44{left:769.863053px;}
.x3f{left:782.356842px;}
.x50{left:785.340317px;}
.x58{left:802.658975px;}
.x2e{left:809.867379px;}
.x3e{left:810.967726px;}
.x45{left:815.458455px;}
.x30{left:820.563309px;}
.x47{left:823.546784px;}
.x39{left:847.905503px;}
.x2f{left:924.609198px;}
.x46{left:925.951087px;}
.x6{left:946.063500px;}
.x3{left:988.582500px;}
.x5{left:1052.362500px;}
.x8{left:1105.809000px;}
.xe{left:1243.530000px;}
.x2{left:1294.852500px;}
.x11{left:1296.850500px;}
.x7{left:1303.653000px;}
.x53{left:1305.141000px;}
.xb{left:1313.136000px;}
.x9{left:1316.452500px;}
.x21{left:1318.110000px;}
.x54{left:1328.740500px;}
.x4{left:1363.180500px;}
.x5d{left:1456.299000px;}
.x10{left:1561.195500px;}
.xc{left:1572.718500px;}
.x5e{left:1711.417500px;}
.xd{left:2434.252500px;}
.x5a{left:2455.512000px;}
.x5f{left:2489.103000px;}
.x5b{left:2498.031000px;}
.x56{left:2516.358000px;}
.x55{left:2526.945000px;}
.x51{left:2560.620000px;}
.x52{left:2582.688000px;}
.xf{left:2839.464000px;}
.x5c{left:3114.567000px;}
@media print{
.v3{vertical-align:-47.168000pt;}
.vb{vertical-align:-37.352738pt;}
.v7{vertical-align:-23.560984pt;}
.va{vertical-align:-22.398911pt;}
.v5{vertical-align:-8.165333pt;}
.v4{vertical-align:-6.650667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:6.337079pt;}
.v6{vertical-align:8.165333pt;}
.v8{vertical-align:39.268307pt;}
.v2{vertical-align:47.173333pt;}
.vc{vertical-align:62.254563pt;}
.v1{vertical-align:87.082667pt;}
.ls15{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000311pt;}
.lsc{letter-spacing:0.000393pt;}
.lsb{letter-spacing:0.000786pt;}
.lsa{letter-spacing:0.001066pt;}
.ls13{letter-spacing:0.001245pt;}
.ls3{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.022240pt;}
.ls7{letter-spacing:0.049968pt;}
.ls0{letter-spacing:0.084011pt;}
.lse{letter-spacing:0.144000pt;}
.ls11{letter-spacing:0.149333pt;}
.ls12{letter-spacing:0.157157pt;}
.ls1{letter-spacing:0.159947pt;}
.lsf{letter-spacing:0.162491pt;}
.ls2{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.222784pt;}
.ls8{letter-spacing:0.250667pt;}
.ls10{letter-spacing:0.256096pt;}
.ls5{letter-spacing:0.331371pt;}
.ls4{letter-spacing:0.336704pt;}
.lsd{letter-spacing:0.352000pt;}
.ws0{word-spacing:-64.993803pt;}
.ws3{word-spacing:-53.184000pt;}
.ws1{word-spacing:-41.081685pt;}
.ws9{word-spacing:-32.496901pt;}
.ws7{word-spacing:-29.565872pt;}
.ws22{word-spacing:-27.690830pt;}
.ws5{word-spacing:-26.592000pt;}
.ws4{word-spacing:-23.618128pt;}
.ws2{word-spacing:-22.321029pt;}
.wsd{word-spacing:-21.838211pt;}
.ws10{word-spacing:-21.829501pt;}
.ws20{word-spacing:-20.756324pt;}
.wsf{word-spacing:-19.638679pt;}
.wsa{word-spacing:-18.929072pt;}
.wse{word-spacing:-17.470569pt;}
.wsc{word-spacing:-17.466543pt;}
.ws12{word-spacing:-17.463601pt;}
.ws8{word-spacing:-17.128203pt;}
.ws21{word-spacing:-16.605059pt;}
.wsb{word-spacing:-15.707323pt;}
.ws6{word-spacing:-15.368699pt;}
.ws1f{word-spacing:-0.096000pt;}
.ws13{word-spacing:0.000000pt;}
.ws15{word-spacing:15.209593pt;}
.ws1b{word-spacing:15.214234pt;}
.ws1c{word-spacing:15.215328pt;}
.ws18{word-spacing:25.350076pt;}
.ws19{word-spacing:52.201519pt;}
.ws1e{word-spacing:60.368720pt;}
.ws17{word-spacing:66.981014pt;}
.ws11{word-spacing:116.719405pt;}
.ws1d{word-spacing:117.873877pt;}
.ws16{word-spacing:132.287180pt;}
.ws1a{word-spacing:156.332028pt;}
.ws14{word-spacing:180.684411pt;}
._23{margin-left:-446.568831pt;}
._24{margin-left:-426.345880pt;}
._19{margin-left:-4.880711pt;}
._1a{margin-left:-2.459405pt;}
._4{margin-left:-1.023808pt;}
._3{width:1.096853pt;}
._1{width:2.064000pt;}
._7{width:3.066448pt;}
._2{width:4.323264pt;}
._a{width:7.008000pt;}
._5{width:9.379040pt;}
._9{width:10.656000pt;}
._6{width:11.681168pt;}
._8{width:13.248000pt;}
._1d{width:25.350076pt;}
._b{width:44.642645pt;}
._c{width:45.759244pt;}
._15{width:54.090533pt;}
._20{width:62.079555pt;}
._14{width:75.928744pt;}
._d{width:81.371464pt;}
._22{width:83.749129pt;}
._1e{width:90.359867pt;}
._e{width:94.512546pt;}
._13{width:97.766955pt;}
._11{width:105.408646pt;}
._12{width:106.531417pt;}
._f{width:130.019277pt;}
._21{width:153.381035pt;}
._1c{width:167.783505pt;}
._1f{width:191.844764pt;}
._1b{width:198.432573pt;}
._16{width:209.520587pt;}
._10{width:245.124381pt;}
._27{width:314.962225pt;}
._18{width:336.450277pt;}
._26{width:339.216311pt;}
._17{width:396.384373pt;}
._25{width:836.863808pt;}
._0{width:5563.238667pt;}
.fs16{font-size:5.576713pt;}
.fs1b{font-size:5.578415pt;}
.fs1a{font-size:5.851794pt;}
.fs17{font-size:6.692056pt;}
.fs1c{font-size:6.694098pt;}
.fs18{font-size:7.807398pt;}
.fs1d{font-size:7.809781pt;}
.fs19{font-size:8.359706pt;}
.fsd{font-size:55.482667pt;}
.fs21{font-size:59.730234pt;}
.fs20{font-size:59.730429pt;}
.fse{font-size:61.834667pt;}
.fs15{font-size:62.818709pt;}
.fs12{font-size:62.829291pt;}
.fs13{font-size:62.843773pt;}
.fsf{font-size:68.336000pt;}
.fs23{font-size:74.080000pt;}
.fs1e{font-size:74.662793pt;}
.fs1f{font-size:74.663037pt;}
.fs0{font-size:74.682667pt;}
.fs14{font-size:78.523387pt;}
.fs11{font-size:78.536614pt;}
.fs10{font-size:78.554716pt;}
.fsa{font-size:79.973333pt;}
.fs6{font-size:80.581333pt;}
.fs9{font-size:85.264000pt;}
.fs24{font-size:87.247154pt;}
.fsb{font-size:96.000000pt;}
.fs26{font-size:99.607301pt;}
.fsc{font-size:106.736000pt;}
.fs8{font-size:117.317333pt;}
.fs25{font-size:124.509126pt;}
.fs27{font-size:124.638791pt;}
.fs22{font-size:128.048000pt;}
.fs7{font-size:138.634667pt;}
.fs4{font-size:148.309333pt;}
.fs5{font-size:192.000000pt;}
.fs2{font-size:234.634667pt;}
.fs3{font-size:255.952000pt;}
.fs1{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.yf9{bottom:5.606660pt;}
.yfe{bottom:5.606688pt;}
.y18d{bottom:5.608371pt;}
.y192{bottom:5.608399pt;}
.yf5{bottom:5.955232pt;}
.y18a{bottom:5.957022pt;}
.y1b2{bottom:9.639607pt;}
.y69{bottom:9.717381pt;}
.y1d1{bottom:12.666542pt;}
.y58{bottom:13.368442pt;}
.y68{bottom:13.643551pt;}
.yf1{bottom:33.747340pt;}
.y185{bottom:33.757639pt;}
.y1b0{bottom:35.771611pt;}
.y66{bottom:41.126764pt;}
.y56{bottom:42.826488pt;}
.y1cf{bottom:48.500225pt;}
.yfa{bottom:54.243294pt;}
.y18e{bottom:54.259848pt;}
.y1a7{bottom:54.437309pt;}
.yf6{bottom:55.604291pt;}
.y18b{bottom:55.621260pt;}
.y186{bottom:66.964967pt;}
.y53{bottom:78.737216pt;}
.y62{bottom:83.192864pt;}
.yf2{bottom:84.858055pt;}
.yf7{bottom:89.625029pt;}
.y187{bottom:89.652380pt;}
.y67{bottom:102.379493pt;}
.yfd{bottom:103.082614pt;}
.y191{bottom:103.114072pt;}
.y57{bottom:104.243932pt;}
.y1c8{bottom:105.366674pt;}
.yfb{bottom:108.676196pt;}
.y18f{bottom:108.709361pt;}
.y188{bottom:112.338120pt;}
.yfc{bottom:113.968636pt;}
.y190{bottom:114.003417pt;}
.yf4{bottom:114.715776pt;}
.y189{bottom:117.633152pt;}
.y1d0{bottom:117.826191pt;}
.yf8{bottom:123.643955pt;}
.y18c{bottom:123.681688pt;}
.yf3{bottom:125.797960pt;}
.y63{bottom:128.063371pt;}
.y1a8{bottom:133.366414pt;}
.y1c5{bottom:139.766667pt;}
.y1c9{bottom:140.265535pt;}
.y10{bottom:142.222667pt;}
.yed{bottom:144.056258pt;}
.y181{bottom:144.100220pt;}
.y54{bottom:144.105821pt;}
.yea{bottom:145.416976pt;}
.y17e{bottom:145.461354pt;}
.y17b{bottom:149.423423pt;}
.y17d{bottom:150.504241pt;}
.ye9{bottom:154.151503pt;}
.yf{bottom:165.921333pt;}
.ye7{bottom:169.587845pt;}
.y64{bottom:172.793517pt;}
.y1ca{bottom:175.320040pt;}
.yeb{bottom:179.437714pt;}
.y17f{bottom:179.492474pt;}
.ye{bottom:189.618667pt;}
.y17c{bottom:191.562769pt;}
.yf0{bottom:192.895982pt;}
.y184{bottom:192.954849pt;}
.y1c1{bottom:193.397333pt;}
.yee{bottom:198.487766pt;}
.y182{bottom:198.548340pt;}
.yef{bottom:203.781461pt;}
.y183{bottom:203.843650pt;}
.y55{bottom:209.334291pt;}
.y1cb{bottom:210.218901pt;}
.ye8{bottom:211.047918pt;}
.y1a9{bottom:212.295652pt;}
.yd{bottom:213.316000pt;}
.yec{bottom:213.457058pt;}
.y180{bottom:213.522200pt;}
.y65{bottom:217.664023pt;}
.y1c0{bottom:220.270667pt;}
.ye3{bottom:233.869222pt;}
.y177{bottom:233.940593pt;}
.ye0{bottom:235.229940pt;}
.y174{bottom:235.301727pt;}
.yc{bottom:237.013333pt;}
.y171{bottom:238.750582pt;}
.y1cc{bottom:245.273561pt;}
.y1bf{bottom:247.142667pt;}
.ydd{bottom:252.777068pt;}
.ye1{bottom:269.249284pt;}
.y175{bottom:269.331452pt;}
.y172{bottom:269.664763pt;}
.y1cd{bottom:280.172423pt;}
.y1c6{bottom:282.518667pt;}
.ye6{bottom:282.707315pt;}
.y17a{bottom:282.793590pt;}
.yb{bottom:286.148000pt;}
.ye4{bottom:288.300730pt;}
.y178{bottom:288.388712pt;}
.y1aa{bottom:291.224891pt;}
.ye5{bottom:293.594425pt;}
.y179{bottom:293.684023pt;}
.yde{bottom:295.408251pt;}
.y173{bottom:300.578944pt;}
.ydf{bottom:300.701946pt;}
.y1be{bottom:300.888000pt;}
.ye2{bottom:303.270022pt;}
.y176{bottom:303.362573pt;}
.y52{bottom:304.301332pt;}
.y51{bottom:308.229067pt;}
.y61{bottom:314.556274pt;}
.y1ce{bottom:315.227083pt;}
.y60{bottom:316.519358pt;}
.yd9{bottom:323.682186pt;}
.y16d{bottom:323.780966pt;}
.yd6{bottom:325.042904pt;}
.y16a{bottom:325.142099pt;}
.y1bd{bottom:328.289333pt;}
.y4f{bottom:335.723218pt;}
.yd5{bottom:335.938408pt;}
.yd3{bottom:335.942590pt;}
.y1b1{bottom:342.654222pt;}
.y5e{bottom:344.002544pt;}
.y167{bottom:351.005026pt;}
.y41{bottom:351.230667pt;}
.yd7{bottom:359.062248pt;}
.y16b{bottom:359.171825pt;}
.y1c7{bottom:370.052000pt;}
.y1ab{bottom:370.154129pt;}
.y4c{bottom:371.633945pt;}
.ydc{bottom:372.520279pt;}
.y170{bottom:372.633963pt;}
.y40{bottom:378.104000pt;}
.yda{bottom:378.113694pt;}
.y16e{bottom:378.229085pt;}
.ydb{bottom:383.407389pt;}
.y16f{bottom:383.524396pt;}
.y5a{bottom:386.068644pt;}
.yd4{bottom:388.917182pt;}
.y169{bottom:388.968929pt;}
.y168{bottom:391.840418pt;}
.yd8{bottom:393.081592pt;}
.y16c{bottom:393.201551pt;}
.y50{bottom:397.000105pt;}
.y5f{bottom:405.254992pt;}
.ycf{bottom:413.493756pt;}
.y163{bottom:413.619944pt;}
.y2{bottom:414.802667pt;}
.ycc{bottom:414.854474pt;}
.y160{bottom:414.981078pt;}
.ycb{bottom:418.288336pt;}
.y15f{bottom:418.915255pt;}
.y15c{bottom:429.954938pt;}
.y5b{bottom:430.939150pt;}
.yc9{bottom:431.382458pt;}
.y3f{bottom:431.848000pt;}
.y4d{bottom:436.862415pt;}
.ycd{bottom:448.875213pt;}
.y161{bottom:449.012198pt;}
.y1ac{bottom:449.216693pt;}
.y19{bottom:453.996000pt;}
.y15d{bottom:457.178998pt;}
.y3e{bottom:458.721333pt;}
.yd2{bottom:462.333480pt;}
.y166{bottom:462.474573pt;}
.yd0{bottom:467.925264pt;}
.y164{bottom:468.068063pt;}
.yd1{bottom:473.218959pt;}
.y165{bottom:473.363374pt;}
.y5c{bottom:475.669437pt;}
.y18{bottom:476.220000pt;}
.yca{bottom:477.352698pt;}
.yce{bottom:482.894557pt;}
.y162{bottom:483.041924pt;}
.y15e{bottom:484.403057pt;}
.y3d{bottom:485.593333pt;}
.y17{bottom:498.444000pt;}
.y4e{bottom:502.090885pt;}
.yc5{bottom:503.306721pt;}
.y158{bottom:503.460317pt;}
.yc2{bottom:504.667439pt;}
.y155{bottom:504.821450pt;}
.y154{bottom:510.157204pt;}
.y151{bottom:514.028624pt;}
.y5d{bottom:520.539943pt;}
.y16{bottom:520.666667pt;}
.ybf{bottom:520.823176pt;}
.y1ad{bottom:528.145932pt;}
.yc3{bottom:538.686783pt;}
.y156{bottom:538.851176pt;}
.y3c{bottom:539.338667pt;}
.y152{bottom:539.494089pt;}
.yb9{bottom:541.494658pt;}
.y14b{bottom:541.659908pt;}
.y15{bottom:542.890667pt;}
.yc8{bottom:552.146444pt;}
.y15b{bottom:552.314946pt;}
.ybc{bottom:553.802463pt;}
.y14e{bottom:553.971470pt;}
.yc6{bottom:557.738229pt;}
.y159{bottom:557.908436pt;}
.yc0{bottom:559.185386pt;}
.yaf{bottom:561.993261pt;}
.y142{bottom:562.164767pt;}
.yc7{bottom:563.031924pt;}
.y15a{bottom:563.203747pt;}
.y153{bottom:564.959553pt;}
.y14{bottom:565.114667pt;}
.yc1{bottom:568.315859pt;}
.yc4{bottom:572.707521pt;}
.y157{bottom:572.882297pt;}
.yb0{bottom:578.453766pt;}
.y3b{bottom:593.082667pt;}
.yba{bottom:593.119685pt;}
.y14c{bottom:593.300690pt;}
.yb6{bottom:594.480403pt;}
.y148{bottom:594.661823pt;}
.yad{bottom:604.381857pt;}
.y1ae{bottom:607.075170pt;}
.y4b{bottom:609.261962pt;}
.yb5{bottom:609.675552pt;}
.y4a{bottom:611.225830pt;}
.yb1{bottom:615.408273pt;}
.y143{bottom:615.596080pt;}
.y140{bottom:624.154903pt;}
.yb2{bottom:627.784324pt;}
.y144{bottom:627.975908pt;}
.yb7{bottom:628.499747pt;}
.y149{bottom:628.691549pt;}
.y48{bottom:638.719980pt;}
.yae{bottom:639.167999pt;}
.ybe{bottom:641.957220pt;}
.y150{bottom:642.153129pt;}
.y13{bottom:647.168000pt;}
.ybb{bottom:647.551193pt;}
.y14d{bottom:647.748809pt;}
.ybd{bottom:652.844888pt;}
.y14f{bottom:653.044120pt;}
.yb3{bottom:654.595069pt;}
.y145{bottom:654.794835pt;}
.y147{bottom:660.303032pt;}
.yb8{bottom:662.520485pt;}
.y14a{bottom:662.722669pt;}
.y43{bottom:666.178667pt;}
.y141{bottom:669.528336pt;}
.y45{bottom:674.630708pt;}
.yb4{bottom:676.746750pt;}
.y146{bottom:676.953276pt;}
.ya9{bottom:682.931255pt;}
.y13c{bottom:683.139668pt;}
.ya6{bottom:684.291973pt;}
.y13a{bottom:684.500801pt;}
.y1af{bottom:686.004408pt;}
.y136{bottom:693.009279pt;}
.ya5{bottom:697.344270pt;}
.y49{bottom:699.996867pt;}
.ya3{bottom:703.620860pt;}
.ya7{bottom:718.312711pt;}
.y137{bottom:718.531922pt;}
.yac{bottom:731.770742pt;}
.y13f{bottom:731.994060pt;}
.ya4{bottom:732.545877pt;}
.yaa{bottom:737.364157pt;}
.y13d{bottom:737.589182pt;}
.y46{bottom:739.859177pt;}
.yab{bottom:742.657852pt;}
.y13e{bottom:742.884492pt;}
.y138{bottom:744.054565pt;}
.y139{bottom:749.349875pt;}
.ya8{bottom:752.332055pt;}
.y13b{bottom:752.561648pt;}
.y98{bottom:770.534446pt;}
.y9f{bottom:772.744219pt;}
.y132{bottom:772.980041pt;}
.y9c{bottom:774.104937pt;}
.y12f{bottom:774.341174pt;}
.y12e{bottom:776.914218pt;}
.y12c{bottom:777.744007pt;}
.y47{bottom:805.087647pt;}
.y9d{bottom:808.125675pt;}
.y130{bottom:808.372295pt;}
.y99{bottom:809.713644pt;}
.y12d{bottom:818.580794pt;}
.ya2{bottom:821.583943pt;}
.y135{bottom:821.834670pt;}
.ya0{bottom:827.175727pt;}
.y133{bottom:827.428160pt;}
.ya1{bottom:832.469422pt;}
.y134{bottom:832.723471pt;}
.y9b{bottom:838.515973pt;}
.y9e{bottom:842.145019pt;}
.y131{bottom:842.402021pt;}
.y9a{bottom:848.894236pt;}
.y94{bottom:862.557183pt;}
.y128{bottom:862.820414pt;}
.y91{bottom:863.917901pt;}
.y125{bottom:864.181547pt;}
.y124{bottom:868.115724pt;}
.y8d{bottom:871.920484pt;}
.y121{bottom:879.154013pt;}
.y8e{bottom:897.707206pt;}
.y92{bottom:897.937245pt;}
.y126{bottom:898.211273pt;}
.y1a5{bottom:898.620000pt;}
.y122{bottom:906.379467pt;}
.y97{bottom:911.395820pt;}
.y12b{bottom:911.673955pt;}
.y1ba{bottom:913.133333pt;}
.y95{bottom:916.988691pt;}
.y129{bottom:917.268533pt;}
.y96{bottom:922.282386pt;}
.y12a{bottom:922.563843pt;}
.y8f{bottom:923.495321pt;}
.y1a4{bottom:925.492000pt;}
.y90{bottom:928.789016pt;}
.y93{bottom:931.957983pt;}
.y127{bottom:932.242393pt;}
.y123{bottom:933.603527pt;}
.y1b9{bottom:940.005333pt;}
.y1a3{bottom:952.365333pt;}
.y89{bottom:952.370147pt;}
.y11d{bottom:952.660787pt;}
.y86{bottom:953.730865pt;}
.y11a{bottom:954.021920pt;}
.y117{bottom:957.518192pt;}
.y119{bottom:959.635200pt;}
.y1b8{bottom:966.878667pt;}
.y83{bottom:970.215629pt;}
.y87{bottom:987.750209pt;}
.y11b{bottom:988.051646pt;}
.y118{bottom:997.237901pt;}
.y8c{bottom:1001.208240pt;}
.y120{bottom:1001.513784pt;}
.y84{bottom:1002.096304pt;}
.y8a{bottom:1006.801655pt;}
.y11e{bottom:1007.108906pt;}
.y85{bottom:1007.389999pt;}
.y8b{bottom:1012.095350pt;}
.y11f{bottom:1012.404216pt;}
.y1a6{bottom:1016.729333pt;}
.y88{bottom:1021.769553pt;}
.y11c{bottom:1022.081372pt;}
.yff{bottom:1022.777333pt;}
.y10d{bottom:1037.055232pt;}
.y79{bottom:1040.450148pt;}
.y7f{bottom:1042.181717pt;}
.y113{bottom:1042.499765pt;}
.y7c{bottom:1043.542435pt;}
.y111{bottom:1043.860898pt;}
.y7d{bottom:1077.563173pt;}
.y10e{bottom:1077.892019pt;}
.y82{bottom:1091.021441pt;}
.y116{bottom:1091.354393pt;}
.y7a{bottom:1094.643251pt;}
.y80{bottom:1096.614619pt;}
.y114{bottom:1096.949279pt;}
.y7b{bottom:1099.936946pt;}
.y81{bottom:1101.906920pt;}
.y115{bottom:1102.243194pt;}
.y110{bottom:1107.689122pt;}
.y7e{bottom:1111.582517pt;}
.y112{bottom:1111.921744pt;}
.y10f{bottom:1118.727411pt;}
.y74{bottom:1131.994681pt;}
.y108{bottom:1132.340138pt;}
.y70{bottom:1133.355399pt;}
.y105{bottom:1133.701271pt;}
.y6b{bottom:1135.344892pt;}
.y100{bottom:1138.378772pt;}
.y6e{bottom:1140.638587pt;}
.y6c{bottom:1162.879913pt;}
.y71{bottom:1167.374743pt;}
.y106{bottom:1167.730997pt;}
.y101{bottom:1167.747732pt;}
.y77{bottom:1180.833862pt;}
.y10b{bottom:1181.194222pt;}
.y75{bottom:1186.426189pt;}
.y109{bottom:1186.788257pt;}
.y6d{bottom:1190.414933pt;}
.y76{bottom:1191.719884pt;}
.y10a{bottom:1192.083567pt;}
.y102{bottom:1197.115298pt;}
.y103{bottom:1199.473572pt;}
.y72{bottom:1201.395482pt;}
.y107{bottom:1201.762117pt;}
.y78{bottom:1221.857557pt;}
.y6f{bottom:1221.857697pt;}
.y73{bottom:1221.857836pt;}
.y10c{bottom:1222.230437pt;}
.y104{bottom:1222.230716pt;}
.y1a2{bottom:1365.052000pt;}
.y1a1{bottom:1391.924000pt;}
.y1a0{bottom:1418.796000pt;}
.y19f{bottom:1445.669333pt;}
.y19e{bottom:1472.541333pt;}
.y19d{bottom:1499.942667pt;}
.y59{bottom:1551.910667pt;}
.y1bc{bottom:1783.709333pt;}
.y1bb{bottom:1955.376000pt;}
.y3a{bottom:2072.844000pt;}
.y39{bottom:2099.716000pt;}
.y38{bottom:2153.461333pt;}
.y12{bottom:2161.926667pt;}
.y37{bottom:2181.466667pt;}
.y11{bottom:2215.672000pt;}
.y36{bottom:2240.012000pt;}
.y35{bottom:2266.884000pt;}
.y42{bottom:2329.057333pt;}
.y34{bottom:2401.246667pt;}
.y33{bottom:2428.118667pt;}
.y1b7{bottom:2432.277333pt;}
.y32{bottom:2456.125333pt;}
.y1b6{bottom:2459.149333pt;}
.y1b5{bottom:2486.021333pt;}
.y31{bottom:2487.797333pt;}
.y1b4{bottom:2512.894667pt;}
.y1b3{bottom:2539.766667pt;}
.y30{bottom:2542.034667pt;}
.y6a{bottom:2588.144000pt;}
.y19c{bottom:2623.748000pt;}
.y19b{bottom:2651.602667pt;}
.y2f{bottom:2651.905333pt;}
.y2e{bottom:2678.777333pt;}
.y19a{bottom:2679.457333pt;}
.y199{bottom:2706.784000pt;}
.y2d{bottom:2733.656000pt;}
.y198{bottom:2760.528000pt;}
.y2c{bottom:2766.462667pt;}
.y197{bottom:2787.930667pt;}
.y2b{bottom:2799.269333pt;}
.y196{bottom:2815.256000pt;}
.y2a{bottom:2832.074667pt;}
.y195{bottom:2842.128000pt;}
.y29{bottom:2863.748000pt;}
.y44{bottom:2882.304000pt;}
.y28{bottom:2918.626667pt;}
.y27{bottom:2977.662667pt;}
.y26{bottom:3006.916000pt;}
.y25{bottom:3033.788000pt;}
.y24{bottom:3060.661333pt;}
.y23{bottom:3248.768000pt;}
.y22{bottom:3329.385333pt;}
.y21{bottom:3356.257333pt;}
.y20{bottom:3463.748000pt;}
.y1f{bottom:3490.620000pt;}
.y1e{bottom:3517.492000pt;}
.y1d{bottom:3544.365333pt;}
.y1c{bottom:3571.237333pt;}
.y1b{bottom:3598.601333pt;}
.y1a{bottom:3654.726667pt;}
.y194{bottom:3749.328000pt;}
.ya{bottom:3780.774667pt;}
.y193{bottom:3803.073333pt;}
.y1c4{bottom:3922.242667pt;}
.y9{bottom:3923.489333pt;}
.y1c3{bottom:3949.114667pt;}
.y8{bottom:3962.229333pt;}
.y1c2{bottom:3975.986667pt;}
.y7{bottom:3992.049333pt;}
.y6{bottom:4053.240000pt;}
.y5{bottom:4168.666667pt;}
.y4{bottom:4234.280000pt;}
.y3{bottom:4307.716000pt;}
.h19{height:5.297877pt;}
.h1f{height:5.299494pt;}
.h1d{height:5.559204pt;}
.h1a{height:6.357453pt;}
.h20{height:6.359393pt;}
.h1b{height:7.417028pt;}
.h21{height:7.419292pt;}
.h1c{height:7.941720pt;}
.h22{height:11.636574pt;}
.h3{height:49.776289pt;}
.h25{height:54.653164pt;}
.h26{height:54.653343pt;}
.h16{height:57.479119pt;}
.h12{height:57.502052pt;}
.h8{height:59.334302pt;}
.h29{height:63.603175pt;}
.hc{height:69.351875pt;}
.h10{height:69.562500pt;}
.h23{height:72.937500pt;}
.hb{height:73.939875pt;}
.hf{height:77.341906pt;}
.hd{height:83.250000pt;}
.ha{height:85.009240pt;}
.h17{height:85.244989pt;}
.h13{height:85.259348pt;}
.h14{height:85.279000pt;}
.h2b{height:90.861679pt;}
.h27{height:92.784781pt;}
.he{height:101.736125pt;}
.h2a{height:134.868286pt;}
.h9{height:139.125000pt;}
.h7{height:141.375000pt;}
.h5{height:170.018479pt;}
.h6{height:221.958375pt;}
.h4{height:278.250000pt;}
.h28{height:344.314661pt;}
.h15{height:560.881333pt;}
.h24{height:719.962647pt;}
.h11{height:855.685301pt;}
.h18{height:1240.818660pt;}
.h1e{height:1241.197327pt;}
.h2{height:4493.820000pt;}
.h0{height:4493.858268pt;}
.h1{height:4494.000000pt;}
.w3{width:765.731987pt;}
.w5{width:767.962662pt;}
.w6{width:792.189316pt;}
.w4{width:870.802667pt;}
.w2{width:3178.544000pt;}
.w0{width:3178.582677pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x49{left:13.092567pt;}
.x36{left:14.479303pt;}
.x48{left:21.093070pt;}
.x35{left:22.479806pt;}
.x32{left:24.186579pt;}
.x4d{left:25.968450pt;}
.x14{left:27.866333pt;}
.x25{left:33.047031pt;}
.x33{left:35.855335pt;}
.x1a{left:39.646825pt;}
.x26{left:44.715787pt;}
.x12{left:47.155907pt;}
.x19{left:50.749098pt;}
.x18{left:52.613922pt;}
.x31{left:58.017193pt;}
.x13{left:58.936400pt;}
.x57{left:60.328267pt;}
.x22{left:71.569855pt;}
.x4c{left:75.482290pt;}
.x1e{left:79.271773pt;}
.x60{left:90.210130pt;}
.x34{left:116.122163pt;}
.x3b{left:122.773423pt;}
.x3a{left:126.209262pt;}
.x27{left:138.437003pt;}
.x40{left:144.939182pt;}
.x28{left:152.119487pt;}
.xa{left:160.629333pt;}
.x24{left:170.078667pt;}
.x59{left:179.528000pt;}
.x1{left:192.756000pt;}
.x1b{left:208.949467pt;}
.x15{left:213.855200pt;}
.x37{left:340.272063pt;}
.x29{left:350.199214pt;}
.x4a{left:354.409719pt;}
.x2a{left:361.867970pt;}
.x41{left:364.336869pt;}
.x61{left:371.241080pt;}
.x42{left:376.005625pt;}
.x3c{left:389.353288pt;}
.x3d{left:398.126799pt;}
.x16{left:403.509903pt;}
.x1f{left:406.373685pt;}
.x4f{left:407.846350pt;}
.x4e{left:409.094733pt;}
.x1c{left:415.436249pt;}
.x2b{left:442.286944pt;}
.x43{left:452.007889pt;}
.x2c{left:502.804525pt;}
.x20{left:519.852080pt;}
.x1d{left:523.104337pt;}
.x23{left:550.932945pt;}
.x17{left:554.213251pt;}
.x38{left:669.092724pt;}
.x4b{left:674.395563pt;}
.x2d{left:679.019874pt;}
.x44{left:684.322714pt;}
.x3f{left:695.428304pt;}
.x50{left:698.080281pt;}
.x58{left:713.474644pt;}
.x2e{left:719.882115pt;}
.x3e{left:720.860200pt;}
.x45{left:724.851960pt;}
.x30{left:729.389608pt;}
.x47{left:732.041585pt;}
.x39{left:753.693780pt;}
.x2f{left:821.874842pt;}
.x46{left:823.067633pt;}
.x6{left:840.945333pt;}
.x3{left:878.740000pt;}
.x5{left:935.433333pt;}
.x8{left:982.941333pt;}
.xe{left:1105.360000pt;}
.x2{left:1150.980000pt;}
.x11{left:1152.756000pt;}
.x7{left:1158.802667pt;}
.x53{left:1160.125333pt;}
.xb{left:1167.232000pt;}
.x9{left:1170.180000pt;}
.x21{left:1171.653333pt;}
.x54{left:1181.102667pt;}
.x4{left:1211.716000pt;}
.x5d{left:1294.488000pt;}
.x10{left:1387.729333pt;}
.xc{left:1397.972000pt;}
.x5e{left:1521.260000pt;}
.xd{left:2163.780000pt;}
.x5a{left:2182.677333pt;}
.x5f{left:2212.536000pt;}
.x5b{left:2220.472000pt;}
.x56{left:2236.762667pt;}
.x55{left:2246.173333pt;}
.x51{left:2276.106667pt;}
.x52{left:2295.722667pt;}
.xf{left:2523.968000pt;}
.x5c{left:2768.504000pt;}
}




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