
    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_58a78ca6783337bdfb055791.woff')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_04f20f51c325dac818ae5e82.woff')format("woff");}.ff2{font-family:ff2;line-height:1.083008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8d05277c55c51f3345cbd28a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.720215;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_e3dbbea2e802d59ed4814d40.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_d7f378c60bda864cb83635f9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_496c08ab88eb5cc39b5e3086.woff')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_a167626c5f49e12262ebcc16.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_f0c4934acb6238c559bcd97a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.675781;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_d2d6836085952e3e822afc62.woff')format("woff");}.ff9{font-family:ff9;line-height:1.281250;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_00d5f7199dea74e6af4c828f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.950684;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_2dc6e7eee2d36697b5040711.woff')format("woff");}.ffb{font-family:ffb;line-height:0.920410;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_fde45d5acddba21ee076628d.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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;}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-90.719964px;}
.v2{vertical-align:-76.319969px;}
.v4{vertical-align:-67.679973px;}
.v6{vertical-align:-55.439978px;}
.v9{vertical-align:-53.999978px;}
.v3{vertical-align:-10.079996px;}
.v5{vertical-align:-1.439999px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:28.079989px;}
.v8{vertical-align:53.279979px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.269839px;}
.ls9{letter-spacing:0.454571px;}
.lsa{letter-spacing:0.454659px;}
.lsb{letter-spacing:0.583172px;}
.ls8{letter-spacing:0.587520px;}
.ls5{letter-spacing:6.350877px;}
.ls6{letter-spacing:324.682490px;}
.ls2{letter-spacing:408.870586px;}
.ls1{letter-spacing:733.778937px;}
.ls4{letter-spacing:1118.678253px;}
.ls3{letter-spacing:1277.691239px;}
.lsc{letter-spacing:1352.816159px;}
.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;}
}
.wsa{word-spacing:-45.194342px;}
.ws7{word-spacing:-32.622414px;}
.ws8{word-spacing:-17.519693px;}
.ws11{word-spacing:-14.995953px;}
.ws10{word-spacing:-14.995865px;}
.wsc{word-spacing:-14.541294px;}
.ws6{word-spacing:-13.139995px;}
.wsf{word-spacing:-12.007814px;}
.wsd{word-spacing:-11.737975px;}
.ws9{word-spacing:-9.460616px;}
.wsb{word-spacing:-8.942152px;}
.ws1{word-spacing:-8.133471px;}
.ws4{word-spacing:-8.017001px;}
.wse{word-spacing:-7.358217px;}
.ws3{word-spacing:-7.320124px;}
.ws0{word-spacing:-7.215301px;}
.ws2{word-spacing:-6.413601px;}
.ws5{word-spacing:0.000000px;}
._2{margin-left:-995.651464px;}
._5{margin-left:-639.038324px;}
._3{margin-left:-550.651786px;}
._3f{margin-left:-482.466943px;}
._2b{margin-left:-480.823627px;}
._2a{margin-left:-470.098380px;}
._45{margin-left:-468.948724px;}
._28{margin-left:-452.025804px;}
._42{margin-left:-399.882477px;}
._24{margin-left:-395.985469px;}
._4{margin-left:-387.599866px;}
._26{margin-left:-360.797207px;}
._7a{margin-left:-351.830380px;}
._43{margin-left:-329.575179px;}
._54{margin-left:-309.798235px;}
._61{margin-left:-291.762025px;}
._2c{margin-left:-245.809148px;}
._71{margin-left:-239.525360px;}
._6c{margin-left:-229.098110px;}
._4e{margin-left:-218.466767px;}
._3e{margin-left:-212.148474px;}
._7c{margin-left:-194.990817px;}
._6f{margin-left:-190.081080px;}
._76{margin-left:-177.028452px;}
._6d{margin-left:-174.150193px;}
._70{margin-left:-162.691747px;}
._57{margin-left:-160.062504px;}
._47{margin-left:-150.906820px;}
._66{margin-left:-141.845103px;}
._6a{margin-left:-136.337538px;}
._2e{margin-left:-130.104695px;}
._6e{margin-left:-128.496570px;}
._39{margin-left:-118.369231px;}
._3b{margin-left:-115.692931px;}
._30{margin-left:-106.631084px;}
._52{margin-left:-95.612302px;}
._34{margin-left:-94.173576px;}
._32{margin-left:-83.155204px;}
._29{margin-left:-78.962531px;}
._36{margin-left:-71.417263px;}
._68{margin-left:-63.576296px;}
._72{margin-left:-47.221405px;}
._7d{margin-left:-39.381048px;}
._14{margin-left:-2.494887px;}
._0{margin-left:-1.345231px;}
._1{width:1.059681px;}
._a{width:2.876167px;}
._9{width:3.940475px;}
._8{width:5.166242px;}
._b{width:6.628897px;}
._7{width:8.273148px;}
._e{width:9.407607px;}
._6{width:10.489819px;}
._d{width:11.784672px;}
._c{width:12.960282px;}
._f{width:15.655860px;}
._13{width:17.008124px;}
._86{width:18.612071px;}
._11{width:23.243037px;}
._12{width:24.608153px;}
._15{width:28.577812px;}
._16{width:29.680383px;}
._17{width:50.984788px;}
._18{width:52.116596px;}
._19{width:54.757190px;}
._20{width:61.265081px;}
._21{width:67.028427px;}
._23{width:78.607340px;}
._1f{width:79.709583px;}
._10{width:82.450901px;}
._22{width:93.100124px;}
._5b{width:96.917175px;}
._1e{width:114.288250px;}
._60{width:131.456403px;}
._1d{width:138.484301px;}
._1a{width:143.812320px;}
._1c{width:150.307150px;}
._1b{width:151.324507px;}
._7b{width:158.954375px;}
._73{width:170.313326px;}
._69{width:173.191166px;}
._77{width:181.826402px;}
._75{width:191.604498px;}
._87{width:195.821211px;}
._64{width:200.534857px;}
._6b{width:202.693539px;}
._5c{width:212.047932px;}
._7e{width:225.000553px;}
._74{width:235.074553px;}
._82{width:236.513629px;}
._63{width:255.941856px;}
._78{width:260.978856px;}
._33{width:269.613780px;}
._81{width:271.052651px;}
._3c{width:274.648177px;}
._56{width:277.528932px;}
._59{width:281.844140px;}
._49{width:287.602933px;}
._35{width:291.920159px;}
._4f{width:299.116008px;}
._67{width:301.274856px;}
._50{width:306.311856px;}
._4a{width:317.105362px;}
._65{width:323.581235px;}
._5a{width:327.032700px;}
._5f{width:330.777083px;}
._79{width:336.533856px;}
._84{width:338.972758px;}
._83{width:340.130902px;}
._5e{width:358.840234px;}
._44{width:367.475159px;}
._4b{width:380.427105px;}
._80{width:383.305256px;}
._51{width:391.940181px;}
._37{width:400.575310px;}
._55{width:407.771158px;}
._5d{width:409.929537px;}
._27{width:411.369083px;}
._31{width:413.527461px;}
._3d{width:417.845158px;}
._7f{width:434.395031px;}
._4c{width:439.432029px;}
._38{width:450.225332px;}
._41{width:457.198096px;}
._3a{width:461.019310px;}
._2f{width:468.934461px;}
._4d{width:480.446625px;}
._48{width:486.205718px;}
._25{width:490.520598px;}
._62{width:506.352779px;}
._53{width:528.658409px;}
._46{width:531.537779px;}
._58{width:543.768749px;}
._40{width:636.747252px;}
._2d{width:649.546687px;}
._85{width:841.751501px;}
.fc8{color:rgb(19,20,19);}
.fc7{color:transparent;}
.fc6{color:rgb(31,73,124);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,112,192);}
.fc1{color:rgb(56,116,161);}
.fca{color:rgb(180,180,180);}
.fc9{color:rgb(34,34,34);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:24.000000px;}
.fs5{font-size:27.828506px;}
.fsf{font-size:29.432868px;}
.fs3{font-size:31.804007px;}
.fs0{font-size:35.779508px;}
.fsc{font-size:37.842465px;}
.fs2{font-size:39.755009px;}
.fsd{font-size:40.646144px;}
.fse{font-size:46.951901px;}
.fs4{font-size:47.706010px;}
.fsa{font-size:52.559979px;}
.fs9{font-size:58.165177px;}
.fsb{font-size:64.471174px;}
.fs6{font-size:70.078772px;}
.fs1{font-size:79.510017px;}
.fs7{font-size:81.992967px;}
.fs8{font-size:117.031153px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.212321px;}
.yd5{bottom:1.260177px;}
.ye6{bottom:1.620228px;}
.yf9{bottom:1.800073px;}
.y102{bottom:1.800085px;}
.y105{bottom:1.800090px;}
.y108{bottom:1.800095px;}
.y10b{bottom:1.800101px;}
.y10f{bottom:1.800106px;}
.y112{bottom:1.800111px;}
.y10d{bottom:2.700108px;}
.yd4{bottom:2.700176px;}
.ye2{bottom:2.700216px;}
.yf0{bottom:2.700274px;}
.yfd{bottom:2.880075px;}
.yff{bottom:2.880081px;}
.yca{bottom:2.880141px;}
.ydb{bottom:2.880202px;}
.ydf{bottom:2.880205px;}
.yb{bottom:3.975497px;}
.yd{bottom:3.975499px;}
.y12c{bottom:7.500000px;}
.y11{bottom:22.859102px;}
.y10{bottom:42.736606px;}
.yc1{bottom:55.860335px;}
.yc0{bottom:76.200327px;}
.y21{bottom:109.920256px;}
.y20{bottom:130.260248px;}
.y4a{bottom:167.339933px;}
.ya9{bottom:167.879933px;}
.y88{bottom:173.459931px;}
.ybd{bottom:179.219928px;}
.yf2{bottom:180.420285px;}
.y49{bottom:183.899926px;}
.y11d{bottom:184.439926px;}
.ya8{bottom:184.619926px;}
.y87{bottom:190.199924px;}
.yf1{bottom:193.920279px;}
.ybc{bottom:195.959922px;}
.y48{bottom:200.639920px;}
.y11c{bottom:201.179920px;}
.ya7{bottom:201.359919px;}
.yef{bottom:204.540000px;}
.y86{bottom:206.939917px;}
.ybb{bottom:212.699915px;}
.y47{bottom:217.559913px;}
.ya6{bottom:218.279913px;}
.yee{bottom:220.740269px;}
.y85{bottom:223.679911px;}
.yba{bottom:229.439908px;}
.yed{bottom:234.240263px;}
.y46{bottom:234.299906px;}
.ya5{bottom:235.019906px;}
.y83{bottom:240.419904px;}
.yb9{bottom:246.359901px;}
.y84{bottom:247.079901px;}
.yec{bottom:248.460258px;}
.y45{bottom:251.399899px;}
.y11b{bottom:251.759899px;}
.ya4{bottom:251.939899px;}
.yeb{bottom:255.480255px;}
.y82{bottom:257.519897px;}
.yb8{bottom:263.099895px;}
.y44{bottom:268.139893px;}
.ya3{bottom:268.679893px;}
.y81{bottom:272.819891px;}
.yea{bottom:277.620246px;}
.yb7{bottom:279.839888px;}
.y43{bottom:284.879886px;}
.y7f{bottom:285.239886px;}
.ya2{bottom:285.419886px;}
.y80{bottom:288.659885px;}
.ye9{bottom:291.660240px;}
.ye8{bottom:293.100240px;}
.yb6{bottom:296.759881px;}
.y42{bottom:301.619879px;}
.y11a{bottom:301.979879px;}
.y7e{bottom:302.159879px;}
.ye7{bottom:307.860234px;}
.yb5{bottom:313.319875px;}
.y41{bottom:318.539873px;}
.y7d{bottom:318.899872px;}
.ye5{bottom:321.540000px;}
.ye4{bottom:324.420227px;}
.yb4{bottom:330.239868px;}
.y40{bottom:335.279866px;}
.y119{bottom:335.639866px;}
.y7c{bottom:335.819866px;}
.ye3{bottom:338.640222px;}
.yb3{bottom:346.979861px;}
.ye1{bottom:349.260000px;}
.y3f{bottom:352.019859px;}
.y12b{bottom:352.379859px;}
.y7a{bottom:352.559859px;}
.y7b{bottom:359.219856px;}
.yb2{bottom:363.899854px;}
.ye0{bottom:365.460211px;}
.y3e{bottom:368.579853px;}
.y118{bottom:369.299852px;}
.y79{bottom:369.479852px;}
.yde{bottom:376.800000px;}
.ydd{bottom:379.680205px;}
.yb1{bottom:380.639848px;}
.yda{bottom:383.460000px;}
.y12a{bottom:385.859846px;}
.y78{bottom:386.039846px;}
.yd9{bottom:386.340202px;}
.ydc{bottom:393.000200px;}
.yb0{bottom:397.559841px;}
.y3d{bottom:402.059839px;}
.y129{bottom:402.779839px;}
.y77{bottom:402.959839px;}
.yd8{bottom:406.860194px;}
.yaf{bottom:414.119834px;}
.y128{bottom:419.519832px;}
.y3c{bottom:419.699832px;}
.yd7{bottom:420.360189px;}
.y76{bottom:426.359829px;}
.yae{bottom:430.679828px;}
.yd6{bottom:434.760183px;}
.y127{bottom:436.439825px;}
.y75{bottom:436.619825px;}
.y3b{bottom:439.139824px;}
.yad{bottom:447.599821px;}
.yd3{bottom:448.800000px;}
.y126{bottom:453.179819px;}
.y74{bottom:453.359819px;}
.y3a{bottom:456.059818px;}
.yd2{bottom:465.720171px;}
.y125{bottom:469.919812px;}
.y73{bottom:470.099812px;}
.y39{bottom:472.799811px;}
.yac{bottom:475.679810px;}
.yd1{bottom:479.220165px;}
.y124{bottom:486.659805px;}
.y72{bottom:486.839805px;}
.yab{bottom:488.999804px;}
.y38{bottom:489.719804px;}
.yd0{bottom:492.720160px;}
.y123{bottom:503.399799px;}
.y71{bottom:503.579799px;}
.ycf{bottom:506.040155px;}
.y37{bottom:506.279797px;}
.yce{bottom:519.540149px;}
.y122{bottom:520.319792px;}
.y70{bottom:520.499792px;}
.y36{bottom:523.019791px;}
.ycc{bottom:533.760143px;}
.y121{bottom:537.059785px;}
.y6f{bottom:537.239785px;}
.yc9{bottom:537.540000px;}
.ycd{bottom:538.800141px;}
.y35{bottom:539.939784px;}
.yc8{bottom:540.420141px;}
.ycb{bottom:547.080138px;}
.y117{bottom:553.979778px;}
.y6e{bottom:554.159778px;}
.y34{bottom:556.679777px;}
.yc7{bottom:562.020132px;}
.y120{bottom:570.539772px;}
.y6d{bottom:570.719772px;}
.y33{bottom:573.599771px;}
.yc6{bottom:578.940125px;}
.y11f{bottom:587.459765px;}
.y6c{bottom:587.639765px;}
.y32{bottom:590.159764px;}
.yc5{bottom:594.420119px;}
.y11e{bottom:604.199758px;}
.y6b{bottom:604.379758px;}
.y31{bottom:607.079757px;}
.y110{bottom:609.000113px;}
.y111{bottom:612.240000px;}
.y10c{bottom:619.620000px;}
.y69{bottom:621.119752px;}
.y30{bottom:623.819750px;}
.y10e{bottom:625.560000px;}
.y6a{bottom:627.779749px;}
.y109{bottom:635.820103px;}
.y116{bottom:637.679745px;}
.y68{bottom:638.039745px;}
.y10a{bottom:639.060000px;}
.y2f{bottom:640.739744px;}
.y106{bottom:649.320097px;}
.y107{bottom:652.560000px;}
.y115{bottom:654.419738px;}
.y67{bottom:654.779738px;}
.y2e{bottom:657.479737px;}
.y103{bottom:662.640092px;}
.y104{bottom:665.880000px;}
.y66{bottom:671.339731px;}
.ya1{bottom:671.519731px;}
.y2d{bottom:674.039730px;}
.y100{bottom:676.140087px;}
.y101{bottom:679.380000px;}
.yfe{bottom:687.480000px;}
.y65{bottom:687.899725px;}
.ya0{bottom:688.259725px;}
.yfa{bottom:690.360081px;}
.y2c{bottom:690.779724px;}
.yf6{bottom:697.020078px;}
.yfc{bottom:700.980000px;}
.yfb{bottom:702.060076px;}
.yf4{bottom:703.860075px;}
.y64{bottom:704.819718px;}
.y9f{bottom:705.179718px;}
.yf8{bottom:707.100000px;}
.y2b{bottom:707.519717px;}
.yf5{bottom:710.520073px;}
.yf7{bottom:717.180070px;}
.y63{bottom:721.739711px;}
.y9e{bottom:721.919711px;}
.y2a{bottom:725.339710px;}
.yf3{bottom:731.400064px;}
.y62{bottom:738.659705px;}
.y9d{bottom:738.839704px;}
.y29{bottom:745.499702px;}
.yc4{bottom:749.760057px;}
.y114{bottom:755.039698px;}
.y61{bottom:755.219698px;}
.y9c{bottom:755.399698px;}
.yc3{bottom:763.440052px;}
.y28{bottom:765.659694px;}
.y113{bottom:771.959691px;}
.y60{bottom:772.139691px;}
.y9b{bottom:772.319691px;}
.yc2{bottom:776.580046px;}
.y27{bottom:785.639686px;}
.y5f{bottom:788.879684px;}
.y9a{bottom:789.059684px;}
.ybf{bottom:803.940035px;}
.y26{bottom:805.439678px;}
.y5e{bottom:805.619678px;}
.y99{bottom:805.799678px;}
.y5d{bottom:822.539671px;}
.y98{bottom:822.719671px;}
.ybe{bottom:823.740028px;}
.y25{bottom:825.959670px;}
.y5c{bottom:839.279664px;}
.y97{bottom:839.459664px;}
.y24{bottom:846.299661px;}
.yf{bottom:849.763281px;}
.y5b{bottom:856.019658px;}
.y96{bottom:856.199658px;}
.y23{bottom:869.879652px;}
.y5a{bottom:872.759651px;}
.y95{bottom:872.939651px;}
.ye{bottom:873.616286px;}
.yc{bottom:887.742861px;}
.y59{bottom:889.679644px;}
.y94{bottom:889.859644px;}
.y22{bottom:893.459643px;}
.ya{bottom:903.644867px;}
.y58{bottom:906.419637px;}
.y93{bottom:906.599637px;}
.y1f{bottom:917.399633px;}
.y57{bottom:923.339631px;}
.y9{bottom:934.242674px;}
.y1e{bottom:939.719624px;}
.y56{bottom:940.079624px;}
.y92{bottom:940.259624px;}
.y1d{bottom:955.559618px;}
.y55{bottom:956.639617px;}
.y91{bottom:956.819617px;}
.y8{bottom:962.071180px;}
.y15{bottom:964.379614px;}
.y1c{bottom:970.499612px;}
.y54{bottom:973.559611px;}
.y90{bottom:973.739611px;}
.y7{bottom:977.973183px;}
.y1b{bottom:985.439606px;}
.y53{bottom:990.299604px;}
.y8f{bottom:990.479604px;}
.y1a{bottom:1000.199600px;}
.y6{bottom:1006.795565px;}
.y52{bottom:1007.219597px;}
.y8e{bottom:1007.399597px;}
.y19{bottom:1016.219594px;}
.y51{bottom:1023.959590px;}
.y8d{bottom:1024.139590px;}
.y18{bottom:1032.779587px;}
.y50{bottom:1040.879584px;}
.y8c{bottom:1041.059584px;}
.y5{bottom:1048.538324px;}
.y17{bottom:1052.399579px;}
.y4f{bottom:1057.439577px;}
.y8b{bottom:1057.619577px;}
.y14{bottom:1070.759572px;}
.y4e{bottom:1074.359570px;}
.y8a{bottom:1074.539570px;}
.y4{bottom:1076.366830px;}
.y16{bottom:1086.419565px;}
.y89{bottom:1090.919564px;}
.y4d{bottom:1091.099564px;}
.yaa{bottom:1091.279563px;}
.y13{bottom:1094.159562px;}
.y3{bottom:1104.195336px;}
.y4c{bottom:1120.799552px;}
.y4b{bottom:1140.599544px;}
.y12{bottom:1140.959544px;}
.y2{bottom:1144.944219px;}
.h2a{height:7.200000px;}
.h2b{height:7.380000px;}
.h23{height:7.920000px;}
.h24{height:8.280000px;}
.h28{height:8.460000px;}
.h8{height:12.920383px;}
.h22{height:13.140000px;}
.h20{height:13.320000px;}
.h9{height:20.151208px;}
.h6{height:23.029952px;}
.h2c{height:25.031250px;}
.h3{height:25.908696px;}
.h5{height:28.787440px;}
.h1a{height:28.877021px;}
.h21{height:28.886751px;}
.h25{height:29.662813px;}
.h7{height:34.544928px;}
.h19{height:37.140310px;}
.h16{height:42.970289px;}
.h1f{height:46.057798px;}
.h1d{height:46.080723px;}
.h1c{height:47.318713px;}
.h14{height:51.559081px;}
.h12{height:52.970604px;}
.h13{height:57.057539px;}
.h11{height:57.085940px;}
.h1b{height:57.179593px;}
.h10{height:58.619592px;}
.h4{height:65.533647px;}
.h18{height:68.744264px;}
.hb{height:68.778482px;}
.h17{height:70.626262px;}
.h26{height:74.160712px;}
.hc{height:80.431578px;}
.h15{height:80.471613px;}
.hd{height:82.633537px;}
.h27{height:99.360702px;}
.h29{height:100.080702px;}
.he{height:114.802533px;}
.hf{height:117.945459px;}
.h1e{height:892.500000px;}
.h2{height:1261.227619px;}
.h0{height:1261.439940px;}
.h1{height:1261.500000px;}
.ha{height:1263.000000px;}
.w17{width:1.980000px;}
.w19{width:3.060000px;}
.w18{width:3.240000px;}
.w1e{width:3.780000px;}
.w9{width:3.960000px;}
.w10{width:4.680000px;}
.w11{width:4.860000px;}
.wf{width:5.040000px;}
.wb{width:6.120000px;}
.w1b{width:6.480000px;}
.w1d{width:7.200000px;}
.w1c{width:7.380000px;}
.w13{width:8.640000px;}
.w20{width:8.820000px;}
.wd{width:11.880000px;}
.wc{width:14.580000px;}
.we{width:17.640000px;}
.w8{width:18.000000px;}
.w14{width:20.520000px;}
.w7{width:21.960000px;}
.w15{width:23.400000px;}
.w1f{width:24.839640px;}
.wa{width:26.280000px;}
.w22{width:32.220000px;}
.w12{width:33.840000px;}
.w21{width:35.100000px;}
.w23{width:38.160000px;}
.w24{width:43.920000px;}
.w16{width:47.160000px;}
.w1a{width:54.720000px;}
.w4{width:64.980000px;}
.w5{width:68.220000px;}
.w6{width:86.760000px;}
.w2{width:346.862448px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.w3{width:1263.000000px;}
.x3b{left:-5.579309px;}
.x8c{left:-2.159389px;}
.x59{left:-1.079215px;}
.x0{left:0.000000px;}
.x1{left:59.632513px;}
.x7{left:64.601889px;}
.xb{left:69.840794px;}
.xcd{left:75.000000px;}
.x3{left:99.387518px;}
.x20{left:105.120493px;}
.x4{left:110.320149px;}
.x1c{left:129.780566px;}
.x1b{left:138.599945px;}
.x1e{left:140.400635px;}
.xc3{left:152.805960px;}
.x31{left:158.746437px;}
.xa{left:176.220666px;}
.x28{left:179.279928px;}
.x46{left:180.345600px;}
.x44{left:184.306426px;}
.x29{left:186.659925px;}
.x39{left:195.286422px;}
.x62{left:198.885600px;}
.x30{left:200.699920px;}
.x57{left:205.005191px;}
.x45{left:206.265600px;}
.x71{left:226.965600px;}
.x7d{left:234.706406px;}
.x9{left:247.499901px;}
.xc5{left:250.185600px;}
.xc4{left:256.305600px;}
.x2f{left:272.519891px;}
.x2b{left:275.939886px;}
.x2a{left:281.519887px;}
.x58{left:288.885600px;}
.x26{left:290.339884px;}
.x90{left:294.825600px;}
.xb4{left:297.705600px;}
.xa2{left:300.225600px;}
.xc6{left:302.025600px;}
.x27{left:304.019878px;}
.x7e{left:309.586605px;}
.xc7{left:310.845600px;}
.x65{left:317.325600px;}
.x11{left:319.499872px;}
.x63{left:323.445600px;}
.x10{left:327.059869px;}
.x64{left:329.385600px;}
.x13{left:336.239866px;}
.x48{left:337.485600px;}
.xb3{left:339.825600px;}
.x47{left:343.605600px;}
.x21{left:345.599621px;}
.x12{left:346.679861px;}
.x2e{left:349.379860px;}
.x1a{left:352.259859px;}
.x72{left:353.326359px;}
.x5b{left:372.225600px;}
.x5a{left:376.906367px;}
.xe{left:378.179849px;}
.x34{left:382.486347px;}
.x66{left:386.085600px;}
.x1f{left:393.121066px;}
.xd{left:394.199842px;}
.x8{left:396.179842px;}
.xcc{left:397.260986px;}
.x7f{left:403.006711px;}
.xa4{left:405.705600px;}
.x1d{left:408.780541px;}
.x91{left:412.906335px;}
.xc8{left:416.325600px;}
.x35{left:422.986616px;}
.x5d{left:429.465600px;}
.x5c{left:434.506326px;}
.xc0{left:436.665600px;}
.x92{left:439.365600px;}
.xa3{left:441.705600px;}
.x2{left:446.249971px;}
.x37{left:454.666100px;}
.x49{left:460.605600px;}
.xc{left:462.599815px;}
.x67{left:468.525600px;}
.xf{left:471.419811px;}
.x76{left:475.366310px;}
.x56{left:483.466307px;}
.x5{left:486.004991px;}
.x81{left:488.686725px;}
.x6{left:496.937607px;}
.x94{left:501.645600px;}
.xb6{left:503.085600px;}
.x93{left:505.606298px;}
.xb5{left:507.046297px;}
.x80{left:508.126824px;}
.x82{left:516.046294px;}
.x22{left:524.699790px;}
.x5e{left:527.565600px;}
.x3a{left:529.005600px;}
.x23{left:532.439787px;}
.x33{left:537.286285px;}
.x4b{left:551.865600px;}
.x69{left:554.385600px;}
.x4a{left:557.985600px;}
.x85{left:559.066276px;}
.x68{left:560.505600px;}
.xa7{left:562.845600px;}
.x84{left:565.186295px;}
.xa5{left:566.806273px;}
.x95{left:570.046272px;}
.x83{left:579.406311px;}
.x24{left:588.239765px;}
.x25{left:595.799762px;}
.xa6{left:598.845600px;}
.x78{left:602.085600px;}
.x3f{left:603.526259px;}
.x75{left:605.506258px;}
.x77{left:608.205600px;}
.x3d{left:609.646234px;}
.x4d{left:619.005600px;}
.x5f{left:621.886251px;}
.x3c{left:623.866250px;}
.x4c{left:625.125600px;}
.x97{left:627.645600px;}
.x36{left:631.785737px;}
.x86{left:635.386410px;}
.x96{left:646.185600px;}
.x3e{left:648.346241px;}
.x40{left:660.045600px;}
.x15{left:661.319761px;}
.x6a{left:667.245600px;}
.x7a{left:669.405600px;}
.x79{left:675.525600px;}
.x99{left:677.866229px;}
.xa8{left:681.466227px;}
.x88{left:682.906476px;}
.x4f{left:684.705600px;}
.x87{left:689.206487px;}
.x4e{left:690.825600px;}
.x14{left:692.999723px;}
.x98{left:704.505600px;}
.xa9{left:707.925600px;}
.x2c{left:723.059711px;}
.x8b{left:725.745600px;}
.x8a{left:728.986474px;}
.xc1{left:730.245600px;}
.xab{left:732.585600px;}
.x2d{left:733.679707px;}
.x89{left:736.546490px;}
.x60{left:740.685600px;}
.x41{left:743.926202px;}
.x7c{left:745.365600px;}
.x7b{left:751.485600px;}
.x9a{left:754.005600px;}
.x18{left:755.819698px;}
.xaa{left:757.065600px;}
.xb7{left:759.945600px;}
.x6c{left:770.565600px;}
.x6b{left:776.685600px;}
.x17{left:779.039688px;}
.x51{left:786.225600px;}
.x19{left:788.399685px;}
.x50{left:792.345600px;}
.x8d{left:798.106181px;}
.xba{left:800.806180px;}
.x38{left:805.126178px;}
.xb8{left:806.926177px;}
.x16{left:809.279676px;}
.x9b{left:812.866175px;}
.xc9{left:816.465600px;}
.x9c{left:833.385600px;}
.xac{left:836.265600px;}
.xb9{left:839.145600px;}
.x61{left:843.286163px;}
.x42{left:862.905600px;}
.x73{left:865.966154px;}
.x74{left:878.926148px;}
.x6e{left:882.705600px;}
.xbc{left:883.965600px;}
.xad{left:885.946146px;}
.x6d{left:888.825600px;}
.xca{left:892.605600px;}
.x53{left:895.485600px;}
.x52{left:901.605600px;}
.x9d{left:927.525600px;}
.xae{left:929.865600px;}
.xbb{left:931.665600px;}
.xb1{left:957.765600px;}
.xaf{left:961.726115px;}
.x9e{left:964.065600px;}
.x43{left:965.326114px;}
.xcb{left:968.385600px;}
.x8e{left:977.206129px;}
.x70{left:999.705600px;}
.x6f{left:1005.825600px;}
.x55{left:1007.625600px;}
.xc2{left:1009.065600px;}
.xb0{left:1011.225600px;}
.x54{left:1013.745600px;}
.xb2{left:1048.846080px;}
.xa1{left:1051.005600px;}
.xbf{left:1053.345600px;}
.x9f{left:1054.966078px;}
.xbd{left:1057.306077px;}
.x8f{left:1061.266236px;}
.x32{left:1072.246071px;}
.xbe{left:1083.585600px;}
.xa0{left:1087.185600px;}
@media print{
.v1{vertical-align:-80.639968pt;}
.v2{vertical-align:-67.839973pt;}
.v4{vertical-align:-60.159976pt;}
.v6{vertical-align:-49.279980pt;}
.v9{vertical-align:-47.999981pt;}
.v3{vertical-align:-8.959996pt;}
.v5{vertical-align:-1.279999pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:24.959990pt;}
.v8{vertical-align:47.359981pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.239857pt;}
.ls9{letter-spacing:0.404063pt;}
.lsa{letter-spacing:0.404141pt;}
.lsb{letter-spacing:0.518375pt;}
.ls8{letter-spacing:0.522240pt;}
.ls5{letter-spacing:5.645224pt;}
.ls6{letter-spacing:288.606658pt;}
.ls2{letter-spacing:363.440521pt;}
.ls1{letter-spacing:652.247944pt;}
.ls4{letter-spacing:994.380669pt;}
.ls3{letter-spacing:1135.725546pt;}
.lsc{letter-spacing:1202.503252pt;}
.wsa{word-spacing:-40.172749pt;}
.ws7{word-spacing:-28.997701pt;}
.ws8{word-spacing:-15.573060pt;}
.ws11{word-spacing:-13.329736pt;}
.ws10{word-spacing:-13.329658pt;}
.wsc{word-spacing:-12.925595pt;}
.ws6{word-spacing:-11.679995pt;}
.wsf{word-spacing:-10.673612pt;}
.wsd{word-spacing:-10.433756pt;}
.ws9{word-spacing:-8.409437pt;}
.wsb{word-spacing:-7.948579pt;}
.ws1{word-spacing:-7.229752pt;}
.ws4{word-spacing:-7.126223pt;}
.wse{word-spacing:-6.540637pt;}
.ws3{word-spacing:-6.506777pt;}
.ws0{word-spacing:-6.413601pt;}
.ws2{word-spacing:-5.700979pt;}
.ws5{word-spacing:0.000000pt;}
._2{margin-left:-885.023523pt;}
._5{margin-left:-568.034066pt;}
._3{margin-left:-489.468254pt;}
._3f{margin-left:-428.859505pt;}
._2b{margin-left:-427.398779pt;}
._2a{margin-left:-417.865227pt;}
._45{margin-left:-416.843310pt;}
._28{margin-left:-401.800715pt;}
._42{margin-left:-355.451091pt;}
._24{margin-left:-351.987084pt;}
._4{margin-left:-344.533214pt;}
._26{margin-left:-320.708628pt;}
._7a{margin-left:-312.738115pt;}
._43{margin-left:-292.955714pt;}
._54{margin-left:-275.376209pt;}
._61{margin-left:-259.344022pt;}
._2c{margin-left:-218.497021pt;}
._71{margin-left:-212.911431pt;}
._6c{margin-left:-203.642765pt;}
._4e{margin-left:-194.192682pt;}
._3e{margin-left:-188.576421pt;}
._7c{margin-left:-173.325170pt;}
._6f{margin-left:-168.960960pt;}
._76{margin-left:-157.358624pt;}
._6d{margin-left:-154.800171pt;}
._70{margin-left:-144.614887pt;}
._57{margin-left:-142.277781pt;}
._47{margin-left:-134.139396pt;}
._66{margin-left:-126.084536pt;}
._6a{margin-left:-121.188923pt;}
._2e{margin-left:-115.648618pt;}
._6e{margin-left:-114.219174pt;}
._39{margin-left:-105.217094pt;}
._3b{margin-left:-102.838161pt;}
._30{margin-left:-94.783186pt;}
._52{margin-left:-84.988713pt;}
._34{margin-left:-83.709845pt;}
._32{margin-left:-73.915737pt;}
._29{margin-left:-70.188917pt;}
._36{margin-left:-63.482012pt;}
._68{margin-left:-56.512263pt;}
._72{margin-left:-41.974582pt;}
._7d{margin-left:-35.005376pt;}
._14{margin-left:-2.217678pt;}
._0{margin-left:-1.195761pt;}
._1{width:0.941938pt;}
._a{width:2.556593pt;}
._9{width:3.502645pt;}
._8{width:4.592215pt;}
._b{width:5.892353pt;}
._7{width:7.353909pt;}
._e{width:8.362317pt;}
._6{width:9.324283pt;}
._d{width:10.475264pt;}
._c{width:11.520251pt;}
._f{width:13.916320pt;}
._13{width:15.118332pt;}
._86{width:16.544063pt;}
._11{width:20.660477pt;}
._12{width:21.873914pt;}
._15{width:25.402499pt;}
._16{width:26.382563pt;}
._17{width:45.319812pt;}
._18{width:46.325863pt;}
._19{width:48.673058pt;}
._20{width:54.457850pt;}
._21{width:59.580824pt;}
._23{width:69.873191pt;}
._1f{width:70.852963pt;}
._10{width:73.289690pt;}
._22{width:82.755666pt;}
._5b{width:86.148600pt;}
._1e{width:101.589556pt;}
._60{width:116.850136pt;}
._1d{width:123.097157pt;}
._1a{width:127.833173pt;}
._1c{width:133.606355pt;}
._1b{width:134.510673pt;}
._7b{width:141.292778pt;}
._73{width:151.389624pt;}
._69{width:153.947703pt;}
._77{width:161.623469pt;}
._75{width:170.315109pt;}
._87{width:174.063298pt;}
._64{width:178.253206pt;}
._6b{width:180.172035pt;}
._5c{width:188.487051pt;}
._7e{width:200.000492pt;}
._74{width:208.955159pt;}
._82{width:210.234337pt;}
._63{width:227.503872pt;}
._78{width:231.981206pt;}
._33{width:239.656694pt;}
._81{width:240.935690pt;}
._3c{width:244.131713pt;}
._56{width:246.692384pt;}
._59{width:250.528124pt;}
._49{width:255.647051pt;}
._35{width:259.484586pt;}
._4f{width:265.880896pt;}
._67{width:267.799872pt;}
._50{width:272.277205pt;}
._4a{width:281.871433pt;}
._65{width:287.627764pt;}
._5a{width:290.695733pt;}
._5f{width:294.024074pt;}
._79{width:299.141205pt;}
._84{width:301.309119pt;}
._83{width:302.338579pt;}
._5e{width:318.969097pt;}
._44{width:326.644585pt;}
._4b{width:338.157427pt;}
._80{width:340.715784pt;}
._51{width:348.391272pt;}
._37{width:356.066942pt;}
._55{width:362.463252pt;}
._5d{width:364.381811pt;}
._27{width:365.661407pt;}
._31{width:367.579966pt;}
._3d{width:371.417918pt;}
._7f{width:386.128916pt;}
._4c{width:390.606248pt;}
._38{width:400.200295pt;}
._41{width:406.398308pt;}
._3a{width:409.794942pt;}
._2f{width:416.830632pt;}
._4d{width:427.063667pt;}
._48{width:432.182860pt;}
._25{width:436.018309pt;}
._62{width:450.091359pt;}
._53{width:469.918585pt;}
._46{width:472.478025pt;}
._58{width:483.349999pt;}
._40{width:565.997557pt;}
._2d{width:577.374833pt;}
._85{width:748.223556pt;}
.fs10{font-size:21.333333pt;}
.fs5{font-size:24.736450pt;}
.fsf{font-size:26.162550pt;}
.fs3{font-size:28.270228pt;}
.fs0{font-size:31.804007pt;}
.fsc{font-size:33.637747pt;}
.fs2{font-size:35.337785pt;}
.fsd{font-size:36.129906pt;}
.fse{font-size:41.735023pt;}
.fs4{font-size:42.405342pt;}
.fsa{font-size:46.719981pt;}
.fs9{font-size:51.702379pt;}
.fsb{font-size:57.307710pt;}
.fs6{font-size:62.292242pt;}
.fs1{font-size:70.675571pt;}
.fs7{font-size:72.882638pt;}
.fs8{font-size:104.027692pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.188729pt;}
.yd5{bottom:1.120157pt;}
.ye6{bottom:1.440202pt;}
.yf9{bottom:1.600065pt;}
.y102{bottom:1.600075pt;}
.y105{bottom:1.600080pt;}
.y108{bottom:1.600085pt;}
.y10b{bottom:1.600089pt;}
.y10f{bottom:1.600094pt;}
.y112{bottom:1.600099pt;}
.y10d{bottom:2.400096pt;}
.yd4{bottom:2.400157pt;}
.ye2{bottom:2.400192pt;}
.yf0{bottom:2.400244pt;}
.yfd{bottom:2.560067pt;}
.yff{bottom:2.560072pt;}
.yca{bottom:2.560125pt;}
.ydb{bottom:2.560180pt;}
.ydf{bottom:2.560182pt;}
.yb{bottom:3.533775pt;}
.yd{bottom:3.533777pt;}
.y12c{bottom:6.666667pt;}
.y11{bottom:20.319202pt;}
.y10{bottom:37.988095pt;}
.yc1{bottom:49.653631pt;}
.yc0{bottom:67.733624pt;}
.y21{bottom:97.706894pt;}
.y20{bottom:115.786887pt;}
.y4a{bottom:148.746607pt;}
.ya9{bottom:149.226607pt;}
.y88{bottom:154.186605pt;}
.ybd{bottom:159.306603pt;}
.yf2{bottom:160.373587pt;}
.y49{bottom:163.466601pt;}
.y11d{bottom:163.946601pt;}
.ya8{bottom:164.106601pt;}
.y87{bottom:169.066599pt;}
.yf1{bottom:172.373582pt;}
.ybc{bottom:174.186597pt;}
.y48{bottom:178.346595pt;}
.y11c{bottom:178.826595pt;}
.ya7{bottom:178.986595pt;}
.yef{bottom:181.813333pt;}
.y86{bottom:183.946593pt;}
.ybb{bottom:189.066591pt;}
.y47{bottom:193.386589pt;}
.ya6{bottom:194.026589pt;}
.yee{bottom:196.213572pt;}
.y85{bottom:198.826587pt;}
.yba{bottom:203.946585pt;}
.yed{bottom:208.213567pt;}
.y46{bottom:208.266583pt;}
.ya5{bottom:208.906583pt;}
.y83{bottom:213.706581pt;}
.yb9{bottom:218.986579pt;}
.y84{bottom:219.626579pt;}
.yec{bottom:220.853562pt;}
.y45{bottom:223.466577pt;}
.y11b{bottom:223.786577pt;}
.ya4{bottom:223.946577pt;}
.yeb{bottom:227.093560pt;}
.y82{bottom:228.906575pt;}
.yb8{bottom:233.866573pt;}
.y44{bottom:238.346571pt;}
.ya3{bottom:238.826571pt;}
.y81{bottom:242.506570pt;}
.yea{bottom:246.773552pt;}
.yb7{bottom:248.746567pt;}
.y43{bottom:253.226565pt;}
.y7f{bottom:253.546565pt;}
.ya2{bottom:253.706565pt;}
.y80{bottom:256.586564pt;}
.ye9{bottom:259.253547pt;}
.ye8{bottom:260.533546pt;}
.yb6{bottom:263.786561pt;}
.y42{bottom:268.106559pt;}
.y11a{bottom:268.426559pt;}
.y7e{bottom:268.586559pt;}
.ye7{bottom:273.653541pt;}
.yb5{bottom:278.506555pt;}
.y41{bottom:283.146553pt;}
.y7d{bottom:283.466553pt;}
.ye5{bottom:285.813333pt;}
.ye4{bottom:288.373535pt;}
.yb4{bottom:293.546549pt;}
.y40{bottom:298.026547pt;}
.y119{bottom:298.346547pt;}
.y7c{bottom:298.506547pt;}
.ye3{bottom:301.013530pt;}
.yb3{bottom:308.426543pt;}
.ye1{bottom:310.453333pt;}
.y3f{bottom:312.906542pt;}
.y12b{bottom:313.226541pt;}
.y7a{bottom:313.386541pt;}
.y7b{bottom:319.306539pt;}
.yb2{bottom:323.466537pt;}
.ye0{bottom:324.853521pt;}
.y3e{bottom:327.626536pt;}
.y118{bottom:328.266535pt;}
.y79{bottom:328.426535pt;}
.yde{bottom:334.933333pt;}
.ydd{bottom:337.493516pt;}
.yb1{bottom:338.346531pt;}
.yda{bottom:340.853333pt;}
.y12a{bottom:342.986529pt;}
.y78{bottom:343.146529pt;}
.yd9{bottom:343.413513pt;}
.ydc{bottom:349.333511pt;}
.yb0{bottom:353.386525pt;}
.y3d{bottom:357.386524pt;}
.y129{bottom:358.026523pt;}
.y77{bottom:358.186523pt;}
.yd8{bottom:361.653506pt;}
.yaf{bottom:368.106519pt;}
.y128{bottom:372.906518pt;}
.y3c{bottom:373.066517pt;}
.yd7{bottom:373.653501pt;}
.y76{bottom:378.986515pt;}
.yae{bottom:382.826514pt;}
.yd6{bottom:386.453496pt;}
.y127{bottom:387.946511pt;}
.y75{bottom:388.106511pt;}
.y3b{bottom:390.346511pt;}
.yad{bottom:397.866508pt;}
.yd3{bottom:398.933333pt;}
.y126{bottom:402.826506pt;}
.y74{bottom:402.986505pt;}
.y3a{bottom:405.386505pt;}
.yd2{bottom:413.973485pt;}
.y125{bottom:417.706500pt;}
.y73{bottom:417.866500pt;}
.y39{bottom:420.266499pt;}
.yac{bottom:422.826498pt;}
.yd1{bottom:425.973480pt;}
.y124{bottom:432.586494pt;}
.y72{bottom:432.746494pt;}
.yab{bottom:434.666493pt;}
.y38{bottom:435.306493pt;}
.yd0{bottom:437.973475pt;}
.y123{bottom:447.466488pt;}
.y71{bottom:447.626488pt;}
.ycf{bottom:449.813471pt;}
.y37{bottom:450.026487pt;}
.yce{bottom:461.813466pt;}
.y122{bottom:462.506482pt;}
.y70{bottom:462.666482pt;}
.y36{bottom:464.906481pt;}
.ycc{bottom:474.453461pt;}
.y121{bottom:477.386476pt;}
.y6f{bottom:477.546476pt;}
.yc9{bottom:477.813333pt;}
.ycd{bottom:478.933459pt;}
.y35{bottom:479.946475pt;}
.yc8{bottom:480.373459pt;}
.ycb{bottom:486.293456pt;}
.y117{bottom:492.426470pt;}
.y6e{bottom:492.586470pt;}
.y34{bottom:494.826469pt;}
.yc7{bottom:499.573451pt;}
.y120{bottom:507.146464pt;}
.y6d{bottom:507.306464pt;}
.y33{bottom:509.866463pt;}
.yc6{bottom:514.613445pt;}
.y11f{bottom:522.186458pt;}
.y6c{bottom:522.346458pt;}
.y32{bottom:524.586457pt;}
.yc5{bottom:528.373439pt;}
.y11e{bottom:537.066452pt;}
.y6b{bottom:537.226452pt;}
.y31{bottom:539.626451pt;}
.y110{bottom:541.333434pt;}
.y111{bottom:544.213333pt;}
.y10c{bottom:550.773333pt;}
.y69{bottom:552.106446pt;}
.y30{bottom:554.506445pt;}
.y10e{bottom:556.053333pt;}
.y6a{bottom:558.026443pt;}
.y109{bottom:565.173425pt;}
.y116{bottom:566.826440pt;}
.y68{bottom:567.146440pt;}
.y10a{bottom:568.053333pt;}
.y2f{bottom:569.546439pt;}
.y106{bottom:577.173420pt;}
.y107{bottom:580.053333pt;}
.y115{bottom:581.706434pt;}
.y67{bottom:582.026434pt;}
.y2e{bottom:584.426433pt;}
.y103{bottom:589.013415pt;}
.y104{bottom:591.893333pt;}
.y66{bottom:596.746428pt;}
.ya1{bottom:596.906428pt;}
.y2d{bottom:599.146427pt;}
.y100{bottom:601.013410pt;}
.y101{bottom:603.893333pt;}
.yfe{bottom:611.093333pt;}
.y65{bottom:611.466422pt;}
.ya0{bottom:611.786422pt;}
.yfa{bottom:613.653405pt;}
.y2c{bottom:614.026421pt;}
.yf6{bottom:619.573403pt;}
.yfc{bottom:623.093333pt;}
.yfb{bottom:624.053401pt;}
.yf4{bottom:625.653400pt;}
.y64{bottom:626.506416pt;}
.y9f{bottom:626.826416pt;}
.yf8{bottom:628.533333pt;}
.y2b{bottom:628.906415pt;}
.yf5{bottom:631.573398pt;}
.yf7{bottom:637.493396pt;}
.y63{bottom:641.546410pt;}
.y9e{bottom:641.706410pt;}
.y2a{bottom:644.746409pt;}
.yf3{bottom:650.133391pt;}
.y62{bottom:656.586404pt;}
.y9d{bottom:656.746404pt;}
.y29{bottom:662.666402pt;}
.yc4{bottom:666.453384pt;}
.y114{bottom:671.146398pt;}
.y61{bottom:671.306398pt;}
.y9c{bottom:671.466398pt;}
.yc3{bottom:678.613379pt;}
.y28{bottom:680.586394pt;}
.y113{bottom:686.186392pt;}
.y60{bottom:686.346392pt;}
.y9b{bottom:686.506392pt;}
.yc2{bottom:690.293375pt;}
.y27{bottom:698.346387pt;}
.y5f{bottom:701.226386pt;}
.y9a{bottom:701.386386pt;}
.ybf{bottom:714.613365pt;}
.y26{bottom:715.946380pt;}
.y5e{bottom:716.106380pt;}
.y99{bottom:716.266380pt;}
.y5d{bottom:731.146374pt;}
.y98{bottom:731.306374pt;}
.ybe{bottom:732.213358pt;}
.y25{bottom:734.186373pt;}
.y5c{bottom:746.026368pt;}
.y97{bottom:746.186368pt;}
.y24{bottom:752.266366pt;}
.yf{bottom:755.345138pt;}
.y5b{bottom:760.906362pt;}
.y96{bottom:761.066362pt;}
.y23{bottom:773.226357pt;}
.y5a{bottom:775.786356pt;}
.y95{bottom:775.946356pt;}
.ye{bottom:776.547810pt;}
.yc{bottom:789.104766pt;}
.y59{bottom:790.826350pt;}
.y94{bottom:790.986350pt;}
.y22{bottom:794.186349pt;}
.ya{bottom:803.239882pt;}
.y58{bottom:805.706344pt;}
.y93{bottom:805.866344pt;}
.y1f{bottom:815.466340pt;}
.y57{bottom:820.746338pt;}
.y9{bottom:830.437932pt;}
.y1e{bottom:835.306333pt;}
.y56{bottom:835.626332pt;}
.y92{bottom:835.786332pt;}
.y1d{bottom:849.386327pt;}
.y55{bottom:850.346327pt;}
.y91{bottom:850.506326pt;}
.y8{bottom:855.174382pt;}
.y15{bottom:857.226324pt;}
.y1c{bottom:862.666322pt;}
.y54{bottom:865.386321pt;}
.y90{bottom:865.546320pt;}
.y7{bottom:869.309496pt;}
.y1b{bottom:875.946316pt;}
.y53{bottom:880.266315pt;}
.y8f{bottom:880.426314pt;}
.y1a{bottom:889.066311pt;}
.y6{bottom:894.929391pt;}
.y52{bottom:895.306309pt;}
.y8e{bottom:895.466308pt;}
.y19{bottom:903.306305pt;}
.y51{bottom:910.186303pt;}
.y8d{bottom:910.346303pt;}
.y18{bottom:918.026299pt;}
.y50{bottom:925.226297pt;}
.y8c{bottom:925.386297pt;}
.y5{bottom:932.034065pt;}
.y17{bottom:935.466292pt;}
.y4f{bottom:939.946291pt;}
.y8b{bottom:940.106291pt;}
.y14{bottom:951.786286pt;}
.y4e{bottom:954.986285pt;}
.y8a{bottom:955.146285pt;}
.y4{bottom:956.770515pt;}
.y16{bottom:965.706280pt;}
.y89{bottom:969.706279pt;}
.y4d{bottom:969.866279pt;}
.yaa{bottom:970.026279pt;}
.y13{bottom:972.586278pt;}
.y3{bottom:981.506965pt;}
.y4c{bottom:996.266268pt;}
.y4b{bottom:1013.866261pt;}
.y12{bottom:1014.186261pt;}
.y2{bottom:1017.728195pt;}
.h2a{height:6.400000pt;}
.h2b{height:6.560000pt;}
.h23{height:7.040000pt;}
.h24{height:7.360000pt;}
.h28{height:7.520000pt;}
.h8{height:11.484785pt;}
.h22{height:11.680000pt;}
.h20{height:11.840000pt;}
.h9{height:17.912185pt;}
.h6{height:20.471069pt;}
.h2c{height:22.250000pt;}
.h3{height:23.029952pt;}
.h5{height:25.588836pt;}
.h1a{height:25.668463pt;}
.h21{height:25.677112pt;}
.h25{height:26.366944pt;}
.h7{height:30.706603pt;}
.h19{height:33.013609pt;}
.h16{height:38.195813pt;}
.h1f{height:40.940265pt;}
.h1d{height:40.960643pt;}
.h1c{height:42.061078pt;}
.h14{height:45.830294pt;}
.h12{height:47.084981pt;}
.h13{height:50.717813pt;}
.h11{height:50.743058pt;}
.h1b{height:50.826305pt;}
.h10{height:52.106304pt;}
.h4{height:58.252131pt;}
.h18{height:61.106013pt;}
.hb{height:61.136429pt;}
.h17{height:62.778900pt;}
.h26{height:65.920633pt;}
.hc{height:71.494736pt;}
.h15{height:71.530323pt;}
.hd{height:73.452033pt;}
.h27{height:88.320624pt;}
.h29{height:88.960624pt;}
.he{height:102.046696pt;}
.hf{height:104.840408pt;}
.h1e{height:793.333333pt;}
.h2{height:1121.091217pt;}
.h0{height:1121.279947pt;}
.h1{height:1121.333333pt;}
.ha{height:1122.666667pt;}
.w17{width:1.760000pt;}
.w19{width:2.720000pt;}
.w18{width:2.880000pt;}
.w1e{width:3.360000pt;}
.w9{width:3.520000pt;}
.w10{width:4.160000pt;}
.w11{width:4.320000pt;}
.wf{width:4.480000pt;}
.wb{width:5.440000pt;}
.w1b{width:5.760000pt;}
.w1d{width:6.400000pt;}
.w1c{width:6.560000pt;}
.w13{width:7.680000pt;}
.w20{width:7.840000pt;}
.wd{width:10.560000pt;}
.wc{width:12.960000pt;}
.we{width:15.680000pt;}
.w8{width:16.000000pt;}
.w14{width:18.240000pt;}
.w7{width:19.520000pt;}
.w15{width:20.800000pt;}
.w1f{width:22.079680pt;}
.wa{width:23.360000pt;}
.w22{width:28.640000pt;}
.w12{width:30.080000pt;}
.w21{width:31.200000pt;}
.w23{width:33.920000pt;}
.w24{width:39.040000pt;}
.w16{width:41.920000pt;}
.w1a{width:48.640000pt;}
.w4{width:57.760000pt;}
.w5{width:60.640000pt;}
.w6{width:77.120000pt;}
.w2{width:308.322176pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.w3{width:1122.666667pt;}
.x3b{left:-4.959386pt;}
.x8c{left:-1.919457pt;}
.x59{left:-0.959302pt;}
.x0{left:0.000000pt;}
.x1{left:53.006678pt;}
.x7{left:57.423901pt;}
.xb{left:62.080706pt;}
.xcd{left:66.666667pt;}
.x3{left:88.344460pt;}
.x20{left:93.440439pt;}
.x4{left:98.062355pt;}
.x1c{left:115.360503pt;}
.x1b{left:123.199951pt;}
.x1e{left:124.800564pt;}
.xc3{left:135.827520pt;}
.x31{left:141.107944pt;}
.xa{left:156.640592pt;}
.x28{left:159.359936pt;}
.x46{left:160.307200pt;}
.x44{left:163.827934pt;}
.x29{left:165.919934pt;}
.x39{left:173.587931pt;}
.x62{left:176.787200pt;}
.x30{left:178.399929pt;}
.x57{left:182.226837pt;}
.x45{left:183.347200pt;}
.x71{left:201.747200pt;}
.x7d{left:208.627917pt;}
.x9{left:219.999912pt;}
.xc5{left:222.387200pt;}
.xc4{left:227.827200pt;}
.x2f{left:242.239903pt;}
.x2b{left:245.279899pt;}
.x2a{left:250.239900pt;}
.x58{left:256.787200pt;}
.x26{left:258.079897pt;}
.x90{left:262.067200pt;}
.xb4{left:264.627200pt;}
.xa2{left:266.867200pt;}
.xc6{left:268.467200pt;}
.x27{left:270.239892pt;}
.x7e{left:275.188093pt;}
.xc7{left:276.307200pt;}
.x65{left:282.067200pt;}
.x11{left:283.999886pt;}
.x63{left:287.507200pt;}
.x10{left:290.719884pt;}
.x64{left:292.787200pt;}
.x13{left:298.879880pt;}
.x48{left:299.987200pt;}
.xb3{left:302.067200pt;}
.x47{left:305.427200pt;}
.x21{left:307.199663pt;}
.x12{left:308.159877pt;}
.x2e{left:310.559876pt;}
.x1a{left:313.119875pt;}
.x72{left:314.067874pt;}
.x5b{left:330.867200pt;}
.x5a{left:335.027882pt;}
.xe{left:336.159866pt;}
.x34{left:339.987864pt;}
.x66{left:343.187200pt;}
.x1f{left:349.440947pt;}
.xd{left:350.399860pt;}
.x8{left:352.159859pt;}
.xcc{left:353.120876pt;}
.x7f{left:358.228187pt;}
.xa4{left:360.627200pt;}
.x1d{left:363.360481pt;}
.x91{left:367.027853pt;}
.xc8{left:370.067200pt;}
.x35{left:375.988103pt;}
.x5d{left:381.747200pt;}
.x5c{left:386.227846pt;}
.xc0{left:388.147200pt;}
.x92{left:390.547200pt;}
.xa3{left:392.627200pt;}
.x2{left:396.666641pt;}
.x37{left:404.147644pt;}
.x49{left:409.427200pt;}
.xc{left:411.199836pt;}
.x67{left:416.467200pt;}
.xf{left:419.039832pt;}
.x76{left:422.547831pt;}
.x56{left:429.747828pt;}
.x5{left:432.004436pt;}
.x81{left:434.388200pt;}
.x6{left:441.722318pt;}
.x94{left:445.907200pt;}
.xb6{left:447.187200pt;}
.x93{left:449.427820pt;}
.xb5{left:450.707820pt;}
.x80{left:451.668288pt;}
.x82{left:458.707817pt;}
.x22{left:466.399813pt;}
.x5e{left:468.947200pt;}
.x3a{left:470.227200pt;}
.x23{left:473.279811pt;}
.x33{left:477.587809pt;}
.x4b{left:490.547200pt;}
.x69{left:492.787200pt;}
.x4a{left:495.987200pt;}
.x85{left:496.947801pt;}
.x68{left:498.227200pt;}
.xa7{left:500.307200pt;}
.x84{left:502.387818pt;}
.xa5{left:503.827798pt;}
.x95{left:506.707797pt;}
.x83{left:515.027832pt;}
.x24{left:522.879791pt;}
.x25{left:529.599788pt;}
.xa6{left:532.307200pt;}
.x78{left:535.187200pt;}
.x3f{left:536.467785pt;}
.x75{left:538.227785pt;}
.x77{left:540.627200pt;}
.x3d{left:541.907764pt;}
.x4d{left:550.227200pt;}
.x5f{left:552.787779pt;}
.x3c{left:554.547778pt;}
.x4c{left:555.667200pt;}
.x97{left:557.907200pt;}
.x36{left:561.587322pt;}
.x86{left:564.787920pt;}
.x96{left:574.387200pt;}
.x3e{left:576.307769pt;}
.x40{left:586.707200pt;}
.x15{left:587.839788pt;}
.x6a{left:593.107200pt;}
.x7a{left:595.027200pt;}
.x79{left:600.467200pt;}
.x99{left:602.547759pt;}
.xa8{left:605.747758pt;}
.x88{left:607.027979pt;}
.x4f{left:608.627200pt;}
.x87{left:612.627988pt;}
.x4e{left:614.067200pt;}
.x14{left:615.999754pt;}
.x98{left:626.227200pt;}
.xa9{left:629.267200pt;}
.x2c{left:642.719743pt;}
.x8b{left:645.107200pt;}
.x8a{left:647.987977pt;}
.xc1{left:649.107200pt;}
.xab{left:651.187200pt;}
.x2d{left:652.159739pt;}
.x89{left:654.707991pt;}
.x60{left:658.387200pt;}
.x41{left:661.267735pt;}
.x7c{left:662.547200pt;}
.x7b{left:667.987200pt;}
.x9a{left:670.227200pt;}
.x18{left:671.839731pt;}
.xaa{left:672.947200pt;}
.xb7{left:675.507200pt;}
.x6c{left:684.947200pt;}
.x6b{left:690.387200pt;}
.x17{left:692.479723pt;}
.x51{left:698.867200pt;}
.x19{left:700.799720pt;}
.x50{left:704.307200pt;}
.x8d{left:709.427716pt;}
.xba{left:711.827715pt;}
.x38{left:715.667714pt;}
.xb8{left:717.267713pt;}
.x16{left:719.359712pt;}
.x9b{left:722.547711pt;}
.xc9{left:725.747200pt;}
.x9c{left:740.787200pt;}
.xac{left:743.347200pt;}
.xb9{left:745.907200pt;}
.x61{left:749.587700pt;}
.x42{left:767.027200pt;}
.x73{left:769.747692pt;}
.x74{left:781.267687pt;}
.x6e{left:784.627200pt;}
.xbc{left:785.747200pt;}
.xad{left:787.507685pt;}
.x6d{left:790.067200pt;}
.xca{left:793.427200pt;}
.x53{left:795.987200pt;}
.x52{left:801.427200pt;}
.x9d{left:824.467200pt;}
.xae{left:826.547200pt;}
.xbb{left:828.147200pt;}
.xb1{left:851.347200pt;}
.xaf{left:854.867658pt;}
.x9e{left:856.947200pt;}
.x43{left:858.067657pt;}
.xcb{left:860.787200pt;}
.x8e{left:868.627670pt;}
.x70{left:888.627200pt;}
.x6f{left:894.067200pt;}
.x55{left:895.667200pt;}
.xc2{left:896.947200pt;}
.xb0{left:898.867200pt;}
.x54{left:901.107200pt;}
.xb2{left:932.307627pt;}
.xa1{left:934.227200pt;}
.xbf{left:936.307200pt;}
.x9f{left:937.747625pt;}
.xbd{left:939.827624pt;}
.x8f{left:943.347766pt;}
.x32{left:953.107619pt;}
.xbe{left:963.187200pt;}
.xa0{left:966.387200pt;}
}




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