
    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_5f50611980ab433196d6e35f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.761230;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_8a36682350b860c669add182.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.083008;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_fcea9599079d22d7cea4ab28.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_ec4db45977abe7778e7d9d13.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.127000;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_fb7e9ebecc8548c816997a27.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107910;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_fd67c974ee7e1b96bfda3ca3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.945000;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_4db2e6a4fd2cbb95e5977aab.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.121000;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_c333d68cec884ce4b2b0c47d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.131000;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_7af85c84da4f48580440adc8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.984000;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_4bd99141de0f0eb44f1b7d66.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.984333;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_d4a2e512b854560aa4389548.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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_a4375d20e0beca9ee0a4a557.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_9c640f2e9fde9e9ed77f7233.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.961000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.059800px;}
.v1{vertical-align:21.978600px;}
.v2{vertical-align:32.400000px;}
.ls5{letter-spacing:-1.500000px;}
.ls2{letter-spacing:-1.200000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.624000px;}
.ls4{letter-spacing:0.711000px;}
.ls0{letter-spacing:0.924000px;}
.ls3{letter-spacing:1.008000px;}
.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;}
}
.wsc1{word-spacing:-37.224000px;}
.ws78{word-spacing:-27.696000px;}
.wsb0{word-spacing:-19.008000px;}
.ws18{word-spacing:-18.288000px;}
.ws2{word-spacing:-17.424000px;}
.ws19{word-spacing:-16.500000px;}
.wsc8{word-spacing:-15.012000px;}
.ws0{word-spacing:-12.144000px;}
.ws77{word-spacing:-12.000000px;}
.ws76{word-spacing:-9.619500px;}
.wsba{word-spacing:-8.514000px;}
.wsc0{word-spacing:-6.270000px;}
.wsb6{word-spacing:-3.960000px;}
.wsaf{word-spacing:-3.168000px;}
.wsbf{word-spacing:-3.102000px;}
.ws29{word-spacing:-3.096000px;}
.ws69{word-spacing:-3.036000px;}
.ws9b{word-spacing:-2.970000px;}
.wscf{word-spacing:-2.940000px;}
.ws20{word-spacing:-2.904000px;}
.ws4d{word-spacing:-2.838000px;}
.wsaa{word-spacing:-2.772000px;}
.ws28{word-spacing:-2.706000px;}
.ws86{word-spacing:-2.700000px;}
.ws12{word-spacing:-2.574000px;}
.wsa6{word-spacing:-2.508000px;}
.ws39{word-spacing:-2.442000px;}
.wsdb{word-spacing:-2.400000px;}
.ws97{word-spacing:-2.376000px;}
.wsd0{word-spacing:-2.340000px;}
.ws5b{word-spacing:-2.310000px;}
.ws14{word-spacing:-2.244000px;}
.wsdf{word-spacing:-2.220000px;}
.ws2a{word-spacing:-2.178000px;}
.ws53{word-spacing:-2.112000px;}
.wsdd{word-spacing:-2.100000px;}
.wsa{word-spacing:-2.046000px;}
.ws9a{word-spacing:-1.980000px;}
.ws4e{word-spacing:-1.914000px;}
.ws67{word-spacing:-1.848000px;}
.ws85{word-spacing:-1.836000px;}
.ws6c{word-spacing:-1.782000px;}
.ws17{word-spacing:-1.716000px;}
.ws4f{word-spacing:-1.650000px;}
.wsd6{word-spacing:-1.620000px;}
.ws8c{word-spacing:-1.584000px;}
.ws43{word-spacing:-1.518000px;}
.wsa3{word-spacing:-1.458000px;}
.ws15{word-spacing:-1.452000px;}
.wsa1{word-spacing:-1.404000px;}
.ws40{word-spacing:-1.386000px;}
.ws5f{word-spacing:-1.320000px;}
.wscb{word-spacing:-1.260000px;}
.ws13{word-spacing:-1.254000px;}
.ws87{word-spacing:-1.242000px;}
.wsde{word-spacing:-1.200000px;}
.ws7f{word-spacing:-1.188000px;}
.wsda{word-spacing:-1.140000px;}
.ws3a{word-spacing:-1.122000px;}
.wsd7{word-spacing:-1.080000px;}
.ws41{word-spacing:-1.056000px;}
.ws90{word-spacing:-1.020000px;}
.wsa4{word-spacing:-1.008000px;}
.ws8{word-spacing:-0.990000px;}
.ws6{word-spacing:-0.924000px;}
.wscd{word-spacing:-0.900000px;}
.ws48{word-spacing:-0.858000px;}
.ws55{word-spacing:-0.792000px;}
.ws6e{word-spacing:-0.726000px;}
.ws56{word-spacing:-0.660000px;}
.wsd2{word-spacing:-0.600000px;}
.ws2c{word-spacing:-0.594000px;}
.ws16{word-spacing:-0.528000px;}
.wsab{word-spacing:-0.504000px;}
.wsf{word-spacing:-0.462000px;}
.ws22{word-spacing:-0.396000px;}
.wsa7{word-spacing:-0.330000px;}
.ws7b{word-spacing:-0.264000px;}
.wsce{word-spacing:-0.240000px;}
.wsb{word-spacing:-0.198000px;}
.wsb4{word-spacing:-0.132000px;}
.wscc{word-spacing:-0.120000px;}
.ws71{word-spacing:-0.066000px;}
.wsd4{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws36{word-spacing:0.066000px;}
.ws2b{word-spacing:0.132000px;}
.ws74{word-spacing:0.198000px;}
.ws23{word-spacing:0.264000px;}
.wse0{word-spacing:0.300000px;}
.ws5e{word-spacing:0.330000px;}
.ws9d{word-spacing:0.360000px;}
.ws44{word-spacing:0.396000px;}
.ws9e{word-spacing:0.420000px;}
.ws3f{word-spacing:0.462000px;}
.wsa0{word-spacing:0.486000px;}
.wse{word-spacing:0.528000px;}
.ws94{word-spacing:0.594000px;}
.wsd9{word-spacing:0.600000px;}
.ws7d{word-spacing:0.660000px;}
.wsd{word-spacing:0.726000px;}
.ws80{word-spacing:0.792000px;}
.ws21{word-spacing:0.858000px;}
.ws63{word-spacing:0.924000px;}
.ws9c{word-spacing:0.960000px;}
.ws27{word-spacing:0.990000px;}
.wse1{word-spacing:1.020000px;}
.ws3e{word-spacing:1.056000px;}
.ws75{word-spacing:1.122000px;}
.ws46{word-spacing:1.188000px;}
.ws5{word-spacing:1.200000px;}
.ws11{word-spacing:1.254000px;}
.ws96{word-spacing:1.260000px;}
.ws49{word-spacing:1.320000px;}
.ws8d{word-spacing:1.380000px;}
.ws68{word-spacing:1.386000px;}
.wsdc{word-spacing:1.440000px;}
.ws37{word-spacing:1.452000px;}
.ws9f{word-spacing:1.500000px;}
.ws73{word-spacing:1.518000px;}
.ws1d{word-spacing:1.650000px;}
.ws45{word-spacing:1.716000px;}
.wsb5{word-spacing:1.782000px;}
.ws52{word-spacing:1.848000px;}
.ws79{word-spacing:1.914000px;}
.ws4{word-spacing:1.920000px;}
.ws59{word-spacing:1.980000px;}
.ws91{word-spacing:2.040000px;}
.ws38{word-spacing:2.046000px;}
.ws1b{word-spacing:2.112000px;}
.ws7a{word-spacing:2.178000px;}
.ws57{word-spacing:2.244000px;}
.ws81{word-spacing:2.310000px;}
.ws7c{word-spacing:2.376000px;}
.ws7{word-spacing:2.442000px;}
.ws8f{word-spacing:2.508000px;}
.wsa5{word-spacing:2.574000px;}
.wsc{word-spacing:2.640000px;}
.ws25{word-spacing:2.706000px;}
.wsd8{word-spacing:2.760000px;}
.ws95{word-spacing:2.772000px;}
.ws1f{word-spacing:2.904000px;}
.ws72{word-spacing:2.970000px;}
.ws26{word-spacing:3.036000px;}
.wsa9{word-spacing:3.102000px;}
.ws6b{word-spacing:3.168000px;}
.ws2f{word-spacing:3.234000px;}
.ws33{word-spacing:3.300000px;}
.ws60{word-spacing:3.366000px;}
.ws70{word-spacing:3.432000px;}
.ws24{word-spacing:3.498000px;}
.wsd1{word-spacing:3.540000px;}
.ws50{word-spacing:3.564000px;}
.wsa2{word-spacing:3.618000px;}
.ws35{word-spacing:3.630000px;}
.wsac{word-spacing:3.696000px;}
.ws1a{word-spacing:3.762000px;}
.ws51{word-spacing:3.828000px;}
.ws47{word-spacing:3.894000px;}
.ws32{word-spacing:3.960000px;}
.ws3d{word-spacing:4.026000px;}
.ws5a{word-spacing:4.092000px;}
.ws42{word-spacing:4.158000px;}
.ws3c{word-spacing:4.224000px;}
.ws3b{word-spacing:4.290000px;}
.ws6d{word-spacing:4.356000px;}
.ws6a{word-spacing:4.422000px;}
.wsca{word-spacing:4.440000px;}
.ws1e{word-spacing:4.488000px;}
.ws5d{word-spacing:4.554000px;}
.wsd3{word-spacing:4.560000px;}
.wsbd{word-spacing:4.620000px;}
.wsc3{word-spacing:4.686000px;}
.ws2d{word-spacing:4.818000px;}
.ws54{word-spacing:4.884000px;}
.ws7e{word-spacing:4.950000px;}
.wsb3{word-spacing:5.016000px;}
.ws8e{word-spacing:5.040000px;}
.ws62{word-spacing:5.148000px;}
.ws61{word-spacing:5.214000px;}
.wsd5{word-spacing:5.220000px;}
.ws1c{word-spacing:5.280000px;}
.ws31{word-spacing:5.412000px;}
.ws64{word-spacing:5.544000px;}
.ws92{word-spacing:5.670000px;}
.ws10{word-spacing:5.676000px;}
.ws5c{word-spacing:5.808000px;}
.ws4a{word-spacing:5.940000px;}
.ws4c{word-spacing:6.072000px;}
.ws2e{word-spacing:6.138000px;}
.wsc5{word-spacing:6.204000px;}
.wsc6{word-spacing:6.336000px;}
.wsb7{word-spacing:6.402000px;}
.ws66{word-spacing:6.468000px;}
.wsc4{word-spacing:6.600000px;}
.wsc9{word-spacing:6.660000px;}
.wsad{word-spacing:6.666000px;}
.ws9{word-spacing:6.732000px;}
.ws6f{word-spacing:6.798000px;}
.ws83{word-spacing:6.804000px;}
.ws4b{word-spacing:6.996000px;}
.ws30{word-spacing:7.128000px;}
.wsa8{word-spacing:7.194000px;}
.ws84{word-spacing:7.236000px;}
.wsb9{word-spacing:7.392000px;}
.wsc2{word-spacing:7.722000px;}
.ws65{word-spacing:7.854000px;}
.wsbb{word-spacing:8.052000px;}
.wsb8{word-spacing:8.118000px;}
.wsae{word-spacing:8.250000px;}
.wsbe{word-spacing:8.382000px;}
.ws34{word-spacing:8.580000px;}
.wsbc{word-spacing:9.042000px;}
.ws93{word-spacing:9.774000px;}
.ws58{word-spacing:9.900000px;}
.wsb2{word-spacing:11.352000px;}
.wsb1{word-spacing:19.866000px;}
.ws8a{word-spacing:329.512200px;}
.ws8b{word-spacing:378.328200px;}
.ws98{word-spacing:641.098200px;}
.ws99{word-spacing:668.098200px;}
.ws82{word-spacing:792.205800px;}
.ws89{word-spacing:814.528200px;}
.ws88{word-spacing:868.528200px;}
.wsc7{word-spacing:1284.915600px;}
.ws1{word-spacing:2022.732600px;}
._d{margin-left:-49.500000px;}
._27{margin-left:-16.032000px;}
._28{margin-left:-13.474200px;}
._b{margin-left:-12.206400px;}
._5{margin-left:-10.378800px;}
._6{margin-left:-9.297600px;}
._26{margin-left:-8.293800px;}
._9{margin-left:-7.276200px;}
._3{margin-left:-6.030000px;}
._a{margin-left:-4.924200px;}
._7{margin-left:-3.913800px;}
._0{margin-left:-2.635200px;}
._2{margin-left:-1.026600px;}
._1{width:1.185600px;}
._4{width:2.735400px;}
._8{width:4.554600px;}
._c{width:6.769200px;}
._25{width:8.483400px;}
._f{width:36.000000px;}
._e{width:52.039800px;}
._24{width:68.539200px;}
._1e{width:118.159200px;}
._12{width:136.588800px;}
._13{width:141.772800px;}
._11{width:163.588800px;}
._1f{width:224.688000px;}
._1a{width:229.407000px;}
._19{width:232.045200px;}
._16{width:254.532000px;}
._20{width:276.075000px;}
._15{width:292.011000px;}
._22{width:322.164000px;}
._17{width:377.436000px;}
._14{width:395.031000px;}
._1b{width:463.200000px;}
._10{width:502.407600px;}
._18{width:586.848600px;}
._23{width:597.636600px;}
._21{width:624.636600px;}
._1c{width:654.567000px;}
._1d{width:693.826200px;}
.fc4{color:rgb(109,158,235);}
.fc3{color:rgb(19,20,19);}
.fc1{color:rgb(123,121,121);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:38.478000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.fs8{font-size:144.000000px;}
.fs4{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:21.676350px;}
.y6{bottom:67.699950px;}
.y1{bottom:68.300550px;}
.y2b{bottom:69.565500px;}
.y5{bottom:82.099950px;}
.y4{bottom:96.499950px;}
.ydb{bottom:114.803400px;}
.ya4{bottom:115.242450px;}
.y82{bottom:118.034550px;}
.y56{bottom:119.073000px;}
.ycf{bottom:119.692800px;}
.y7{bottom:119.848650px;}
.y171{bottom:120.848700px;}
.y14a{bottom:121.635000px;}
.y18a{bottom:123.221850px;}
.yda{bottom:129.203400px;}
.y1a4{bottom:134.050350px;}
.ya3{bottom:135.042450px;}
.y81{bottom:137.834550px;}
.y55{bottom:138.873000px;}
.yce{bottom:139.492800px;}
.y170{bottom:140.648700px;}
.y149{bottom:141.435000px;}
.yb0{bottom:142.429050px;}
.y189{bottom:143.022000px;}
.yd9{bottom:145.403550px;}
.y1a3{bottom:153.850350px;}
.ya2{bottom:154.842450px;}
.y80{bottom:157.634550px;}
.y54{bottom:158.673000px;}
.ycd{bottom:159.292800px;}
.y16f{bottom:160.448700px;}
.yaf{bottom:162.229050px;}
.y188{bottom:162.822000px;}
.y118{bottom:167.161050px;}
.y1a2{bottom:173.650200px;}
.ya1{bottom:174.642450px;}
.y29{bottom:174.769350px;}
.y1c9{bottom:175.354950px;}
.y7f{bottom:177.434550px;}
.y53{bottom:178.473150px;}
.ycc{bottom:179.092800px;}
.yfd{bottom:180.220050px;}
.y16e{bottom:180.248700px;}
.yae{bottom:182.029050px;}
.y187{bottom:182.622000px;}
.y148{bottom:182.635200px;}
.y117{bottom:183.361050px;}
.y1f5{bottom:183.952950px;}
.y1a1{bottom:193.450350px;}
.ya0{bottom:194.442450px;}
.y1c8{bottom:195.154950px;}
.y7e{bottom:197.234550px;}
.y52{bottom:198.273150px;}
.ycb{bottom:198.892800px;}
.yfc{bottom:200.019900px;}
.y16d{bottom:200.048700px;}
.yad{bottom:201.829050px;}
.y1f4{bottom:201.952950px;}
.y186{bottom:202.422000px;}
.y147{bottom:204.328050px;}
.y116{bottom:208.148400px;}
.y1a0{bottom:213.250350px;}
.y9f{bottom:214.242450px;}
.y28{bottom:214.369500px;}
.y1c7{bottom:214.954950px;}
.y7d{bottom:217.034550px;}
.y51{bottom:218.073000px;}
.yca{bottom:218.692800px;}
.y16c{bottom:219.848700px;}
.y1f3{bottom:219.952950px;}
.yac{bottom:221.629050px;}
.y185{bottom:222.221850px;}
.y146{bottom:226.020900px;}
.y127{bottom:227.516400px;}
.y115{bottom:232.935900px;}
.y19f{bottom:233.050350px;}
.y9e{bottom:234.042450px;}
.y27{bottom:234.169500px;}
.yfb{bottom:234.701850px;}
.y1c6{bottom:234.754950px;}
.y7c{bottom:236.834550px;}
.y50{bottom:237.873000px;}
.y1f2{bottom:237.952950px;}
.yc9{bottom:238.492800px;}
.y16b{bottom:239.648700px;}
.yab{bottom:241.429050px;}
.y184{bottom:242.022000px;}
.y19e{bottom:252.850350px;}
.y9d{bottom:253.842450px;}
.y145{bottom:253.875300px;}
.y26{bottom:253.969500px;}
.y1c5{bottom:254.554950px;}
.y1f1{bottom:255.952950px;}
.y7b{bottom:256.634550px;}
.y4f{bottom:257.673000px;}
.yc8{bottom:258.292800px;}
.yd8{bottom:259.228200px;}
.y16a{bottom:259.448700px;}
.yaa{bottom:261.229050px;}
.y183{bottom:261.822000px;}
.y114{bottom:262.337400px;}
.yfa{bottom:271.183800px;}
.y19d{bottom:272.650200px;}
.y9c{bottom:273.642450px;}
.y25{bottom:273.769350px;}
.y1f0{bottom:273.952950px;}
.y1c4{bottom:274.354950px;}
.y4e{bottom:277.473150px;}
.yc7{bottom:278.092800px;}
.yd7{bottom:279.028200px;}
.y169{bottom:279.248700px;}
.ya9{bottom:281.029050px;}
.y182{bottom:281.622000px;}
.y159{bottom:282.210900px;}
.y144{bottom:290.468250px;}
.y7a{bottom:291.316500px;}
.y1ef{bottom:291.952950px;}
.y19c{bottom:292.450350px;}
.y9b{bottom:293.442450px;}
.y24{bottom:293.569500px;}
.y1c3{bottom:294.154950px;}
.y4d{bottom:297.273000px;}
.yc6{bottom:297.892800px;}
.yd6{bottom:298.828200px;}
.y113{bottom:298.930350px;}
.y168{bottom:299.048700px;}
.ya8{bottom:300.829050px;}
.y181{bottom:301.422000px;}
.y158{bottom:302.010900px;}
.yf9{bottom:309.791550px;}
.y1ee{bottom:309.952950px;}
.y143{bottom:310.268250px;}
.y19b{bottom:312.250350px;}
.y9a{bottom:313.242450px;}
.y23{bottom:313.369350px;}
.y1c2{bottom:313.954950px;}
.y4c{bottom:317.073000px;}
.yc5{bottom:317.692800px;}
.yd5{bottom:318.628350px;}
.y112{bottom:318.730350px;}
.y167{bottom:318.848700px;}
.ya7{bottom:320.629050px;}
.y180{bottom:321.222000px;}
.y157{bottom:321.810900px;}
.y1ed{bottom:327.952950px;}
.y142{bottom:330.068250px;}
.y19a{bottom:332.050350px;}
.y99{bottom:333.042450px;}
.y22{bottom:333.169350px;}
.y1c1{bottom:333.754950px;}
.y4b{bottom:336.873000px;}
.yc4{bottom:337.492800px;}
.y79{bottom:338.428200px;}
.y166{bottom:338.648700px;}
.ya6{bottom:340.429050px;}
.y17f{bottom:341.022000px;}
.y1ec{bottom:345.952950px;}
.y199{bottom:351.850350px;}
.y98{bottom:352.842450px;}
.y21{bottom:352.969500px;}
.y1c0{bottom:353.554950px;}
.y156{bottom:356.492850px;}
.y4a{bottom:356.673000px;}
.yc3{bottom:357.292800px;}
.y78{bottom:358.228200px;}
.y165{bottom:358.448700px;}
.y111{bottom:359.790300px;}
.y17e{bottom:360.822000px;}
.yf8{bottom:361.155450px;}
.y1eb{bottom:363.952950px;}
.y141{bottom:371.128050px;}
.y198{bottom:371.650350px;}
.y20{bottom:372.769350px;}
.y1bf{bottom:373.354950px;}
.y49{bottom:376.473150px;}
.yc2{bottom:377.092800px;}
.y77{bottom:378.028200px;}
.y164{bottom:378.248700px;}
.y110{bottom:379.590300px;}
.y17d{bottom:380.622000px;}
.yf7{bottom:380.955450px;}
.ya5{bottom:381.488850px;}
.y1ea{bottom:381.952950px;}
.y97{bottom:385.398300px;}
.y140{bottom:390.928050px;}
.y197{bottom:391.450350px;}
.y1be{bottom:393.154950px;}
.y48{bottom:396.273000px;}
.y76{bottom:397.828200px;}
.y163{bottom:398.048700px;}
.y1e9{bottom:399.952950px;}
.y17c{bottom:400.422000px;}
.yf6{bottom:400.755450px;}
.y155{bottom:403.604550px;}
.y196{bottom:411.250350px;}
.yc1{bottom:411.774750px;}
.y10f{bottom:412.146150px;}
.y1f{bottom:412.369350px;}
.y1bd{bottom:412.954950px;}
.y47{bottom:416.073000px;}
.y75{bottom:417.628350px;}
.y162{bottom:417.848700px;}
.y1e8{bottom:417.952950px;}
.y17b{bottom:420.222000px;}
.yf5{bottom:420.555450px;}
.y154{bottom:423.404550px;}
.y96{bottom:424.006200px;}
.y13f{bottom:425.610000px;}
.y10e{bottom:430.146150px;}
.y195{bottom:431.050350px;}
.y1bc{bottom:432.754950px;}
.y46{bottom:435.873000px;}
.y1e7{bottom:435.952950px;}
.y74{bottom:437.428200px;}
.y161{bottom:437.648700px;}
.y17a{bottom:440.022000px;}
.y153{bottom:443.204550px;}
.y95{bottom:443.806200px;}
.y10d{bottom:448.146150px;}
.yc0{bottom:450.382650px;}
.y194{bottom:450.850350px;}
.y1e{bottom:451.969500px;}
.y1bb{bottom:452.554950px;}
.y1e6{bottom:453.952950px;}
.y45{bottom:455.673000px;}
.y73{bottom:457.228200px;}
.y160{bottom:457.448700px;}
.y179{bottom:459.822000px;}
.yf4{bottom:461.755500px;}
.y152{bottom:463.004550px;}
.y94{bottom:463.606200px;}
.y10c{bottom:466.146150px;}
.y193{bottom:470.650350px;}
.y1d{bottom:471.769350px;}
.y1e5{bottom:471.952950px;}
.y1ba{bottom:472.354950px;}
.y13e{bottom:472.721700px;}
.y44{bottom:475.473150px;}
.y72{bottom:477.028200px;}
.yf3{bottom:477.955500px;}
.y178{bottom:479.622000px;}
.y151{bottom:482.804550px;}
.y93{bottom:483.406200px;}
.y1e4{bottom:489.952950px;}
.y192{bottom:490.450350px;}
.y13d{bottom:490.721700px;}
.y1c{bottom:491.569500px;}
.y1b9{bottom:492.154950px;}
.yf2{bottom:494.155500px;}
.y15f{bottom:494.256600px;}
.y43{bottom:495.273000px;}
.y71{bottom:496.828200px;}
.y10b{bottom:496.902000px;}
.y177{bottom:499.422000px;}
.ybf{bottom:501.746400px;}
.y150{bottom:502.604550px;}
.y92{bottom:503.206200px;}
.y1e3{bottom:507.952950px;}
.y13c{bottom:508.721700px;}
.y191{bottom:510.250350px;}
.y1b{bottom:511.369350px;}
.y1b8{bottom:511.954950px;}
.y42{bottom:515.073000px;}
.yf1{bottom:515.848500px;}
.y70{bottom:516.628350px;}
.y10a{bottom:516.702000px;}
.y176{bottom:519.222000px;}
.ybe{bottom:521.546400px;}
.y91{bottom:523.006200px;}
.y1e2{bottom:525.952950px;}
.y13b{bottom:526.721700px;}
.y190{bottom:530.050350px;}
.y1a{bottom:531.169350px;}
.y1b7{bottom:531.754950px;}
.yf0{bottom:532.048500px;}
.y6f{bottom:536.428200px;}
.y109{bottom:536.502000px;}
.y175{bottom:539.022000px;}
.ybd{bottom:541.346400px;}
.y90{bottom:542.806200px;}
.y14f{bottom:543.664500px;}
.y1e1{bottom:543.952950px;}
.y13a{bottom:544.721700px;}
.y15e{bottom:545.620350px;}
.y41{bottom:549.754950px;}
.y18f{bottom:549.850350px;}
.y19{bottom:550.969500px;}
.y1b6{bottom:551.554950px;}
.yef{bottom:553.741350px;}
.y6e{bottom:556.228200px;}
.y108{bottom:556.302000px;}
.y174{bottom:558.822000px;}
.y14e{bottom:559.864500px;}
.ybc{bottom:561.146400px;}
.y1e0{bottom:561.952950px;}
.y8f{bottom:562.606200px;}
.y139{bottom:562.721700px;}
.y126{bottom:564.278700px;}
.y15d{bottom:565.420350px;}
.y18e{bottom:569.650350px;}
.yee{bottom:569.941350px;}
.y18{bottom:570.769350px;}
.yd4{bottom:571.110150px;}
.y1b5{bottom:571.354950px;}
.y6d{bottom:576.028200px;}
.y14d{bottom:576.064500px;}
.y107{bottom:576.102000px;}
.y173{bottom:578.622000px;}
.y1df{bottom:579.952950px;}
.ybb{bottom:580.946400px;}
.y8e{bottom:582.406200px;}
.y125{bottom:584.078700px;}
.y15c{bottom:585.220350px;}
.yed{bottom:586.141350px;}
.y40{bottom:588.362850px;}
.y18d{bottom:589.450350px;}
.y17{bottom:590.569500px;}
.y1b4{bottom:591.154950px;}
.y14c{bottom:592.264500px;}
.y138{bottom:593.477700px;}
.y6c{bottom:595.828200px;}
.y1de{bottom:597.952950px;}
.y172{bottom:598.422000px;}
.yba{bottom:600.746400px;}
.y8d{bottom:602.206200px;}
.y124{bottom:603.878700px;}
.yec{bottom:607.834350px;}
.y14b{bottom:608.464350px;}
.y106{bottom:608.658000px;}
.y18c{bottom:609.250350px;}
.y16{bottom:610.369350px;}
.y1b3{bottom:610.954950px;}
.y137{bottom:613.277700px;}
.y6b{bottom:615.628350px;}
.y1dd{bottom:615.952950px;}
.yd3{bottom:618.222000px;}
.y8c{bottom:622.006200px;}
.y123{bottom:623.678700px;}
.yeb{bottom:624.034350px;}
.y15b{bottom:626.280150px;}
.y105{bottom:626.658000px;}
.yb9{bottom:629.050350px;}
.y15{bottom:630.169350px;}
.y1b2{bottom:630.754950px;}
.y136{bottom:633.077700px;}
.y1dc{bottom:633.952950px;}
.y6a{bottom:635.428200px;}
.yd2{bottom:638.022000px;}
.y3f{bottom:639.726600px;}
.y15a{bottom:642.480150px;}
.y104{bottom:644.658000px;}
.y18b{bottom:646.058100px;}
.yb8{bottom:648.850350px;}
.y1b1{bottom:650.554950px;}
.y1db{bottom:651.952950px;}
.y135{bottom:652.877700px;}
.yea{bottom:654.465900px;}
.y8b{bottom:654.562200px;}
.y69{bottom:655.228200px;}
.yd1{bottom:657.822000px;}
.y122{bottom:658.360500px;}
.y3e{bottom:659.526600px;}
.yb7{bottom:668.650350px;}
.y1da{bottom:669.952950px;}
.y1b0{bottom:670.354950px;}
.y14{bottom:671.229300px;}
.y134{bottom:672.677700px;}
.ye9{bottom:674.265900px;}
.y68{bottom:675.028350px;}
.y103{bottom:675.413850px;}
.yd0{bottom:677.622000px;}
.y3d{bottom:679.326600px;}
.y13{bottom:685.629300px;}
.y1d9{bottom:687.952950px;}
.yb6{bottom:688.450350px;}
.y1af{bottom:690.154950px;}
.y67{bottom:694.828200px;}
.y102{bottom:695.213850px;}
.y8a{bottom:697.422000px;}
.y3c{bottom:699.126600px;}
.y12{bottom:700.029300px;}
.y121{bottom:705.472350px;}
.y1d8{bottom:705.952950px;}
.yb5{bottom:708.250350px;}
.y1ae{bottom:709.954950px;}
.y133{bottom:713.877750px;}
.y66{bottom:714.628200px;}
.y101{bottom:715.013850px;}
.ye8{bottom:715.325850px;}
.y89{bottom:717.222000px;}
.y3b{bottom:718.926600px;}
.y120{bottom:723.472350px;}
.y1d7{bottom:723.952950px;}
.y11{bottom:724.733250px;}
.yb4{bottom:728.050350px;}
.y1ad{bottom:729.754950px;}
.y65{bottom:734.428200px;}
.ye7{bottom:735.125850px;}
.y132{bottom:735.570600px;}
.y88{bottom:737.022000px;}
.y3a{bottom:738.726600px;}
.y10{bottom:739.133250px;}
.y1d6{bottom:741.952950px;}
.y100{bottom:747.569850px;}
.yb3{bottom:747.850350px;}
.y1ac{bottom:749.554950px;}
.yf{bottom:753.533250px;}
.y64{bottom:754.228200px;}
.ye6{bottom:754.925700px;}
.y87{bottom:756.822000px;}
.y131{bottom:757.263450px;}
.y39{bottom:758.526600px;}
.y1d5{bottom:759.952950px;}
.yff{bottom:765.569850px;}
.yb2{bottom:767.650350px;}
.y1ab{bottom:769.354950px;}
.y63{bottom:774.028350px;}
.ye5{bottom:774.725700px;}
.y86{bottom:776.622000px;}
.y1d4{bottom:777.952950px;}
.y38{bottom:778.326600px;}
.yfe{bottom:783.569850px;}
.y130{bottom:785.117850px;}
.y1aa{bottom:789.154950px;}
.ye{bottom:790.993050px;}
.y11f{bottom:793.828350px;}
.ye4{bottom:794.525700px;}
.y1d3{bottom:795.952950px;}
.y85{bottom:796.422000px;}
.y37{bottom:798.126600px;}
.yb1{bottom:804.458100px;}
.y62{bottom:808.710150px;}
.y1a9{bottom:808.954950px;}
.y11e{bottom:813.628200px;}
.ye3{bottom:814.325850px;}
.y84{bottom:816.221850px;}
.y36{bottom:817.926600px;}
.y12f{bottom:821.710950px;}
.yd{bottom:823.393050px;}
.y1a8{bottom:828.754950px;}
.y11d{bottom:833.428200px;}
.ye2{bottom:834.125850px;}
.y1d2{bottom:835.212750px;}
.y83{bottom:836.022000px;}
.y35{bottom:837.726600px;}
.y12e{bottom:841.510800px;}
.y1a7{bottom:848.554950px;}
.y1d1{bottom:851.412750px;}
.y11c{bottom:853.228200px;}
.y61{bottom:855.822000px;}
.y34{bottom:857.526600px;}
.y12d{bottom:861.310800px;}
.y1d0{bottom:867.612750px;}
.y1a6{bottom:868.354950px;}
.yc{bottom:872.800950px;}
.y11b{bottom:873.028350px;}
.ye1{bottom:875.325900px;}
.y60{bottom:875.622000px;}
.y33{bottom:877.326600px;}
.y1cf{bottom:883.812750px;}
.y11a{bottom:892.828350px;}
.y5f{bottom:895.422000px;}
.ye0{bottom:897.018750px;}
.y32{bottom:897.126600px;}
.y12c{bottom:902.370600px;}
.y1a5{bottom:905.162850px;}
.y1ce{bottom:908.516700px;}
.y5e{bottom:915.221850px;}
.y31{bottom:916.926600px;}
.ydf{bottom:918.711750px;}
.y12b{bottom:922.170750px;}
.y1cd{bottom:924.716700px;}
.yb{bottom:926.800950px;}
.y119{bottom:927.510150px;}
.y5d{bottom:935.022000px;}
.y30{bottom:936.726600px;}
.yde{bottom:940.404600px;}
.y1cc{bottom:940.916700px;}
.y12a{bottom:941.970750px;}
.y5c{bottom:954.822000px;}
.y2f{bottom:956.526600px;}
.y129{bottom:961.770750px;}
.ydd{bottom:962.097450px;}
.y5b{bottom:974.622000px;}
.y2e{bottom:976.326600px;}
.y1cb{bottom:978.376500px;}
.ya{bottom:980.800950px;}
.ydc{bottom:983.790300px;}
.y5a{bottom:994.422000px;}
.y2d{bottom:996.126600px;}
.y128{bottom:996.452700px;}
.y59{bottom:1014.221850px;}
.y1ca{bottom:1021.576500px;}
.y2c{bottom:1032.934500px;}
.y58{bottom:1034.022000px;}
.y8{bottom:1055.425500px;}
.y3{bottom:1082.430750px;}
.y2a{bottom:1086.056250px;}
.y57{bottom:1086.087450px;}
.y2{bottom:1097.430750px;}
.h10{height:33.328125px;}
.ha{height:40.128000px;}
.hb{height:41.184000px;}
.h3{height:41.882812px;}
.h11{height:45.144000px;}
.h9{height:46.332000px;}
.h16{height:47.460938px;}
.h2{height:49.500000px;}
.he{height:51.480000px;}
.hf{height:51.504000px;}
.hc{height:52.353516px;}
.h6{height:52.734375px;}
.h5{height:54.000000px;}
.h4{height:56.628000px;}
.h14{height:57.618000px;}
.h13{height:61.776000px;}
.hd{height:62.856000px;}
.h8{height:74.844000px;}
.h12{height:77.544000px;}
.h15{height:99.792000px;}
.h7{height:124.740000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w0{width:829.134000px;}
.w1{width:829.500000px;}
.x0{left:0.000000px;}
.x4{left:93.543300px;}
.x18{left:101.230800px;}
.x7{left:114.803100px;}
.x10{left:116.595900px;}
.x5{left:121.730850px;}
.x9{left:123.053100px;}
.xa{left:136.063050px;}
.x8{left:156.961200px;}
.x11{left:160.780800px;}
.x20{left:189.975600px;}
.x1f{left:198.016050px;}
.x1e{left:216.388350px;}
.xd{left:249.749700px;}
.x1c{left:253.763250px;}
.xe{left:258.168450px;}
.xc{left:259.345500px;}
.x1b{left:267.802050px;}
.x1a{left:273.188850px;}
.x14{left:278.483250px;}
.xf{left:282.734100px;}
.x15{left:286.933500px;}
.x13{left:288.541800px;}
.x16{left:297.855600px;}
.x1d{left:347.404350px;}
.xb{left:388.950900px;}
.x6{left:437.459700px;}
.x3{left:444.778050px;}
.x12{left:450.533550px;}
.x2{left:500.102250px;}
.x19{left:532.618050px;}
.x17{left:569.887500px;}
.x1{left:712.919100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.497600pt;}
.v1{vertical-align:19.536533pt;}
.v2{vertical-align:28.800000pt;}
.ls5{letter-spacing:-1.333333pt;}
.ls2{letter-spacing:-1.066667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.554667pt;}
.ls4{letter-spacing:0.632000pt;}
.ls0{letter-spacing:0.821333pt;}
.ls3{letter-spacing:0.896000pt;}
.wsc1{word-spacing:-33.088000pt;}
.ws78{word-spacing:-24.618667pt;}
.wsb0{word-spacing:-16.896000pt;}
.ws18{word-spacing:-16.256000pt;}
.ws2{word-spacing:-15.488000pt;}
.ws19{word-spacing:-14.666667pt;}
.wsc8{word-spacing:-13.344000pt;}
.ws0{word-spacing:-10.794667pt;}
.ws77{word-spacing:-10.666667pt;}
.ws76{word-spacing:-8.550667pt;}
.wsba{word-spacing:-7.568000pt;}
.wsc0{word-spacing:-5.573333pt;}
.wsb6{word-spacing:-3.520000pt;}
.wsaf{word-spacing:-2.816000pt;}
.wsbf{word-spacing:-2.757333pt;}
.ws29{word-spacing:-2.752000pt;}
.ws69{word-spacing:-2.698667pt;}
.ws9b{word-spacing:-2.640000pt;}
.wscf{word-spacing:-2.613333pt;}
.ws20{word-spacing:-2.581333pt;}
.ws4d{word-spacing:-2.522667pt;}
.wsaa{word-spacing:-2.464000pt;}
.ws28{word-spacing:-2.405333pt;}
.ws86{word-spacing:-2.400000pt;}
.ws12{word-spacing:-2.288000pt;}
.wsa6{word-spacing:-2.229333pt;}
.ws39{word-spacing:-2.170667pt;}
.wsdb{word-spacing:-2.133333pt;}
.ws97{word-spacing:-2.112000pt;}
.wsd0{word-spacing:-2.080000pt;}
.ws5b{word-spacing:-2.053333pt;}
.ws14{word-spacing:-1.994667pt;}
.wsdf{word-spacing:-1.973333pt;}
.ws2a{word-spacing:-1.936000pt;}
.ws53{word-spacing:-1.877333pt;}
.wsdd{word-spacing:-1.866667pt;}
.wsa{word-spacing:-1.818667pt;}
.ws9a{word-spacing:-1.760000pt;}
.ws4e{word-spacing:-1.701333pt;}
.ws67{word-spacing:-1.642667pt;}
.ws85{word-spacing:-1.632000pt;}
.ws6c{word-spacing:-1.584000pt;}
.ws17{word-spacing:-1.525333pt;}
.ws4f{word-spacing:-1.466667pt;}
.wsd6{word-spacing:-1.440000pt;}
.ws8c{word-spacing:-1.408000pt;}
.ws43{word-spacing:-1.349333pt;}
.wsa3{word-spacing:-1.296000pt;}
.ws15{word-spacing:-1.290667pt;}
.wsa1{word-spacing:-1.248000pt;}
.ws40{word-spacing:-1.232000pt;}
.ws5f{word-spacing:-1.173333pt;}
.wscb{word-spacing:-1.120000pt;}
.ws13{word-spacing:-1.114667pt;}
.ws87{word-spacing:-1.104000pt;}
.wsde{word-spacing:-1.066667pt;}
.ws7f{word-spacing:-1.056000pt;}
.wsda{word-spacing:-1.013333pt;}
.ws3a{word-spacing:-0.997333pt;}
.wsd7{word-spacing:-0.960000pt;}
.ws41{word-spacing:-0.938667pt;}
.ws90{word-spacing:-0.906667pt;}
.wsa4{word-spacing:-0.896000pt;}
.ws8{word-spacing:-0.880000pt;}
.ws6{word-spacing:-0.821333pt;}
.wscd{word-spacing:-0.800000pt;}
.ws48{word-spacing:-0.762667pt;}
.ws55{word-spacing:-0.704000pt;}
.ws6e{word-spacing:-0.645333pt;}
.ws56{word-spacing:-0.586667pt;}
.wsd2{word-spacing:-0.533333pt;}
.ws2c{word-spacing:-0.528000pt;}
.ws16{word-spacing:-0.469333pt;}
.wsab{word-spacing:-0.448000pt;}
.wsf{word-spacing:-0.410667pt;}
.ws22{word-spacing:-0.352000pt;}
.wsa7{word-spacing:-0.293333pt;}
.ws7b{word-spacing:-0.234667pt;}
.wsce{word-spacing:-0.213333pt;}
.wsb{word-spacing:-0.176000pt;}
.wsb4{word-spacing:-0.117333pt;}
.wscc{word-spacing:-0.106667pt;}
.ws71{word-spacing:-0.058667pt;}
.wsd4{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws36{word-spacing:0.058667pt;}
.ws2b{word-spacing:0.117333pt;}
.ws74{word-spacing:0.176000pt;}
.ws23{word-spacing:0.234667pt;}
.wse0{word-spacing:0.266667pt;}
.ws5e{word-spacing:0.293333pt;}
.ws9d{word-spacing:0.320000pt;}
.ws44{word-spacing:0.352000pt;}
.ws9e{word-spacing:0.373333pt;}
.ws3f{word-spacing:0.410667pt;}
.wsa0{word-spacing:0.432000pt;}
.wse{word-spacing:0.469333pt;}
.ws94{word-spacing:0.528000pt;}
.wsd9{word-spacing:0.533333pt;}
.ws7d{word-spacing:0.586667pt;}
.wsd{word-spacing:0.645333pt;}
.ws80{word-spacing:0.704000pt;}
.ws21{word-spacing:0.762667pt;}
.ws63{word-spacing:0.821333pt;}
.ws9c{word-spacing:0.853333pt;}
.ws27{word-spacing:0.880000pt;}
.wse1{word-spacing:0.906667pt;}
.ws3e{word-spacing:0.938667pt;}
.ws75{word-spacing:0.997333pt;}
.ws46{word-spacing:1.056000pt;}
.ws5{word-spacing:1.066667pt;}
.ws11{word-spacing:1.114667pt;}
.ws96{word-spacing:1.120000pt;}
.ws49{word-spacing:1.173333pt;}
.ws8d{word-spacing:1.226667pt;}
.ws68{word-spacing:1.232000pt;}
.wsdc{word-spacing:1.280000pt;}
.ws37{word-spacing:1.290667pt;}
.ws9f{word-spacing:1.333333pt;}
.ws73{word-spacing:1.349333pt;}
.ws1d{word-spacing:1.466667pt;}
.ws45{word-spacing:1.525333pt;}
.wsb5{word-spacing:1.584000pt;}
.ws52{word-spacing:1.642667pt;}
.ws79{word-spacing:1.701333pt;}
.ws4{word-spacing:1.706667pt;}
.ws59{word-spacing:1.760000pt;}
.ws91{word-spacing:1.813333pt;}
.ws38{word-spacing:1.818667pt;}
.ws1b{word-spacing:1.877333pt;}
.ws7a{word-spacing:1.936000pt;}
.ws57{word-spacing:1.994667pt;}
.ws81{word-spacing:2.053333pt;}
.ws7c{word-spacing:2.112000pt;}
.ws7{word-spacing:2.170667pt;}
.ws8f{word-spacing:2.229333pt;}
.wsa5{word-spacing:2.288000pt;}
.wsc{word-spacing:2.346667pt;}
.ws25{word-spacing:2.405333pt;}
.wsd8{word-spacing:2.453333pt;}
.ws95{word-spacing:2.464000pt;}
.ws1f{word-spacing:2.581333pt;}
.ws72{word-spacing:2.640000pt;}
.ws26{word-spacing:2.698667pt;}
.wsa9{word-spacing:2.757333pt;}
.ws6b{word-spacing:2.816000pt;}
.ws2f{word-spacing:2.874667pt;}
.ws33{word-spacing:2.933333pt;}
.ws60{word-spacing:2.992000pt;}
.ws70{word-spacing:3.050667pt;}
.ws24{word-spacing:3.109333pt;}
.wsd1{word-spacing:3.146667pt;}
.ws50{word-spacing:3.168000pt;}
.wsa2{word-spacing:3.216000pt;}
.ws35{word-spacing:3.226667pt;}
.wsac{word-spacing:3.285333pt;}
.ws1a{word-spacing:3.344000pt;}
.ws51{word-spacing:3.402667pt;}
.ws47{word-spacing:3.461333pt;}
.ws32{word-spacing:3.520000pt;}
.ws3d{word-spacing:3.578667pt;}
.ws5a{word-spacing:3.637333pt;}
.ws42{word-spacing:3.696000pt;}
.ws3c{word-spacing:3.754667pt;}
.ws3b{word-spacing:3.813333pt;}
.ws6d{word-spacing:3.872000pt;}
.ws6a{word-spacing:3.930667pt;}
.wsca{word-spacing:3.946667pt;}
.ws1e{word-spacing:3.989333pt;}
.ws5d{word-spacing:4.048000pt;}
.wsd3{word-spacing:4.053333pt;}
.wsbd{word-spacing:4.106667pt;}
.wsc3{word-spacing:4.165333pt;}
.ws2d{word-spacing:4.282667pt;}
.ws54{word-spacing:4.341333pt;}
.ws7e{word-spacing:4.400000pt;}
.wsb3{word-spacing:4.458667pt;}
.ws8e{word-spacing:4.480000pt;}
.ws62{word-spacing:4.576000pt;}
.ws61{word-spacing:4.634667pt;}
.wsd5{word-spacing:4.640000pt;}
.ws1c{word-spacing:4.693333pt;}
.ws31{word-spacing:4.810667pt;}
.ws64{word-spacing:4.928000pt;}
.ws92{word-spacing:5.040000pt;}
.ws10{word-spacing:5.045333pt;}
.ws5c{word-spacing:5.162667pt;}
.ws4a{word-spacing:5.280000pt;}
.ws4c{word-spacing:5.397333pt;}
.ws2e{word-spacing:5.456000pt;}
.wsc5{word-spacing:5.514667pt;}
.wsc6{word-spacing:5.632000pt;}
.wsb7{word-spacing:5.690667pt;}
.ws66{word-spacing:5.749333pt;}
.wsc4{word-spacing:5.866667pt;}
.wsc9{word-spacing:5.920000pt;}
.wsad{word-spacing:5.925333pt;}
.ws9{word-spacing:5.984000pt;}
.ws6f{word-spacing:6.042667pt;}
.ws83{word-spacing:6.048000pt;}
.ws4b{word-spacing:6.218667pt;}
.ws30{word-spacing:6.336000pt;}
.wsa8{word-spacing:6.394667pt;}
.ws84{word-spacing:6.432000pt;}
.wsb9{word-spacing:6.570667pt;}
.wsc2{word-spacing:6.864000pt;}
.ws65{word-spacing:6.981333pt;}
.wsbb{word-spacing:7.157333pt;}
.wsb8{word-spacing:7.216000pt;}
.wsae{word-spacing:7.333333pt;}
.wsbe{word-spacing:7.450667pt;}
.ws34{word-spacing:7.626667pt;}
.wsbc{word-spacing:8.037333pt;}
.ws93{word-spacing:8.688000pt;}
.ws58{word-spacing:8.800000pt;}
.wsb2{word-spacing:10.090667pt;}
.wsb1{word-spacing:17.658667pt;}
.ws8a{word-spacing:292.899733pt;}
.ws8b{word-spacing:336.291733pt;}
.ws98{word-spacing:569.865067pt;}
.ws99{word-spacing:593.865067pt;}
.ws82{word-spacing:704.182933pt;}
.ws89{word-spacing:724.025067pt;}
.ws88{word-spacing:772.025067pt;}
.wsc7{word-spacing:1142.147200pt;}
.ws1{word-spacing:1797.984533pt;}
._d{margin-left:-44.000000pt;}
._27{margin-left:-14.250667pt;}
._28{margin-left:-11.977067pt;}
._b{margin-left:-10.850133pt;}
._5{margin-left:-9.225600pt;}
._6{margin-left:-8.264533pt;}
._26{margin-left:-7.372267pt;}
._9{margin-left:-6.467733pt;}
._3{margin-left:-5.360000pt;}
._a{margin-left:-4.377067pt;}
._7{margin-left:-3.478933pt;}
._0{margin-left:-2.342400pt;}
._2{margin-left:-0.912533pt;}
._1{width:1.053867pt;}
._4{width:2.431467pt;}
._8{width:4.048533pt;}
._c{width:6.017067pt;}
._25{width:7.540800pt;}
._f{width:32.000000pt;}
._e{width:46.257600pt;}
._24{width:60.923733pt;}
._1e{width:105.030400pt;}
._12{width:121.412267pt;}
._13{width:126.020267pt;}
._11{width:145.412267pt;}
._1f{width:199.722667pt;}
._1a{width:203.917333pt;}
._19{width:206.262400pt;}
._16{width:226.250667pt;}
._20{width:245.400000pt;}
._15{width:259.565333pt;}
._22{width:286.368000pt;}
._17{width:335.498667pt;}
._14{width:351.138667pt;}
._1b{width:411.733333pt;}
._10{width:446.584533pt;}
._18{width:521.643200pt;}
._23{width:531.232533pt;}
._21{width:555.232533pt;}
._1c{width:581.837333pt;}
._1d{width:616.734400pt;}
.fs7{font-size:34.202667pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.fs8{font-size:128.000000pt;}
.fs4{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:19.267867pt;}
.y6{bottom:60.177733pt;}
.y1{bottom:60.711600pt;}
.y2b{bottom:61.836000pt;}
.y5{bottom:72.977733pt;}
.y4{bottom:85.777733pt;}
.ydb{bottom:102.047467pt;}
.ya4{bottom:102.437733pt;}
.y82{bottom:104.919600pt;}
.y56{bottom:105.842667pt;}
.ycf{bottom:106.393600pt;}
.y7{bottom:106.532133pt;}
.y171{bottom:107.421067pt;}
.y14a{bottom:108.120000pt;}
.y18a{bottom:109.530533pt;}
.yda{bottom:114.847467pt;}
.y1a4{bottom:119.155867pt;}
.ya3{bottom:120.037733pt;}
.y81{bottom:122.519600pt;}
.y55{bottom:123.442667pt;}
.yce{bottom:123.993600pt;}
.y170{bottom:125.021067pt;}
.y149{bottom:125.720000pt;}
.yb0{bottom:126.603600pt;}
.y189{bottom:127.130667pt;}
.yd9{bottom:129.247600pt;}
.y1a3{bottom:136.755867pt;}
.ya2{bottom:137.637733pt;}
.y80{bottom:140.119600pt;}
.y54{bottom:141.042667pt;}
.ycd{bottom:141.593600pt;}
.y16f{bottom:142.621067pt;}
.yaf{bottom:144.203600pt;}
.y188{bottom:144.730667pt;}
.y118{bottom:148.587600pt;}
.y1a2{bottom:154.355733pt;}
.ya1{bottom:155.237733pt;}
.y29{bottom:155.350533pt;}
.y1c9{bottom:155.871067pt;}
.y7f{bottom:157.719600pt;}
.y53{bottom:158.642800pt;}
.ycc{bottom:159.193600pt;}
.yfd{bottom:160.195600pt;}
.y16e{bottom:160.221067pt;}
.yae{bottom:161.803600pt;}
.y187{bottom:162.330667pt;}
.y148{bottom:162.342400pt;}
.y117{bottom:162.987600pt;}
.y1f5{bottom:163.513733pt;}
.y1a1{bottom:171.955867pt;}
.ya0{bottom:172.837733pt;}
.y1c8{bottom:173.471067pt;}
.y7e{bottom:175.319600pt;}
.y52{bottom:176.242800pt;}
.ycb{bottom:176.793600pt;}
.yfc{bottom:177.795467pt;}
.y16d{bottom:177.821067pt;}
.yad{bottom:179.403600pt;}
.y1f4{bottom:179.513733pt;}
.y186{bottom:179.930667pt;}
.y147{bottom:181.624933pt;}
.y116{bottom:185.020800pt;}
.y1a0{bottom:189.555867pt;}
.y9f{bottom:190.437733pt;}
.y28{bottom:190.550667pt;}
.y1c7{bottom:191.071067pt;}
.y7d{bottom:192.919600pt;}
.y51{bottom:193.842667pt;}
.yca{bottom:194.393600pt;}
.y16c{bottom:195.421067pt;}
.y1f3{bottom:195.513733pt;}
.yac{bottom:197.003600pt;}
.y185{bottom:197.530533pt;}
.y146{bottom:200.907467pt;}
.y127{bottom:202.236800pt;}
.y115{bottom:207.054133pt;}
.y19f{bottom:207.155867pt;}
.y9e{bottom:208.037733pt;}
.y27{bottom:208.150667pt;}
.yfb{bottom:208.623867pt;}
.y1c6{bottom:208.671067pt;}
.y7c{bottom:210.519600pt;}
.y50{bottom:211.442667pt;}
.y1f2{bottom:211.513733pt;}
.yc9{bottom:211.993600pt;}
.y16b{bottom:213.021067pt;}
.yab{bottom:214.603600pt;}
.y184{bottom:215.130667pt;}
.y19e{bottom:224.755867pt;}
.y9d{bottom:225.637733pt;}
.y145{bottom:225.666933pt;}
.y26{bottom:225.750667pt;}
.y1c5{bottom:226.271067pt;}
.y1f1{bottom:227.513733pt;}
.y7b{bottom:228.119600pt;}
.y4f{bottom:229.042667pt;}
.yc8{bottom:229.593600pt;}
.yd8{bottom:230.425067pt;}
.y16a{bottom:230.621067pt;}
.yaa{bottom:232.203600pt;}
.y183{bottom:232.730667pt;}
.y114{bottom:233.188800pt;}
.yfa{bottom:241.052267pt;}
.y19d{bottom:242.355733pt;}
.y9c{bottom:243.237733pt;}
.y25{bottom:243.350533pt;}
.y1f0{bottom:243.513733pt;}
.y1c4{bottom:243.871067pt;}
.y4e{bottom:246.642800pt;}
.yc7{bottom:247.193600pt;}
.yd7{bottom:248.025067pt;}
.y169{bottom:248.221067pt;}
.ya9{bottom:249.803600pt;}
.y182{bottom:250.330667pt;}
.y159{bottom:250.854133pt;}
.y144{bottom:258.194000pt;}
.y7a{bottom:258.948000pt;}
.y1ef{bottom:259.513733pt;}
.y19c{bottom:259.955867pt;}
.y9b{bottom:260.837733pt;}
.y24{bottom:260.950667pt;}
.y1c3{bottom:261.471067pt;}
.y4d{bottom:264.242667pt;}
.yc6{bottom:264.793600pt;}
.yd6{bottom:265.625067pt;}
.y113{bottom:265.715867pt;}
.y168{bottom:265.821067pt;}
.ya8{bottom:267.403600pt;}
.y181{bottom:267.930667pt;}
.y158{bottom:268.454133pt;}
.yf9{bottom:275.370267pt;}
.y1ee{bottom:275.513733pt;}
.y143{bottom:275.794000pt;}
.y19b{bottom:277.555867pt;}
.y9a{bottom:278.437733pt;}
.y23{bottom:278.550533pt;}
.y1c2{bottom:279.071067pt;}
.y4c{bottom:281.842667pt;}
.yc5{bottom:282.393600pt;}
.yd5{bottom:283.225200pt;}
.y112{bottom:283.315867pt;}
.y167{bottom:283.421067pt;}
.ya7{bottom:285.003600pt;}
.y180{bottom:285.530667pt;}
.y157{bottom:286.054133pt;}
.y1ed{bottom:291.513733pt;}
.y142{bottom:293.394000pt;}
.y19a{bottom:295.155867pt;}
.y99{bottom:296.037733pt;}
.y22{bottom:296.150533pt;}
.y1c1{bottom:296.671067pt;}
.y4b{bottom:299.442667pt;}
.yc4{bottom:299.993600pt;}
.y79{bottom:300.825067pt;}
.y166{bottom:301.021067pt;}
.ya6{bottom:302.603600pt;}
.y17f{bottom:303.130667pt;}
.y1ec{bottom:307.513733pt;}
.y199{bottom:312.755867pt;}
.y98{bottom:313.637733pt;}
.y21{bottom:313.750667pt;}
.y1c0{bottom:314.271067pt;}
.y156{bottom:316.882533pt;}
.y4a{bottom:317.042667pt;}
.yc3{bottom:317.593600pt;}
.y78{bottom:318.425067pt;}
.y165{bottom:318.621067pt;}
.y111{bottom:319.813600pt;}
.y17e{bottom:320.730667pt;}
.yf8{bottom:321.027067pt;}
.y1eb{bottom:323.513733pt;}
.y141{bottom:329.891600pt;}
.y198{bottom:330.355867pt;}
.y20{bottom:331.350533pt;}
.y1bf{bottom:331.871067pt;}
.y49{bottom:334.642800pt;}
.yc2{bottom:335.193600pt;}
.y77{bottom:336.025067pt;}
.y164{bottom:336.221067pt;}
.y110{bottom:337.413600pt;}
.y17d{bottom:338.330667pt;}
.yf7{bottom:338.627067pt;}
.ya5{bottom:339.101200pt;}
.y1ea{bottom:339.513733pt;}
.y97{bottom:342.576267pt;}
.y140{bottom:347.491600pt;}
.y197{bottom:347.955867pt;}
.y1be{bottom:349.471067pt;}
.y48{bottom:352.242667pt;}
.y76{bottom:353.625067pt;}
.y163{bottom:353.821067pt;}
.y1e9{bottom:355.513733pt;}
.y17c{bottom:355.930667pt;}
.yf6{bottom:356.227067pt;}
.y155{bottom:358.759600pt;}
.y196{bottom:365.555867pt;}
.yc1{bottom:366.022000pt;}
.y10f{bottom:366.352133pt;}
.y1f{bottom:366.550533pt;}
.y1bd{bottom:367.071067pt;}
.y47{bottom:369.842667pt;}
.y75{bottom:371.225200pt;}
.y162{bottom:371.421067pt;}
.y1e8{bottom:371.513733pt;}
.y17b{bottom:373.530667pt;}
.yf5{bottom:373.827067pt;}
.y154{bottom:376.359600pt;}
.y96{bottom:376.894400pt;}
.y13f{bottom:378.320000pt;}
.y10e{bottom:382.352133pt;}
.y195{bottom:383.155867pt;}
.y1bc{bottom:384.671067pt;}
.y46{bottom:387.442667pt;}
.y1e7{bottom:387.513733pt;}
.y74{bottom:388.825067pt;}
.y161{bottom:389.021067pt;}
.y17a{bottom:391.130667pt;}
.y153{bottom:393.959600pt;}
.y95{bottom:394.494400pt;}
.y10d{bottom:398.352133pt;}
.yc0{bottom:400.340133pt;}
.y194{bottom:400.755867pt;}
.y1e{bottom:401.750667pt;}
.y1bb{bottom:402.271067pt;}
.y1e6{bottom:403.513733pt;}
.y45{bottom:405.042667pt;}
.y73{bottom:406.425067pt;}
.y160{bottom:406.621067pt;}
.y179{bottom:408.730667pt;}
.yf4{bottom:410.449333pt;}
.y152{bottom:411.559600pt;}
.y94{bottom:412.094400pt;}
.y10c{bottom:414.352133pt;}
.y193{bottom:418.355867pt;}
.y1d{bottom:419.350533pt;}
.y1e5{bottom:419.513733pt;}
.y1ba{bottom:419.871067pt;}
.y13e{bottom:420.197067pt;}
.y44{bottom:422.642800pt;}
.y72{bottom:424.025067pt;}
.yf3{bottom:424.849333pt;}
.y178{bottom:426.330667pt;}
.y151{bottom:429.159600pt;}
.y93{bottom:429.694400pt;}
.y1e4{bottom:435.513733pt;}
.y192{bottom:435.955867pt;}
.y13d{bottom:436.197067pt;}
.y1c{bottom:436.950667pt;}
.y1b9{bottom:437.471067pt;}
.yf2{bottom:439.249333pt;}
.y15f{bottom:439.339200pt;}
.y43{bottom:440.242667pt;}
.y71{bottom:441.625067pt;}
.y10b{bottom:441.690667pt;}
.y177{bottom:443.930667pt;}
.ybf{bottom:445.996800pt;}
.y150{bottom:446.759600pt;}
.y92{bottom:447.294400pt;}
.y1e3{bottom:451.513733pt;}
.y13c{bottom:452.197067pt;}
.y191{bottom:453.555867pt;}
.y1b{bottom:454.550533pt;}
.y1b8{bottom:455.071067pt;}
.y42{bottom:457.842667pt;}
.yf1{bottom:458.532000pt;}
.y70{bottom:459.225200pt;}
.y10a{bottom:459.290667pt;}
.y176{bottom:461.530667pt;}
.ybe{bottom:463.596800pt;}
.y91{bottom:464.894400pt;}
.y1e2{bottom:467.513733pt;}
.y13b{bottom:468.197067pt;}
.y190{bottom:471.155867pt;}
.y1a{bottom:472.150533pt;}
.y1b7{bottom:472.671067pt;}
.yf0{bottom:472.932000pt;}
.y6f{bottom:476.825067pt;}
.y109{bottom:476.890667pt;}
.y175{bottom:479.130667pt;}
.ybd{bottom:481.196800pt;}
.y90{bottom:482.494400pt;}
.y14f{bottom:483.257333pt;}
.y1e1{bottom:483.513733pt;}
.y13a{bottom:484.197067pt;}
.y15e{bottom:484.995867pt;}
.y41{bottom:488.671067pt;}
.y18f{bottom:488.755867pt;}
.y19{bottom:489.750667pt;}
.y1b6{bottom:490.271067pt;}
.yef{bottom:492.214533pt;}
.y6e{bottom:494.425067pt;}
.y108{bottom:494.490667pt;}
.y174{bottom:496.730667pt;}
.y14e{bottom:497.657333pt;}
.ybc{bottom:498.796800pt;}
.y1e0{bottom:499.513733pt;}
.y8f{bottom:500.094400pt;}
.y139{bottom:500.197067pt;}
.y126{bottom:501.581067pt;}
.y15d{bottom:502.595867pt;}
.y18e{bottom:506.355867pt;}
.yee{bottom:506.614533pt;}
.y18{bottom:507.350533pt;}
.yd4{bottom:507.653467pt;}
.y1b5{bottom:507.871067pt;}
.y6d{bottom:512.025067pt;}
.y14d{bottom:512.057333pt;}
.y107{bottom:512.090667pt;}
.y173{bottom:514.330667pt;}
.y1df{bottom:515.513733pt;}
.ybb{bottom:516.396800pt;}
.y8e{bottom:517.694400pt;}
.y125{bottom:519.181067pt;}
.y15c{bottom:520.195867pt;}
.yed{bottom:521.014533pt;}
.y40{bottom:522.989200pt;}
.y18d{bottom:523.955867pt;}
.y17{bottom:524.950667pt;}
.y1b4{bottom:525.471067pt;}
.y14c{bottom:526.457333pt;}
.y138{bottom:527.535733pt;}
.y6c{bottom:529.625067pt;}
.y1de{bottom:531.513733pt;}
.y172{bottom:531.930667pt;}
.yba{bottom:533.996800pt;}
.y8d{bottom:535.294400pt;}
.y124{bottom:536.781067pt;}
.yec{bottom:540.297200pt;}
.y14b{bottom:540.857200pt;}
.y106{bottom:541.029333pt;}
.y18c{bottom:541.555867pt;}
.y16{bottom:542.550533pt;}
.y1b3{bottom:543.071067pt;}
.y137{bottom:545.135733pt;}
.y6b{bottom:547.225200pt;}
.y1dd{bottom:547.513733pt;}
.yd3{bottom:549.530667pt;}
.y8c{bottom:552.894400pt;}
.y123{bottom:554.381067pt;}
.yeb{bottom:554.697200pt;}
.y15b{bottom:556.693467pt;}
.y105{bottom:557.029333pt;}
.yb9{bottom:559.155867pt;}
.y15{bottom:560.150533pt;}
.y1b2{bottom:560.671067pt;}
.y136{bottom:562.735733pt;}
.y1dc{bottom:563.513733pt;}
.y6a{bottom:564.825067pt;}
.yd2{bottom:567.130667pt;}
.y3f{bottom:568.645867pt;}
.y15a{bottom:571.093467pt;}
.y104{bottom:573.029333pt;}
.y18b{bottom:574.273867pt;}
.yb8{bottom:576.755867pt;}
.y1b1{bottom:578.271067pt;}
.y1db{bottom:579.513733pt;}
.y135{bottom:580.335733pt;}
.yea{bottom:581.747467pt;}
.y8b{bottom:581.833067pt;}
.y69{bottom:582.425067pt;}
.yd1{bottom:584.730667pt;}
.y122{bottom:585.209333pt;}
.y3e{bottom:586.245867pt;}
.yb7{bottom:594.355867pt;}
.y1da{bottom:595.513733pt;}
.y1b0{bottom:595.871067pt;}
.y14{bottom:596.648267pt;}
.y134{bottom:597.935733pt;}
.ye9{bottom:599.347467pt;}
.y68{bottom:600.025200pt;}
.y103{bottom:600.367867pt;}
.yd0{bottom:602.330667pt;}
.y3d{bottom:603.845867pt;}
.y13{bottom:609.448267pt;}
.y1d9{bottom:611.513733pt;}
.yb6{bottom:611.955867pt;}
.y1af{bottom:613.471067pt;}
.y67{bottom:617.625067pt;}
.y102{bottom:617.967867pt;}
.y8a{bottom:619.930667pt;}
.y3c{bottom:621.445867pt;}
.y12{bottom:622.248267pt;}
.y121{bottom:627.086533pt;}
.y1d8{bottom:627.513733pt;}
.yb5{bottom:629.555867pt;}
.y1ae{bottom:631.071067pt;}
.y133{bottom:634.558000pt;}
.y66{bottom:635.225067pt;}
.y101{bottom:635.567867pt;}
.ye8{bottom:635.845200pt;}
.y89{bottom:637.530667pt;}
.y3b{bottom:639.045867pt;}
.y120{bottom:643.086533pt;}
.y1d7{bottom:643.513733pt;}
.y11{bottom:644.207333pt;}
.yb4{bottom:647.155867pt;}
.y1ad{bottom:648.671067pt;}
.y65{bottom:652.825067pt;}
.ye7{bottom:653.445200pt;}
.y132{bottom:653.840533pt;}
.y88{bottom:655.130667pt;}
.y3a{bottom:656.645867pt;}
.y10{bottom:657.007333pt;}
.y1d6{bottom:659.513733pt;}
.y100{bottom:664.506533pt;}
.yb3{bottom:664.755867pt;}
.y1ac{bottom:666.271067pt;}
.yf{bottom:669.807333pt;}
.y64{bottom:670.425067pt;}
.ye6{bottom:671.045067pt;}
.y87{bottom:672.730667pt;}
.y131{bottom:673.123067pt;}
.y39{bottom:674.245867pt;}
.y1d5{bottom:675.513733pt;}
.yff{bottom:680.506533pt;}
.yb2{bottom:682.355867pt;}
.y1ab{bottom:683.871067pt;}
.y63{bottom:688.025200pt;}
.ye5{bottom:688.645067pt;}
.y86{bottom:690.330667pt;}
.y1d4{bottom:691.513733pt;}
.y38{bottom:691.845867pt;}
.yfe{bottom:696.506533pt;}
.y130{bottom:697.882533pt;}
.y1aa{bottom:701.471067pt;}
.ye{bottom:703.104933pt;}
.y11f{bottom:705.625200pt;}
.ye4{bottom:706.245067pt;}
.y1d3{bottom:707.513733pt;}
.y85{bottom:707.930667pt;}
.y37{bottom:709.445867pt;}
.yb1{bottom:715.073867pt;}
.y62{bottom:718.853467pt;}
.y1a9{bottom:719.071067pt;}
.y11e{bottom:723.225067pt;}
.ye3{bottom:723.845200pt;}
.y84{bottom:725.530533pt;}
.y36{bottom:727.045867pt;}
.y12f{bottom:730.409733pt;}
.yd{bottom:731.904933pt;}
.y1a8{bottom:736.671067pt;}
.y11d{bottom:740.825067pt;}
.ye2{bottom:741.445200pt;}
.y1d2{bottom:742.411333pt;}
.y83{bottom:743.130667pt;}
.y35{bottom:744.645867pt;}
.y12e{bottom:748.009600pt;}
.y1a7{bottom:754.271067pt;}
.y1d1{bottom:756.811333pt;}
.y11c{bottom:758.425067pt;}
.y61{bottom:760.730667pt;}
.y34{bottom:762.245867pt;}
.y12d{bottom:765.609600pt;}
.y1d0{bottom:771.211333pt;}
.y1a6{bottom:771.871067pt;}
.yc{bottom:775.823067pt;}
.y11b{bottom:776.025200pt;}
.ye1{bottom:778.067467pt;}
.y60{bottom:778.330667pt;}
.y33{bottom:779.845867pt;}
.y1cf{bottom:785.611333pt;}
.y11a{bottom:793.625200pt;}
.y5f{bottom:795.930667pt;}
.ye0{bottom:797.350000pt;}
.y32{bottom:797.445867pt;}
.y12c{bottom:802.107200pt;}
.y1a5{bottom:804.589200pt;}
.y1ce{bottom:807.570400pt;}
.y5e{bottom:813.530533pt;}
.y31{bottom:815.045867pt;}
.ydf{bottom:816.632667pt;}
.y12b{bottom:819.707333pt;}
.y1cd{bottom:821.970400pt;}
.yb{bottom:823.823067pt;}
.y119{bottom:824.453467pt;}
.y5d{bottom:831.130667pt;}
.y30{bottom:832.645867pt;}
.yde{bottom:835.915200pt;}
.y1cc{bottom:836.370400pt;}
.y12a{bottom:837.307333pt;}
.y5c{bottom:848.730667pt;}
.y2f{bottom:850.245867pt;}
.y129{bottom:854.907333pt;}
.ydd{bottom:855.197733pt;}
.y5b{bottom:866.330667pt;}
.y2e{bottom:867.845867pt;}
.y1cb{bottom:869.668000pt;}
.ya{bottom:871.823067pt;}
.ydc{bottom:874.480267pt;}
.y5a{bottom:883.930667pt;}
.y2d{bottom:885.445867pt;}
.y128{bottom:885.735733pt;}
.y59{bottom:901.530533pt;}
.y1ca{bottom:908.068000pt;}
.y2c{bottom:918.164000pt;}
.y58{bottom:919.130667pt;}
.y8{bottom:938.156000pt;}
.y3{bottom:962.160667pt;}
.y2a{bottom:965.383333pt;}
.y57{bottom:965.411067pt;}
.y2{bottom:975.494000pt;}
.h10{height:29.625000pt;}
.ha{height:35.669333pt;}
.hb{height:36.608000pt;}
.h3{height:37.229167pt;}
.h11{height:40.128000pt;}
.h9{height:41.184000pt;}
.h16{height:42.187500pt;}
.h2{height:44.000000pt;}
.he{height:45.760000pt;}
.hf{height:45.781333pt;}
.hc{height:46.536458pt;}
.h6{height:46.875000pt;}
.h5{height:48.000000pt;}
.h4{height:50.336000pt;}
.h14{height:51.216000pt;}
.h13{height:54.912000pt;}
.hd{height:55.872000pt;}
.h8{height:66.528000pt;}
.h12{height:68.928000pt;}
.h15{height:88.704000pt;}
.h7{height:110.880000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w0{width:737.008000pt;}
.w1{width:737.333333pt;}
.x0{left:0.000000pt;}
.x4{left:83.149600pt;}
.x18{left:89.982933pt;}
.x7{left:102.047200pt;}
.x10{left:103.640800pt;}
.x5{left:108.205200pt;}
.x9{left:109.380533pt;}
.xa{left:120.944933pt;}
.x8{left:139.521067pt;}
.x11{left:142.916267pt;}
.x20{left:168.867200pt;}
.x1f{left:176.014267pt;}
.x1e{left:192.345200pt;}
.xd{left:221.999733pt;}
.x1c{left:225.567333pt;}
.xe{left:229.483067pt;}
.xc{left:230.529333pt;}
.x1b{left:238.046267pt;}
.x1a{left:242.834533pt;}
.x14{left:247.540667pt;}
.xf{left:251.319200pt;}
.x15{left:255.052000pt;}
.x13{left:256.481600pt;}
.x16{left:264.760533pt;}
.x1d{left:308.803867pt;}
.xb{left:345.734133pt;}
.x6{left:388.853067pt;}
.x3{left:395.358267pt;}
.x12{left:400.474267pt;}
.x2{left:444.535333pt;}
.x19{left:473.438267pt;}
.x17{left:506.566667pt;}
.x1{left:633.705867pt;}
}




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