
    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_5cdc727615c240ebb6e656e7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8d383f98513867648ce02721.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_942b36df2efa557c12cc714c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4ae6aa556649cd15ddcb6dfb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_776cb2edbf4e75649cbfd1bd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.933594;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_076a54fb1ad50209b02a9ca7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244317,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);}
.m4{transform:matrix(0.372100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372100,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls43{letter-spacing:-2.022000px;}
.ls33{letter-spacing:-1.506000px;}
.ls2c{letter-spacing:-1.500000px;}
.ls37{letter-spacing:-1.302000px;}
.ls3c{letter-spacing:-1.266000px;}
.ls31{letter-spacing:-1.254000px;}
.ls2b{letter-spacing:-0.804000px;}
.ls11{letter-spacing:-0.786000px;}
.ls27{letter-spacing:-0.780000px;}
.ls24{letter-spacing:-0.546000px;}
.ls34{letter-spacing:-0.471000px;}
.ls7{letter-spacing:-0.463800px;}
.lsb{letter-spacing:-0.303000px;}
.ls16{letter-spacing:-0.301200px;}
.ls55{letter-spacing:-0.268800px;}
.ls25{letter-spacing:-0.202800px;}
.ls3e{letter-spacing:-0.186600px;}
.ls47{letter-spacing:-0.172200px;}
.ls6{letter-spacing:-0.132600px;}
.ls56{letter-spacing:-0.115200px;}
.ls15{letter-spacing:-0.114000px;}
.ls3f{letter-spacing:-0.107400px;}
.ls29{letter-spacing:-0.091800px;}
.ls2f{letter-spacing:-0.084000px;}
.lsd{letter-spacing:-0.078600px;}
.ls3d{letter-spacing:-0.075600px;}
.ls1b{letter-spacing:-0.075000px;}
.ls40{letter-spacing:-0.069600px;}
.lsf{letter-spacing:-0.064800px;}
.ls1d{letter-spacing:-0.058320px;}
.ls46{letter-spacing:-0.049680px;}
.ls48{letter-spacing:-0.041040px;}
.ls44{letter-spacing:-0.038160px;}
.ls2a{letter-spacing:-0.001440px;}
.ls4{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.025200px;}
.ls5{letter-spacing:0.038880px;}
.ls21{letter-spacing:0.050880px;}
.ls4b{letter-spacing:0.060600px;}
.ls4d{letter-spacing:0.064200px;}
.ls1a{letter-spacing:0.067200px;}
.lsc{letter-spacing:0.075000px;}
.ls57{letter-spacing:0.100800px;}
.ls28{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls8{letter-spacing:0.150000px;}
.ls1c{letter-spacing:0.174000px;}
.ls4e{letter-spacing:0.174240px;}
.ls12{letter-spacing:0.175200px;}
.ls22{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.186600px;}
.ls49{letter-spacing:0.209400px;}
.ls9{letter-spacing:0.210000px;}
.ls1{letter-spacing:0.214560px;}
.ls18{letter-spacing:0.243600px;}
.ls1e{letter-spacing:0.249000px;}
.lse{letter-spacing:0.252600px;}
.ls4a{letter-spacing:0.274800px;}
.ls2e{letter-spacing:0.303000px;}
.ls2d{letter-spacing:0.306000px;}
.ls20{letter-spacing:0.306600px;}
.ls26{letter-spacing:0.348600px;}
.ls19{letter-spacing:0.364800px;}
.ls54{letter-spacing:0.376800px;}
.ls14{letter-spacing:0.393600px;}
.ls2{letter-spacing:0.417000px;}
.ls17{letter-spacing:0.479400px;}
.ls39{letter-spacing:0.479520px;}
.ls23{letter-spacing:0.492000px;}
.lsa{letter-spacing:0.493800px;}
.ls52{letter-spacing:0.599520px;}
.ls45{letter-spacing:0.642000px;}
.ls30{letter-spacing:0.858000px;}
.ls1f{letter-spacing:0.894000px;}
.ls32{letter-spacing:0.906000px;}
.ls10{letter-spacing:1.002000px;}
.ls38{letter-spacing:1.614240px;}
.ls3{letter-spacing:6.654240px;}
.ls4c{letter-spacing:8.814240px;}
.ls35{letter-spacing:8.820000px;}
.ls36{letter-spacing:9.540000px;}
.ls50{letter-spacing:10.254240px;}
.ls4f{letter-spacing:12.186720px;}
.ls3b{letter-spacing:12.414240px;}
.ls41{letter-spacing:13.140000px;}
.ls42{letter-spacing:13.860000px;}
.ls53{letter-spacing:14.574240px;}
.ls3a{letter-spacing:42.426720px;}
.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;}
}
.ws1b{word-spacing:-59.760000px;}
.ws4{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws5{word-spacing:-15.045240px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws22{word-spacing:-14.363760px;}
.wsd{word-spacing:-13.899360px;}
.ws2e{word-spacing:-13.882560px;}
.ws14{word-spacing:-13.854360px;}
.ws1a{word-spacing:-13.811760px;}
.ws1c{word-spacing:-13.808760px;}
.ws2a{word-spacing:-13.780560px;}
.ws12{word-spacing:-13.754760px;}
.ws10{word-spacing:-13.749360px;}
.ws29{word-spacing:-13.715160px;}
.wsc{word-spacing:-13.692360px;}
.wsb{word-spacing:-13.680960px;}
.ws17{word-spacing:-13.646160px;}
.ws31{word-spacing:-13.606560px;}
.ws2d{word-spacing:-13.569960px;}
.ws2b{word-spacing:-13.566360px;}
.ws2c{word-spacing:-13.530960px;}
.ws8{word-spacing:-13.505760px;}
.ws18{word-spacing:-13.504320px;}
.ws24{word-spacing:-13.467600px;}
.ws28{word-spacing:-13.464720px;}
.ws25{word-spacing:-13.456080px;}
.ws11{word-spacing:-13.447440px;}
.ws9{word-spacing:-13.440960px;}
.ws32{word-spacing:-13.436160px;}
.ws26{word-spacing:-13.398360px;}
.ws30{word-spacing:-13.390560px;}
.ws27{word-spacing:-13.333560px;}
.ws21{word-spacing:-13.319160px;}
.ws13{word-spacing:-13.302960px;}
.ws2f{word-spacing:-13.236960px;}
.wsf{word-spacing:-13.204560px;}
.ws15{word-spacing:-13.202760px;}
.ws1f{word-spacing:-13.034760px;}
.ws16{word-spacing:-12.725760px;}
.wsa{word-spacing:-12.719760px;}
.ws1d{word-spacing:-12.251760px;}
.ws20{word-spacing:-12.203760px;}
.ws19{word-spacing:-12.005760px;}
.ws1e{word-spacing:-11.999760px;}
.ws23{word-spacing:-11.483760px;}
.ws6{word-spacing:-9.437760px;}
.ws7{word-spacing:-8.786880px;}
.wse{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._21{margin-left:-196.738560px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._26{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-145.392000px;}
._10{margin-left:-142.046400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._24{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._22{margin-left:-80.367360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._23{margin-left:-35.130240px;}
._19{margin-left:-32.468640px;}
._29{margin-left:-4.441920px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.317240px;}
._31{width:2.363520px;}
._2f{width:3.764880px;}
._30{width:5.019840px;}
._32{width:6.171720px;}
._2d{width:7.407720px;}
._33{width:8.426160px;}
._2c{width:9.620640px;}
._2e{width:10.661520px;}
._2b{width:11.743200px;}
._2a{width:12.892800px;}
._36{width:14.940000px;}
._34{width:16.766280px;}
._3b{width:17.942400px;}
._3a{width:20.256360px;}
._35{width:22.262280px;}
._44{width:23.724720px;}
._42{width:24.960720px;}
._43{width:26.780880px;}
._41{width:28.288080px;}
._3c{width:30.253680px;}
._3e{width:32.773560px;}
._38{width:36.650400px;}
._3d{width:38.437320px;}
._39{width:42.848040px;}
._3f{width:46.736640px;}
._40{width:47.794320px;}
._37{width:59.999040px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y86{bottom:3.960000px;}
.yc5{bottom:4.320000px;}
.yc2{bottom:4.500000px;}
.y94{bottom:4.680000px;}
.yce{bottom:4.860000px;}
.y150{bottom:5.220000px;}
.ya2{bottom:5.580000px;}
.ya4{bottom:5.760000px;}
.yde{bottom:6.660000px;}
.yea{bottom:6.705000px;}
.y15a{bottom:7.020000px;}
.y143{bottom:7.200000px;}
.y148{bottom:7.245000px;}
.y145{bottom:7.380000px;}
.y14a{bottom:7.560000px;}
.y80{bottom:7.740000px;}
.y100{bottom:9.720000px;}
.y10b{bottom:9.756000px;}
.y109{bottom:9.894000px;}
.y102{bottom:9.900000px;}
.y83{bottom:13.500000px;}
.y127{bottom:16.200000px;}
.y11e{bottom:16.380000px;}
.y12d{bottom:16.605000px;}
.y12b{bottom:20.520000px;}
.y125{bottom:20.700000px;}
.ydc{bottom:20.880000px;}
.y158{bottom:21.420000px;}
.y141{bottom:21.960000px;}
.yc0{bottom:22.176000px;}
.ye2{bottom:22.320000px;}
.y85{bottom:22.350000px;}
.y15c{bottom:22.860000px;}
.y15f{bottom:22.905000px;}
.y161{bottom:23.040000px;}
.ycd{bottom:23.220000px;}
.y14f{bottom:23.580000px;}
.y7f{bottom:26.100000px;}
.yfe{bottom:26.280000px;}
.y17c{bottom:27.720000px;}
.y10d{bottom:27.930000px;}
.y82{bottom:31.860000px;}
.y11c{bottom:37.260000px;}
.y12a{bottom:38.880000px;}
.y120{bottom:39.060000px;}
.y123{bottom:39.270000px;}
.y7e{bottom:44.460000px;}
.y17b{bottom:48.780000px;}
.y6{bottom:61.560000px;}
.y17a{bottom:69.840000px;}
.y19b{bottom:88.200000px;}
.y197{bottom:90.180000px;}
.y179{bottom:90.900000px;}
.y156{bottom:92.700000px;}
.y31{bottom:95.580000px;}
.yc1{bottom:99.360000px;}
.y175{bottom:103.140000px;}
.y76{bottom:104.400000px;}
.ya0{bottom:105.120000px;}
.y196{bottom:111.060000px;}
.y178{bottom:111.960000px;}
.y183{bottom:111.990000px;}
.y155{bottom:113.760000px;}
.y30{bottom:116.640000px;}
.y10a{bottom:118.080000px;}
.ybf{bottom:118.800000px;}
.y174{bottom:124.200000px;}
.y75{bottom:125.460000px;}
.y9f{bottom:126.180000px;}
.y195{bottom:132.156000px;}
.y182{bottom:133.050000px;}
.y177{bottom:133.065000px;}
.y2f{bottom:137.736000px;}
.y173{bottom:141.336000px;}
.y108{bottom:142.956000px;}
.y154{bottom:143.856000px;}
.y74{bottom:146.556000px;}
.y9e{bottom:147.276000px;}
.y194{bottom:153.210000px;}
.y181{bottom:154.110000px;}
.y2e{bottom:158.790000px;}
.y153{bottom:158.970000px;}
.ybe{bottom:162.750000px;}
.y73{bottom:167.610000px;}
.y107{bottom:167.970000px;}
.y9d{bottom:168.330000px;}
.yf4{bottom:171.750000px;}
.y193{bottom:174.270000px;}
.y180{bottom:175.170000px;}
.y19a{bottom:176.610000px;}
.y2d{bottom:179.850000px;}
.y152{bottom:181.290000px;}
.ybd{bottom:183.810000px;}
.y72{bottom:188.670000px;}
.y9c{bottom:189.390000px;}
.yf3{bottom:192.810000px;}
.y106{bottom:192.990000px;}
.y192{bottom:195.330000px;}
.y17f{bottom:196.230000px;}
.y199{bottom:197.670000px;}
.y2c{bottom:200.910000px;}
.y151{bottom:203.610000px;}
.ybc{bottom:204.870000px;}
.y71{bottom:209.730000px;}
.y9b{bottom:210.450000px;}
.yf2{bottom:213.870000px;}
.y191{bottom:216.390000px;}
.y17e{bottom:217.290000px;}
.y105{bottom:217.830000px;}
.y198{bottom:218.730000px;}
.y2b{bottom:221.970000px;}
.ybb{bottom:225.930000px;}
.y70{bottom:230.790000px;}
.y9a{bottom:231.510000px;}
.yf1{bottom:234.930000px;}
.y190{bottom:237.450000px;}
.y5f{bottom:239.790000px;}
.y104{bottom:242.850000px;}
.y2a{bottom:243.030000px;}
.y99{bottom:246.630000px;}
.yba{bottom:246.990000px;}
.y6f{bottom:251.850000px;}
.yf0{bottom:255.990000px;}
.y18f{bottom:258.510000px;}
.y5e{bottom:260.850000px;}
.y29{bottom:264.090000px;}
.y14e{bottom:264.630000px;}
.y98{bottom:266.430000px;}
.y103{bottom:267.690000px;}
.yb9{bottom:268.050000px;}
.y6e{bottom:272.910000px;}
.yef{bottom:277.050000px;}
.y130{bottom:279.210000px;}
.y18e{bottom:279.570000px;}
.y5d{bottom:281.910000px;}
.y28{bottom:285.150000px;}
.y97{bottom:286.230000px;}
.y14d{bottom:286.950000px;}
.yb8{bottom:289.110000px;}
.y101{bottom:292.530000px;}
.yee{bottom:298.110000px;}
.y18d{bottom:300.630000px;}
.y5c{bottom:302.970000px;}
.y96{bottom:306.030000px;}
.y27{bottom:306.210000px;}
.y14c{bottom:309.270000px;}
.yb7{bottom:310.170000px;}
.y12f{bottom:310.530000px;}
.yff{bottom:317.550000px;}
.yed{bottom:319.170000px;}
.y18c{bottom:321.690000px;}
.y5b{bottom:324.030000px;}
.y95{bottom:325.830000px;}
.y26{bottom:327.270000px;}
.yb6{bottom:331.230000px;}
.y14b{bottom:331.590000px;}
.yec{bottom:334.290000px;}
.y12e{bottom:341.850000px;}
.yfd{bottom:342.390000px;}
.y18b{bottom:342.750000px;}
.y5a{bottom:345.090000px;}
.y93{bottom:345.630000px;}
.y25{bottom:348.330000px;}
.yb5{bottom:352.290000px;}
.y149{bottom:353.910000px;}
.yeb{bottom:356.070000px;}
.y18a{bottom:363.810000px;}
.y59{bottom:366.150000px;}
.y24{bottom:369.390000px;}
.y92{bottom:372.090000px;}
.yb4{bottom:373.170000px;}
.y147{bottom:376.590000px;}
.ye9{bottom:377.850000px;}
.y189{bottom:384.915000px;}
.y58{bottom:387.255000px;}
.y23{bottom:390.495000px;}
.y91{bottom:393.195000px;}
.yb3{bottom:394.275000px;}
.y146{bottom:398.955000px;}
.ye8{bottom:399.675000px;}
.y12c{bottom:404.895000px;}
.y188{bottom:405.975000px;}
.y57{bottom:408.315000px;}
.y22{bottom:411.555000px;}
.y90{bottom:414.255000px;}
.yb2{bottom:415.335000px;}
.y144{bottom:421.275000px;}
.ye7{bottom:421.455000px;}
.y187{bottom:427.035000px;}
.y56{bottom:429.375000px;}
.y21{bottom:432.615000px;}
.y8f{bottom:435.315000px;}
.y129{bottom:436.215000px;}
.yb1{bottom:436.395000px;}
.ye6{bottom:443.235000px;}
.y142{bottom:443.775000px;}
.y186{bottom:448.095000px;}
.y55{bottom:450.435000px;}
.y20{bottom:453.675000px;}
.y8e{bottom:456.375000px;}
.yb0{bottom:457.455000px;}
.y172{bottom:461.595000px;}
.y140{bottom:466.095000px;}
.y185{bottom:469.155000px;}
.y54{bottom:471.495000px;}
.y1f{bottom:474.735000px;}
.y8d{bottom:477.435000px;}
.yaf{bottom:478.515000px;}
.ye5{bottom:480.675000px;}
.y171{bottom:482.655000px;}
.y128{bottom:490.215000px;}
.y53{bottom:492.555000px;}
.y1e{bottom:495.795000px;}
.y8c{bottom:498.495000px;}
.ye4{bottom:502.455000px;}
.y170{bottom:503.715000px;}
.y13f{bottom:509.835000px;}
.y184{bottom:511.275000px;}
.y52{bottom:513.615000px;}
.y1d{bottom:516.855000px;}
.y126{bottom:521.715000px;}
.ye3{bottom:524.235000px;}
.y16f{bottom:524.775000px;}
.y17d{bottom:526.395000px;}
.y8b{bottom:528.555000px;}
.y13e{bottom:530.715000px;}
.y51{bottom:534.675000px;}
.y1c{bottom:537.915000px;}
.y16e{bottom:545.835000px;}
.y8a{bottom:549.615000px;}
.y13d{bottom:551.775000px;}
.y124{bottom:553.035000px;}
.y50{bottom:555.735000px;}
.y1b{bottom:558.975000px;}
.ye1{bottom:561.675000px;}
.y16d{bottom:566.895000px;}
.yfc{bottom:567.975000px;}
.y89{bottom:570.675000px;}
.y13c{bottom:572.835000px;}
.y4f{bottom:576.795000px;}
.y1a{bottom:580.035000px;}
.y16c{bottom:587.955000px;}
.yfb{bottom:589.035000px;}
.y88{bottom:591.735000px;}
.y13b{bottom:593.895000px;}
.y4e{bottom:597.855000px;}
.ye0{bottom:599.115000px;}
.y19{bottom:603.435000px;}
.y6d{bottom:604.155000px;}
.y122{bottom:607.215000px;}
.y16b{bottom:609.015000px;}
.yfa{bottom:610.095000px;}
.y87{bottom:612.795000px;}
.y13a{bottom:614.955000px;}
.y4d{bottom:618.915000px;}
.ydf{bottom:620.895000px;}
.y6c{bottom:625.215000px;}
.y84{bottom:627.915000px;}
.y16a{bottom:630.075000px;}
.yf9{bottom:631.155000px;}
.y18{bottom:633.345000px;}
.y139{bottom:636.045000px;}
.y4c{bottom:640.005000px;}
.y169{bottom:645.225000px;}
.y6b{bottom:646.305000px;}
.yf8{bottom:652.245000px;}
.y17{bottom:654.405000px;}
.y138{bottom:657.105000px;}
.ydd{bottom:658.185000px;}
.y4b{bottom:661.065000px;}
.y121{bottom:661.425000px;}
.y81{bottom:665.385000px;}
.y6a{bottom:667.365000px;}
.y168{bottom:667.545000px;}
.yf7{bottom:673.125000px;}
.y16{bottom:675.465000px;}
.y137{bottom:678.165000px;}
.ydb{bottom:679.965000px;}
.y4a{bottom:682.125000px;}
.y69{bottom:688.425000px;}
.y167{bottom:689.685000px;}
.y11f{bottom:692.925000px;}
.yf6{bottom:694.185000px;}
.y15{bottom:696.525000px;}
.y49{bottom:703.185000px;}
.y136{bottom:708.225000px;}
.y68{bottom:709.485000px;}
.y166{bottom:711.825000px;}
.y7d{bottom:712.185000px;}
.yf5{bottom:715.245000px;}
.y14{bottom:717.585000px;}
.yda{bottom:722.625000px;}
.y48{bottom:724.245000px;}
.y135{bottom:729.285000px;}
.y67{bottom:730.545000px;}
.y165{bottom:733.965000px;}
.y13{bottom:738.645000px;}
.yd9{bottom:743.685000px;}
.y47{bottom:745.305000px;}
.y11d{bottom:747.105000px;}
.y134{bottom:750.345000px;}
.y66{bottom:751.605000px;}
.y164{bottom:755.925000px;}
.y176{bottom:758.805000px;}
.y12{bottom:759.705000px;}
.yd8{bottom:764.745000px;}
.y46{bottom:766.185000px;}
.y133{bottom:771.405000px;}
.y65{bottom:772.665000px;}
.y7c{bottom:778.245000px;}
.y11b{bottom:778.425000px;}
.y11{bottom:780.765000px;}
.yd7{bottom:785.805000px;}
.y45{bottom:787.245000px;}
.y64{bottom:793.545000px;}
.y163{bottom:794.085000px;}
.y7b{bottom:799.305000px;}
.y132{bottom:801.465000px;}
.y10{bottom:801.825000px;}
.yd6{bottom:806.865000px;}
.y44{bottom:808.305000px;}
.y63{bottom:814.605000px;}
.y162{bottom:816.225000px;}
.y7a{bottom:820.365000px;}
.y131{bottom:822.525000px;}
.yf{bottom:822.885000px;}
.yd5{bottom:827.925000px;}
.y43{bottom:829.365000px;}
.y62{bottom:835.665000px;}
.y11a{bottom:837.285000px;}
.y160{bottom:838.365000px;}
.y79{bottom:841.425000px;}
.ye{bottom:844.125000px;}
.yd4{bottom:848.985000px;}
.y42{bottom:850.425000px;}
.y61{bottom:856.725000px;}
.y119{bottom:858.345000px;}
.y78{bottom:862.485000px;}
.yd{bottom:867.345000px;}
.yd3{bottom:870.045000px;}
.y41{bottom:871.485000px;}
.yae{bottom:872.565000px;}
.y60{bottom:873.825000px;}
.y15e{bottom:876.525000px;}
.y118{bottom:879.405000px;}
.y77{bottom:883.545000px;}
.yd2{bottom:891.150000px;}
.y40{bottom:892.590000px;}
.yc{bottom:893.670000px;}
.y117{bottom:900.510000px;}
.yd1{bottom:906.270000px;}
.yb{bottom:910.230000px;}
.y3f{bottom:913.650000px;}
.y15d{bottom:914.370000px;}
.yad{bottom:914.730000px;}
.y116{bottom:921.570000px;}
.yd0{bottom:925.890000px;}
.ya{bottom:932.550000px;}
.y3e{bottom:934.710000px;}
.yac{bottom:935.790000px;}
.y15b{bottom:936.690000px;}
.y115{bottom:942.630000px;}
.ycf{bottom:945.510000px;}
.y3d{bottom:955.770000px;}
.yab{bottom:956.850000px;}
.y9{bottom:957.750000px;}
.y114{bottom:963.690000px;}
.ycc{bottom:965.130000px;}
.y159{bottom:974.670000px;}
.y3c{bottom:976.830000px;}
.yaa{bottom:977.910000px;}
.y113{bottom:984.750000px;}
.y8{bottom:991.590000px;}
.y157{bottom:996.810000px;}
.y3b{bottom:997.890000px;}
.ya9{bottom:998.970000px;}
.ycb{bottom:1003.290000px;}
.y112{bottom:1005.810000px;}
.ya8{bottom:1014.090000px;}
.y3a{bottom:1018.950000px;}
.yca{bottom:1022.910000px;}
.y7{bottom:1025.250000px;}
.y111{bottom:1026.870000px;}
.ya7{bottom:1034.790000px;}
.y39{bottom:1040.010000px;}
.y110{bottom:1041.990000px;}
.yc9{bottom:1042.530000px;}
.ya6{bottom:1055.670000px;}
.y38{bottom:1061.070000px;}
.yc8{bottom:1062.150000px;}
.y5{bottom:1062.330000px;}
.y10f{bottom:1067.010000px;}
.ya5{bottom:1076.370000px;}
.yc7{bottom:1081.590000px;}
.y37{bottom:1082.130000px;}
.y4{bottom:1091.490000px;}
.y10e{bottom:1091.850000px;}
.ya3{bottom:1097.070000px;}
.yc6{bottom:1101.210000px;}
.y36{bottom:1103.190000px;}
.y10c{bottom:1116.690000px;}
.ya1{bottom:1117.950000px;}
.y3{bottom:1120.650000px;}
.yc4{bottom:1120.830000px;}
.y35{bottom:1124.250000px;}
.yc3{bottom:1140.120000px;}
.y34{bottom:1145.340000px;}
.y2{bottom:1149.840000px;}
.y33{bottom:1173.240000px;}
.y1{bottom:1180.080000px;}
.y32{bottom:1193.400000px;}
.h15{height:18.576000px;}
.h13{height:18.720000px;}
.h14{height:18.900000px;}
.he{height:19.080000px;}
.h11{height:19.980000px;}
.hf{height:20.016000px;}
.h10{height:20.160000px;}
.h19{height:20.880000px;}
.h18{height:21.060000px;}
.h1c{height:21.096000px;}
.h30{height:21.240000px;}
.h34{height:21.420000px;}
.h2b{height:21.600000px;}
.h2c{height:21.636000px;}
.h2d{height:21.960000px;}
.h1e{height:24.120000px;}
.h20{height:24.156000px;}
.h1f{height:24.300000px;}
.h24{height:30.600000px;}
.h27{height:30.780000px;}
.h29{height:30.816000px;}
.h17{height:35.280000px;}
.h2f{height:35.820000px;}
.h2a{height:36.180000px;}
.h12{height:36.396000px;}
.h1b{height:36.540000px;}
.hd{height:36.576000px;}
.h1a{height:36.720000px;}
.h31{height:37.080000px;}
.h32{height:37.116000px;}
.h33{height:37.260000px;}
.h16{height:37.440000px;}
.h2e{height:37.800000px;}
.h7{height:38.671172px;}
.h1d{height:40.716000px;}
.h21{height:42.336000px;}
.h9{height:43.506914px;}
.h23{height:45.140977px;}
.hc{height:46.080000px;}
.hb{height:48.088125px;}
.h22{height:51.480000px;}
.h28{height:53.280000px;}
.h25{height:53.460000px;}
.h26{height:53.496000px;}
.ha{height:58.680000px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h35{height:147.456000px;}
.h36{height:231.690000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.we{width:71.820000px;}
.w13{width:73.620000px;}
.w18{width:75.060000px;}
.w21{width:83.700000px;}
.w26{width:83.880000px;}
.w20{width:83.916000px;}
.w25{width:84.276000px;}
.w1d{width:86.256000px;}
.w14{width:90.756000px;}
.wf{width:91.296000px;}
.w19{width:91.476000px;}
.wd{width:94.176000px;}
.w22{width:94.536000px;}
.w27{width:94.896000px;}
.w1c{width:97.056000px;}
.w12{width:99.396000px;}
.w17{width:99.936000px;}
.wa{width:121.500000px;}
.wb{width:121.716000px;}
.w6{width:123.120000px;}
.w8{width:123.336000px;}
.w7{width:123.516000px;}
.w3{width:229.530000px;}
.w4{width:229.755000px;}
.w29{width:383.145000px;}
.w9{width:387.285000px;}
.w5{width:392.145000px;}
.w2a{width:402.735000px;}
.wc{width:506.445000px;}
.w11{width:513.645000px;}
.w1f{width:517.425000px;}
.w16{width:517.605000px;}
.w24{width:518.865000px;}
.w1b{width:530.745000px;}
.w10{width:765.900000px;}
.w15{width:779.580000px;}
.w23{width:781.920000px;}
.w28{width:784.080000px;}
.w1a{width:786.240000px;}
.w1e{width:791.280000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x3a{left:-162.930013px;}
.x31{left:-111.456013px;}
.x48{left:-21.060000px;}
.x1e{left:-16.200000px;}
.x49{left:-9.900000px;}
.x4a{left:-5.040000px;}
.x0{left:0.000000px;}
.x46{left:21.636000px;}
.x1f{left:38.376000px;}
.x20{left:48.456000px;}
.x35{left:51.120000px;}
.x6{left:53.999987px;}
.x3b{left:55.800000px;}
.x1b{left:56.880000px;}
.x7{left:61.739987px;}
.x11{left:64.620000px;}
.xa{left:65.699987px;}
.xb{left:66.779987px;}
.x9{left:70.199987px;}
.x8{left:75.599987px;}
.x44{left:80.639987px;}
.xf{left:101.556000px;}
.x4b{left:108.035987px;}
.x21{left:116.130000px;}
.x22{left:126.210000px;}
.x23{left:138.810000px;}
.x24{left:149.070000px;}
.x39{left:150.689987px;}
.x5{left:176.969987px;}
.x25{left:197.535000px;}
.x45{left:200.909987px;}
.x26{left:207.975000px;}
.xd{left:256.214987px;}
.x17{left:268.454987px;}
.x3{left:272.414987px;}
.x27{left:278.355000px;}
.x28{left:312.555000px;}
.x29{left:322.815000px;}
.xe{left:332.174987px;}
.x2a{left:343.875000px;}
.x2{left:350.714987px;}
.x2b{left:353.955000px;}
.x3f{left:366.555000px;}
.x40{left:377.565000px;}
.x41{left:397.365000px;}
.x42{left:408.345000px;}
.x2c{left:416.625000px;}
.x4{left:419.294987px;}
.x2d{left:426.705000px;}
.x30{left:446.684987px;}
.x47{left:449.565000px;}
.x12{left:457.485000px;}
.x2e{left:474.225000px;}
.x1{left:479.444987px;}
.x2f{left:484.305000px;}
.x10{left:562.245000px;}
.x18{left:570.885000px;}
.x32{left:571.965000px;}
.x3c{left:573.945000px;}
.x15{left:579.705000px;}
.x13{left:581.325000px;}
.x36{left:582.585000px;}
.x3d{left:658.590000px;}
.xc{left:660.569987px;}
.x19{left:665.790000px;}
.x1c{left:671.370000px;}
.x33{left:672.630000px;}
.x37{left:680.370000px;}
.x16{left:702.150000px;}
.x14{left:705.570000px;}
.x43{left:715.649987px;}
.x1a{left:738.330000px;}
.x3e{left:743.190000px;}
.x1d{left:745.710000px;}
.x34{left:748.410000px;}
.x38{left:756.150000px;}
.x4c{left:839.339987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls43{letter-spacing:-1.797333pt;}
.ls33{letter-spacing:-1.338667pt;}
.ls2c{letter-spacing:-1.333333pt;}
.ls37{letter-spacing:-1.157333pt;}
.ls3c{letter-spacing:-1.125333pt;}
.ls31{letter-spacing:-1.114667pt;}
.ls2b{letter-spacing:-0.714667pt;}
.ls11{letter-spacing:-0.698667pt;}
.ls27{letter-spacing:-0.693333pt;}
.ls24{letter-spacing:-0.485333pt;}
.ls34{letter-spacing:-0.418667pt;}
.ls7{letter-spacing:-0.412267pt;}
.lsb{letter-spacing:-0.269333pt;}
.ls16{letter-spacing:-0.267733pt;}
.ls55{letter-spacing:-0.238933pt;}
.ls25{letter-spacing:-0.180267pt;}
.ls3e{letter-spacing:-0.165867pt;}
.ls47{letter-spacing:-0.153067pt;}
.ls6{letter-spacing:-0.117867pt;}
.ls56{letter-spacing:-0.102400pt;}
.ls15{letter-spacing:-0.101333pt;}
.ls3f{letter-spacing:-0.095467pt;}
.ls29{letter-spacing:-0.081600pt;}
.ls2f{letter-spacing:-0.074667pt;}
.lsd{letter-spacing:-0.069867pt;}
.ls3d{letter-spacing:-0.067200pt;}
.ls1b{letter-spacing:-0.066667pt;}
.ls40{letter-spacing:-0.061867pt;}
.lsf{letter-spacing:-0.057600pt;}
.ls1d{letter-spacing:-0.051840pt;}
.ls46{letter-spacing:-0.044160pt;}
.ls48{letter-spacing:-0.036480pt;}
.ls44{letter-spacing:-0.033920pt;}
.ls2a{letter-spacing:-0.001280pt;}
.ls4{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.022400pt;}
.ls5{letter-spacing:0.034560pt;}
.ls21{letter-spacing:0.045227pt;}
.ls4b{letter-spacing:0.053867pt;}
.ls4d{letter-spacing:0.057067pt;}
.ls1a{letter-spacing:0.059733pt;}
.lsc{letter-spacing:0.066667pt;}
.ls57{letter-spacing:0.089600pt;}
.ls28{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls8{letter-spacing:0.133333pt;}
.ls1c{letter-spacing:0.154667pt;}
.ls4e{letter-spacing:0.154880pt;}
.ls12{letter-spacing:0.155733pt;}
.ls22{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.165867pt;}
.ls49{letter-spacing:0.186133pt;}
.ls9{letter-spacing:0.186667pt;}
.ls1{letter-spacing:0.190720pt;}
.ls18{letter-spacing:0.216533pt;}
.ls1e{letter-spacing:0.221333pt;}
.lse{letter-spacing:0.224533pt;}
.ls4a{letter-spacing:0.244267pt;}
.ls2e{letter-spacing:0.269333pt;}
.ls2d{letter-spacing:0.272000pt;}
.ls20{letter-spacing:0.272533pt;}
.ls26{letter-spacing:0.309867pt;}
.ls19{letter-spacing:0.324267pt;}
.ls54{letter-spacing:0.334933pt;}
.ls14{letter-spacing:0.349867pt;}
.ls2{letter-spacing:0.370667pt;}
.ls17{letter-spacing:0.426133pt;}
.ls39{letter-spacing:0.426240pt;}
.ls23{letter-spacing:0.437333pt;}
.lsa{letter-spacing:0.438933pt;}
.ls52{letter-spacing:0.532907pt;}
.ls45{letter-spacing:0.570667pt;}
.ls30{letter-spacing:0.762667pt;}
.ls1f{letter-spacing:0.794667pt;}
.ls32{letter-spacing:0.805333pt;}
.ls10{letter-spacing:0.890667pt;}
.ls38{letter-spacing:1.434880pt;}
.ls3{letter-spacing:5.914880pt;}
.ls4c{letter-spacing:7.834880pt;}
.ls35{letter-spacing:7.840000pt;}
.ls36{letter-spacing:8.480000pt;}
.ls50{letter-spacing:9.114880pt;}
.ls4f{letter-spacing:10.832640pt;}
.ls3b{letter-spacing:11.034880pt;}
.ls41{letter-spacing:11.680000pt;}
.ls42{letter-spacing:12.320000pt;}
.ls53{letter-spacing:12.954880pt;}
.ls3a{letter-spacing:37.712640pt;}
.ws1b{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws5{word-spacing:-13.373547pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws22{word-spacing:-12.767787pt;}
.wsd{word-spacing:-12.354987pt;}
.ws2e{word-spacing:-12.340053pt;}
.ws14{word-spacing:-12.314987pt;}
.ws1a{word-spacing:-12.277120pt;}
.ws1c{word-spacing:-12.274453pt;}
.ws2a{word-spacing:-12.249387pt;}
.ws12{word-spacing:-12.226453pt;}
.ws10{word-spacing:-12.221653pt;}
.ws29{word-spacing:-12.191253pt;}
.wsc{word-spacing:-12.170987pt;}
.wsb{word-spacing:-12.160853pt;}
.ws17{word-spacing:-12.129920pt;}
.ws31{word-spacing:-12.094720pt;}
.ws2d{word-spacing:-12.062187pt;}
.ws2b{word-spacing:-12.058987pt;}
.ws2c{word-spacing:-12.027520pt;}
.ws8{word-spacing:-12.005120pt;}
.ws18{word-spacing:-12.003840pt;}
.ws24{word-spacing:-11.971200pt;}
.ws28{word-spacing:-11.968640pt;}
.ws25{word-spacing:-11.960960pt;}
.ws11{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.947520pt;}
.ws32{word-spacing:-11.943253pt;}
.ws26{word-spacing:-11.909653pt;}
.ws30{word-spacing:-11.902720pt;}
.ws27{word-spacing:-11.852053pt;}
.ws21{word-spacing:-11.839253pt;}
.ws13{word-spacing:-11.824853pt;}
.ws2f{word-spacing:-11.766187pt;}
.wsf{word-spacing:-11.737387pt;}
.ws15{word-spacing:-11.735787pt;}
.ws1f{word-spacing:-11.586453pt;}
.ws16{word-spacing:-11.311787pt;}
.wsa{word-spacing:-11.306453pt;}
.ws1d{word-spacing:-10.890453pt;}
.ws20{word-spacing:-10.847787pt;}
.ws19{word-spacing:-10.671787pt;}
.ws1e{word-spacing:-10.666453pt;}
.ws23{word-spacing:-10.207787pt;}
.ws6{word-spacing:-8.389120pt;}
.ws7{word-spacing:-7.810560pt;}
.wse{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._21{margin-left:-174.878720pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._26{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-129.237333pt;}
._10{margin-left:-126.263467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._24{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._22{margin-left:-71.437653pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._23{margin-left:-31.226880pt;}
._19{margin-left:-28.861013pt;}
._29{margin-left:-3.948373pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:1.170880pt;}
._31{width:2.100907pt;}
._2f{width:3.346560pt;}
._30{width:4.462080pt;}
._32{width:5.485973pt;}
._2d{width:6.584640pt;}
._33{width:7.489920pt;}
._2c{width:8.551680pt;}
._2e{width:9.476907pt;}
._2b{width:10.438400pt;}
._2a{width:11.460267pt;}
._36{width:13.280000pt;}
._34{width:14.903360pt;}
._3b{width:15.948800pt;}
._3a{width:18.005653pt;}
._35{width:19.788693pt;}
._44{width:21.088640pt;}
._42{width:22.187307pt;}
._43{width:23.805227pt;}
._41{width:25.144960pt;}
._3c{width:26.892160pt;}
._3e{width:29.132053pt;}
._38{width:32.578133pt;}
._3d{width:34.166507pt;}
._39{width:38.087147pt;}
._3f{width:41.543680pt;}
._40{width:42.483840pt;}
._37{width:53.332480pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:3.520000pt;}
.yc5{bottom:3.840000pt;}
.yc2{bottom:4.000000pt;}
.y94{bottom:4.160000pt;}
.yce{bottom:4.320000pt;}
.y150{bottom:4.640000pt;}
.ya2{bottom:4.960000pt;}
.ya4{bottom:5.120000pt;}
.yde{bottom:5.920000pt;}
.yea{bottom:5.960000pt;}
.y15a{bottom:6.240000pt;}
.y143{bottom:6.400000pt;}
.y148{bottom:6.440000pt;}
.y145{bottom:6.560000pt;}
.y14a{bottom:6.720000pt;}
.y80{bottom:6.880000pt;}
.y100{bottom:8.640000pt;}
.y10b{bottom:8.672000pt;}
.y109{bottom:8.794667pt;}
.y102{bottom:8.800000pt;}
.y83{bottom:12.000000pt;}
.y127{bottom:14.400000pt;}
.y11e{bottom:14.560000pt;}
.y12d{bottom:14.760000pt;}
.y12b{bottom:18.240000pt;}
.y125{bottom:18.400000pt;}
.ydc{bottom:18.560000pt;}
.y158{bottom:19.040000pt;}
.y141{bottom:19.520000pt;}
.yc0{bottom:19.712000pt;}
.ye2{bottom:19.840000pt;}
.y85{bottom:19.866667pt;}
.y15c{bottom:20.320000pt;}
.y15f{bottom:20.360000pt;}
.y161{bottom:20.480000pt;}
.ycd{bottom:20.640000pt;}
.y14f{bottom:20.960000pt;}
.y7f{bottom:23.200000pt;}
.yfe{bottom:23.360000pt;}
.y17c{bottom:24.640000pt;}
.y10d{bottom:24.826667pt;}
.y82{bottom:28.320000pt;}
.y11c{bottom:33.120000pt;}
.y12a{bottom:34.560000pt;}
.y120{bottom:34.720000pt;}
.y123{bottom:34.906667pt;}
.y7e{bottom:39.520000pt;}
.y17b{bottom:43.360000pt;}
.y6{bottom:54.720000pt;}
.y17a{bottom:62.080000pt;}
.y19b{bottom:78.400000pt;}
.y197{bottom:80.160000pt;}
.y179{bottom:80.800000pt;}
.y156{bottom:82.400000pt;}
.y31{bottom:84.960000pt;}
.yc1{bottom:88.320000pt;}
.y175{bottom:91.680000pt;}
.y76{bottom:92.800000pt;}
.ya0{bottom:93.440000pt;}
.y196{bottom:98.720000pt;}
.y178{bottom:99.520000pt;}
.y183{bottom:99.546667pt;}
.y155{bottom:101.120000pt;}
.y30{bottom:103.680000pt;}
.y10a{bottom:104.960000pt;}
.ybf{bottom:105.600000pt;}
.y174{bottom:110.400000pt;}
.y75{bottom:111.520000pt;}
.y9f{bottom:112.160000pt;}
.y195{bottom:117.472000pt;}
.y182{bottom:118.266667pt;}
.y177{bottom:118.280000pt;}
.y2f{bottom:122.432000pt;}
.y173{bottom:125.632000pt;}
.y108{bottom:127.072000pt;}
.y154{bottom:127.872000pt;}
.y74{bottom:130.272000pt;}
.y9e{bottom:130.912000pt;}
.y194{bottom:136.186667pt;}
.y181{bottom:136.986667pt;}
.y2e{bottom:141.146667pt;}
.y153{bottom:141.306667pt;}
.ybe{bottom:144.666667pt;}
.y73{bottom:148.986667pt;}
.y107{bottom:149.306667pt;}
.y9d{bottom:149.626667pt;}
.yf4{bottom:152.666667pt;}
.y193{bottom:154.906667pt;}
.y180{bottom:155.706667pt;}
.y19a{bottom:156.986667pt;}
.y2d{bottom:159.866667pt;}
.y152{bottom:161.146667pt;}
.ybd{bottom:163.386667pt;}
.y72{bottom:167.706667pt;}
.y9c{bottom:168.346667pt;}
.yf3{bottom:171.386667pt;}
.y106{bottom:171.546667pt;}
.y192{bottom:173.626667pt;}
.y17f{bottom:174.426667pt;}
.y199{bottom:175.706667pt;}
.y2c{bottom:178.586667pt;}
.y151{bottom:180.986667pt;}
.ybc{bottom:182.106667pt;}
.y71{bottom:186.426667pt;}
.y9b{bottom:187.066667pt;}
.yf2{bottom:190.106667pt;}
.y191{bottom:192.346667pt;}
.y17e{bottom:193.146667pt;}
.y105{bottom:193.626667pt;}
.y198{bottom:194.426667pt;}
.y2b{bottom:197.306667pt;}
.ybb{bottom:200.826667pt;}
.y70{bottom:205.146667pt;}
.y9a{bottom:205.786667pt;}
.yf1{bottom:208.826667pt;}
.y190{bottom:211.066667pt;}
.y5f{bottom:213.146667pt;}
.y104{bottom:215.866667pt;}
.y2a{bottom:216.026667pt;}
.y99{bottom:219.226667pt;}
.yba{bottom:219.546667pt;}
.y6f{bottom:223.866667pt;}
.yf0{bottom:227.546667pt;}
.y18f{bottom:229.786667pt;}
.y5e{bottom:231.866667pt;}
.y29{bottom:234.746667pt;}
.y14e{bottom:235.226667pt;}
.y98{bottom:236.826667pt;}
.y103{bottom:237.946667pt;}
.yb9{bottom:238.266667pt;}
.y6e{bottom:242.586667pt;}
.yef{bottom:246.266667pt;}
.y130{bottom:248.186667pt;}
.y18e{bottom:248.506667pt;}
.y5d{bottom:250.586667pt;}
.y28{bottom:253.466667pt;}
.y97{bottom:254.426667pt;}
.y14d{bottom:255.066667pt;}
.yb8{bottom:256.986667pt;}
.y101{bottom:260.026667pt;}
.yee{bottom:264.986667pt;}
.y18d{bottom:267.226667pt;}
.y5c{bottom:269.306667pt;}
.y96{bottom:272.026667pt;}
.y27{bottom:272.186667pt;}
.y14c{bottom:274.906667pt;}
.yb7{bottom:275.706667pt;}
.y12f{bottom:276.026667pt;}
.yff{bottom:282.266667pt;}
.yed{bottom:283.706667pt;}
.y18c{bottom:285.946667pt;}
.y5b{bottom:288.026667pt;}
.y95{bottom:289.626667pt;}
.y26{bottom:290.906667pt;}
.yb6{bottom:294.426667pt;}
.y14b{bottom:294.746667pt;}
.yec{bottom:297.146667pt;}
.y12e{bottom:303.866667pt;}
.yfd{bottom:304.346667pt;}
.y18b{bottom:304.666667pt;}
.y5a{bottom:306.746667pt;}
.y93{bottom:307.226667pt;}
.y25{bottom:309.626667pt;}
.yb5{bottom:313.146667pt;}
.y149{bottom:314.586667pt;}
.yeb{bottom:316.506667pt;}
.y18a{bottom:323.386667pt;}
.y59{bottom:325.466667pt;}
.y24{bottom:328.346667pt;}
.y92{bottom:330.746667pt;}
.yb4{bottom:331.706667pt;}
.y147{bottom:334.746667pt;}
.ye9{bottom:335.866667pt;}
.y189{bottom:342.146667pt;}
.y58{bottom:344.226667pt;}
.y23{bottom:347.106667pt;}
.y91{bottom:349.506667pt;}
.yb3{bottom:350.466667pt;}
.y146{bottom:354.626667pt;}
.ye8{bottom:355.266667pt;}
.y12c{bottom:359.906667pt;}
.y188{bottom:360.866667pt;}
.y57{bottom:362.946667pt;}
.y22{bottom:365.826667pt;}
.y90{bottom:368.226667pt;}
.yb2{bottom:369.186667pt;}
.y144{bottom:374.466667pt;}
.ye7{bottom:374.626667pt;}
.y187{bottom:379.586667pt;}
.y56{bottom:381.666667pt;}
.y21{bottom:384.546667pt;}
.y8f{bottom:386.946667pt;}
.y129{bottom:387.746667pt;}
.yb1{bottom:387.906667pt;}
.ye6{bottom:393.986667pt;}
.y142{bottom:394.466667pt;}
.y186{bottom:398.306667pt;}
.y55{bottom:400.386667pt;}
.y20{bottom:403.266667pt;}
.y8e{bottom:405.666667pt;}
.yb0{bottom:406.626667pt;}
.y172{bottom:410.306667pt;}
.y140{bottom:414.306667pt;}
.y185{bottom:417.026667pt;}
.y54{bottom:419.106667pt;}
.y1f{bottom:421.986667pt;}
.y8d{bottom:424.386667pt;}
.yaf{bottom:425.346667pt;}
.ye5{bottom:427.266667pt;}
.y171{bottom:429.026667pt;}
.y128{bottom:435.746667pt;}
.y53{bottom:437.826667pt;}
.y1e{bottom:440.706667pt;}
.y8c{bottom:443.106667pt;}
.ye4{bottom:446.626667pt;}
.y170{bottom:447.746667pt;}
.y13f{bottom:453.186667pt;}
.y184{bottom:454.466667pt;}
.y52{bottom:456.546667pt;}
.y1d{bottom:459.426667pt;}
.y126{bottom:463.746667pt;}
.ye3{bottom:465.986667pt;}
.y16f{bottom:466.466667pt;}
.y17d{bottom:467.906667pt;}
.y8b{bottom:469.826667pt;}
.y13e{bottom:471.746667pt;}
.y51{bottom:475.266667pt;}
.y1c{bottom:478.146667pt;}
.y16e{bottom:485.186667pt;}
.y8a{bottom:488.546667pt;}
.y13d{bottom:490.466667pt;}
.y124{bottom:491.586667pt;}
.y50{bottom:493.986667pt;}
.y1b{bottom:496.866667pt;}
.ye1{bottom:499.266667pt;}
.y16d{bottom:503.906667pt;}
.yfc{bottom:504.866667pt;}
.y89{bottom:507.266667pt;}
.y13c{bottom:509.186667pt;}
.y4f{bottom:512.706667pt;}
.y1a{bottom:515.586667pt;}
.y16c{bottom:522.626667pt;}
.yfb{bottom:523.586667pt;}
.y88{bottom:525.986667pt;}
.y13b{bottom:527.906667pt;}
.y4e{bottom:531.426667pt;}
.ye0{bottom:532.546667pt;}
.y19{bottom:536.386667pt;}
.y6d{bottom:537.026667pt;}
.y122{bottom:539.746667pt;}
.y16b{bottom:541.346667pt;}
.yfa{bottom:542.306667pt;}
.y87{bottom:544.706667pt;}
.y13a{bottom:546.626667pt;}
.y4d{bottom:550.146667pt;}
.ydf{bottom:551.906667pt;}
.y6c{bottom:555.746667pt;}
.y84{bottom:558.146667pt;}
.y16a{bottom:560.066667pt;}
.yf9{bottom:561.026667pt;}
.y18{bottom:562.973333pt;}
.y139{bottom:565.373333pt;}
.y4c{bottom:568.893333pt;}
.y169{bottom:573.533333pt;}
.y6b{bottom:574.493333pt;}
.yf8{bottom:579.773333pt;}
.y17{bottom:581.693333pt;}
.y138{bottom:584.093333pt;}
.ydd{bottom:585.053333pt;}
.y4b{bottom:587.613333pt;}
.y121{bottom:587.933333pt;}
.y81{bottom:591.453333pt;}
.y6a{bottom:593.213333pt;}
.y168{bottom:593.373333pt;}
.yf7{bottom:598.333333pt;}
.y16{bottom:600.413333pt;}
.y137{bottom:602.813333pt;}
.ydb{bottom:604.413333pt;}
.y4a{bottom:606.333333pt;}
.y69{bottom:611.933333pt;}
.y167{bottom:613.053333pt;}
.y11f{bottom:615.933333pt;}
.yf6{bottom:617.053333pt;}
.y15{bottom:619.133333pt;}
.y49{bottom:625.053333pt;}
.y136{bottom:629.533333pt;}
.y68{bottom:630.653333pt;}
.y166{bottom:632.733333pt;}
.y7d{bottom:633.053333pt;}
.yf5{bottom:635.773333pt;}
.y14{bottom:637.853333pt;}
.yda{bottom:642.333333pt;}
.y48{bottom:643.773333pt;}
.y135{bottom:648.253333pt;}
.y67{bottom:649.373333pt;}
.y165{bottom:652.413333pt;}
.y13{bottom:656.573333pt;}
.yd9{bottom:661.053333pt;}
.y47{bottom:662.493333pt;}
.y11d{bottom:664.093333pt;}
.y134{bottom:666.973333pt;}
.y66{bottom:668.093333pt;}
.y164{bottom:671.933333pt;}
.y176{bottom:674.493333pt;}
.y12{bottom:675.293333pt;}
.yd8{bottom:679.773333pt;}
.y46{bottom:681.053333pt;}
.y133{bottom:685.693333pt;}
.y65{bottom:686.813333pt;}
.y7c{bottom:691.773333pt;}
.y11b{bottom:691.933333pt;}
.y11{bottom:694.013333pt;}
.yd7{bottom:698.493333pt;}
.y45{bottom:699.773333pt;}
.y64{bottom:705.373333pt;}
.y163{bottom:705.853333pt;}
.y7b{bottom:710.493333pt;}
.y132{bottom:712.413333pt;}
.y10{bottom:712.733333pt;}
.yd6{bottom:717.213333pt;}
.y44{bottom:718.493333pt;}
.y63{bottom:724.093333pt;}
.y162{bottom:725.533333pt;}
.y7a{bottom:729.213333pt;}
.y131{bottom:731.133333pt;}
.yf{bottom:731.453333pt;}
.yd5{bottom:735.933333pt;}
.y43{bottom:737.213333pt;}
.y62{bottom:742.813333pt;}
.y11a{bottom:744.253333pt;}
.y160{bottom:745.213333pt;}
.y79{bottom:747.933333pt;}
.ye{bottom:750.333333pt;}
.yd4{bottom:754.653333pt;}
.y42{bottom:755.933333pt;}
.y61{bottom:761.533333pt;}
.y119{bottom:762.973333pt;}
.y78{bottom:766.653333pt;}
.yd{bottom:770.973333pt;}
.yd3{bottom:773.373333pt;}
.y41{bottom:774.653333pt;}
.yae{bottom:775.613333pt;}
.y60{bottom:776.733333pt;}
.y15e{bottom:779.133333pt;}
.y118{bottom:781.693333pt;}
.y77{bottom:785.373333pt;}
.yd2{bottom:792.133333pt;}
.y40{bottom:793.413333pt;}
.yc{bottom:794.373333pt;}
.y117{bottom:800.453333pt;}
.yd1{bottom:805.573333pt;}
.yb{bottom:809.093333pt;}
.y3f{bottom:812.133333pt;}
.y15d{bottom:812.773333pt;}
.yad{bottom:813.093333pt;}
.y116{bottom:819.173333pt;}
.yd0{bottom:823.013333pt;}
.ya{bottom:828.933333pt;}
.y3e{bottom:830.853333pt;}
.yac{bottom:831.813333pt;}
.y15b{bottom:832.613333pt;}
.y115{bottom:837.893333pt;}
.ycf{bottom:840.453333pt;}
.y3d{bottom:849.573333pt;}
.yab{bottom:850.533333pt;}
.y9{bottom:851.333333pt;}
.y114{bottom:856.613333pt;}
.ycc{bottom:857.893333pt;}
.y159{bottom:866.373333pt;}
.y3c{bottom:868.293333pt;}
.yaa{bottom:869.253333pt;}
.y113{bottom:875.333333pt;}
.y8{bottom:881.413333pt;}
.y157{bottom:886.053333pt;}
.y3b{bottom:887.013333pt;}
.ya9{bottom:887.973333pt;}
.ycb{bottom:891.813333pt;}
.y112{bottom:894.053333pt;}
.ya8{bottom:901.413333pt;}
.y3a{bottom:905.733333pt;}
.yca{bottom:909.253333pt;}
.y7{bottom:911.333333pt;}
.y111{bottom:912.773333pt;}
.ya7{bottom:919.813333pt;}
.y39{bottom:924.453333pt;}
.y110{bottom:926.213333pt;}
.yc9{bottom:926.693333pt;}
.ya6{bottom:938.373333pt;}
.y38{bottom:943.173333pt;}
.yc8{bottom:944.133333pt;}
.y5{bottom:944.293333pt;}
.y10f{bottom:948.453333pt;}
.ya5{bottom:956.773333pt;}
.yc7{bottom:961.413333pt;}
.y37{bottom:961.893333pt;}
.y4{bottom:970.213333pt;}
.y10e{bottom:970.533333pt;}
.ya3{bottom:975.173333pt;}
.yc6{bottom:978.853333pt;}
.y36{bottom:980.613333pt;}
.y10c{bottom:992.613333pt;}
.ya1{bottom:993.733333pt;}
.y3{bottom:996.133333pt;}
.yc4{bottom:996.293333pt;}
.y35{bottom:999.333333pt;}
.yc3{bottom:1013.440000pt;}
.y34{bottom:1018.080000pt;}
.y2{bottom:1022.080000pt;}
.y33{bottom:1042.880000pt;}
.y1{bottom:1048.960000pt;}
.y32{bottom:1060.800000pt;}
.h15{height:16.512000pt;}
.h13{height:16.640000pt;}
.h14{height:16.800000pt;}
.he{height:16.960000pt;}
.h11{height:17.760000pt;}
.hf{height:17.792000pt;}
.h10{height:17.920000pt;}
.h19{height:18.560000pt;}
.h18{height:18.720000pt;}
.h1c{height:18.752000pt;}
.h30{height:18.880000pt;}
.h34{height:19.040000pt;}
.h2b{height:19.200000pt;}
.h2c{height:19.232000pt;}
.h2d{height:19.520000pt;}
.h1e{height:21.440000pt;}
.h20{height:21.472000pt;}
.h1f{height:21.600000pt;}
.h24{height:27.200000pt;}
.h27{height:27.360000pt;}
.h29{height:27.392000pt;}
.h17{height:31.360000pt;}
.h2f{height:31.840000pt;}
.h2a{height:32.160000pt;}
.h12{height:32.352000pt;}
.h1b{height:32.480000pt;}
.hd{height:32.512000pt;}
.h1a{height:32.640000pt;}
.h31{height:32.960000pt;}
.h32{height:32.992000pt;}
.h33{height:33.120000pt;}
.h16{height:33.280000pt;}
.h2e{height:33.600000pt;}
.h7{height:34.374375pt;}
.h1d{height:36.192000pt;}
.h21{height:37.632000pt;}
.h9{height:38.672812pt;}
.h23{height:40.125312pt;}
.hc{height:40.960000pt;}
.hb{height:42.745000pt;}
.h22{height:45.760000pt;}
.h28{height:47.360000pt;}
.h25{height:47.520000pt;}
.h26{height:47.552000pt;}
.ha{height:52.160000pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h35{height:131.072000pt;}
.h36{height:205.946667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.we{width:63.840000pt;}
.w13{width:65.440000pt;}
.w18{width:66.720000pt;}
.w21{width:74.400000pt;}
.w26{width:74.560000pt;}
.w20{width:74.592000pt;}
.w25{width:74.912000pt;}
.w1d{width:76.672000pt;}
.w14{width:80.672000pt;}
.wf{width:81.152000pt;}
.w19{width:81.312000pt;}
.wd{width:83.712000pt;}
.w22{width:84.032000pt;}
.w27{width:84.352000pt;}
.w1c{width:86.272000pt;}
.w12{width:88.352000pt;}
.w17{width:88.832000pt;}
.wa{width:108.000000pt;}
.wb{width:108.192000pt;}
.w6{width:109.440000pt;}
.w8{width:109.632000pt;}
.w7{width:109.792000pt;}
.w3{width:204.026667pt;}
.w4{width:204.226667pt;}
.w29{width:340.573333pt;}
.w9{width:344.253333pt;}
.w5{width:348.573333pt;}
.w2a{width:357.986667pt;}
.wc{width:450.173333pt;}
.w11{width:456.573333pt;}
.w1f{width:459.933333pt;}
.w16{width:460.093333pt;}
.w24{width:461.213333pt;}
.w1b{width:471.773333pt;}
.w10{width:680.800000pt;}
.w15{width:692.960000pt;}
.w23{width:695.040000pt;}
.w28{width:696.960000pt;}
.w1a{width:698.880000pt;}
.w1e{width:703.360000pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x3a{left:-144.826678pt;}
.x31{left:-99.072012pt;}
.x48{left:-18.720000pt;}
.x1e{left:-14.400000pt;}
.x49{left:-8.800000pt;}
.x4a{left:-4.480000pt;}
.x0{left:0.000000pt;}
.x46{left:19.232000pt;}
.x1f{left:34.112000pt;}
.x20{left:43.072000pt;}
.x35{left:45.440000pt;}
.x6{left:47.999988pt;}
.x3b{left:49.600000pt;}
.x1b{left:50.560000pt;}
.x7{left:54.879988pt;}
.x11{left:57.440000pt;}
.xa{left:58.399988pt;}
.xb{left:59.359988pt;}
.x9{left:62.399988pt;}
.x8{left:67.199988pt;}
.x44{left:71.679988pt;}
.xf{left:90.272000pt;}
.x4b{left:96.031988pt;}
.x21{left:103.226667pt;}
.x22{left:112.186667pt;}
.x23{left:123.386667pt;}
.x24{left:132.506667pt;}
.x39{left:133.946655pt;}
.x5{left:157.306655pt;}
.x25{left:175.586667pt;}
.x45{left:178.586655pt;}
.x26{left:184.866667pt;}
.xd{left:227.746655pt;}
.x17{left:238.626655pt;}
.x3{left:242.146655pt;}
.x27{left:247.426667pt;}
.x28{left:277.826667pt;}
.x29{left:286.946667pt;}
.xe{left:295.266655pt;}
.x2a{left:305.666667pt;}
.x2{left:311.746655pt;}
.x2b{left:314.626667pt;}
.x3f{left:325.826667pt;}
.x40{left:335.613333pt;}
.x41{left:353.213333pt;}
.x42{left:362.973333pt;}
.x2c{left:370.333333pt;}
.x4{left:372.706655pt;}
.x2d{left:379.293333pt;}
.x30{left:397.053321pt;}
.x47{left:399.613333pt;}
.x12{left:406.653333pt;}
.x2e{left:421.533333pt;}
.x1{left:426.173321pt;}
.x2f{left:430.493333pt;}
.x10{left:499.773333pt;}
.x18{left:507.453333pt;}
.x32{left:508.413333pt;}
.x3c{left:510.173333pt;}
.x15{left:515.293333pt;}
.x13{left:516.733333pt;}
.x36{left:517.853333pt;}
.x3d{left:585.413333pt;}
.xc{left:587.173321pt;}
.x19{left:591.813333pt;}
.x1c{left:596.773333pt;}
.x33{left:597.893333pt;}
.x37{left:604.773333pt;}
.x16{left:624.133333pt;}
.x14{left:627.173333pt;}
.x43{left:636.133322pt;}
.x1a{left:656.293333pt;}
.x3e{left:660.613333pt;}
.x1d{left:662.853333pt;}
.x34{left:665.253333pt;}
.x38{left:672.133333pt;}
.x4c{left:746.079988pt;}
}




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