
    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_d976b834a734a79c5805533c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_61d2095ab9dc6fbd6a35f8c6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a95fddd5a18eede89ea78e10.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fe9338ca2b9d14cd79f0541d.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dae4b5e5d72ddf9b5d8a9d21.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_22fef2c394d3a73f1db9dd1d.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dfb4174d407bbeee9af94aa8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_15dddc159b7e2ab0b6d3ace1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.677734;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_78af4c5bf3952b55dbc5368c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_93534cb343fdd4dd701857b8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.903320;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_5e146d26976023abeb768478.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b6216b6298a287e54699b950.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255142,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255144,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-41.397408px;}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-0.476907px;}
.ls28{letter-spacing:-0.185616px;}
.ls24{letter-spacing:-0.130916px;}
.ls27{letter-spacing:-0.080434px;}
.ls2c{letter-spacing:-0.068059px;}
.lse{letter-spacing:-0.064800px;}
.ls2b{letter-spacing:-0.043310px;}
.ls32{letter-spacing:-0.043200px;}
.ls31{letter-spacing:-0.036000px;}
.ls13{letter-spacing:-0.030060px;}
.ls29{letter-spacing:-0.024749px;}
.ls1c{letter-spacing:-0.024048px;}
.ls2f{letter-spacing:-0.021600px;}
.ls23{letter-spacing:-0.018036px;}
.ls12{letter-spacing:-0.014400px;}
.ls1a{letter-spacing:-0.012024px;}
.lsb{letter-spacing:-0.007200px;}
.ls1b{letter-spacing:-0.006012px;}
.lsc{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.006012px;}
.ls17{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.014400px;}
.ls14{letter-spacing:0.021600px;}
.ls1d{letter-spacing:0.028053px;}
.ls22{letter-spacing:0.032940px;}
.ls2d{letter-spacing:0.039528px;}
.lsf{letter-spacing:0.046116px;}
.lsa{letter-spacing:0.052704px;}
.ls7{letter-spacing:0.059292px;}
.ls8{letter-spacing:0.065880px;}
.ls5{letter-spacing:0.072468px;}
.ls6{letter-spacing:0.079056px;}
.ls9{letter-spacing:0.085644px;}
.ls10{letter-spacing:0.092232px;}
.ls11{letter-spacing:0.098820px;}
.ls15{letter-spacing:0.105408px;}
.ls2e{letter-spacing:0.118584px;}
.ls20{letter-spacing:0.123744px;}
.ls1f{letter-spacing:0.142306px;}
.ls21{letter-spacing:0.191803px;}
.ls26{letter-spacing:0.259862px;}
.ls30{letter-spacing:0.270108px;}
.ls2a{letter-spacing:0.383606px;}
.ls2{letter-spacing:1.501452px;}
.ls1{letter-spacing:1.518228px;}
.lsd{letter-spacing:1.560168px;}
.ls4{letter-spacing:1.610496px;}
.ls3{letter-spacing:1.744704px;}
.ls16{letter-spacing:194.095656px;}
.ls18{letter-spacing:194.400000px;}
.ls1e{letter-spacing:522.269403px;}
.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;}
}
.wscd{word-spacing:-93.511200px;}
.ws4a{word-spacing:-65.880000px;}
.wscf{word-spacing:-61.872000px;}
.wse7{word-spacing:-18.420048px;}
.ws25{word-spacing:-18.367344px;}
.wse6{word-spacing:-18.347580px;}
.wsb2{word-spacing:-0.511020px;}
.wsd5{word-spacing:-0.445478px;}
.wsc2{word-spacing:-0.382104px;}
.wsce{word-spacing:-0.321734px;}
.wsd4{word-spacing:-0.253675px;}
.ws4{word-spacing:-0.209700px;}
.wsd2{word-spacing:-0.204178px;}
.wsbf{word-spacing:-0.150300px;}
.ws82{word-spacing:-0.144288px;}
.wsc3{word-spacing:-0.138276px;}
.wsb3{word-spacing:-0.132264px;}
.wsd8{word-spacing:-0.126252px;}
.wsc8{word-spacing:-0.120240px;}
.ws6a{word-spacing:-0.114228px;}
.ws0{word-spacing:-0.100800px;}
.ws80{word-spacing:-0.046116px;}
.wsd3{word-spacing:-0.037123px;}
.ws41{word-spacing:-0.032940px;}
.ws4d{word-spacing:-0.026352px;}
.ws8{word-spacing:-0.019764px;}
.wsd6{word-spacing:-0.018562px;}
.ws7{word-spacing:-0.013176px;}
.ws20{word-spacing:-0.006588px;}
.ws2{word-spacing:0.000000px;}
.wsd7{word-spacing:0.006187px;}
.ws17{word-spacing:0.006588px;}
.ws1{word-spacing:0.007200px;}
.ws37{word-spacing:0.013176px;}
.wsd0{word-spacing:0.018562px;}
.wse8{word-spacing:0.019764px;}
.wscb{word-spacing:0.037404px;}
.ws5{word-spacing:0.100656px;}
.wsd1{word-spacing:0.123744px;}
.wsf8{word-spacing:0.201600px;}
.wsda{word-spacing:0.244800px;}
.ws3{word-spacing:0.268416px;}
.wsf1{word-spacing:0.296460px;}
.ws36{word-spacing:0.322812px;}
.ws6{word-spacing:0.335520px;}
.wsb5{word-spacing:0.335988px;}
.ws94{word-spacing:0.342576px;}
.ws35{word-spacing:0.349164px;}
.ws1f{word-spacing:0.355752px;}
.ws22{word-spacing:0.362340px;}
.wsa0{word-spacing:0.368928px;}
.wscc{word-spacing:0.383396px;}
.ws9{word-spacing:0.583200px;}
.ws97{word-spacing:0.691740px;}
.ws48{word-spacing:0.698328px;}
.wsf{word-spacing:0.704916px;}
.ws26{word-spacing:0.711504px;}
.ws72{word-spacing:0.718092px;}
.ws8f{word-spacing:1.047492px;}
.ws19{word-spacing:1.060668px;}
.ws9c{word-spacing:1.067256px;}
.ws92{word-spacing:1.080432px;}
.ws90{word-spacing:1.409832px;}
.ws12{word-spacing:1.416420px;}
.ws47{word-spacing:1.423008px;}
.ws4b{word-spacing:1.758996px;}
.ws9f{word-spacing:1.778760px;}
.wsa7{word-spacing:1.785348px;}
.ws1b{word-spacing:1.791936px;}
.ws4c{word-spacing:1.805112px;}
.ws50{word-spacing:2.127924px;}
.wse5{word-spacing:2.134512px;}
.wsa5{word-spacing:2.141100px;}
.ws7a{word-spacing:2.147688px;}
.ws7e{word-spacing:2.496852px;}
.ws53{word-spacing:2.503440px;}
.ws32{word-spacing:2.523204px;}
.ws57{word-spacing:2.852604px;}
.ws3c{word-spacing:2.859192px;}
.ws30{word-spacing:2.865780px;}
.ws23{word-spacing:2.872368px;}
.ws3d{word-spacing:2.878956px;}
.wsa2{word-spacing:2.885544px;}
.wse3{word-spacing:3.208356px;}
.ws24{word-spacing:3.214944px;}
.ws1c{word-spacing:3.221532px;}
.wsd9{word-spacing:3.228120px;}
.wsde{word-spacing:3.241296px;}
.ws75{word-spacing:3.577284px;}
.ws8c{word-spacing:3.583872px;}
.ws3a{word-spacing:3.933036px;}
.wsc1{word-spacing:3.946212px;}
.ws4f{word-spacing:3.959388px;}
.ws8d{word-spacing:4.288788px;}
.wsb0{word-spacing:4.295376px;}
.ws16{word-spacing:4.301964px;}
.wsbe{word-spacing:4.308552px;}
.wsc7{word-spacing:4.315140px;}
.ws6e{word-spacing:4.651128px;}
.ws51{word-spacing:4.657716px;}
.ws56{word-spacing:4.664304px;}
.ws52{word-spacing:4.670892px;}
.wse1{word-spacing:4.703832px;}
.ws8e{word-spacing:5.026644px;}
.ws31{word-spacing:5.033232px;}
.wsaa{word-spacing:5.039820px;}
.ws38{word-spacing:5.046408px;}
.ws83{word-spacing:5.375808px;}
.ws2a{word-spacing:5.382396px;}
.wsb{word-spacing:5.388984px;}
.ws4e{word-spacing:5.738148px;}
.ws81{word-spacing:5.751324px;}
.ws9a{word-spacing:5.757912px;}
.wsbc{word-spacing:6.093900px;}
.wsbb{word-spacing:6.107076px;}
.wsa{word-spacing:6.113664px;}
.wsc9{word-spacing:6.120252px;}
.wsc0{word-spacing:6.443064px;}
.ws1a{word-spacing:6.462828px;}
.ws3e{word-spacing:6.469416px;}
.wse0{word-spacing:6.482592px;}
.ws66{word-spacing:6.818580px;}
.ws27{word-spacing:6.825168px;}
.wsa6{word-spacing:6.838344px;}
.ws11{word-spacing:7.174332px;}
.ws2b{word-spacing:7.187508px;}
.ws96{word-spacing:7.530084px;}
.wsae{word-spacing:7.536672px;}
.ws87{word-spacing:7.543260px;}
.ws6c{word-spacing:7.549848px;}
.wsb6{word-spacing:7.892424px;}
.ws43{word-spacing:7.899012px;}
.ws9d{word-spacing:7.905600px;}
.wsca{word-spacing:7.912188px;}
.ws2d{word-spacing:7.918776px;}
.ws2c{word-spacing:7.925364px;}
.ws15{word-spacing:8.248176px;}
.wsb1{word-spacing:8.261352px;}
.ws6d{word-spacing:8.267940px;}
.ws58{word-spacing:8.617104px;}
.ws9e{word-spacing:8.623692px;}
.ws55{word-spacing:8.630280px;}
.wsc6{word-spacing:8.636868px;}
.wsdf{word-spacing:8.643456px;}
.wsaf{word-spacing:8.972856px;}
.ws7c{word-spacing:8.979444px;}
.wsf9{word-spacing:8.999208px;}
.ws5d{word-spacing:9.328608px;}
.ws5b{word-spacing:9.335196px;}
.wsba{word-spacing:9.341784px;}
.ws61{word-spacing:9.348372px;}
.wsee{word-spacing:9.354960px;}
.ws18{word-spacing:9.697536px;}
.wsb8{word-spacing:9.710712px;}
.ws1d{word-spacing:10.073052px;}
.wsa8{word-spacing:10.402452px;}
.ws59{word-spacing:10.415628px;}
.ws6b{word-spacing:10.422216px;}
.wsac{word-spacing:10.771380px;}
.wsa9{word-spacing:10.777968px;}
.ws28{word-spacing:10.791144px;}
.ws29{word-spacing:10.804320px;}
.ws89{word-spacing:11.140308px;}
.ws88{word-spacing:11.160072px;}
.wsa4{word-spacing:11.858400px;}
.ws73{word-spacing:11.864988px;}
.wsa3{word-spacing:11.884752px;}
.ws84{word-spacing:12.596256px;}
.ws68{word-spacing:12.945420px;}
.ws67{word-spacing:12.958596px;}
.wse4{word-spacing:13.301172px;}
.ws79{word-spacing:14.006088px;}
.ws62{word-spacing:14.012676px;}
.ws91{word-spacing:14.019264px;}
.wsc5{word-spacing:14.025852px;}
.ws93{word-spacing:14.032440px;}
.wsbd{word-spacing:14.361840px;}
.ws99{word-spacing:14.368428px;}
.ws86{word-spacing:14.381604px;}
.ws8b{word-spacing:14.401368px;}
.ws76{word-spacing:14.737356px;}
.ws3b{word-spacing:14.743944px;}
.wse2{word-spacing:15.442272px;}
.ws40{word-spacing:15.798024px;}
.ws74{word-spacing:15.804612px;}
.ws9b{word-spacing:15.811200px;}
.wse{word-spacing:15.817788px;}
.ws5a{word-spacing:15.830964px;}
.ws3f{word-spacing:15.844140px;}
.ws98{word-spacing:16.186716px;}
.ws5f{word-spacing:16.522704px;}
.ws5e{word-spacing:16.529292px;}
.ws54{word-spacing:16.535880px;}
.wsf7{word-spacing:16.542468px;}
.wsf0{word-spacing:16.549056px;}
.wsef{word-spacing:16.555644px;}
.ws8a{word-spacing:17.247384px;}
.ws10{word-spacing:17.622900px;}
.wsdd{word-spacing:17.636076px;}
.wsb9{word-spacing:17.985240px;}
.ws60{word-spacing:17.991828px;}
.ws7f{word-spacing:18.340992px;}
.ws46{word-spacing:18.347580px;}
.wsab{word-spacing:18.354168px;}
.ws7b{word-spacing:18.690156px;}
.ws69{word-spacing:19.072260px;}
.ws95{word-spacing:19.408248px;}
.ws14{word-spacing:19.790352px;}
.ws78{word-spacing:20.146104px;}
.ws39{word-spacing:20.152692px;}
.wsdb{word-spacing:20.495268px;}
.ws2e{word-spacing:20.857608px;}
.wsd{word-spacing:20.870784px;}
.ws2f{word-spacing:20.883960px;}
.ws44{word-spacing:20.890548px;}
.wsf4{word-spacing:21.213360px;}
.ws13{word-spacing:21.575700px;}
.ws70{word-spacing:22.306968px;}
.ws85{word-spacing:22.656132px;}
.wsf3{word-spacing:22.662720px;}
.ws49{word-spacing:23.031648px;}
.ws65{word-spacing:24.467832px;}
.ws71{word-spacing:25.179336px;}
.wsad{word-spacing:25.192512px;}
.wsfa{word-spacing:25.199100px;}
.wsf5{word-spacing:25.923780px;}
.wsb4{word-spacing:26.991036px;}
.wsa1{word-spacing:27.353376px;}
.wsf2{word-spacing:27.702540px;}
.ws6f{word-spacing:27.856800px;}
.ws7d{word-spacing:27.871200px;}
.ws42{word-spacing:27.878400px;}
.ws45{word-spacing:28.064880px;}
.wsf6{word-spacing:28.420632px;}
.ws1e{word-spacing:28.782972px;}
.wsb7{word-spacing:29.145312px;}
.ws77{word-spacing:29.158488px;}
.ws5c{word-spacing:30.943836px;}
.wsdc{word-spacing:32.017680px;}
.ws21{word-spacing:32.735772px;}
.wsc{word-spacing:34.916400px;}
.ws33{word-spacing:35.265564px;}
.ws34{word-spacing:35.291916px;}
.wse9{word-spacing:36.332820px;}
.wsea{word-spacing:36.365760px;}
.wsc4{word-spacing:38.862612px;}
.ws63{word-spacing:40.654548px;}
.ws64{word-spacing:42.835176px;}
.wsec{word-spacing:64.424052px;}
.wsed{word-spacing:64.437228px;}
.wseb{word-spacing:64.456992px;}
._e{margin-left:-194.075892px;}
._f{margin-left:-149.760000px;}
._11{margin-left:-117.000000px;}
._d{margin-left:-57.961224px;}
._12{margin-left:-27.504000px;}
._1{margin-left:-6.098076px;}
._2{margin-left:-3.799764px;}
._0{margin-left:-2.734488px;}
._3{margin-left:-1.274976px;}
._4{width:1.139724px;}
._13{width:27.648000px;}
._b{width:39.962808px;}
._14{width:43.204104px;}
._a{width:44.640288px;}
._c{width:49.680108px;}
._8{width:52.559064px;}
._9{width:53.639496px;}
._7{width:55.444608px;}
._5{width:56.880792px;}
._6{width:58.679316px;}
._10{width:71.553888px;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(89,89,89);}
.fs3{font-size:60.120000px;}
.fs5{font-size:61.872000px;}
.fs2{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.fs4{font-size:93.511200px;}
.y0{bottom:0.000000px;}
.y4{bottom:46.650450px;}
.y184{bottom:131.251665px;}
.ya3{bottom:133.052340px;}
.y115{bottom:135.302583px;}
.y85{bottom:139.266615px;}
.y183{bottom:150.241575px;}
.ya2{bottom:151.951665px;}
.y114{bottom:154.292493px;}
.y57{bottom:155.821935px;}
.y132{bottom:156.720315px;}
.y84{bottom:168.336165px;}
.y182{bottom:169.231485px;}
.y113{bottom:173.282403px;}
.y56{bottom:174.811845px;}
.y131{bottom:175.710225px;}
.ya1{bottom:181.111800px;}
.y181{bottom:188.221395px;}
.y112{bottom:192.181728px;}
.yea{bottom:192.899892px;}
.yc1{bottom:193.170450px;}
.y55{bottom:193.801755px;}
.y130{bottom:194.700135px;}
.y83{bottom:197.496300px;}
.y180{bottom:207.120720px;}
.ya0{bottom:210.181350px;}
.y111{bottom:211.171638px;}
.y54{bottom:212.791665px;}
.ye9{bottom:213.510450px;}
.y12f{bottom:213.690045px;}
.y82{bottom:216.486210px;}
.yc0{bottom:220.800450px;}
.y1af{bottom:225.838920px;}
.y17f{bottom:226.110630px;}
.y12e{bottom:232.679955px;}
.y81{bottom:235.476120px;}
.y167{bottom:237.720720px;}
.y110{bottom:239.071818px;}
.y9f{bottom:239.341485px;}
.y53{bottom:240.782430px;}
.ye8{bottom:241.860600px;}
.y17e{bottom:245.100540px;}
.y12d{bottom:251.579280px;}
.ybf{bottom:252.750450px;}
.y2a{bottom:253.023480px;}
.y1ae{bottom:253.829685px;}
.y80{bottom:254.375445px;}
.y166{bottom:256.710630px;}
.y9e{bottom:258.240810px;}
.y52{bottom:259.681755px;}
.y17d{bottom:264.090450px;}
.y29{bottom:272.013390px;}
.y165{bottom:275.700540px;}
.y10f{bottom:276.152376px;}
.y9d{bottom:277.230720px;}
.y51{bottom:278.671665px;}
.y12c{bottom:279.570045px;}
.y1ad{bottom:281.820450px;}
.y7f{bottom:282.366210px;}
.y158{bottom:284.701215px;}
.y28{bottom:291.003300px;}
.y17c{bottom:292.530450px;}
.y164{bottom:294.599865px;}
.y10e{bottom:295.142286px;}
.y9c{bottom:296.220630px;}
.y50{bottom:297.661575px;}
.y12b{bottom:298.559955px;}
.ye7{bottom:299.370897px;}
.y7e{bottom:301.356120px;}
.y157{bottom:303.691125px;}
.y27{bottom:309.993210px;}
.y1ac{bottom:310.080450px;}
.y163{bottom:313.589775px;}
.y10d{bottom:314.041611px;}
.y9b{bottom:315.210540px;}
.y4f{bottom:316.651485px;}
.y12a{bottom:317.549865px;}
.ye6{bottom:318.360807px;}
.y14a{bottom:318.811305px;}
.y7d{bottom:320.346030px;}
.y17b{bottom:322.050450px;}
.y156{bottom:322.590450px;}
.y26{bottom:328.892535px;}
.y10c{bottom:333.031521px;}
.y9a{bottom:334.200450px;}
.y4e{bottom:335.641395px;}
.y129{bottom:336.539775px;}
.ye5{bottom:337.350717px;}
.y149{bottom:337.801215px;}
.y162{bottom:341.580540px;}
.y7c{bottom:348.336795px;}
.y155{bottom:350.220450px;}
.y10b{bottom:352.021431px;}
.y4d{bottom:354.540720px;}
.y148{bottom:356.791125px;}
.y25{bottom:356.883300px;}
.y1ab{bottom:357.511635px;}
.y161{bottom:360.570450px;}
.y99{bottom:362.460600px;}
.y128{bottom:364.439955px;}
.ye4{bottom:365.341482px;}
.y7b{bottom:367.236120px;}
.y17a{bottom:369.030450px;}
.y4c{bottom:373.530630px;}
.y147{bottom:375.690450px;}
.y24{bottom:375.873210px;}
.y1aa{bottom:376.501545px;}
.y10a{bottom:380.012196px;}
.y154{bottom:382.260450px;}
.y127{bottom:383.429865px;}
.ye3{bottom:384.240807px;}
.y7a{bottom:386.226030px;}
.y160{bottom:388.200600px;}
.y4b{bottom:392.520540px;}
.y23{bottom:394.863120px;}
.y1a9{bottom:395.491455px;}
.y109{bottom:399.002106px;}
.y179{bottom:401.070450px;}
.y126{bottom:402.419775px;}
.ye2{bottom:403.230717px;}
.y146{bottom:403.320450px;}
.y79{bottom:405.215940px;}
.y98{bottom:409.800810px;}
.y4a{bottom:411.510450px;}
.y22{bottom:413.853030px;}
.ybe{bottom:414.030450px;}
.y1a8{bottom:414.390780px;}
.y108{bottom:417.992016px;}
.y15f{bottom:420.150450px;}
.y125{bottom:421.409685px;}
.ye1{bottom:422.220627px;}
.y78{bottom:424.205850px;}
.y97{bottom:428.790720px;}
.y21{bottom:432.842940px;}
.y1a7{bottom:433.380690px;}
.y145{bottom:435.360600px;}
.y107{bottom:436.891341px;}
.y49{bottom:439.770600px;}
.ye0{bottom:441.210537px;}
.y77{bottom:443.195760px;}
.ybd{bottom:444.540720px;}
.y96{bottom:447.780630px;}
.y124{bottom:449.400450px;}
.y20{bottom:451.742265px;}
.y1a6{bottom:452.370600px;}
.y13f{bottom:452.911215px;}
.y106{bottom:455.881251px;}
.ydf{bottom:460.200447px;}
.y76{bottom:462.185670px;}
.y95{bottom:466.770540px;}
.y123{bottom:468.390360px;}
.y1f{bottom:470.732175px;}
.y13e{bottom:471.901125px;}
.ybc{bottom:472.440900px;}
.y1a5{bottom:480.630450px;}
.y75{bottom:481.084995px;}
.y105{bottom:483.781431px;}
.y94{bottom:485.760450px;}
.y48{bottom:487.111764px;}
.y122{bottom:487.289685px;}
.y178{bottom:487.470450px;}
.yde{bottom:488.100627px;}
.y1e{bottom:489.722085px;}
.y13d{bottom:490.800450px;}
.ybb{bottom:491.430810px;}
.y172{bottom:505.652816px;}
.y121{bottom:506.279595px;}
.y1d{bottom:508.711995px;}
.y74{bottom:509.075760px;}
.yba{bottom:510.420720px;}
.y177{bottom:511.590600px;}
.y93{bottom:513.300450px;}
.y13c{bottom:518.430600px;}
.y104{bottom:520.861989px;}
.y47{bottom:524.101737px;}
.ydd{bottom:525.090600px;}
.y1a4{bottom:528.055365px;}
.y73{bottom:528.065670px;}
.yb9{bottom:529.410630px;}
.y120{bottom:534.270360px;}
.y176{bottom:535.620450px;}
.y1c{bottom:536.702760px;}
.y103{bottom:539.851899px;}
.y46{bottom:543.001062px;}
.y92{bottom:545.340450px;}
.y72{bottom:547.055580px;}
.yb8{bottom:548.400540px;}
.y13b{bottom:550.470450px;}
.y11f{bottom:553.260270px;}
.ydc{bottom:553.530450px;}
.y171{bottom:553.981741px;}
.y1b{bottom:555.602085px;}
.y1a3{bottom:556.046130px;}
.y102{bottom:558.751224px;}
.y175{bottom:559.740450px;}
.y71{bottom:566.045490px;}
.y1a{bottom:574.591995px;}
.y1a2{bottom:574.945455px;}
.yb7{bottom:576.300720px;}
.y101{bottom:577.741134px;}
.y45{bottom:580.081620px;}
.y11e{bottom:581.160450px;}
.ydb{bottom:582.781287px;}
.y173{bottom:583.052036px;}
.y174{bottom:583.770450px;}
.y70{bottom:584.944815px;}
.y19{bottom:593.581905px;}
.yb6{bottom:595.290630px;}
.y100{bottom:596.731044px;}
.y170{bottom:597.990450px;}
.yda{bottom:601.771197px;}
.y1a1{bottom:602.936220px;}
.y6f{bottom:603.934725px;}
.y44{bottom:608.072385px;}
.y18{bottom:612.571815px;}
.yff{bottom:615.720954px;}
.y11d{bottom:617.790450px;}
.yd9{bottom:620.761107px;}
.y1a0{bottom:621.926130px;}
.y6e{bottom:622.924635px;}
.yb5{bottom:623.281395px;}
.y43{bottom:627.062295px;}
.y17{bottom:631.561725px;}
.yfe{bottom:634.710864px;}
.yd8{bottom:639.751017px;}
.y6d{bottom:641.914545px;}
.yb4{bottom:642.271305px;}
.y42{bottom:646.052205px;}
.y11c{bottom:649.830450px;}
.y19f{bottom:649.916895px;}
.yfd{bottom:653.610189px;}
.y16{bottom:659.461905px;}
.y6c{bottom:660.904455px;}
.yb3{bottom:661.261215px;}
.y16f{bottom:661.710540px;}
.y41{bottom:664.951530px;}
.yd7{bottom:667.651197px;}
.y153{bottom:674.940870px;}
.y19e{bottom:677.907660px;}
.y15{bottom:678.451815px;}
.y6b{bottom:679.894365px;}
.yb2{bottom:680.251125px;}
.yfc{bottom:681.510369px;}
.yd6{bottom:686.641107px;}
.y16e{bottom:689.701305px;}
.y40{bottom:692.942295px;}
.y152{bottom:693.930780px;}
.y19d{bottom:696.806985px;}
.y14{bottom:697.441725px;}
.y6a{bottom:698.793690px;}
.yb1{bottom:699.150450px;}
.yd5{bottom:705.631017px;}
.y16d{bottom:708.600630px;}
.y3f{bottom:711.932205px;}
.y151{bottom:712.830105px;}
.y13{bottom:716.431635px;}
.y69{bottom:717.783600px;}
.yfb{bottom:718.590927px;}
.yd4{bottom:724.620927px;}
.y19c{bottom:724.797750px;}
.y15e{bottom:725.881305px;}
.yb0{bottom:727.410450px;}
.y144{bottom:727.501215px;}
.y16c{bottom:727.590540px;}
.y3e{bottom:730.922115px;}
.y150{bottom:731.820015px;}
.y12{bottom:735.421545px;}
.y68{bottom:736.773510px;}
.yfa{bottom:737.580837px;}
.y19b{bottom:743.787660px;}
.y15d{bottom:744.871215px;}
.y143{bottom:746.400540px;}
.y16b{bottom:746.580450px;}
.y3d{bottom:749.912025px;}
.yd3{bottom:752.521107px;}
.y11{bottom:754.411455px;}
.y67{bottom:755.763420px;}
.yf9{bottom:756.570747px;}
.y14f{bottom:759.810780px;}
.y19a{bottom:762.777570px;}
.y15c{bottom:763.861125px;}
.y142{bottom:765.390450px;}
.y3c{bottom:768.811350px;}
.y10{bottom:773.310780px;}
.y16a{bottom:774.210450px;}
.y66{bottom:774.753330px;}
.yaf{bottom:774.843915px;}
.yf8{bottom:775.560657px;}
.y14e{bottom:778.800690px;}
.y15b{bottom:782.760450px;}
.y3b{bottom:787.801260px;}
.yd2{bottom:789.511080px;}
.y199{bottom:790.768335px;}
.yf{bottom:792.300690px;}
.y141{bottom:793.020450px;}
.y65{bottom:793.652655px;}
.yae{bottom:793.743240px;}
.yf7{bottom:794.459982px;}
.y14d{bottom:797.790600px;}
.y169{bottom:806.250450px;}
.y3a{bottom:806.791170px;}
.yd1{bottom:808.500990px;}
.y198{bottom:809.758245px;}
.y15a{bottom:810.390450px;}
.ye{bottom:811.290600px;}
.y64{bottom:812.642565px;}
.yf6{bottom:813.449892px;}
.yad{bottom:822.903375px;}
.y140{bottom:824.970450px;}
.y14c{bottom:825.330450px;}
.yd0{bottom:827.490900px;}
.y197{bottom:828.657570px;}
.y91{bottom:834.152385px;}
.y39{bottom:834.781935px;}
.yd{bottom:839.550450px;}
.y63{bottom:840.633330px;}
.yf5{bottom:841.350072px;}
.yac{bottom:841.802700px;}
.y159{bottom:842.340450px;}
.ycf{bottom:846.480810px;}
.y38{bottom:853.771845px;}
.y196{bottom:856.648335px;}
.y14b{bottom:857.280450px;}
.y62{bottom:859.623240px;}
.y90{bottom:862.143150px;}
.yab{bottom:870.962835px;}
.y37{bottom:872.761755px;}
.yce{bottom:874.471575px;}
.y195{bottom:875.638245px;}
.yf4{bottom:878.430630px;}
.y61{bottom:878.522565px;}
.y8f{bottom:881.042475px;}
.y13a{bottom:881.310540px;}
.yc{bottom:886.889127px;}
.yaa{bottom:889.952745px;}
.y36{bottom:891.661080px;}
.y11b{bottom:892.200450px;}
.ycd{bottom:893.461485px;}
.yf3{bottom:897.420540px;}
.y8e{bottom:900.032385px;}
.y139{bottom:900.300450px;}
.y194{bottom:903.629010px;}
.y60{bottom:907.682700px;}
.ya9{bottom:908.852070px;}
.y35{bottom:910.650990px;}
.ycc{bottom:912.360810px;}
.yb{bottom:914.879892px;}
.yf2{bottom:916.319865px;}
.y18c{bottom:917.760450px;}
.y8d{bottom:919.022295px;}
.y11a{bottom:921.361665px;}
.y193{bottom:922.618920px;}
.y5f{bottom:926.582025px;}
.y138{bottom:928.560450px;}
.y34{bottom:929.640900px;}
.ya{bottom:933.779217px;}
.y8c{bottom:938.012205px;}
.ycb{bottom:940.351575px;}
.yf1{bottom:944.310630px;}
.y18b{bottom:947.013060px;}
.y192{bottom:950.519100px;}
.y5e{bottom:955.651575px;}
.ya8{bottom:956.911530px;}
.y8b{bottom:957.002115px;}
.y33{bottom:957.631665px;}
.yca{bottom:959.341485px;}
.y9{bottom:961.858920px;}
.yf0{bottom:963.300540px;}
.y18a{bottom:966.002970px;}
.y191{bottom:969.509010px;}
.y1b7{bottom:971.310450px;}
.y8a{bottom:975.992025px;}
.y137{bottom:975.992655px;}
.y32{bottom:976.621575px;}
.yc9{bottom:978.331395px;}
.yef{bottom:982.290450px;}
.y5d{bottom:984.721125px;}
.y189{bottom:984.902295px;}
.ya7{bottom:986.071665px;}
.y119{bottom:987.332250px;}
.y8{bottom:989.849685px;}
.y89{bottom:994.891350px;}
.y136{bottom:994.891980px;}
.y31{bottom:995.520900px;}
.yc8{bottom:997.321305px;}
.y1b6{bottom:997.321395px;}
.y190{bottom:997.499775px;}
.ya6{bottom:1005.061575px;}
.y118{bottom:1006.322160px;}
.yee{bottom:1010.281215px;}
.y5c{bottom:1013.881260px;}
.y188{bottom:1014.062430px;}
.y30{bottom:1014.510810px;}
.yc7{bottom:1016.220630px;}
.y1b5{bottom:1016.220720px;}
.y18f{bottom:1016.489685px;}
.y7{bottom:1017.840450px;}
.y135{bottom:1023.961530px;}
.ya5{bottom:1024.051485px;}
.y117{bottom:1025.221485px;}
.yed{bottom:1029.271125px;}
.y88{bottom:1032.871170px;}
.y187{bottom:1033.052340px;}
.y2f{bottom:1033.500720px;}
.yc6{bottom:1035.210540px;}
.y1b4{bottom:1035.210630px;}
.y5b{bottom:1042.950810px;}
.y116{bottom:1044.211395px;}
.y18e{bottom:1044.480450px;}
.yec{bottom:1048.170450px;}
.y186{bottom:1051.951665px;}
.y2e{bottom:1052.490630px;}
.y134{bottom:1053.121665px;}
.y1b3{bottom:1054.200540px;}
.y87{bottom:1060.771350px;}
.ya4{bottom:1061.940720px;}
.yc5{bottom:1063.201305px;}
.y6{bottom:1064.640756px;}
.y2d{bottom:1071.480540px;}
.y133{bottom:1072.020990px;}
.y5a{bottom:1072.110945px;}
.y18d{bottom:1072.740450px;}
.y1b2{bottom:1073.190450px;}
.yeb{bottom:1076.520450px;}
.y185{bottom:1081.111800px;}
.yc4{bottom:1082.191215px;}
.y5{bottom:1088.760450px;}
.y86{bottom:1089.840900px;}
.y2c{bottom:1090.470450px;}
.y59{bottom:1100.011125px;}
.yc3{bottom:1101.181125px;}
.y1b1{bottom:1101.450450px;}
.y2b{bottom:1118.640450px;}
.y168{bottom:1118.820450px;}
.y58{bottom:1118.910450px;}
.yc2{bottom:1120.080450px;}
.y1b0{bottom:1121.610450px;}
.y3{bottom:1144.560450px;}
.y2{bottom:1174.170450px;}
.y1{bottom:1194.780450px;}
.h9{height:44.923664px;}
.ha{height:59.004492px;}
.hb{height:61.793886px;}
.h8{height:62.325580px;}
.h6{height:62.703281px;}
.h4{height:68.710781px;}
.h7{height:68.713013px;}
.h1{height:70.628906px;}
.h2{height:70.664062px;}
.h5{height:75.093750px;}
.h3{height:87.484219px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:85.050000px;}
.xb{left:106.380000px;}
.x9{left:113.128965px;}
.x1{left:120.060000px;}
.xc{left:133.199748px;}
.x6{left:151.019982px;}
.x2b{left:160.380189px;}
.x5{left:163.170000px;}
.xa{left:175.049577px;}
.x25{left:188.640089px;}
.x23{left:195.210000px;}
.x1b{left:196.920000px;}
.x26{left:202.948241px;}
.x1f{left:206.910000px;}
.x1d{left:218.070000px;}
.x15{left:220.590000px;}
.x21{left:239.850000px;}
.x17{left:272.700000px;}
.x24{left:274.050000px;}
.xe{left:276.840000px;}
.x11{left:294.390000px;}
.x2a{left:296.550000px;}
.x20{left:314.010000px;}
.x7{left:330.929892px;}
.x19{left:346.950000px;}
.x8{left:358.469379px;}
.x2{left:396.810000px;}
.x27{left:410.398556px;}
.x4{left:446.490000px;}
.x12{left:484.470000px;}
.xf{left:515.520000px;}
.x13{left:529.380000px;}
.x28{left:588.240000px;}
.x16{left:676.890000px;}
.xd{left:679.770000px;}
.x10{left:711.000000px;}
.x1c{left:719.010000px;}
.x1e{left:720.180000px;}
.x1a{left:726.480000px;}
.x14{left:732.330000px;}
.x22{left:738.900000px;}
.x18{left:743.760000px;}
.x29{left:780.749850px;}
@media print{
.v1{vertical-align:-36.797696pt;}
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-0.423917pt;}
.ls28{letter-spacing:-0.164992pt;}
.ls24{letter-spacing:-0.116369pt;}
.ls27{letter-spacing:-0.071497pt;}
.ls2c{letter-spacing:-0.060497pt;}
.lse{letter-spacing:-0.057600pt;}
.ls2b{letter-spacing:-0.038498pt;}
.ls32{letter-spacing:-0.038400pt;}
.ls31{letter-spacing:-0.032000pt;}
.ls13{letter-spacing:-0.026720pt;}
.ls29{letter-spacing:-0.021999pt;}
.ls1c{letter-spacing:-0.021376pt;}
.ls2f{letter-spacing:-0.019200pt;}
.ls23{letter-spacing:-0.016032pt;}
.ls12{letter-spacing:-0.012800pt;}
.ls1a{letter-spacing:-0.010688pt;}
.lsb{letter-spacing:-0.006400pt;}
.ls1b{letter-spacing:-0.005344pt;}
.lsc{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.005344pt;}
.ls17{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.012800pt;}
.ls14{letter-spacing:0.019200pt;}
.ls1d{letter-spacing:0.024936pt;}
.ls22{letter-spacing:0.029280pt;}
.ls2d{letter-spacing:0.035136pt;}
.lsf{letter-spacing:0.040992pt;}
.lsa{letter-spacing:0.046848pt;}
.ls7{letter-spacing:0.052704pt;}
.ls8{letter-spacing:0.058560pt;}
.ls5{letter-spacing:0.064416pt;}
.ls6{letter-spacing:0.070272pt;}
.ls9{letter-spacing:0.076128pt;}
.ls10{letter-spacing:0.081984pt;}
.ls11{letter-spacing:0.087840pt;}
.ls15{letter-spacing:0.093696pt;}
.ls2e{letter-spacing:0.105408pt;}
.ls20{letter-spacing:0.109995pt;}
.ls1f{letter-spacing:0.126494pt;}
.ls21{letter-spacing:0.170492pt;}
.ls26{letter-spacing:0.230989pt;}
.ls30{letter-spacing:0.240096pt;}
.ls2a{letter-spacing:0.340983pt;}
.ls2{letter-spacing:1.334624pt;}
.ls1{letter-spacing:1.349536pt;}
.lsd{letter-spacing:1.386816pt;}
.ls4{letter-spacing:1.431552pt;}
.ls3{letter-spacing:1.550848pt;}
.ls16{letter-spacing:172.529472pt;}
.ls18{letter-spacing:172.800000pt;}
.ls1e{letter-spacing:464.239469pt;}
.wscd{word-spacing:-83.121067pt;}
.ws4a{word-spacing:-58.560000pt;}
.wscf{word-spacing:-54.997333pt;}
.wse7{word-spacing:-16.373376pt;}
.ws25{word-spacing:-16.326528pt;}
.wse6{word-spacing:-16.308960pt;}
.wsb2{word-spacing:-0.454240pt;}
.wsd5{word-spacing:-0.395981pt;}
.wsc2{word-spacing:-0.339648pt;}
.wsce{word-spacing:-0.285986pt;}
.wsd4{word-spacing:-0.225489pt;}
.ws4{word-spacing:-0.186400pt;}
.wsd2{word-spacing:-0.181491pt;}
.wsbf{word-spacing:-0.133600pt;}
.ws82{word-spacing:-0.128256pt;}
.wsc3{word-spacing:-0.122912pt;}
.wsb3{word-spacing:-0.117568pt;}
.wsd8{word-spacing:-0.112224pt;}
.wsc8{word-spacing:-0.106880pt;}
.ws6a{word-spacing:-0.101536pt;}
.ws0{word-spacing:-0.089600pt;}
.ws80{word-spacing:-0.040992pt;}
.wsd3{word-spacing:-0.032998pt;}
.ws41{word-spacing:-0.029280pt;}
.ws4d{word-spacing:-0.023424pt;}
.ws8{word-spacing:-0.017568pt;}
.wsd6{word-spacing:-0.016499pt;}
.ws7{word-spacing:-0.011712pt;}
.ws20{word-spacing:-0.005856pt;}
.ws2{word-spacing:0.000000pt;}
.wsd7{word-spacing:0.005500pt;}
.ws17{word-spacing:0.005856pt;}
.ws1{word-spacing:0.006400pt;}
.ws37{word-spacing:0.011712pt;}
.wsd0{word-spacing:0.016499pt;}
.wse8{word-spacing:0.017568pt;}
.wscb{word-spacing:0.033248pt;}
.ws5{word-spacing:0.089472pt;}
.wsd1{word-spacing:0.109995pt;}
.wsf8{word-spacing:0.179200pt;}
.wsda{word-spacing:0.217600pt;}
.ws3{word-spacing:0.238592pt;}
.wsf1{word-spacing:0.263520pt;}
.ws36{word-spacing:0.286944pt;}
.ws6{word-spacing:0.298240pt;}
.wsb5{word-spacing:0.298656pt;}
.ws94{word-spacing:0.304512pt;}
.ws35{word-spacing:0.310368pt;}
.ws1f{word-spacing:0.316224pt;}
.ws22{word-spacing:0.322080pt;}
.wsa0{word-spacing:0.327936pt;}
.wscc{word-spacing:0.340796pt;}
.ws9{word-spacing:0.518400pt;}
.ws97{word-spacing:0.614880pt;}
.ws48{word-spacing:0.620736pt;}
.wsf{word-spacing:0.626592pt;}
.ws26{word-spacing:0.632448pt;}
.ws72{word-spacing:0.638304pt;}
.ws8f{word-spacing:0.931104pt;}
.ws19{word-spacing:0.942816pt;}
.ws9c{word-spacing:0.948672pt;}
.ws92{word-spacing:0.960384pt;}
.ws90{word-spacing:1.253184pt;}
.ws12{word-spacing:1.259040pt;}
.ws47{word-spacing:1.264896pt;}
.ws4b{word-spacing:1.563552pt;}
.ws9f{word-spacing:1.581120pt;}
.wsa7{word-spacing:1.586976pt;}
.ws1b{word-spacing:1.592832pt;}
.ws4c{word-spacing:1.604544pt;}
.ws50{word-spacing:1.891488pt;}
.wse5{word-spacing:1.897344pt;}
.wsa5{word-spacing:1.903200pt;}
.ws7a{word-spacing:1.909056pt;}
.ws7e{word-spacing:2.219424pt;}
.ws53{word-spacing:2.225280pt;}
.ws32{word-spacing:2.242848pt;}
.ws57{word-spacing:2.535648pt;}
.ws3c{word-spacing:2.541504pt;}
.ws30{word-spacing:2.547360pt;}
.ws23{word-spacing:2.553216pt;}
.ws3d{word-spacing:2.559072pt;}
.wsa2{word-spacing:2.564928pt;}
.wse3{word-spacing:2.851872pt;}
.ws24{word-spacing:2.857728pt;}
.ws1c{word-spacing:2.863584pt;}
.wsd9{word-spacing:2.869440pt;}
.wsde{word-spacing:2.881152pt;}
.ws75{word-spacing:3.179808pt;}
.ws8c{word-spacing:3.185664pt;}
.ws3a{word-spacing:3.496032pt;}
.wsc1{word-spacing:3.507744pt;}
.ws4f{word-spacing:3.519456pt;}
.ws8d{word-spacing:3.812256pt;}
.wsb0{word-spacing:3.818112pt;}
.ws16{word-spacing:3.823968pt;}
.wsbe{word-spacing:3.829824pt;}
.wsc7{word-spacing:3.835680pt;}
.ws6e{word-spacing:4.134336pt;}
.ws51{word-spacing:4.140192pt;}
.ws56{word-spacing:4.146048pt;}
.ws52{word-spacing:4.151904pt;}
.wse1{word-spacing:4.181184pt;}
.ws8e{word-spacing:4.468128pt;}
.ws31{word-spacing:4.473984pt;}
.wsaa{word-spacing:4.479840pt;}
.ws38{word-spacing:4.485696pt;}
.ws83{word-spacing:4.778496pt;}
.ws2a{word-spacing:4.784352pt;}
.wsb{word-spacing:4.790208pt;}
.ws4e{word-spacing:5.100576pt;}
.ws81{word-spacing:5.112288pt;}
.ws9a{word-spacing:5.118144pt;}
.wsbc{word-spacing:5.416800pt;}
.wsbb{word-spacing:5.428512pt;}
.wsa{word-spacing:5.434368pt;}
.wsc9{word-spacing:5.440224pt;}
.wsc0{word-spacing:5.727168pt;}
.ws1a{word-spacing:5.744736pt;}
.ws3e{word-spacing:5.750592pt;}
.wse0{word-spacing:5.762304pt;}
.ws66{word-spacing:6.060960pt;}
.ws27{word-spacing:6.066816pt;}
.wsa6{word-spacing:6.078528pt;}
.ws11{word-spacing:6.377184pt;}
.ws2b{word-spacing:6.388896pt;}
.ws96{word-spacing:6.693408pt;}
.wsae{word-spacing:6.699264pt;}
.ws87{word-spacing:6.705120pt;}
.ws6c{word-spacing:6.710976pt;}
.wsb6{word-spacing:7.015488pt;}
.ws43{word-spacing:7.021344pt;}
.ws9d{word-spacing:7.027200pt;}
.wsca{word-spacing:7.033056pt;}
.ws2d{word-spacing:7.038912pt;}
.ws2c{word-spacing:7.044768pt;}
.ws15{word-spacing:7.331712pt;}
.wsb1{word-spacing:7.343424pt;}
.ws6d{word-spacing:7.349280pt;}
.ws58{word-spacing:7.659648pt;}
.ws9e{word-spacing:7.665504pt;}
.ws55{word-spacing:7.671360pt;}
.wsc6{word-spacing:7.677216pt;}
.wsdf{word-spacing:7.683072pt;}
.wsaf{word-spacing:7.975872pt;}
.ws7c{word-spacing:7.981728pt;}
.wsf9{word-spacing:7.999296pt;}
.ws5d{word-spacing:8.292096pt;}
.ws5b{word-spacing:8.297952pt;}
.wsba{word-spacing:8.303808pt;}
.ws61{word-spacing:8.309664pt;}
.wsee{word-spacing:8.315520pt;}
.ws18{word-spacing:8.620032pt;}
.wsb8{word-spacing:8.631744pt;}
.ws1d{word-spacing:8.953824pt;}
.wsa8{word-spacing:9.246624pt;}
.ws59{word-spacing:9.258336pt;}
.ws6b{word-spacing:9.264192pt;}
.wsac{word-spacing:9.574560pt;}
.wsa9{word-spacing:9.580416pt;}
.ws28{word-spacing:9.592128pt;}
.ws29{word-spacing:9.603840pt;}
.ws89{word-spacing:9.902496pt;}
.ws88{word-spacing:9.920064pt;}
.wsa4{word-spacing:10.540800pt;}
.ws73{word-spacing:10.546656pt;}
.wsa3{word-spacing:10.564224pt;}
.ws84{word-spacing:11.196672pt;}
.ws68{word-spacing:11.507040pt;}
.ws67{word-spacing:11.518752pt;}
.wse4{word-spacing:11.823264pt;}
.ws79{word-spacing:12.449856pt;}
.ws62{word-spacing:12.455712pt;}
.ws91{word-spacing:12.461568pt;}
.wsc5{word-spacing:12.467424pt;}
.ws93{word-spacing:12.473280pt;}
.wsbd{word-spacing:12.766080pt;}
.ws99{word-spacing:12.771936pt;}
.ws86{word-spacing:12.783648pt;}
.ws8b{word-spacing:12.801216pt;}
.ws76{word-spacing:13.099872pt;}
.ws3b{word-spacing:13.105728pt;}
.wse2{word-spacing:13.726464pt;}
.ws40{word-spacing:14.042688pt;}
.ws74{word-spacing:14.048544pt;}
.ws9b{word-spacing:14.054400pt;}
.wse{word-spacing:14.060256pt;}
.ws5a{word-spacing:14.071968pt;}
.ws3f{word-spacing:14.083680pt;}
.ws98{word-spacing:14.388192pt;}
.ws5f{word-spacing:14.686848pt;}
.ws5e{word-spacing:14.692704pt;}
.ws54{word-spacing:14.698560pt;}
.wsf7{word-spacing:14.704416pt;}
.wsf0{word-spacing:14.710272pt;}
.wsef{word-spacing:14.716128pt;}
.ws8a{word-spacing:15.331008pt;}
.ws10{word-spacing:15.664800pt;}
.wsdd{word-spacing:15.676512pt;}
.wsb9{word-spacing:15.986880pt;}
.ws60{word-spacing:15.992736pt;}
.ws7f{word-spacing:16.303104pt;}
.ws46{word-spacing:16.308960pt;}
.wsab{word-spacing:16.314816pt;}
.ws7b{word-spacing:16.613472pt;}
.ws69{word-spacing:16.953120pt;}
.ws95{word-spacing:17.251776pt;}
.ws14{word-spacing:17.591424pt;}
.ws78{word-spacing:17.907648pt;}
.ws39{word-spacing:17.913504pt;}
.wsdb{word-spacing:18.218016pt;}
.ws2e{word-spacing:18.540096pt;}
.wsd{word-spacing:18.551808pt;}
.ws2f{word-spacing:18.563520pt;}
.ws44{word-spacing:18.569376pt;}
.wsf4{word-spacing:18.856320pt;}
.ws13{word-spacing:19.178400pt;}
.ws70{word-spacing:19.828416pt;}
.ws85{word-spacing:20.138784pt;}
.wsf3{word-spacing:20.144640pt;}
.ws49{word-spacing:20.472576pt;}
.ws65{word-spacing:21.749184pt;}
.ws71{word-spacing:22.381632pt;}
.wsad{word-spacing:22.393344pt;}
.wsfa{word-spacing:22.399200pt;}
.wsf5{word-spacing:23.043360pt;}
.wsb4{word-spacing:23.992032pt;}
.wsa1{word-spacing:24.314112pt;}
.wsf2{word-spacing:24.624480pt;}
.ws6f{word-spacing:24.761600pt;}
.ws7d{word-spacing:24.774400pt;}
.ws42{word-spacing:24.780800pt;}
.ws45{word-spacing:24.946560pt;}
.wsf6{word-spacing:25.262784pt;}
.ws1e{word-spacing:25.584864pt;}
.wsb7{word-spacing:25.906944pt;}
.ws77{word-spacing:25.918656pt;}
.ws5c{word-spacing:27.505632pt;}
.wsdc{word-spacing:28.460160pt;}
.ws21{word-spacing:29.098464pt;}
.wsc{word-spacing:31.036800pt;}
.ws33{word-spacing:31.347168pt;}
.ws34{word-spacing:31.370592pt;}
.wse9{word-spacing:32.295840pt;}
.wsea{word-spacing:32.325120pt;}
.wsc4{word-spacing:34.544544pt;}
.ws63{word-spacing:36.137376pt;}
.ws64{word-spacing:38.075712pt;}
.wsec{word-spacing:57.265824pt;}
.wsed{word-spacing:57.277536pt;}
.wseb{word-spacing:57.295104pt;}
._e{margin-left:-172.511904pt;}
._f{margin-left:-133.120000pt;}
._11{margin-left:-104.000000pt;}
._d{margin-left:-51.521088pt;}
._12{margin-left:-24.448000pt;}
._1{margin-left:-5.420512pt;}
._2{margin-left:-3.377568pt;}
._0{margin-left:-2.430656pt;}
._3{margin-left:-1.133312pt;}
._4{width:1.013088pt;}
._13{width:24.576000pt;}
._b{width:35.522496pt;}
._14{width:38.403648pt;}
._a{width:39.680256pt;}
._c{width:44.160096pt;}
._8{width:46.719168pt;}
._9{width:47.679552pt;}
._7{width:49.284096pt;}
._5{width:50.560704pt;}
._6{width:52.159392pt;}
._10{width:63.603456pt;}
.fs3{font-size:53.440000pt;}
.fs5{font-size:54.997333pt;}
.fs2{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.fs4{font-size:83.121067pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:41.467067pt;}
.y184{bottom:116.668147pt;}
.ya3{bottom:118.268747pt;}
.y115{bottom:120.268963pt;}
.y85{bottom:123.792547pt;}
.y183{bottom:133.548067pt;}
.ya2{bottom:135.068147pt;}
.y114{bottom:137.148883pt;}
.y57{bottom:138.508387pt;}
.y132{bottom:139.306947pt;}
.y84{bottom:149.632147pt;}
.y182{bottom:150.427987pt;}
.y113{bottom:154.028803pt;}
.y56{bottom:155.388307pt;}
.y131{bottom:156.186867pt;}
.ya1{bottom:160.988267pt;}
.y181{bottom:167.307907pt;}
.y112{bottom:170.828203pt;}
.yea{bottom:171.466571pt;}
.yc1{bottom:171.707067pt;}
.y55{bottom:172.268227pt;}
.y130{bottom:173.066787pt;}
.y83{bottom:175.552267pt;}
.y180{bottom:184.107307pt;}
.ya0{bottom:186.827867pt;}
.y111{bottom:187.708123pt;}
.y54{bottom:189.148147pt;}
.ye9{bottom:189.787067pt;}
.y12f{bottom:189.946707pt;}
.y82{bottom:192.432187pt;}
.yc0{bottom:196.267067pt;}
.y1af{bottom:200.745707pt;}
.y17f{bottom:200.987227pt;}
.y12e{bottom:206.826627pt;}
.y81{bottom:209.312107pt;}
.y167{bottom:211.307307pt;}
.y110{bottom:212.508283pt;}
.y9f{bottom:212.747987pt;}
.y53{bottom:214.028827pt;}
.ye8{bottom:214.987200pt;}
.y17e{bottom:217.867147pt;}
.y12d{bottom:223.626027pt;}
.ybf{bottom:224.667067pt;}
.y2a{bottom:224.909760pt;}
.y1ae{bottom:225.626387pt;}
.y80{bottom:226.111507pt;}
.y166{bottom:228.187227pt;}
.y9e{bottom:229.547387pt;}
.y52{bottom:230.828227pt;}
.y17d{bottom:234.747067pt;}
.y29{bottom:241.789680pt;}
.y165{bottom:245.067147pt;}
.y10f{bottom:245.468779pt;}
.y9d{bottom:246.427307pt;}
.y51{bottom:247.708147pt;}
.y12c{bottom:248.506707pt;}
.y1ad{bottom:250.507067pt;}
.y7f{bottom:250.992187pt;}
.y158{bottom:253.067747pt;}
.y28{bottom:258.669600pt;}
.y17c{bottom:260.027067pt;}
.y164{bottom:261.866547pt;}
.y10e{bottom:262.348699pt;}
.y9c{bottom:263.307227pt;}
.y50{bottom:264.588067pt;}
.y12b{bottom:265.386627pt;}
.ye7{bottom:266.107464pt;}
.y7e{bottom:267.872107pt;}
.y157{bottom:269.947667pt;}
.y27{bottom:275.549520pt;}
.y1ac{bottom:275.627067pt;}
.y163{bottom:278.746467pt;}
.y10d{bottom:279.148099pt;}
.y9b{bottom:280.187147pt;}
.y4f{bottom:281.467987pt;}
.y12a{bottom:282.266547pt;}
.ye6{bottom:282.987384pt;}
.y14a{bottom:283.387827pt;}
.y7d{bottom:284.752027pt;}
.y17b{bottom:286.267067pt;}
.y156{bottom:286.747067pt;}
.y26{bottom:292.348920pt;}
.y10c{bottom:296.028019pt;}
.y9a{bottom:297.067067pt;}
.y4e{bottom:298.347907pt;}
.y129{bottom:299.146467pt;}
.ye5{bottom:299.867304pt;}
.y149{bottom:300.267747pt;}
.y162{bottom:303.627147pt;}
.y7c{bottom:309.632707pt;}
.y155{bottom:311.307067pt;}
.y10b{bottom:312.907939pt;}
.y4d{bottom:315.147307pt;}
.y148{bottom:317.147667pt;}
.y25{bottom:317.229600pt;}
.y1ab{bottom:317.788120pt;}
.y161{bottom:320.507067pt;}
.y99{bottom:322.187200pt;}
.y128{bottom:323.946627pt;}
.ye4{bottom:324.747984pt;}
.y7b{bottom:326.432107pt;}
.y17a{bottom:328.027067pt;}
.y4c{bottom:332.027227pt;}
.y147{bottom:333.947067pt;}
.y24{bottom:334.109520pt;}
.y1aa{bottom:334.668040pt;}
.y10a{bottom:337.788619pt;}
.y154{bottom:339.787067pt;}
.y127{bottom:340.826547pt;}
.ye3{bottom:341.547384pt;}
.y7a{bottom:343.312027pt;}
.y160{bottom:345.067200pt;}
.y4b{bottom:348.907147pt;}
.y23{bottom:350.989440pt;}
.y1a9{bottom:351.547960pt;}
.y109{bottom:354.668539pt;}
.y179{bottom:356.507067pt;}
.y126{bottom:357.706467pt;}
.ye2{bottom:358.427304pt;}
.y146{bottom:358.507067pt;}
.y79{bottom:360.191947pt;}
.y98{bottom:364.267387pt;}
.y4a{bottom:365.787067pt;}
.y22{bottom:367.869360pt;}
.ybe{bottom:368.027067pt;}
.y1a8{bottom:368.347360pt;}
.y108{bottom:371.548459pt;}
.y15f{bottom:373.467067pt;}
.y125{bottom:374.586387pt;}
.ye1{bottom:375.307224pt;}
.y78{bottom:377.071867pt;}
.y97{bottom:381.147307pt;}
.y21{bottom:384.749280pt;}
.y1a7{bottom:385.227280pt;}
.y145{bottom:386.987200pt;}
.y107{bottom:388.347859pt;}
.y49{bottom:390.907200pt;}
.ye0{bottom:392.187144pt;}
.y77{bottom:393.951787pt;}
.ybd{bottom:395.147307pt;}
.y96{bottom:398.027227pt;}
.y124{bottom:399.467067pt;}
.y20{bottom:401.548680pt;}
.y1a6{bottom:402.107200pt;}
.y13f{bottom:402.587747pt;}
.y106{bottom:405.227779pt;}
.ydf{bottom:409.067064pt;}
.y76{bottom:410.831707pt;}
.y95{bottom:414.907147pt;}
.y123{bottom:416.346987pt;}
.y1f{bottom:418.428600pt;}
.y13e{bottom:419.467667pt;}
.ybc{bottom:419.947467pt;}
.y1a5{bottom:427.227067pt;}
.y75{bottom:427.631107pt;}
.y105{bottom:430.027939pt;}
.y94{bottom:431.787067pt;}
.y48{bottom:432.988235pt;}
.y122{bottom:433.146387pt;}
.y178{bottom:433.307067pt;}
.yde{bottom:433.867224pt;}
.y1e{bottom:435.308520pt;}
.y13d{bottom:436.267067pt;}
.ybb{bottom:436.827387pt;}
.y172{bottom:449.469169pt;}
.y121{bottom:450.026307pt;}
.y1d{bottom:452.188440pt;}
.y74{bottom:452.511787pt;}
.yba{bottom:453.707307pt;}
.y177{bottom:454.747200pt;}
.y93{bottom:456.267067pt;}
.y13c{bottom:460.827200pt;}
.y104{bottom:462.988435pt;}
.y47{bottom:465.868211pt;}
.ydd{bottom:466.747200pt;}
.y1a4{bottom:469.382547pt;}
.y73{bottom:469.391707pt;}
.yb9{bottom:470.587227pt;}
.y120{bottom:474.906987pt;}
.y176{bottom:476.107067pt;}
.y1c{bottom:477.069120pt;}
.y103{bottom:479.868355pt;}
.y46{bottom:482.667611pt;}
.y92{bottom:484.747067pt;}
.y72{bottom:486.271627pt;}
.yb8{bottom:487.467147pt;}
.y13b{bottom:489.307067pt;}
.y11f{bottom:491.786907pt;}
.ydc{bottom:492.027067pt;}
.y171{bottom:492.428215pt;}
.y1b{bottom:493.868520pt;}
.y1a3{bottom:494.263227pt;}
.y102{bottom:496.667755pt;}
.y175{bottom:497.547067pt;}
.y71{bottom:503.151547pt;}
.y1a{bottom:510.748440pt;}
.y1a2{bottom:511.062627pt;}
.yb7{bottom:512.267307pt;}
.y101{bottom:513.547675pt;}
.y45{bottom:515.628107pt;}
.y11e{bottom:516.587067pt;}
.ydb{bottom:518.027811pt;}
.y173{bottom:518.268476pt;}
.y174{bottom:518.907067pt;}
.y70{bottom:519.950947pt;}
.y19{bottom:527.628360pt;}
.yb6{bottom:529.147227pt;}
.y100{bottom:530.427595pt;}
.y170{bottom:531.547067pt;}
.yda{bottom:534.907731pt;}
.y1a1{bottom:535.943307pt;}
.y6f{bottom:536.830867pt;}
.y44{bottom:540.508787pt;}
.y18{bottom:544.508280pt;}
.yff{bottom:547.307515pt;}
.y11d{bottom:549.147067pt;}
.yd9{bottom:551.787651pt;}
.y1a0{bottom:552.823227pt;}
.y6e{bottom:553.710787pt;}
.yb5{bottom:554.027907pt;}
.y43{bottom:557.388707pt;}
.y17{bottom:561.388200pt;}
.yfe{bottom:564.187435pt;}
.yd8{bottom:568.667571pt;}
.y6d{bottom:570.590707pt;}
.yb4{bottom:570.907827pt;}
.y42{bottom:574.268627pt;}
.y11c{bottom:577.627067pt;}
.y19f{bottom:577.703907pt;}
.yfd{bottom:580.986835pt;}
.y16{bottom:586.188360pt;}
.y6c{bottom:587.470627pt;}
.yb3{bottom:587.787747pt;}
.y16f{bottom:588.187147pt;}
.y41{bottom:591.068027pt;}
.yd7{bottom:593.467731pt;}
.y153{bottom:599.947440pt;}
.y19e{bottom:602.584587pt;}
.y15{bottom:603.068280pt;}
.y6b{bottom:604.350547pt;}
.yb2{bottom:604.667667pt;}
.yfc{bottom:605.786995pt;}
.yd6{bottom:610.347651pt;}
.y16e{bottom:613.067827pt;}
.y40{bottom:615.948707pt;}
.y152{bottom:616.827360pt;}
.y19d{bottom:619.383987pt;}
.y14{bottom:619.948200pt;}
.y6a{bottom:621.149947pt;}
.yb1{bottom:621.467067pt;}
.yd5{bottom:627.227571pt;}
.y16d{bottom:629.867227pt;}
.y3f{bottom:632.828627pt;}
.y151{bottom:633.626760pt;}
.y13{bottom:636.828120pt;}
.y69{bottom:638.029867pt;}
.yfb{bottom:638.747491pt;}
.yd4{bottom:644.107491pt;}
.y19c{bottom:644.264667pt;}
.y15e{bottom:645.227827pt;}
.yb0{bottom:646.587067pt;}
.y144{bottom:646.667747pt;}
.y16c{bottom:646.747147pt;}
.y3e{bottom:649.708547pt;}
.y150{bottom:650.506680pt;}
.y12{bottom:653.708040pt;}
.y68{bottom:654.909787pt;}
.yfa{bottom:655.627411pt;}
.y19b{bottom:661.144587pt;}
.y15d{bottom:662.107747pt;}
.y143{bottom:663.467147pt;}
.y16b{bottom:663.627067pt;}
.y3d{bottom:666.588467pt;}
.yd3{bottom:668.907651pt;}
.y11{bottom:670.587960pt;}
.y67{bottom:671.789707pt;}
.yf9{bottom:672.507331pt;}
.y14f{bottom:675.387360pt;}
.y19a{bottom:678.024507pt;}
.y15c{bottom:678.987667pt;}
.y142{bottom:680.347067pt;}
.y3c{bottom:683.387867pt;}
.y10{bottom:687.387360pt;}
.y16a{bottom:688.187067pt;}
.y66{bottom:688.669627pt;}
.yaf{bottom:688.750147pt;}
.yf8{bottom:689.387251pt;}
.y14e{bottom:692.267280pt;}
.y15b{bottom:695.787067pt;}
.y3b{bottom:700.267787pt;}
.yd2{bottom:701.787627pt;}
.y199{bottom:702.905187pt;}
.yf{bottom:704.267280pt;}
.y141{bottom:704.907067pt;}
.y65{bottom:705.469027pt;}
.yae{bottom:705.549547pt;}
.yf7{bottom:706.186651pt;}
.y14d{bottom:709.147200pt;}
.y169{bottom:716.667067pt;}
.y3a{bottom:717.147707pt;}
.yd1{bottom:718.667547pt;}
.y198{bottom:719.785107pt;}
.y15a{bottom:720.347067pt;}
.ye{bottom:721.147200pt;}
.y64{bottom:722.348947pt;}
.yf6{bottom:723.066571pt;}
.yad{bottom:731.469667pt;}
.y140{bottom:733.307067pt;}
.y14c{bottom:733.627067pt;}
.yd0{bottom:735.547467pt;}
.y197{bottom:736.584507pt;}
.y91{bottom:741.468787pt;}
.y39{bottom:742.028387pt;}
.yd{bottom:746.267067pt;}
.y63{bottom:747.229627pt;}
.yf5{bottom:747.866731pt;}
.yac{bottom:748.269067pt;}
.y159{bottom:748.747067pt;}
.ycf{bottom:752.427387pt;}
.y38{bottom:758.908307pt;}
.y196{bottom:761.465187pt;}
.y14b{bottom:762.027067pt;}
.y62{bottom:764.109547pt;}
.y90{bottom:766.349467pt;}
.yab{bottom:774.189187pt;}
.y37{bottom:775.788227pt;}
.yce{bottom:777.308067pt;}
.y195{bottom:778.345107pt;}
.yf4{bottom:780.827227pt;}
.y61{bottom:780.908947pt;}
.y8f{bottom:783.148867pt;}
.y13a{bottom:783.387147pt;}
.yc{bottom:788.345891pt;}
.yaa{bottom:791.069107pt;}
.y36{bottom:792.587627pt;}
.y11b{bottom:793.067067pt;}
.ycd{bottom:794.187987pt;}
.yf3{bottom:797.707147pt;}
.y8e{bottom:800.028787pt;}
.y139{bottom:800.267067pt;}
.y194{bottom:803.225787pt;}
.y60{bottom:806.829067pt;}
.ya9{bottom:807.868507pt;}
.y35{bottom:809.467547pt;}
.ycc{bottom:810.987387pt;}
.yb{bottom:813.226571pt;}
.yf2{bottom:814.506547pt;}
.y18c{bottom:815.787067pt;}
.y8d{bottom:816.908707pt;}
.y11a{bottom:818.988147pt;}
.y193{bottom:820.105707pt;}
.y5f{bottom:823.628467pt;}
.y138{bottom:825.387067pt;}
.y34{bottom:826.347467pt;}
.ya{bottom:830.025971pt;}
.y8c{bottom:833.788627pt;}
.ycb{bottom:835.868067pt;}
.yf1{bottom:839.387227pt;}
.y18b{bottom:841.789387pt;}
.y192{bottom:844.905867pt;}
.y5e{bottom:849.468067pt;}
.ya8{bottom:850.588027pt;}
.y8b{bottom:850.668547pt;}
.y33{bottom:851.228147pt;}
.yca{bottom:852.747987pt;}
.y9{bottom:854.985707pt;}
.yf0{bottom:856.267147pt;}
.y18a{bottom:858.669307pt;}
.y191{bottom:861.785787pt;}
.y1b7{bottom:863.387067pt;}
.y8a{bottom:867.548467pt;}
.y137{bottom:867.549027pt;}
.y32{bottom:868.108067pt;}
.yc9{bottom:869.627907pt;}
.yef{bottom:873.147067pt;}
.y5d{bottom:875.307667pt;}
.y189{bottom:875.468707pt;}
.ya7{bottom:876.508147pt;}
.y119{bottom:877.628667pt;}
.y8{bottom:879.866387pt;}
.y89{bottom:884.347867pt;}
.y136{bottom:884.348427pt;}
.y31{bottom:884.907467pt;}
.yc8{bottom:886.507827pt;}
.y1b6{bottom:886.507907pt;}
.y190{bottom:886.666467pt;}
.ya6{bottom:893.388067pt;}
.y118{bottom:894.508587pt;}
.yee{bottom:898.027747pt;}
.y5c{bottom:901.227787pt;}
.y188{bottom:901.388827pt;}
.y30{bottom:901.787387pt;}
.yc7{bottom:903.307227pt;}
.y1b5{bottom:903.307307pt;}
.y18f{bottom:903.546387pt;}
.y7{bottom:904.747067pt;}
.y135{bottom:910.188027pt;}
.ya5{bottom:910.267987pt;}
.y117{bottom:911.307987pt;}
.yed{bottom:914.907667pt;}
.y88{bottom:918.107707pt;}
.y187{bottom:918.268747pt;}
.y2f{bottom:918.667307pt;}
.yc6{bottom:920.187147pt;}
.y1b4{bottom:920.187227pt;}
.y5b{bottom:927.067387pt;}
.y116{bottom:928.187907pt;}
.y18e{bottom:928.427067pt;}
.yec{bottom:931.707067pt;}
.y186{bottom:935.068147pt;}
.y2e{bottom:935.547227pt;}
.y134{bottom:936.108147pt;}
.y1b3{bottom:937.067147pt;}
.y87{bottom:942.907867pt;}
.ya4{bottom:943.947307pt;}
.yc5{bottom:945.067827pt;}
.y6{bottom:946.347339pt;}
.y2d{bottom:952.427147pt;}
.y133{bottom:952.907547pt;}
.y5a{bottom:952.987507pt;}
.y18d{bottom:953.547067pt;}
.y1b2{bottom:953.947067pt;}
.yeb{bottom:956.907067pt;}
.y185{bottom:960.988267pt;}
.yc4{bottom:961.947747pt;}
.y5{bottom:967.787067pt;}
.y86{bottom:968.747467pt;}
.y2c{bottom:969.307067pt;}
.y59{bottom:977.787667pt;}
.yc3{bottom:978.827667pt;}
.y1b1{bottom:979.067067pt;}
.y2b{bottom:994.347067pt;}
.y168{bottom:994.507067pt;}
.y58{bottom:994.587067pt;}
.yc2{bottom:995.627067pt;}
.y1b0{bottom:996.987067pt;}
.y3{bottom:1017.387067pt;}
.y2{bottom:1043.707067pt;}
.y1{bottom:1062.027067pt;}
.h9{height:39.932146pt;}
.ha{height:52.448437pt;}
.hb{height:54.927899pt;}
.h8{height:55.400516pt;}
.h6{height:55.736250pt;}
.h4{height:61.076250pt;}
.h7{height:61.078234pt;}
.h1{height:62.781250pt;}
.h2{height:62.812500pt;}
.h5{height:66.750000pt;}
.h3{height:77.763750pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:75.600000pt;}
.xb{left:94.560000pt;}
.x9{left:100.559080pt;}
.x1{left:106.720000pt;}
.xc{left:118.399776pt;}
.x6{left:134.239984pt;}
.x2b{left:142.560168pt;}
.x5{left:145.040000pt;}
.xa{left:155.599624pt;}
.x25{left:167.680079pt;}
.x23{left:173.520000pt;}
.x1b{left:175.040000pt;}
.x26{left:180.398437pt;}
.x1f{left:183.920000pt;}
.x1d{left:193.840000pt;}
.x15{left:196.080000pt;}
.x21{left:213.200000pt;}
.x17{left:242.400000pt;}
.x24{left:243.600000pt;}
.xe{left:246.080000pt;}
.x11{left:261.680000pt;}
.x2a{left:263.600000pt;}
.x20{left:279.120000pt;}
.x7{left:294.159904pt;}
.x19{left:308.400000pt;}
.x8{left:318.639448pt;}
.x2{left:352.720000pt;}
.x27{left:364.798716pt;}
.x4{left:396.880000pt;}
.x12{left:430.640000pt;}
.xf{left:458.240000pt;}
.x13{left:470.560000pt;}
.x28{left:522.880000pt;}
.x16{left:601.680000pt;}
.xd{left:604.240000pt;}
.x10{left:632.000000pt;}
.x1c{left:639.120000pt;}
.x1e{left:640.160000pt;}
.x1a{left:645.760000pt;}
.x14{left:650.960000pt;}
.x22{left:656.800000pt;}
.x18{left:661.120000pt;}
.x29{left:693.999867pt;}
}




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