
    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_6d15b8e531df8407938e0997.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_d59e2bd024710691b0bdf44e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_f8870b083a8efbd211252045.woff')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_2788456fc7df5c66e8fc66e6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.194336;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_e3dde1e255cc7d1d18694a4b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_23b2aff432d9d71f1bf19336.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_04b2182618fcdf18e39672ba.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_5aa85ff20772829fa76bfbc3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.973633;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_dace636254a8298cd5d0c5db.woff')format("woff");}.ff9{font-family:ff9;line-height:1.094727;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_5c3bc603689db28818bcfc3b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.095215;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_a4dd23a188edd0feea12853d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.730957;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_7387b2af75800e897edf9c33.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c26b1084f376870f4fdf308a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e1ce21b7fa3848e4eab37533.woff')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_595327d4ab5e70919ff1b995.woff')format("woff");}.fff{font-family:fff;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e4099c35f8b4e5f4613aacce.woff')format("woff");}.ff10{font-family:ff10;line-height:1.089844;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a8dc885a4afcf6069a94ec28.woff')format("woff");}.ff11{font-family:ff11;line-height:1.095215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f5cd0b93ee866b84cfbdd065.woff')format("woff");}.ff12{font-family:ff12;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_424b462b2538803b7d7755b5.woff')format("woff");}.ff13{font-family:ff13;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_cf6e5edf55e4883df4ac371e.woff')format("woff");}.ff14{font-family:ff14;line-height:0.733000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_2aa715474138b55a447fb135.woff')format("woff");}.ff15{font-family:ff15;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_00c870fa5feb8ae446e8f9a2.woff')format("woff");}.ff16{font-family:ff16;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-47.520000px;}
.v5{vertical-align:-23.759991px;}
.v6{vertical-align:-20.880067px;}
.v7{vertical-align:-12.239865px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.599942px;}
.v3{vertical-align:5.759991px;}
.v2{vertical-align:16.559968px;}
.v4{vertical-align:23.759991px;}
.ls29{letter-spacing:-6.832800px;}
.ls3d{letter-spacing:-2.412000px;}
.ls2a{letter-spacing:-1.008000px;}
.ls41{letter-spacing:-0.349800px;}
.ls22{letter-spacing:-0.344400px;}
.ls21{letter-spacing:-0.336000px;}
.ls47{letter-spacing:-0.297000px;}
.ls3c{letter-spacing:-0.280800px;}
.ls3f{letter-spacing:-0.270000px;}
.ls25{letter-spacing:-0.244800px;}
.ls24{letter-spacing:-0.243600px;}
.ls2c{letter-spacing:-0.237600px;}
.ls27{letter-spacing:-0.231000px;}
.ls3e{letter-spacing:-0.180000px;}
.ls33{letter-spacing:-0.158400px;}
.ls46{letter-spacing:-0.151800px;}
.ls48{letter-spacing:-0.112200px;}
.ls43{letter-spacing:-0.100800px;}
.ls26{letter-spacing:-0.052800px;}
.ls28{letter-spacing:-0.021600px;}
.ls2e{letter-spacing:-0.016200px;}
.ls32{letter-spacing:-0.006600px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000018px;}
.ls1c{letter-spacing:0.000037px;}
.ls6{letter-spacing:0.000306px;}
.ls36{letter-spacing:0.004283px;}
.ls20{letter-spacing:0.004422px;}
.ls5{letter-spacing:0.005369px;}
.ls1e{letter-spacing:0.012012px;}
.ls31{letter-spacing:0.021600px;}
.ls1f{letter-spacing:0.023858px;}
.ls1b{letter-spacing:0.024000px;}
.lsa{letter-spacing:0.026379px;}
.ls45{letter-spacing:0.033000px;}
.ls23{letter-spacing:0.033600px;}
.ls2{letter-spacing:0.043314px;}
.ls39{letter-spacing:0.052800px;}
.ls19{letter-spacing:0.054003px;}
.ls42{letter-spacing:0.072600px;}
.ls35{letter-spacing:0.090000px;}
.ls44{letter-spacing:0.100800px;}
.ls2d{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.115200px;}
.ls9{letter-spacing:0.122634px;}
.lsc{letter-spacing:0.149118px;}
.lsf{letter-spacing:0.149150px;}
.ls17{letter-spacing:0.150000px;}
.ls13{letter-spacing:0.173700px;}
.lse{letter-spacing:0.173736px;}
.ls2f{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.230400px;}
.ls34{letter-spacing:0.231000px;}
.ls30{letter-spacing:0.237600px;}
.ls3b{letter-spacing:0.259200px;}
.ls3a{letter-spacing:0.266400px;}
.ls38{letter-spacing:0.270003px;}
.ls40{letter-spacing:0.280800px;}
.ls16{letter-spacing:0.318002px;}
.lsd{letter-spacing:0.893754px;}
.ls14{letter-spacing:2.309132px;}
.ls12{letter-spacing:4.469150px;}
.ls11{letter-spacing:13.829123px;}
.ls1a{letter-spacing:17.652001px;}
.ls10{letter-spacing:39.250786px;}
.ls15{letter-spacing:59.410768px;}
.lsb{letter-spacing:64.085852px;}
.ls1{letter-spacing:81.502063px;}
.ls37{letter-spacing:82.800000px;}
.ls7{letter-spacing:86.549172px;}
.ls8{letter-spacing:106.709186px;}
.ls3{letter-spacing:806.687411px;}
.ls4{letter-spacing:968.687407px;}
.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;}
}
.ws7{word-spacing:-66.242700px;}
.ws3{word-spacing:-59.762250px;}
.ws8{word-spacing:-39.571200px;}
.ws23{word-spacing:-23.452799px;}
.ws21{word-spacing:-20.296800px;}
.ws19{word-spacing:-20.037600px;}
.ws20{word-spacing:-20.016000px;}
.wsa{word-spacing:-19.994400px;}
.ws1f{word-spacing:-19.778400px;}
.ws22{word-spacing:-18.578999px;}
.ws9{word-spacing:-18.295199px;}
.wsc{word-spacing:-18.143399px;}
.ws1a{word-spacing:-17.604000px;}
.ws1{word-spacing:-14.970850px;}
.ws24{word-spacing:-14.803799px;}
.ws13{word-spacing:-14.011111px;}
.ws2{word-spacing:-13.506269px;}
.ws15{word-spacing:-12.535385px;}
.ws14{word-spacing:-12.524331px;}
.ws16{word-spacing:-11.433380px;}
.ws11{word-spacing:-11.013378px;}
.ws12{word-spacing:-10.494516px;}
.ws17{word-spacing:-9.852473px;}
.ws4{word-spacing:-9.438126px;}
.wse{word-spacing:-8.843342px;}
.ws10{word-spacing:-8.843323px;}
.wsd{word-spacing:-8.843305px;}
.ws5{word-spacing:-8.787216px;}
.ws6{word-spacing:-6.834504px;}
.ws18{word-spacing:-0.051600px;}
.ws1e{word-spacing:-0.001800px;}
.ws0{word-spacing:0.000000px;}
.ws1c{word-spacing:0.427200px;}
.ws1b{word-spacing:0.532800px;}
.ws1d{word-spacing:0.799800px;}
.wsb{word-spacing:13.657200px;}
.wsf{word-spacing:136.924041px;}
._19{margin-left:-10.144988px;}
._9{margin-left:-7.076750px;}
._18{margin-left:-6.039595px;}
._7{margin-left:-4.158163px;}
._15{margin-left:-2.515929px;}
._2{margin-left:-1.378317px;}
._1{width:1.446242px;}
._5{width:2.987837px;}
._6{width:4.012515px;}
._8{width:5.068888px;}
._2e{width:6.311512px;}
._4{width:7.397434px;}
._20{width:8.876781px;}
._2f{width:9.935500px;}
._1f{width:10.948967px;}
._14{width:12.735591px;}
._13{width:13.901910px;}
._30{width:16.023229px;}
._32{width:17.044557px;}
._1e{width:19.238739px;}
._1d{width:20.306751px;}
._33{width:22.115228px;}
._35{width:30.140946px;}
._34{width:32.518985px;}
._21{width:33.929491px;}
._0{width:39.379711px;}
._3{width:40.741997px;}
._31{width:43.502047px;}
._2d{width:49.897874px;}
._12{width:96.720164px;}
._36{width:111.258000px;}
._1c{width:117.298377px;}
._17{width:146.006205px;}
._1b{width:150.817183px;}
._b{width:152.101710px;}
._1a{width:190.911244px;}
._f{width:201.458231px;}
._e{width:218.286997px;}
._a{width:436.030702px;}
._d{width:471.735518px;}
._c{width:500.286121px;}
._10{width:577.936927px;}
._11{width:674.130441px;}
._22{width:780.696535px;}
._16{width:848.833958px;}
._2c{width:1237.432267px;}
._25{width:1258.053671px;}
._29{width:1287.326475px;}
._24{width:1299.463898px;}
._23{width:1302.917833px;}
._26{width:1305.616605px;}
._28{width:1307.568537px;}
._2a{width:1319.962649px;}
._27{width:1335.363301px;}
._2b{width:1360.922115px;}
.fce{color:rgb(255,192,0);}
.fc0{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fca{color:rgb(13,13,13);}
.fc5{color:transparent;}
.fcc{color:rgb(238,107,67);}
.fc3{color:rgb(160,39,181);}
.fcd{color:rgb(200,13,186);}
.fc4{color:rgb(30,73,125);}
.fc1{color:rgb(255,0,186);}
.fc6{color:rgb(61,0,135);}
.fc7{color:rgb(119,29,135);}
.fc9{color:rgb(237,107,67);}
.fc8{color:rgb(137,1,161);}
.fcb{color:rgb(137,2,161);}
.fs16{font-size:29.477683px;}
.fsd{font-size:30.241170px;}
.fsc{font-size:38.881485px;}
.fs1a{font-size:41.747769px;}
.fsa{font-size:41.761620px;}
.fs1b{font-size:41.784616px;}
.fs17{font-size:42.834758px;}
.fs1c{font-size:44.216525px;}
.fsb{font-size:45.361800px;}
.fs15{font-size:46.666857px;}
.fs19{font-size:46.703704px;}
.fs8{font-size:48.241800px;}
.fs18{font-size:48.638177px;}
.fs14{font-size:54.000000px;}
.fs0{font-size:59.762250px;}
.fs12{font-size:59.999990px;}
.fs11{font-size:65.999995px;}
.fs1{font-size:66.242700px;}
.fse{font-size:69.122700px;}
.fs13{font-size:72.000000px;}
.fs7{font-size:72.002705px;}
.fsf{font-size:83.999995px;}
.fs4{font-size:84.243145px;}
.fs6{font-size:90.003596px;}
.fs9{font-size:95.763600px;}
.fs2{font-size:108.004050px;}
.fs10{font-size:144.000000px;}
.fs5{font-size:216.008550px;}
.fs3{font-size:288.011259px;}
.y0{bottom:0.000000px;}
.y37{bottom:3.600013px;}
.y32{bottom:3.779984px;}
.y2{bottom:3.959997px;}
.y88{bottom:4.500000px;}
.y170{bottom:9.170821px;}
.y13b{bottom:11.478918px;}
.y1be{bottom:14.040000px;}
.y196{bottom:20.880000px;}
.y16f{bottom:25.291429px;}
.y126{bottom:28.440000px;}
.y1bd{bottom:35.280000px;}
.y195{bottom:38.880000px;}
.y16e{bottom:41.412037px;}
.y6{bottom:45.900055px;}
.y125{bottom:46.440000px;}
.y1a{bottom:46.440033px;}
.y1bc{bottom:54.720000px;}
.y194{bottom:56.880000px;}
.y16d{bottom:57.532645px;}
.y124{bottom:64.440000px;}
.y5{bottom:69.300110px;}
.y19{bottom:71.100083px;}
.y16c{bottom:73.653253px;}
.y193{bottom:74.880000px;}
.y1bb{bottom:76.680000px;}
.y131{bottom:89.280000px;}
.y192{bottom:92.880000px;}
.yf6{bottom:94.320099px;}
.y1ba{bottom:97.920000px;}
.yc1{bottom:104.940033px;}
.y191{bottom:110.880000px;}
.yf5{bottom:115.380066px;}
.y1b9{bottom:117.360000px;}
.yc0{bottom:121.500068px;}
.y13a{bottom:124.560000px;}
.y189{bottom:124.920000px;}
.y3c{bottom:126.360077px;}
.y190{bottom:128.880000px;}
.yf4{bottom:131.940033px;}
.ybf{bottom:138.420043px;}
.y16b{bottom:138.427028px;}
.y139{bottom:142.560000px;}
.yf3{bottom:142.920043px;}
.y188{bottom:144.360000px;}
.y1b7{bottom:146.520000px;}
.y18f{bottom:146.880000px;}
.ybe{bottom:153.360077px;}
.y138{bottom:160.560000px;}
.y3b{bottom:160.560036px;}
.y18e{bottom:164.880000px;}
.yf2{bottom:165.240074px;}
.y1b6{bottom:167.400000px;}
.ybd{bottom:173.340088px;}
.y187{bottom:177.120000px;}
.y137{bottom:178.560000px;}
.y14a{bottom:179.961074px;}
.yf1{bottom:181.260064px;}
.y18d{bottom:182.880000px;}
.y16a{bottom:184.080878px;}
.y3a{bottom:185.220085px;}
.y1b5{bottom:186.840000px;}
.ybc{bottom:189.360077px;}
.y149{bottom:196.081682px;}
.y136{bottom:196.560000px;}
.yf0{bottom:199.440033px;}
.y167{bottom:200.264154px;}
.y18c{bottom:200.880000px;}
.y1b8{bottom:205.200000px;}
.ybb{bottom:207.540047px;}
.y186{bottom:211.680000px;}
.y148{bottom:212.202290px;}
.yef{bottom:212.760064px;}
.y135{bottom:214.560000px;}
.y166{bottom:216.384762px;}
.y39{bottom:217.800041px;}
.y18b{bottom:218.880000px;}
.yba{bottom:228.240074px;}
.y147{bottom:228.322898px;}
.y169{bottom:229.828328px;}
.yee{bottom:230.940033px;}
.y185{bottom:231.120000px;}
.y134{bottom:232.560000px;}
.y1b4{bottom:238.680000px;}
.yb9{bottom:241.560036px;}
.y36{bottom:243.180039px;}
.y146{bottom:244.443506px;}
.y133{bottom:250.560000px;}
.y38{bottom:250.920043px;}
.yed{bottom:251.640060px;}
.y1b3{bottom:256.680000px;}
.y118{bottom:257.220085px;}
.yb8{bottom:259.740074px;}
.y145{bottom:260.564114px;}
.yec{bottom:265.140060px;}
.y184{bottom:265.680000px;}
.y34{bottom:272.160049px;}
.y1b2{bottom:274.680000px;}
.y168{bottom:275.846978px;}
.y35{bottom:280.080093px;}
.y130{bottom:280.440000px;}
.yb7{bottom:281.340088px;}
.y117{bottom:281.880066px;}
.yeb{bottom:283.320099px;}
.y183{bottom:285.120000px;}
.y1b1{bottom:292.680000px;}
.yea{bottom:298.800041px;}
.y31{bottom:301.320099px;}
.y174{bottom:304.504351px;}
.yb6{bottom:304.560036px;}
.y116{bottom:306.540047px;}
.y33{bottom:309.240074px;}
.y182{bottom:319.680000px;}
.y173{bottom:319.703782px;}
.y12e{bottom:320.760000px;}
.y1b0{bottom:328.680000px;}
.y115{bottom:331.200096px;}
.ye9{bottom:333.360077px;}
.y172{bottom:334.903212px;}
.y181{bottom:339.120000px;}
.y30{bottom:339.300041px;}
.y12f{bottom:342.720000px;}
.y7a{bottom:343.980079px;}
.y1af{bottom:346.680000px;}
.ye8{bottom:353.520058px;}
.y144{bottom:354.524230px;}
.y114{bottom:355.860077px;}
.y164{bottom:359.164129px;}
.y1ae{bottom:364.680000px;}
.y79{bottom:368.640060px;}
.y143{bottom:370.644838px;}
.y2f{bottom:371.340088px;}
.y180{bottom:373.680000px;}
.ye7{bottom:373.680039px;}
.y163{bottom:373.902971px;}
.y113{bottom:380.520058px;}
.y1ad{bottom:382.680000px;}
.yb5{bottom:384.120072px;}
.y142{bottom:386.765446px;}
.y162{bottom:388.641812px;}
.y17f{bottom:393.120000px;}
.y78{bottom:393.300041px;}
.ye6{bottom:393.840088px;}
.y1ac{bottom:400.680000px;}
.y141{bottom:402.886054px;}
.y161{bottom:403.380654px;}
.yb4{bottom:404.280052px;}
.y112{bottom:405.180039px;}
.y2e{bottom:406.440033px;}
.y11c{bottom:413.280000px;}
.y77{bottom:413.460091px;}
.ye5{bottom:414.000068px;}
.y160{bottom:418.119496px;}
.y1ab{bottom:418.680000px;}
.yb3{bottom:424.440033px;}
.y111{bottom:425.340088px;}
.y17e{bottom:427.680000px;}
.y15f{bottom:432.858337px;}
.y76{bottom:433.440033px;}
.y2d{bottom:433.980079px;}
.ye4{bottom:434.160049px;}
.y1aa{bottom:436.680000px;}
.y140{bottom:438.351391px;}
.y123{bottom:438.480000px;}
.y11b{bottom:438.840000px;}
.yb2{bottom:444.600083px;}
.y110{bottom:445.320099px;}
.y15e{bottom:447.597179px;}
.y75{bottom:453.600083px;}
.ye3{bottom:454.320099px;}
.y13f{bottom:454.471999px;}
.y1a9{bottom:454.680000px;}
.y122{bottom:456.480000px;}
.y17d{bottom:462.240000px;}
.y15d{bottom:462.336020px;}
.y2c{bottom:462.600083px;}
.y11a{bottom:464.400000px;}
.yb1{bottom:464.760064px;}
.y10f{bottom:465.480079px;}
.y13e{bottom:470.592607px;}
.ye2{bottom:474.300041px;}
.y121{bottom:474.480000px;}
.y15c{bottom:477.074862px;}
.y74{bottom:478.260064px;}
.yb0{bottom:484.740074px;}
.y10e{bottom:485.640060px;}
.y13d{bottom:486.713215px;}
.y119{bottom:488.160000px;}
.y2b{bottom:491.220085px;}
.y27{bottom:491.400055px;}
.y120{bottom:492.480000px;}
.ye1{bottom:494.460091px;}
.y17c{bottom:496.800000px;}
.y165{bottom:501.961846px;}
.y13c{bottom:502.833823px;}
.y73{bottom:502.920043px;}
.yaf{bottom:504.900055px;}
.y11f{bottom:510.480000px;}
.y92{bottom:511.560036px;}
.ye0{bottom:514.620072px;}
.y2a{bottom:519.840088px;}
.y10d{bottom:523.080093px;}
.yae{bottom:525.060036px;}
.y72{bottom:527.580093px;}
.y11e{bottom:528.480000px;}
.y17b{bottom:531.360000px;}
.ydf{bottom:534.780052px;}
.y91{bottom:536.220085px;}
.yad{bottom:545.220085px;}
.y71{bottom:547.740074px;}
.y29{bottom:548.280052px;}
.y17a{bottom:550.800000px;}
.yde{bottom:554.940033px;}
.y1a8{bottom:561.600000px;}
.y12d{bottom:562.320000px;}
.yac{bottom:565.380066px;}
.y90{bottom:566.460091px;}
.y10c{bottom:571.500068px;}
.y70{bottom:572.400055px;}
.ydd{bottom:575.100083px;}
.y28{bottom:576.900055px;}
.y1a7{bottom:579.600000px;}
.y179{bottom:585.360000px;}
.yab{bottom:585.540047px;}
.y156{bottom:587.894239px;}
.y10b{bottom:591.660049px;}
.ydc{bottom:595.260064px;}
.y8f{bottom:596.700096px;}
.y6f{bottom:597.060036px;}
.y1a6{bottom:597.600000px;}
.y155{bottom:598.027193px;}
.yaa{bottom:605.700096px;}
.y12c{bottom:607.680000px;}
.y154{bottom:608.160146px;}
.y26{bottom:611.280052px;}
.y10a{bottom:611.820099px;}
.ydb{bottom:615.420043px;}
.y1a5{bottom:615.600000px;}
.y6e{bottom:617.220085px;}
.y153{bottom:618.293100px;}
.y178{bottom:619.920000px;}
.ya9{bottom:625.860077px;}
.y8e{bottom:626.940033px;}
.y152{bottom:629.992043px;}
.y12b{bottom:630.000000px;}
.y109{bottom:631.980079px;}
.y1a4{bottom:633.600000px;}
.yda{bottom:635.580093px;}
.y6d{bottom:637.380066px;}
.y177{bottom:639.360000px;}
.y151{bottom:640.124996px;}
.ya8{bottom:646.020058px;}
.y150{bottom:648.599832px;}
.y25{bottom:648.900055px;}
.y12a{bottom:650.880000px;}
.y1a3{bottom:651.600000px;}
.y108{bottom:652.140060px;}
.yd9{bottom:655.740074px;}
.y8d{bottom:657.180039px;}
.y6c{bottom:657.360077px;}
.y14f{bottom:658.732786px;}
.ya7{bottom:666.180039px;}
.y19b{bottom:668.520015px;}
.y14e{bottom:668.865739px;}
.y1a2{bottom:669.600015px;}
.y107{bottom:672.300041px;}
.y129{bottom:673.560015px;}
.y176{bottom:673.920015px;}
.yd8{bottom:675.720085px;}
.y4d{bottom:676.440033px;}
.y8c{bottom:677.340088px;}
.y14d{bottom:678.998693px;}
.y6b{bottom:682.020058px;}
.ya6{bottom:686.160049px;}
.y24{bottom:686.340088px;}
.y1a1{bottom:687.600015px;}
.y14c{bottom:689.131646px;}
.y19a{bottom:689.760015px;}
.y106{bottom:692.460056px;}
.y128{bottom:694.440015px;}
.yd7{bottom:695.880066px;}
.y4c{bottom:696.420078px;}
.y14b{bottom:699.264600px;}
.y1a0{bottom:705.600015px;}
.ya5{bottom:706.320065px;}
.y6a{bottom:706.680073px;}
.y8b{bottom:707.580059px;}
.y175{bottom:708.120015px;}
.y199{bottom:709.200015px;}
.y105{bottom:712.440067px;}
.y127{bottom:715.680015px;}
.yd6{bottom:716.040081px;}
.y4b{bottom:716.580059px;}
.y23{bottom:721.080059px;}
.y19f{bottom:723.600015px;}
.ya4{bottom:726.480079px;}
.y8a{bottom:727.740074px;}
.y198{bottom:728.640015px;}
.y69{bottom:731.340054px;}
.y104{bottom:735.660049px;}
.y171{bottom:736.086101px;}
.yd5{bottom:736.200061px;}
.y4a{bottom:736.740074px;}
.y15{bottom:736.920078px;}
.y22{bottom:745.740074px;}
.ya3{bottom:746.640060px;}
.y89{bottom:747.900055px;}
.y197{bottom:748.080015px;}
.y18a{bottom:754.560015px;}
.y68{bottom:756.000068px;}
.yd4{bottom:756.360077px;}
.y49{bottom:756.900055px;}
.y11d{bottom:758.880015px;}
.y103{bottom:759.780052px;}
.y19d{bottom:761.400015px;}
.y5b{bottom:763.920078px;}
.ya2{bottom:766.800076px;}
.y15b{bottom:766.951021px;}
.y14{bottom:769.860077px;}
.y21{bottom:770.400055px;}
.y87{bottom:773.640060px;}
.yd3{bottom:776.520058px;}
.y48{bottom:777.060070px;}
.y86{bottom:778.140060px;}
.y67{bottom:780.660049px;}
.y19c{bottom:782.640015px;}
.y102{bottom:782.820065px;}
.y19e{bottom:783.000015px;}
.y15a{bottom:783.071629px;}
.y132{bottom:783.720015px;}
.ya1{bottom:786.960056px;}
.y5a{bottom:788.580059px;}
.y20{bottom:795.060070px;}
.yd2{bottom:796.680073px;}
.y159{bottom:799.192237px;}
.y13{bottom:802.800076px;}
.y66{bottom:805.320065px;}
.y101{bottom:806.940067px;}
.ya0{bottom:807.120072px;}
.y85{bottom:808.380066px;}
.y158{bottom:815.312845px;}
.yd1{bottom:816.840054px;}
.y59{bottom:817.020058px;}
.y47{bottom:817.380066px;}
.y1f{bottom:820.080059px;}
.y65{bottom:825.480079px;}
.y9f{bottom:827.280052px;}
.y84{bottom:828.540081px;}
.y100{bottom:830.880066px;}
.yd0{bottom:837.000068px;}
.y157{bottom:842.948173px;}
.y58{bottom:844.380066px;}
.y9e{bottom:847.440067px;}
.y64{bottom:850.140060px;}
.yff{bottom:855.000068px;}
.y17{bottom:856.440067px;}
.ycf{bottom:857.160049px;}
.y83{bottom:858.780052px;}
.y12{bottom:863.100083px;}
.y9d{bottom:867.600083px;}
.y46{bottom:870.480079px;}
.y57{bottom:871.740074px;}
.y63{bottom:874.620072px;}
.yce{bottom:877.140060px;}
.y82{bottom:878.940067px;}
.y9c{bottom:887.580059px;}
.y11{bottom:887.760064px;}
.y45{bottom:889.560070px;}
.y1e{bottom:892.260064px;}
.ycd{bottom:897.300076px;}
.y56{bottom:898.920078px;}
.yfe{bottom:899.100083px;}
.y62{bottom:899.280052px;}
.y9b{bottom:907.740074px;}
.y81{bottom:909.180073px;}
.y10{bottom:912.240074px;}
.ycc{bottom:917.460056px;}
.yfd{bottom:919.260064px;}
.y55{bottom:921.780052px;}
.y1d{bottom:923.940067px;}
.y9a{bottom:927.900055px;}
.y16{bottom:934.020058px;}
.yf{bottom:936.900055px;}
.ycb{bottom:937.620072px;}
.yfc{bottom:939.420078px;}
.y80{bottom:939.600083px;}
.y44{bottom:940.680073px;}
.y99{bottom:948.060070px;}
.y61{bottom:948.600083px;}
.y54{bottom:949.140060px;}
.yca{bottom:957.780053px;}
.yfb{bottom:959.580059px;}
.ye{bottom:961.560070px;}
.y43{bottom:962.640060px;}
.y98{bottom:968.220051px;}
.y7f{bottom:969.840054px;}
.y60{bottom:973.260064px;}
.y53{bottom:976.500068px;}
.yc9{bottom:977.940067px;}
.yfa{bottom:979.740074px;}
.yd{bottom:986.220068px;}
.y97{bottom:988.380066px;}
.y42{bottom:996.840070px;}
.y5f{bottom:997.920061px;}
.yc8{bottom:998.100065px;}
.yf9{bottom:999.900072px;}
.y7e{bottom:1000.080059px;}
.y52{bottom:1003.680073px;}
.y96{bottom:1008.540064px;}
.yc{bottom:1010.880066px;}
.yc7{bottom:1018.440067px;}
.yf8{bottom:1020.060070px;}
.y1c{bottom:1022.580059px;}
.y95{bottom:1028.700061px;}
.y7d{bottom:1030.320065px;}
.y51{bottom:1031.040064px;}
.y41{bottom:1033.380066px;}
.yb{bottom:1035.540064px;}
.yc6{bottom:1039.500068px;}
.yf7{bottom:1040.220068px;}
.y5e{bottom:1047.240074px;}
.y94{bottom:1048.860060px;}
.y40{bottom:1058.040064px;}
.y50{bottom:1058.400072px;}
.ya{bottom:1060.200061px;}
.yc5{bottom:1060.380066px;}
.y7c{bottom:1060.560070px;}
.y5d{bottom:1071.900072px;}
.yc4{bottom:1080.540064px;}
.y3f{bottom:1082.700061px;}
.y9{bottom:1084.860060px;}
.y93{bottom:1086.300058px;}
.y4f{bottom:1089.360060px;}
.y7b{bottom:1090.800058px;}
.y5c{bottom:1096.560070px;}
.yc3{bottom:1100.520058px;}
.y3e{bottom:1107.360060px;}
.y8{bottom:1109.520058px;}
.yc2{bottom:1120.680064px;}
.y7{bottom:1134.180064px;}
.y3d{bottom:1135.260064px;}
.y4e{bottom:1136.880066px;}
.y1b{bottom:1140.840063px;}
.y4{bottom:1162.620063px;}
.y18{bottom:1184.400064px;}
.y1{bottom:1186.020066px;}
.y3{bottom:1189.980063px;}
.h2{height:18.180000px;}
.h18{height:20.340019px;}
.h12{height:21.420044px;}
.h10{height:21.599945px;}
.h11{height:21.600015px;}
.h2e{height:21.607142px;}
.h2f{height:28.239614px;}
.h34{height:30.601115px;}
.h35{height:30.628123px;}
.h36{height:31.800058px;}
.h31{height:32.774446px;}
.h1f{height:32.878293px;}
.h37{height:33.831687px;}
.h33{height:34.233815px;}
.h30{height:35.547020px;}
.h2d{height:35.706526px;}
.h32{height:37.048612px;}
.h1e{height:38.672649px;}
.h1a{height:42.126769px;}
.h1b{height:42.126774px;}
.h21{height:42.127044px;}
.h1d{height:42.127048px;}
.h26{height:43.710931px;}
.h38{height:45.117184px;}
.h1c{height:45.118158px;}
.h29{height:46.432617px;}
.h25{height:47.437497px;}
.h27{height:48.049801px;}
.h15{height:49.396023px;}
.h2a{height:52.417969px;}
.h28{height:52.453125px;}
.h19{height:54.142659px;}
.h2b{height:56.750972px;}
.h3{height:59.441261px;}
.h39{height:61.154293px;}
.h16{height:63.346897px;}
.he{height:63.525714px;}
.h4{height:65.886904px;}
.h5{height:67.827608px;}
.h20{height:68.751435px;}
.hf{height:71.615971px;}
.h23{height:72.228511px;}
.ha{height:73.725425px;}
.hc{height:74.496039px;}
.hb{height:75.215913px;}
.hd{height:75.215917px;}
.h14{height:77.375962px;}
.h17{height:80.707018px;}
.h8{height:86.258729px;}
.h13{height:88.175940px;}
.h9{height:92.157002px;}
.h6{height:107.423950px;}
.h24{height:123.820313px;}
.h7{height:294.902153px;}
.h2c{height:751.376850px;}
.h22{height:810.000000px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w7{width:4.500000px;}
.w2{width:7.020006px;}
.w4{width:9.180003px;}
.w3{width:68.039996px;}
.w5{width:98.639992px;}
.w6{width:121.680005px;}
.w9{width:368.474100px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.w8{width:1440.000000px;}
.x0{left:0.000000px;}
.x2f{left:9.766650px;}
.x5{left:11.340000px;}
.x40{left:13.239886px;}
.x49{left:15.408660px;}
.x24{left:18.418815px;}
.x23{left:21.891315px;}
.x46{left:24.753195px;}
.x47{left:32.096340px;}
.x3f{left:43.017450px;}
.x22{left:58.453815px;}
.xe{left:79.739997px;}
.x1{left:84.959997px;}
.x1d{left:86.219999px;}
.x16{left:93.060001px;}
.x11{left:94.500000px;}
.x8{left:107.640000px;}
.x1f{left:109.980002px;}
.x1c{left:111.959997px;}
.x1b{left:120.599997px;}
.x37{left:128.195431px;}
.x32{left:132.471161px;}
.x25{left:134.578815px;}
.x30{left:135.911212px;}
.x1a{left:138.959997px;}
.x34{left:140.164498px;}
.x33{left:145.144657px;}
.x38{left:146.827848px;}
.x31{left:148.685463px;}
.x17{left:151.379998px;}
.x12{left:162.539996px;}
.x20{left:165.960005px;}
.x9{left:167.039996px;}
.x18{left:168.300007px;}
.x36{left:189.045260px;}
.x4{left:192.960005px;}
.x39{left:199.374600px;}
.x3a{left:201.794721px;}
.x19{left:204.300007px;}
.x35{left:206.439831px;}
.x42{left:207.686861px;}
.x3e{left:209.018529px;}
.xc{left:210.599997px;}
.x3d{left:213.321923px;}
.x15{left:216.180005px;}
.x41{left:223.231865px;}
.x10{left:249.840002px;}
.xf{left:257.759994px;}
.x7{left:287.460005px;}
.x14{left:298.800007px;}
.x13{left:300.240006px;}
.xb{left:308.160015px;}
.xd{left:322.199993px;}
.x3b{left:336.146316px;}
.x3c{left:338.226177px;}
.xa{left:384.480011px;}
.x2{left:446.399987px;}
.x2a{left:521.635950px;}
.x2c{left:523.739400px;}
.x27{left:528.723750px;}
.x29{left:531.754950px;}
.x28{left:533.305800px;}
.x4a{left:568.515750px;}
.x26{left:570.825450px;}
.x4b{left:574.700850px;}
.x6{left:592.200027px;}
.x4c{left:609.092100px;}
.x4e{left:627.287700px;}
.x4f{left:648.583800px;}
.x4d{left:658.605600px;}
.x2b{left:680.811900px;}
.x48{left:718.376700px;}
.x3{left:799.559967px;}
.x1e{left:802.259994px;}
.x21{left:807.840019px;}
.x45{left:1015.300650px;}
.x43{left:1043.784000px;}
.x2e{left:1047.548100px;}
.x2d{left:1057.020900px;}
.x44{left:1070.784000px;}
@media print{
.v8{vertical-align:-42.240000pt;}
.v5{vertical-align:-21.119992pt;}
.v6{vertical-align:-18.560060pt;}
.v7{vertical-align:-10.879880pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.199948pt;}
.v3{vertical-align:5.119992pt;}
.v2{vertical-align:14.719972pt;}
.v4{vertical-align:21.119992pt;}
.ls29{letter-spacing:-6.073600pt;}
.ls3d{letter-spacing:-2.144000pt;}
.ls2a{letter-spacing:-0.896000pt;}
.ls41{letter-spacing:-0.310933pt;}
.ls22{letter-spacing:-0.306133pt;}
.ls21{letter-spacing:-0.298667pt;}
.ls47{letter-spacing:-0.264000pt;}
.ls3c{letter-spacing:-0.249600pt;}
.ls3f{letter-spacing:-0.240000pt;}
.ls25{letter-spacing:-0.217600pt;}
.ls24{letter-spacing:-0.216533pt;}
.ls2c{letter-spacing:-0.211200pt;}
.ls27{letter-spacing:-0.205333pt;}
.ls3e{letter-spacing:-0.160000pt;}
.ls33{letter-spacing:-0.140800pt;}
.ls46{letter-spacing:-0.134933pt;}
.ls48{letter-spacing:-0.099733pt;}
.ls43{letter-spacing:-0.089600pt;}
.ls26{letter-spacing:-0.046933pt;}
.ls28{letter-spacing:-0.019200pt;}
.ls2e{letter-spacing:-0.014400pt;}
.ls32{letter-spacing:-0.005867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000016pt;}
.ls1c{letter-spacing:0.000033pt;}
.ls6{letter-spacing:0.000272pt;}
.ls36{letter-spacing:0.003808pt;}
.ls20{letter-spacing:0.003930pt;}
.ls5{letter-spacing:0.004773pt;}
.ls1e{letter-spacing:0.010677pt;}
.ls31{letter-spacing:0.019200pt;}
.ls1f{letter-spacing:0.021208pt;}
.ls1b{letter-spacing:0.021333pt;}
.lsa{letter-spacing:0.023448pt;}
.ls45{letter-spacing:0.029333pt;}
.ls23{letter-spacing:0.029867pt;}
.ls2{letter-spacing:0.038501pt;}
.ls39{letter-spacing:0.046933pt;}
.ls19{letter-spacing:0.048002pt;}
.ls42{letter-spacing:0.064533pt;}
.ls35{letter-spacing:0.080000pt;}
.ls44{letter-spacing:0.089600pt;}
.ls2d{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.102400pt;}
.ls9{letter-spacing:0.109008pt;}
.lsc{letter-spacing:0.132550pt;}
.lsf{letter-spacing:0.132578pt;}
.ls17{letter-spacing:0.133333pt;}
.ls13{letter-spacing:0.154400pt;}
.lse{letter-spacing:0.154432pt;}
.ls2f{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.204800pt;}
.ls34{letter-spacing:0.205333pt;}
.ls30{letter-spacing:0.211200pt;}
.ls3b{letter-spacing:0.230400pt;}
.ls3a{letter-spacing:0.236800pt;}
.ls38{letter-spacing:0.240003pt;}
.ls40{letter-spacing:0.249600pt;}
.ls16{letter-spacing:0.282668pt;}
.lsd{letter-spacing:0.794448pt;}
.ls14{letter-spacing:2.052562pt;}
.ls12{letter-spacing:3.972578pt;}
.ls11{letter-spacing:12.292554pt;}
.ls1a{letter-spacing:15.690668pt;}
.ls10{letter-spacing:34.889587pt;}
.ls15{letter-spacing:52.809571pt;}
.lsb{letter-spacing:56.965202pt;}
.ls1{letter-spacing:72.446278pt;}
.ls37{letter-spacing:73.600000pt;}
.ls7{letter-spacing:76.932598pt;}
.ls8{letter-spacing:94.852610pt;}
.ls3{letter-spacing:717.055477pt;}
.ls4{letter-spacing:861.055473pt;}
.ws7{word-spacing:-58.882400pt;}
.ws3{word-spacing:-53.122000pt;}
.ws8{word-spacing:-35.174400pt;}
.ws23{word-spacing:-20.846932pt;}
.ws21{word-spacing:-18.041600pt;}
.ws19{word-spacing:-17.811200pt;}
.ws20{word-spacing:-17.792000pt;}
.wsa{word-spacing:-17.772800pt;}
.ws1f{word-spacing:-17.580800pt;}
.ws22{word-spacing:-16.514665pt;}
.ws9{word-spacing:-16.262399pt;}
.wsc{word-spacing:-16.127465pt;}
.ws1a{word-spacing:-15.648000pt;}
.ws1{word-spacing:-13.307422pt;}
.ws24{word-spacing:-13.158932pt;}
.ws13{word-spacing:-12.454321pt;}
.ws2{word-spacing:-12.005572pt;}
.ws15{word-spacing:-11.142564pt;}
.ws14{word-spacing:-11.132738pt;}
.ws16{word-spacing:-10.163004pt;}
.ws11{word-spacing:-9.789670pt;}
.ws12{word-spacing:-9.328458pt;}
.ws17{word-spacing:-8.757754pt;}
.ws4{word-spacing:-8.389445pt;}
.wse{word-spacing:-7.860748pt;}
.ws10{word-spacing:-7.860732pt;}
.wsd{word-spacing:-7.860716pt;}
.ws5{word-spacing:-7.810858pt;}
.ws6{word-spacing:-6.075115pt;}
.ws18{word-spacing:-0.045867pt;}
.ws1e{word-spacing:-0.001600pt;}
.ws0{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.379733pt;}
.ws1b{word-spacing:0.473600pt;}
.ws1d{word-spacing:0.710933pt;}
.wsb{word-spacing:12.139733pt;}
.wsf{word-spacing:121.710258pt;}
._19{margin-left:-9.017767pt;}
._9{margin-left:-6.290445pt;}
._18{margin-left:-5.368529pt;}
._7{margin-left:-3.696144pt;}
._15{margin-left:-2.236381pt;}
._2{margin-left:-1.225171pt;}
._1{width:1.285548pt;}
._5{width:2.655855pt;}
._6{width:3.566680pt;}
._8{width:4.505678pt;}
._2e{width:5.610233pt;}
._4{width:6.575497pt;}
._20{width:7.890472pt;}
._2f{width:8.831556pt;}
._1f{width:9.732415pt;}
._14{width:11.320525pt;}
._13{width:12.357254pt;}
._30{width:14.242871pt;}
._32{width:15.150718pt;}
._1e{width:17.101102pt;}
._1d{width:18.050446pt;}
._33{width:19.657981pt;}
._35{width:26.791952pt;}
._34{width:28.905765pt;}
._21{width:30.159548pt;}
._0{width:35.004188pt;}
._3{width:36.215108pt;}
._31{width:38.668486pt;}
._2d{width:44.353666pt;}
._12{width:85.973479pt;}
._36{width:98.896000pt;}
._1c{width:104.265224pt;}
._17{width:129.783293pt;}
._1b{width:134.059718pt;}
._b{width:135.201520pt;}
._1a{width:169.698884pt;}
._f{width:179.073983pt;}
._e{width:194.032886pt;}
._a{width:387.582846pt;}
._d{width:419.320460pt;}
._c{width:444.698774pt;}
._10{width:513.721713pt;}
._11{width:599.227059pt;}
._22{width:693.952475pt;}
._16{width:754.519074pt;}
._2c{width:1099.939793pt;}
._25{width:1118.269930pt;}
._29{width:1144.290200pt;}
._24{width:1155.079020pt;}
._23{width:1158.149185pt;}
._26{width:1160.548094pt;}
._28{width:1162.283144pt;}
._2a{width:1173.300133pt;}
._27{width:1186.989601pt;}
._2b{width:1209.708547pt;}
.fs16{font-size:26.202385pt;}
.fsd{font-size:26.881040pt;}
.fsc{font-size:34.561320pt;}
.fs1a{font-size:37.109128pt;}
.fsa{font-size:37.121440pt;}
.fs1b{font-size:37.141881pt;}
.fs17{font-size:38.075341pt;}
.fs1c{font-size:39.303578pt;}
.fsb{font-size:40.321600pt;}
.fs15{font-size:41.481651pt;}
.fs19{font-size:41.514404pt;}
.fs8{font-size:42.881600pt;}
.fs18{font-size:43.233935pt;}
.fs14{font-size:48.000000pt;}
.fs0{font-size:53.122000pt;}
.fs12{font-size:53.333325pt;}
.fs11{font-size:58.666662pt;}
.fs1{font-size:58.882400pt;}
.fse{font-size:61.442400pt;}
.fs13{font-size:64.000000pt;}
.fs7{font-size:64.002404pt;}
.fsf{font-size:74.666662pt;}
.fs4{font-size:74.882796pt;}
.fs6{font-size:80.003196pt;}
.fs9{font-size:85.123200pt;}
.fs2{font-size:96.003600pt;}
.fs10{font-size:128.000000pt;}
.fs5{font-size:192.007600pt;}
.fs3{font-size:256.010008pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:3.200012pt;}
.y32{bottom:3.359986pt;}
.y2{bottom:3.519997pt;}
.y88{bottom:4.000000pt;}
.y170{bottom:8.151841pt;}
.y13b{bottom:10.203483pt;}
.y1be{bottom:12.480000pt;}
.y196{bottom:18.560000pt;}
.y16f{bottom:22.481270pt;}
.y126{bottom:25.280000pt;}
.y1bd{bottom:31.360000pt;}
.y195{bottom:34.560000pt;}
.y16e{bottom:36.810700pt;}
.y6{bottom:40.800049pt;}
.y125{bottom:41.280000pt;}
.y1a{bottom:41.280030pt;}
.y1bc{bottom:48.640000pt;}
.y194{bottom:50.560000pt;}
.y16d{bottom:51.140129pt;}
.y124{bottom:57.280000pt;}
.y5{bottom:61.600098pt;}
.y19{bottom:63.200074pt;}
.y16c{bottom:65.469558pt;}
.y193{bottom:66.560000pt;}
.y1bb{bottom:68.160000pt;}
.y131{bottom:79.360000pt;}
.y192{bottom:82.560000pt;}
.yf6{bottom:83.840088pt;}
.y1ba{bottom:87.040000pt;}
.yc1{bottom:93.280030pt;}
.y191{bottom:98.560000pt;}
.yf5{bottom:102.560059pt;}
.y1b9{bottom:104.320000pt;}
.yc0{bottom:108.000061pt;}
.y13a{bottom:110.720000pt;}
.y189{bottom:111.040000pt;}
.y3c{bottom:112.320069pt;}
.y190{bottom:114.560000pt;}
.yf4{bottom:117.280030pt;}
.ybf{bottom:123.040039pt;}
.y16b{bottom:123.046247pt;}
.y139{bottom:126.720000pt;}
.yf3{bottom:127.040039pt;}
.y188{bottom:128.320000pt;}
.y1b7{bottom:130.240000pt;}
.y18f{bottom:130.560000pt;}
.ybe{bottom:136.320069pt;}
.y138{bottom:142.720000pt;}
.y3b{bottom:142.720032pt;}
.y18e{bottom:146.560000pt;}
.yf2{bottom:146.880066pt;}
.y1b6{bottom:148.800000pt;}
.ybd{bottom:154.080079pt;}
.y187{bottom:157.440000pt;}
.y137{bottom:158.720000pt;}
.y14a{bottom:159.965399pt;}
.yf1{bottom:161.120057pt;}
.y18d{bottom:162.560000pt;}
.y16a{bottom:163.627447pt;}
.y3a{bottom:164.640076pt;}
.y1b5{bottom:166.080000pt;}
.ybc{bottom:168.320069pt;}
.y149{bottom:174.294829pt;}
.y136{bottom:174.720000pt;}
.yf0{bottom:177.280030pt;}
.y167{bottom:178.012581pt;}
.y18c{bottom:178.560000pt;}
.y1b8{bottom:182.400000pt;}
.ybb{bottom:184.480042pt;}
.y186{bottom:188.160000pt;}
.y148{bottom:188.624258pt;}
.yef{bottom:189.120057pt;}
.y135{bottom:190.720000pt;}
.y166{bottom:192.342011pt;}
.y39{bottom:193.600037pt;}
.y18b{bottom:194.560000pt;}
.yba{bottom:202.880066pt;}
.y147{bottom:202.953687pt;}
.y169{bottom:204.291847pt;}
.yee{bottom:205.280030pt;}
.y185{bottom:205.440000pt;}
.y134{bottom:206.720000pt;}
.y1b4{bottom:212.160000pt;}
.yb9{bottom:214.720032pt;}
.y36{bottom:216.160035pt;}
.y146{bottom:217.283117pt;}
.y133{bottom:222.720000pt;}
.y38{bottom:223.040039pt;}
.yed{bottom:223.680054pt;}
.y1b3{bottom:228.160000pt;}
.y118{bottom:228.640076pt;}
.yb8{bottom:230.880066pt;}
.y145{bottom:231.612546pt;}
.yec{bottom:235.680054pt;}
.y184{bottom:236.160000pt;}
.y34{bottom:241.920044pt;}
.y1b2{bottom:244.160000pt;}
.y168{bottom:245.197314pt;}
.y35{bottom:248.960083pt;}
.y130{bottom:249.280000pt;}
.yb7{bottom:250.080079pt;}
.y117{bottom:250.560059pt;}
.yeb{bottom:251.840088pt;}
.y183{bottom:253.440000pt;}
.y1b1{bottom:260.160000pt;}
.yea{bottom:265.600037pt;}
.y31{bottom:267.840088pt;}
.y174{bottom:270.670534pt;}
.yb6{bottom:270.720032pt;}
.y116{bottom:272.480042pt;}
.y33{bottom:274.880066pt;}
.y182{bottom:284.160000pt;}
.y173{bottom:284.181139pt;}
.y12e{bottom:285.120000pt;}
.y1b0{bottom:292.160000pt;}
.y115{bottom:294.400086pt;}
.ye9{bottom:296.320069pt;}
.y172{bottom:297.691744pt;}
.y181{bottom:301.440000pt;}
.y30{bottom:301.600037pt;}
.y12f{bottom:304.640000pt;}
.y7a{bottom:305.760071pt;}
.y1af{bottom:308.160000pt;}
.ye8{bottom:314.240052pt;}
.y144{bottom:315.132649pt;}
.y114{bottom:316.320069pt;}
.y164{bottom:319.257004pt;}
.y1ae{bottom:324.160000pt;}
.y79{bottom:327.680054pt;}
.y143{bottom:329.462078pt;}
.y2f{bottom:330.080079pt;}
.y180{bottom:332.160000pt;}
.ye7{bottom:332.160035pt;}
.y163{bottom:332.358196pt;}
.y113{bottom:338.240052pt;}
.y1ad{bottom:340.160000pt;}
.yb5{bottom:341.440064pt;}
.y142{bottom:343.791507pt;}
.y162{bottom:345.459389pt;}
.y17f{bottom:349.440000pt;}
.y78{bottom:349.600037pt;}
.ye6{bottom:350.080079pt;}
.y1ac{bottom:356.160000pt;}
.y141{bottom:358.120937pt;}
.y161{bottom:358.560581pt;}
.yb4{bottom:359.360047pt;}
.y112{bottom:360.160035pt;}
.y2e{bottom:361.280030pt;}
.y11c{bottom:367.360000pt;}
.y77{bottom:367.520081pt;}
.ye5{bottom:368.000061pt;}
.y160{bottom:371.661774pt;}
.y1ab{bottom:372.160000pt;}
.yb3{bottom:377.280030pt;}
.y111{bottom:378.080079pt;}
.y17e{bottom:380.160000pt;}
.y15f{bottom:384.762966pt;}
.y76{bottom:385.280030pt;}
.y2d{bottom:385.760071pt;}
.ye4{bottom:385.920044pt;}
.y1aa{bottom:388.160000pt;}
.y140{bottom:389.645681pt;}
.y123{bottom:389.760000pt;}
.y11b{bottom:390.080000pt;}
.yb2{bottom:395.200074pt;}
.y110{bottom:395.840088pt;}
.y15e{bottom:397.864159pt;}
.y75{bottom:403.200074pt;}
.ye3{bottom:403.840088pt;}
.y13f{bottom:403.975110pt;}
.y1a9{bottom:404.160000pt;}
.y122{bottom:405.760000pt;}
.y17d{bottom:410.880000pt;}
.y15d{bottom:410.965351pt;}
.y2c{bottom:411.200074pt;}
.y11a{bottom:412.800000pt;}
.yb1{bottom:413.120057pt;}
.y10f{bottom:413.760071pt;}
.y13e{bottom:418.304540pt;}
.ye2{bottom:421.600037pt;}
.y121{bottom:421.760000pt;}
.y15c{bottom:424.066544pt;}
.y74{bottom:425.120057pt;}
.yb0{bottom:430.880066pt;}
.y10e{bottom:431.680054pt;}
.y13d{bottom:432.633969pt;}
.y119{bottom:433.920000pt;}
.y2b{bottom:436.640076pt;}
.y27{bottom:436.800049pt;}
.y120{bottom:437.760000pt;}
.ye1{bottom:439.520081pt;}
.y17c{bottom:441.600000pt;}
.y165{bottom:446.188307pt;}
.y13c{bottom:446.963398pt;}
.y73{bottom:447.040039pt;}
.yaf{bottom:448.800049pt;}
.y11f{bottom:453.760000pt;}
.y92{bottom:454.720032pt;}
.ye0{bottom:457.440064pt;}
.y2a{bottom:462.080079pt;}
.y10d{bottom:464.960083pt;}
.yae{bottom:466.720032pt;}
.y72{bottom:468.960083pt;}
.y11e{bottom:469.760000pt;}
.y17b{bottom:472.320000pt;}
.ydf{bottom:475.360047pt;}
.y91{bottom:476.640076pt;}
.yad{bottom:484.640076pt;}
.y71{bottom:486.880066pt;}
.y29{bottom:487.360047pt;}
.y17a{bottom:489.600000pt;}
.yde{bottom:493.280030pt;}
.y1a8{bottom:499.200000pt;}
.y12d{bottom:499.840000pt;}
.yac{bottom:502.560059pt;}
.y90{bottom:503.520081pt;}
.y10c{bottom:508.000061pt;}
.y70{bottom:508.800049pt;}
.ydd{bottom:511.200074pt;}
.y28{bottom:512.800049pt;}
.y1a7{bottom:515.200000pt;}
.y179{bottom:520.320000pt;}
.yab{bottom:520.480042pt;}
.y156{bottom:522.572657pt;}
.y10b{bottom:525.920044pt;}
.ydc{bottom:529.120057pt;}
.y8f{bottom:530.400086pt;}
.y6f{bottom:530.720032pt;}
.y1a6{bottom:531.200000pt;}
.y155{bottom:531.579727pt;}
.yaa{bottom:538.400086pt;}
.y12c{bottom:540.160000pt;}
.y154{bottom:540.586797pt;}
.y26{bottom:543.360047pt;}
.y10a{bottom:543.840088pt;}
.ydb{bottom:547.040039pt;}
.y1a5{bottom:547.200000pt;}
.y6e{bottom:548.640076pt;}
.y153{bottom:549.593867pt;}
.y178{bottom:551.040000pt;}
.ya9{bottom:556.320069pt;}
.y8e{bottom:557.280030pt;}
.y152{bottom:559.992927pt;}
.y12b{bottom:560.000000pt;}
.y109{bottom:561.760071pt;}
.y1a4{bottom:563.200000pt;}
.yda{bottom:564.960083pt;}
.y6d{bottom:566.560059pt;}
.y177{bottom:568.320000pt;}
.y151{bottom:568.999997pt;}
.ya8{bottom:574.240052pt;}
.y150{bottom:576.533184pt;}
.y25{bottom:576.800049pt;}
.y12a{bottom:578.560000pt;}
.y1a3{bottom:579.200000pt;}
.y108{bottom:579.680054pt;}
.yd9{bottom:582.880066pt;}
.y8d{bottom:584.160035pt;}
.y6c{bottom:584.320069pt;}
.y14f{bottom:585.540254pt;}
.ya7{bottom:592.160035pt;}
.y19b{bottom:594.240013pt;}
.y14e{bottom:594.547324pt;}
.y1a2{bottom:595.200013pt;}
.y107{bottom:597.600037pt;}
.y129{bottom:598.720013pt;}
.y176{bottom:599.040013pt;}
.yd8{bottom:600.640076pt;}
.y4d{bottom:601.280030pt;}
.y8c{bottom:602.080079pt;}
.y14d{bottom:603.554394pt;}
.y6b{bottom:606.240052pt;}
.ya6{bottom:609.920044pt;}
.y24{bottom:610.080079pt;}
.y1a1{bottom:611.200013pt;}
.y14c{bottom:612.561463pt;}
.y19a{bottom:613.120013pt;}
.y106{bottom:615.520050pt;}
.y128{bottom:617.280013pt;}
.yd7{bottom:618.560059pt;}
.y4c{bottom:619.040070pt;}
.y14b{bottom:621.568533pt;}
.y1a0{bottom:627.200013pt;}
.ya5{bottom:627.840058pt;}
.y6a{bottom:628.160065pt;}
.y8b{bottom:628.960053pt;}
.y175{bottom:629.440013pt;}
.y199{bottom:630.400013pt;}
.y105{bottom:633.280060pt;}
.y127{bottom:636.160013pt;}
.yd6{bottom:636.480072pt;}
.y4b{bottom:636.960053pt;}
.y23{bottom:640.960053pt;}
.y19f{bottom:643.200013pt;}
.ya4{bottom:645.760071pt;}
.y8a{bottom:646.880066pt;}
.y198{bottom:647.680013pt;}
.y69{bottom:650.080048pt;}
.y104{bottom:653.920044pt;}
.y171{bottom:654.298756pt;}
.yd5{bottom:654.400055pt;}
.y4a{bottom:654.880066pt;}
.y15{bottom:655.040070pt;}
.y22{bottom:662.880066pt;}
.ya3{bottom:663.680054pt;}
.y89{bottom:664.800049pt;}
.y197{bottom:664.960013pt;}
.y18a{bottom:670.720013pt;}
.y68{bottom:672.000061pt;}
.yd4{bottom:672.320069pt;}
.y49{bottom:672.800049pt;}
.y11d{bottom:674.560013pt;}
.y103{bottom:675.360047pt;}
.y19d{bottom:676.800013pt;}
.y5b{bottom:679.040070pt;}
.ya2{bottom:681.600068pt;}
.y15b{bottom:681.734241pt;}
.y14{bottom:684.320069pt;}
.y21{bottom:684.800049pt;}
.y87{bottom:687.680054pt;}
.yd3{bottom:690.240052pt;}
.y48{bottom:690.720063pt;}
.y86{bottom:691.680054pt;}
.y67{bottom:693.920044pt;}
.y19c{bottom:695.680013pt;}
.y102{bottom:695.840058pt;}
.y19e{bottom:696.000013pt;}
.y15a{bottom:696.063670pt;}
.y132{bottom:696.640013pt;}
.ya1{bottom:699.520050pt;}
.y5a{bottom:700.960053pt;}
.y20{bottom:706.720063pt;}
.yd2{bottom:708.160065pt;}
.y159{bottom:710.393100pt;}
.y13{bottom:713.600068pt;}
.y66{bottom:715.840058pt;}
.y101{bottom:717.280060pt;}
.ya0{bottom:717.440064pt;}
.y85{bottom:718.560059pt;}
.y158{bottom:724.722529pt;}
.yd1{bottom:726.080048pt;}
.y59{bottom:726.240052pt;}
.y47{bottom:726.560059pt;}
.y1f{bottom:728.960053pt;}
.y65{bottom:733.760071pt;}
.y9f{bottom:735.360047pt;}
.y84{bottom:736.480072pt;}
.y100{bottom:738.560059pt;}
.yd0{bottom:744.000061pt;}
.y157{bottom:749.287265pt;}
.y58{bottom:750.560059pt;}
.y9e{bottom:753.280060pt;}
.y64{bottom:755.680054pt;}
.yff{bottom:760.000061pt;}
.y17{bottom:761.280060pt;}
.ycf{bottom:761.920044pt;}
.y83{bottom:763.360047pt;}
.y12{bottom:767.200074pt;}
.y9d{bottom:771.200074pt;}
.y46{bottom:773.760071pt;}
.y57{bottom:774.880066pt;}
.y63{bottom:777.440064pt;}
.yce{bottom:779.680054pt;}
.y82{bottom:781.280060pt;}
.y9c{bottom:788.960053pt;}
.y11{bottom:789.120057pt;}
.y45{bottom:790.720063pt;}
.y1e{bottom:793.120057pt;}
.ycd{bottom:797.600068pt;}
.y56{bottom:799.040070pt;}
.yfe{bottom:799.200074pt;}
.y62{bottom:799.360047pt;}
.y9b{bottom:806.880066pt;}
.y81{bottom:808.160065pt;}
.y10{bottom:810.880066pt;}
.ycc{bottom:815.520050pt;}
.yfd{bottom:817.120057pt;}
.y55{bottom:819.360047pt;}
.y1d{bottom:821.280060pt;}
.y9a{bottom:824.800049pt;}
.y16{bottom:830.240052pt;}
.yf{bottom:832.800049pt;}
.ycb{bottom:833.440064pt;}
.yfc{bottom:835.040070pt;}
.y80{bottom:835.200074pt;}
.y44{bottom:836.160065pt;}
.y99{bottom:842.720063pt;}
.y61{bottom:843.200074pt;}
.y54{bottom:843.680054pt;}
.yca{bottom:851.360047pt;}
.yfb{bottom:852.960053pt;}
.ye{bottom:854.720063pt;}
.y43{bottom:855.680054pt;}
.y98{bottom:860.640046pt;}
.y7f{bottom:862.080048pt;}
.y60{bottom:865.120057pt;}
.y53{bottom:868.000061pt;}
.yc9{bottom:869.280060pt;}
.yfa{bottom:870.880066pt;}
.yd{bottom:876.640061pt;}
.y97{bottom:878.560059pt;}
.y42{bottom:886.080063pt;}
.y5f{bottom:887.040055pt;}
.yc8{bottom:887.200058pt;}
.yf9{bottom:888.800064pt;}
.y7e{bottom:888.960053pt;}
.y52{bottom:892.160065pt;}
.y96{bottom:896.480057pt;}
.yc{bottom:898.560059pt;}
.yc7{bottom:905.280060pt;}
.yf8{bottom:906.720063pt;}
.y1c{bottom:908.960053pt;}
.y95{bottom:914.400055pt;}
.y7d{bottom:915.840058pt;}
.y51{bottom:916.480057pt;}
.y41{bottom:918.560059pt;}
.yb{bottom:920.480057pt;}
.yc6{bottom:924.000061pt;}
.yf7{bottom:924.640061pt;}
.y5e{bottom:930.880066pt;}
.y94{bottom:932.320054pt;}
.y40{bottom:940.480057pt;}
.y50{bottom:940.800064pt;}
.ya{bottom:942.400055pt;}
.yc5{bottom:942.560059pt;}
.y7c{bottom:942.720063pt;}
.y5d{bottom:952.800064pt;}
.yc4{bottom:960.480057pt;}
.y3f{bottom:962.400055pt;}
.y9{bottom:964.320054pt;}
.y93{bottom:965.600052pt;}
.y4f{bottom:968.320054pt;}
.y7b{bottom:969.600052pt;}
.y5c{bottom:974.720063pt;}
.yc3{bottom:978.240052pt;}
.y3e{bottom:984.320054pt;}
.y8{bottom:986.240052pt;}
.yc2{bottom:996.160057pt;}
.y7{bottom:1008.160057pt;}
.y3d{bottom:1009.120057pt;}
.y4e{bottom:1010.560059pt;}
.y1b{bottom:1014.080056pt;}
.y4{bottom:1033.440056pt;}
.y18{bottom:1052.800057pt;}
.y1{bottom:1054.240059pt;}
.y3{bottom:1057.760056pt;}
.h2{height:16.160000pt;}
.h18{height:18.080017pt;}
.h12{height:19.040039pt;}
.h10{height:19.199951pt;}
.h11{height:19.200013pt;}
.h2e{height:19.206348pt;}
.h2f{height:25.101879pt;}
.h34{height:27.200991pt;}
.h35{height:27.224999pt;}
.h36{height:28.266718pt;}
.h31{height:29.132841pt;}
.h1f{height:29.225149pt;}
.h37{height:30.072610pt;}
.h33{height:30.430058pt;}
.h30{height:31.597351pt;}
.h2d{height:31.739134pt;}
.h32{height:32.932099pt;}
.h1e{height:34.375688pt;}
.h1a{height:37.446017pt;}
.h1b{height:37.446021pt;}
.h21{height:37.446261pt;}
.h1d{height:37.446265pt;}
.h26{height:38.854160pt;}
.h38{height:40.104164pt;}
.h1c{height:40.105029pt;}
.h29{height:41.273438pt;}
.h25{height:42.166664pt;}
.h27{height:42.710934pt;}
.h15{height:43.907576pt;}
.h2a{height:46.593750pt;}
.h28{height:46.625000pt;}
.h19{height:48.126808pt;}
.h2b{height:50.445309pt;}
.h3{height:52.836677pt;}
.h39{height:54.359372pt;}
.h16{height:56.308352pt;}
.he{height:56.467302pt;}
.h4{height:58.566137pt;}
.h5{height:60.291207pt;}
.h20{height:61.112387pt;}
.hf{height:63.658641pt;}
.h23{height:64.203121pt;}
.ha{height:65.533712pt;}
.hc{height:66.218701pt;}
.hb{height:66.858589pt;}
.hd{height:66.858593pt;}
.h14{height:68.778633pt;}
.h17{height:71.739572pt;}
.h8{height:76.674425pt;}
.h13{height:78.378613pt;}
.h9{height:81.917335pt;}
.h6{height:95.487956pt;}
.h24{height:110.062500pt;}
.h7{height:262.135247pt;}
.h2c{height:667.890533pt;}
.h22{height:720.000000pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w7{width:4.000000pt;}
.w2{width:6.240005pt;}
.w4{width:8.160003pt;}
.w3{width:60.479996pt;}
.w5{width:87.679993pt;}
.w6{width:108.160004pt;}
.w9{width:327.532533pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.w8{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:8.681467pt;}
.x5{left:10.080000pt;}
.x40{left:11.768788pt;}
.x49{left:13.696587pt;}
.x24{left:16.372280pt;}
.x23{left:19.458947pt;}
.x46{left:22.002840pt;}
.x47{left:28.530080pt;}
.x3f{left:38.237733pt;}
.x22{left:51.958947pt;}
.xe{left:70.879997pt;}
.x1{left:75.519997pt;}
.x1d{left:76.639999pt;}
.x16{left:82.720001pt;}
.x11{left:84.000000pt;}
.x8{left:95.680000pt;}
.x1f{left:97.760002pt;}
.x1c{left:99.519997pt;}
.x1b{left:107.199997pt;}
.x37{left:113.951495pt;}
.x32{left:117.752143pt;}
.x25{left:119.625613pt;}
.x30{left:120.809967pt;}
.x1a{left:123.519997pt;}
.x34{left:124.590665pt;}
.x33{left:129.017473pt;}
.x38{left:130.513643pt;}
.x31{left:132.164856pt;}
.x17{left:134.559998pt;}
.x12{left:144.479996pt;}
.x20{left:147.520004pt;}
.x9{left:148.479996pt;}
.x18{left:149.600006pt;}
.x36{left:168.040231pt;}
.x4{left:171.520004pt;}
.x39{left:177.221867pt;}
.x3a{left:179.373085pt;}
.x19{left:181.600006pt;}
.x35{left:183.502072pt;}
.x42{left:184.610543pt;}
.x3e{left:185.794248pt;}
.xc{left:187.199997pt;}
.x3d{left:189.619487pt;}
.x15{left:192.160004pt;}
.x41{left:198.428324pt;}
.x10{left:222.080002pt;}
.xf{left:229.119995pt;}
.x7{left:255.520004pt;}
.x14{left:265.600006pt;}
.x13{left:266.880005pt;}
.xb{left:273.920013pt;}
.xd{left:286.399994pt;}
.x3b{left:298.796725pt;}
.x3c{left:300.645491pt;}
.xa{left:341.760010pt;}
.x2{left:396.799988pt;}
.x2a{left:463.676400pt;}
.x2c{left:465.546133pt;}
.x27{left:469.976667pt;}
.x29{left:472.671067pt;}
.x28{left:474.049600pt;}
.x4a{left:505.347333pt;}
.x26{left:507.400400pt;}
.x4b{left:510.845200pt;}
.x6{left:526.400024pt;}
.x4c{left:541.415200pt;}
.x4e{left:557.589067pt;}
.x4f{left:576.518933pt;}
.x4d{left:585.427200pt;}
.x2b{left:605.166133pt;}
.x48{left:638.557067pt;}
.x3{left:710.719971pt;}
.x1e{left:713.119995pt;}
.x21{left:718.080017pt;}
.x45{left:902.489467pt;}
.x43{left:927.808000pt;}
.x2e{left:931.153867pt;}
.x2d{left:939.574133pt;}
.x44{left:951.808000pt;}
}




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