
    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_8c79260ffe2d66fd2294dca9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_0756be859a1d3c9d3bcbe69a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941895;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_ae5cc4eecb20401c29cf6288.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_a9eefbeccc887cac409cc3aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.717285;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_51e09297fe88628425e835fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_768f8472ab0224eb14e7d6dd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2d8800ad09e18f5cb28e1a36.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f97b5506e96c6d31b9509b32.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940000;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_8331e0771e04afe333a29074.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.871094;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_f08062f3956cc077d3b2329a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940000;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_0e1428677f8f4e80bb20fbb1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.926000;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_6ee1a75e4b0a68ade308e007.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.712000;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_ee64cd764252636847a34c78.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.926000;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_55d0ca034109586a10f13ca4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c175cc29dfbdf7716570409e.woff2')format("woff");}.fff{font-family:fff;line-height:0.873535;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_6bd14567e81e658f3ba66c4a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.722656;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_e777f23597565ee2893a3f8c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.722656;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_3c0c47211c9382ff47930e56.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.940918;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_e487d12d099d629ddfdf2baa.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.712000;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_0236602fe5cba1fd3e3554f9.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_847539b52c0ab4984ebafdf7.woff2')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_28f0764b9b3ad6c2c9746ecb.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_42b3774cbfeb43795b518bd2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_062d4bfbedeeb3979888de06.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.936000;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-7.831062px;}
.v4{vertical-align:-5.425800px;}
.v1{vertical-align:-1.350594px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.134800px;}
.v5{vertical-align:85.088640px;}
.ls39{letter-spacing:-19.137600px;}
.ls25{letter-spacing:-10.886400px;}
.ls2{letter-spacing:-8.868000px;}
.ls13{letter-spacing:-7.948800px;}
.ls1a{letter-spacing:-5.918400px;}
.ls33{letter-spacing:-3.175200px;}
.ls31{letter-spacing:-2.469600px;}
.ls18{letter-spacing:-2.440800px;}
.ls20{letter-spacing:-2.332800px;}
.ls16{letter-spacing:-0.950400px;}
.ls10{letter-spacing:-0.793800px;}
.ls5{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.086400px;}
.ls28{letter-spacing:-0.072000px;}
.ls1c{letter-spacing:-0.067200px;}
.ls19{letter-spacing:-0.064800px;}
.ls26{letter-spacing:-0.057600px;}
.ls29{letter-spacing:-0.054000px;}
.ls32{letter-spacing:-0.050400px;}
.ls36{letter-spacing:-0.045000px;}
.lsb{letter-spacing:-0.043200px;}
.ls14{letter-spacing:-0.038400px;}
.ls2f{letter-spacing:-0.033600px;}
.ls37{letter-spacing:-0.030000px;}
.ls24{letter-spacing:-0.028800px;}
.ls2a{letter-spacing:-0.027000px;}
.ls9{letter-spacing:-0.024000px;}
.ls17{letter-spacing:-0.021600px;}
.lsc{letter-spacing:-0.015600px;}
.ls38{letter-spacing:-0.015000px;}
.ls23{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.015600px;}
.lsf{letter-spacing:0.016200px;}
.ls3f{letter-spacing:0.019200px;}
.ls1e{letter-spacing:0.020400px;}
.ls3{letter-spacing:0.021600px;}
.ls8{letter-spacing:0.024000px;}
.lse{letter-spacing:0.025200px;}
.lsd{letter-spacing:0.026400px;}
.ls1d{letter-spacing:0.028800px;}
.ls3a{letter-spacing:0.031200px;}
.ls7{letter-spacing:0.033600px;}
.ls1f{letter-spacing:0.043200px;}
.ls35{letter-spacing:0.045000px;}
.ls2c{letter-spacing:0.048576px;}
.ls2d{letter-spacing:0.049632px;}
.ls30{letter-spacing:0.050400px;}
.ls2b{letter-spacing:0.054000px;}
.ls27{letter-spacing:0.057600px;}
.ls1b{letter-spacing:0.062040px;}
.ls34{letter-spacing:0.062400px;}
.ls6{letter-spacing:0.079200px;}
.ls2e{letter-spacing:0.086400px;}
.ls4{letter-spacing:0.091872px;}
.ls3e{letter-spacing:0.092664px;}
.ls3d{letter-spacing:0.098400px;}
.ls22{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.129600px;}
.ls0{letter-spacing:0.136800px;}
.ls11{letter-spacing:0.172800px;}
.ls3b{letter-spacing:98.400000px;}
.ls3c{letter-spacing:134.400000px;}
.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;}
}
.ws3d{word-spacing:-128.895624px;}
.ws15{word-spacing:-127.702080px;}
.ws3c{word-spacing:-111.290400px;}
.ws3b{word-spacing:-111.192000px;}
.ws1d{word-spacing:-110.088000px;}
.ws2{word-spacing:-97.632000px;}
.ws37{word-spacing:-93.408000px;}
.ws27{word-spacing:-61.020000px;}
.ws28{word-spacing:-60.993000px;}
.ws36{word-spacing:-60.091200px;}
.ws26{word-spacing:-60.048000px;}
.ws21{word-spacing:-48.924000px;}
.ws2c{word-spacing:-48.902400px;}
.ws2a{word-spacing:-48.859200px;}
.ws2d{word-spacing:-48.837600px;}
.ws19{word-spacing:-48.816000px;}
.ws12{word-spacing:-48.794400px;}
.ws2b{word-spacing:-48.772800px;}
.ws13{word-spacing:-48.751200px;}
.ws11{word-spacing:-48.729600px;}
.ws3{word-spacing:-46.737600px;}
.ws20{word-spacing:-46.483200px;}
.ws1f{word-spacing:-46.375200px;}
.ws35{word-spacing:-43.368000px;}
.ws14{word-spacing:-42.897600px;}
.ws29{word-spacing:-40.060800px;}
.wsd{word-spacing:-40.032000px;}
.ws16{word-spacing:-37.968000px;}
.ws1a{word-spacing:-37.900800px;}
.ws9{word-spacing:-36.722400px;}
.ws2f{word-spacing:-35.256000px;}
.ws31{word-spacing:-33.900000px;}
.ws30{word-spacing:-33.855000px;}
.ws4{word-spacing:-33.360000px;}
.ws18{word-spacing:-32.544000px;}
.ws22{word-spacing:-32.529600px;}
.ws23{word-spacing:-32.515200px;}
.ws24{word-spacing:-32.500800px;}
.ws25{word-spacing:-32.486400px;}
.ws1e{word-spacing:-30.045600px;}
.ws38{word-spacing:-30.024000px;}
.ws17{word-spacing:-29.832000px;}
.ws33{word-spacing:-29.678400px;}
.wsa{word-spacing:-27.682200px;}
.wsb{word-spacing:-26.688000px;}
.ws5{word-spacing:-25.764000px;}
.ws0{word-spacing:-24.492000px;}
.ws7{word-spacing:-21.699600px;}
.ws6{word-spacing:-21.684000px;}
.ws1b{word-spacing:-20.340000px;}
.ws34{word-spacing:-20.016000px;}
.ws32{word-spacing:-14.916000px;}
.wse{word-spacing:-0.672000px;}
.wsc{word-spacing:-0.096000px;}
.ws1{word-spacing:0.000000px;}
.ws39{word-spacing:14.142000px;}
.ws3a{word-spacing:14.142600px;}
.ws1c{word-spacing:915.878400px;}
.wsf{word-spacing:1045.838400px;}
.ws10{word-spacing:1049.816400px;}
.ws8{word-spacing:1075.868400px;}
.ws2e{word-spacing:2456.489400px;}
._1a{margin-left:-474.261900px;}
._3{margin-left:-50.616000px;}
._9{margin-left:-29.264400px;}
._a{margin-left:-22.408200px;}
._5{margin-left:-18.436032px;}
._12{margin-left:-15.368400px;}
._15{margin-left:-13.188384px;}
._2{margin-left:-12.106800px;}
._c{margin-left:-10.656000px;}
._14{margin-left:-8.986560px;}
._b{margin-left:-7.920000px;}
._8{margin-left:-5.443200px;}
._4{margin-left:-3.590280px;}
._0{margin-left:-2.308200px;}
._6{margin-left:-1.272600px;}
._7{width:1.026000px;}
._d{width:2.405280px;}
._1d{width:3.520800px;}
._e{width:4.550880px;}
._f{width:5.758560px;}
._1{width:8.880000px;}
._11{width:10.800000px;}
._19{width:15.120000px;}
._18{width:19.224000px;}
._1b{width:62.958000px;}
._16{width:322.205400px;}
._17{width:371.952000px;}
._13{width:707.183280px;}
._10{width:1471.262160px;}
._1c{width:5251.114380px;}
.fc18{color:rgb(82,187,42);}
.fc16{color:rgb(0,122,174);}
.fc14{color:rgb(38,38,38);}
.fc12{color:rgb(19,52,118);}
.fc19{color:rgb(189,204,24);}
.fc10{color:rgb(0,55,118);}
.fce{color:rgb(128,128,128);}
.fcd{color:rgb(63,63,63);}
.fc0{color:rgb(0,0,0);}
.fc3{color:rgb(173,186,199);}
.fc6{color:rgb(151,151,151);}
.fc7{color:rgb(64,64,64);}
.fc4{color:rgb(255,255,255);}
.fcb{color:rgb(255,255,255);}
.fc13{color:rgb(89,89,89);}
.fcc{color:rgb(89,89,89);}
.fc1a{color:rgb(13,26,45);}
.fc17{color:rgb(0,158,73);}
.fcf{color:rgb(18,54,118);}
.fc2{color:rgb(0,152,217);}
.fc11{color:rgb(13,13,13);}
.fc1{color:rgb(11,27,46);}
.fc8{color:rgb(69,90,100);}
.fc5{color:rgb(11,28,46);}
.fc9{color:rgb(28,74,135);}
.fc15{color:rgb(68,84,106);}
.fca{color:transparent;}
.fs1b{font-size:66.000000px;}
.fs1c{font-size:72.000000px;}
.fsc{font-size:78.000000px;}
.fs11{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.fs1e{font-size:102.000000px;}
.fs1{font-size:108.000000px;}
.fs9{font-size:114.000000px;}
.fs0{font-size:120.000000px;}
.fse{font-size:126.000000px;}
.fsd{font-size:132.000000px;}
.fsb{font-size:144.000000px;}
.fs1a{font-size:150.000000px;}
.fs19{font-size:156.000000px;}
.fs12{font-size:162.000000px;}
.fs8{font-size:168.000000px;}
.fs18{font-size:180.000000px;}
.fs10{font-size:192.000000px;}
.fs3{font-size:203.040000px;}
.fs13{font-size:204.000000px;}
.fsa{font-size:216.000000px;}
.fs1d{font-size:240.000000px;}
.fs16{font-size:242.880000px;}
.fs17{font-size:248.160000px;}
.fs14{font-size:270.000000px;}
.fs15{font-size:288.000000px;}
.fs1f{font-size:336.000000px;}
.fs7{font-size:396.000000px;}
.fs6{font-size:432.000000px;}
.fs5{font-size:459.360000px;}
.fs21{font-size:463.320000px;}
.fs20{font-size:492.000000px;}
.fsf{font-size:672.000000px;}
.fs2{font-size:684.000000px;}
.y2{bottom:-24.262830px;}
.y0{bottom:0.000000px;}
.ye0{bottom:2.351400px;}
.y67{bottom:4.590900px;}
.y1{bottom:11.737170px;}
.yc{bottom:12.209472px;}
.y5e{bottom:12.209474px;}
.y3{bottom:12.547121px;}
.yeb{bottom:12.548100px;}
.ya6{bottom:13.338450px;}
.ya3{bottom:13.338600px;}
.y3e{bottom:16.007880px;}
.y36{bottom:16.007895px;}
.y93{bottom:16.090530px;}
.y69{bottom:16.215900px;}
.y10c{bottom:17.880150px;}
.y1c{bottom:19.160850px;}
.y129{bottom:19.584150px;}
.y83{bottom:21.000000px;}
.yed{bottom:21.216000px;}
.y2d{bottom:22.702200px;}
.y58{bottom:23.783100px;}
.ye5{bottom:24.631200px;}
.ye3{bottom:24.631350px;}
.y61{bottom:25.945350px;}
.ydd{bottom:27.026250px;}
.yd0{bottom:28.107300px;}
.yd5{bottom:28.107450px;}
.yc7{bottom:30.269550px;}
.ycc{bottom:32.431650px;}
.y105{bottom:33.295500px;}
.yf8{bottom:35.004750px;}
.y27{bottom:35.788500px;}
.yfa{bottom:36.540000px;}
.yef{bottom:37.011450px;}
.yf1{bottom:37.059900px;}
.yf5{bottom:37.060050px;}
.y12{bottom:37.695675px;}
.y1e{bottom:38.917950px;}
.y4a{bottom:38.917965px;}
.y51{bottom:38.917980px;}
.y63{bottom:38.918100px;}
.y76{bottom:38.918400px;}
.yd3{bottom:42.729000px;}
.y95{bottom:42.767100px;}
.y1a{bottom:43.698450px;}
.ydb{bottom:44.387760px;}
.y92{bottom:45.970410px;}
.y3d{bottom:46.007880px;}
.y35{bottom:46.007895px;}
.y40{bottom:46.813350px;}
.y4c{bottom:46.813500px;}
.y99{bottom:47.475300px;}
.y9c{bottom:47.475450px;}
.y5c{bottom:47.507880px;}
.y86{bottom:54.280785px;}
.y97{bottom:55.036200px;}
.ya5{bottom:55.338450px;}
.ya2{bottom:55.338600px;}
.y2f{bottom:57.482550px;}
.yd7{bottom:57.573525px;}
.y32{bottom:58.793460px;}
.y39{bottom:59.273385px;}
.y59{bottom:61.441995px;}
.y2c{bottom:61.702200px;}
.y8f{bottom:64.695435px;}
.y113{bottom:67.890450px;}
.y88{bottom:69.445350px;}
.y4f{bottom:69.781200px;}
.ya{bottom:70.367085px;}
.y5d{bottom:72.492180px;}
.y91{bottom:73.090530px;}
.y46{bottom:73.526100px;}
.y26{bottom:74.788500px;}
.y6b{bottom:74.838615px;}
.y3c{bottom:76.007880px;}
.y6d{bottom:76.838580px;}
.ycf{bottom:77.607300px;}
.y5b{bottom:78.887760px;}
.y6f{bottom:80.838615px;}
.yb8{bottom:81.450555px;}
.yb9{bottom:81.877365px;}
.y11{bottom:81.996900px;}
.yda{bottom:86.387760px;}
.yc9{bottom:89.269500px;}
.yc6{bottom:89.269650px;}
.y34{bottom:89.507895px;}
.y31{bottom:90.471000px;}
.y55{bottom:90.471300px;}
.y18{bottom:90.471450px;}
.y49{bottom:99.509790px;}
.y9{bottom:100.367085px;}
.y2b{bottom:100.702200px;}
.y90{bottom:101.590515px;}
.y127{bottom:102.828015px;}
.y48{bottom:103.958610px;}
.y10f{bottom:104.142150px;}
.yc1{bottom:104.917950px;}
.yc4{bottom:104.918100px;}
.y3b{bottom:106.007865px;}
.y50{bottom:106.181685px;}
.yfc{bottom:108.288405px;}
.y5a{bottom:109.007955px;}
.yd9{bottom:113.507925px;}
.y112{bottom:113.556450px;}
.y33{bottom:118.007940px;}
.y6a{bottom:118.338615px;}
.y6c{bottom:120.338580px;}
.yb6{bottom:120.703515px;}
.y6e{bottom:124.338615px;}
.yb3{bottom:125.933640px;}
.y11a{bottom:129.501630px;}
.y8{bottom:130.367085px;}
.y24{bottom:130.783200px;}
.y25{bottom:131.232750px;}
.y126{bottom:135.828015px;}
.y3a{bottom:136.007865px;}
.y14{bottom:138.284160px;}
.y10b{bottom:138.642150px;}
.y45{bottom:139.526100px;}
.y2a{bottom:139.702200px;}
.y16{bottom:141.706080px;}
.yd8{bottom:142.007925px;}
.y78{bottom:146.710260px;}
.y125{bottom:147.555840px;}
.y53{bottom:149.166525px;}
.y109{bottom:150.634050px;}
.y23{bottom:153.283200px;}
.yb7{bottom:155.761500px;}
.yf9{bottom:158.756100px;}
.yf7{bottom:163.865250px;}
.yc0{bottom:170.917950px;}
.y13{bottom:172.784100px;}
.y100{bottom:174.049650px;}
.y124{bottom:176.055900px;}
.y15{bottom:176.206050px;}
.y29{bottom:178.702200px;}
.y62{bottom:181.540950px;}
.y77{bottom:182.815050px;}
.y10a{bottom:184.308150px;}
.y5f{bottom:187.475550px;}
.yfe{bottom:192.049650px;}
.yb5{bottom:193.658100px;}
.y119{bottom:195.501600px;}
.y22{bottom:198.283200px;}
.y123{bottom:204.555900px;}
.y44{bottom:205.526100px;}
.y60{bottom:210.552750px;}
.yf{bottom:214.304700px;}
.y21{bottom:220.783200px;}
.yba{bottom:223.805550px;}
.y68{bottom:227.278800px;}
.yb0{bottom:232.893900px;}
.y122{bottom:233.055900px;}
.ybf{bottom:236.917950px;}
.yc3{bottom:236.918100px;}
.yff{bottom:237.049650px;}
.y66{bottom:238.137600px;}
.y20{bottom:243.283200px;}
.y85{bottom:248.734350px;}
.y8c{bottom:254.385750px;}
.yfd{bottom:255.049650px;}
.yb4{bottom:258.457950px;}
.y1b{bottom:258.891000px;}
.y7{bottom:263.194050px;}
.y120{bottom:269.368800px;}
.y43{bottom:271.526100px;}
.ydc{bottom:311.342400px;}
.y81{bottom:312.653850px;}
.yaf{bottom:319.893900px;}
.ye8{bottom:324.459000px;}
.y47{bottom:327.880650px;}
.y4e{bottom:337.506900px;}
.y42{bottom:337.526100px;}
.yae{bottom:340.181250px;}
.ya0{bottom:344.528550px;}
.ye{bottom:346.304700px;}
.y6{bottom:346.744050px;}
.yc2{bottom:347.992500px;}
.yca{bottom:350.640600px;}
.yce{bottom:359.279100px;}
.y28{bottom:363.734850px;}
.ybe{bottom:368.917950px;}
.y7c{bottom:372.393000px;}
.yf6{bottom:375.512250px;}
.ye7{bottom:398.880750px;}
.y10e{bottom:429.379050px;}
.y7b{bottom:432.393000px;}
.y128{bottom:435.309600px;}
.yad{bottom:437.113050px;}
.ybd{bottom:442.434450px;}
.yea{bottom:444.156750px;}
.y84{bottom:444.597000px;}
.yf4{bottom:447.969450px;}
.y9f{bottom:450.930750px;}
.y2e{bottom:457.479000px;}
.ybb{bottom:473.930850px;}
.ye4{bottom:477.505050px;}
.y73{bottom:490.217400px;}
.yf0{bottom:491.189400px;}
.ycb{bottom:493.514400px;}
.yd1{bottom:493.650300px;}
.yd{bottom:513.824250px;}
.ye9{bottom:520.285950px;}
.y74{bottom:527.375100px;}
.yac{bottom:534.045000px;}
.yf3{bottom:539.189400px;}
.y9e{bottom:557.332800px;}
.y8d{bottom:563.829450px;}
.y37{bottom:589.242600px;}
.y17{bottom:617.399550px;}
.y7e{bottom:628.510500px;}
.yab{bottom:630.976800px;}
.y8a{bottom:643.391250px;}
.y11e{bottom:659.001600px;}
.yf2{bottom:659.189400px;}
.y9d{bottom:663.734850px;}
.y19{bottom:665.466000px;}
.y1d{bottom:665.962800px;}
.y65{bottom:683.983050px;}
.y7d{bottom:688.510500px;}
.y10d{bottom:708.124050px;}
.y57{bottom:714.144750px;}
.y11d{bottom:725.001600px;}
.y7a{bottom:725.022900px;}
.yaa{bottom:727.908750px;}
.y118{bottom:738.501600px;}
.y5{bottom:739.835400px;}
.y9b{bottom:770.136900px;}
.y79{bottom:785.022900px;}
.y11c{bottom:791.001600px;}
.ye6{bottom:798.561150px;}
.y4d{bottom:803.538300px;}
.yd6{bottom:803.618100px;}
.y117{bottom:804.501600px;}
.yd4{bottom:805.126650px;}
.y82{bottom:814.048050px;}
.y108{bottom:822.474900px;}
.ya9{bottom:824.840550px;}
.y1f{bottom:824.940600px;}
.y11b{bottom:857.001600px;}
.y8b{bottom:867.273150px;}
.y116{bottom:870.501600px;}
.y9a{bottom:876.539100px;}
.y80{bottom:885.093150px;}
.ya8{bottom:921.772500px;}
.y41{bottom:922.860000px;}
.y4{bottom:924.785400px;}
.y107{bottom:942.924750px;}
.y7f{bottom:945.093150px;}
.yc5{bottom:949.187850px;}
.yc8{bottom:949.188150px;}
.y11f{bottom:955.285650px;}
.ydf{bottom:957.980250px;}
.ye1{bottom:959.541300px;}
.y98{bottom:982.941150px;}
.y3f{bottom:997.398450px;}
.y110{bottom:1001.784900px;}
.y89{bottom:1011.891450px;}
.y56{bottom:1018.123350px;}
.ya7{bottom:1018.704300px;}
.yfb{bottom:1045.728750px;}
.y104{bottom:1046.217900px;}
.y4b{bottom:1048.539000px;}
.y106{bottom:1063.374750px;}
.yec{bottom:1079.014650px;}
.ye2{bottom:1086.180150px;}
.y96{bottom:1089.343200px;}
.ya4{bottom:1115.636250px;}
.y111{bottom:1131.446850px;}
.y72{bottom:1144.459050px;}
.yde{bottom:1144.727700px;}
.yee{bottom:1168.991250px;}
.y87{bottom:1186.461150px;}
.y94{bottom:1203.306150px;}
.yb2{bottom:1203.463350px;}
.ya1{bottom:1212.568050px;}
.y103{bottom:1256.610300px;}
.yd2{bottom:1276.648200px;}
.ybc{bottom:1281.444450px;}
.y64{bottom:1284.424800px;}
.yb1{bottom:1288.429650px;}
.ycd{bottom:1290.498300px;}
.y8e{bottom:1292.077800px;}
.y102{bottom:1310.879550px;}
.y71{bottom:1327.895250px;}
.y115{bottom:1366.753800px;}
.y101{bottom:1373.879550px;}
.y114{bottom:1384.732200px;}
.y54{bottom:1410.769200px;}
.y30{bottom:1411.399500px;}
.yb{bottom:1430.404650px;}
.y121{bottom:1430.632200px;}
.y10{bottom:1435.761750px;}
.y38{bottom:1458.123300px;}
.y75{bottom:1462.964100px;}
.y52{bottom:1473.462000px;}
.y70{bottom:1478.819100px;}
.h32{height:21.000000px;}
.h5a{height:31.200000px;}
.h5d{height:38.210220px;}
.h34{height:38.250000px;}
.h5b{height:41.764650px;}
.h5c{height:45.890625px;}
.h5e{height:52.632000px;}
.h18{height:56.786133px;}
.h2b{height:58.500000px;}
.h2f{height:63.300000px;}
.h14{height:64.469880px;}
.h33{height:64.599609px;}
.h76{height:64.956030px;}
.h58{height:65.250000px;}
.h57{height:68.352000px;}
.h8{height:68.906250px;}
.h55{height:69.000000px;}
.h21{height:70.176000px;}
.h74{height:70.734375px;}
.h5f{height:71.244030px;}
.h68{height:74.562000px;}
.h6f{height:78.948000px;}
.h50{height:79.500000px;}
.h3{height:79.576172px;}
.h39{height:79.800000px;}
.h10{height:81.826172px;}
.h2{height:86.894531px;}
.h1c{height:87.301758px;}
.hf{height:87.363281px;}
.h70{height:87.720000px;}
.h1{height:88.886719px;}
.h36{height:89.428704px;}
.h54{height:89.797335px;}
.h65{height:90.590550px;}
.h2e{height:92.838867px;}
.h16{height:93.000000px;}
.h43{height:93.931875px;}
.h24{height:94.719690px;}
.h2c{height:94.746094px;}
.h1a{height:96.164062px;}
.h3e{height:98.693805px;}
.h3a{height:100.125000px;}
.h66{height:102.295290px;}
.h63{height:102.814665px;}
.h30{height:103.359375px;}
.h42{height:103.402080px;}
.hd{height:104.216520px;}
.h59{height:104.296875px;}
.h6a{height:104.876580px;}
.h44{height:104.906250px;}
.h15{height:105.264000px;}
.h35{height:106.101562px;}
.h3b{height:106.800000px;}
.h40{height:110.962995px;}
.h53{height:111.972656px;}
.h13{height:113.080530px;}
.h64{height:113.648438px;}
.h60{height:114.036000px;}
.h4e{height:116.812500px;}
.h29{height:117.687525px;}
.h52{height:118.500000px;}
.h61{height:119.751300px;}
.h37{height:119.997070px;}
.h31{height:120.585938px;}
.he{height:122.390625px;}
.h51{height:125.156250px;}
.h4d{height:130.999995px;}
.h25{height:133.500000px;}
.h19{height:134.510955px;}
.h3d{height:134.986470px;}
.h6e{height:140.352000px;}
.h38{height:141.843750px;}
.h2d{height:142.403835px;}
.h67{height:144.480000px;}
.h7{height:149.603203px;}
.h27{height:150.187500px;}
.h6{height:150.396328px;}
.h20{height:151.403850px;}
.h28{height:153.591750px;}
.h12{height:155.039062px;}
.h69{height:157.253906px;}
.h48{height:157.359375px;}
.h3c{height:159.152344px;}
.h6b{height:159.996094px;}
.h75{height:164.664812px;}
.h23{height:169.403850px;}
.h71{height:174.552450px;}
.h56{height:175.403850px;}
.h62{height:175.440000px;}
.h49{height:178.957969px;}
.h4a{height:182.848359px;}
.h3f{height:187.734375px;}
.h1d{height:191.909700px;}
.h41{height:193.798828px;}
.h47{height:196.875000px;}
.h45{height:207.281250px;}
.h1f{height:208.600500px;}
.h2a{height:209.230800px;}
.h11{height:209.353500px;}
.h46{height:211.009800px;}
.h1b{height:213.675000px;}
.h4f{height:225.000000px;}
.h6c{height:244.781250px;}
.h6d{height:245.304000px;}
.h17{height:271.812900px;}
.hc{height:291.779297px;}
.hb{height:310.078125px;}
.h1e{height:315.792000px;}
.h9{height:338.463984px;}
.h73{height:341.381777px;}
.h72{height:353.144531px;}
.h4c{height:357.000000px;}
.h26{height:391.608150px;}
.h22{height:458.718750px;}
.h4b{height:489.000000px;}
.h4{height:503.982422px;}
.h5{height:506.654297px;}
.ha{height:592.351500px;}
.h0{height:1620.000000px;}
.w48{width:101.102370px;}
.w1d{width:106.836915px;}
.wb{width:110.417640px;}
.w39{width:113.006775px;}
.wf{width:128.712285px;}
.w20{width:130.171410px;}
.w13{width:133.305840px;}
.w7{width:137.976570px;}
.w3b{width:159.086700px;}
.w36{width:182.022300px;}
.w16{width:195.392550px;}
.w2d{width:200.529150px;}
.w4{width:203.489700px;}
.w23{width:205.359450px;}
.wc{width:218.865450px;}
.w15{width:219.865500px;}
.w24{width:227.227050px;}
.w3{width:229.522950px;}
.w3a{width:232.562250px;}
.w22{width:234.250350px;}
.w2e{width:245.157450px;}
.w1f{width:252.556050px;}
.w1e{width:261.857100px;}
.w25{width:262.681950px;}
.w41{width:268.831500px;}
.w21{width:274.601400px;}
.w3f{width:284.569800px;}
.w34{width:285.827250px;}
.w5{width:307.877850px;}
.w42{width:338.446200px;}
.w10{width:361.610100px;}
.w1c{width:369.123450px;}
.w3d{width:382.196850px;}
.w29{width:384.109950px;}
.w8{width:384.210000px;}
.w6{width:402.557850px;}
.w3c{width:436.373250px;}
.w40{width:459.709050px;}
.w1b{width:462.468000px;}
.w3e{width:477.884400px;}
.w2a{width:478.014900px;}
.w30{width:503.385600px;}
.w32{width:518.409150px;}
.w31{width:521.385900px;}
.w2f{width:525.708750px;}
.w28{width:542.134350px;}
.w2c{width:586.417350px;}
.w4b{width:589.608000px;}
.w14{width:593.127000px;}
.w43{width:599.853450px;}
.w49{width:608.002650px;}
.w38{width:648.658950px;}
.w46{width:686.929200px;}
.w4c{width:714.552000px;}
.w18{width:720.072600px;}
.w2b{width:755.386500px;}
.w33{width:805.953450px;}
.w11{width:810.335400px;}
.w12{width:817.037100px;}
.w19{width:829.760100px;}
.w17{width:830.322600px;}
.w47{width:846.425250px;}
.w1a{width:853.924800px;}
.w26{width:894.000000px;}
.wd{width:895.500000px;}
.w37{width:904.260000px;}
.we{width:916.781850px;}
.w27{width:929.244300px;}
.w2{width:944.881950px;}
.w45{width:955.275300px;}
.w44{width:955.275450px;}
.wa{width:1058.368650px;}
.w1{width:1184.703150px;}
.w9{width:1193.196900px;}
.w4a{width:1199.834550px;}
.w35{width:2368.393500px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x40{left:5.625000px;}
.x82{left:9.750000px;}
.x17{left:11.234850px;}
.x1a{left:14.250000px;}
.x1e{left:17.366085px;}
.x34{left:19.836000px;}
.x53{left:22.180500px;}
.x73{left:23.529000px;}
.x75{left:26.930400px;}
.x1f{left:28.795275px;}
.x22{left:31.454700px;}
.x44{left:33.260880px;}
.x68{left:35.149575px;}
.xc3{left:39.048105px;}
.x74{left:42.210150px;}
.x78{left:44.044200px;}
.x72{left:45.413850px;}
.x16{left:47.005500px;}
.x23{left:49.365720px;}
.x51{left:52.758000px;}
.x49{left:53.855835px;}
.x32{left:56.934765px;}
.x14{left:60.023100px;}
.x52{left:62.769000px;}
.x89{left:63.903000px;}
.x77{left:68.091000px;}
.x9c{left:69.331500px;}
.x55{left:72.295500px;}
.x70{left:77.059095px;}
.x6c{left:81.295950px;}
.xa0{left:83.520000px;}
.x54{left:88.398000px;}
.x67{left:91.101330px;}
.x66{left:96.799995px;}
.x5b{left:98.303100px;}
.xa{left:103.360500px;}
.x83{left:105.162630px;}
.x9e{left:109.124250px;}
.x9{left:117.917700px;}
.x5c{left:121.357950px;}
.x84{left:126.231120px;}
.x6e{left:131.551500px;}
.x5e{left:132.679350px;}
.xa3{left:139.426500px;}
.x6a{left:148.057350px;}
.x3a{left:149.740590px;}
.xf{left:154.939050px;}
.x31{left:156.035700px;}
.x5d{left:157.843500px;}
.x7f{left:159.531000px;}
.x59{left:161.547750px;}
.x29{left:204.437550px;}
.x4f{left:206.457000px;}
.x6{left:208.800000px;}
.x21{left:219.554400px;}
.xb3{left:226.571400px;}
.x69{left:232.414050px;}
.x85{left:237.104250px;}
.xae{left:263.733150px;}
.x5{left:266.100000px;}
.xb4{left:280.571400px;}
.x10{left:283.249350px;}
.x20{left:284.481150px;}
.x58{left:289.500000px;}
.xb5{left:329.236050px;}
.x98{left:339.500100px;}
.x79{left:342.519300px;}
.x87{left:357.073050px;}
.xc2{left:365.839050px;}
.x30{left:374.959500px;}
.x11{left:379.445700px;}
.x71{left:386.894100px;}
.x3d{left:397.374150px;}
.x13{left:401.342550px;}
.x3e{left:403.068450px;}
.x45{left:440.649900px;}
.xb1{left:450.791850px;}
.x3c{left:470.540400px;}
.x3{left:482.799600px;}
.x4{left:496.848600px;}
.xbf{left:527.162700px;}
.x63{left:557.066250px;}
.x8{left:595.437150px;}
.x2b{left:601.582650px;}
.xd{left:608.213250px;}
.x57{left:610.344000px;}
.x25{left:611.844000px;}
.x8c{left:614.556000px;}
.x24{left:617.133000px;}
.x35{left:618.134700px;}
.x8a{left:620.699400px;}
.x28{left:621.846300px;}
.x4c{left:634.969800px;}
.x4b{left:641.199450px;}
.xbb{left:737.839650px;}
.x19{left:746.198250px;}
.x38{left:793.248750px;}
.x65{left:831.868950px;}
.x5a{left:834.634350px;}
.xa8{left:861.695550px;}
.xc{left:866.657250px;}
.x4a{left:883.167150px;}
.x8b{left:884.700600px;}
.xb7{left:891.686400px;}
.xa5{left:894.270300px;}
.xa4{left:900.080100px;}
.xa7{left:910.057650px;}
.x2a{left:916.253700px;}
.xe{left:944.542050px;}
.x7a{left:969.263400px;}
.xa6{left:972.080100px;}
.x56{left:989.680350px;}
.x86{left:993.518100px;}
.x27{left:1006.934700px;}
.x3b{left:1010.561850px;}
.x8e{left:1015.501800px;}
.x8d{left:1027.931250px;}
.x76{left:1036.289400px;}
.x47{left:1060.493850px;}
.x48{left:1085.344950px;}
.x4e{left:1091.317500px;}
.xa9{left:1101.695550px;}
.x61{left:1112.765700px;}
.xb0{left:1122.852600px;}
.xb2{left:1135.257900px;}
.xaa{left:1141.920000px;}
.xc1{left:1161.659100px;}
.x99{left:1170.090450px;}
.x1b{left:1200.342300px;}
.xb{left:1204.865250px;}
.x18{left:1211.620050px;}
.x81{left:1234.410150px;}
.x46{left:1262.649900px;}
.x62{left:1272.919950px;}
.x9d{left:1274.616900px;}
.xaf{left:1281.965400px;}
.x42{left:1285.003050px;}
.xbe{left:1335.662700px;}
.x95{left:1407.168450px;}
.xbc{left:1411.486650px;}
.x36{left:1419.246000px;}
.x5f{left:1429.500000px;}
.x6b{left:1498.924050px;}
.xb8{left:1500.687000px;}
.x2d{left:1514.146500px;}
.x96{left:1519.107000px;}
.x97{left:1522.146000px;}
.xc4{left:1545.391500px;}
.x1{left:1596.819000px;}
.x64{left:1598.692500px;}
.x7b{left:1613.298000px;}
.x2f{left:1620.445500px;}
.xa2{left:1628.389500px;}
.x26{left:1630.245000px;}
.x33{left:1650.495000px;}
.x7d{left:1680.396000px;}
.x3f{left:1714.423500px;}
.x90{left:1724.145000px;}
.x12{left:1725.400500px;}
.x9a{left:1786.032000px;}
.x9f{left:1793.901000px;}
.x93{left:1833.969000px;}
.x1c{left:1870.486500px;}
.xc0{left:1872.286500px;}
.xac{left:1880.175000px;}
.x7e{left:1909.069500px;}
.x60{left:1910.515500px;}
.x39{left:1925.946000px;}
.x92{left:1936.777500px;}
.x91{left:1941.870000px;}
.xad{left:1991.299500px;}
.xb6{left:2004.426000px;}
.xc5{left:2040.124500px;}
.xba{left:2108.187000px;}
.x41{left:2130.595500px;}
.x6d{left:2132.179500px;}
.x8f{left:2169.493500px;}
.x4d{left:2171.455500px;}
.xbd{left:2216.109000px;}
.x9b{left:2217.727500px;}
.x88{left:2222.943000px;}
.x7c{left:2249.529000px;}
.x94{left:2276.004000px;}
.xa1{left:2278.359000px;}
.x15{left:2299.405500px;}
.xab{left:2393.236500px;}
.x2{left:2423.851500px;}
.x2e{left:2434.911000px;}
.x2c{left:2437.207500px;}
.x1d{left:2456.713500px;}
.x50{left:2531.310000px;}
.xb9{left:2681.793000px;}
.x6f{left:2773.810500px;}
.x80{left:2816.932500px;}
.x37{left:2826.145500px;}
.x43{left:2827.984500px;}
.x7{left:2835.492000px;}
@media print{
.v2{vertical-align:-6.960944pt;}
.v4{vertical-align:-4.822933pt;}
.v1{vertical-align:-1.200528pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.564267pt;}
.v5{vertical-align:75.634347pt;}
.ls39{letter-spacing:-17.011200pt;}
.ls25{letter-spacing:-9.676800pt;}
.ls2{letter-spacing:-7.882667pt;}
.ls13{letter-spacing:-7.065600pt;}
.ls1a{letter-spacing:-5.260800pt;}
.ls33{letter-spacing:-2.822400pt;}
.ls31{letter-spacing:-2.195200pt;}
.ls18{letter-spacing:-2.169600pt;}
.ls20{letter-spacing:-2.073600pt;}
.ls16{letter-spacing:-0.844800pt;}
.ls10{letter-spacing:-0.705600pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.076800pt;}
.ls28{letter-spacing:-0.064000pt;}
.ls1c{letter-spacing:-0.059733pt;}
.ls19{letter-spacing:-0.057600pt;}
.ls26{letter-spacing:-0.051200pt;}
.ls29{letter-spacing:-0.048000pt;}
.ls32{letter-spacing:-0.044800pt;}
.ls36{letter-spacing:-0.040000pt;}
.lsb{letter-spacing:-0.038400pt;}
.ls14{letter-spacing:-0.034133pt;}
.ls2f{letter-spacing:-0.029867pt;}
.ls37{letter-spacing:-0.026667pt;}
.ls24{letter-spacing:-0.025600pt;}
.ls2a{letter-spacing:-0.024000pt;}
.ls9{letter-spacing:-0.021333pt;}
.ls17{letter-spacing:-0.019200pt;}
.lsc{letter-spacing:-0.013867pt;}
.ls38{letter-spacing:-0.013333pt;}
.ls23{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.013867pt;}
.lsf{letter-spacing:0.014400pt;}
.ls3f{letter-spacing:0.017067pt;}
.ls1e{letter-spacing:0.018133pt;}
.ls3{letter-spacing:0.019200pt;}
.ls8{letter-spacing:0.021333pt;}
.lse{letter-spacing:0.022400pt;}
.lsd{letter-spacing:0.023467pt;}
.ls1d{letter-spacing:0.025600pt;}
.ls3a{letter-spacing:0.027733pt;}
.ls7{letter-spacing:0.029867pt;}
.ls1f{letter-spacing:0.038400pt;}
.ls35{letter-spacing:0.040000pt;}
.ls2c{letter-spacing:0.043179pt;}
.ls2d{letter-spacing:0.044117pt;}
.ls30{letter-spacing:0.044800pt;}
.ls2b{letter-spacing:0.048000pt;}
.ls27{letter-spacing:0.051200pt;}
.ls1b{letter-spacing:0.055147pt;}
.ls34{letter-spacing:0.055467pt;}
.ls6{letter-spacing:0.070400pt;}
.ls2e{letter-spacing:0.076800pt;}
.ls4{letter-spacing:0.081664pt;}
.ls3e{letter-spacing:0.082368pt;}
.ls3d{letter-spacing:0.087467pt;}
.ls22{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.115200pt;}
.ls0{letter-spacing:0.121600pt;}
.ls11{letter-spacing:0.153600pt;}
.ls3b{letter-spacing:87.466667pt;}
.ls3c{letter-spacing:119.466667pt;}
.ws3d{word-spacing:-114.573888pt;}
.ws15{word-spacing:-113.512960pt;}
.ws3c{word-spacing:-98.924800pt;}
.ws3b{word-spacing:-98.837333pt;}
.ws1d{word-spacing:-97.856000pt;}
.ws2{word-spacing:-86.784000pt;}
.ws37{word-spacing:-83.029333pt;}
.ws27{word-spacing:-54.240000pt;}
.ws28{word-spacing:-54.216000pt;}
.ws36{word-spacing:-53.414400pt;}
.ws26{word-spacing:-53.376000pt;}
.ws21{word-spacing:-43.488000pt;}
.ws2c{word-spacing:-43.468800pt;}
.ws2a{word-spacing:-43.430400pt;}
.ws2d{word-spacing:-43.411200pt;}
.ws19{word-spacing:-43.392000pt;}
.ws12{word-spacing:-43.372800pt;}
.ws2b{word-spacing:-43.353600pt;}
.ws13{word-spacing:-43.334400pt;}
.ws11{word-spacing:-43.315200pt;}
.ws3{word-spacing:-41.544533pt;}
.ws20{word-spacing:-41.318400pt;}
.ws1f{word-spacing:-41.222400pt;}
.ws35{word-spacing:-38.549333pt;}
.ws14{word-spacing:-38.131200pt;}
.ws29{word-spacing:-35.609600pt;}
.wsd{word-spacing:-35.584000pt;}
.ws16{word-spacing:-33.749333pt;}
.ws1a{word-spacing:-33.689600pt;}
.ws9{word-spacing:-32.642133pt;}
.ws2f{word-spacing:-31.338667pt;}
.ws31{word-spacing:-30.133333pt;}
.ws30{word-spacing:-30.093333pt;}
.ws4{word-spacing:-29.653333pt;}
.ws18{word-spacing:-28.928000pt;}
.ws22{word-spacing:-28.915200pt;}
.ws23{word-spacing:-28.902400pt;}
.ws24{word-spacing:-28.889600pt;}
.ws25{word-spacing:-28.876800pt;}
.ws1e{word-spacing:-26.707200pt;}
.ws38{word-spacing:-26.688000pt;}
.ws17{word-spacing:-26.517333pt;}
.ws33{word-spacing:-26.380800pt;}
.wsa{word-spacing:-24.606400pt;}
.wsb{word-spacing:-23.722667pt;}
.ws5{word-spacing:-22.901333pt;}
.ws0{word-spacing:-21.770667pt;}
.ws7{word-spacing:-19.288533pt;}
.ws6{word-spacing:-19.274667pt;}
.ws1b{word-spacing:-18.080000pt;}
.ws34{word-spacing:-17.792000pt;}
.ws32{word-spacing:-13.258667pt;}
.wse{word-spacing:-0.597333pt;}
.wsc{word-spacing:-0.085333pt;}
.ws1{word-spacing:0.000000pt;}
.ws39{word-spacing:12.570667pt;}
.ws3a{word-spacing:12.571200pt;}
.ws1c{word-spacing:814.114133pt;}
.wsf{word-spacing:929.634133pt;}
.ws10{word-spacing:933.170133pt;}
.ws8{word-spacing:956.327467pt;}
.ws2e{word-spacing:2183.546133pt;}
._1a{margin-left:-421.566133pt;}
._3{margin-left:-44.992000pt;}
._9{margin-left:-26.012800pt;}
._a{margin-left:-19.918400pt;}
._5{margin-left:-16.387584pt;}
._12{margin-left:-13.660800pt;}
._15{margin-left:-11.723008pt;}
._2{margin-left:-10.761600pt;}
._c{margin-left:-9.472000pt;}
._14{margin-left:-7.988053pt;}
._b{margin-left:-7.040000pt;}
._8{margin-left:-4.838400pt;}
._4{margin-left:-3.191360pt;}
._0{margin-left:-2.051733pt;}
._6{margin-left:-1.131200pt;}
._7{width:0.912000pt;}
._d{width:2.138027pt;}
._1d{width:3.129600pt;}
._e{width:4.045227pt;}
._f{width:5.118720pt;}
._1{width:7.893333pt;}
._11{width:9.600000pt;}
._19{width:13.440000pt;}
._18{width:17.088000pt;}
._1b{width:55.962667pt;}
._16{width:286.404800pt;}
._17{width:330.624000pt;}
._13{width:628.607360pt;}
._10{width:1307.788587pt;}
._1c{width:4667.657227pt;}
.fs1b{font-size:58.666667pt;}
.fs1c{font-size:64.000000pt;}
.fsc{font-size:69.333333pt;}
.fs11{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.fs1e{font-size:90.666667pt;}
.fs1{font-size:96.000000pt;}
.fs9{font-size:101.333333pt;}
.fs0{font-size:106.666667pt;}
.fse{font-size:112.000000pt;}
.fsd{font-size:117.333333pt;}
.fsb{font-size:128.000000pt;}
.fs1a{font-size:133.333333pt;}
.fs19{font-size:138.666667pt;}
.fs12{font-size:144.000000pt;}
.fs8{font-size:149.333333pt;}
.fs18{font-size:160.000000pt;}
.fs10{font-size:170.666667pt;}
.fs3{font-size:180.480000pt;}
.fs13{font-size:181.333333pt;}
.fsa{font-size:192.000000pt;}
.fs1d{font-size:213.333333pt;}
.fs16{font-size:215.893333pt;}
.fs17{font-size:220.586667pt;}
.fs14{font-size:240.000000pt;}
.fs15{font-size:256.000000pt;}
.fs1f{font-size:298.666667pt;}
.fs7{font-size:352.000000pt;}
.fs6{font-size:384.000000pt;}
.fs5{font-size:408.320000pt;}
.fs21{font-size:411.840000pt;}
.fs20{font-size:437.333333pt;}
.fsf{font-size:597.333333pt;}
.fs2{font-size:608.000000pt;}
.y2{bottom:-21.566960pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:2.090133pt;}
.y67{bottom:4.080800pt;}
.y1{bottom:10.433040pt;}
.yc{bottom:10.852864pt;}
.y5e{bottom:10.852865pt;}
.y3{bottom:11.152996pt;}
.yeb{bottom:11.153867pt;}
.ya6{bottom:11.856400pt;}
.ya3{bottom:11.856533pt;}
.y3e{bottom:14.229227pt;}
.y36{bottom:14.229240pt;}
.y93{bottom:14.302693pt;}
.y69{bottom:14.414133pt;}
.y10c{bottom:15.893467pt;}
.y1c{bottom:17.031867pt;}
.y129{bottom:17.408133pt;}
.y83{bottom:18.666667pt;}
.yed{bottom:18.858667pt;}
.y2d{bottom:20.179733pt;}
.y58{bottom:21.140533pt;}
.ye5{bottom:21.894400pt;}
.ye3{bottom:21.894533pt;}
.y61{bottom:23.062533pt;}
.ydd{bottom:24.023333pt;}
.yd0{bottom:24.984267pt;}
.yd5{bottom:24.984400pt;}
.yc7{bottom:26.906267pt;}
.ycc{bottom:28.828133pt;}
.y105{bottom:29.596000pt;}
.yf8{bottom:31.115333pt;}
.y27{bottom:31.812000pt;}
.yfa{bottom:32.480000pt;}
.yef{bottom:32.899067pt;}
.yf1{bottom:32.942133pt;}
.yf5{bottom:32.942267pt;}
.y12{bottom:33.507267pt;}
.y1e{bottom:34.593733pt;}
.y4a{bottom:34.593747pt;}
.y51{bottom:34.593760pt;}
.y63{bottom:34.593867pt;}
.y76{bottom:34.594133pt;}
.yd3{bottom:37.981333pt;}
.y95{bottom:38.015200pt;}
.y1a{bottom:38.843067pt;}
.ydb{bottom:39.455787pt;}
.y92{bottom:40.862587pt;}
.y3d{bottom:40.895893pt;}
.y35{bottom:40.895907pt;}
.y40{bottom:41.611867pt;}
.y4c{bottom:41.612000pt;}
.y99{bottom:42.200267pt;}
.y9c{bottom:42.200400pt;}
.y5c{bottom:42.229227pt;}
.y86{bottom:48.249587pt;}
.y97{bottom:48.921067pt;}
.ya5{bottom:49.189733pt;}
.ya2{bottom:49.189867pt;}
.y2f{bottom:51.095600pt;}
.yd7{bottom:51.176467pt;}
.y32{bottom:52.260853pt;}
.y39{bottom:52.687453pt;}
.y59{bottom:54.615107pt;}
.y2c{bottom:54.846400pt;}
.y8f{bottom:57.507053pt;}
.y113{bottom:60.347067pt;}
.y88{bottom:61.729200pt;}
.y4f{bottom:62.027733pt;}
.ya{bottom:62.548520pt;}
.y5d{bottom:64.437493pt;}
.y91{bottom:64.969360pt;}
.y46{bottom:65.356533pt;}
.y26{bottom:66.478667pt;}
.y6b{bottom:66.523213pt;}
.y3c{bottom:67.562560pt;}
.y6d{bottom:68.300960pt;}
.ycf{bottom:68.984267pt;}
.y5b{bottom:70.122453pt;}
.y6f{bottom:71.856547pt;}
.yb8{bottom:72.400493pt;}
.yb9{bottom:72.779880pt;}
.y11{bottom:72.886133pt;}
.yda{bottom:76.789120pt;}
.yc9{bottom:79.350667pt;}
.yc6{bottom:79.350800pt;}
.y34{bottom:79.562573pt;}
.y31{bottom:80.418667pt;}
.y55{bottom:80.418933pt;}
.y18{bottom:80.419067pt;}
.y49{bottom:88.453147pt;}
.y9{bottom:89.215187pt;}
.y2b{bottom:89.513067pt;}
.y90{bottom:90.302680pt;}
.y127{bottom:91.402680pt;}
.y48{bottom:92.407653pt;}
.y10f{bottom:92.570800pt;}
.yc1{bottom:93.260400pt;}
.yc4{bottom:93.260533pt;}
.y3b{bottom:94.229213pt;}
.y50{bottom:94.383720pt;}
.yfc{bottom:96.256360pt;}
.y5a{bottom:96.895960pt;}
.yd9{bottom:100.895933pt;}
.y112{bottom:100.939067pt;}
.y33{bottom:104.895947pt;}
.y6a{bottom:105.189880pt;}
.y6c{bottom:106.967627pt;}
.yb6{bottom:107.292013pt;}
.y6e{bottom:110.523213pt;}
.yb3{bottom:111.941013pt;}
.y11a{bottom:115.112560pt;}
.y8{bottom:115.881853pt;}
.y24{bottom:116.251733pt;}
.y25{bottom:116.651333pt;}
.y126{bottom:120.736013pt;}
.y3a{bottom:120.895880pt;}
.y14{bottom:122.919253pt;}
.y10b{bottom:123.237467pt;}
.y45{bottom:124.023200pt;}
.y2a{bottom:124.179733pt;}
.y16{bottom:125.960960pt;}
.yd8{bottom:126.229267pt;}
.y78{bottom:130.409120pt;}
.y125{bottom:131.160747pt;}
.y53{bottom:132.592467pt;}
.y109{bottom:133.896933pt;}
.y23{bottom:136.251733pt;}
.yb7{bottom:138.454667pt;}
.yf9{bottom:141.116533pt;}
.yf7{bottom:145.658000pt;}
.yc0{bottom:151.927067pt;}
.y13{bottom:153.585867pt;}
.y100{bottom:154.710800pt;}
.y124{bottom:156.494133pt;}
.y15{bottom:156.627600pt;}
.y29{bottom:158.846400pt;}
.y62{bottom:161.369733pt;}
.y77{bottom:162.502267pt;}
.y10a{bottom:163.829467pt;}
.y5f{bottom:166.644933pt;}
.yfe{bottom:170.710800pt;}
.yb5{bottom:172.140533pt;}
.y119{bottom:173.779200pt;}
.y22{bottom:176.251733pt;}
.y123{bottom:181.827467pt;}
.y44{bottom:182.689867pt;}
.y60{bottom:187.158000pt;}
.yf{bottom:190.493067pt;}
.y21{bottom:196.251733pt;}
.yba{bottom:198.938267pt;}
.y68{bottom:202.025600pt;}
.yb0{bottom:207.016800pt;}
.y122{bottom:207.160800pt;}
.ybf{bottom:210.593733pt;}
.yc3{bottom:210.593867pt;}
.yff{bottom:210.710800pt;}
.y66{bottom:211.677867pt;}
.y20{bottom:216.251733pt;}
.y85{bottom:221.097200pt;}
.y8c{bottom:226.120667pt;}
.yfd{bottom:226.710800pt;}
.yb4{bottom:229.740400pt;}
.y1b{bottom:230.125333pt;}
.y7{bottom:233.950267pt;}
.y120{bottom:239.438933pt;}
.y43{bottom:241.356533pt;}
.ydc{bottom:276.748800pt;}
.y81{bottom:277.914533pt;}
.yaf{bottom:284.350133pt;}
.ye8{bottom:288.408000pt;}
.y47{bottom:291.449467pt;}
.y4e{bottom:300.006133pt;}
.y42{bottom:300.023200pt;}
.yae{bottom:302.383333pt;}
.ya0{bottom:306.247600pt;}
.ye{bottom:307.826400pt;}
.y6{bottom:308.216933pt;}
.yc2{bottom:309.326667pt;}
.yca{bottom:311.680533pt;}
.yce{bottom:319.359200pt;}
.y28{bottom:323.319867pt;}
.ybe{bottom:327.927067pt;}
.y7c{bottom:331.016000pt;}
.yf6{bottom:333.788667pt;}
.ye7{bottom:354.560667pt;}
.y10e{bottom:381.670267pt;}
.y7b{bottom:384.349333pt;}
.y128{bottom:386.941867pt;}
.yad{bottom:388.544933pt;}
.ybd{bottom:393.275067pt;}
.yea{bottom:394.806000pt;}
.y84{bottom:395.197333pt;}
.yf4{bottom:398.195067pt;}
.y9f{bottom:400.827333pt;}
.y2e{bottom:406.648000pt;}
.ybb{bottom:421.271867pt;}
.ye4{bottom:424.448933pt;}
.y73{bottom:435.748800pt;}
.yf0{bottom:436.612800pt;}
.ycb{bottom:438.679467pt;}
.yd1{bottom:438.800267pt;}
.yd{bottom:456.732667pt;}
.ye9{bottom:462.476400pt;}
.y74{bottom:468.777867pt;}
.yac{bottom:474.706667pt;}
.yf3{bottom:479.279467pt;}
.y9e{bottom:495.406933pt;}
.y8d{bottom:501.181733pt;}
.y37{bottom:523.771200pt;}
.y17{bottom:548.799600pt;}
.y7e{bottom:558.676000pt;}
.yab{bottom:560.868267pt;}
.y8a{bottom:571.903333pt;}
.y11e{bottom:585.779200pt;}
.yf2{bottom:585.946133pt;}
.y9d{bottom:589.986533pt;}
.y19{bottom:591.525333pt;}
.y1d{bottom:591.966933pt;}
.y65{bottom:607.984933pt;}
.y7d{bottom:612.009333pt;}
.y10d{bottom:629.443600pt;}
.y57{bottom:634.795333pt;}
.y11d{bottom:644.445867pt;}
.y7a{bottom:644.464800pt;}
.yaa{bottom:647.030000pt;}
.y118{bottom:656.445867pt;}
.y5{bottom:657.631467pt;}
.y9b{bottom:684.566133pt;}
.y79{bottom:697.798133pt;}
.y11c{bottom:703.112533pt;}
.ye6{bottom:709.832133pt;}
.y4d{bottom:714.256267pt;}
.yd6{bottom:714.327200pt;}
.y117{bottom:715.112533pt;}
.yd4{bottom:715.668133pt;}
.y82{bottom:723.598267pt;}
.y108{bottom:731.088800pt;}
.ya9{bottom:733.191600pt;}
.y1f{bottom:733.280533pt;}
.y11b{bottom:761.779200pt;}
.y8b{bottom:770.909467pt;}
.y116{bottom:773.779200pt;}
.y9a{bottom:779.145867pt;}
.y80{bottom:786.749467pt;}
.ya8{bottom:819.353333pt;}
.y41{bottom:820.320000pt;}
.y4{bottom:822.031467pt;}
.y107{bottom:838.155333pt;}
.y7f{bottom:840.082800pt;}
.yc5{bottom:843.722533pt;}
.yc8{bottom:843.722800pt;}
.y11f{bottom:849.142800pt;}
.ydf{bottom:851.538000pt;}
.ye1{bottom:852.925600pt;}
.y98{bottom:873.725467pt;}
.y3f{bottom:886.576400pt;}
.y110{bottom:890.475467pt;}
.y89{bottom:899.459067pt;}
.y56{bottom:904.998533pt;}
.ya7{bottom:905.514933pt;}
.yfb{bottom:929.536667pt;}
.y104{bottom:929.971467pt;}
.y4b{bottom:932.034667pt;}
.y106{bottom:945.222000pt;}
.yec{bottom:959.124133pt;}
.ye2{bottom:965.493467pt;}
.y96{bottom:968.305067pt;}
.ya4{bottom:991.676667pt;}
.y111{bottom:1005.730533pt;}
.y72{bottom:1017.296933pt;}
.yde{bottom:1017.535733pt;}
.yee{bottom:1039.103333pt;}
.y87{bottom:1054.632133pt;}
.y94{bottom:1069.605467pt;}
.yb2{bottom:1069.745200pt;}
.ya1{bottom:1077.838267pt;}
.y103{bottom:1116.986933pt;}
.yd2{bottom:1134.798400pt;}
.ybc{bottom:1139.061733pt;}
.y64{bottom:1141.710933pt;}
.yb1{bottom:1145.270800pt;}
.ycd{bottom:1147.109600pt;}
.y8e{bottom:1148.513600pt;}
.y102{bottom:1165.226267pt;}
.y71{bottom:1180.351333pt;}
.y115{bottom:1214.892267pt;}
.y101{bottom:1221.226267pt;}
.y114{bottom:1230.873067pt;}
.y54{bottom:1254.017067pt;}
.y30{bottom:1254.577333pt;}
.yb{bottom:1271.470800pt;}
.y121{bottom:1271.673067pt;}
.y10{bottom:1276.232667pt;}
.y38{bottom:1296.109600pt;}
.y75{bottom:1300.412533pt;}
.y52{bottom:1309.744000pt;}
.y70{bottom:1314.505867pt;}
.h32{height:18.666667pt;}
.h5a{height:27.733333pt;}
.h5d{height:33.964640pt;}
.h34{height:34.000000pt;}
.h5b{height:37.124133pt;}
.h5c{height:40.791667pt;}
.h5e{height:46.784000pt;}
.h18{height:50.476562pt;}
.h2b{height:52.000000pt;}
.h2f{height:56.266667pt;}
.h14{height:57.306560pt;}
.h33{height:57.421875pt;}
.h76{height:57.738693pt;}
.h58{height:58.000000pt;}
.h57{height:60.757333pt;}
.h8{height:61.250000pt;}
.h55{height:61.333333pt;}
.h21{height:62.378667pt;}
.h74{height:62.875000pt;}
.h5f{height:63.328027pt;}
.h68{height:66.277333pt;}
.h6f{height:70.176000pt;}
.h50{height:70.666667pt;}
.h3{height:70.734375pt;}
.h39{height:70.933333pt;}
.h10{height:72.734375pt;}
.h2{height:77.239583pt;}
.h1c{height:77.601562pt;}
.hf{height:77.656250pt;}
.h70{height:77.973333pt;}
.h1{height:79.010417pt;}
.h36{height:79.492181pt;}
.h54{height:79.819853pt;}
.h65{height:80.524933pt;}
.h2e{height:82.523438pt;}
.h16{height:82.666667pt;}
.h43{height:83.495000pt;}
.h24{height:84.195280pt;}
.h2c{height:84.218750pt;}
.h1a{height:85.479167pt;}
.h3e{height:87.727827pt;}
.h3a{height:89.000000pt;}
.h66{height:90.929147pt;}
.h63{height:91.390813pt;}
.h30{height:91.875000pt;}
.h42{height:91.912960pt;}
.hd{height:92.636907pt;}
.h59{height:92.708333pt;}
.h6a{height:93.223627pt;}
.h44{height:93.250000pt;}
.h15{height:93.568000pt;}
.h35{height:94.312500pt;}
.h3b{height:94.933333pt;}
.h40{height:98.633773pt;}
.h53{height:99.531250pt;}
.h13{height:100.516027pt;}
.h64{height:101.020833pt;}
.h60{height:101.365333pt;}
.h4e{height:103.833333pt;}
.h29{height:104.611133pt;}
.h52{height:105.333333pt;}
.h61{height:106.445600pt;}
.h37{height:106.664062pt;}
.h31{height:107.187500pt;}
.he{height:108.791667pt;}
.h51{height:111.250000pt;}
.h4d{height:116.444440pt;}
.h25{height:118.666667pt;}
.h19{height:119.565293pt;}
.h3d{height:119.987973pt;}
.h6e{height:124.757333pt;}
.h38{height:126.083333pt;}
.h2d{height:126.581187pt;}
.h67{height:128.426667pt;}
.h7{height:132.980625pt;}
.h27{height:133.500000pt;}
.h6{height:133.685625pt;}
.h20{height:134.581200pt;}
.h28{height:136.526000pt;}
.h12{height:137.812500pt;}
.h69{height:139.781250pt;}
.h48{height:139.875000pt;}
.h3c{height:141.468750pt;}
.h6b{height:142.218750pt;}
.h75{height:146.368722pt;}
.h23{height:150.581200pt;}
.h71{height:155.157733pt;}
.h56{height:155.914533pt;}
.h62{height:155.946667pt;}
.h49{height:159.073750pt;}
.h4a{height:162.531875pt;}
.h3f{height:166.875000pt;}
.h1d{height:170.586400pt;}
.h41{height:172.265625pt;}
.h47{height:175.000000pt;}
.h45{height:184.250000pt;}
.h1f{height:185.422667pt;}
.h2a{height:185.982933pt;}
.h11{height:186.092000pt;}
.h46{height:187.564267pt;}
.h1b{height:189.933333pt;}
.h4f{height:200.000000pt;}
.h6c{height:217.583333pt;}
.h6d{height:218.048000pt;}
.h17{height:241.611467pt;}
.hc{height:259.359375pt;}
.hb{height:275.625000pt;}
.h1e{height:280.704000pt;}
.h9{height:300.856875pt;}
.h73{height:303.450469pt;}
.h72{height:313.906250pt;}
.h4c{height:317.333333pt;}
.h26{height:348.096133pt;}
.h22{height:407.750000pt;}
.h4b{height:434.666667pt;}
.h4{height:447.984375pt;}
.h5{height:450.359375pt;}
.ha{height:526.534667pt;}
.h0{height:1440.000000pt;}
.w48{width:89.868773pt;}
.w1d{width:94.966147pt;}
.wb{width:98.149013pt;}
.w39{width:100.450467pt;}
.wf{width:114.410920pt;}
.w20{width:115.707920pt;}
.w13{width:118.494080pt;}
.w7{width:122.645840pt;}
.w3b{width:141.410400pt;}
.w36{width:161.797600pt;}
.w16{width:173.682267pt;}
.w2d{width:178.248133pt;}
.w4{width:180.879733pt;}
.w23{width:182.541733pt;}
.wc{width:194.547067pt;}
.w15{width:195.436000pt;}
.w24{width:201.979600pt;}
.w3{width:204.020400pt;}
.w3a{width:206.722000pt;}
.w22{width:208.222533pt;}
.w2e{width:217.917733pt;}
.w1f{width:224.494267pt;}
.w1e{width:232.761867pt;}
.w25{width:233.495067pt;}
.w41{width:238.961333pt;}
.w21{width:244.090133pt;}
.w3f{width:252.950933pt;}
.w34{width:254.068667pt;}
.w5{width:273.669200pt;}
.w42{width:300.841067pt;}
.w10{width:321.431200pt;}
.w1c{width:328.109733pt;}
.w3d{width:339.730533pt;}
.w29{width:341.431067pt;}
.w8{width:341.520000pt;}
.w6{width:357.829200pt;}
.w3c{width:387.887333pt;}
.w40{width:408.630267pt;}
.w1b{width:411.082667pt;}
.w3e{width:424.786133pt;}
.w2a{width:424.902133pt;}
.w30{width:447.453867pt;}
.w32{width:460.808133pt;}
.w31{width:463.454133pt;}
.w2f{width:467.296667pt;}
.w28{width:481.897200pt;}
.w2c{width:521.259867pt;}
.w4b{width:524.096000pt;}
.w14{width:527.224000pt;}
.w43{width:533.203067pt;}
.w49{width:540.446800pt;}
.w38{width:576.585733pt;}
.w46{width:610.603733pt;}
.w4c{width:635.157333pt;}
.w18{width:640.064533pt;}
.w2b{width:671.454667pt;}
.w33{width:716.403067pt;}
.w11{width:720.298133pt;}
.w12{width:726.255200pt;}
.w19{width:737.564533pt;}
.w17{width:738.064533pt;}
.w47{width:752.378000pt;}
.w1a{width:759.044267pt;}
.w26{width:794.666667pt;}
.wd{width:796.000000pt;}
.w37{width:803.786667pt;}
.we{width:814.917200pt;}
.w27{width:825.994933pt;}
.w2{width:839.895067pt;}
.w45{width:849.133600pt;}
.w44{width:849.133733pt;}
.wa{width:940.772133pt;}
.w1{width:1053.069467pt;}
.w9{width:1060.619467pt;}
.w4a{width:1066.519600pt;}
.w35{width:2105.238667pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x40{left:5.000000pt;}
.x82{left:8.666667pt;}
.x17{left:9.986533pt;}
.x1a{left:12.666667pt;}
.x1e{left:15.436520pt;}
.x34{left:17.632000pt;}
.x53{left:19.716000pt;}
.x73{left:20.914667pt;}
.x75{left:23.938133pt;}
.x1f{left:25.595800pt;}
.x22{left:27.959733pt;}
.x44{left:29.565227pt;}
.x68{left:31.244067pt;}
.xc3{left:34.709427pt;}
.x74{left:37.520133pt;}
.x78{left:39.150400pt;}
.x72{left:40.367867pt;}
.x16{left:41.782667pt;}
.x23{left:43.880640pt;}
.x51{left:46.896000pt;}
.x49{left:47.871853pt;}
.x32{left:50.608680pt;}
.x14{left:53.353867pt;}
.x52{left:55.794667pt;}
.x89{left:56.802667pt;}
.x77{left:60.525333pt;}
.x9c{left:61.628000pt;}
.x55{left:64.262667pt;}
.x70{left:68.496973pt;}
.x6c{left:72.263067pt;}
.xa0{left:74.240000pt;}
.x54{left:78.576000pt;}
.x67{left:80.978960pt;}
.x66{left:86.044440pt;}
.x5b{left:87.380533pt;}
.xa{left:91.876000pt;}
.x83{left:93.477893pt;}
.x9e{left:96.999333pt;}
.x9{left:104.815733pt;}
.x5c{left:107.873733pt;}
.x84{left:112.205440pt;}
.x6e{left:116.934667pt;}
.x5e{left:117.937200pt;}
.xa3{left:123.934667pt;}
.x6a{left:131.606533pt;}
.x3a{left:133.102747pt;}
.xf{left:137.723600pt;}
.x31{left:138.698400pt;}
.x5d{left:140.305333pt;}
.x7f{left:141.805333pt;}
.x59{left:143.598000pt;}
.x29{left:181.722267pt;}
.x4f{left:183.517333pt;}
.x6{left:185.600000pt;}
.x21{left:195.159467pt;}
.xb3{left:201.396800pt;}
.x69{left:206.590267pt;}
.x85{left:210.759333pt;}
.xae{left:234.429467pt;}
.x5{left:236.533333pt;}
.xb4{left:249.396800pt;}
.x10{left:251.777200pt;}
.x20{left:252.872133pt;}
.x58{left:257.333333pt;}
.xb5{left:292.654267pt;}
.x98{left:301.777867pt;}
.x79{left:304.461600pt;}
.x87{left:317.398267pt;}
.xc2{left:325.190267pt;}
.x30{left:333.297333pt;}
.x11{left:337.285067pt;}
.x71{left:343.905867pt;}
.x3d{left:353.221467pt;}
.x13{left:356.748933pt;}
.x3e{left:358.283067pt;}
.x45{left:391.688800pt;}
.xb1{left:400.703867pt;}
.x3c{left:418.258133pt;}
.x3{left:429.155200pt;}
.x4{left:441.643200pt;}
.xbf{left:468.589067pt;}
.x63{left:495.170000pt;}
.x8{left:529.277467pt;}
.x2b{left:534.740133pt;}
.xd{left:540.634000pt;}
.x57{left:542.528000pt;}
.x25{left:543.861333pt;}
.x8c{left:546.272000pt;}
.x24{left:548.562667pt;}
.x35{left:549.453067pt;}
.x8a{left:551.732800pt;}
.x28{left:552.752267pt;}
.x4c{left:564.417600pt;}
.x4b{left:569.955067pt;}
.xbb{left:655.857467pt;}
.x19{left:663.287333pt;}
.x38{left:705.110000pt;}
.x65{left:739.439067pt;}
.x5a{left:741.897200pt;}
.xa8{left:765.951600pt;}
.xc{left:770.362000pt;}
.x4a{left:785.037467pt;}
.x8b{left:786.400533pt;}
.xb7{left:792.610133pt;}
.xa5{left:794.906933pt;}
.xa4{left:800.071200pt;}
.xa7{left:808.940133pt;}
.x2a{left:814.447733pt;}
.xe{left:839.592933pt;}
.x7a{left:861.567467pt;}
.xa6{left:864.071200pt;}
.x56{left:879.715867pt;}
.x86{left:883.127200pt;}
.x27{left:895.053067pt;}
.x3b{left:898.277200pt;}
.x8e{left:902.668267pt;}
.x8d{left:913.716667pt;}
.x76{left:921.146133pt;}
.x47{left:942.661200pt;}
.x48{left:964.751067pt;}
.x4e{left:970.060000pt;}
.xa9{left:979.284933pt;}
.x61{left:989.125067pt;}
.xb0{left:998.091200pt;}
.xb2{left:1009.118133pt;}
.xaa{left:1015.040000pt;}
.xc1{left:1032.585867pt;}
.x99{left:1040.080400pt;}
.x1b{left:1066.970933pt;}
.xb{left:1070.991333pt;}
.x18{left:1076.995600pt;}
.x81{left:1097.253467pt;}
.x46{left:1122.355467pt;}
.x62{left:1131.484400pt;}
.x9d{left:1132.992800pt;}
.xaf{left:1139.524800pt;}
.x42{left:1142.224933pt;}
.xbe{left:1187.255733pt;}
.x95{left:1250.816400pt;}
.xbc{left:1254.654800pt;}
.x36{left:1261.552000pt;}
.x5f{left:1270.666667pt;}
.x6b{left:1332.376933pt;}
.xb8{left:1333.944000pt;}
.x2d{left:1345.908000pt;}
.x96{left:1350.317333pt;}
.x97{left:1353.018667pt;}
.xc4{left:1373.681333pt;}
.x1{left:1419.394667pt;}
.x64{left:1421.060000pt;}
.x7b{left:1434.042667pt;}
.x2f{left:1440.396000pt;}
.xa2{left:1447.457333pt;}
.x26{left:1449.106667pt;}
.x33{left:1467.106667pt;}
.x7d{left:1493.685333pt;}
.x3f{left:1523.932000pt;}
.x90{left:1532.573333pt;}
.x12{left:1533.689333pt;}
.x9a{left:1587.584000pt;}
.x9f{left:1594.578667pt;}
.x93{left:1630.194667pt;}
.x1c{left:1662.654667pt;}
.xc0{left:1664.254667pt;}
.xac{left:1671.266667pt;}
.x7e{left:1696.950667pt;}
.x60{left:1698.236000pt;}
.x39{left:1711.952000pt;}
.x92{left:1721.580000pt;}
.x91{left:1726.106667pt;}
.xad{left:1770.044000pt;}
.xb6{left:1781.712000pt;}
.xc5{left:1813.444000pt;}
.xba{left:1873.944000pt;}
.x41{left:1893.862667pt;}
.x6d{left:1895.270667pt;}
.x8f{left:1928.438667pt;}
.x4d{left:1930.182667pt;}
.xbd{left:1969.874667pt;}
.x9b{left:1971.313333pt;}
.x88{left:1975.949333pt;}
.x7c{left:1999.581333pt;}
.x94{left:2023.114667pt;}
.xa1{left:2025.208000pt;}
.x15{left:2043.916000pt;}
.xab{left:2127.321333pt;}
.x2{left:2154.534667pt;}
.x2e{left:2164.365333pt;}
.x2c{left:2166.406667pt;}
.x1d{left:2183.745333pt;}
.x50{left:2250.053333pt;}
.xb9{left:2383.816000pt;}
.x6f{left:2465.609333pt;}
.x80{left:2503.940000pt;}
.x37{left:2512.129333pt;}
.x43{left:2513.764000pt;}
.x7{left:2520.437333pt;}
}




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